/* CSS Template for [Company/Organization] */

/* all sytles should be structured as follows:
******************************************
call (descriptive element names are required) { / comments for what the call is used for if the call doesnt explain enough (eg. .nav p { \* paragraph style for copy in the nav area *\) /
	position: value;
	flaot: value; / if aplicable /
	width: value; / plese use px if possible only use % if under 100%/
	height: value; / please use px if possible and if height is absolutely neccisary please comment behind with IMPORTANT, otherwise omit /
	background: color image repat position;
	color: value;
	font-family: value;
	font-size: value; / please use pt or em if possible or size types like "small", "larger", "x-small", etc. /
	font-whatever: value; / all other font styles /
	margin: top-value right-value bottom-value left-value;
	padding: top-value right-value bottom-value left-value;
	text-whatever: value;
	display: value;
	border: width style color;
	any other styles...
}	
******************************************
if possible please use #hhh; for colors */

html, body {
	background-color: #fff;
 	margin: 0;
  	padding: 0;
 	text-align: center;
	background-image: url(images/structure/background.png);
} 
 
#container-main {
	position: relative;
	width: 960px;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	color: #000;
	border: 2px solid ivory;
} 

#head {
    color: #666666;
    line-height: 20px;
    padding: 10px 0;
    position: relative;
}

#head a {
    color: #FF6600;
    text-decoration: none;
}

#menu {
	position: relative;
	z-index: 20;
}

#nav-text {
    padding-left: 10px;
    position: relative;
    z-index: 20;
}

#nav {
	position: relative;
	width: 100%;
	text-decoration: none;
	z-index: 20;
}

#nav a {
	text-decoration: none;
	font-weight: bolder;
}

#nav a:link {
    color: #FFFFFF;
}

#nav a:visited {
	color: #FFFFFF;
}

#nav a:hover {
	color: #000;
}


#body {
	position: relative;
	width: 100%;
}

#body h1 {
	font-size: 20px;
	color: #ff9c00;
}

#body h2 {
	font-size: 13px;
	color: #00496c;
}

#body .entry-title {
	font-size: 16px;
	color: #00496c;
}

#body-pic {
	position: absolute;
}

#e-books {
	position: absolute;
	right: 20px;
	bottom: 90px;
}
#text-background h1 {
	margin-top:14px;
	line-height: 12px;
	font-size: 22px;
	text-align: center;
}

#events-text {
	float: right;
	width: 218px;
	height: 256px;
}

#new-books {
	float: left;
	border: 2px solid blue;
	clear: both;
	width: 325px;
}

#video {
	float: right;
	border: 2px solid red;
	width: 325px;
}

#logo {
	position: absolute;
	top: 185px;
	left: 10px;
	z-index: 10;
}

#billboard {
	position: relative;
	width: 100%;
}

#left-btn {
	position: absolute;
	left: -20px;
	top: 180px;
}

#right-btn {
	position: absolute;
	right: -20px;
	top: 180px;
}

#text-background {
	position: absolute;
	padding: 0px 10px 13px 10px;
	bottom: 25px;
	left: 12px;
 	width: 350px;
	background-color:#e4e1c9;
	color: #000;
	border-radius: 12px;
	opacity:0.7;
	filter:alpha(opacity=60); /* For IE8 and earlier */
}

#foot {
	text-align: center;
	width: 100%;
	font-size: 8pt;
	width: 100%;
	padding-top: 20px;
}

.nav-gutter {
	width: 70px;
}

.nav-bar {
	background: url(images/structure/nav-bar-center.png) repeat-x;

}

.nav-text {
		text-align : center;
}

.talign {
	vertical-align: top;
	padding: 0px 5px 0px 5px;
}

.talign P {
	margin-top: 5px
}

.talign h2 {
    color: #00496C;
    font-size: 16px;
    margin-bottom: 0;
}

.center-text {
	text-align: center;
}

.valign {
	vertical-align: middle;
	padding: 4px 4px 0px 0px;
}

img {
	border: none;
}

a:link, a:visited {
	text-decoration: none;
	color: #FF6600;
}

a:hover {
	color: #FF6600;
	text-decoration: underline;
}

/*Start top image slideshow.*/
#promotions .show {
     display: block;
}

#promotions .hidden {
     display: none;
}

#left-btn .show {
     display: block;
}

#left-btn .hidden {
     display: none;
}

#right-btn .show {
     display: block;
}

#right-btn .hidden {
     display: none;
}
/*End top image slideshow*/


/*Simple styles for clients to use sizes and colors etc.*/

.smaller {
	font-size: 8px;
}

.small {
	font-size: 10px;
}

.big {
	font-size: 16px;
}

.bigger {
	font-size: 18px;
}

.blue {
	color: #0000a0;
}

.red {
	color: #ff0000;
}

.green {
	color: #008000;
}

.yellow {
	color: #ffff00;
}

/* Other style names that may be used include:

1) horiz-nav - if nav needs to be a horizontile navigation
2) base-nav - if nav needs to be text links near the copyright
3) copyright - if the style needs to be different from other elements in the footer - usually used in a span within the footer div
4) something_something where there would be additional styles for sectioned layouts where the peacies fit togeather but are in seperate divs (eg. nav_top, nav_bottom or header_left, header_right etc.)
5) something_something where there would be user defined changes through either navigation or selection (eg. header_0, header_1, header_2)

*/  

@media print{  /* printer styles */ 
	#nav { /* hide the left column when printing */ 
		display:none;
	} 

	#maincol {
		width:100%;
		float:none;
	}
}