body{
	background: #f0f0f0 url("../img/bg.png") repeat;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight:400;
    line-height:1.7;
    margin:0;
    padding: 0;
    text-align:left;
    overflow-x: hidden;
}

nav.topbar {
	padding: 5px 0 !important;
}
.page_header h1 {
	font-size: 1.5rem;
	font-weight: 400;
	margin: 0;
}
.page_header h2 {
	font-size: 0.95rem;
	font-weight: 400;
	margin: 0;
}
.page_header h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0;
}

/* Main Navigation */
nav.nav-menu {
	padding: 2px;
	border-top: 1px dashed #ffffff;
	border-bottom: 1px dashed #ffffff;
}

#nav {
    position:relative;
    margin:0 auto;
    
}
#nav ul {
    margin:0px auto;
    position:relative;
} 
#nav ul li {
    display:inline;
    font-size:15px;
    font-weight:400;
    margin:0;
    padding:0;
    float:left;
    position:relative;
    
}
#nav ul li a {
	padding:10px 15px;
	color:#fff;
	line-height: 20px;
	text-decoration: none;
	text-transform: uppercase;
	display:inline-block;
	border-right:1px dotted #fff;
      
    -webkit-transition:color 0.2s linear, background 0.2s linear;
    -moz-transition:color 0.2s linear, background 0.2s linear;
    -o-transition:color 0.2s linear, background 0.2s linear;
    transition:color 0.2s linear, background 0.2s linear;
}

#nav ul li a:last-child {
    border-right: 0 none;
}
#nav ul li:hover > a {
   /* background:#fff;*/
}

/* Drop-Down Navigation */
#nav ul li:hover > ul
{
/*these 2 styles are very important,
being the ones which make the drop-down to appear on hover */
    visibility:visible;
    opacity:1;
}
#nav ul  ul, #nav ul  ul li ul {
    list-style: none;
    margin: 0;
    padding: 0;
/*the next 2 styles are very important,
being the ones which make the drop-down to stay hidden */
    visibility:hidden;
    opacity:0;
    position: absolute;
    z-index: 99999;
    width:180px;
    background:#39669D;
    box-shadow:1px 1px 3px #ccc;
/* css3 transitions for smooth hover effect */
    -webkit-transition:opacity 0.2s linear, visibility 0.2s linear;
    -moz-transition:opacity 0.2s linear, visibility 0.2s linear;
    -o-transition:opacity 0.2s linear, visibility 0.2s linear;
    transition:opacity 0.2s linear, visibility 0.2s linear;
}
 
#nav ul ul {
    top: 43px;
    left: 1px;
}
 
#nav ul  ul li ul {
    top: 0;
    left: 181px; /* strong related to width:180px; from above */
}
 
#nav ul  ul li {
    clear:both;
    width:100%;
    border:0 none;
    border-bottom:1px solid #c9c9c9;
}
 
#nav ul  ul li a {
    background:none;
    padding:7px 15px;
    color:#fff;
    text-decoration:none;
    display:inline-block;
    border:0 none;
    float:left;
    clear:both;
    width:150px;
}


/* Main Content */
.page-content {
	border: none;
	padding: 15px;
}

.min-height {
	min-height: calc(100vh - 300px) !important;
}

.left-panel {
	padding: 0;
}

.bordered-content h3 {
	font-size: 20px !important;
}

.highlight {
	background: #f6f6f6;
	padding: 15px;
	border: 1px solid #d6d6d6;
}
.highlight .form-group {
	margin: 0 !important;
}

.form-control {
	border-color: #444444 !important;
}

.form-control, .btn {
	border-radius: 4px !important;
}

.form-control.sm-fnt {
	font-size: 12px;
	padding: 0.25rem !important;
}

label.control-label-thin {
	font-weight: 400;
}
label.control-label {
	font-weight: 600;
}


.btn-action {
	width: 99%;
	height: auto;
	font-weight: 400;
}
.bordered-content {
	min-height: 210px;
     
}    
.page-bordered-content {

    padding: 15px;
    text-align: justify;

}
.bordered-content h3 {
 	padding: 0.5rem .75rem;
    font-size: 1.3rem;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
}

.counter-wizard {
}
.counter {

}
small.error {
	color: #ca0000;
}
input.error, select.error {
	border: 1px solid #ca0000;
	background-color: #ffa6a6
}

.control-label-sm{
	font-size: 80%;
	line-height: 1.4;
	font-weight: bold;
}
.table-bordered td, .table-bordered th {
    border: 1px solid #333 !important;
}

.table td, .table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 0px solid #dee2e6;
}


.wizard {
	margin-bottom: 15px;
	padding: 0;
}
.wizard-inner {
	
 	border: 1px solid #d7d7d7;
	color:#333;
	height: 240px;
	overflow-y: hidden;
}

.wizard-header {
	background-color:#E5e5e5;
	padding: 0.5rem .75rem;
	font-weight: 700;
}

.wizard-header h2 {
	font-size: 18px;
}

.wizard-body {
	text-align: left
}
.wizard-body label {
	font-weight: 700;
	color: #0000ff !important;
}


.btn-wizard {
	font-size: 13px !important;
	text-align: left !important;
	white-space: wrap !important;
	padding: 10px 30px 10px 10px !important;
	
	display: inline-block;
	font-weight: 600;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	border-radius: 4px;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	width: 100%;
}
.btn-wizard:hover {
	text-decoration:none;
}

.link-text {
	display: block;
	padding: 5px 0;
	margin: 0px 20px;
	text-decoration: none;
	font-size: 12px;
	font-weight: 700;
}
.link-text:hover {
	text-decoration: none;
}

.footer {
	padding: 10px 0;
	margin: 10px 0 0 0;
	text-align: center;
}

.important-documents {
	background: #f2f2f2 url('../img/calendar.png') no-repeat;
	background-position: 50% 15px;
	padding: 30px 5px 10px 5px;
	text-align: center;
}
.important-documents h2 {
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	margin: 45px 0 0 0;
}

.news-notices {
	background: #161332 url('../img/news.png') no-repeat;
	background-position: 50% 15px;
	padding: 30px 5px 10px 5px;
	text-align: center;
}
.news-notices h2 {
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	margin: 45px 0 0 0;
}
.news-notices .wizard-body-inner {
	min-height: 180px;
}

.tender-notices {
	background: #f2f2f2 url('../img/imp_links_brwn.png') no-repeat;
	background-position: 96% 7%;
	/*padding: 30px 5px 10px 5px;*/
	text-align: center;
	border-bottom: 5px solid #e53207;
}
.tender-notices h2 {
	font-size: 14px;
	font-weight: 700;
	text-align: left;
	margin: 8px 0 0 7px;
}
.tender-notices .wizard-body {
	margin-top: 7px;
	border-top: 3px solid #e53207;	
}

.ticker { overflow:auto; position:relative; }
.ticker div { display:block; }

