@import url(../../rsc/basic.css);	/* Import basic styles */
@import url(../../rsc/img.css);	/* Import standard image styles */
@import url(../../rsc/blog_elements.css);	/* Import standard blog elements styles */
@import url(../../rsc/forms.css);	/* Import default form styles */
@import url(../../rsc/comments.css);	/* Import default comment styles */

/*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*/
/*Link styling*/
a:link, a:visited{
	color: #23598C;
	text-decoration: none;
}
a:hover, a:active{
	color: black;
}
/*Image*/
img{
	border: none;
}
/*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: #4C4C4C;
	font-size: 13px;
	font-family: Trebuchet MS, "Lucida Sans Unicode", Arial, Lucida Sans, Tahoma, Sans-Serif;
	background: #000000;
	padding: 20px 0 20px 0;
	text-align: center;
}
#wrapper{
	width: 900px;
	margin: auto;
	background: #ffffff;
	text-align: left;
}
/*The header image*/
#header{
	position: relative;
	width: 900px;
	height: 340px;
	margin: auto;
	background: url(img/01_header05.jpg) no-repeat;
}
/*The container - edit "230" to your desired width for the sidebar (lines 55, 58, 62)*/
#container{
	width: 100%;
	float: left;
	margin-right: -260px;
}
#content{
	margin-right: 260px;
	padding: 5px 0;
}
#sidebar{
	width: 260px;
	float: right;
	padding: 25px 0;
	text-align: left;
	background: #b0b0b0;
}
#footer{
	width: 900px;
	margin: auto;
	padding: 20px 0 0 0;
	background: url(img/01_footer.jpg) top no-repeat;
}
#blogtitle{
	font-size: 2em;
	padding-bottom: 10px;
}
/*Credits part is where the copyrights/xhtml/css validation stuff will be*/
#credits{
	font-size: 10px;
	text-align: center;
	color: #F7F7F7;
}
#credits a:link, #credits a:visited{
	color: #CFE6FD;
}
#credits a:hover, #credits a:active{
	color: white;
}
/*Ignore this*/
.clearing{
	height: 0;
	clear: both;
}
/*THE MAIN TITLE - YOUR BLOG NAME ON TOP OF THE HEADER*/
#header h1{
	color: #ffffff;
	position: absolute;
	top: 200px;
	left: 24px;
	font-size: 20px;
	line-height: 20px;
	margin: 0;
}
/*THE NAVIGATION - More detailed stuff in 01_navigation.css*/
#navigation{
	font-size: 11px;
	width: 834px;
	height: 22px;
	position: absolute;
	top: 129px;
	left: 3px;
}
#navigation ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
#navigation li{
	background: none;
}
/*THE HEADERS (h2: Main titles, h3: Blog and Sidebar titles, h4: Comment names/userlinks)*/
h2{
	color: #3E565F;
	margin: 0 0 3px 0;
	font-size: 16px;
}
h3{
	color: #3E565F;
	margin: 0 0 8px 0;
	font-size: 14px;
}
h4{
	font-size: 11px;
}
/*Sub structure - To create the margins of the body (where text will be placed)*/
.contentdiv{
	margin: 0 15px 0 22px;
}
.sidebardiv{
	margin: 0 22px 0 15px;
}
/*The image styling of your blog*/
.contentbody img{
	border: none;
}
/*COMMENTS STYLING*/
.c_commentbody{
	padding: 0 0 5px 0;
	background: url(img/01_hdot.gif) bottom repeat-x;
}
/*User links on comments made (eg. Ivan wrote:)*/
.c_userlink{
	margin: 0 0 5px 0;
}
/*Time stamp info in comments made*/
.c_commentinfo{
	font-size: 10px;
	margin: 3px 0 0 0;
	padding: 0 0 0 13px;
	background: url(img/01_item1.gif) 0 1px no-repeat;
}
/*THE STYLING OF THE BODY OF CONTENTS AND SIDEBAR*/
.contentbody{
	margin: 0;
	padding: 0 0 30px 43px;
	text-align: justify;
}
.sidebarbody{
	margin: 0 0 10px 0;
	padding: 0;
}
/*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: 0;
	margin: 0;
}
/*THIS PART IS TO STYLE THE BACKGROUND img (THE QUOTE ON THE LEFT)*/
/*You can create different image on your on, but only if you know what you're doing should you edit this part*/
.divweblog .contentbody, .divarchives .contentbody, .divarchivelist .contentbody, .diverror .contentbody, .divmemberinfo .contentbody,
.divsendmessage .contentbody, .divcommentitem .contentbody, .divsearch .contentbody{
	background: url(img/01_quote.gif) 0 3px no-repeat;
}
/*A different background for comments made*/
.divcommentsmade .contentbody{
	background: url(img/01_quote1.gif) 0 3px no-repeat;
}
/*A different background for the admin (in the comments made area)*/
.divcommentsmade .id1{
	background: url(img/01_quote4.gif) 0 3px no-repeat;
}
/*Add comment form's background*/
.divaddcomment .contentbody{
	background: url(img/01_quote3.gif) 0 3px no-repeat;
}
/*MORE DETAILED STUFF - Item details of your blog items*/
.itemdetails{
	text-align: right;
	padding: 5px 0 0 0;
	background: url(img/01_hdot.gif) top repeat-x;
}
/*Posted by*/
.item1{
	padding: 0 0 0 13px;
	margin: 0 0 0 12px;
	background: url(img/01_item1.gif) 0 1px no-repeat;
}
/*Category*/
.item2{
	padding: 0 0 0 13px;
	margin: 0 0 0 12px;
	background: url(img/01_item2.gif) 0 3px no-repeat;
}
/*Comments*/
.item3{
	padding: 0 0 0 15px;
	margin: 0 0 0 12px;
	background: url(img/01_item3.gif) 0 3px no-repeat;
}


