/* reset elements */
* {
	margin: 0px;
	padding: 0px;
}



/* basic */
body {
	background-color: #ffffff;
	color: #333333;
	font-style: normal;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
}

h1, h2, h3, h4, h5, h6, address {
	color: #333333;
	font-style: normal;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
}

p, dl, dt, dd {
	color: #333333;
	font-style: normal;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
}

ul, ol, li {
	list-style-type: none;
	color: #333333;
	font-style: normal;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
}

table, caption, th, td {
	color: #333333;
	font-style: normal;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
}

img {
	border: 0px;
}

hr {
	display: none;
}



/* common */
strong {
	font-weight: bold;
	font-style: normal;
}

em {
	font-weight: normal;
	font-style: normal;
	color: #cc0000;
}

a:link,a:visited {
	color: #333399;
	text-decoration: underline;
}

a:hover, a:active {
	color: #9999cc;
	text-decoration: underline;
}

pre {
	display: block;
	font-family: monospace;
}

del {
	color: #666666;
	text-decoration: line-thorough;
	font-style: normal;
}

blockquote {
	color: #333333;
	background-color: #e6e6e6;
	font-style: normal;
	margin: 0px;
	padding: 10px;
	border: 1px solid #cccccc;
}

cite {
	font-style: normal;
}

address {
	color: #333333;
	font-weight: normal;
	font-style: normal;
}

input, label {
	vertical-align: middle;
}



/* misc */
.left {
	text-align: left;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.floatLeft {
	float: left;
}

.floatRight {
	float: right;
}

.clearBoth {
	clear: both;
}



/* wrapper */
#wrapper {
	width: 750px;
	margin: 0px auto;
	padding: 0px;
	text-align: left;
}






/* header */
#header {
	padding: 20px 0;
}

h1 {
	font-size: 18px;
	font-weight: bold;
}


/* gnav */
#gnav {
	margin: 0 0 20px 0;
	padding: 10px;
	background-color: #ececec;
	border: 1px solid #ccc;
}

#gnav p {
	font-size: 12px;
	line-height: 1.0;
	font-weight: normal;
}



/* main */
#main {
	width: 530px;
	float: left ;
}

#main h2 {
	margin: 0 0 10px 0;
	padding: 10px 0;
	border-top: 3px solid #ccc;
	border-bottom: 1px solid #ccc;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.0;
}

#main ul {
	list-style-type: disc;
	margin: 0 0 40px 0;
}

#main ul li {
	margin: 10px 0;
}

#main ul li h3 {
	font-size: 14px;
	font-weight: bold;
	line-height: 1.5;
}

#main ul li p {
	font-size: 12px;
	line-height: 1.5;
}



/* side */
#side {
	float: right;
	width: 200px;
}

#side dl {
	margin: 0 0 20px 0;
}

#side dl dt {
	padding: 3px 0;
	border-top: 3px solid #ccc;
	border-bottom: 1px solid #ccc;
	font-size: 12px;
	font-weight: bold;
	line-height: 1.5;
}

#side dl dd {
	margin: 5px 0;
}

#side dl dd ul {
	list-style-type: none;
}

#side dl dd ul li {
	font-size: 12px;
	line-height: 1.5;
}





/* footer */
#footer {
	clear: both;
	padding: 20px 0;
}

#footer address {
	padding: 5px 0 0 0;
	border-top: 1px solid #cccccc;
	font-size: 10px;
}



