/* CSS Document forGranite Ice */

/* -------- formatting --------- */

/* new styles ..... */
	.topcontent_reciept {
		font: 10px sans-serif;
		position: absolute;
	top: 5px;
	right: 10px;
	color:#666666;
	font-weight:700;
	text-align:right;
	

	}

/* ----------------- */



body { 	margin: 0;
		padding: 0;
		font-size:  90%;
		font-family: Verdana, Arial, Helvetica, sans-serif;
		color: #666666; /*Dk grey*/
		background-color: #FFFFFF;/*v white*/
	}
	
html, body, #contents {
	min-height:100%;
	width: 100%;
	height: 100%;
	
}

html>body, html>body #contents {
	height: auto;
	}
h1,h2,h3,h4,h5 {
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	position: relative;
}
h1,h4,h5 {
	color: #032B59; /*Dk blue*/
}

h1 { 	font-size: 130%;
	letter-spacing: 2px;
	margin-top: 0px;
	position: relative ;
	}

	
#center h2 { clear: both;}

h2 { font-size: 120%;
	color: #FF9900; /*Dk gold*/
	}

h3 { font-size: 110%;
	color: #003366; /*Dk blue*/
	}

h4 { font-size: 100%;
	margin-bottom: 2px;
	}

h5 { font-size: 100%;
	font-style: italic; 
	margin-top: 2px;
	}
.BigBoldRed {
	font-size: 1.8em;
	font-weight: bold;
	color: #DF0000;
	margin-bottom: 10px;
}
p   {	font: 90% Verdana, sans-serif; 	}

	
#footer p {
    font-size: 70%;
	margin: 4px;
	text-align: center;
	}

a {	color: #666666; /*Dark Grey*/
	}
	
a:hover {color:#ff9900; /*gold*/
	}

hr { color: #F0EBE6;/*v pale brown*/
	height: 1px;
	}
	
a img {
	border: 0px none;
	display: block;			/* removes extra space underneath caused by default text-alignment */
	}

div#top a {
	display: block;			/* makes the background hover effect work in Mozilla */
	width: 153px;
	background-color: #fff;/*white*/
	}

div#top a:hover {
	background-color: #fff;/*white*/
	}
/******* .more styles ***********/

.first{
	padding: 0px 0px 0px 10px;
	/*font-size: 80%;*/
}
.first h2{
	padding: 10px 0px 0px 10px;
}

.first h3{
	padding: 10px 0px 5px 0px;
	text-align: center;
}

.first img{
	float: left;
	padding: 0px 10px 0px 0px;
	margin: 0 5px 5px 0;
	position: relative;
	/*fixes disappearing text in IE  */
}

.textbox {					/* Until IE understands <css> input[type="file"] { </css> It's better to define a new style then it is to re-define the input tag because radio buttons cop a beating */
	padding: 4px;
	font:  small verdana, sans-serif;
	color: #000;
	background-color: #fff; /*white*/
	border: 1px solid #2d9ec8; /*black*/
	}

.button {
	padding: 2px;
	font: bold small verdana, sans-serif;
	color: #fff;
	background-color: #2d9ec8; /*mid blue*/
	border: 1px solid #53c4f0;  /*mid brown*/	

	}


/****  Short copy display ****/
div.item {float: left; 
	border: #9D9282 1px solid; 
	padding: 5px; 
	margin: 5px; 
	width: 90%; 
	font-size: 80%;}
	
div.item img {
	float: left; margin: 5px;
	display: inline;
	float: left;
	margin: 0px 0.5em 0.5em 0px;}
	
div.clearer {clear: left;  height: 0;}


