/* General styles start */
html, body {
  height: 100%;
  margin: 0px;
  padding: 0px;
  font-family: 'lucida grande', 'tahoma', verdana, arial, sans-serif;
  font-size: 11px;
}

body {
  background: #333;
  overflow-x: hidden;
}

.none {
  display: none;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.clear {
  clear: both;
}

.float-left-padding-5 {
  float: left;
  padding-left: 5px;
}

.padding-left-5 {
  padding-left: 5px;
}

.padding-right-5 {
  padding-right: 5px;
}

.padding-left-10 {
  padding-left: 10px;
}

.padding-right-10 {
  padding-right: 10px;
}

.padding-right-15 {
  padding-right: 15px;
}

.padding-left-15 {
  padding-left: 15px;
}

.padding-left-30 {
  padding-left: 30px;
}

.padding-right-30 {
  padding-right: 30px;
}

.padding-top-10 {
  padding-top: 10px;
}

.padding-bottom-10 {
  padding-bottom: 10px;
}

.padding-top-5 {
  padding-top: 5px;
}

.margin-bottom-15 {
  margin-bottom: 15px;
}


.padding-10 {
  padding: 10px;
}

.padding-0 {
  padding: 0px;
}

.margin-0 {
  margin: 0px;
}

.center {
  text-align: center;
}

.button {
  padding: 7px;
  border: 1px solid #ccc;
}

.button:hover {
  cursor: pointer;
}

.input-style {
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.button-a {
  padding: 7px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #000;
  background: #ccc;
}

.pointer:hover {
  cursor: pointer;
}

input[type="text"] {
  padding: 7px;
  border: 1px solid #ccc;
}
input[type="password"] {
  padding: 7px;
  border: 1px solid #ccc;
}

.error {
  color: red;
}

.small {
  font-size: 9px;
}

a.small {
  text-decoration: none;
  color: #000;
}

a.small:hover {
  text-decoration: underline;
}

.page {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
}

.link {
  color: #666;
}

.link:hover {
  text-decoration: underline;
  cursor: pointer;
}

.no-link {
  text-decoration: none;
  color: #000;
}

.no-link:hover {
  text-decoration: underline;
}

table {
  width: 100%;
  border-collapse: collapse;
}
tr.odd {
  background: #ccc;
}
th {
  background: #666;
  color: #fff;
}
td,th {
  padding: 5px;
  text-align: center;
  font-weight: 100;
}

.tablesorter-default .header,
.tablesorter-default .tablesorter-header {
  background-image: url('../img/arrows.gif');
  background-position: center right;
  background-repeat: no-repeat;
  cursor: pointer;
  white-space: normal;
}
.tablesorter-default thead .headerSortUp,
.tablesorter-default thead .tablesorter-headerSortUp,
.tablesorter-default thead .tablesorter-headerAsc {
  background-image: url('../img/asc.gif');
  font-style: italic;
}
.tablesorter-default thead .headerSortDown,
.tablesorter-default thead .tablesorter-headerSortDown,
.tablesorter-default thead .tablesorter-headerDesc {
  background-image: url('../img/desc.gif');
  font-style: italic;
}
.tablesorter-default thead .sorter-false {
  background-image: none;
  cursor: default;
}

.links-table {
}

.links-table a {
  color: #000;
  text-decoration: none;
}

.links-table a:hover {
  text-decoration: underline;
  color: #999;
}


.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: #333 url(../img/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible 
  opacity: .5;*/
  opacity: 1;
}
.no-touch .cd-top:hover {
  background-color: #e86256;
  opacity: 1;
}

/* General styles end */


/* Index page styles start */
.title-edit span {
  display: inline-table;
}

.box-list {
  max-height: 300px;
  min-height: 300px;
  text-align: left;
  overflow: scroll;
}

.box-list ul {
  list-style:none;
  background-color:#fff;
  margin:0px;
  padding:0px;
}

.box-list ul li {
  padding: 10px;
  border-bottom:1px solid #ccc;
}

.box-list ul a {
  color: blue;
  text-decoration: none;
}

.box-list ul a:hover {
  text-decoration: underline;
}

.box-list ul li:hover {
  background-color:#f4f4f4;
}

.box-list ul li img {
  vertical-align: middle;
  padding-right: 10px;
}

.box-list ul li a {
  color: #000;
  text-decoration: none;
}

.box-list ul li a:hover {
  text-decoration: underline;
}

.box-list ul li span {
  float: right;
}

.ul-inline li div {
  display: inline-table;
}
/* Index page styles end */


/* Styles for the notification start */
#save-box {
  position: fixed;
  z-index: 9999;
  top: 0px;
  left: 0px;
  right: 0px;
  display: none;
}

