/*
	 Organic Tabs
	 by Chris Coyier
	 http://css-tricks.com
*/

* { margin: 0; padding: 0; }
body {}

/*
	 Deleted the following code to remove the scroll bar on the right:
	 html { overflow-y: scroll; }
*/

a { text-decoration: none; }
a:focus { outline: 0; }
#page-wrap {
	width: 580px;
	margin-top: 25px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}

/* Generic Utility */
.hide { position: absolute; top: -9999px; left: -9999px; }


/* Specific to example two */

#example-two .list-wrap { background: #666666; padding: 10px; margin: 0 0 15px 0; }

#example-two ul { list-style: none; }
#example-two ul li a { display: block; border-bottom: 1px solid #666; padding: 3px; color: #FFFFFF; }
#example-two ul li a:hover { background: #333; color: white; }
#example-two ul li:last-child a { border: none; }

#example-two .nav { overflow: hidden; }
#example-two .nav li {
	width: 112px;
	float: left;
	margin-top: 0;
	margin-right: 5px;
	margin-bottom: 0;
	margin-left: 0;
}
#example-two .nav li.last { margin-right: 0; }
#example-two .nav li a {
	display: block;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 1px;
	padding-right: 1px;
	background: #cccccc;
	color: black;
	font-size: 14px;
	text-align: center;
	border: 0;
	font-weight: normal;
}

#example-two li a.current,#example-two li a.current:hover { background-color: #666666 !important; color: white; }
#example-two .nav li a:hover, #example-two .nav li a:focus { background: #cccccc;}
