@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700);


/* Effects */
.btn {
    outline: none;
}
.bootstrapFX canvas {
    outline: none;
}

.bootstrapFX canvas.bootstrapFXFx, .btn canvas.bootstrapFXCrystal {
    position: relative;
    float: left;
}

.shine-over {
    cursor: pointer;
}

.grayscale, .grayscale-hover {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    filter: gray;
    -webkit-transition: all .6s ease;
}

.grayscale-hover {
    cursor: pointer;
}

.grayscale-hover:hover {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
    filter: none;
}

.btn canvas {
    outline: none;
}

.btn canvas.buttonFxFx, .btn canvas.buttonFxCrystal {
    position: relative;
    float: left;
}
.shine-over {
    cursor: pointer;
}
/* /Effects */

/* Notifications */
.notification
{
    min-width: 220px;
    padding: 0px;
    cursor: default;
    position: absolute;
    z-index: 99999999;
    font-family: Tahoma, Arial,Verdana;
    margin: 15px;
    border-radius: 4px;
    moz-box-shadow: 0px 0px 3px #111;
    -webkit-box-shadow: 0px 0px 3px #111;
    box-shadow: 0px 0px 3px #111;
}
.notification:active {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}
.notification .notification-header
{
    text-align: center;
    display: block;
    /* color: white;*/
    padding: 10px;
    padding-top: 5px;
    padding-bottom: 15px;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 4px;
    -khtml-border-radius-topleft: 4px;
    -khtml-border-radius-topright: 4px;
    border-top-left-radius: 4px;
}
.notification .notification-header p {
    margin-top: 3px;
    margin-bottom: 3px;
}
.notification .notification-header .notification-title
{    
    display: inline-block;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    margin: 0px;
    margin-bottom: 0px;
    color: inherit;
    line-height: 30px;
}
.notification a.notification-close
{
    display: inline-block;
    float: right;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-left: 14px;
    margin-right: -4px;
    margin-top: -3px;
}
.notification a.notification-close:hover
{
    opacity: 0.6;
}
.notification .notification-header .notification-header-icon
{
    margin-right: 10px;
}
.notification .notification-content
{
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    clear: left;
    font-size: 14px;    
    line-height: 18px;
    padding: 22px;
    vertical-align: middle;
    -webkit-transition: -webkit-box-shadow .2s ease-out;
    -moz-transition: -moz-box-shadow .2s ease-out;
    -o-transition: box-shadow .2s ease-out;
    -ms-transition:box-shadow .2s ease-out;
    transition: box-shadow .2s ease-out;   
    -moz-box-shadow: inset 0px 0px 0px #333;
    -webkit-box-shadow: inset 0px 0px 0px #333;
    box-shadow: inset 0px 0px 0px #333;
}
.notification .notification-content-table {
    background-color: transparent !important;
    background: transparent !important;
}
.notification .notification-content-table td {
    vertical-align: middle;
}
.notification .notification-content-td-icon  {
   /* font-size: 38px;*/
    vertical-align: middle;
}

.notification .notification-content-td-icon .notification-content-icon  {
    margin-right: 18px;
    margin-top: -2px;
}
.notification .notification-content ul {

}
.notification .notification-content p{
    margin-top: 6px;
    margin-bottom: 6px;
}
.notification .notification-content .notification-buttons
{
    clear: both;
    text-align: center;
    margin-top: 14px;
    margin-bottom: -3px;
}
.notification .notification-content a.notification-button
{
      text-decoration: none !important;
      outline: none;
}
@media only screen and (max-width: 767px){
    .notification {
        width: 100% !important;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }
}
/* /Notifications */