/*
--------------------------------------------------------------------------------
	CSS Reset
	http://meyerweb.com/eric/tools/css/reset/
--------------------------------------------------------------------------------
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font,
img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i,
hr, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	font-size: 100%;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	text-align: left;
	border: 1px solid #cccccc;
	width: 700px
}

tr, td, th {
  border: 1px solid #cccccc;
}

td, th {
  padding: 2px 2px 2px 2px;
}


/*
--------------------------------------------------------------------------------
	Common Items
--------------------------------------------------------------------------------
*/

body {
	color: #404040;
	font-size: 62.5%;
	font-family: Verdana, Geneva, Arial, sans-serif;
}

a {
	color: #0000ff;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
	
}

.error {
	color: #ff0000;
}

.skip {
	color: #808080;
}

.col {
	float: left;
}
.col-left {
	width: 200px;
}

.col-right {
	min-height: 300px;
	border-left: 2px solid #cccccc;
}

/*
--------------------------------------------------------------------------------
	Layouts
--------------------------------------------------------------------------------
*/

#global {
	width: 1004px;
	margin: 0 auto 0 auto;
}

#wrapper {
	float: left;
	width: 1000px;
	border-left: 2px solid #cccccc;
	border-right: 2px solid #cccccc;
	border-bottom: 2px solid #cccccc;
	margin-top: 10px;
}

#header {
	border-bottom: 2px solid #cccccc;
	border-top: 2px solid #cccccc;
	float: left;
	width: 1000px;
}

#header h1 {
	margin: 15px;
	font-size: 2.0em;
}

#main {
	padding: 10px 15px 15px 15px;
	width: 760px;
}

#main h1 {
	margin-bottom: 10px;
	font-size: 1.6em;
}

#main h2 {
	margin-bottom: 10px;
	font-size: 1.4em;
}

#main p, #main li {
	font-size: 1.2em;
}

#main p {
	margin-bottom: 5px;
}

#main br {
	margin-bottom: 5px;
}

#customers, #orders, #products {
	margin-bottom: 10px;
}

.customer, .order {
	min-width: 500px;
	padding: 10px;
}

.customer li, .order li {
	margin-bottom: 5px;
}

.odd {
	background-color: #f7f7f7;
}

.even {
	background-color: #f0f0f0;
}



#copyright {
	text-align: center;
	width: 1004px;
	float: left;
	padding: 20px 0 20px 0;
	font-size: 1.2em;
}

/*
--------------------------------------------------------------------------------
	Navigation
--------------------------------------------------------------------------------
*/

.nav {}

.nav a {}

#nav-main {
	padding: 10px 15px 15px 15px;
}

#nav-main h2 {
	color: #4d4d4d;
	font-size: 1.6em;
	margin-bottom: 10px;
}

#nav-main li {
	font-size: 1.2em;
	margin-bottom: 10px;
}


/*
--------------------------------------------------------------------------------
	Clear Floats
	http://perishablepress.com/press/2008/02/05/lessons-learned-concerning-the-clearfix-css-hack/
--------------------------------------------------------------------------------
*/

.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
}

.clearfix:after {
	clear: both;
	content: "\0020";
	display: block;
	font-size: 0;
	height: 0;
	overflow: hidden;
	visibility: hidden;
}

* html .clearfix {
	height: 1%;
}