html{
    color:#000;
    background:#FFF;
}
/*
    TODO remove settings on BODY since we can't namespace it.
*/
/*
    TODO test putting a class on HEAD.
        - Fails on FF. 
*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
    margin:0;
    padding:0;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
fieldset,
img {
    border:0;
}
/*
    TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
*/
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style:normal;
    font-weight:normal;
}
 
ol,
ul {
    list-style:none;
}
 
caption,
th {
    text-align:left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size:100%;
    font-weight:normal;
}
q:before,
q:after {
    content:'';
}
abbr,
acronym {
    border:0;
    font-variant:normal;
}
/* to preserve line-height and selector appearance */
sup {
    vertical-align:text-top;
}
sub {
    vertical-align:text-bottom;
}
input,
textarea,
select {
    font-family:inherit;
    font-size:inherit;
    font-weight:inherit;
}
/*to enable resizing for IE*/
input,
textarea,
select {
    *font-size:100%;
}
/*because legend doesn't inherit in IE */
legend {
    color:#000;
}
/* YUI CSS Detection Stamp */
#yui3-css-stamp.cssreset { display: none; }

/* CSS */

body{
    font-family: 'Open Sans';
    font-weight: 400;
    color: #333;
}

.block{
    padding: 50px 0;
}
.block>div{
    height: 100%;
    position: relative;
    width: 960px;
    margin: 0 auto;
}

