/*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, a:active, a:hover {
		color: #000000;
		text-decoration: none;
}
/*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{
	background : #ffffff url(./img/back_body.jpg) center top repeat-y;
	font-size: 11px;
	font-family: verdana,"‚l‚r ‚oƒSƒVƒbƒN","‚l‚r ƒSƒVƒbƒN",Osaka, sans-serif;	padding: 20px 0 20px 0;
	text-align: center;
}
#wrapper{
	width: 600px;
	margin: auto;
	text-align: left;
}
/*The header image*/
#header{
	position: relative;
	width: 600px;
	height: 240px;
	margin: auto;
	background: url(img/head.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: -230px;
}
#content{
	margin-right: 230px;
	padding: 15px 5px;
}
#sidebar{
	width: 220px;
	float: right;
	padding: 25px 5px;
	text-align: left;
}
#footer{
	width: 600px;
  font-size: 10px;
  font-family: Tahoma,MS UIgothic,osaka;
	text-align: center;
	margin: auto;
	padding: 18px 0 14px 20px;
	background: #dfdfdf;
}
/*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{
	position: absolute;
	top: 16px;
	left: 24px;
	line-height: 20px;
	margin-top: 150px;
  font-size: 22px;
  font-family: Tahoma,MS UIgothic,osaka;
  padding: 0 0 0 8%;
}
#header h2{
	position: absolute;
	top: 16px;
	left: 100px;
	line-height: 20px;
	margin-top: 198px;
  font-size: 11px;
  font-family: Tahoma,MS UIgothic,osaka;
}

/*THE NAVIGATION - More detailed stuff in 01_navigation.css*/
#navigation{
	text-align: left;
	margin: auto;
  font-size: 11px;
  font-family: Tahoma,MS UIgothic,osaka;
	width: 600px;
	height: auto;
	position: static;
	top: 250px;
	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{
		font-size: 11pt;
		font-family: verdana,"‚l‚r ‚oƒSƒVƒbƒN","‚l‚r ƒSƒVƒbƒN",Osaka, sans-serif;
		line-height:150%;
		text-align: left;
    }

h3{
		background-color: #CCCCCC;
		font-size: 9pt;
		font-family: verdana,"‚l‚r ‚oƒSƒVƒbƒN","‚l‚r ƒSƒVƒbƒN",Osaka, sans-serif;
		line-height:250%;
		color: #000000;
		text-align: left;
		margin: 30px 0px 20px 0px;
		padding: 0px 0px 0px 10px;
    }

h4{
		font-size: 9pt;
		font-family: verdana,"‚l‚r ‚oƒSƒVƒbƒN","‚l‚r ƒSƒVƒbƒN",Osaka, sans-serif;
		line-height:200%;
		color: #000000;
		text-align: left;
		border-top: 1px solid #FFCCCC;
		border-right: 10px solid #FFCCCC;
		border-bottom: 1px solid #FFCCCC;
		border-left: 10px solid #FFCCCC;
		padding: 0px 0px 0px 10px;
    }

h5{
		font-size: 9pt;
		font-family: verdana,"‚l‚r ‚oƒSƒVƒbƒN","‚l‚r ƒSƒVƒbƒN",Osaka, sans-serif;
		line-height:150%;
		color: #000000;
		text-align: left;
		border-top: 1px solid #CCCCCC;
		border-right: 8px solid #CCCCCC;
		border-bottom: 1px solid #555555;
		border-left: 8px solid #777777;
		padding: 0px 0px 0px 10px;
    }

