/*Решение для IE - http://css3pie.com/*/

/**
* @section opacity
*/
.b-opacity {
	opacity: .6;
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60); /* IE6, IE7, IE8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=60)"; /* IE8 only */
}


/**
* @section corners
*/
/*.b-rounded {
	border: none;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	position: relative; 
    z-index: 1; 
	behavior: url(/media/css/css3/PIE.htc); 
}*/
/* IE 7 */
*+html .b-rounded{ 
	position: static;
}



/**
* @section box-shadow
*/
.b-shadow {
	box-shadow: 5px 5px 2px #CCC;
	-moz-box-shadow: 5px 5px 2px #CCC;
	-webkit-box-shadow: 5px 5px 2px #CCC;
	behavior: url(/media/css/css3/PIE.htc); /*IE*/
}
 
/**
* @section gradient
*/
.b-gradient {
	background: #EEFF99;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#F8F8F8), to(#B5B5B5));
	background: -moz-linear-gradient(#F8F8F8, #B5B5B5);
	background: linear-gradient(#F8F8F8, #B5B5B5);
	-pie-background: linear-gradient(#F8F8F8, #B5B5B5); /*IE*/
	behavior: url(/media/css/css3/PIE.htc); /*IE*/
}

/**
* @section text-shadow
*/
.tshadow {
	text-shadow: 0 1px 0 #FFFFFF;
}