#save:hover {
  cursor: pointer;
}

#save {
  background: #fff;
  border: 1px solid #999;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1), 0px 1px 0px rgba(255, 255, 255, 0.6) inset;
  max-width: 75px;
  text-align: center;
  padding: 10px;
  font-size:11px;
  color:#666;
  margin: 0 auto;
  margin-top: -5px;
  border-radius: 5px;
}

#save p {
  margin: 0px;
}

#save-issues {
  background: #fff;
  border: 1px solid #999;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1), 0px 1px 0px rgba(255, 255, 255, 0.6) inset;
  max-width: 390px;
  text-align: center;
  padding: 15px;
  font-size:11px;
  color:#666;
  margin: 0 auto;
  margin-top: -5px;
  border-radius: 5px;
}

#save-issues p {
  margin: 0px;
  margin-bottom: 10px;
}

#save-issues .input-link {
  padding:0px;
  border: none;
  background: none;
}

#save-issues .input-link:hover {
  text-decoration: underline;
  cursor: pointer;
}

#notif-box {
  position: fixed;
  z-index: 9999;
  top: 0px;
  left: 0px;
  right: 0px;
}

#notif-box:hover {
  cursor: pointer;
}

#notif {
  background: none repeat scroll 0% 0% rgb(255, 230, 145);
  border: 1px solid #999;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1), 0px 1px 0px rgba(255, 255, 255, 0.6) inset;
  max-width: 350px;
  text-align: center;
  padding: 10px;
  font-size:11px;
  color:#666;
  margin: 0 auto;
  margin-top: -5px;
  border-radius: 5px;
}
 
.p-notif {
  margin-top: 5px;
}
/* Styles for the notification end */


/* Styles for the service page start */
.form-issues-search {
  display: none;
}

.search-highlight {
  background-color: #ffff00;
  text-decoration: underline;
}
/* Styles for the service page end */



/* Slider/homepage styles start */
.wrapper {
  display: -webkit-flex;
  display: flex;
  min-height: 100%;
}

.sidebar {
  position: fixed;
  width: 235px;
  overflow-y:scroll;
  top:0px;
  bottom:0px;
}

.content {
  -webkit-flex: 1;
  flex: 1;
  padding: 0px;
  background: #eee;
  box-shadow: 0 0 5px rgba(0,0,0,1);
  transform: translate3d(0,0,0);
  transition: all .3s;
}

.content.content-is-open {
  margin-left: 235px;
}

.side-panel-toggle {
  cursor: pointer;
  font-size: 42px;
}

.side-x {
}

.side-stack {
  margin-left: 0px;
}

.main-title {
  position: absolute;
  top: 15px;
  left: 35px;
  font-size: 14px;
  margin: 0px;
}

.main-title a {
  color: #000;
}

.nav-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  border: 1px solid #eee;
  z-index: 999;
}

.nav-top.nav-top-mobile.nav-is-open .nav-user {
  display: block;
}

.nav-top.nav-top-mobile .nav-user {
  display: none;
}

.nav-title {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  padding-left: 20px;
  margin-top: 25px;
}

ul.nav {
  padding:0px;
  margin-top: 10px;
}

.nav li a {
  position: relative;
  display: block;
  padding: 10px 15px 10px 50px;
  font-size: 12px;
  color: #eee;
  border-bottom: 1px solid #222;
  text-decoration: none;
}

.nav li a:hover {
  cursor: pointer;
}

.nav li a:before {
  font: 14px fontawesome;
  position: absolute;
  top: 7px;
  left: 20px;
}

.nav li a:after {
  font: 14px fontawesome;
  position: absolute;
  top: 7px;
  right: 20px;
}

.nav li:nth-child(2) a:before { content: url(../img/home.png);}
.nav li:nth-child(3) a:before { content: url(../img/set.png);}
.nav li:nth-child(4) a:before { content: url(../img/calc.png);}
.nav li:nth-child(5) a:before { content: url(../img/inv.png);}
.nav li:nth-child(6) a:before { content: url(../img/order.png);}
.nav li:nth-child(8) a:before { content: url(../img/product.png);}
.nav li:nth-child(9) a:before { content: url(../img/sheet1.png);}
.nav li:nth-child(11) a:before { content: url(../img/user1.png);}
.nav li:nth-child(12) a:before { content: url(../img/db.png);}

.nav a.plus:after { content: url(../img/plus.png);}
.nav a.minus:after { content: url(../img/minus.png);}

