
/* Pricing tables */
.pricing {
    margin-top: 20px;
    text-align: center;
}

.pricing h3 {
    margin: 0 40px 40px 50px;
    padding: 0 0 10px 0;
    border-bottom: 1px dotted #aaa;
    font-size: 36px;
    font-weight: 400;
    color: #2d2d2d;
    text-align: left;
}

.tables-container {
    display: inline-block;
    margin-left: 10px;
    overflow: hidden;
    padding-bottom: 5px;
}

.pricing-table {
    float: left;
    width: 305px;
    margin: 50px 14px 0 14px;
    background: #f8f8f8;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,.15);
    -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,.15);
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.15);
    text-align: center;
    color: #fff;
}

.pricing-table strong { font-weight: 700; }

.pricing-table-header {
    padding: 20px 0 15px 0;
    background: #555;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.pricing-table-header h4 { font-size: 28px; font-weight: 400; text-shadow: 1px 1px 1px rgba(0,0,0,.3); }
.pricing-table-header h5 { margin-top: 20px; font-size: 20px; font-weight: 400; text-shadow: 1px 1px 1px rgba(0,0,0,.3); }

.pricing-table-space { height: 5px; }

.pricing-table-text {
    margin: 10px 30px 0 30px;
    padding: 0 10px 10px 10px;
    border-bottom: 1px dotted #ddd;
    text-align: left;
    line-height: 30px;
    font-size: 16px;
    color: #555;
}

.pricing-table-features {
    margin: 15px 30px 0 30px;
    padding: 0 10px 10px 10px;
    border-bottom: 1px dotted #ddd;
    text-align: left;
    line-height: 30px;
    font-size: 16px;
    color: #555;
}

.pricing-table-sign-up {
    margin-top: 25px;
    padding-bottom: 20px;
}

.pricing-table-sign-up a {
    display: inline-block;
    width: 180px;
    height: 40px;
    background: #555;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    line-height: 40px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px rgba(0,0,0,.3);
    -o-transition: all .2s;
    -moz-transition: all .2s;
    -webkit-transition: all .2s;
    -ms-transition: all .2s;
}

.pricing-table-sign-up a:hover {
    text-decoration: none;
    -moz-box-shadow: 0 -5px 10px 0 rgba(0,0,0,.2) inset;
    -webkit-box-shadow: 0 -5px 10px 0 rgba(0,0,0,.2) inset;
    box-shadow: 0 -5px 10px 0 rgba(0,0,0,.2) inset;
}

.pricing-table-sign-up a:active {
    -moz-box-shadow: 0 3px 8px 0 rgba(0,0,0,.2) inset;
    -webkit-box-shadow: 0 3px 8px 0 rgba(0,0,0,.2) inset;
    box-shadow: 0 3px 8px 0 rgba(0,0,0,.2) inset;
}

/* Highlighted table */
.pricing-table-highlighted {
    margin-top: 0;
}

.pricing-table-highlighted .pricing-table-header {
    background: #518d8a;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#73a3a1), to(#518d8a));
    background-image: -webkit-linear-gradient(top, #73a3a1, #518d8a);
    background-image: -moz-linear-gradient(top, #73a3a1, #518d8a);
    background-image: -o-linear-gradient(top, #73a3a1, #518d8a);
    background-image: -ms-linear-gradient(top, #73a3a1, #518d8a);
    background-image: linear-gradient(to bottom, #73a3a1, #518d8a);
}

.pricing-table-highlighted .pricing-table-sign-up a {
    background: #518d8a;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#73a3a1), to(#518d8a));
    background-image: -webkit-linear-gradient(top, #73a3a1, #518d8a);
    background-image: -moz-linear-gradient(top, #73a3a1, #518d8a);
    background-image: -o-linear-gradient(top, #73a3a1, #518d8a);
    background-image: -ms-linear-gradient(top, #73a3a1, #518d8a);
    background-image: linear-gradient(to bottom, #73a3a1, #518d8a);
}

