/*
Company:		My Photo Plates
File:		main.css - This contains all the styles for the MPP website.

All the styles are separted into the following groups:
Global Browser Reset - they make sure that all browsers start with the same default settings
HTML, Body - for the html and body tags
Layout - any style that defines how the site is laid out (position and size of objects)
Nav - navigation bar
Headings - headings like h1, h2, etc
Text Styles - Styles for text
Lists - unordered and ordered lists
Forms - html forms
Links - links
Misc - anything that doesn't fit elsewhere
*/
/*<group=Global Browser Reset>*/
* {

padding:0;

margin:0;

}

body {padding:5px;}

h1, h2, h3, h4, h5, h6, p, pre, blockquote, form, label, ul, ol, dl, fieldset, address { margin:20px 0; }

li, dd, blockquote { margin-left: 40px; }

fieldset { padding:10px; }

img { border: 0px; }
/*</group>*/

/*<group=HTML, Body>*/
body {
	text-align: center;
	font-family: Verdana, sans-serif;
	font-size: 11px;
	background-color: #fcefc7;
}
/*</group>*/

/*<group=Layout>*/
div#header {
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	width: 760px;
	height: 46px;
}
div#header img {
	margin-left: 36px;
}
div#main {
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	width: 760px;
	padding: 18px;
	background-color: #d9dcc2;
	/* IE 5 & 5.5 Hack */
	voice-family: "\"}\""; 
  	voice-family:inherit;
  	width:724px;
}
html>body #main {
  width:724px;
} 
/* End IE Hacks */
div#featuringBox {
	width: 724px;
	height: 189px;
	background: url("../images/featuring-box.jpg") no-repeat;
}
div#featuringBox img#priceBurst {
	position: relative;
	top: -42px;
	margin-left: 240px;
}
p#featureText {
	position: relative;
	top: -60px;
	margin-left: 35px;
	font-weight: bolder;
}
div#featuredCompanies {
	position: relative;
	margin-left: 30px;
	top: -62px;
	margin-bottom: 0px;
	width: 334px;
}
div#featuredOne {
	width: 334px;
	height: 26px;
}
div#featuredTwo {
	margin-top: 5px;
	width: 334px;
	height: 26px;
}
div#stepsBox {
	width: 660px;
	margin: 10px 0 40px 30px;
}
div#stepsBoxContent {
	width: 660px;
	margin: 10px 0 40px 30px;
}
div#stepOne, div#stepTwo, div#stepThree {
	float: left;
	width: 200px;
	margin-left: 0;
}
div#stepOne, div#stepTwo {
	margin-right: 30px;
}
div#content {
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	width: 724px;
	padding: 12px;
	background-color: #fff;
	/* IE 5 & 5.5 Hack */
	voice-family: "\"}\""; 
  	voice-family:inherit;
  	width:700px;
}
html>body #content {
  width:700px;
} 
div#contentLeft {
	width: 308px;
	float: left;
	/* margin-left: 18px; */
	margin-left: 9px;
	margin-right: 12px;
}
div#contentRight {
	float: left;
	width: 361px;
}
div.platePicBox {
	width: 350px;
	float: left;
	text-align: center;
}
/*</group>*/

/*<group=Nav>*/
ul#nav {
	position: relative;
	margin-left: 340px;
	margin-top: -30px;
	margin-bottom: 0px;
	list-style-type: none;
}
ul#nav li {
	margin-left: 30px;
	float: left;
	margin-right: 0px;
	font-weight: bolder;
	font-size: 108%;
}
ul#nav li a {
	padding: 3px;
}
/* Featured Companies Nav */
span#Disney a {
	display: block;
	float: left;
	width: 79px;
	height: 26px;
	background: url("../images/disney.jpg") no-repeat;
	margin-right: 9px;
}
span#Marvel a {
	display: block;
	float: left;
	width: 80px;
	height: 26px;
	background: url("../images/marvel.jpg") no-repeat;
	margin-right: 9px;
}
span#KingFeatures a {
	display: block;
	float: left;
	width: 152px;
	height: 26px;
	background: url("../images/king-features.jpg") no-repeat;
}
span#Barney a {
	display: block;
	float: left;
	width: 83px;
	height: 26px;
	background: url("../images/barney.jpg") no-repeat;
	margin-right: 9px;
}
span#Thomas a {
	display: block;
	float: left;
	width: 91px;
	height: 26px;
	background: url("../images/thomas.jpg") no-repeat;
	margin-right: 9px;
}
span#TheWiggles a {
	display: block;
	float: left;
	width: 135px;
	height: 26px;
	background: url("../images/the-wiggles.jpg") no-repeat;
}

/* COMPANY HOVERS BEGIN HERE */
/* Disney Hover */
span#Disney a:hover {
	background: url("../images/disney-over.jpg") no-repeat;
}
/* Marvel Hover */
span#Marvel a:hover {
	background: url("../images/marvel-over.jpg") no-repeat;
}
/* King Features Hover */
span#KingFeatures a:hover {
	background: url("../images/king-features-over.jpg") no-repeat;
}
/* Barney Hover */
span#Barney a:hover {
	background: url("../images/barney-over.jpg") no-repeat;
}
/* Thomas Hover */
span#Thomas a:hover {
	background: url("../images/thomas-over.jpg") no-repeat;
}
/* The Wiggles Hover */
span#TheWiggles a:hover {
	background: url("../images/the-wiggles-over.jpg") no-repeat;
}

/*</group>*/

/*<group=Headings>*/
h1 { }
h2 {
	color: #1171a8;
	font-size: 108%;
	margin-top: 5px;
}
h3 {
	color: #1171a8;
	font-size: 100%;
	margin: 5px 0 2px 0;
}
h4 { }
h5 { }
h6 { }
/*</group>*/

/*<group=Text Styles>*/
p {
	line-height: 158%;
	color: #1171a8;
}
div#stepsBox p, div#stepsBoxContent p {
	margin: 0px;
}
.bold {
	font-weight: bolder;
}
/*</group>*/

/*<group=Lists>*/

/*</group>*/

/*<group=Forms>*/
	
/*</group>*/

/*<group=Links - link visited hover active>*/
a:link {
	color: #1171a8;
}
a:visited {
	color: #1171a8;
}
a:hover, a:active {
	color: #d9dcc2;
	background-color: #1171a8;
	text-decoration: none;
}
/* Footer */
div#footer a:link, div#footer a:visited {
	text-decoration: none;
}
/* Nav Links */
ul#nav a:link {
	color: #1171a8;
	text-decoration: none;
}
ul#nav a:visited {
	color: #1171a8;
	text-decoration: none;
}
ul#nav a:hover, ul#nav a:active {
	color: #d9dcc2;
	background-color: #1171a8;
	text-decoration: none;
}
/*</group>*/

/*<group=Misc>*/
.clear {
	clear: both;
	line-height: 0px;
}
/*</group>*/