


form.index-domainform input[type="text"], form.index-domainform select {
	background: white;
	border: 1px solid #ddd;
	color: #777;
	font-size: 16px;
	padding: 6px 8px;
	
	/*border-radius*/		
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}
form.index-domainform input[type="submit"]{
	font-size: 16px;
	padding:7px 10px;
	color: white;
	font-weight: bold;
	text-shadow: 1px 1px 0 #A54035;
	border: none;
		
	/*degrade*/
	background-image: -moz-linear-gradient(top, #D1685B, #A13A2D); /* FF3.6 */
			background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #A13A2D),color-stop(1, #D1685B)); /* Saf4+, Chrome */
			filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1685B', endColorstr='#A13A2D'); /* IE6,IE7 */
			-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#D1685B', endColorstr='#A13A2D')"; /* IE8 */
	
	/*border-radius*/		
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}
form.index-domainform input[type="submit"]:hover{
	/*degrade*/
	background-image: -moz-linear-gradient(top, #DB6C60, #B74133); /* FF3.6 */
			background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #B74133),color-stop(1, #DB6C60)); /* Saf4+, Chrome */
			filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#DB6C60', endColorstr='#B74133'); /* IE6,IE7 */
			-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#DB6C60', endColorstr='#B74133')"; /* IE8 */
			cursor: pointer;
}
form.index-domainform input[type="submit"]:active{
	/*degrade*/
	background-image: -moz-linear-gradient(top, #B74133, #DB6C60); /* FF3.6 */
			background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #DB6C60),color-stop(1, #B74133)); /* Saf4+, Chrome */
			filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#B74133', endColorstr='#DB6C60'); /* IE6,IE7 */
			-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#B74133', endColorstr='#DB6C60')"; /* IE8 */
}


/* $Id: example.css,v 1.5 2006/03/27 02:44:36 pat Exp $ */

/*--------------------------------------------------
  REQUIRED to hide the non-active tab content.
  But do not hide them in the print stylesheet!
  --------------------------------------------------*/
.tabberlive .tabbertabhide {
 display:none;
}

/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
.tabber {
}
.tabberlive {
 margin-top:0px;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav {
 margin: -40px 0 0 69px;
 padding: 3px 0 2px 0;
 font-size: 12px; font-weight: bold;
 width: 640px;
 border-bottom: 2px solid #D5D8D0;
}

ul.tabbernav li
{
 list-style: none;
 margin: 0;
 display: inline;
}

ul.tabbernav li a
{
 padding: 8px 20px 5px 20px;
 margin-left: 6px;
 border: 2px solid #D5D8D0;
 background: transparent;
 text-decoration: none;
 line-height: 20px;
 /*border-radius*/		
	-webkit-border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0;
}

ul.tabbernav li a:link { color: #1C85DA; }
ul.tabbernav li a:visited { color: #1C85DA; }

ul.tabbernav li a:hover
{
 color: #fff;
 background: #1C85DA;
 cursor: pointer;
}

ul.tabbernav li.tabberactive a
{
 color: #999;
 background-color: #FFF;
 border-bottom: 2px solid #FFF;
 font-size: large; 
}

ul.tabbernav li.tabberactive a:hover{
 color: #999;
 background: #FFF;
 border-bottom: 1px solid #FFF;
 cursor: text;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:5px;

 border-top:0;

 /* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */

 /* height:200px; */

 /* If you set a fix height set overflow to auto and you will get a
    scrollbar when necessary */

 /* overflow:auto; */
}

/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
 display:none;
}
.tabberlive .tabbertab h3 {
 display:none;
}

/* Example of using an ID to set different styles for the tabs on the page */
.tabberlive#tab1 {
}
.tabberlive#tab2 {
}
.tabberlive#tab2 .tabbertab {
 height:200px;
 overflow:auto;
}