/*
	 CSS-Tricks Example
	 by Chris Coyier
	 http://css-tricks.com
*/

*					{ margin: 0; padding: 0; }
body				{
	
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	background: #13141D;
	color: #FFF;
	}
	
a:link    { color: #FFCC00; }
a:visited {
	color: #F90;
}

ol					{ list-style: inside decimal; }
#header			{
	width: 900px;
	height: 120px;
	margin: 3px auto;
	margin-top: 12px;
	border: 0px solid #999;
	background: #102323 url(images/header.png);
	overflow: auto;
}

#page-wrap			{ width: 900px; margin-top: 2px; margin: 10px auto; border: 0px solid #999;
	 				  background: #102323 url(images/nav-bg.png) repeat-y; overflow: auto; color: #eee; }
	
ul#nav				{
	list-style: none;
	width: 140px;
	float: left;
	padding: 10px 0 10px 10px;
	color: #eee;
	background-color: #13141D;
}
ul#nav li			{ margin: 5px 0; }
ul#nav li a	    	{ padding: 8px 3px 8px 10px; display: block; text-decoration: none;
	 				  font: 16px Helvetica; letter-spacing: -1px; color: #eee; outline: none;
					  background: #000 url(images/nav-bg-off.png) top right repeat-y; }
ul#nav li a:hover,
ul#nav li a:active	{ border-left: 3px solid #000; }
					
ul#nav li.current a { background: #102323; border: none; }
					
#content			{
	width: 700px;
	height:	380px;
	float: left;
	padding: 15px;
	padding-top: 15px;
	background-color: 102323;
	position: static;
}


#social				{
	float: right;
	width: 150px;
	height:	6
	0px;
	background: #1f3d3d;
	margin: 5px auto;
	padding: 2px 5px 5px 5px;
	border-radius:5px;
	-moz-border-radius: 5px;
	-webkit-border-radius:5px;
	-khtml-border-radius:5px;
}

#footer				{
	text-align: center;
	color: #CCCCCC;
	margin: 10px;
	position: static;
}

/* aca esta el efecto de tabs */

legend {
	color: #F2F2F2;
}



.panel {
	clear: both;
	display: none;
	background-color: #102323;
	
	
}

fieldset {
	padding: 1em;
	border: 0;
	margin: 0;
	
}

.panel.active-tab-body {
	display: block;
}



#tabs {
	
	top: 55px;
	height: 28px;
	list-style: none;
}

#tabs li {
	float: right;
}

#tabs a {
	float: right;
	padding: 0px 8px;
	margin-left: 6px;
	background-color: #102323;
	text-decoration: none;
	color: #FC0;
}

#tabs a.active-tab {
	background-color: #102323;
	color: #FFF;
}