/* CSS Stylesheet for www.juliatimewell.com */
body {					/* Default settings for site - red writing on black background */
	font-family: Arial, Helvetica, sans-serif;		
	font-size: medium;
	color: #FF0000;
	background-color: #000000;
	margin:0;
	padding:0;
	border:none;
}
.container {			/* Holds content. Fills screen width with black background*/
	clear: both;
	position: relative;
	width: 100%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
/**/
/**/
/*			STYLES FOR THE HEADING SECTION   */
/**/
/**/
#header {				/* Centres text used in place of banner */
	text-align: center;
}
#menubar {				/* Positions list used for menu and adds red line below menu*/
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #FF0000;
	left: 10%;
	position: relative;
	padding-bottom: 15px;
	width: 80%;
	text-align: center;
}
#menubar ul {			/* Menu is horizontal with no bullets in list */
	list-style-type: none;
	display: inline;
}
#menubar li {
	list-style-type: none;
	display: inline;
	font-size: large;
}
#menubar a {						/* Defines colour of menu items and spaces them out*/
	position: relative;
	margin-right: 15px;
	color: #FFFFFF;
	text-decoration: none;
	outline:none;
}
#menubar a:hover {				/* Menu item is red when pointed to */
	color: #FF0000;
	text-decoration: none;
	outline:none;
}
/**/
/**/
/*			STYLES FOR THE MAIN SECTION   */
/**/
/**/
#maincontent {			/* Positions content on page */
	position: relative;
	width: 80%;
	left: 10%;
	padding-top: 1em;
	padding-bottom:1em;
}
#maincontent p {
	text-align: justify;
}


/**/
/**/
/*			STYLES FOR THE FOOTER SECTION   */
/**/
/**/
#footer {				/* Positions text with red line above */

	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #FF0000;
	font-family: "Times New Roman", Times, serif;
	font-size: small;
	font-weight:bold;
	width: 80%;
	position: relative;
	left: 10%;
	padding-top: 1em;
	padding-bottom: 2em;
}


