/*   
Theme Name: Ingredients, Inc. Custom Theme
Description: Custom theme only licensed to Ingredients, Inc.
Author: Shane Jordan - shane@shanejordan.net
Author URI: www.shanejordan.net
Version: 1.0
.
General comments/License Statement if any.
.
*/

@charset "utf-8";
@import "trajan/stylesheet.css";

body  {
	font: 100% "Times New Roman", Times, serif;
	font-family: Verdana, Georgia, sans-serif;
	background-color: #DAD5CC;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #41332a;
}

img{border:none;}

h3{
	font-size:1.1em;
	color: #FFA6FF;
	margin-bottom:6px;
	margin-top:6px;
}

#container { 
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

#header { 
	margin: 0 auto;
	width:1000px; 
} 

#centerheader {
	background: #FFF;
	width:1000px;
	margin:0 auto;
	clear:left;
}

#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#cookiecrumbs {
	width:auto;
	margin:0 auto;
	left:0;
	text-align:left;
	display: none;
}

.logo {
	margin-top:10px;
	margin-left:126px;
}



#sidebar1, #sidebar-media {
	background: #f4f2f0;
	color:#cc6695;
	float: right; /* since this element is floated, a width must be given */
	width: 230px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	margin-top:0;
	min-height:2650px;
	padding:50px 10px;
	margin-right:0;
	right:0;
}

#sidebar1 h3, #sidebar-media h3{
	color:#41332a;
	font-size:1.3em;
	font-style:italic;
	text-decoration:none;
	text-align:center;
}

#sidebar1, #sidebar-media p{
	margin-bottom:6px;
	margin-top:0;
}

#sidebar1 .gloryshot{
	margin-left:30px;
	margin-top: 20px;
}

#sidebar1 > div > div {
	text-align: center;
	border: 1px solid #F4F2F0;
}

#sidebar1 ul, #sidebar-media ul{
	list-style:none;
	padding:0;
	margin:0;
	color:#7FB6FF;
	font-size:1em;
}

#sidebar1 li, #sidebar-media li{
	list-style:none;
	font-family:Arial, Helvetica, sans-serif;
	font-size:.9em;
	font-weight:200;
	margin-left:0;
	padding:5px 0;
	left:0;
}

#sidebar1 a{
	color:#cc6695;	
	font-weight:bold;
	text-decoration:none;
}

#sidebar-media a{
	color:#cc6695;	
	font-weight:bold;
	text-decoration:none;
}

#mainContent, #archiveContent { 
	margin: 0 200px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding:30px 80px 0 30px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	min-height:2000px;

} 

#mainContent h2, #archiveContent h2{
	color:#41332a;
	font-size:24px;
	margin-bottom:0;
}

#mainContent h2 a, #archiveContent h2 a{
	color:#41332a;	
	font-size:24px;
	margin-bottom:0;
}

#mainContent a, #archiveContent a {color:#cc6695;}

#mainContent h3, #archiveContent h3{
	color:#41332a;
	text-decoration:none;
}


#mainContent .date{
	color:#333;
	font-size:.85em;
	margin-top:0;
	padding-top:0;
	font-family:"Times New Roman", Times, serif;
}

#mainContent .recipe{
	font-weight:normal;
	font-family:Arial, Helvetica, sans-serif;
}

#mainContent .postmetadata{
	font-weight:normal;
	font-size:12px;
	margin-top:0;
	margin-bottom:0;
	bottom:0;
	padding-top:5px;
}

#mainContent .postmetadata a{
	color:#41332a;
}

#archiveContent li a{color:#000;text-decoration:none;}
#archiveContent li a:hover{color:#cc6695;text-decoration:underline;}
#archiveContent li{font-size:1em;margin:5px 0;}

#post{
	margin-bottom:50px;	
	font-family:Arial, Helvetica, sans-serif;
}

#shopContent{
	margin-left:-30px;
	padding:0;
	height:800px;
}

