/**
 * 100% height layout with header and footer
 * ----------------------------------------------
 * Feel free to copy/use/change/improve
 */

html,body {
	margin:0;
	padding:0;
	height:100%; /* needed for container min-height */
	background:gray;
	
	font-family:arial,sans-serif;
	font-size:13px;
	color:#666;
}

h1 { 
	font:1.5em Arial;
	margin:0.5em 0;
}

h2 {
	font:1.25em Arial;
	margin:0 0 0.5em;
}
	
h1, h2 {
	color: #110049;
}

a {
	color : darkorange;
}

p { 
	line-height:1.5; 
	margin:0 0 1em;
}

div .space {
    height : 10px;
}

div#container {
	position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	width:750px;
	background:#f0f0f0;
	
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/

	min-height:100%; /* real browsers */
}

div#pagetop {
	height : 20px;
	background-color: gray;
}


div#header {
	padding:1em;
	background:#110049;
	text-align: center;	
}

div#menu {
	background: #DDDDDD;
	borfder-bottom:solid black 1px;
}


#submenu ul li a {
	padding: 5px;
	margin: 0;	
}

#submenu ul, #submenu ul li	{
	list-style-type: none;
	display: inline;
	padding: 0;
	margin: 0;	
}

#submenu ul li #current {
	border:orange solid 1px;
	text-decoration : underline;
}

#submenu {	
	padding    : 5px; 	
	text-align : left;
}

#submenu a {
	white-space     : nowrap; 
	padding         : 5px;
	margin          : 1px;
	line-height     : 2em;
	text-decoration : none;
	background      : #110049;	
	outline         : none;
	border          :solid 1px #110049;
}

#submenu a:hover {
	color: #110049; 
	background: orange;
}

div#content {
	padding:3em 3em 5em; /* bottom padding for footer */
}

div#content p {
	text-align:justify;
	padding:0 1em;
}

div#footer {
	position:absolute;
	width:100%;
	bottom:0; /* stick to bottom */
	background:#ddd;
	border-top:1px solid black;
}

div#footer p {
	text-align : center;
	padding:0.4em;
	margin:0;
}

input,textarea {
	border: solid 1px #ABADB3;
	background-color:white;
	font-size : 13px;
	font-family : arial,sans-serif;
}

.niceimage {
	border : solid black 1px;
}