.nav li:nth-child(8) a.li-ai:before { content: url(../img/product-add.png);}
.nav li:nth-child(8) a.li-vi:before { content: url(../img/product2.png);}
.nav li:nth-child(8) a.li-vs:before { content: url(../img/products.png);}
.nav li:nth-child(8) a.li-vc:before { content: url(../img/covers.png);}

.nav li:nth-child(9) a.li-ns-f:before { content: url(../img/sheet-add.png);}
.nav li:nth-child(9) a.li-vs-f:before { content: url(../img/sheet.png);}
.nav li:nth-child(9) a.li-np-f:before { content: url(../img/file-add.png);}
.nav li:nth-child(9) a.li-vp-f:before { content: url(../img/files.png);}
.nav li:nth-child(9) a.li-ni-f:before { content: url(../img/file-add.png);}
.nav li:nth-child(9) a.li-vi-f:before { content: url(../img/files.png);}

.nav li:nth-child(11) a.li-nu:before { content: url(../img/user-add.png);}
.nav li:nth-child(11) a.li-vu:before { content: url(../img/users.png);}
.nav li:nth-child(11) a.li-vg:before { content: url(../img/group.png);}


.nav li a:hover {
  background: #444;
}

.nav li a.active {
  box-shadow: inset 5px 0 0 orange, inset 6px 0 0 #222;
  background: #444;
}

nav {
  background-color: #fff;
}

.nav-profile {
  position: relative;
}

#dropdown_user {
  left: -130px;
  top: 40px;
  border: 1px solid #999;
  border-radius: 2px;
}

.dropdown-content {
  margin: 0px;
}

.dropdown-content ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.dropdown-content ul li {
  text-align: left;
  padding: 5px;
}

.dropdown-content ul li img {
  vertical-align: middle;
  padding-right: 10px;
}

.nav-user {
  float: right;
  padding-right: 15px;
  padding-top: 4px;
}

.nav-user div {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
  text-align: center;
  vertical-align: middle;
}

div.list-item {
  padding-left: 0px;
  padding-right: 0px;
  width: 100%;
}

.list-item div {
  display: inline-table;
  margin-top: 5px;
  float: left;
  width: 50%;
  padding: 0px;
  font-size: 10px;
  padding-top: 5px;
}


div.dropdown {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  max-height: 420px;
  overflow: scroll;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

div.show {
  display: block;
}

.nav-user a {
  color:#000;
  text-decoration: none;
}

.nav-user a:hover {
  text-decoration: underline;
}

.nav-user button {
  color:#000;
  text-decoration: none;
  background-color: #fff;
  border: none;
  position: relative;
}

.nav-user button:hover {
  text-decoration: underline;
  cursor: pointer;
}

.button-badge {
  background-color: #fa3e3e;
  border-radius: 2px;
  color: white;
 
  padding: 1px 3px;
  font-size: 10px;
  
  position: absolute; /* Position the badge within the relatively positioned button */
  top: 0;
  right: 0;
}

.sidebar-top {
  text-align: center;
  height: 50px;
}

.sidebar-search {
  padding-top: 12px;
  padding-left: 10px;
}

.sidebar-search, #sidebar-form {
  height: 26px;
}

#sidebar-input {
  background: url('../img/searchW.png') no-repeat scroll 10px 6px #F4F4F4;
  border: 0px none;
  width: 150px;
  padding: 6px 15px 6px 35px;
  border-radius: 15px;
  box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.2) inset;
}

#sidebar-submit {
  position: relative;
  left: 4px;
  bottom: 25px;
  padding: 5px;
  border: 1px solid #999;
  background-color: #FFF;
  height: 25px;
  width: 25px;
  opacity: 0;
}

.dropdown-products {
  display: none;
}

ul.ul-products {
  margin: 0px;
  padding: 0px;
  list-style: none;
  background: #404040;
}

ul.ul-products a {
  padding-left: 70px;
}

ul.ul-products a:before {
  left: 45px;
}

.dropdown-docs {
  display: none;
}

ul.ul-docs {
  margin: 0px;
  padding: 0px;
  list-style: none;
  background: #404040;
}

ul.ul-docs a {
  padding-left: 70px;
}

ul.ul-docs a:before {
  left: 45px;
}

.dropdown-users {
  display: none;
}

div.dropdown-links {
  padding-top: 3px;
  border-bottom: 1px solid #ccc;
  width: 90%;
}

div.dropdown-links a:hover {
  cursor: pointer;
}

