@import url(//fonts.googleapis.com/css?family=Oswald:300);
@import url(//fonts.googleapis.com/css?family=Oswald:400);
@import url(//fonts.googleapis.com/css?family=Roboto);


/*
Document styles
*/

body {
    padding: 0;
    margin: 0;
    background: #f0f0f0;
    font-family: sans-serif;
    overflow: scroll;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: normal;
}

h1, h2, h3 {
    color: #4090a0;
}

h4 {
    color: #70989e;
}

h5 {
    color: #8c9a9c;
}

h6 {
    color: #989b9c;
}

p, ul, ol {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    color: #383838;
}

a {
    color: #249db3;
}

a:hover {
    color: #1ab331;
}



.highlight {
    color: #a03060;
}




/*
Navigation bar
*/

.nav_bar_container{
    position: fixed;
    width: 100%;
    font-size: 20px;
    background: rgb(32, 32, 32);
    background: rgba(32, 32, 32, 0.95);
    height: 50px;
    border-bottom: 1px solid #808080;
}

.nav_bar {
    width: 1024px;
    margin: 0 auto;
}

.nav_header {
    font-family: 'Oswald', sans-serif;
    font-weight: lighter;

    color: #ffb000;
    padding: 10px 20px;
    float: right;
}



/* Top level menu */
ul.nav_menu {
    height: 50px;
    float: left;
}

/* Top level menu and sub-menu lists */
.nav_menu, .nav_menu ul {
    list-style: none;

    font-family: 'Oswald', sans-serif;
    font-weight: normal;

    margin: 0;
    padding: 0;
}

/* Top-level menu item */
.nav_menu > li {
    float: left;
}

/* Top level menu and sub-menu item anchor tags */
.nav_menu li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
	color: #ffffff;

    border-left: 1px solid #404040;
    border-right: 1px solid #000000;
}

/* Top level menu and sub-menu non-selectable item anchor tags */
.nav_menu li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
	color: #ffffff;

    border-left: 1px solid #404040;
    border-right: 1px solid #000000;
}

li.nav_menu_unselectable a {
	color: #b0b0b0;
}

/* Highlight menu items on hover */
.nav_menu > li:hover > a {
    background: #ffb000;
    /*color: #ffffff;*/
}

/* Submenu list; hidden by default */
.nav_menu ul {
    position: absolute;
    display: none;
    z-index: 999;
    height: auto;

    background: rgb(32, 32, 32);
    background: rgba(32, 32, 32, 0.95);
}

/* Display submenu when hovering over containing item */
.nav_menu li:hover ul {
    display: block;
}

/* Submenu item */
.nav_menu ul li a {
    /*width: 80px;*/
    color: #ffffff;
}

/* Highlight submenu items on hover */
.nav_menu ul li:hover a {
    background: #ffb000;
}

/* Current menu item */
ul li.nav_menu_active a {
    color: #4090a0;
}




/*
Page content area
*/

.page_content {
    width: 1024px;
    margin: 0 auto;
    padding: 30px 0 0 0;
}

.tagline {
    text-align: center;
    margin-bottom: 48px;
}


/*
Two column layout
*/

.column_layout {
    margin-top: 24px;
    clear: both;
}

.left_column {
    float: left;
    width: 472px;
    margin-right: 20px;
}

.right_column {
    float: left;
    width: 472px;
    margin-left: 20px;
}

.clear_both {
    clear: both;
}
