@charset "utf-8";
/* CSS Document */
body {
	background-color:#EEE;
	margin: 0px;
	padding: 0px;
	color: #666;
}
body, p, ul, contact, container {
	font-family: Arial, Helvetica, sans-serif;
}
#container {
	width: 425px;
	height: 100%;
	margin: 30px auto;
	background-color:#FFF;
	text-align: center;
	border: 1px solid #600;
}
#contact {
	font-size: 18px;
	color:#666;
	line-height: 150%;
	-webkit-transform: rotate(-17deg);
	-moz-transform: rotate(-17deg);
	text-align: left;
	margin: 40px 0px 0px 60px;
}
a:link, a:visited {
	color:#600;
	text-decoration: overline;
	border: 0px;
}
a:hover, a:active {
	color:#a00;
	text-decoration: underline;
}
ul {
	line-height: 200%;
	list-style:none;
}
.title, #accordion h2 {
	font-family: "Impact", Arial Black, Gadget, sans-serif ;
	font-size:36px;
	font-weight:normal;
}
.title {
	position: relative;
	color:#600;
	top: 30px;
	height: 50px;
	border:0px solid green;
	text-align: right;
}
/*JQuery elements */
/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	margin: 30px auto;
	width: 225px;
}

/* accordion header */
#accordion h2 {
	text-align: center;
	margin:0;
	padding:5px 15px 0px 10px;
	height: 32px;
	overflow: hidden;
	border-bottom:1px solid #ccc;
	cursor:pointer;		
}
#accordion h2 a:link,#accordion h2 a:visited {
	color:#CCC;
	text-decoration: none;
}
/* currently active header and hovers */
#accordion h2.current a:link, #accordion h2 a:hover,#accordion h2 a:active {
	color:#600;
	text-decoration: none;
}

/* accordion pane */
#accordion div.pane {
	border-width:0 2px;
	display:none;
	height: auto;
	padding:15px;
	font-size:14px;
	font-family:Arial, Helvetica, sans-serif;
	overflow: visible;
	text-align: justify;
	line-height: 180%;
	letter-spacing: 140%;
}

/* a title inside pane */
#accordion div.pane h3 {
	font-weight:normal;
	font-size:16px;
	color:#999;
}