.newprod{float:left; width:220px; margin-top:20px;}
.newprod h3 {color:#41332a;}
#newshop {}
#newshop p{font-weight:lighter;margin-top:-15px;}
#newshop {}

#thumbrow{margin-top:0;width:400px;}

#prodinfo{margin-right:50px;float:right;}
#prodinfo h3{font-family:Arial, Helvetica, sans-serif;font-weight:lighter;color:#41332a;font-size:1.4em;width:175px;}

#wrap{margin-top:-25px;}

#footer { 
	margin:0 auto;
	padding: 0 auto; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	width:1000px;
} 

#footer p {
	margin: 0;
	padding: 10px 50px;
	font-size:.75em;
	width:auto;
}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}

.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}

.clearfloat {clear:both;height:0;font-size: 1px;line-height: 0px;}

#grid{width:480px;padding:10px;}
#gridrow img{padding:5px 10px;}


/*comment formatting*/
.c_title{color:#41332a; font-size:20px; margin-bottom:0;font-family:"Times New Roman", Times, serif;}
.c_title a{color:#cc6695; font-size:20px;	margin-bottom:0; text-decoration:none}
.contant_c{font-weight:bold; font-size:14px;font-family:Arial, Helvetica, sans-serif;}	
.main_contant_c{font-size:1em;top:0;margin-top:0;font-family:Arial, Helvetica, sans-serif;}
.main_contant_c h3, #post h3{font-weight:normal;}
.content_header{font-family:Arial, Helvetica, sans-serif; font-size:18px; margin-top:15px; margin-bottom:10px}
.odd{background:#ffffe5; border:1px solid #e5e5e5; width:400px; min-height:90px; margin:10px 0px 5px 0px; padding:15px}
.even{background:#fdfdf8; border:1px solid #e5e5e5; width:400px; min-height:90px; margin:10px 0px 5px 0px; padding:15px}
.comment_c{font-size:12px; color:#41332a; width:400px; height:30px; font-style:italic}

/*media page*/
.media{margin:0;padding:0;border-top:}
.media ul {list-style-type:none;line-height:16px;padding:5px 0;}
.firstmedia{font-size:1.1em;padding-top:15px;}
#media{margin:0;padding:0;border-top:}
#media ul{list-style-type:none;line-height:16px;padding:5px 0;}
.arrows {color:#41332a;font-size:24px;}
.arrows a{text-decoration:none;}
#media a {color:#41332a;}
#firstmedia{font-size:1.1em;padding-top:15px;}
/*end media*/

/*about page*/
.about{font-family:Verdana;}
#about{margin-bottom:50px;font-family:Verdana, Georgia, sans-serif;}
#about ul {list-style-type:none;line-height:12px;padding:5px 0;font-size:1em;margin:0;font-size:12px;}
#about h2, h3{font-family:Verdana, Georgia, sans-serif;}
#about p {font-weight:lighter;}

/*end about*/

.soldout{font-family:Arial;font-size:12px;font-style:italic;color:#CC6695;}

#front-four, #archive-four{margin-top:-30px;margin-left:10px;padding-top:0; overflow: hidden;}
#archive-four{margin-top:20px;}


#front-four, #archive-four{margin-left:0px;}


#front-four h1, #archive-four h1{
	color:#cc6695;
	font-style:italic;
	font-size:1.3em;
	text-decoration:none;
	font-family:Arial, Helvetica, sans-serif;
}

#front-four .frontfour-title, #archive-four .frontfour-title{
	color:#cc6695;
	font-size:18px;
	margin-top:0;
}

#front-four p, #archive-four p{
	font-weight:normal;
	font-size:14px;
}

.front-four, .archive-four{
	width:200px;
	float:left;
	padding-right:20px;
}

.four-left {
	clear: left;
}

.four-right {
	*float: right;
	*clear: right;
}

.four-right, .four-left {
	margin-top: 1em;
}

.front_thumbnail{
}

.four-list-item {
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px dashed gray;
	overflow: hidden;
}

.four-list-item .front_thumbnail {
	float: left;
	margin-right: 15px;
	margin-bottom: 25px;
	border: 0px;
}

.four-list-item > a {
	text-decoration: none;
}

#navigation{
	width:300px;
	padding-bottom:50px;
}
#front-navigation{width:300px;margin-top:20px;padding-bottom:100px; /*clear: both;*/}
.alignleft{margin-left:10px;float:left;}
.alignright{float:right;}

.archive-four{/*height:350px; */padding:10px;}
.archive-four:hover{background-color:#FCF;}
.fourlink{margin-top:0;}

#front-four img, #archive-four img {
	display: block !important;
}

#sidebar1 .seeall {font-size:12px;font-weight:lighter;font-family:Arial, Helvetica, sans-serif;}
#sidebar1 .seeall a{color:#7fb6ff;}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    body { background:url('img/bg.gif') repeat; top:0; margin-top:0;}
}

#media-pag {
	position: relative;

}



.media-pag-post {
	/*font-family: BellMTRegular;*/
	color: black;
	font-size: 19px;
	font-family: verdana, arial, sans-serif;
}
.media-pag-post li {
	line-height: 1.2em;
	margin-bottom: .5em;

}
#media-pag h2 {
	font-family: "Times New Roman", Times, serif;
}

