/* global.css -------------------------*/

/* GLOBAL STYLE TAGS-------------------------------*/
html {
	
	margin:0;
	padding:0;
	height: 100%;
  	overflow: hidden;
}

body {
	text-align:center;
	margin:0;
	padding:0;
	height: 100%;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color: #666;
	background-color:#FDAECF6;
	font-size: 11px;
}

b {
	font-weight: bold;
}

p {
	margin:0;
	padding:0;
}

h1 {
	margin: 0 0 6px 0;
	padding: 0;
	font-size: 11px;
	color: #666;
	font-weight: bold;
}

h2 {
	padding: 0;
	margin: 0 0 12px 0;
	font-size: 13px;
	color:#666;
	font-style: italic;
	font-weight: bold;
}

h3 {
	margin: 0 0 3px;
	padding: 0;
	font-size: 11px;
	color: #666;
	font-weight: bold;
}

img {
	border:none;
	
}

a:link {
	text-decoration: none;
	color:#666;
}

a:visited {
	text-decoration: none;
	color:#666;
}

a:hover {
	text-decoration:underline;
	color:#000;
}
ul {
	/*controls indent for bulleted lists*/
	margin:0;
	padding:0;
	/*eliminates standard bullet graphic*/
	list-style:none;
}
li {
	/*set graphic for bullets and align the bullet with the center of the text line(4px)*/
	background: url(../img/bullet.gif) no-repeat 0 4px;
	margin:0;
	/*controls spacing between bullet image and text in list*/
	padding:0 0 0 10px;
}



#flashcontent {
  height: 100%;
}



/* CLASSES----------------------------------------*/

.clear {
	clear:both;
}
.cleardiv {  
	clear:both;  
	height:1px;  
	overflow:hidden;
}

.floatleft {
	float:left;
}

.floatright {
	float:right;
}

