/*This is the LEAF skin, made by Ivan for Nucleus CMS*/
/*I am not a pro in CSS - If you are one and if you think it can be done better, by all means go ahead and adjust to your needs*/
/*I've tried my best to comment on most of the styles*/

/*BASIC STUFF*/
a:link, a:visited{
	color: #23598C;
	text-decoration: none;
}
a:hover, a:active{
	color: #316ab4;
	text-decoration: underline;
}

img{
	border: none;
}

.linkspage_button{
	border:0px;
}

td{
	text-align:left;
}

/*This is used for hidden stuff, stuff that you don't want people to see with CSS enabled*/
/*Try disabling CSS and you'll see some messages that you don't see with CSS enabled*/
.hidden{
	display: none;
}

/*Use this to centerize any image/text*/
.centerize{
	text-align: center;
}

/* MAIN STRUCTURE */
/*Don't edit if you know what's good for you*/
body{
	color: #23598C;
	font-size: 14px;
	font-family: "Times New Roman", "Lucida Sans Unicode", "Lucida Sans Unicode", Tahoma, sans-serif;
	background-color: white;
	padding: 5px 0 5px 0;
	text-align: center;
}
#wrapper{
	position: center;
	width: 900px;
	margin: auto;
	background: white;
	text-align: left;
}

/*The header image*/
#header{
	position: center;
	width: 900px;
	height: 200px;
	margin: auto;
	background: url(images/01_header01.jpg) no-repeat;
}

/*The container - edit "230" to your desired width for the sidebar (lines 55, 58, 62)*/
#container{
	/* width: 100%; */
	float: right;
	width: 670px;
	padding: 20px 0 0 0;
}
#content{
	margin-left: 2px;
	padding: 6px 0 0 0;
	
}
#sidebar{
	width: 230px;
	height: auto;
	float: left;
	text-align: left;
}
#footer{
	width: 900px;
	margin: auto;
	padding: 20px 0 0 0;
}

/* The container - custom page layout. resize adjustments for full screen */
#container_full{
	/* width: 100%; */
	float: left;
	margin-right: 0px; 
	/* -230 */
	width: 700px;
}
#content_full{
	/* margin-right: 230px; */
	padding: 25px 0;
}
#sidebar_full{
	width: 230px;
	float: right;
	padding: 0px 0;
	text-align: left;
	display:none;
}

/*Credits part is where the copyrights/xhtml/css validation stuff will be*/
#credits{
	font-size: 8px;
	text-align: center;
	color: black;
}
#credits a:link, #credits a:visited{
	color: black;
}
#credits a:hover, #credits a:active{
	color: black;
}
/*Ignore this*/
.clearing{
	height: 0;
	clear: both;
}
.smalltext{
	color: white;
}
#wrapper .smalltext{
	color: white;
}

/*THE MAIN TITLE - YOUR BLOG NAME ON TOP OF THE HEADER*/
#header h1{
	position: absolute;
	top: 16px;
	left: 24px;
	height:35px;
	font-size: 20px;
	line-height: 20px;
	margin: 0;
	background: url(images/01_logo.gif) no-repeat;



}

/*THE NAVIGATION - More detailed stuff in NAVIGATION LINKS section*/
#navigation{
	font-size: 14px;
	color: white;
	font-weight: bold;
	width: 668px;
	height: 24px;
	position: absolute;
	top: 201px;
	left: 230px;
	background-color: #316ab4;
	margin: 1px 0px 5px 2px;
	padding-right: 0,5px;
}
#navigation ul{

	margin: 0px 0px 0px 0px;
	background-color: #316ab4;

}
#navigation li{
	display: inline;
	vertical-align: middle;
	float: center;
	color: white;
	margin: 0 30px 0 30px;

}

/*  THE DEFAULT HEADERS (h2: Main titles, h3: Blog and Sidebar titles, h4: Comment names/userlinks)*/
h2{
	color: #3E565F;
	margin: 0 0 0px 0;
	font-size: 16px;
	height: 23px;
}
h3{
	color: white;
	margin: 0 0px 0 0px;
	vertical-align: top;
	text-align: center;
	font-size: 14px;
	background-color: #316ab4;
	height: 23px;
}
h32{
	color: white;
	display: block;
	margin: 0 -10px 0 -10px;
	text-align: center;
	font-size: 14px;
	background-color: #316ab4;
	height: 23px;
}
h4{
	font-size: 11px;
}

/*Sub structure - To create the margins of the body (where text will be placed)*/
.contentdiv{
	margin: 2px 0px 0 0;
}
.sidebardiv{
	margin: 0 0px 0 0px;
}


/* THE STYLING OF THE BODY OF CONTENTS AND SIDEBAR */
.contentbody{
	margin: 2px 0 0 0;
	text-align: justify;
	border: 1px solid;
	border-color: #316ab4;
	background: white;
	padding: 0px 10px 10px 10px;
}
.sidebarbody{
	margin: 2px 0 0 0;
	padding: 0;
	background-color: #5b9ec9;
	border: 1px solid;
	border-color: #316ab4;
}

/* THIS PART IS THE SIDEBAR'S INDIVIDUAL DIVS */
/* Note that it doesn't have any styling, but it's here in case you want to add some styles */
.sidebarin{
	padding: 10px 10px 10px 10px; 
	margin: 0 0 0 0px;
	background-color: #ffffff;
	
}

