/*
 * @CSS3 Gaussian Blur Revisited
 * @author Martin Ivanov
 * @website http://wemakesites.net
 * @blog http://acidmartin.wordpress.com/
 * @twitter https://twitter.com/wemakesitesnet
 **/

.blur, .blur *
{
    text-shadow: 0 0 10px rgba(0, 0, 0, .7) !important;
    color: transparent !important;
    background-image: none !important;
    border-color: rgba(0, 0, 0, .05) !important;
    /* disable the pointer events for blurred zones */
    -moz-pointer-events: none !important;
    -webkit-pointer-events: none !important;
    pointer-events: none !important;
}
 
.blur input,
.blur textarea,
.blur button,
.blur select
{
    box-shadow: 0 0 10px rgba(0, 0, 0, .7) !important;
    border-color: rgba(0, 0, 0, .05) !important;
    resize: none !important;
    opacity: .5 !important;
}
 
.blur img,
.blur input,
.blur input[type="file"],
.blur input[type="checkbox"],
.blur input[type="radio"]
.blur textarea,
.blur select
{
    opacity: .2 !important;
    background: transparent none !important;
}
 
.blur fieldset
{
    border-color: transparent !important;
}
 
/* Vendor-specific styles */
/* CSS3 filters are currently supported by Chrome only */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    .blur img
    {
        -webkit-filter: blur(2px) !important;
        filter: blur(5px) !important;
        opacity: 1 !important; /* restore the opacity for that browser */
    }
}
 
/* IE<10 styles using the \9 hack */
.blur img
{
    filter: progid:DXImageTransform.Microsoft.Blur(pixelradius=4)\9 !important; /* IE has native support for filters since version 5.5 */
    -ms-filter: progid:DXImageTransform.Microsoft.Blur(pixelradius=4)\9 !important; /* IE has native support for filters since version 5.5 */
    opacity: 1\9 !important;
}
 
.blur *
{
    color: #ccc !important\9;
}
