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

body {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #FFFFFF;
	font-family: "Times New Roman", Times, serif;
	font-size: 12px;
	background-color: #000000;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
#container {
	width: 800px; /* rjnNote: was 700px; */
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-right: auto;
	margin-left: auto;
	height: auto;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background: url(pics/moog_back2.jpg) repeat-y;
}
#header {
	padding: 0;
	background: #660000 none repeat-x left top;
}

#top_body {
	font-size: 18px;
	margin-top: 0;
	margin-bottom: 5px;
	font-weight: bold;
	width: 390px;
}

#left_body {
	font-size: 13px;
	width: 180px;
	float: left;
	margin-top: 0;
	margin-bottom: 0;
}

#right_body  {
	font-size: 15px;
	float: left;
	width: 220px;
	margin-bottom: 0;
	padding-bottom: 0;
	color: #cc9933;
	margin-top: 0;
}

#contactBody {
	width: 455px;
	height: 181px;
	margin: 0 auto;
	background-image: ;
	padding-top: 70px;
	padding-left: 180px;
}
#giftcertsBody {
	width: 455px;
	height: 350px;
	margin: 0 auto;
	background-image: ;
	padding-top: 70px;
	padding-left: 180px;
}

#bodyHeader {
	width: 635px;
	margin: 0 auto;
	background: url(pics/moog_bodyHeader.jpg) no-repeat;
	height: 106px;
}

#aboutusBody {
	padding-top: 65px;
	margin-top: 0;
	margin-bottom: 0;
	margin-right: auto;
	margin-left: auto;
	background-image: url(pics/moog_aboutusBody.jpg);
	background-repeat: no-repeat;
	background-color: #240a0b;
	padding-left: 260px;
	width: 375px;
	height: 530px;
}


#indexBody {
	height: 168px;
	width: 404px;
	margin: 0 auto;
	padding-top: 80px;
	padding-left: 230px;
	color: white;
	font: 20px "Times New Roman", Times, Georgia, serif;
	background: url(pics/moog_bodyback2.jpg) no-repeat;
}

#servicesBody {
	width: 635px;
	margin: 0 auto;
	height: 397px;
	background-image: url(pics/moog_services.jpg);
	background-repeat: no-repeat;
}

#artistBody {
	width: 625px;
	background-image: url(pics/moog_artistBody.jpg);
	padding-top: 66px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-left: 10px;
	background-repeat: no-repeat;
	background-color: #311D1E;
	height: 450px;
}

#samplesBody {
	width: 635px;
	height: 525px;
	background-image: url(pics/moog_samplesBody2.jpg);
	padding-top: 56px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-repeat: no-repeat;
	background-color: #240a0b;
}

.samplePic{
	padding: 10px;
}

table#artistTable {
	height: 100%;
}

#artistTable tbody tr td img {
	padding-top: 17px;
	padding-left: 40px;
	margin: 0;
	height: auto;
	float: left;
}

#artistTable tbody tr td p {
	width: auto;
	margin-bottom: 0;
	margin-left: 5px;
	margin-top: 0;
	padding-top: 60px;
}

#contactTable tbody tr td a {
	color: white;
	text-decoration: underline;
}

#appointmentOnly {
	font-size: 12px;
	width: 224px;
	float: right;
	margin: 12px 0 0;
	padding: 0;
	font-style: italic;
}

#footerMain {
	width: 634px;
	margin-right: auto;
	margin-left: auto;
	height: 75px;
	background: url(pics/moog_footer.jpg) no-repeat;
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#mainContent {
	padding: 0 20px;
	text-align: left;
	background: url(pics/moog_back.jpg) repeat-x;
}

img.alignleft {
	float: left;
	margin-bottom: 5px;
	margin-right: 10px;
	border: 5px double white;
	padding: 4px;
}

p {
	margin-top: 0;
	width: 340px;
	float: left;
}

#contactTable {
	width: 97%;
}
#giftcertTable {
	width: 97%;
}

#contactTable tbody tr td {
	height: 50px;
	line-height: 12px;
}
#giftcertTable tbody tr td {
	height: 50px;
	line-height: 12px;
}

#footer {
	margin: 0 auto; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 7px 0 10px;
	text-align: center;
	font-style: italic;
	width: 634px;
	background-image: url(pics/moog_nav_background.jpg);
	height: 20px;
}

#footer p {
	width: 635px;
}

#aboutusBody p {
	font-size: 11px;
	margin-bottom: 15px;
}

h2 {
	margin-top: 3px;
	margin-bottom: 5px;
}
.style1 {
	font-size: 22px;
	font-family: "Times New Roman", Georgia, Times, serif;
	font-style: italic;
	margin-bottom: 5px;
}
#header #nav {
	height: 53px;
	width: 500px;  /* rjnNote:06dec2013 was 400px; */
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	background-image: url(pics/moog_nav_background.jpg);
	background-repeat: repeat-x;
	text-align: center;
	padding-left: 163px;
	padding-right: 136px;
	padding-top: 5px;
}

#footer p a {
	color: white;
}

#mainContent p a {
	color: white;
	font-style: italic;
}

#nav ul li a:hover {
	text-decoration: underline;
}
#container #header #nav ul {
	display: inline;
}
#container #header #nav ul li {
	display: block;
	float: left;
	text-decoration: none;
	list-style-type: none;
	padding: 3px;
	margin: 0 10px 0px;
}
#container #header #nav li {
	text-align: center;
	color: white;
	font: italic 12px Times, "Times New Roman", Georgia, serif;
}

#nav ul li a {
	text-decoration: none;
	color: white;
	white-space: nowrap;
}

.floatRight{
	float: right;
}