ul.ul-users {
  margin: 0px;
  padding: 0px;
  list-style: none;
  background: #404040;
}

ul.ul-users a {
  padding-left: 70px;
}

ul.ul-users a:before {
  left: 45px;
}

.sidebar-footer {
  text-align: center;
  color: #fff;
  margin-top: 45px;
}

.sidebar-footer a {
  color: #fff;
  text-decoration: none;
}
/* Slider/homepage styles end */


/* Login page styles start */
.title-login {
  font-size: 15px;
}
/* Login page styles end */



/* Calculator styles start */
.divs-calc {
  padding: 10px;
  padding-bottom: 15px;
}
.divs-calc div {
  display: inline-block;
  text-align: center;
}
.divs-calc input {
  padding: 16px;
  text-align: center;
}
.calc-minus {
  padding: 16px;
  background-color: #e2e2e2;
  border: 1px solid #ccc;
  margin-right: -1px;
}
.calc-plus {
  padding:16px;
  background-color: #e2e2e2;
  border: 1px solid #ccc;
  margin-left: -1px;
}

.calc-plus:hover {
  cursor: pointer;
}

.calc-minus:hover {
  cursor: pointer;
}
/* Calculator styles end */


/* Files page styles start */
.drive-link {
  padding-top: 5px;
  padding-bottom: 5px;
}

.drive-link div {
  vertical-align: middle;
  display: inline-table;
}

.drive-box {
  display: none;
}
/* Files page styles end */


/* Product page styles start */
#images_uploaded img {
  width: 150px;
  display: inline-table;
}

#images_uploaded ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

#images_uploaded ul li {
  float: left;
  padding: 7px;
  width: auto;
  height: auto;
}

.products-title {
  width: 100%;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 0px;
  height: 25px;
  padding-top: 8px;
  font-size: 13px;
  background-color: #666;
  color: #fff;
}

.products-title a:hover {
  cursor: pointer;
  color: #ccc;
  text-decoration: underline;
}

.products-link {
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}

.products-box {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-radius: 5px;
  background-color: #fff;
  text-align: center;
}

.products-padding {
  padding: 10px;
  padding-bottom: 0px;
}

.form-products {
  font-size: 10px;
}

.box-loading {
    font-size: 50px;
    font-style: italic;
    position: fixed;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    padding-top: 90px;
    text-align: center;
    display: none;
    z-index: 99;
    background: rgba(80,80,80,0.2);
}

.fieldset-inline {
  border:0px;
  padding:0px;
}

.fieldset-inline p {
}

.fieldset-inline input[type=text] {
  padding:7px;
  border:1px solid #ccc;
  border-radius:5px;
}

.fieldset-inline input[type=checkbox] {
  -webkit-apperance:none;
  width:20px;
  height: 20px;
  background: #fff;
  border-radius: 5px;
  border: 2px solid #ccc;
}

.fieldset-inline div {
  display:inline-table;
  margin-left:10px;
  margin-right:10px;
  margin-bottom: 15px;
  vertical-align:bottom;
}
.fieldset-inline a:hover {
  cursor: pointer;
  color: #666;
  text-decoration: underline;
}

.fieldset-inline select {
  padding:6px;
  border:1px solid #ccc;
  border-radius: 5px;
}

.fieldset-imgs fieldset {
  border:0px;
  padding:0px;
  border-bottom:1px solid #999;
  margin-top:10px;
  padding-bottom:5px;
}

.fieldset-imgs {
  border: none;
}

.modTitle {
  font-weight: bold;
  text-decoration: underline;
}

.modif ul {
  margin: 0px;
  padding: 0px;
  list-style:none;
  display: inline-table;
  vertical-align: middle;
}

.button-delete {
  width: 100%;
  padding: 10px;
  border: 1px solid #9A0000;
  background-color: #9A0000;
  margin-top:25px; 
  margin-bottom: 25px;
  clear:both;
  border-radius: 5px;
  color: #fff;
  font-size: 13px;
}

.button-delete:hover {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  cursor: pointer;
}


.button-products {
  width: 100%;
  padding: 10px;
  border: 1px solid #666;
  background-color: #666;
  margin-top:25px; 
  margin-bottom: 25px;
  clear:both;
  border-radius: 5px;
  color: #fff;
  font-size: 13px;
}

.button-products:hover {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  cursor: pointer;
}

.button-save {
  width: 100%;
  border: 1px solid #666;
  background-color: #666;
  clear:both;
  color: #fff;
  font-size: 11px;
}

.button-save:hover {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  cursor: pointer;
}

.table-items {
  font-size: 9px;
}

