/* CSS Document */

#tabbox ul.tabs, #container-1 ul {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 32px; /*--Set height of tabs--*/
	border-bottom: 1px solid #e5e5e5;
	border-left: 1px solid #e5e5e5;
	width: 100%;
}
#tabbox ul.tabs li, #container-1 ul li {
	float: left;
	margin: 0;
	padding: 0;
	height: 31px; /*--Subtract 1px from the height of the unordered list--*/
	line-height: 31px; /*--Vertically aligns the text within the tab--*/
	border: 1px solid #e5e5e5;
	border-left: none;
	margin-bottom: -1px; /*--Pull the list item down 1px--*/
	overflow: hidden;
	position: relative;
	background: #fff;
	width:90px;
	text-align:center;
}
#tabbox ul.tabs li a, #container-1 ul li a {
	text-decoration: none;
	color: #1f416e;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	padding: 0 20px;
	border: 0px solid #fff; /*--Gives the bevel look with a 1px white border inside the list item--*/
	outline: none;
	font-weight:bold;
}
#tabbox ul.tabs li a:hover, #container-1 ul li a:hover{
	background: #e5e5e5;
	
}
html #tabbox ul.tabs li.active, html #container-1 ul li.active a:hover,html #container-1 ul li.active, html #container-1 ul li.active a:hover  { /*--Makes sure that the active tab does not listen to the hover properties--*/
	background: #fff;
	border-bottom: 1px solid #fff; /*--Makes the active tab look like it's connected with its content--*/
}
#tabbox .tab_container, #container-1 .tab_container, #general_tab, #forum_tab, #tags_tab, #custom_tab {
	border: 1px solid #e5e5e5;
	border-top: none;
	overflow: hidden;
	clear: both;
	float: left; 
	width: 410px;
	background: #fff;
}
#tabbox .tab_content, #container-1 .tab_content, #general_tab, #forum_tab, #tags_tab, #custom_tab  {
	padding: 20px;
	font-size: 1.2em;
	
}


/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

#tabbox .cssform p{
width: 300px;
clear: left;
margin: 0;
padding: 5px 0 8px 0;
padding-left: 155px; /*width of left column containing the label elements*/

height: 1%;
}

#tabbox .cssform label{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #333;
	float: left;
	margin-left: -155px; /*width of left column*/
	width: 190px; /*width of labels. Should be smaller than left column (155px) to create some right margin*/
	padding-top:5px;
}

#tabbox .cssform input[type="text"]{ /*width of text boxes. IE6 does not understand this attribute*/
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #333;
	width:220px;
	height:15px;
}

#tabbox .cssform textarea{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #333;
	width: 220px;
	height: 150px;
}

/*.threepxfix class below:
Targets IE6- ONLY. Adds 3 pixel indent for multi-line form contents.
to account for 3 pixel bug: http://www.positioniseverything.net/explorer/threepxtest.html
*/

* html #tabbox .threepxfix{
margin-left: 3px;
}