/****   for pdf links ****/
.contentnav {font-weight: bold;  color: #0066cc;  text-decoration: none;}

a.contentnav:hover { color: #cc0033;  text-decoration: underline; }

a.contentnav:visited {	color: #0066cc;  text-decoration: none;}

div.otherleftstuff {float:left;
	border: #9D9282 1px solid; 
	padding: 5px; 
	margin: 2px; 
	width: 90%; 
	font-size: 80%;}

div.otherleftstuff1 {position:absolute;
	top:305px;
	left:0px;
	border: #9D9282 1px solid; 
	padding: 5px; 
	margin: 2px; 
	width: 175px;
	background: #F0EBE6; /*pale br*/ 
	color:#000;
	font-size: 80%;}


/****  content & care styles more pages ***/

.contentCare {
	font-size:80%;
	background-color: #F0EBE6;/*pale brown*/
}

/****** Small Text styles *********/

.small 		{ font-size:80%;  }
.smallBold 	{  font-size:80%; font-weight:bold; }
.xSmall {   font-size:70%;	}	
.xxSmall  {  font-size:60%;	}
.bold {  font-weight: bold;}


/*****   other styles *****/

.textor {font-size: 66%;}	

p.crumbtrail {
	margin: 10px 22% 0px;
	font-size: x-small;
	}
	
.divide {
	text-align: center;
	color: #778899; /*dark grey blue*/
}
div#center ul li {
/*	list-style: none; */
	margin: 0;
	padding: 0;
}


.box 	{
	width: 125px;
	height: 200px;
	padding: 0;
	margin: 2px 0;
	border: 1px solid #000; /*black*/
	font-size: 90%;
	}

td {font-size: 75%; padding: 1px;}
td.head {background: #9D9282; 
	text-align: center; 
	font-weight: bold;} 
th {font-size: 85%; 
	padding: 2px; 
	background: #60513a; 
	color: white;
	} 
tr.even td {background: #f0ebe6;} 

/* 

--------- layout ----------------- 

Notes:

Do not mix px widths with % widths for margins, borders or padding because 
the total box width = set width + padding + border.  (It helps if you can add them together)

The box model hack is used to fix an bug in IE5-Win ...for an explanation from the guy that
wrote it go to http://www.tantek.com/CSS/Examples/boxmodelhack.html

IE6-Win will behave like IE5-Win  if you include <?xml version="1.0"?>  It is apparently
unneccessary so leave it out!

Left Col Widths:
 |  pad   |         width        |  pad   | 				
 ------------------------------------------					
 |   0    |          25%         |   0    |	
 
Center Margins:
 |  marg  |         width        |  marg  | 
 ------------------------------------------
 |   25%  |        (auto)        |   25%  |

Right Col Widths:
 |  pad   |         width        |  pad   | 				
 ------------------------------------------					
 |  1.5%  |          22%         |  1.5%  |				total width= 25%
 

*/
#contents{
	position:absolute;
	top:0;
	left: 0;
}

#top {
	padding: 0px;
	background: #F0EBE6;/* v pale brown */
	border-bottom: 1px solid #9D9282;/* mid brown*/
	}
	
#center {
	margin: 0px 18%; 
	padding: 1% 3%;
	background: #fff; /*white*/
	color: #000; /*black*/
	}
	
#center_wide {
	margin: 0px 0px 0px 25%; 
	padding: 1% 3%;
	background: #fff; /*white*/
	color: #000; /*black*/
	}

#left {
	position: absolute;
	padding: 0px;
	top: 93px;
	width: 19%;
	background: #F0EBE6; /*pale br*/	
	color: #000; /*black*/
	}


#otherleftstuff {
	width: 88%;
	padding: 10px 6% 40px 6%;
	}

	
div#topcontent {
	position: absolute;
	top: 10px;
	right: 0px;
	width: 80%;
	}

#topcontent h4, #topcontent p {
	display: inline;
	margin-right: 0.5em;
	color:#2d9ec8;
	}


	
#cart_right {
	position: absolute;
	width: 21.9%;
	height: 251px;
	margin-left: 70%;
	padding: 10px 1.5%;
	top: 205px;
	text-align: center;
	}
	
#right {
	position: absolute;
	width: 24%;
	height: 251px;
	margin-left: 72%;
	padding: 10px 1.5%;
	top: 145px;
	text-align: center;
	}

#footer {
	clear: both;
	bottom: 0;
	width: 100%;
	border-top: 1px solid #032B59; /*Dk blue*/	 
	border-bottom: 1px solid #032B59; /*Dk blue*/	

	background-color: #fff;/*white*/
	font-size: .9em;
	color: #999999; /*grey*/
	}

#validation {
	clear: both; 
	float:left;
	}

/* 	

------- Navigation ------------ 

List tips courtesy of A List Apart: http://www.alistapart.com/stories/taminglists/

*/

ul#mainnav {
	list-style: none;
	margin: 0px;
	padding: 0px;
	background-color: #fff; /*white*/	
	}
		
ul#mainnav li {
	display: block;
	border-top: 1px solid #F0EBE6;/*pale mid blue*/
	}

ul#mainnav li a {
	display: block;
	margin: 0px 0px 0px 0px;
	padding: 6px 6%;
	background-color: #f79d1a;/*mid gold*/
	font: bold 0.8em /1.5em arial, sans-serif;		/* If you get an unwanted gap after your a block (IE-Win) try increasing the line height		*/
	color: #fff;/*white*/
	text-decoration: none;
	width: 88%;				/* 	Causes Problems in IE5-Mac and Netscape/Mozzilla - see next fix		*/
	}

ul#mainnav li a:hover {
	background-color: #003366; /*Dk blue*/
	color: #FFFFFF;/*white*/
	}
	
ul#mainnav ul.subnav {
	margin: 0px;
	list-style: none;
	padding: 0px;
	}

ul#mainnav ul.subnav li {
	border-top: 0 none;
	padding-left: 1.5em;
	}

ul#mainnav ul.subnav li a {
	padding: 1%;
	margin: 0px;
	font: bold 0.7em /1.5em verdana, sans-serif;
	color: #666666; /*Dk grey*/
	background-color: transparent;
	}

ul#mainnav ul.subnav li a:hover {
	color: #666666; /*Dk grey*/
	background-color: transparent;
	text-decoration: underline;
	}
	
div#topcontent ul {
	position: absolute;
	right: 0px;
	list-style: none;
	margin: 0px 0px 40px 0px;
	}
div#topcontent ul li {
	display: inline;
	padding: 0 0.5em;
	border-left: 1px solid #666666;/*dk brown*/	
	}
div#topcontent ul li.first {
	border-left: 0px none;
	}
