@charset "UTF-8";
/* CSS Document */

body  {
	margin: 0px; /* 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: #381C04;
	font-family: "Myriad Pro";
	font-size: 100%;
	background-image: url(../images/BGGradient.png);
	background-repeat: repeat;
}
img {border: none;}
a:link{
	color:#381C00;
	text-decoration: none;
	font-weight: bold;
}
a:visited{
	text-decoration: none;
	color:#381C00;
	font-weight: bold;
}
a:active{
	text-decoration: none;
	color:#381C00;
	font-weight: bold;
}
a:hover{
	color: #869B34;
	font-weight: bold;
	cursor:pointer;
}
.twoColFixRtHdr #container {
	width: 935px;
	margin: 0 auto;
	text-align: left;
	padding: 0px;
	background-image: url(../images/homepage/BG_header.png);
	background-repeat: no-repeat;
	background-position: top right;
} 
.twoColFixRtHdr #header {
	padding: 0 10px 0 20px;
	background-image: url(../images/ojaicoffeeroasting_logo.png);
	background-repeat: no-repeat;
	background-position: 10px;
	height: 140px;
}
.twoColFixRtHdr #cartInfo {
	font-size: 14px;
	width: 450px;
	height: 45px;
	margin-top: 30px;
	margin-right: 0px;
	margin-left: 275px;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 0px;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #381C04;
}
.twoColFixRtHdr #btns {
	margin: 0px 0px 0px 200px;
	padding-top: 5px;
	padding-left: 25px;
}
.twoColFixRtHdr #container #header #btns table tr td {
	padding-right: 1px;
	padding-left: 1px;
}
.twoColFixRtHdr #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: 5px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 180px;
	font-size: 15px;
}
.twoColFixRtHdr #sidebar1 #SidebarItem{
	padding: 5px;
	margin-top: 5px;
}
.twoColFixRtHdr #container #sidebar1 #SidebarItem h3 {
	text-align: center;
	font-size: 16px;
	border-bottom: solid thin #381C04;
}
.twoColFixRtHdr #sidebar1 h4{
	text-align: center;
}
.twoColFixRtHdr #FacebookBadge {
	height: 100px;
}
.twoColFixRtHdr #mainContent {
	width: 750px;
	text-align: center;
} 
.twoColFixRtHdr #mainContent h1{
	font-size:14px;
} 
.twoColFixRtHdr #mainContent #upperContentHolder {
	height: 475px;
	background-repeat: repeat-y;
	background-position: -5px top;
	border: thin solid #000;
	width: 745px;
}
.twoColFixRtHdr #container #mainContent #lowerContent #midContent {
	background-repeat: no-repeat;
	height: 65px;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #381C04;
	padding-right: 10px;
	width: 550px;
}
.twoColFixRtHdr #container #mainContent #lowerContent #midContent #MidContentItem {
	float: right;
	height: 55px;
	width: 175px;
	margin-top: 5px;
}

.twoColFixRtHdr #container #mainContent #lowerContent {
	height: 290px;
	padding: 10px 0px 0px 0px;
}
.twoColFixRtHdr #container #mainContent #lowerContent #item{
	height: 260px;
	width: 240px;
	float: right;
	margin: 10px 5px 0px 0px;
	border: thin solid #381B04;

}
.twoColFixRtHdr #container #mainContent #lowerContent #item  img {
}

.twoColFixRtHdr #footer {
	padding: 0 10px 0 20px;
	font-size: 14px;
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #381C00;
	margin: 10px 0px 0px 0px;
} 
.twoColFixRtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	color: #999;
}
.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 { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