/*MAIN TITLES*/
h2{
	display: none;
	height: 3px;
	text-indent: 650px;
	color: #5b9ec9;
	margin: 0 0 0px 0;
}

/*FORM STYLING*/
form{
	margin: 0;
	text-align: center;
}
form p{
	padding: 1em;
	text-align: left;
}
/*Styling for all form fields*/

/*Form fields on focus effect (when user click on that input field)*/
.formfield:focus{
	border: 1px solid black;
}
/*Form's buttons*/
.formbutton{
	font-size: 11px;
	margin: 1px 0 0 0;
	padding: 1px 10px;
	color: #494949;
	background: white;
	border-top: 1px solid #D4D2CF;
	border-left: 1px solid #D4D2CF;
	border-bottom: 1px solid #868686;
	border-right: 1px solid #868686;
}


/* STYLING OF MENU TITLES */

h3{   /* default styleing for menu items, do not remove */
	height: 23px;
	margin: 0px 0px 0px 0px;
	vertical-align: top;
	background-color: #316ab4;
}

h32{   /* default styleing for menu items, do not remove */
	height: 23px;
	margin: 0px -10px 0px -10px;
	font-weight: bold;
	background-color: #316ab4;
}

h3.news{ /* remove background image from h3 in news posts */
	background: none;
}




/* Sidbar menu content styles */

.defaultform{
	width: 100%;
	font-size: 14px;
	background-color: #ffffff;
	padding: 0px 0px 0px 0px;
	text-align: justify;
}

/*THE LIST STYLES*/
ul{
	list-style: none;
	padding: 2px 2px 0px 0px;
	margin: 2px 2px 0px 2px;
}
li{
	padding: 0 2px 0 2px;
	margin: 0 0 0px 2px;
}

/*THE SEARCH HIGHLIGHT*/
.highlight{
	font-weight: bold;
	text-decoration: underline;
}

/* NAVIGATION LINKS */
.nav1 a:link, .nav1 a:visited, .nav2 a:link, .nav2 a:visited, .nav3 a:link, .nav3 a:visited, .nav4 a:link, .nav4 a:visited, .nav5 a:link, .nav5 a:visited, .nav6 a:link, .nav6 a:visited, .nav7 a:link, .nav7 a:visited, .nav8 a:link, .nav8 a:visited{
	color: white;
	height: 20px;
}
.nav1_onpage a:link, .nav1_onpage a:visited, .nav2_onpage a:link, .nav2_onpage a:visited, .nav3_onpage a:link, .nav3_onpage a:visited, .nav4_onpage a:link, .nav4_onpage a:visited, .nav5_onpage a:link, .nav5_onpage a:visited, .nav6_onpage a:link, .nav6_onpage a:visited, .nav7_onpage a:link, .nav7_onpage a:visited, .nav8_onpage a:link, .nav8_onpage a:visited{
	height: 20px;

}
.nav1 a:link, .nav1 a:visited, .nav1_onpage a:link, .nav1_onpage a:visited{
	width: 164px;
}
.nav2 a:link, .nav2 a:visited, .nav2_onpage a:link, .nav2_onpage a:visited{
}
.nav3 a:link, .nav3 a:visited, .nav3_onpage a:link, .nav3_onpage a:visited{
}
.nav4 a:link, .nav4 a:visited, .nav4_onpage a:link, .nav4_onpage a:visited{
}
.nav5 a:link, .nav5 a:visited, .nav5_onpage a:link, .nav5_onpage a:visited{
}
.nav6 a:link, .nav6 a:visited, .nav6_onpage a:link, .nav6_onpage a:visited{
}
.nav7 a:link, .nav7 a:visited, .nav7_onpage a:link, .nav7_onpage a:visited{
}
.nav8 a:link, .nav8 a:visited, .nav8_onpage a:link, .nav8_onpage a:visited{
}

/*END NAVIGATION LINKS*/



/* e107 core style */
.tbox, .helpbox{
	/* width: 80%; */
	font-size: 11px;
	margin: 0 0 2px 0;
	color: #494949;
	border-top: 1px solid #868686;
	border-left: 1px solid #868686;
	border-bottom: 1px solid #D4D2CF;
	border-right: 1px solid #D4D2CF;
}
.button{
	font-size: 11px;
	margin: 1px 0 0 0;
	padding: 1px 10px;
	color: #494949;
	background: white;
	border-top: 1px solid #D4D2CF;
	border-left: 1px solid #D4D2CF;
	border-bottom: 1px solid #868686;
	border-right: 1px solid #868686;
}
#commentform .tbox, #commentform .helpbox{
	background-color:#000; */
}


.fborder, .border{
	border-collapse: collapse;
	border-spacing: 0px;
}

.forumheader, .forumheader2, .forumheader3, .forumheader4, .fcaption, .finfobar {
	padding: 0px;
	background-color: #fff;
	border: 1px solid #D4DCDE;
}

.forumheader, .forumheader4, .finfobar {
	background-color: white;
}

.forumheader5 {
	cursor: pointer;
}

.fcaption, .forumheader5 {
	background-color: #fff;
}