div#topcontent ul li a {
	font: 0.7em /1em verdana, sans-serif;
	}

div#topcontent form {
	position: absolute;
	right: 0px;
	top: 55px;
	margin: 0px;
	}
/************** #misc styles **************/

.clr{clear:both;}
  
/************** Image styles **************/
.imageLeft{
	float: left;
	padding: 0px 10px 0px 0px;
	margin: 5px 5px 5px 0px;
}

.imageRight{
	float: right;
	padding: 0px 0px 0px 10px;
	margin: 5px 0px 5px 5px;
}

/********* Small Text styles **********/

	.small 		{   font-size:80%;  }
	.smallBold 	{   font-size:80%; font-weight:bold; }
	.xSmall {  font-size:70%;	}	
	.xxSmall  {  font-size:60%;	}
	.bold {  font-weight: bold;}
	
/* ---------- cart styles ---------------*/	
.cart_h2 h2{
 	font-size: 1.15em;
 	color: #000000;
 	text-decoration: underline;
}
.cart_h2 A:link, .cart_h2 A:visited, .cart_h2 A:active, .cart_h2 A:hover{
 		text-decoration: underline;
}

#cart_content{  
	margin: 0px 18%; 
	padding: 1% 3%;	
}

#cart_right {
	position: absolute;
	width: 21.9%;
	height: 251px;
	margin-left: 75%;
	padding: 10px 1.5%;
	top: 205px;
	text-align: center;
	}
	.product_table{
	width:92%
}
.product_table th {
	border: 0px solid #ffffff;	
	color:#ffffff;
	font-size: 80%;
	font-weight:bold;	
	background-color:#60513b;
}
.product_table td {
	font-size: 80%; padding: 3px;
}	
.review_table {
	width:100%
}

.review_table td {
	font-size: 80%; padding: 3px;
}
.review_table th {
	border: 0px solid #ffffff;	
	color:#ffffff;
	font-size: 80%;
	font-weight:bold;	
	background-color:#60513b;
}
	tr.even td {background: #f0ebe6;}
	tr.grey td {background: #f0ebe6;}
	
	tr.grey th {
	background: #f0ebe6;
	color:#000000;
	}
	#message {
	position: absolute;
	width: 80%;
	height: 251px;
	margin-left: 10%;
	padding: 10px 1.5%;
	top: 450px;
	text-align: center;
	}
  .cart_table {
  	border: 1px solid #cccccc;
	border-collapse: collapse;
	padding: 5px;

}
.cart_table td {
	border: 2px solid #ffffff;
	padding: 4px;
	font-size: 80%;
}

.cart_table th {
	border: 2px solid #ffffff;
	background-color:#f0ebe6;
	color:#000;	
	text-align: left;
	padding: 4px;
	font-size: 70%;
	font-weight:bold;	
}
.caption {
	background-color:#60513b;
	border: 1px solid #A0CBED;
	color:#ffffff;
	padding-top: 3px;
	padding-bottom: 2px;
	font-size: 100%;
	font-weight:bold;
}

.my_details_table td {
	border: 1px solid #ffffff;	
}

.my_details_table th {
	border: 1px solid #ffffff;
	background-color: #60513a;
	color:#ffffff;	
	text-align: left;	
	font-size: 70%;
	font-weight:bold;
}

.my_details_table {
	width:100%;
	border: 1px solid #ffffff;	 
	padding: 1px;		
}

.my_table {
  width:70%;
	border: 1px solid #ADADAD;
	border-collapse: collapse;
	padding: 1px;		
	margin: 0px 0px 0px 21%; 	
}
.my_table th {
	border: 1px solid #f0ebe6;
	background-color: #f0ebe6;
	color:#60513a;	
	text-align: left;	
	font-size: 70%;
	font-weight:bold;
}

.massage_table {  
	border: 1px solid #ADADAD;
	border-collapse: collapse;
	padding: 1px;		
}
.massage_table th {
	border: 1px solid #f0ebe6;
	background-color: #f0ebe6;
	color:#60513a;	
	text-align: left;	
	font-size: 80%;
	font-weight:bold;	
}
.massage_table td {
	font-size: 110%;
	font-weight:bold;
	color: #9C1A1E;	
}
.message{
  border: #006699;
  color: red;
}
.shop_button{
	background-color: #032B59; /*dk blue*/
	border-color: #9d9282;
	color:#ffffff;	
	font-size: 80%;
}
.shop_button_express{
	background-color: #032B59; /*dark blue*/
	border-color: #9d9282;
	color:#ffffff;
	font-style:italic;
	font-size: 100% ;
	font-weight: bold;
}
.shop_button_standard{
	background-color: #032B59; /*dark blue*/
	border-color: #9d9282;
	color:#ffffff;
	font-size: 100% ;
	font-weight: bold;
}

.shop_button_buy{
	background-color: #82998f;
	border-color: #60513a;
	color:#ffffff;	
	font-size: 80%;
}


#holiday {
	position: absolute;
	width: 21.9%;
	height: 251px;
	margin-left: 75%;
	padding: 10px 1.5%;
	top: 93px;
	text-align: center;
	}