body{
	background-color: #FFFFFF;
	margin: 0;
}

.clear:after,
.clear:before{
    display:table;
    content:" ";
}
.clear:after{
    clear: both;
}

.btn a {
    background-color: #eaeaea;
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
    color: #2980b9;
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 15px 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.btn a:hover{
    color: #FFFFFF;
}

.col-3{float: left;width: 25%;}
.col-4{float: left;width: 33.33%;}
.col-6{float: left;width: 50%;}
.col-8{float: left;width: 66.66%;}
.col-9{float: left;width: 75%;}

/* Rectangle Out */

.rectangle-out {
    position: relative;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: color 400ms;
    transition: color 400ms;
}

.rectangle-out:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098d1;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition: 400ms ease-out;
    transition: 400ms ease-out;
}

.rectangle-out:hover:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

@media(max-width: 767px) {
    .xsw_100{float:left;width:100% !important;}
    .xsw_no_mrgn{margin:0 !important;}
    .xsw_mrgn_top_15{margin-top:15px !important;}
    .xsw_mrgn_btm_15{margin-bottom:15px !important;}
    iframe {max-width: 100% !important;}
}