@charset "utf-8";
body  {
	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: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	height: 100%;
}
.khyam #container {
	width: 1000px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px none #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	min-height: 100%;
	background-image: url(../image/common/background_sidebars.gif);
	background-repeat: repeat-y;
} 

.khyam #header {
	background-image: url(../image/common/khyam_header.gif);
	background-repeat: no-repeat;
	margin-top: 10px;
	height: 108px;
	border-bottom-width: 5px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
} 
.khyam #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 */
}
.khyam #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 177px;
	min-height: 100%;
	background-color: #E9EDF1;
	display: block;
}
.khyam #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 177px;
}
.khyam #mainContent {
	margin-top: 0px;
	margin-right: 180px;
	margin-bottom: 0px;
	margin-left: 184px;
	padding: 0px;
	position: static;
	background-color: #FFF;
} 
.khyam #mainContent p {
	font-size: 12px;
	line-height: 18px;
	padding-right: 20px;
	padding-left: 20px;
	text-align: justify;
}
.khyam #mainContent a {
	color: #00F;
	
}
.khyam #mainContent a:hover {
	color: #F00;
	
}

.khyam #footer {
	background:#DDDDDD;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	border-top-width: 5px;
	border-top-style: solid;
	border-top-color: #FFF;
} 
#bluebox {
	background-image: url(../image/common/blue_box.gif);
	height: 96px;
	width: 157px;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	padding: 10px;
	color: #FFF;
	line-height: 16px;
}
#bluebox a {
	background-color: #006;
	color: #FFF;
	background-image: url(../image/common/white_arrow.gif);
	background-repeat: no-repeat;
	background-position: 5px center;
	height: 18px;
	width: 100px;
	font-weight: bold;
	font-size: 1em;
	padding-left: 20px;
	padding-top: 2px;
	margin-bottom: 2px;
	position: relative;
	float: left;
	text-decoration: none;
	padding-bottom: 1px;
	border: 1px solid #FFF;
}
#bluebox a:hover {
	background-color: #FF0000;
}
.sidebarTextField {
	width: 140px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	margin-bottom: 2px;
}
h2 {
	font-size: 2em;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 0px;
	font-family: "Arial Black", Gadget, sans-serif;
	font-weight: bolder;
}


.khyam #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 */
}


.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;
}

ul#buttons {
	list-style: none;
	padding-right: 10px;
}
ul#buttons li {
	float: right;
}
ul#buttons a {
	clear:left;
	float:left;
	color: #FFF;
	display: block;
	font-size: 10pt;
	height: 30px;
	text-align: center;
	position: relative;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #1671B4;
	background-image: url(../image/common/top_arrow.gif);
	background-position: center top;
	background-repeat: no-repeat;
	padding-right: 3px;
	padding-left: 3px;
	padding-top: 20px;
	text-decoration: none;
}
ul#buttons a:hover {
	text-decoration: underline;
}
ul#menu {
	list-style: none;
	position: static;
	margin: 0px;
	padding: 0px;
}

ul#menu a {
	color: #333;
	font-size: 1em;
	text-align: left;
	background-image: url(../image/common/menu_back.gif);
	background-position: 5px 8px;
	background-repeat: no-repeat;
	text-decoration: none;
	display: block;
	width: 159px;
	padding-left: 18px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	margin: 0px;
	background-color: #C9D4DC;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
}
ul#menu a:hover {
	text-decoration: underline;
}

h4 {
	font-size: 1.1em;
	color: #FFF;
	background-image: url(../image/common/category_back.gif);
	background-repeat: no-repeat;
	background-position: left top;
	height: 23px;
	width: 161px;
	margin: 0px;
	padding-top: 8px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 16px;
	position: static;
}
	
#memoryticker{
	background-image: url(../image/common/newsTickerBack.gif);
	background-repeat: no-repeat;
	width: 624px;
	height: 26px;
	color: #FFF;
	padding: 3px;
	text-align: center; 
	font-family: Verdana, Geneva, sans-serif;
	font-size: 16px;
	font-weight: bolder;
	margin: 0px;
	filter: progid:DXImageTransform.Microsoft.GradientWipe(GradientSize=1.0 Duration=0.7);
}
h1 {
	background-image: url(../image/common/blue_header_back.gif);
	height: 31px;
	width: 630px;
	font-family: Verdana, Geneva, sans-serif;
	color: #FFF;
	font-size: 2em;
	text-align: center;
}


#featureHolder {
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bolder;
	padding: 0px;
	height: 120px;
	width: 298px;
	float: left;
	padding: 5px;
	margin-top: 3px;
	margin-right: 3px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
	background-position: 5px 40px;
	list-style-type: none;
	border: 2px solid #09568F;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	text-decoration: none;
}