.table-items td {
  padding: 2px;
}

.table-items th {
  padding: 10px;
  vertical-align: top;
}

.resp-show {
  display: none;
}

.firstStyle {
  border-top: 1px solid #000;
}

.trStyle {
}

.lastStyle {
  border-bottom: 1px solid #000;
}

.cmn-toggle {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}

.cmn-toggle + label {
  display: block;
  position: relative;
  cursor: pointer;
  outline: none;
  user-select: none;
}

input.cmn-toggle-round + label {
  padding: 2px;
  width: 35px;
  height: 15px;
  background-color: #dddddd;
  border-radius: 60px;
}
input.cmn-toggle-round + label:before,
input.cmn-toggle-round + label:after {
  display: block;
  position: absolute;
  top: 1px;
  left: 1px;
  bottom: 1px;
  content: "";
}
input.cmn-toggle-round + label:before {
  right: 1px;
  background-color: #f1f1f1;
  border-radius: 60px;
  transition: background 0.4s;
}
input.cmn-toggle-round + label:after {
  width: 16px;
  background-color: #fff;
  border-radius: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: margin 0.4s;
}
input.cmn-toggle-round:checked + label:before {
  background-color: #8ce196;
}
input.cmn-toggle-round:checked + label:after {
  margin-left: 20px;
}

.box-email {
  display: none;
}

.divTDInfo {
  clear: both;
}

.divTDInfo a {
  margin-left: 5px;
  margin-right: 5px;
  text-decoration: none;
}

.tdInfo {
  vertical-align:top;
  border-right: 1px solid #ccc;
}

.tdInfo-left {
  float: left;
  padding-left: 5px;
  padding-top: 5px;
}

.tdInfo-right {
  float: right;
  padding-top: 5px;
  padding-right: 5px;
}

.trImages {
  border-bottom:1px solid #999;
}

.tdImages {
  text-align:left; 
  padding:0px;
}

.trStyle {
  border-bottom: 1px solid #ccc;
}

.add-table:hover {
  cursor: pointer;
}

.imgMain {
border-bottom: 4px solid #999;
}

.imgItem:hover {
cursor: pointer;
}
/* Product page styles end */



/* Sheets page styles start */
.table-buttons {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;

}

.table-buttons div {
  border: 1px solid #999;
  background-color: rgba(255, 255, 255, 0.6);
  min-width: 69px;
  height: 69px;
  border-radius: 2px;
  vertical-align: middle;
  display: inline-block;
  font-size: 10px;
  padding: 5px;
  margin-left: 10px;
  margin-right: 10px;
}

.table-buttons div p {
  vertical-align: middle;
}

.table-buttons a {
  text-decoration: none;
  color: #000;
}

