/*  ===== pt_default Notes =====   /
	GLOBAL DEFAULTS

	- defines base colors, margins, borders and so on
	- Removal of default margins and padding for different browsers
	- defines global style of forms, inputs, and HTML tagging
   
	Demandware eCommerce 2.4, copyright 2007, all rights reserved 
*/
		
* { 
    margin: 0;  
}

body { margin: 0; padding: 0; background-color: #fbfaf3; }

html, body { 
		height: 100%;
}

html {
filter: expression(document.execCommand("BackgroundImageCache", false, true));
}

html,body {
	font: normal 9pt geneva, tahoma, verdana, sans-serif;
	color: #000;	
	background: transparent url(${URLUtils.staticURL(URLUtils.CONTEXT_LIBRARY,'','/content/images/design/logo.png')});
	}

/* FLOAT CLEAR inside a div (W3C recommendation) */
.clear {
	clear: both;
}
.clearWrap {
	clear: both;
	padding: 0;
	margin: 0;
	height: 0;
	border: 0;
	width: 100%;
	display: block;
}

/*  ===== HTML TAG DEFAULTS FORMATING =====   /
	Sets standards for styling of HTML tags
*/ /* DEFAULT HEADER TAGS SIZES and WEIGHT */
h1 {
	font-size: 18px;
	font-weight: normal;
}

h2 {
	font-weight: normal;
	font-size: 15px;
}

h3 {
	font-size: 12px;
	font-weight: bold;
}

h4 {
	font-size: 10px;
	font-weight: bold;
}

p {
	margin: 0px;
	padding: 0px;
}

blockquote {
	margin: 0px;
	padding: 0px;
}

/* HREF DEFAULTS: link color, hover, etc. */
a {
	text-decoration: underline;
	outline: none;
	color: #000;
}

a:hover {
	color:#000;
	text-decoration: none;
}

img,a img,img a {
	border: 0px;
	overflow: hidden;
}
.privacy {	text-decoration: underline; }

ul li,ul,li {
	margin: 0px;
	padding: 0px;
}

/*  FORMS STYLING
	Advanced behavior of input/select boxes to focus when a user is editing the content.
	This is clearly CSS 2.1 and therefore is ignored by IE 6.0 and all other 
	unsupportive browsers.
*/
form {
	padding: 0px;
	margin: 0px;
	z-index: -1;
}

fieldset {
	margin: 0px;
	padding: 0px;
	border: none;
}

input,input [type="checkbox"],input.checkbox {
	border: 0px;	
}

input [type="text"]:focus,input [type="password"]:focus {
	background-color: #fafafa !important;
}

textarea:focus {
	background-color: #fafafa !important;
}

select {
	z-index: -1;
}

select:focus {
	background-color: #fafafa !important;
}

/* Global image button layout */
.imagebutton {
	border: none;
}

/* Default layout of input boxes */
.inputbox {
	font-family: arial, verdana, sans-serif;
	padding: 2px 0;
	font-size: 12px;
	font-weight: normal;
	vertical-align: middle;
	border: 1px solid #999;
}

/* Default layout of select boxes */
.selectbox {
	font-family: arial, verdana, sans-serif;
	padding: 2px;
	font-size: 12px;
	font-weight: normal;
	vertical-align: middle;
	border: 1px solid #999;
}

/* START IE6 FIXES */
.floatclear {
	display: inline-block;;
	width: 100%;
}

/* Hide from IE Mac \*/
* html .floatclear {
	height: 1%;;
	width: auto;
}

.floatclear {
	display: table;
}

/* End hide from IE-mac */ /* END IE6 Fixes */

* html body { background-color: #fbfaf3; }
*+html body { background-color: #fbfaf3; }