/*FORM STYLING*/
form{
	margin: 0;
	text-align: left;
}
/*Styling for all form fields*/
.formfield{
	width: 130px;
	font-size: 11px;
	font-family: Trebuchet MS, "Lucida Sans Unicode", Arial, Lucida Sans, Tahoma, Sans-Serif;
	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;
}
/*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;
	font-family: Trebuchet MS, "Lucida Sans Unicode", Arial, Lucida Sans, Tahoma, Sans-Serif;
	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;
}
/*Don't show textarea scrollbar on IE*/
textarea{
	overflow: hidden;
}
/*Wider formfields for comment and mailform*/
.commentform .formfield, .mailform .formfield{
	width: 340px;
}
/*Add background to comment textarea*/
.commentform textarea{
	background: white url(img/01_txbg.gif) center center no-repeat;
}
/*STYLING OF THE FORMS BACKGROUND, AND THE LITTLE ROUNDED TOPS*/
/*Add comment form and mailform (same size)*/
.divaddcomment form, .divsendmessage form{
	
	background: #E2EDF0 url(img/01_mountaintop.gif) top no-repeat;
}
.commentform, .mailform{
	padding: 10px 20px;
}
/*Login form and search form (same size)*/
.login form, .search form{
	width: 184px;
	background: #E2E2E2;
}
.loginform, .searchform{
	padding: 10px;
}
/*THE LIST STYLES*/
ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
li{
	padding: 0 0 0 9px;
	margin: 0 0 2px 0;
	background: url(img/01_arrow.gif) 0 6px no-repeat;
}
/*THE SEARCH HIGHLIGHT*/
.highlight{
	font-weight: bold;
	text-decoration: underline;
}
/*Comment error - For Nucleus v3.2*/
div.error{
	color: red;
	font-weight: bold;
}


/* statistics */

.statbloc ul li { list-style: none; }
.statbloc ul { list-style: none; }



/* Hides from IE-mac \*/
* html #bPosts .bPost, * html #bPosts .bPostunpublished {height: 1%;}
/* End hide from IE-mac */
#bPosts .after {
	font-size:0.8em;
	margin-left:40px;
}



/* side stuff */
#right {
	font-size:0.9em;
}
#right h3 {
	font-size:120%;
	margin: 1em 0 0 0;
}
#right p {
	margin-top:0;
}
#right ul, #right fieldset {
	list-style:none;
	padding:0;
	margin:0 0 0 15px;
}
#right fieldset {
	padding:1em;
}
#right form {
	padding:0;
	border:0;
	margin:0;
}
#right ul ul {
	padding:0;
	width:auto;
	margin:0;
	border:0;
}
#right ul ul li {
	margin:0 0 0 1em;
	padding:0;
	width:auto;
	line-height:1;
}
#right ul ul li a, #right ul.links ul li a {
	margin:0;
	padding:0;
	line-height:1;
}
#right ul li {
	width:90%;
	height:100%;
	margin:0;
	padding:2px 4px;
}
#right ul.links li {
	padding:0 4px;
	margin:0;
	width:auto;
	line-height:1;
}
/* some stat stuff mixed in here, because of similar needs of the two areas */
#right ul.links a, .statbloc ul.links a, .statbloc table a, .statbloc ol a {
	display:block;
	width:100%;
	padding:3px 0;
}
#right ul a {
	display:inline;
	padding:0;
}
#right ul ul li {
	width:auto;
	padding:5px 0;
}
.statbloc ul.links a, .statbloc table a, .statbloc ol a {
	padding:0;
}
.statbloc {
	width:46%;
	float:left;
	margin: 5px 5px;
}
#useragents {
	width:100%;
}
#aggregators {
	width:100%;
}
.statbloc table {
	width: 100%;
	padding-right:1px;
}
.statbloc table td.right {
	padding-left:1em;
	text-align:right;
}
.statbloc table td.left {
	padding-left:0.5em;
	font-size:0.9em;
}
.statbloc ul {
	list-style:none;
	padding:0;
	width: 100%;
}
.statbloc ol {
	padding:0 0 0 1.5em;
}
.statbloc ul, .statbloc ol {
	margin:0 1em 0 0;
}
.odd {
	/* some odd/even counters for highlighting */
	background-color:#f8f8f8;
}
