/* --------------------------------------------------------------------
	base.css contains basic formatting such as type sizes and colors.
	Used by the main site and the admin site.
   ------------------------------------------------------------------*/

html {
	margin: 0;
	padding: 0;
	}
	
body {
	margin: 0;
	padding: 0;
	text-align: center;
	font-size: 11px; 
	font-family: "Lucida Grande", Tahoma, Verdana, Arial, Helvetica, sans-serif;
	}

img { /* needed for firefox */
	border: 0px;
	}
		
a {
	color: Black;
	text-decoration: none;
}
	
a:hover {
	color: Black;
	text-decoration: underline;
}
		
a:visited {
	color: Black;
}
	
	
h3 {
	font-weight: bold;
	font-size: 12px;
	font-style: normal;
	color: #000;
	}
	
h3 a:hover {
	color: #C30;
	}
	
p {
	font-size: 11px;
	line-height: normal;
	text-decoration: none;
	color: #666;
	}


h4 {
	color: #000;
	font-weight: bold;
	font-size: 12px;
	margin: 0;
	}
	
h5 {
	color: #000;
	font-weight: bold;
	font-size: 11px;
	margin: 0px;
	padding: 0px;
	}
	
em.date {
	font-size: 10px;
	font-style: normal;
	font-weight: bold;
	color: #cc3333;
	}

.paragraphs p { 
	margin: 0px;
	padding: 2px 0 5px 0;
	line-height: normal;
	}

.paragraphs h3 {
	margin: 15px 0 1px 0;
	}

ul {
	list-style-type: none;
	padding: 0px;
	}

ul li {
	color: #666;
	margin:0;
  	padding:0;
  	}
  	
ol {
	margin-left: 0px;
	padding-left: 30px;
	}
  	
ol li {
	color: #666;
	margin-left: 0px;
	margin-bottom: 10px;
	}
	
ul li ul, ol li ol, ol li ul, ul li ol {
	margin-top: 10px !important;
	}
   
  
/* forces the hand cursor on links in Safari */
a:link, a:hover {
	cursor: pointer;
	}




/* ------------------------------ 
             debugging            
   ------------------------------*/

.warning {
	background-color: yellow;
	color: black;
	}
	
.error {
	background-color: #ffcccc;
	color: #000;
	}
	
#debugcontent {
	text-align: left;
	margin: 4px 0px -4px 0px;
	background-color: #ddd;
	padding: 12px 4px 4px 4px;
	}

#debugcontent h3 {
	background-color: #900;
	color: #fff;
	letter-spacing: 0px;
	font-weight: normal;
	font-size: 12px;
	color: #fff;
	margin: 0 0 -12px 0;
	padding: 0 4px 0 4px;
	display: table;
	}

.debug_dump {
	text-align: left;
	background-color: #fff;
	border: #900 solid 2px;
	color: #000;
	font-size: 10px;
	padding: 2px;
	}