#featureHolder a{
text-decoration: none;
}

#featureHolder #product {
	font-size: 1.6em;
	color: #000;
	float: left;
	margin: 0px;
	padding: 0px;
	font-family: "Arial Black", Gadget, sans-serif;
	line-height: 20px;
	width: 175px;
}

#featureHolder #price {
	font-size: 2.4em;
	color: #F00;
	float: right;
	width: 120px;
	position: relative;
	text-align: right;
	margin: 0px;
	padding: 0px;
}
#featureHolder #logos {
	float:right;
	width:298px;
	height:40px;
	background-repeat: no-repeat;
	background-position: 148px 10px;

}

#featureHolder #rrp {
	font-size: 0.5em;
	color: #999;
	line-height: 4px;
}
#featureHolder #info {
	font-size: 11px;
	color: #000;
	font-weight: normal;
	line-height: 1.1em;
	padding-top: 8px;
}
#featureHolder #category {
	font-size: 12px;
	color: #0A4371;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 12px;
}
#assocHolder {

}
#assocHolder a {
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bolder;
	padding: 0px;
	height: 80px;
	width: 270px;
	float: left;
	padding: 5px;
	margin-top: 3px;
	margin-right: 3px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-repeat: no-repeat;
	background-position: 0px 10px;
	list-style-type: none;
	border: 2px solid #09568F;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	text-decoration: none;
}
#assocHolder a:hover{
border: 2px solid #FF0000;
}
#assocHolder #product {
	font-size: 14px;
	color: #000;
	float: right;
	margin: 0px;
	padding: 0px;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 18px;
	width: 200px;
	text-align: right;
}

#assocHolder #price {
	font-size: 18px;
	color: #F00;
	float: right;
	width: 120px;
	position: relative;
	text-align: right;
	margin: 0px;
	padding: 0px;
}


#assocHolder #rrp {
	font-size: 10px;
	color: #999;
	line-height: 4px;
}
#detailHolder {
	width: 610px;
	height: 240px;
	background-repeat: no-repeat;
	background-position: left top;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 10px;
	padding: 0px;
}
#detailHolder #priceInfo {
	float: right;
	text-align: right;
	font-weight: bold;
	opacity:0.8;
	background-image: url(../image/common/white_fade.png);
	background-repeat: repeat;
}
#detailHolder #priceInfo .price{
	font-size: 36px;
	color: #F00;
	margin: 0px;
	padding: 0px;
}
#detailHolder #priceInfo .rrp{
	font-size: 20px;
	color: #999;
	text-decoration: line-through;
	margin: 0px;
	padding: 0px;
	line-height: 10px;
}
#detailHolder #priceInfo .save{
	font-size: 24px;
	color: #F00;
}
#detailHolder #leftColumn {
	float: left;
	width: 295px;
	text-align: justify;
	padding-top: 10px;
	font-size: 12px;
	line-height: 18px;
}
#detailHolder #logos {
	width: 610px;
	height: 55px;
	position: static;
	padding-top: 185px;
	text-align: right;

}
#detailHolder #logos img {
	padding-right: 2px;
}

#detailHolder #featureText {
	float: left;
	width: 300px;
	background-repeat: no-repeat;
	background-position: left top;
	height: 150px;
}
#detailHolder #rightColumn {
	float: right;
	width: 280px;
	padding-top: 30px;
}
#detailHolder #leftColumn table tr {
	font-size: 10px;
	text-align: left;

}
#detailHolder #leftColumn table tr .tableLeft {
	color: #FFF;
	background-color: #0A4371;
}
#detailHolder #leftColumn table tr .tableRight {
	background-color: #DDD;
	padding-left: 10px;
}
#detailHolder #leftColumn a img {
	background-image: url(../image/buttons/detail_button.jpg);
	height: 34px;
	width: 34px;
	background-position: 0px 0px;
}
#detailHolder #leftColumn a:hover img {
	background-position: 0px 34px;
}
#detailHolder #extraImages {
	float: left;
	margin-top: 20px;
	margin-bottom: 20px;
}
#mainContent table {
	font-size: 12px;
	line-height: 20px;
}
#associated {
	font-size: 18px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #CCC;
	margin-bottom: 5px;
	margin-top: 5px;
	font-family: Arial, Helvetica, sans-serif;
	color: #F00;
	float: left;
	margin-right: 10px;
	margin-left: 10px;
}
#associated p{
	color: #000;
	margin: 0px;
	padding: 0px;
}
