.btn-icon-only {
    padding-right: 3px;
    padding-left: 3px;
}

.table td {
    vertical-align: middle;
}

.table-bordered thead th {
    background: #E9E9E9;
    background:-moz-linear-gradient(top, #FAFAFA 0%, #E9E9E9 100%); /* FF3.6+ */
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#FAFAFA), color-stop(100%,#E9E9E9)); /* Chrome,Safari4+ */
    background:-webkit-linear-gradient(top, #FAFAFA 0%,#E9E9E9 100%); /* Chrome10+,Safari5.1+ */
    background:-o-linear-gradient(top, #FAFAFA 0%,#E9E9E9 100%); /* Opera11.10+ */
    background:-ms-linear-gradient(top, #FAFAFA 0%,#E9E9E9 100%); /* IE10+ */
    background:linear-gradient(top, #FAFAFA 0%,#E9E9E9 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA', endColorstr='#E9E9E9');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA', endColorstr='#E9E9E9')";
    font-size: 10px;
    color: #444;
    text-transform: uppercase;
}

.table-bordered tbody th {
    font-size: 10px;
    color: #444;
    text-transform: uppercase;
    text-align: right;
}

.navbar-inverse .navbar-inner {
    border-bottom: 1px solid #121212;
    background: #002346;
}

.navbar-inner {
    padding: 7px 0;
}

.navbar-fixed-top {
    position: static;
}

.navbar .brand {
    padding-top: 3px;
    padding-bottom: 0;
}

.navbar-inverse .nav li.dropdown.open > .dropdown-toggle, .navbar-inverse .nav li.dropdown.active > .dropdown-toggle, .navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
    background: transparent;
}

.subnavbar {
    margin-bottom: 1em;
    border-top: 1px solid #325b83;
}

.subnavbar-inner {
    height: 80px;
    background: #3A3A3A;
    background-image: -moz-linear-gradient(top, #254a6e, #003366);
    background-image: -ms-linear-gradient(top, #254a6e, #003366);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#254a6e), to(#003366));
    background-image: -webkit-linear-gradient(top, #254a6e, #003366);
    background-image: -o-linear-gradient(top, #254a6e, #003366);
    background-image: linear-gradient(top, #254a6e, #003366);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#254a6e', endColorstr='#003366', GradientType=0);
    border-bottom: 1px solid #000;
}

.subnavbar .container > ul {
    display: inline-block;
    height: 80px;
    padding: 0;
    margin: 0;
    border-left: 1px solid #002346;
    border-right: 1px solid #325b83;
}

.subnavbar .container > ul > li {
    float: left;
    min-width: 90px;
    height: 80px;
    padding: 0;
    margin: 0;
    text-align: center;
    list-style: none;
    border-left: 1px solid #325b83;
    border-right: 1px solid #002346;
}

.subnavbar .container > ul > li > a {
    display: block;
    height: 100%;
    padding: 0 15px;
    font-size: 12px;
    font-weight: bold;
    color: #b8c5d2;
    text-shadow: 1px 1px 1px rgba(0,0,0,.2);
}

.subnavbar .container > ul > li > a > i {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-top: 17px;
    margin-bottom: .25em;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.7;
    filter: alpha(opacity=70);
}

.text-muted {
    color: #b5b5b5;
}

.subnavbar .container > ul > li > a > span {
    display: block;
}

.subnavbar-icon-home {
    background-image: url('../img/home.png');
}

.subnavbar-icon-defect {
    background-image: url('../img/defect.png');
}

.subnavbar-icon-bunch {
    background-image: url('../img/bunch.png');
}

.subnavbar-icon-mass {
    background-image: url('../img/mass.png');
}

.subnavbar-icon-user {
    background-image: url('../img/user.png');
}

.subnavbar-icon-cylinder {
    background-image: url('../img/cylinder.png');
}

.subnavbar-icon-report {
    background-image: url('../img/report.png');
}

.subnavbar .container > ul > li > a > .caret {
    margin-top: 4px;
    border-top-color: #a5a3a3;
    border-bottom-color: #a5a3a3;
}

.subnavbar .container > ul > li > a:hover, .subnavbar .container > ul > li.active > a {
    color: #FFF;
    text-decoration: none;
}

.subnavbar .container > ul > li > a:hover > i, .subnavbar .container > ul > li.active > a > i {
    opacity: 1;
    filter: alpha(opacity=100);
}

.subnavbar .container > ul > li.active > a {
    background: #274d72;
}

.subnavbar .container > ul > li.dropdown.open > a > .caret  {
    border-top-color: #fff;
    border-bottom-color: #fff;
}

.subnavbar .dropdown .dropdown-menu {
    text-align: left;
}

.subnavbar .dropdown-menu::before {
    content: '';
    display: inline-block;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #CCC;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: -7px;
    left: 9px;
}

.subnavbar .dropdown-menu::after {
    content: '';
    display: inline-block;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
    position: absolute;
    top: -6px;
    left: 10px;
}


.widget {
    clear: both;
    margin-bottom: 2em;
    overflow: hidden;
}

.widget-header {
    background: #E9E9E9;
    background:-moz-linear-gradient(top, #FAFAFA 0%, #E9E9E9 100%); /* FF3.6+ */
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#FAFAFA), color-stop(100%,#E9E9E9)); /* Chrome,Safari4+ */
    background:-webkit-linear-gradient(top, #FAFAFA 0%,#E9E9E9 100%); /* Chrome10+,Safari5.1+ */
    background:-o-linear-gradient(top, #FAFAFA 0%,#E9E9E9 100%); /* Opera11.10+ */
    background:-ms-linear-gradient(top, #FAFAFA 0%,#E9E9E9 100%); /* IE10+ */
    background:linear-gradient(top, #FAFAFA 0%,#E9E9E9 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA', endColorstr='#E9E9E9');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA', endColorstr='#E9E9E9')";
    border: 1px solid #D5D5D5;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    -webkit-background-clip: padding-box;
}

.widget-header h3 {
    padding-left: 15px;
    padding-right: 15px;
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #555;
    line-height: 18px;
    text-shadow: 1px 1px 2px rgba(255,255,255,.5);
}

.widget-header [class^="icon-"], .widget-header [class*=" icon-"] {
    display: inline-block;
    margin-left: 13px;
    margin-right: -2px;
    font-size: 16px;
    color: #555;
    vertical-align: middle;
}

.widget-content {
    padding: 20px 15px 15px;
    background: #FFF;
    border: 1px solid #D5D5D5;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.widget-header + .widget-content {
    border-top: none;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    -moz-border-radius-topleft: 0;
    -moz-border-radius-topright: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.widget-nopad .widget-content {
    padding: 0;
}

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

.widget-content:after {
    clear:both;
}

.widget-content {
    zoom:1;
}

.widget-table .widget-content {
    padding: 0;
}

.widget-table .table {
    margin-bottom: 0;
    border: none;
}

.widget-table .table tr td:first-child {
    border-left: none;
}

.widget-table .table tr th:first-child {
    border-left: none;
}

.widget-plain {
    background: transparent;
    border: none;
}

.widget-plain .widget-content {
    padding: 0;
    background: transparent;
    border: none;
}

.widget-box .widget-content {
    background: #E3E3E3;
    background: #FFF;
}

.main {
    margin-bottom: 20px;
}

.footer {
    padding-top: 8px;
    padding-bottom: 30px;
    border-top: solid 1px #e4e4e4;
    font-size: 12px;
    color: #b5b5b5;
    margin-top: 20px;
}

.form-actions-fatty {
    padding: 19px 20px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: whiteSmoke;
    border-top: 1px solid #E5E5E5;
    text-align: center;
}

.bighelp {
    position: relative;
    border: 4px solid #d6d6d6;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 40px 50px;
    margin: 58px auto;
    font-size: 18px;
    font-weight: 200;
    line-height: 24px;
    max-width: 700px;
    color: #757575;
}

.bighelp h1 {
    margin-bottom: 5px;
    font-size: 36px;
    line-height: 1;
    letter-spacing: -1px;
    color: #494949;
}

.bighelp-arrow {
    position: absolute;
    width: 58px;
    height: 53px;
    margin-top: -53px;
    top: 0;
    left: 30px;
    background: url(../img/bighelp-arrow.png) no-repeat center center;
}

.datepicker {
    z-index: 1051;
}

input[type=file] {
    background-color: #fff;
    border: 1px solid #ccc;
    height: 20px;
    padding: 4px 6px;
    font-size: 14px;
    line-height: 20px;
    color: #555;
    border-radius: 3px;
}

.mt-10 {
    margin-top: 10px !important;
}
.mb-10 {
    margin-bottom: 10px !important;;
}

.icon-undelete {
    color: lime;
    text-shadow: 1px 1px 0px #000;
    font-size: 13px;
    margin-left: 1px;
}

.icon-undelete:before {
    content: "\2715";
}


a[disabled=disabled] {
    pointer-events: none;
}
