/*=======================================================================================*/
/* EJ Samuel // Digital Portfolio                                                        */
/* Author: EJ Samuel                                                                     */
/*=======================================================================================*/

/*====================================================================================== 
	CSS Style order
	
	Neutralizing Styles
	Global Tags
	Layout Classes and IDs

=======================================================================================*/

/*====================================================================================== 
Neutralizing Styles
=======================================================================================*/

/*Remove padding and margin on some elements: */
html, form, fieldset {
	margin: 0px;
	padding: 0px;
}

/* Linked image should not have borders */
a img {
	border: none;
}

/* Firefox dotted border */
a:link, a:visited, a:active, a:hover {
	outline: none;
}

/*====================================================================================== 
Global Tags
=======================================================================================*/
	
body {  
	font-family: Verdana, Arial, sans-serif;
	height: 100%;
	color: #FFFFFF; 
	background-color: #000000;
	margin: 0px;
	padding: 0px;
	font-size: 12px;
	line-height: 1.5em;
	font-weight: normal;
}

p {
	margin: 0px 0px 0px 20px;
	padding-bottom: 11px;
} 
	
h1 {  
	font-size: 14px;
	color: #FFFFFF;
	font-weight: bold;
	margin: 0px 0px 0px 0px;
}	

h2 {  
	font-size: 12px;
	color: #FFFFFF;
	font-weight: bold;
	margin: 0px 0px 20px 0px;
}	

/*====================================================================================== 
Swf Object Stuff
=======================================================================================*/

html {
	height: 100%;
	overflow: auto;
}

#flashcontent {
	height: 100%;	
	background-color: #000000;
}

/*======================================================================================
Link Styles
=======================================================================================*/
	
a:link, a:visited {
	color: #D2BC77;
	text-decoration: none;
}

a:hover {
	color: #A98D38;
	text-decoration: underline;
}

h1 a:link, h1 a:visited {
	color: #FFFFFF;
	text-decoration: none;
}

h1 a:hover {
	color: #D2BC77;
	text-decoration: underline;
}

/*======================================================================================
Layout Classes and IDs
=======================================================================================*/

#text-wrap {
	width: 900px;
	margin: 20px auto 0px auto;
}

ul {
	margin: -5px 0px 0px 0px;
	padding: 0px 0px 10px 0px; 
}

ul li {
	margin: 0px;
	padding-bottom: 3px;
}