@charset "utf-8";
/* ===============================
   GLOBAL
================================ */

body {
    margin: 0;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: normal;
    background: url(../images/header_bg.jpg) repeat-x;
}

a {
    color: #be0000;
    outline: 0;
    text-decoration: none;
}

a:hover {
    color: #4099d1;
    text-decoration: none;
}

img {
    border: 0;
}

#wrapper {
    width: 1000px;
    margin: 0 auto;
}

.header_bg {
    position: relative;
    z-index: 1000;
}

/* ===============================
   NAVIGATION
================================ */

.nav {
    position: relative;
    z-index: 10000;
    overflow: visible;
}

.nav ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    overflow: visible;
}

.nav ul li {
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: bold;
    line-height: 50px;
    height: 50px;
}

/* Horizontal menu */
@media screen and (min-width: 600px) {
    .nav ul li {
        display: inline-block;
        vertical-align: top;
        margin-right: -4px;
    }
}

/* Menu links */
.nav ul li > a {
    display: block;
    padding: 0 10px;
    margin: 0 5px;
    color: #0a83bb;
    transition: background-color 0.3s;
}

.nav ul li > a:hover,
.nav ul li > a.active {
    background-color: #f8c301;
    color: #c71a0a;
}

/* ===============================
   FIRST LEVEL DROPDOWN
================================ */

.nav ul li.dropdown > ul.dropdown-menu {
    display: none;
    position: absolute;
    top: 50px; /* matches menu height */
    left: 0;
    min-width: 200px;
    background: #ffffff;
    border: 1px solid #ccc;
    padding: 0;
    margin: 0;
    z-index: 10001;
}

.nav ul li.dropdown:hover > ul.dropdown-menu {
    display: block;
}

/* Dropdown list items */
.nav ul li.dropdown ul.dropdown-menu li {
    display: block;
    height: auto;
    line-height: normal;
}

/* Dropdown links */
.nav ul li.dropdown ul.dropdown-menu li a {
    padding: 8px 12px;
    margin: 0;
    background: #ffffff;
    color: #0a83bb;
    font-size: 14px;
    white-space: nowrap;
}

.nav ul li.dropdown ul.dropdown-menu li a:hover {
    background: #f8c301;
    color: #c71a0a;
}

/* ===============================
   SECOND LEVEL DROPDOWN
   (Dharangaon → PDFs)
================================ */

.nav ul li.dropdown ul li.dropdown-submenu {
    position: relative;
}

.nav ul li.dropdown ul li.dropdown-submenu > ul.dropdown-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid #ccc;
    z-index: 10002;
}

.nav ul li.dropdown ul li.dropdown-submenu:hover > ul.dropdown-menu {
    display: block;
}

/* ===============================
   BUTTONS
================================ */

.btn {
    background: #3498db;
    background-image: linear-gradient(to bottom, #3498db, #2980b9);
    border-radius: 5px;
    font-family: Arial;
    color: #ffffff;
    font-size: 17px;
    padding: 7px 10px;
    text-align: center;
    width: 250px;
    display: inline-block;
}

.btn:hover {
    background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
    color: #ffffff;
}

/* ===============================
   FOOTER
================================ */

.footer {
    background: #eeeeee;
    padding: 20px 0;
}

.footer_wrapper {
    width: 1000px;
    margin: 0 auto;
    font-size: 13px;
}

.footer_title {
    font-size: 17px;
    font-weight: bold;
    color: #1a76b0;
    background: url(../images/title_bg.jpg) no-repeat left bottom;
}

/* ===============================
   CONTENT STYLES
================================ */

h1.page_title {
    font-size: 22px;
    color: #e87814;
    border-bottom: dashed 1px #007ac0;
}

.border_bottom {
    border-bottom: solid 1px #d7d7d7;
}

.border_bottom_list {
    border-bottom: solid 2px #85afd6;
    background: #ebf8ff;
}

.bullet {
    background: url(../images/dot.jpg) no-repeat left 13px;
}

.orange_title {
    font-size: 13px;
    color: #e87814;
}

.blue_title {
    font-size: 12px;
    color: #3c8dc0;
}

/* ===============================
   FORMS
================================ */

.login_bg {
    background: #ebf8ff;
    border: solid 3px #64aed6;
    border-radius: 10px;
    width: 500px;
    margin: 0 auto;
    padding: 30px;
}

.textfield {
    background: #fff;
    width: 250px;
    height: 25px;
    padding: 5px;
    border: solid 1px #3a86af;
}

/* ===============================
   TEXT HELPERS
================================ */

.style1 { font-size: 14px; }
.style2 { font-size: 16px; }
.style3 { font-size: 17px; color: #ff0000; }
.smalltext { font-size: 12px; color: #333; }
