@charset "UTF-8";
/* CSS Document */

/* Initialise tags so as to get more conformity across browsers */

html, body, h1, h2, h3, h4, h5, h6, p, ol, ul, li, pre, code, address, variable, form, fieldset, blockquote {
	padding: 0;
	margin: 0;
	font-size: 100%;
	font-weight: normal;
}
table { border-collapse: collapse; border-spacing: 0; }
td, th, caption { font-weight: normal; text-align: left; }
img, fieldset { border: 0; }
ol { padding-left: 1.4em; list-style: decimal; }
ul { padding-left: 1.4em; list-style:square; }
q:before, q:after { content:''; }

/* End of initialisation */

body {
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	text-align:center;
	height: 100%;
}
h1 {
	font-size: 2em;
	margin-top: 20px;
}
h2 {
	font-size: 1.75em;
	margin-top: 20px;
}
.wrapper {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
#mainNav {
	margin: 20px,0,0,0;
	padding: 0;
	list-style: none;
	border: 0;
	overflow:hidden;
	zoom: 1;
}

#mainNav ul {
	list-style: none;
}


#mainNav li {
	text-align:center;
	font-size: 1.5em;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	
}
#mainNav a {
	color: #000000;
	text-decoration: none;
	padding: 2px 2px 5px 2px;
	border-radius: 25px;
	display: block;
	background-color: #FFFFFF;
	zoom: 1;
}
#mainNav a:hover {
  font-weight: bold;
  background-color:#CCCCCC;
}
@media only screen and (min-width:501px) {
	body {
		background-color: #FFFFFF;
	}
	
	.wrapper {
		width:800px;
		min-height: 600px;
		background-color: #2FA380;
	}
	
	#mainNav li {
		float: left;
		width: 40%;
		margin-left: 5%;
		margin-right: 5%;	
	}
	
}

@media only screen and (max-width:500px) {
	body {
		background-color: #2FA380;
	}
	
	.wrapper {
		width:100%;
		background-color: #2FA380;
	}
	
	.mobile_irrelevant {
		display: none;
	}
	
	#mainNav li {
		width: 80%;
		margin-left: 10%;
		margin-right: 10%;	
	}
}