.media-pag-post h3,
.media-pag-post h4,
.media-pag-post h5 {
	font-family: arial, sans-serif !important;
}

.media-pag-post ul,
.media-pag-post ol {
	padding-left: .75em;
}

.media-pag-post li {
	font-size: 13px;
}

#media-pag h2 {
	text-align: center;
	font-weight: normal;
	font-size: 25px;
	color: #CC6695;
	
}
#media-pag a {
	text-decoration: none;
	font-size: 20px;
	line-height: 25px;
}
#media-pag .pag-new {
	position: absolute;
	left: 0px;
	top: 0px;
}
#media-pag .pag-old {
	position: absolute;
	right: 0px;
	top: 0px;
}

#centerheader img {
	display: block;
}

#head-nav {
	margin: 0px;
	padding: 0px;
	padding-top: 3px;
	padding-bottom: 3px;
	text-align: center;
	list-style-type: none;
	background: #e3b5c7;
	border-top: 1px solid #f1c1d5;
	font-family: TrajanProRegular;
}

#head-nav li {
	display: inline;
	font-size: 10px;
	height: 10px;
	border-left: 1px solid #95767b;
	padding: 0px;
	margin: 0px;
}

#head-nav li:first-child {
	border-left: 0px;
}

#head-nav li a {
	padding: 0px;
	margin: 0px;
	height: 10px;
	display: inline-block;
	text-transform: uppercase;
	color: #594742;
	text-decoration: none;
	padding-left: 10px;	
	padding-right: 5px;	
	font-size: 12px;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, .8);
	letter-spacing: 2px;
}

#head-nav li:first-child a {
	padding-left: 0px;
}

#head-nav li:last-child a {
	padding-right: 0px;
}

#food-life-ribbon {
	position: absolute;
	margin-top: 18px;
	margin-left: -39px;
}

#food-life-ribbon,
#food-life-ribbon img {
	border: 0px;
}


h3 {
	font-size:1em;
	color: #FFA6FF;
}

#front-four,
#post {
	font-size: 18px;
	color: #41332A;
	font-family: Verdana, Georgia, sans-serif;
}

#front-four img {
	margin-bottom: 85px;
}

#centerheader #pushdown_Ad,{
	margin-left: 15px;
}
#centerheader #leaderboard_Ad {
	padding-top:10px;
	background: url(img/bg-header-ad.png) repeat-y right;
}

/*#centerheader #pushdown_Ad div,
#centerheader #pushdown_Ad a,*/
#centerheader #leaderboard_Ad div,
#centerheader #leaderboard_Ad a {
	width: 728px;
	margin: 0 auto;
	display: block;
}

#leaderboard_Ad {
	margin:0 auto;
}