/*									*/
/*  simple stylesheet		*/
/*  (c) 2008 Katy Harris	*/
/*									*/


/* defining html selectors */
* {
	padding: 0px;
	margin: 0px;
}

body {
	font-family: "Courier New", Courier, Verdana, Arial, sans-serif;
	background: rgb(192,192,192);
	font-size: 75%; 						/* reset type closer to 12pt */
	color: rgb(32,32,32);
}

h1 {
	font-size: 1.5em;
	font-weight: normal;
	color: black;
	margin: 0px 0px 10px 0px;
	color: #FF9900;
}

h2 {
	font-size: 1.2em;
	font-weight: bold;
	margin: 5px 0px 5px 0px;
	color: white;
}

h3 {
	font-size: 1.25em;
	font-weight: normal;
	margin: 5px 0px 5px 15px;
}

p {
	font-size: 1em;
	margin: 0px 0px 10px 0px;
	line-height: 1.3;
}

#menu p {
	margin-bottom: 0px;
}

a {
	color: black;
}

ul, ol {
	margin-left: 30px;
	padding-left: 10px;
	list-style-position: inside;
}

img {
	border: 0px;
}

/* defining ids */
#menu {
	width: 150px;
	height:300px;
	position: absolute;
	left: 20px;
	top: 20px;
	padding: 10px;
	background: #FF9900;
}

#content {
	position: relative;
	width: 500px;
	left: 150px;
	top: 50px;
	padding: 0px 20px 10px 20px;
	background: white;
	border: 1px solid white;
	border-top: 20px solid white;
}

#menu a {   					/* a selector with a space like this 
										instead of a comma means select only 
										"a" tags inside menu id */
	color: black;
	text-decoration: none;
}

#menu a:hover {
	text-decoration:underline;
}

/* defining classes */
.image {
	float: left;
									/* float means the object will float in either the
										upper left or right corner of the object its in. 
										Text will wrap around it according to the margins 
										you set.
									*/
}

.external-link {
	color: black;
	font-size: 1.5em;
	margin-left: 15px;
}