/*------------------------------------------------------------------
[1. Global]
*/

body {
	background: #E9E9E9 url(../img/body-bg.png) repeat 0 0;
	font: 14px/1.7em 'Helvetica Neue", Helvetica, Arial, sans-serif';
}
    
p {
	font: 13px/1.7em 'Open Sans';
}
    
input,
button,
select,
textarea {
  font-family: 'Helvetica Neue", Helvetica, Arial, sans-serif';
}

.dropdown .dropdown-menu {
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

.btn-icon-only {
	padding-right: 3px;
	padding-left: 3px;
}

.table td {
	vertical-align: middle;
}

.table-bordered th {
	/*background-color: #E9E9E9;
	background-color:-moz-linear-gradient(top, #FAFAFA 0%, #E9E9E9 100%); /* FF3.6+ 
	background-color:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#FAFAFA), color-stop(100%,#E9E9E9)); /* Chrome,Safari4+ 
	background-color:-webkit-linear-gradient(top, #FAFAFA 0%,#E9E9E9 100%); /* Chrome10+,Safari5.1+ 
	background-color:-o-linear-gradient(top, #FAFAFA 0%,#E9E9E9 100%); /* Opera11.10+ 
	background-color:-ms-linear-gradient(top, #FAFAFA 0%,#E9E9E9 100%); /* IE10+ 
	background-color: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: 11px;
	color: #444;
	text-transform: uppercase;
}







/*------------------------------------------------------------------
[2. Navbar / .navbar]
*/

.navbar .container {
	position: relative;
}

.navbar-inner {
	padding: 7px 0;
	background: #ffffff;
	border-bottom: 1px solid #121212;	
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}

.navbar-fixed-top {
	position: static;
}

.navbar .nav a {
	font-size: 11px;
}

.navbar .brand {
	font-weight: 600;
	position: relative;
	top: 0px;
}

.navbar .search-query {
	background-color: #444;
	width: 150px;
	font-size: 11px;
	font-weight: bold;
}

.navbar .search-query::-webkit-input-placeholder {
    color: #666;
}

.navbar .search-query:-moz-placeholder {
    color: #666;
}


/*------------------------------------------------------------------
[3. Subnavbar / .subnavbar]
*/

.subnavbar 
{
	margin-bottom: 5px;
	border-top: 1px solid #32A3ED;
}
    
.subnavbar-inner {
	height: 60px;
	background: #0872BA;
	background-image: -moz-linear-gradient(top, #0174C4, #0E70B1);
	background-image: -ms-linear-gradient(top, #0174C4, #0E70B1);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0174C4), to(#0E70B1));
	background-image: -webkit-linear-gradient(top, #0174C4, #0E70B1);
	background-image: -o-linear-gradient(top, #0174C4, #0E70B1);
	background-image: linear-gradient(top, #0174C4, #0E70B1);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0174C4', endColorstr='#0E70B1', GradientType=0);
	
	border-bottom: 1px solid #32A3ED;
}

.subnavbar .container > ul {
	display: inline-block;
	height: 60px;
	padding: 0;
	margin: 0;
	border-left: 1px solid #32A3ED;
	
	border-right: 1px solid #246195;
	float:right;
}

.subnavbar .container > ul > li {
	float: left;
	min-width: 80px;
	height: 60px;
	padding: 0;
	margin: 0;
	text-align: center;
	list-style: none;
	border-left: 1px solid #246195;
	border-right: 1px solid #32A3ED;
}

.subnavbar .container > ul > li > a {
	display: block;
	height: 100%;
	padding: 0 15px;
	font-size: 12px;
	font-weight: bold;
	color: #042C46;
	/*text-shadow: 1px 1px 1px rgba(0,0,0,.2);*/
}
.subnavbar .container > ul > li > a:hover {
	color: #fff;
	text-decoration: none;
}

.subnavbar .container > ul > li > a > i {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-top: 10px;
	margin-bottom: .25em;
	font-size: 18px;
}

.subnavbar .container > ul > li > a > span {
	display: block;
}


.subnavbar .container > ul > li.active > a {
	color: #ffffff;
	background: #046CB3;
	background-image: -moz-linear-gradient(top, #0174C4, #0B5586);
	background-image: -ms-linear-gradient(top, #0174C4, #0B5586);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0174C4), to(#0B5586));
	background-image: -webkit-linear-gradient(top, #0174C4, #0B5586);
	background-image: -o-linear-gradient(top, #0174C4, #0B5586);
	background-image: linear-gradient(top, #0174C4, #0B5586);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0174C4', endColorstr='#0B5586', GradientType=0);
	
}
    

.subnavbar .dropdown .dropdown-menu a {
	font-size: 12px;
}

    
.subnavbar .dropdown .dropdown-menu {
    	text-align: left;
    	
		-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;
    }
    
    
    
.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;
}
.subnavbar .caret {
	margin-top: 4px;
	border-top-color: white;
	border-bottom-color: white;
}
.subnavbar .dropdown.open .caret {
	display: none;
}


/*
.purchase, .sales, .production, .dms, .inventory, .fas, .qc, .hr
{
	background-repeat:no-repeat;
	background-position:center;
	width:60px;
	height:50px	
}
.purchase
{
	background-image:url(../img/nav/purchase.png);
}
.subnavbar .purchase:hover
{
	background-image:url(../img/nav/purchase-hover.png);
}
.sales
{
	background-image:url(../img/nav/sales.png);
}
.subnavbar .sales:hover
{
	background-image:url(../img/nav/sales-hover.png);
}
.production
{
	background-image:url(../img/nav/production.png);
}
.subnavbar .production:hover
{
	background-image:url(../img/nav/production-hover.png);
}
.dms
{
	background-image:url(../img/nav/dms.png);
}
.subnavbar .dms:hover
{
	background-image:url(../img/nav/dms-hover.png);
}
.inventory
{
	background-image:url(../img/nav/inventory.png);
}
.subnavbar .inventory:hover
{
	background-image:url(../img/nav/inventory-hover.png);
}
.fas
{
	background-image:url(../img/nav/fas.png);
}
.subnavbar .fas:hover
{
	background-image:url(../img/nav/fas-hover.png);
}
.qc
{
	background-image:url(../img/nav/qc.png);
}
.subnavbar .qc:hover
{
	background-image:url(../img/nav/qc-hover.png);
}
.hr
{
	background-image:url(../img/nav/hr.png);
}
.subnavbar .hr:hover
{
	background-image:url(../img/nav/hr-hover.png);
}*/


/*------------------------------------------------------------------
[4. Main / .main]
*/

.main {
	padding-bottom: 2em;
	
	/*border-bottom: 1px solid #000;*/
}



/*------------------------------------------------------------------
[5. Extra / .extra]
*/

.extra {

	border-top: 1px solid #DDDDDD;
	
	border-bottom: 1px solid #000;

}

.extra-inner {
	padding: 20px 0;
	
	font-size: 11px;
	color: #333;
	
	background: #ffffff;
}

.extra a {
	color: #666;
}

.extra h4 {
	margin-bottom: 1em;
	
	font-weight: 400;
}

.extra ul {
	padding: 0;
	margin: 0;
}

.extra li {
	margin-bottom: .6em;
	
	list-style: none;
}




/*------------------------------------------------------------------
[6. Footer/ .footer]
*/

.footer {
	margin-top: 0;
	
	border-top: 1px solid #246195;
}

.footer-inner {
	padding: 15px 0;
	font-size: 12px;
	color: #ffffff;
	background: #0872BA;
	background-image: -moz-linear-gradient(top, #0174C4, #0E70B1);
	background-image: -ms-linear-gradient(top, #0174C4, #0E70B1);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0174C4), to(#0E70B1));
	background-image: -webkit-linear-gradient(top, #0174C4, #0E70B1);
	background-image: -o-linear-gradient(top, #0174C4, #0E70B1);
	background-image: linear-gradient(top, #0174C4, #0E70B1);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0174C4', endColorstr='#0E70B1', GradientType=0);
	border-top: 1px solid #32A3ED;
	
}

.footer a {
	color: #fff;
}

.footer a:hover {
	color: #FFF;
	text-decoration: none;
}


/*------------------------------------------------------------------
[6. Widget / .widget]
*/

.widget 
{
	position: relative;
	clear: both;
	width: auto;
	margin-bottom: 1em;
	overflow: hidden;
}
	
.widget-header {
	
	position: relative;
	
	height: 40px;
	line-height: 40px;
	
	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 {
		
		position: relative;
		top: 2px;
		left: 10px;
		
		display: inline-block;
		margin-right: 3em;
		
		font-size: 14px;
		font-weight: 800;
		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: 7px 10px 7px;
	
	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 Clearfix */	
.widget-content:before,
.widget-content:after {
    content:"";
    display:table;
}

.widget-content:after {
    clear:both;
}

/* For IE 6/7 (trigger hasLayout) */
.widget-content {
    zoom:1;
}

/* Widget Table */

.widget-table .widget-content {
	padding: 0;
}

.widget-table .table {
	margin-bottom: 0;;
	

}

.widget-table .table tr td:first-child {
	border-left: none;
}

.widget-table .table tr th:first-child {
	border-left: none;
}


/* Widget Plain */

.widget-plain {
	
	background: transparent;
	
	border: none;
}

.widget-plain .widget-content {
	padding: 0;
	
	background: transparent;
	
	border: none;
}


/* Widget Box */

.widget-box {	
	
}

.widget-box .widget-content {	
	background: #E3E3E3;	
	background: #FFF;
}




/*------------------------------------------------------------------
[7. Error / .error-container]
*/

.error-container {
	margin-top: 4em;
	margin-bottom: 4em;
	text-align: center;
}

.error-container h1 {
	margin-bottom: .5em;
	
	font-size: 120px;
	line-height: 1em;
}

.error-container h2 {
	margin-bottom: .75em;
	font-size: 28px;
}

.error-container .error-details {
	margin-bottom: 1.5em;
	font-size: 16px;
}

.error-container .error-actions a {
	margin: 0 .5em;
}





/*------------------------------------------------------------------
[8. Miscellaneous]
*/

.chart-holder {
	width: 100%;
	height: 250px;
}
.center{text-align:center;}

.logo {
  float: left;
  height: 60px;
  margin-right: 20px;
  padding-top: 6px;
}
.logo img {height:47px;}



/*------------------------------------------------------------------
[9. Second Navigation]
*/

.second-nav
{
	margin-bottom: 5px;
}

.second-nav-inner {
	border-collapse:collapse;
	height: 30px;
	background: #f0f0f0;
	border-bottom: 1px solid #ccc;
	border-top: 1px solid #ccc;
}

.second-nav-inner .container > ul {
	display: inline-block;
	height: 30px;
	padding: 0;
	margin: 0;
	border-left: 1px solid #ccc;
}

.second-nav-inner .container > ul > li {
	float: left;
	min-width: 80px;
	height: 30px;
	padding: 0;
	margin: 0;
	text-align: center;
	list-style: none;
	border-right: 1px solid #ccc;
}

.second-nav-inner .container > ul > li > a {
	display: block;
	height: 100%;
	padding: 0 15px;
	font-size: 12px;
	font-weight: bold;
	color: #042C46;
	/*text-shadow: 1px 1px 1px rgba(0,0,0,.2);*/
}
.second-nav-inner .container > ul > li > a:hover {
	color: #fff;
	text-decoration: none;
}

.second-nav-inner .container > ul > li > a > i {
	display: inline-block;
	
	width: 24px;
	height: 10px;
	margin-top: 10px;
	margin-bottom: .25em;
	
	font-size: 18px;
	
}

.second-nav-inner .container > ul > li > a > span {
	display: block;
}


.second-nav-inner .container > ul > li.active > a {
	color: #ffffff;
	
	background: #046CB3;
	background-image: -moz-linear-gradient(top, #0174C4, #0B5586);
	background-image: -ms-linear-gradient(top, #0174C4, #0B5586);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0174C4), to(#0B5586));
	background-image: -webkit-linear-gradient(top, #0174C4, #0B5586);
	background-image: -o-linear-gradient(top, #0174C4, #0B5586);
	background-image: linear-gradient(top, #0174C4, #0B5586);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0174C4', endColorstr='#0B5586', GradientType=0);
	
}
    

.second-nav-inner .dropdown .dropdown-menu a {
	font-size: 12px;
}

    
.second-nav-inner .dropdown .dropdown-menu {
    	text-align: left;
    	
		-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;
    }
    
    
    
.second-nav-inner .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;
}

.second-nav-inner .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;
}
.second-nav-inner .caret {
	margin-top: 4px;
	border-top-color: white;
	border-bottom-color: white;
}
.second-nav-inner .dropdown.open .caret {
	display: none;
}	