.table-buttons div:hover {
  border: 1px solid #000;
  cursor: pointer;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.table-box {
  width: 300px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -100px 0 0 -150px;
  background-color: #fff;
  border: 1px solid #999;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  border-radius: 2px;
  text-align: center;
  display: none;
}

.boxSave {
  display: none;
}

.boxChanges {
  display: none;
}

.multiPic:hover {
  cursor: pointer;
}

.multiCover:hover {
  cursor: pointer;
}

span.multiPicSelected.multiPic {
  border:1px #666 dashed;
}
img.multiPicSelected.multiPic {
  border:1px #666 dashed;
}
img.multiCoverSelected.multiCover {
  border:1px #666 dashed;
}
img.addPicSelected.addMultiPic {
border:1px #666 dashed;
}
img.addCoverSelected.addMultiCover {
border:1px #666 dashed;
}

.addMultiPic {
  border:1px transparent solid;
}
.multiPic {
  border:1px transparent solid;
}
.multiCover {
  border:1px transparent solid;
}

.photo-cont {
  position: relative;
  display: none;
}

.photo-box {
  width: 60%;
  height: 75%;
  overflow: auto;
  margin: auto;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #ccc;
  min-height: 500px;
  min-width: 500px;
  z-index: 9;
  border: 1px #999 solid;
  box-shadow: 0px 0px 2px #999;
}

.photo-buttons {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 20px;
  padding-right: 20px;
}

.photo-buttons span {
  float: right;
}

.photo-buttons a:hover {
  text-decoration: underline;
  color: #999;
  cursor: pointer;
}

.ac-container label{
    padding: 5px 20px;
    position: relative;
    z-index: 20;
    display: block;
    height: 30px;
    cursor: pointer;
    color: #777;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
    line-height: 33px;
    font-size: 12px;
    background: -moz-linear-gradient(center top , #FFF 1%, #EAEAEA 100%) repeat scroll 0% 0% transparent;
    box-shadow:
        0px 0px 0px 1px rgba(155,155,155,0.3),
        1px 0px 0px 0px rgba(255,255,255,0.9) inset,
        0px 2px 2px rgba(0,0,0,0.1);
}

.ac-container label:hover{
    background: #fff;
}

.ac-container input:checked + label,
.ac-container input:checked + label:hover{
  box-shadow: 0px 0px 0px 1px rgba(155, 155, 155, 0.3), 0px 2px 2px rgba(0, 0, 0, 0.1);
  background: none repeat scroll 0% 0% #666;
  color: #FFF;
  text-shadow: 0px 1px 1px #000;
}

.ac-container label:hover:after,
.ac-container input:checked + label:hover:after{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: 13px;
    top: 7px;
    background: transparent url(img/arrow_down.png) no-repeat center center; 
}

.ac-container input:checked + label:hover:after{
    background-image: url(img/arrow_up.png);
}

.ac-container input{
    display: none;
}

.ac-container article{
    background: rgba(255, 255, 255, 0.5);
    margin-top: -1px;
    overflow: hidden;
    height: 0px;
    position: relative;
    z-index: 10;
    transition:
        height 0.3s ease-in-out,
        box-shadow 0.6s linear;
}
.ac-container input:checked ~ article{
    transition:
        height 0.5s ease-in-out,
        box-shadow 0.1s linear;
    box-shadow: 0px 0px 0px 1px rgba(155,155,155,0.3);
}

.ac-container article p{
    font-style: italic;
    color: #777;
    line-height: 23px;
    font-size: 14px;
    padding: 20px;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
}

.ac-container input:checked ~ article.ac-small{
    height: 150px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.ac-container input:checked ~ article.ac-medium{
    height: 310px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.ac-container input:checked ~ article.ac-large{
    height: 470px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.ac-container input:checked ~ article.ac-xlarge{
    height: 610px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.ac-container input:checked ~ article.ac-xxlarge{
    height: 760px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.table-new {
  display: none;
  border-bottom: 1px solid #999;
}

.table-new input {
  padding: 2px;
  width: 35px;
}

.cover-cont {
  position: relative;
  display: none;
}

.cover-box {
  width: 60%;
  height: 75%;
  overflow: auto;
  margin: auto;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #ccc;
  min-height: 500px;
  min-width: 500px;
  z-index: 9;
  border: 1px #999 solid;
  box-shadow: 0px 0px 2px #999;
}

.cover-buttons {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 20px;
  padding-right: 20px;
}

.cover-buttons span {
  float: right;
}

.cover-buttons a:hover {
  text-decoration: underline;
  color: #999;
  cursor: pointer;
}

.ac-container-covers {

}

.ac-container-covers label{
    padding: 5px 20px;
    position: relative;
    z-index: 20;
    display: block;
    height: 30px;
    cursor: pointer;
    color: #777;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
    line-height: 33px;
    font-size: 12px;
    background: -moz-linear-gradient(center top , #FFF 1%, #EAEAEA 100%) repeat scroll 0% 0% transparent;
    box-shadow:
        0px 0px 0px 1px rgba(155,155,155,0.3),
        1px 0px 0px 0px rgba(255,255,255,0.9) inset,
        0px 2px 2px rgba(0,0,0,0.1);
}

.ac-container-covers label:hover{
    background: #fff;
}

.ac-container-covers input:checked + label,
.ac-container-covers input:checked + label:hover{
  box-shadow: 0px 0px 0px 1px rgba(155, 155, 155, 0.3), 0px 2px 2px rgba(0, 0, 0, 0.1);
  background: none repeat scroll 0% 0% #666;
  color: #FFF;
  text-shadow: 0px 1px 1px #000;
}

.ac-container-covers label:hover:after,
.ac-container-covers input:checked + label:hover:after{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: 13px;
    top: 7px;
    background: transparent url(img/arrow_down.png) no-repeat center center; 
}

.ac-container-covers input:checked + label:hover:after{
    background-image: url(img/arrow_up.png);
}

.ac-container-covers input{
    display: none;
}

.ac-container-covers article{
    background: rgba(255, 255, 255, 0.5);
    margin-top: -1px;
    overflow: hidden;
    height: 0px;
    position: relative;
    z-index: 10;
    transition:
        height 0.3s ease-in-out,
        box-shadow 0.6s linear;
}
.ac-container-covers input:checked ~ article{
    transition:
        height 0.5s ease-in-out,
        box-shadow 0.1s linear;
    box-shadow: 0px 0px 0px 1px rgba(155,155,155,0.3);
}

.ac-container-covers article p{
    font-style: italic;
    color: #777;
    line-height: 23px;
    font-size: 14px;
    padding: 20px;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
}

.ac-container-covers input:checked ~ article.aco-xs{
    height: 45px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.ac-container-covers input:checked ~ article.aco-small{
    height: 150px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.ac-container-covers input:checked ~ article.aco-medium{
    height: 310px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.ac-container-covers input:checked ~ article.aco-large{
    height: 620px;
    padding-top: 10px;
    padding-bottom: 10px;
}
/* Sheets page styles start */



/* Inventory page styles start */
input[type="text"].editbox {
  padding:3px;
  text-align:center;
  background-color:#ffffcc;
  border:solid 1px #000;
  display:none;
  border-radius: 3px;
  font-size: 9px;
}

.edit_tr:hover {
  cursor: pointer;
}


.cb-no {
  margin-top: 35px;
  padding-left: 15px;
  font-weight: bold;
  font-size: 16px;
  font-style: italic;
}

.cb-link:hover {
  text-decoration: underline;
  cursor: pointer;
}

.col-i {
  min-height: 210px;
}

.inventory-padding {
  padding: 10px;
  padding-bottom: 0px;
}

.table-inventory {
  position: relative;
  border-collapse: collapse;
  border-spacing: 0;
}

.vf-hide {
  display: none;
}

.vf-links {
  margin-bottom: -5px;
}

.vf-links a:hover {
  text-decoration: underline;
  cursor: pointer;
}

.cb-links {
  margin-bottom: -25px;
  padding-left: 15px;
}

.cb-links a {
  text-decoration: none;
  color: #000;
}

.cb-links a:hover {
  text-decoration: underline;
}

.submit-cb {
  float: right;
  margin-right: 15px;
}

.vf-link:hover {
  text-decoration: underline;
  cursor: pointer;
}

.vf-div {
  display: table;
  width: 100%;
  position: absolute;
  top: 24px;
  background-color: #fff;
}

.vf-th {
  display: table-row;
  background-color: #404040;
  color: #fff;
}

.vf-tr {
  display: table-row;
}

.vf-td {
  display: table-cell;
}

.ef-box {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-radius: 5px;
  background-color: #fff;
  text-align: center;
  margin-top: 25px;
}

.af-link {
  color: #fff;
  text-decoration: none;
}

.af-link:hover {
  text-decoration: underline;
}

.table-locations th {
  background: #999;
}

.table-locations a {
  color: #000;
}

.col-el {
  max-height: 500px;
  overflow: scroll;
}

.button-locations {
  display: none;
}

.button-locations input {
  display: inline-block;
}

.button-location {
  width: 30%;
  padding: 6px;
  border: 1px solid #ccc;
  clear:both;
  color: #000;
  margin-top: 10px;
  margin-bottom: 10px;
}

.button-location:hover {
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.vf-links a {
  color: #000;
  text-decoration: none;
}

.vf-links a:hover {
  text-decoration: underline;
}

.pagination {
    margin: 10px;
    padding-bottom: 10px;
    padding-top: 10px;
    padding-left: 0px;
}

.pagination li.active {
    background: #F0F0F0;
    color: #333;
}

.pagination li.first {
    border-radius: 5px 0px 0px 5px;
}
.pagination li {
    display: inline;
    padding: 6px 10px 6px 10px;
    border: 1px solid #ddd;
    margin-right: -1px;
    font: 15px/20px Arial, Helvetica, sans-serif;
    background: #FFFFFF;
    box-shadow: inset 1px 1px 5px #F4F4F4;
}

.pagination li:hover {
  cursor: pointer;
}

.pagination li.last {
    border-radius: 0px 5px 5px 0px;
}

.pagination li a {
    text-decoration: none;
    color: #666;
}

.vi-links {
  margin-bottom: 10px;
  padding-left: 15px;
}
.vi-links a {
  color: #000;
  text-decoration: none;
  font-size: 12px;
}
.vi-links a:hover {
  text-decoration: underline;
}
/* Inventory page styles end */




/* Orders page styles start */
.vs-links {
  margin-bottom: 10px;
}
.vs-links a {
  color: #000;
  text-decoration: none;
  font-size: 12px;
}
.vs-links a:hover {
  text-decoration: underline;
}
#form-date-stats {
  color:#000;
  font-size: 11px;
}
#form-date-stats div {
}

#form-date-stats input {
  padding: 3px;
}

.cont-top {
  border-bottom: 1px solid #ccc;
  padding-top: 15px;
  padding-bottom: 15px;
  height: 100px;
}

.cont-top div {
  height: 100px;
  text-align: left;
}

.vs-dropdown
{
margin: 0px -22px 0 0;
width: 143px;
position: relative;
height: 17px;
}
.vs-submenu
{
position: absolute;
top: -8px;
left: -226px;
z-index: 100;
width: 350px;
display: none;
margin-left: 10px;
padding: 0px 0 5px;
border: 1px solid #666;
margin-top: 32px;
background: #fff;

}

.vs-submenu div.inline {
display: inline-table;
}

.vs-dropdown li a
{
color: #555555;
display: block;
padding: 6px 15px;
cursor: pointer;
text-decoration:none;
}

.vs-dropdown li a:hover
{
text-decoration: underline;
color:#000;
}
a.vs-time 
{
line-height: 16px;
position: absolute;
z-index: 110;
display: block;
padding: 11px 0 0 20px;
height: 28px;
width: 121px;
margin: -11px 0 0 -10px;
text-decoration: none;
background: url(../img/arrow.png) 116px 17px no-repeat;
cursor:pointer;
}
a.vs-time:hover {
color:#fff;
}

.vs-root
{
list-style:none;
margin:0px;
padding:0px;
font-size: 11px;
padding: 0px 0 0 0px;
background: #fff;
}
/* Orders page styles end */




/* Responsive boxes styles start */
.section {
  clear: both;
  padding: 0px;
  margin: 0px;
}

.col {
  display: block;
  float:left;
  margin: 1% 0 1% 1.6%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-radius: 5px;
  background-color: #fff;
  text-align: center;
}

.col:first-child { 
  margin-left: 0; 
}

.group:before,.group:after { 
  content:""; 
  display:table; 
}

.group:after { 
  clear:both;
}

/* For IE 6/7 */
.group { 
  zoom:1;  
}

/*  GRID OF TWO  */
.span_2_of_2 {
  width: 100%;
}
.span_1_of_2 {
  width: 49.2%;
}


/*  GRID OF THREE  */
.span_3_of_3 { 
  width: 100%; 
}

.span_2_of_3 { 
  width: 66.13%; 
}

.span_1_of_3 { 
  width: 32.26%; 
}



/*  GRID OF FOUR  */
.span_4_of_4 {
  width: 100%;
}
.span_3_of_4 {
  width: 74.6%;
}
.span_2_of_4 {
  width: 49.2%;
}
.span_1_of_4 {
  width: 23.8%;
}
/* Responsive boxes styles end */




/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */
@media only screen and (max-width: 480px) {
  .span_3_of_3, .span_2_of_3, .span_1_of_3 { 
    width: 100%; 
  }

  .form-login {
    padding-left: 15px;
    padding-right: 15px;
  }

  .form-login input[type="password"], .form-login input[type="text"], .form-login input[type="submit"] {
    width: 100%;
    padding: 10px;
  }

  .form-login input[type="password"], .form-login input[type="text"] {
    font-size: 16px;
  }

  .page {
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 50px;
  }

  .col-i {
    min-height: 150px;
    min-width: 135px;
  }

  .col-i img {
    width: 50px;
  }

  .box-list {
    text-align: center;
  }

  .box-list ul li span {
    display: block;
    padding-top: 10px;
    float: none;
    padding-left: 25px;
  }

  .resp-hide {
    display: none;
  }


}


@media only screen and (max-width: 600px) {
  table.table-resp thead {
    display: none;
  }

  table.table-resp tr {
    display: block;
    border-bottom: 2px solid #333;

  }

  table.table-resp td {
    display: block;
    text-align: right;
    border-bottom: 1px dotted #333;
    padding: 10px;
  }

  table.table-resp td:last-child {
    border-bottom: 0;
  }

  table.table-resp td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
  }

}

@media only screen and (max-width: 796px) {
  .col-i {
    margin: 1% 0 1% 0%;
    width: 50%;
    border-radius: 0px;
  }
}

/* Old values was 597px */
@media only screen and (max-width: 980px) {
  .col { 
    margin: 1% 0 1% 0%;
  }
}

/* Old values was 597px */
@media only screen and (max-width: 980px) {
  .span_2_of_2, .span_1_of_2, .span_4_of_4, .span_3_of_4, .span_2_of_4, .span_1_of_4 { width: 100%; }
}



@media only screen and (max-width: 480px) {
  .col-i {
    width: 50%;
  }
}
/* Responsive styles end */


