/* CSS Document - Webside Design and Development by Flavia Oleniewski*/

/*FANCY FONTS*/
@font-face {
	font-family: 'CenturyGothicBold';
	src: url('century_gothic_bold-webfont.eot');
	src: local('CenturyGothicBold'), url('century_gothic_bold-webfont.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

/*STRUCTURE*/
body {
	background:url('img/background.jpg') repeat-x 50% 0% #ffffe2; 
	text-align:center; 
	width:100%; 
	font-family:Arial, Helvetica, sans-serif; 
	font-size:14px; 
	line-height:1.5em; 
	color:#333;
}

#page {
	width:1000px;
	text-align:left; 
	margin:10px auto;  
  

}

/*GLOBALS*/

* {
	padding:0;
	margin:0;
}

img {
	border:0;
}

a {
	color: #848428;
	font-weight:bold; 
	text-decoration:none; 
	outline:none;
}

a:hover {
	text-decoration:underline;
	}

a:active {
	outline: none;
}

:-moz-any-link:focus {
	outline: none;
}


p {
	padding:5px 0; 
	line-height:1.5em;
}

ul {
	padding-left:15px;
}
ol {
	padding-left:20px;
}
ol li {padding:5px 0;}

#content li {
	padding:5px 0;
}

#content img {
float:right;
	padding:20px 0 20px 20px;
}

/* HEADLINES */

h1 {
	font-family: 'CenturyGothicBold'; 
	font-size:30px;
	line-height:1.5em;
	color:#333399;
	font-weight:normal;
	
}

h2 {
	font-family: 'CenturyGothicBold'; 
	font-size:24px;
	line-height:1.5em; 
	color:#666699;
	font-weight:normal;
	padding:20px 0 10px 0;
	
}

h3 {
	font-family: 'CenturyGothicBold'; 
	font-size:18px;
	line-height:1.5em;
	color:#999999;
	font-weight:normal;
	padding:20px 0 10px 0;
	
}

h4 {
	font-family: 'CenturyGothicBold'; 
	font-size:14px;
	line-height:1.5em;
	color:#cccc99;
	font-weight:normal;
	
}



/*NAVIGATION*/
ul#nav {
	font-family: 'CenturyGothicBold';
	background:url('img/nav_bg.png') no-repeat;
	height:44px;
	margin-bottom:5px;
	list-style:none;
	}
	
ul#nav a {
	color:#fff;
	display:block;
	float:left;
	font-size:18px;
	line-height:18px;
	padding:13px 15px;
	white-space:no-wrap;
	font-weight:normal;
	}

ul#nav a:hover {
	background:url(img/nav_bg_hover.png) repeat-x #666699 0 0;
	text-decoration:none;
	}
	

ul#nav li {
	display:block;
	float:left;
	position:relative;
	z-index:99;
	}
	
	ul#nav ul li a {
	padding:6px 15px;
	font-size:14px;
	float:none;
	width:170px;
	}

ul#nav ul {
	position:absolute; 
	top:44px; 
	left:0;  
	display:none; 
	padding:0; 
	background:#333399; 
	width:200px;
}

ul#nav ul li {
	display:block; 
	padding:0 ;
	float:none;
	position:static;
	}

ul#nav li:hover ul, ul#nav li.sfhover ul {
	display:block;
	}
ul#nav li:hover ul ul, ul#nav li.sfhover ul ul {
	display:none;
	}
ul#nav ul li:hover ul, ul#nav ul li.sfhover ul {
	display:block;
	}


/*HEADER*/

#home #header {
	
	background:url('img/header_bg.jpg') no-repeat 0 49px; 
	position:relative;
	height:426px;
	margin-bottom:5px;
	display:block;
	clear:both;
}

#inner #header {
	
	background:url('img/header_bg_7.jpg') no-repeat 0 49px; 
	position:relative;
	height:290px;
	margin-bottom:5px;
	display:block;
	clear:both;
}

#info {
	position:absolute;
	top:240px;
	left:430px;
	font-size:12px;
	font-weight:bold;
	}

#logo {
	position:absolute;
	top:49px;
	left:486px;
}

/*SCROLLER*/

	
	/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
	*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 963px;
	height:190px;
	padding-top:20px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accommodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
}

/*
	a single item. must be floated in horizontal scrolling.
	typically, this element is the one that *you* will style
	the most.
*/
.items div {
	float:left;
	margin-left:2px;
}

.items div img{
	padding:0 5px;
	}
/*SCROLLABLE BUTTONS*/
/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(img/hori_large.png) no-repeat;
	display:block;
	width:12px;
	height:85px;
	float:left;
	cursor:pointer;
	
}

/* right */
a.right 		{ background-position: 0 0; clear:right; margin-left:4px; margin-right: 4px; margin-top:60px;}
a.right:hover 	{ background-position:-24px 0px; }
a.right:active 	{ background-position:-12px 0px; } 


/* left */
a.left			{ margin-left: 4px; margin:right:4px; background-position:-60px 0; margin-top:60px;} 
a.left:hover  	{ background-position:-36px 0; }
a.left:active  	{ background-position:-48px 0; }




/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	


/*CONTENT AREA*/

#wrapper {
	width: 1000px; 
	background:#fff;
	margin-bottom:5px;
}

#content {
	width:615px;
	float:left;
	padding:20px 10px 20px 25px
	}

#inner #content {
	width:950px;
	padding:20px 25px;
	}
#sidebar {
	width:305px;
	float:right;
	padding:20px 25px  20px 0px;
	}
	
.list li {
	width:280px;
	margin-right:30px;
	float:left;
	}
.note {
	font-size:11px;
	color:#999999
	}
	
.graphics {
	float:right;
	padding:20px 0 20px 20px;
	}
	
/*FOOTER*/

#footer {
	text-align:center;
	clear:both;  
	padding: 20px;
	background: url(img/footer_bg.gif) repeat-x 50% 100% #535387;
	color:#fff;
	margin-bottom:200px;
	

}

#footer a {color:#fff; text-decoration:underline}
#footer a:hover {text-decoration:none;}

/*SEO AREA*/

.seo {
	
	width:600px;
	margin:0 auto;
	text-align:center;
	font-size:10px;
	font-weight:100;
}
.seo h1 {
	font-size:10px;
	font-weight:normal;
}
.seo a {font-weight:normal;}

/*OVERLAY*/

/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#545488;
	padding:10px;
	width:507px;	
	height:380px;
	border:1px solid #666;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(img/button_close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:32px;
	width:32px;
}

.popup {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#fff;
	padding:20px;
	width:700px;	
	height:500px;
	border:1px solid #666;
	
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

.scroll {
	height:500px;
		overflow-y:auto;
		padding-right:20px;

	}

/* close button positioned on upper right corner */
.popup .close {
	background-image:url(img/button_close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:32px;
	width:32px;
}

table {
	vertical-align:top;
	text-align:center;
	margin:0 auto;
	}

td { padding:10px;}


/*form*/
.defaultText {color:#333 }
.defaultTextActive { color: #999; font-style: italic; }
form {width:600px;}
form ul {list-style:none; padding:0; margin:0;}
form ul li {display:block; padding:5px 0; clear:both;}
form label {width:20%;font-weight:bold; font-size:12px; display:block; float:left; margin-right:5px;}
form input {width:76%;}
form textarea {width:100%;}
form ul li input[type='radio']{width:auto; display:inline;}
#content form li img {float:none; padding:0;}


