/*/* site_main_1200.css
 * author: Stu Johnson
 * creation date: 2/10/2010
 * description:  generic styles for site
 * renamed to site_main_1200 and modified 1/21/14 to accomodate wider 300px ads in right sidebar 
 */
/************************************/ 
/* PAGE LAYOUT DIVS                 */
/************************************/
html, body { /* forces vertical scrollbar for all pages, eliminating horizontal shift for short pages */
	/*width:100%;
	height:100%;
	margin: 0;
	padding: 0;*/
	/*overflow-x: hidden;*/
	/*box-sizing: border-box;*/
	}


/* PRIMARY PAGE ELEMENTS (DIV IDs) - provide bands of color across screen - some at specific height */
#main_top_bar	{
	background-color:#000;
	padding: 12px 0 20px 0;
	margin-top:0;
	min-width: 1500px;
	color: #fff;
	}
#edition_selector {
	width: 1150px;
	/*margin-left: 75px;
	margin-right:75px;*/
	}
#main_info_alert_bar {
	background-color: darkblue;
	padding: 8px 0 8px 0;
	min-width: 1500px;
	text-align: center;
}
#main_warning_alert_bar {
	background-color: darkred;
	padding: 8px 0 8px 0;
	min-width: 1500px;
	text-align: center;
}
#main_masthead_area_9 {
	background-color: #006633;/* web safe version of book color from PDF (047835) is not as bright */
	margin-top:0;
	min-width: 1500px;
}
#main_masthead_area_10 {
	background-color: #5b305e; /* same as book color from PDF of cover */
	margin-top:0;
	min-width: 1500px;
}
#main_content_area {
	background-color: #fefefe;
}
#main_content_container_full {
	width: 1280px;
	padding: 10px;
	text-align: left;
}
#main_content_container_text {
	width: 1080px;
	padding: 10px;
	text-align: left;
}
#admin_content_area {
	background-color:#eee;
	margin-top:0;
	/*padding:12px;*/
}
#admin_content_container {
	width:1280px;
	padding:10px;
	text-align: left;
}
#main_info_alert_bar_bottom {
	background-color:darkblue;
	padding: 8px 0 8px 0;
	min-width: 1500px;
	text-align: center;
	margin-bottom:-14px;
}
#main_footer_bar {
	background-color:#333;
	min-width:1500px;
	height:200px;
}


#main_page_container  {
	width:1450px;
	text-align:left;
	/*padding-top:4px;*/
	min-height:300px;
	/*background-image: url(../system/communication-words.png);
	background-size:800px;
	background-repeat: no-repeat;*/
	}	
/* masthead base styles - image is inserted on main.cfm since it requires a variable */
#masthead_container {
	/*width:1375px;*/
	height:240px;
	margin-left:95px;
	padding-top:19px;
}
#masthead_logo {
	width:250px;
	float:left;
	margin-right:175px;
}
#masthead_menu_option { 
	/* no home page option - menu starts at right edge of left sidebar */
	float:left;
	text-align:center;
	margin-right:35px;
	padding-top:40px;
}
#masthead_social_option {
	float:left;
	margin-right:8px;
	padding-top:40px;
}
#masthead_login {
	width:150px;
	float:left;
	padding-top:42px;
}
#home_headline {
	/*position: relative;*/
	/*padding-top:0;*/
	/*width: 50%;*/
	max-height:640px;
	/*text-align:left;*/
	/*padding-left: 60px;*/
	background-image: url(../system/communication-words.png);
	background-size:cover;
	/*background-size: 640px;*/
	background-repeat:no-repeat;
}
/*#quickSearch {
	z-index:100;
	position:absolute;
	top:103px;
	right:120px;
}*/
/*****************************************************/
/*        DROP-DOWN MENU                             */
/*****************************************************/
/* used to create a menu button */
.dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
	/* added: */
	text-align: left;
	
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    /*background-color: #f9f9f9;*/
	background-color:#444;
	opacity:0.93;
    min-width: 225px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
	/* added */
	border-bottom-left-radius:6px;
	border-bottom-right-radius:6px;
}

/* Links inside the dropdown */
.dropdown-content a {
   /^ color: black;*/
	color: white;
    /*padding: 12px 16px;*/
	padding: 6px 18px;
    text-decoration: none;
    display: block;
	text-align: left;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
	/*background-color: #f1f1f1*/
	background-color:#333;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
	/*added: */
	padding:6px;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}
/*IMPLEMENTATON:
	<div class="dropdown">
	<button class="dropbtn">LABEL</button>
	<div class="dropdown-content">
			<a href="#">LINK 1</a>
			<a href="#">LINK 2</a>
			<a href="#">Link 3</a>
	  </div>
	</div>
	from www.w3schools.com/css/css_dropdowns.asp
*/
/*****************************************************/
/*        CONTENT AREA                               */
/*****************************************************/
#main_content_container {
	/*width:1125px;*/
	/*width:1450px;*/
	margin-top:-16px;
	min-height:475px;
	background-color:white;
	/*position:relative;
	float:left;
	background:url(../system/vellum.jpg);*/
	/*background:#e6e6e6;*/
	/*background:#777;*/
	text-align:left;
	overflow:hidden;
	/*z-index:10;*/
}
/*#left_sidebar {
	postion:relative;
	float:left;
	width:150px;
}*/


/*********************************************************/
/*    PRINT DIVS                                         */
/*********************************************************/
#print_container_normal {
	width:950px;
	padding:3px;
}
#print_container_wide {
	width:950px;
	padding:3px;
}
#print_content_normal {
	text-align:left;
	border:1px solid #b9c0ec;
	margin:4px;
	padding:4px 20px 6px 20px;
	font-size:110%;
}
#print_content_wide {
	text-align:left;
	border:1px solid #b9c0ec;
	margin:4px;
	padding:4px 20px 6px 20px;
	font-size:120%;
}