/*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: 1px solid black;
}
.contentbody td{
	font-size: 11px;
}
/*COMMENTS STYLING*/
.c_commentbody{
	padding: 0 0 5px 0;
	background: url(images/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(images/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 20px 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 IMAGES (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(images/01_quote.gif) 0 3px no-repeat;
}
/*A different background for comments made*/
.divcommentsmade .contentbody{
	background: url(images/01_quote1.gif) 0 3px no-repeat;
}
/*A different background for the admin (in the comments made area)*/
.divcommentsmade .id1{
	background: url(images/01_quote4.gif) 0 3px no-repeat;
}
/*Add comment form's background*/
.divaddcomment .contentbody{
	background: url(images/01_quote3.gif) 0 3px no-repeat;
}
/*Trackback's background*/
.divtrackback .contentbody{
	background: url(images/01_quote5.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(images/01_hdot.gif) top repeat-x;
}
/*Posted by*/
.item1{
	padding: 0 0 0 13px;
	margin: 0 0 0 12px;
	background: url(images/01_item1.gif) 0 1px no-repeat;
}
/*Category*/
.item2{
	padding: 0 0 0 13px;
	margin: 0 0 0 12px;
	background: url(images/01_item2.gif) 0 3px no-repeat;
}
/*Comments*/
.item3{
	padding: 0 0 0 15px;
	margin: 0 0 0 12px;
	background: url(images/01_item3.gif) 0 3px no-repeat;
}
/*Trackbacks*/
.item4{
	padding: 0 0 0 15px;
	margin: 0 0 0 12px;
	background: url(images/01_item4.gif) 0 3px no-repeat;
}
/*STYLING OF SIDE TITLES*/
/*You can remove all parts here if you do not wish to use images as your side titles*/
.about h3{
	height: 23px;
	text-indent: -9999px;
	margin: 0 0 2px 0;
	background: url(images/01_s_about.gif) no-repeat;
}
.login h3{
	height: 23px;
	text-indent: -9999px;
	margin: 0 0 2px 0;
	background: url(images/01_s_login.gif) no-repeat;
}
.categories h3{
	height: 23px;
	text-indent: -9999px;
	margin: 0 0 2px 0;
	background: url(images/01_s_categories.gif) no-repeat;
}
.search h3{
	height: 23px;
	text-indent: -9999px;
	margin: 0 0 2px 0;
	background: url(images/01_s_search.gif) no-repeat;
}
.lastestwriteback h3{
	height: 23px;
	text-indent: -9999px;
	margin: 0 0 2px 0;
	background: url(images/01_s_lastestwriteback.gif) no-repeat;
}
.favorite h3{
	height: 23px;
	text-indent: -9999px;
	margin: 0 0 2px 0;
	background: url(images/01_s_favorite.gif) no-repeat;
}
.calendar h3{
	height: 23px;
	text-indent: -9999px;
	margin: 0 0 2px 0;
	background: url(images/01_s_calendar.gif) no-repeat;
}
.links h3{
	height: 23px;
	text-indent: -9999px;
	margin: 0 0 2px 0;
	background: url(images/01_s_links.gif) no-repeat;
}
/*MAIN TITLES*/
/*You can remove all parts here if you do not wish to use images as your main titles*/
h2.weblog, h2.comments, h2.commentsmade, h2.addcomment, h2.archives, h2.error, h2.member, h2.sendmessage, h2.searchpage, h2.trackback{
	height: 23px;
	text-indent: -9999px;
	margin: 0 0 5px 0;
}
h2.weblog{
	background: url(images/01_m_weblog.gif) no-repeat;
}
h2.comments{
	background: url(images/01_m_comments.gif) no-repeat;
}
h2.commentsmade{
	background: url(images/01_m_commentsmade.gif) no-repeat;
}
h2.addcomment{
	background: url(images/01_m_addcomment.gif) no-repeat;
}
h2.archives{
	background: url(images/01_m_archives.gif) no-repeat;
}
h2.error{
	background: url(images/01_m_error.gif) no-repeat;
}
h2.member{
	background: url(images/01_m_member.gif) no-repeat;
}
h2.sendmessage{
	background: url(images/01_m_sendmessage.gif) no-repeat;
}
h2.searchpage{
	background: url(images/01_m_search.gif) no-repeat;
}
h2.trackback{
	background: url(images/01_m_trackback.gif) 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(images/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{
	width: 390px;
	background: #E2EDF0 url(images/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: #E2EDF0 url(images/01_mountaintop2.gif) top no-repeat;
}
.loginform, .searchform{
	padding: 10px;
}
/*THE LIST STYLES*/
ul.lists {
	list-style: none;
	padding: 0;
	margin: 2%;
}
li.list_f1 {
	padding: 10px 38px 4px;
	margin: 4px 0 0 0;
	background: url(./img/list_flw_p.gif) 0 5px no-repeat;
}
li.list_f2 {
	padding: 10px 38px 4px;
	margin: 4px 0 0 0;
	background: url(./img/list_flw_bg.gif) 0 5px no-repeat;
}
li.list_link {
	font-size: 14px;
	font-weight: bold;
	padding: 22px 26px 22px;
	margin: 4px 0 0 0;
	background: url(./img/list_menya_blue.gif) 0 5px no-repeat;
}
li.list_caution {
	font-size: 12px;
	color: #ff0000;
	padding: 14px 36px 10px;
	margin: 2px 0 2px 0;
	background: url(./img/icon_caution.gif) 0 5px no-repeat;
}
li.list_biorence {
	font-size: 14px;
	font-weight: bold;
	color: #707070;
	padding: 12px 40px 12px;
	margin: 4px 0 0 0;
	background: url(./img/icon_biorence.gif) 0 5px 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;
}
#banner{
	width: auto;
	padding: 5px 5px;
	border-top: 2px solid #770000;
}
#hfstore, #hfstore.table, #hfstore.td,#hfstore.div{
	text-align: center;
	font-size: 9pt;
	font-family: MS UIgothic,"‚l‚r ‚oƒSƒVƒbƒN","‚l‚r ƒSƒVƒbƒN",Osaka, sans-serif;
	white-space: nowrap;
}
#storetdl {
	font-size: 9pt;
	text-align: left;
}


#bbs a:link, #hfstore a:link {
			color: #ff0000;
		text-decoration: underline;
}
#bbs a:hover, #bbs a:visited, #hfstore a:hover, #hfstore a:visited {
			color: #000000;
		text-decoration: underline;
}

#content a:link, #content a:visited {
		background: #e0e0ff;
		text-decoration: none;
}

.leftbox, .rightbox {
	margin: 3px;
	padding: 3px;
}
.leftbox {
	float: left;
	border-top: 2px solid #CCCCCC;
	border-right: 10px solid #CCCCCC;
}
.rightbox {
	float: right;
	border-top: 2px solid #CCCCCC;
	border-left: 10px solid #CCCCCC;
}

blockquote {
	background : #f0f0f0 url(./img/bg_hrd_rice.gif) ;
	border-left: 4px solid #E8E8E8;
	margin-left: 8px;
	padding: 0 5px;
}

.red {
	color: #FF0000;
}