.button{
    border: 1px solid #4c80ca;
    background: #6293d9;
    background: -webkit-linear-gradient(top, #6293d9 0%, #4c80ca 100%);
    background: linear-gradient(to bottom, #6293d9 0%, #4c80ca 100%);
    display: inline-block;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 7px 19px;
    border-radius: 2px;
    cursor: pointer;
}
.button:active{
    background: #4c80ca;
}
.button:active>span{
    position: relative;
    top: 1px;
}

.megaHeader{
    font-size: 60px;
    font-weight: 600;
}

.header{
    font-size: 30px;
}

a{
    color: #145da4;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.clearfix:after{
    content: '';
    display: table;
    clear: both;
}

/* head block */

.head{
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}
.fixed .head{
    position: fixed;
    background: #e2e8f0;
}
.head>div{
    height: 75px;
}

.head .logo{
    background: url(/images/landing/logo.png) no-repeat;
    width: 150px;
    height: 42px;
    font-size: 0;
    text-indent: -999px;
    overflow: hidden;
    display: block;
    float: left;
    margin-top: 17px;
}
.head p{
    display: none;
    float: right;
    font-size: 15px;
    line-height: 35px;
    margin: 20px 40px 0 0;
}
.head .button{
    display: none;
    float: right;
    margin-top: 20px;
}
.fixed .head p, .fixed .head .button{
    display: block;
}

/* first block */

.areYouLawyer{
    padding: 0;
    background: url(/images/landing/ryl.jpg) #f1f5f9 no-repeat top center;
    height: 630px;
}

.areYouLawyer .megaHeader{
    padding-top: 150px;
}

.areYouLawyer .header{
    margin-bottom: 40px;
}

.areYouLawyer p:not(.header):not(.megaHeader){
    margin-bottom: 20px;
    width: 300px;
    font-size: 15px;
}

/* second */

.onlinePros .header{
    text-align: center;
    margin-bottom: 60px;
}
.onlinePros li{
    width: 33.33%;
    float: left;
    text-align: center;
    font-size: 15px;
}
.onlinePros li:before{
    content: '';
    width: 128px;
    height: 128px;
    background: url(/images/landing/coinIcons.png) no-repeat;
    display: block;
    margin: 0 auto 20px auto;
}
.onlinePros li.clients:before{
    background-position: -128px 0;
}
.onlinePros li.tasks:before{
    background-position: -256px 0;
}

/* third */

.innovative{
    padding: 0;
    height: 630px;
    background: url(/images/landing/tablet.jpg) top right #d4cec0 no-repeat;
}

.innovative .header{
    padding-top: 80px;
}

.innovative .megaHeader{
    color: #41688e;
    margin-bottom: 100px;
    font-size: 55px;
    font-weight: 700;
}

.innovative li:not(:last-child){
    margin-bottom: 40px;
}

.innovative .note{
    position: absolute;
    left: 0;
    bottom: 50px;
    color: #8d887f;
}

/* fourth */

.howItWorks .header{
    text-align: center;
    margin-bottom: 50px;
}

.howItWorks ol{
    width: 920px;
    margin: 0 auto;
}
.howItWorks li{
    float: left;
    width: 260px;
    position: relative;
    text-align: center;
    font-size: 15px;
}
.howItWorks li:not(:last-child){
    margin-right: 70px;
}
.howItWorks li:not(:last-child):after{
    content: '';
    position: absolute;
    margin: -6px 0 0 0;
    top: 50%;
    right: -38px;
    width: 12px;
    height: 12px;
    border-right: 4px solid #4e7295;
    border-bottom: 4px solid #4e7295;
    transform: rotateZ(-45deg);
    -webkit-transform: rotateZ(-45deg);
    -ms-transform: rotate(-45deg);
}

/* fifth */

.learnMore{
    background: #3b556e;
    color: #fff;
}

.learnMore .bigForm{
    position: relative;
    padding: 30px;
    margin-top: 50px;
    background: #2f4458;
}

.learnMore .workingHours{
    padding: 30px 0;
}
.learnMore .workingHours li{
    cursor: pointer;
    float: left;
    border-radius: 5px;
    background: #fefefe;
    background: -webkit-linear-gradient(top, #fefefe 0%,#c7c7c7 100%);
    background: linear-gradient(to bottom, #fefefe 0%,#c7c7c7 100%);
    padding: 0 20px;
    font-weight: 700;
    line-height: 50px;
    font-size: 15px;
    color: #464646;
}
.learnMore .workingHours li:not(:last-child){
    margin-right: 15px;
}
.learnMore .workingHours li.active{
    background: #b3b7bb;
    background: -webkit-linear-gradient(top, #b3b7bb 0%,#e0e0e0 100%);
    background: linear-gradient(to bottom, #b3b7bb 0%,#e0e0e0 100%);
    box-shadow: inset 0 0 7px 0 rgba(0,0,0,.46);
}

.learnMore .category{
    cursor: pointer;
    position: relative;
    margin-top: 30px;
    background: #fff;
    border-radius: 5px;
    width: 390px;
    height: 50px;
    color: #464646;
}
.learnMore .category:after{
    content: '';
    position: absolute;
    right: 20px;
    top: 19px;
    border-right: 2px solid #464646;
    border-bottom: 2px solid #464646;
    width: 8px;
    height: 8px;
    transform: rotateZ(45deg);
    -webkit-transform: rotateZ(45deg);
    -ms-transform: rotate(45deg);
}
.learnMore .category.active{
    border-radius: 5px 5px 0 0;
    border-bottom: 1px solid #ccc;
    height: 49px;
}
.learnMore .category>span{
    line-height: 50px;
    padding: 0 0 0 20px;
}
.learnMore .category .list{
    padding: 10px 0;
    display: none;
    border-radius: 0 0 5px 5px;
    background: #fff;
    position: absolute;
    width: 100%;
    z-index: 1;
    top: 50px;
    left: 0;
    height: 266px;
    overflow: hidden;
}
.learnMore .category ul{
    overflow-y: scroll;
    height: 100%;
}
.learnMore .category.active .list{
    display: block;
}
.learnMore .category li{
    height: 32px;
    line-height: 32px;
    padding: 0 0 0 20px;
}
.learnMore .category li:hover{
    background: #eee;
}

.learnMore .cheque{
    color: #464646;
    position: absolute;
    top: 0;
    right: 0;
    padding-left: 40px;
    width: 230px;
    height: 100%;
    background: #f6d75d;
}
.learnMore .cheque .header{
    margin: 30px 0 20px 0;
}
.learnMore .cheque p:last-child{
    font-size: 15px;
}
.learnMore .cheque .from{
    display: none;
    color: #bd614c;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: -10px;
}
.learnMore .cheque .from.active{
    display: block;
}
.learnMore .cheque .number{
    color: #bd614c;
    font-weight: 700;
    font-size: 60px;
    display: block;
}
.learnMore .cheque .number+span{
    color: #bd614c;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
    display: block;
    margin-top: -10px;
}

.learnMore .note{
    display: block;
    padding-top: 25px;
    opacity: .4;
}

/* sixth */

.lastQuestions{
    background: #e0e0e0;
}
.lastQuestions .header{
    text-align: center;
    margin-bottom: 40px;
}

.lastQuestions ul{
    background: #fff;
    margin-bottom: 20px;
}
.lastQuestions li{
    position: relative;
    padding: 20px 150px 20px 25px;
}
.lastQuestions li:not(:last-child){
    border-bottom: 1px solid #e0e0e0;
}

.lastQuestions a{
    display: block;
}
.lastQuestions .time{
    color: #888;
    font-size: 13px;
}
.lastQuestions .button{
    display: none;
    position: absolute;
    right: 25px;
    top: 50%;
    margin-top: -18px;
}
.lastQuestions .price{
    position: absolute;
    right: 25px;
    top: 50%;
    height: 22px;
    margin-top: -11px;
}

.lastQuestions li:hover .price{
    display: none;
}
.lastQuestions li:hover .button{
    display: block;
}

/* footer */

.footer{
    background: #888d90;
    color: #dadada;
    padding: 35px 0;
    font-size: 15px;
}

#prvdOnePixelImage {
    float: left;
}