/*----------------------------------------------*/
/* Toggles */
/*----------------------------------------------*/

.toggles{
	position: relative;
	overflow: hidden;
}
.toggles li{
	max-width: 100%;
	margin: 3px 0 3px 0;
	border: 1px solid #ddd;
	
}
.toggles li a{
	background: #e9e9e9; /* Old browsers */
	background: -moz-linear-gradient(top, #f5f5f5 0%, #e9e9e9 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#e9e9e9)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #f5f5f5 0%,#e9e9e9 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #f5f5f5 0%,#e9e9e9 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #f5f5f5 0%,#e9e9e9 100%); /* IE10+ */
	background: linear-gradient(top, #f5f5f5 0%,#e9e9e9 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#e9e9e9',GradientType=0 ); /* IE6-9 */
	-webkit-box-shadow: inset 0 1px 0 #fdfdfd;
	-moz-box-shadow: inset 0 1px 0 #fdfdfd;
	box-shadow: inset 0 1px 0 #fdfdfd;
	display: block;
	overflow: hidden;
	padding: 5px;
	text-decoration: none;
	color: #606060;
	border-bottom: 1px solid #ddd;
}
.toggles li p{
	padding: 10px;
	color: #47494a;
	font-size: 13px;
	line-height: 17px;
	background: #fff;
}
.toggles li img{
	float: left;
	padding: 3px 7px 0 0;
}
