/* button 
---------------------------------------------- */
.button {
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
	*display: inline;
	vertical-align: baseline;
	margin: 0 2px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font: 14px/100% Arial, Helvetica, sans-serif;
	padding: 0.35em 1.5em;
	text-shadow: 0 1px 1px rgba(0,0,0,.1);
	-webkit-border-radius: .5em; 
	-moz-border-radius: .5em;
	border-radius: .5em;
	-webkit-box-shadow: 0 0.5px 1px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0.5px 1px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0.5px 1px rgba(0, 0, 0, 0.1);
	font-size: 11px;
}
.button:hover {
	text-decoration: none;
}
.button:active {
	position: relative;
	top: 1px;
}

/* other 
---------------------------------------------- */
.toggleBtn, .toptoggleBtn {height:1px;}
.toptoggleBtn li{list-style: none; float: left; position:relative; top: -40px; /*left:680px;*/left:625px;}
.toggleBtn li{list-style: none; float: left; position:relative; top: -20px; left:755px;}
.selected { color: #aaa;
	border: solid 1px #ddd;
	background: #f6f6f6;
	text-shadow: none;
	}
.toggleBtn li a, .toptoggleBtn li a {text-decoration: none;}

/* button color styles 
---------------------------------------------- */
.white {
	color: #666;
	border: solid 1px #ccc;
	background: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#efefef));
	background: -moz-linear-gradient(top,  #fff,  #efefef);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#efefef');
}
.white:hover {
	background: #ededed;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e5e5e5));
	background: -moz-linear-gradient(top,  #fff,  #e5e5e5);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e5e5e5');
}
.white:active {
	color: #999;
	background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
	background: -moz-linear-gradient(top,  #ededed,  #fff);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3f3f3', endColorstr='#ffffff');
}