/*
pseudo-element (done) 
padding property (done)
display: none (done)
position: absolute (done) 
*/

body {
	margin: 10px 10px 0px 10px;
	padding: 0px;
	font-family: verdana, arial, sans-serif;
	font-size: 14px;
	background: #EFEFEF url(background.jpg) repeat-x;
}
#header {
	background: #EFEFEF;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	border-left: 1px solid #000;
	voice-family: "\"}\"";
	voice-family: inherit;
	height: 90px;
}
#header h1 {
	font-size:18px;
	padding:10px 10px 0px 400px;
	margin:0px;
}
#hours {
	font-size:12px;
	padding:0px 0px 0px 390px;
}
#address {
	display: none;
}
/*leftcontent*/
#menu{
	position: absolute;
	left:10px;
	top:101px;
	width:230px;
	background:#EFEFEF;
	border:1px solid #000;
	padding:0px 0px 20px 0px;
}
/*rightcontent*/
#quotes {
	position: absolute;
	right:10px;
	top:101px;
	width:270px;
	background:#EFEFEF;
	border:1px solid #000;
	padding:0px 0px 20px 0px;
}	
/*centercontent*/
#about {
	background:#EFEFEF;
	border:1px solid #000;
	margin-left: 229px;
   	margin-right:269px;
	voice-family: "\"}\"";
	voice-family: inherit;
   	margin-left: 231px;
   	margin-right:271px;
	height:273px;
}
#about p:first-letter{
	color: #ff0000;
	font-size:xx-large
}
/*
	CSS trickery to get pixel-perfect display across browsers.
	The following bit of code was proposed by Tantek Celik, and it preys upon a CSS
	parsing bug in IE5x PC that will prematurly close a style rule when it runs
	into the string "\"}\"". After that string appears in a rule, then, we can override
	previously set attribute values and only browsers without the parse bug will
	recognize the new values. So any of the name-value pairs above this comment
	that we need to override for browsers with correct box-model implementations
	will be listed below.		
	We use the voice-family property because it is likely to be used very infrequently,
	and where it is used it will be set on the body tag. So the second voice-family value 
	of "inherit" will override our bogus "\"}\"" value and allow the proper value to
	cascade down from the body tag.		
*/
#footer {
	background:#EFEFEF;
	padding:80px 0px 0px 80px;
	margin:0px;
}
a {
	text-decoration:none;
	border-bottom:1px dotted;
}
a:visited {
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}
