
/* CSS Document */

/* The body section defines things you want to appear on the whole page.
   Usually this is where you define the color of the page and include a
   texture if desired.  */
body {
background-color:#FFFF00;	
background-image:url(images/BGTexture.gif);
}

/*  prevents the ugly border around pictures */
img {
	border-style:none;
}

/* This creates a section that contains all the elements of your 
   web page in one big group. */
#container {
	position:relative;
	background-color:#00F;
	width:950px;
	margin: 5px auto; /* Centers on the page*/
	-webkit-box-shadow: 0px 0px 15px #000; /* Safari and Chrome */
	box-shadow: 0px 0px 15px #000;
}

/* This section displays your banner at the top of each web page */
#heading {
	border-style:solid;
	border-width:5px 1px 0 1px;
	border-color:#06C;
	background-image:url(images/headingGR.png);
	background-repeat:no-repeat;
	background-position:left top;
	height:90px;
	width:948px;

}

/* This is the section that will contain your navigation menu */
#menu {
	float:left;
	width:173px;
	padding:2px;
	background-color:#fff; /*sets basic background to white */
}

/* This is the section that will contain all of your writing and video when you return from Rome */
#pageContent {
	border-left-style:groove;
	border-left-size:5px;
	margin-top:0;
	float:left;
	min-height:600px;
	width:758px;
	background:#FFF;
	padding-left:5px;
	padding-right:5px;
}

/* Defines the basic text style on a page:  p stands for PARAGRAPH */
#pageContent p {
	font-family:Tahoma, Geneva, sans-serif;
	color:#000;
}

/* This is used for the heading at the top of each page, ie, The Eternal City
   or Voices of the Lost, or Home */
#pageContent h1 {
	padding-left:10px;
	font-family:"Arial Black", Gadget, sans-serif;
	font-size:22px;
	color:#FFF;
	background-color:#66c;
	text-shadow:2px 2px 5px #666;
}

/* this section is just used to fix some formatting */
#footer {
	clear:both;
}
