@import "css/all.css";


/*BACKGROUND IMAGE************/
body {
	background: #897A77; /*url('images/bg.jpg') repeat; */
	/*if you want a solid color instead, erase "url('images/bg.jpg') repeat" and write in your color code "#333333"*/
	font:13px Century Gothic, Arial, Helvetica, sans-serif; /*ENTRY FONTS*/
	color:#907169; /*OVERALL TEXT COLOR*/
}


/*LINK STYLES****************/
a {
	text-decoration:underline;
	color:#F37B2D;
}
a:hover {text-decoration:none;}


/*LOGO IMAGE*****************/
#logo {
	height:30px;
	width:100%;
	background:#fff url('images/logo.jpg') no-repeat left;	
}


/*MENU COLORS****************/
#menu {
	background:#fff;

}

#menu li a {
	font:18px Century Gothic, Arial, Helvetica, sans-serif; /*MENU FONT STYLES*/
	text-transform: uppercase;
	color:#C0C442;	/*MENU FONT COLOR*/
}

#menu li a:hover {
	color:#C7B299; /*MENU FONT COLOR WHEN HOVERING*/
} 


/*BANNER COLORS*************/
#banner {
height: 325px; /*BANNER HEIGHT in case you want to change it*/
overflow: hidden;

}


/*TWITTER / SEARCH / RSS***/
.holder {
	background:#fff;

}


/*POSTS*******************/
.title {
	/*POST IMAGE delete background...'s line if you do not wish to have a logo on the side*/
	background:url(images/post-title.jpg) no-repeat; 
	padding:0 0 0 44px;
	margin-top: 0px;
}
	/*POST TITLE FONT STYLE**/
.ti, .title h2 {
	margin:0;
	font-size:28px;
	font-family: Century Gothic, Arial, Helvetica, sans-serif;
	font-weight:normal;
	line-height:20px;
	color:#C0C442;
}
	/*DATE AND CATEGORY FONT STYLES*/
.title span a, .title span {
	color:#C7B299;
	font-size:11px;
	font-weight:normal;
	line-height:24px;
}

/*COMMENT BOX**************/
.comment {
	/*COMMENT BOX BACKGROUND color*/
	background:#C7B299;
}
.text-box p span,
.text-box p a
{
	/*COMMENTER's LINK COLOR*/
	color:#fff;
separator:url('images/separator.jpg)
}

/* Add image splitter between posts */
.postend {
background: url(images/separator.jpg) no-repeat;
height: 100px;
width: 1000px;
}

/* NEXT / PREVIOUS PAGE ARROWS*/
.arrows {
	list-style:none;
	margin:0;
	padding:0;
	height:100%;
	overflow:hidden;
	background:#fff;
}
.arrows li {
	font:10px/25px Century Gothic, Arial, Helvetica, sans-serif;
	color:#fff;
	text-transform:uppercase;
}
.arrows li.prev {
	float:left;
	padding:0 0 0 29px;
}
.arrows li.next {
	float:right;
	padding:0 16px 0 0;
}
.arrows li a {
	color:#fff;
	text-decoration:none;
}
.arrows li a:hover {text-decoration:underline;}

/*FOOTER LINKS*/
#footer {
	padding:8px 0 0;
	width:100%;
	font:10px/25px Century Gothic, Arial, Helvetica, sans-serif;
	color:#fff;
	text-align:center;
}
#footer p {margin:0;}
#footer a, #footer a:hover, #footer a:visited {
	text-decoration: none;
	color: #fff;
}

/*NAVIGATION for single posts*/
.navigation {
	width: 970px;
	padding-left: 15px;
}

.alignleft {float: left;}
.alignright {float: right;}

.clear {clear: both;}
