﻿@import url(reset.css);
@import url(structure.css);

/*************************************
Table of Contents
-01 Global
	General styles applies to tags
-02 spans and general classes
	Span and classes can appear anywhere, and should not depend on a heirarchical structure
-03 divs
	Divs should be identified by #ids
-04 ?
**************************************/

/*************************************
-01 Global
**************************************/
body
{
	background-color: #FBCFE8;
	background: url(../_img/background.gif) repeat;	
}
div, 
li, 
p, 
td, 
th
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	line-height:1.6em;	
	color: #4A0146;
}

input, select, textarea
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	color: #4A0146;	
}

a
{
	color: #EB008B;
	font-weight:normal;
	text-decoration:none;
}

a:hover
{
		text-decoration:underline;
}

legend
{
	font-size: 13px;
	font-weight: bold;					
} 



/*************************************
-02 spans and general classes
**************************************/

.clear-both
{
	clear:both;
}

.pink-text
{
	color: #EB008B;
}

.white-text
{
    color: #FFFFFF;
}

.textfield-note
{
	font-size:9px;
	margin-left: 10px;
	float:left;
	width: auto;
}

.copyright
{
	line-height: 25px;
	color: #FFF;
	background: url(../_img/footer-menu-background.gif) no-repeat top right;
	padding-right: 10px;
	padding-left: 10px;
}

.required-fields
{
	color: #999999;
	font-size:10px;
}

/*************************************
- sIFR Styles
**************************************/

/* These are standard sIFR styles... do not modify */

.sIFR-flash {
	visibility: visible !important;
	margin: 0;
}

.sIFR-replaced {
	visibility: visible !important;
}

span.sIFR-alternate {
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	display: block;
	overflow: hidden;
}


/* These "decoy" styles are used to hide the browser text before it is replaced... the negative-letter spacing in this case is used to make the browser text metrics match up with the sIFR text metrics since the sIFR text in this example is so much narrower... your own settings may vary... any weird sizing issues you may run into are usually fixed by tweaking these decoy styles */


.sIFR-hasFlash h1 {
	visibility: hidden;
	font-size: 20px;
	font-weight: normal;
	margin: 0px;
	line-height: 36px;	
}

/*.sIFR-hasFlash h2 {
	visibility: hidden;
	letter-spacing: -9px;
	font-size: 16px;
}*/

/*************************************
- jQuery Tooltip Styles
**************************************/

#tooltip {
	position: absolute;
	z-index: 3000;
	border: 1px solid #111;
	background-color: #eee;
	padding: 5px;
	opacity: 0.85;
}
#tooltip h3, #tooltip div { margin: 0; }

/*************************************
- jQuery Zoom Styles
**************************************/

div.jqZoomTitle
{
	z-index:5000;
	text-align:center;
	font-size:11px;
	font-family:Tahoma;
	height:16px;
	padding-top:2px;
	position:absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	color: #FFF;
	background: #999;

}

.jqZoomPup
{
		overflow:hidden;
		background-color: #FFF;
		-moz-opacity:0.6;
		opacity: 0.6;
		filter: alpha(opacity = 60);
		z-index:10;
		border-color:#c4c4c4;
		border-style: solid;
		cursor:crosshair;
}

.jqZoomPup img
{
	border: 0px;
}

.preload{
	-moz-opacity:0.8;
	opacity: 0.8;
   filter: alpha(opacity = 80);
	color: #333;
	font-size: 12px;
	font-family: Tahoma;
   text-decoration: none;
	border: 1px solid #CCC;
   background-color: white;
   padding: 8px;
	text-align:center;
   background-image: url(../_img/zoomloader.gif);
   background-repeat: no-repeat;
   background-position: 43px 30px;
	width:90px;
	* width:100px;
	height:43px;
	*height:55px;
	z-index:10;
	position:absolute;
	top:3px;
	left:3px;

}

.jqZoomWindow
{
	border: 1px solid #999;
	background-color: #FFF;
}


.hidden
{
	display: none !important;
}

.selected-product
{
    background-color: #FCF0F6;
}