/* 
--------------------------------------------------------------------------------
default.css
--------------------------------------------------------------------------------
description:
	- Holds all default CSS definitions for website LAYOUT.
	- Imports the tabs and links CSS files
notes:
	- margin/padding TOP RIGHT BOTTOM LEFT;
----------------------------------------------------------------------------------- 
*/


/* IMPORTS */
@import url(borders.css);
@import url(menu.css);
@import url(tabs.css);
@import url(tables.css);
@import url(links.css);


/* BASE */
#base{	
	display: block;

	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	border-style: none;

	width: 800px;
	background-color: #FFFFFF;

	color: #000000; 
	font-family: verdana;
	font-size: 8pt;
	font-weight: normal;
	text-decoration: none; 
	
	/*text-align: left;*/
}


/* HEADER */
#header{
	display: block;	
}
#header a:link    { color: #000000; font-size: 8pt; font-weight: normal; text-decoration:none; }
#header a:visited { color: #000000; font-size: 8pt; font-weight: normal; text-decoration:none; }
#header a:hover   { color: #000000; font-size: 8pt; font-weight: normal; text-decoration:none; }
#header a:active  { color: #000000; font-size: 8pt; font-weight: normal; text-decoration:none; }


/* INDEX TITLE */
#indexTitle{
	color: #8B2823; 
	font-family: verdana;
	font-size: 14pt;
	font-weight: normal;
	text-decoration: none; 
}


/* INDEX PINK */
#indexPink{
	color: #AE2095; 
	font-family: verdana;
	font-size: 8pt;
	font-weight: bold;
	text-decoration: none; 
}


/* FOOTER */
#footer{
	color: #404040; 
	font-family: verdana;
	font-size: 7pt;
	font-weight: normal;
	text-decoration: none; 
}




#sizeMessage1, #sizeMessage2, #sizeMessage3, #sizeMessage4, #sizeMessage5, #sizeMessage6
{
	position:absolute; 

	padding: 2px 2px 2px 2px;

	border-top: 1px solid #000000;
	border-bottom: 1px solid #000000;
	border-left: 1px solid #000000;
	border-right: 1px solid #000000;
		
	color: #960000; 
	font-size: 8pt; 
	font-weight: bold; 

	text-decoration:none;
	
	background-color: #DFEEB0;

	visibility:hidden
}



.soakerSpacer{
	height: 15px;
	// height: 12px;
}







