/* common style starts here */

/*widget css starts here  */
/* Buttons {{{ */
/* Buttons - Dark {{{ */
.btn_dark,input.btn_dark {
    background: #1a1a1a;
    background: -moz-linear-gradient(left,  #1a1a1a 0%, #4d4d4d 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#1a1a1a), color-stop(100%,#4d4d4d));
    background: -webkit-linear-gradient(left,  #1a1a1a 0%,#4d4d4d 100%);
    background: -o-linear-gradient(left,  #1a1a1a 0%,#4d4d4d 100%);
    background: -ms-linear-gradient(left,  #1a1a1a 0%,#4d4d4d 100%);
    background: linear-gradient(to right,  #1a1a1a 0%,#4d4d4d 100%);
    color:#FFF;
    text-decoration:none;
    border:0;
}
.btn_dark:hover,input.btn_dark:hover {
    background:#4d4d4d;
}
.btn_dark:active,input.btn_dark:active {
    background: #1a1a1a;
}
.btn_dark:focus,input.btn_dark:focus {
    outline:none;
}
/*}}}*/
/* Buttons - Icon {{{ */
.btn_icon {
    padding-left:3em;
}
.btn_icon span {
    display: block;
    min-width: 1.2em;
    min-height: 1.2em;
    max-height: 1.2em;
    margin-right: .4em;
    position: absolute;
    top: 0.3em;
    left: 1em;
    *top:0;
}
/*}}}*/
/* Buttons - Video {{{ */
.btn_video,.btn_video_no_text {
    background:transparent;
    display:inline-block;
    width:3em;
    height:3em;
    border:.07em solid #FFF;
    border-radius:1.8em;
    box-shadow:0px 1px 2px rgba(0,0,0,0.1),inset 0px 1px 2px rgba(0,0,0,0.1);
    overflow:hidden;
    font-weight:700;
    font-size:1em;
    line-height:3em;
    color:#FFF;
    -webkit-transition:all .1s;
    -moz-transition:all .1s;
    -o-transition:all .1s;
    transition:all .1s;
    position:relative;
    cursor:pointer;
}
.btn_video:before,.btn_video_no_text:before {
    content:"";
    width:0;
    height:0;
    border-top:.6em solid rgba(0,0,0,0);
    border-bottom:.6em solid rgba(0,0,0,0);
    border-left:.8em solid #FFF;
    white-space:nowrap;
    -webkit-transition:none;
    -moz-transition:none;
    -o-transition:none;
    transition:none;
    position:absolute;
    top:.8em;
    left:1.2em;
}
.btn_video_no_text:hover {
    background:#00A79D;
}
.ie8 .btn_video,
.ie8 .btn_video_no_text,
.btn_video:hover:before {
    display:none;
}
.ie7 .btn_video,
.ie8 .btn_video,
.btn_video:hover {
    background:#00A79D;
    width:auto;
    padding:0em 2em;
    text-decoration:none;
    text-indent:0 !important;
    line-height:3em;
}
/*}}}*/
/* Buttons - Inspect {{{ */
.btn_inspect:after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 8px;
    right: 7px;
}
.lt_ie9 .btn_inspect:after {
    top: 5px;
    right: 0;
}
.btn_inspect:after:hover {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}
/*}}}*/
/* Buttons - Disabled/Inactive {{{ */
.disabled,.disabled:hover,.btn.disabled,.btn.disabled:hover,a.btn.disabled,a.btn.disabled:hover,input.disabled,input.disabled:hover,button.disabled,button.disabled:hover {
    background:#CCC;
    border:#CCC 1px solid;
    color:#999;
    box-shadow:none;
    text-decoration:none;
    text-shadow:none !important;
    cursor:default;
}

/*}}}*/
/* Tabs *//*{{{*/
.tab_section.tab_section_bg,.sidetab_section.tab_section_bg {
    background:#FFF;
    background:-webkit-gradient(linear,left top,left bottom,color-stop(80%,#FFF),color-stop(100%,#EFEFEF));
    background:-webkit-linear-gradient(top,#FFF 80%,#EFEFEF 100%);
    background:-moz-linear-gradient(top,#FFF 80%,#EFEFEF 100%);
    background:-ms-linear-gradient(top,#FFF 80%,#EFEFEF 100%);
    background:-o-linear-gradient(top,#FFF 80%,#EFEFEF 100%);
    background:linear-gradient(to bottom,#FFF 80%,#EFEFEF 100%);
    border-radius:.375em;
    position:relative;
}
.sidetab_content {
    display:inline-block;
    width:79%;
    vertical-align:top;
}
.tab_content {
    background: #fff;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    margin-top: -2em;
    padding: 2em 2.5em;
    overflow:hidden;
}
.tab_content > *,.sidetab_content > * {
    display:none;
}
.tab_content .shown,.sidetab_content .shown {
    display:block;
}
.tabs {
    display:block;
    margin:0;
    margin:0;
    padding:0;
    padding:0;
    list-style-type:none;
    text-align:center;
    text-transform:lowercase;
    font-size:1.2em;
    color:#777;
    position:relative;
    top:-0.75em;
}
.tabs:after {
    content:"";
    display:table;
    clear:both;
    visibility:hidden;
}
.sidetabs {
    display:inline-block;
    width:20%;
    margin:0;
    padding:0;
    position:relative;
}
.tabs li,.sidetabs li {
    display:inline-block;
    margin:0;
}
.sidetabs li {
    display:block;
    float:none;
}
.tabs a,.sidetabs a {
    background:#FFF;
    border:1px solid #00A79D;
    border-right:0;
    border-radius:0;
    text-decoration:none;
    color:#00A79D;
}
.sidetabs a {
    height:auto;
}
.tabs li:first-child a {
    border-radius:.375em 0 0 .375em;
}
.tabs a.last {
    border-right:1px solid #00A79D;
    border-radius:0 .375em .375em 0;
}
.tabs li a.active, .tabs li a:hover, .sidetabs li a:hover {
    background:#00A79D;
    background:-webkit-gradient(linear,left bottom,left top,color-stop(0%,#06897C),color-stop(100%,#00A79D));
    background:-webkit-linear-gradient(bottom,#06897C 0%,#00A79D 100%);
    background:-moz-linear-gradient(bottom,#06897C 0%,#00A79D 100%);
    background:-ms-linear-gradient(bottom,#06897C 0%,#00A79D 100%);
    background:-o-linear-gradient(bottom,#06897C 0%,#00A79D 100%);
    background:linear-gradient(to top,#06897C 0%,#00A79D 100%);
    color:#fff;
}
.tabs li a:active {
    background:#2356A6;
    color:#FFF;
    text-decoration:none;
    cursor:default;
}
.tab_content .pane,.sidetab_content .pane {
    display:none;
}
.sidetab_content .pane.active,.tab_content .pane.active {
    display:block;
}
.tabs a.active {
    margin-bottom:0px;
}
.tabs a.active,.sidetabs a.active {
    cursor:default;
}
/*}}}*/
/*}}}*/
/* Invoice (email, cart success, account [products purchased],etc) {{{ */
.invoice li {
    padding:1em;
}
.invoice .row_header .price {
    font-size:1em;
}
.invoice .product {
    width:47em;
    float:left;
    display:inline;
}
.invoice .price {
    display:inline;
    float:right;
    width:6em;
    font-size:1.5em;
    text-align:right;
}
.invoice .product h4 {
    margin:0 0 .5em 0;
}
.invoice .product p {
    margin:.5em;
}
.invoice .product_price {
    font-style:italic;
}
/*}}}*/
/* Video Bar {{{ */
.video_bar_section {
    position:relative;
}
.video_bar {
    background:#000;
    height:31.4em;
    text-align:center;
    color:#FFF;
}
.ie8 .video_bar {
    min-height: 235px;
    max-height: 435px;
}
.video_bar iframe {
    display:block;
    margin:0 auto;
}
.video_bar:after {
    content:'';
    background:-webkit-gradient(linear,left bottom,left top,color-stop(0%,rgba(0,0,0,.6)),color-stop(42%,rgba(0,0,0,.2)),color-stop(100%,rgba(0,0,0,0)));
    background:-webkit-linear-gradient(bottom,rgba(0,0,0,.6) 0%,rgba(0,0,0,.2) 42%,rgba(0,0,0,0));
    background:-moz-linear-gradient(bottom,rgba(0,0,0,.6) 0%,rgba(0,0,0,.2) 42%,rgba(0,0,0,0));
    background:-ms-linear-gradient(bottom,rgba(0,0,0,.6) 0%,rgba(0,0,0,.2) 42%,rgba(0,0,0,0));
    background:-o-linear-gradient(bottom,rgba(0,0,0,.6) 0%,rgba(0,0,0,.2) 42%,rgba(0,0,0,0));
    background:linear-gradient(to top,rgba(0,0,0,.6) 0%,rgba(0,0,0,.2) 42%,rgba(0,0,0,0));
    display:block;
    width:100%;
    height:.6em;
    position:absolute;
    bottom:0;
}
.video_bar a {
    margin:8em auto;
    font-size:1.5em;
}
.video_close {
    display:none;
    width:10em;
    margin:0em auto;
    position:relative;
    top:-.3em;
    background-color:#00A79D;
    opacity:0;
}
/*}}}*/
/* Double-pane {{{ */
.double_pane {
    background:#999;
    height:20em;
    text-align:right;
    color:#FFF;
    position:relative;
}
.double_pane iframe {
    display:block;
    margin:0 auto;
}
.double_pane h2 {
    margin:1em 0 0 0;
    text-align:right;
    text-transform:lowercase;
    font-size:3em;
    line-height:1;
}
.double_pane.dark_text h2, .double_pane.dark_text p {
    color:#333333;
}
.double_pane.blue_text h2, .double_pane.blue_text p {
    color:#00A79D;
}
.double_pane:before {
    content:'';
    display:none;
    width:100%;
    height:19.9em;
    margin:-33px 0 0;
    position:absolute;
}
.double_pane_phone {
    display: block;
    font-size: 1.8em;
    margin: .8em 0;
}
.double_pane .content_half {
    float:left;
    height:100%;
    padding-right:33em;
    padding-left:0;
}
.double_pane .video_half {
    width:50%;
    height:100%;
    text-align:left;
    position:absolute;
    top:0px;
    left:50%;
}
.double_pane .action_buttons {
    position:absolute;
    bottom:1em;
    left:3em;
}
.double_pane.content_right .action_buttons {
    left:auto;
}
.double_pane .learn_more {
    margin:.8em 0;
}
.double_pane.content_right .content_half {
    padding:0 0 0 33em;
}
.double_pane.content_right p,.double_pane.content_right h2 {
    text-align:left;
}
.double_pane.content_right .video_half {
    text-align:right;
    left:0;
}
.double_pane.content_right .learn_more {
    margin-right:12em;
}
.double_pane.content_right .video_half iframe {
    float:right;
}
.double_pane p {
    clear:right;
    float:right;
    width:100%;
    padding-top:.75em;
}
/* double-pane situation-specific--colors & images */
.double_pane {
    background:#000 url(/media/shared/info/style/blocks/double_pane/background_one.jpg) no-repeat 0 -120px;
    background-size:auto;
}
.double_pane h2 {
    color:#FFF;
}
.double_pane .expand_video {
    color:#FFF;
}
.double_pane.content_right ul {
    margin:0;
    padding-left:1em;
    text-align: left;
}
.double_pane.content_right .action_buttons {
    margin:1em 0;
    text-align:left;
}
.double_pane.content_right iframe {
    margin:0;
}
.double_pane_icon {
    width:50px;
    height:50px;
    margin-right:1em;
}
.double_pane_hover:after {
    content:"";
    position:absolute;
    top:0;
    left:0;
    z-index: 5000;
    right:50.05%;
    background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjM1Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjQwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMCIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background:-moz-linear-gradient(top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 100%);
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.5)), color-stop(40%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0)));
    background:-webkit-linear-gradient(top, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 40%,rgba(0,0,0,0) 100%);
    background:-o-linear-gradient(top, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 40%,rgba(0,0,0,0) 100%);
    background:-ms-linear-gradient(top, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 40%,rgba(0,0,0,0) 100%);
    background:linear-gradient(to bottom, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0) 40%,rgba(0,0,0,0) 100%);
    filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#590000', endColorstr='#00000000',GradientType=0 );
    height:130px;
}
/*}}}*/
/* Products {{{ */
/* Lists Columns {{{ */
.lcol {
    margin-top:1.5em;
    padding:0;
    list-style-type:none;
}
.lcol:before,.lcol:after {
    content:"";
    display:table;
    visibility:hidden;
}
.lcol:after {
    clear:both;
}
.lcol >li {
    float:left;
}
.lcol.col1 >li {
    width:100%;
}
.lcol.col2 >li {
    width:48%;
    margin-right:4%;
}
.lcol.col3 >li {
    width:32%;
    margin-right:2%;
}
.lcol.col4 >li {
    width:24.25%;
    margin-right:1%;
}
.ie8 .lcol.col4 >li {
    width:23%;
}
.lcol.col5 >li {
    width:19.2%;
    margin-right:1%;
}
.lcol.col6 >li {
    width:16%;
    margin-right:.8%;
}
.lcol.col2 >li:nth-child(2n),
.lcol.col3 >li:nth-child(3n),
.lcol.col4 >li:nth-child(4n),
.lcol.col5 >li:nth-child(5n),
.lcol.col6 >li:nth-child(6n) {
    margin-right:0;
}/*}}}*/


#cloud-pane {
    background-color: #00A79D;
    min-height: 320px;
}
#cloud-pane h1,
#cloud-pane h2,
#cloud-pane h3,
#cloud-pane a {
    color:#fff;
    text-transform:none;
}
#cloud-pane h2 {
    font-weight:normal;
    margin:50px 0 30px 0;
}
#cloud-pane .introduction,
#cloud-pane-inverse .introduction {
    font-size:1.5em;
    margin:0;
    padding:0;
}

#cloud-pane .introduction {
    color:#fff;
}
#cloud-pane-inverse .introduction {
    color:#00A79D;
}


#cloud-pane .more-cloud {
    margin:40px 0 50px 0;
}
.cloud-pane-container {
    margin:0 auto;
    max-width:1086px;
    padding-right:426px;
    min-height:320px;
}

#cloud-pane .cloud-pane-container {
    background:url(/media/shared/general/illustrations/cloud_illustration.png) no-repeat;
    background-position:bottom right;
}

#cloud-pane-inverse .cloud-pane-container {
    background:url(/media/shared/general/illustrations/cloud_illustration_inverse.png) no-repeat;
    background-position:bottom right;
}

#cloud-pane-text {
    text-align:left;
    max-width:660px;
    padding:0 20px;
    float:right;
}

#cloud-pane-inverse {
    background-color: #edf4f9;
    min-height: 320px;
    border-style: solid;
    border-color: #00A79D;
    border-width: 1px 0;
}

#cloud-pane-inverse h1,
#cloud-pane-inverse h2,
#cloud-pane-inverse h3,
#cloud-pane-inverse a {
    color:#00A79D;
    text-transform:none;
}

#cloud-pane-inverse .btn_hairline:hover {
    color:#fff;
}
/* Products - Sticker {{{ */
.sticker {
    float:left;
    width:28em;
    height:8em;
    margin:0 1em;
    padding:0 0 0 2.5em;
}
.sticker {
    background:#FFF;
    width:9em;
    border:1px solid #00A79D;
    border-radius:.375em;
    text-align:center;
    font-size:1em;
}
.sticker p {
    margin:1em 0;
}
.sticker .notice {
    display:block;
    font-weight:200;
    font-size:1.25em;
    font-family:bluehost;
    color:#00A79D;
}
.sticker p {
    width:auto;
    margin:1em 0 0;
}
.sticker .price {
    float:right;
    width:9em;
    height:8em;
    margin:0 0 0 2.5em;
    border-left:1px solid #00A79D;
}
.sticker .price p {
    width:auto;
    margin:1em 0;
    font-size:2em;
    color:#00A79D;
}
.sticker .price small {
    display:block;
    font-size:.4em;
    color:#B2B2B2;
}
.btn_sticker {
    background:#fff;
    border-radius:.375em;
    border:1px solid #00A79D;
    color:inherit;
    display:block;
    height:7.2em;
    padding:.5em 0;
    position:relative;
    text-align:center;
    text-transform:lowercase;
}
.btn_sticker .notice {
    display:block;
    font-size:2.6em;
}
.btn_sticker .price_lower {
    margin-top:.5em;
}
.btn_sticker .hover {
    font-size:1.8em;
    height:1.2em;
    left:0;
    margin-top:-.7em;
    position:absolute;
    right:0;
    top:50%;
}
.btn_sticker:hover .shown,
.btn_sticker .hover,
a:hover .btn_sticker .shown {
    display:none;
}
.btn_sticker:hover .hover,
.btn_sticker .shown,
a:hover .btn_sticker .hover {
    display:block;
}
/*}}}*/
/* Products - Basic with Price {{{ */
.product_basic {
    background:#FFF;
    display: inline-block;
    width:28em;
    max-width:30em;
    margin:0 0 0 2.5%;
    margin:1em 1em 0;
    padding:0;
    border:1px solid #00A79D;
    border-radius:.375em;
    text-align:center;
    color:inherit;
    position:relative;
}
.product_basic .product_basic_name {
    margin:.8em 35% 0 0;
    padding:0 1em;
    text-transform:lowercase;
    font-size:1.625em;
}
.product_basic .product_basic_desc {
    margin:.6em 35% 1.5em 0;
    padding:0 1.7em;
}
.product_basic .btn_sticker {
    height:auto;
    width:35%;
    padding-top:2em;
    border:0;
    border-left:1px solid #00A79D;
    border-bottom-left-radius:0;
    border-top-left-radius:0;
    font-size:.9em;
    position:absolute;
    top:0;
    right:0;
    bottom:0;
}
.product_basic:hover {
    /* TODO - insert hover state */
    text-decoration:none;
}
/* product-upsell */
.product-upsell {
    min-height: 70px;
    display: block;
    position: relative;
}
.product-upsell,
.product-upsell h2,
.product-upsell h3,
.product-upsell h4,
.product-upsell p,
.product-upsell:hover,
.product-upsell h2:hover,
.product-upsell h3:hover,
.product-upsell h4:hover,
.product-upsell p:hover {
    text-decoration:none;
}
.product-upsell.full-wide .svg_icon {
    width: 40px;
    height: 40px;
    position: absolute;
}

/* product-upsell.full-wide */
.product-upsell.full-wide {
    padding: 1em;
    text-align: center;
}
.product-upsell.text-light h2,
.product-upsell.text-light h3 {
    color:#fff;
}
.product-upsell.full-wide h3 {
    font-size: 2.5em;
    margin: .2em 0;
}
.full-wide .product-hooks {
    display: inline-block;
    width: 24em;
    float: left;
    padding-right: 3.5em;
    text-align: right;
    border-right: 1px solid #444;
}
.full-wide .product-hooks p {
    font-size: 1.25em;
    font-weight: 600;
    margin: 0 0 1em;
}
.full-wide .product-logo {
    float: left;
    display: inline;
    text-align: left;
    width: 33em;
    padding: 1em .5em 1em 1.5em;
    margin-bottom: 0.5em;
}
.full-wide .product-logo img {
    float: left;
    display: inline;
    margin: 0 1em;
}
.product-upsell.full-wide .svg_icon {
    top: 3em;
}
.product-upsell.optimized-hosting .svg_icon g * {
    fill: #9d9d9d;
}
.full-wide .product-logo.is-optimized img {
    max-width:100px;
}
.full-wide .product-logo.is-optimized h2 {
    float: left;
    display: inline-block;
    max-width: 11em;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 2em;
    width: 10em;
    margin: .5em 0 .1em;
}
.full-wide .product-logo.is-optimized h4 {
    display: inline;
    float: left;
    font-weight: 600;
    font-size: 2em;
    margin: 0;
    text-transform: uppercase;
}
.full-wide.optimized-hosting.product-upsell {
    background: #000000;
    background: -moz-linear-gradient(left, #000000 0%, #434343 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#000000), color-stop(100%,#434343));
    background: -webkit-linear-gradient(left, #000000 0%,#434343 100%);
    background: -ms-linear-gradient(left, #000000 0%,#434343 100%);
    background: linear-gradient(to right, #000000 0%,#434343 100%);
}
/*}}}*/
/*}}}*/
/* Headline (products,programs,careers) {{{ */
.headline {
    text-align:center;
}
.headline .heading,.headline .subheading {
    margin:0 0 .3em;
    text-transform:lowercase;
    font-size:3em;
}
.no-text-transform-override .subheading,
.no-text-transform-override .skinny-bar-small-text {
    text-transform:none;
}
.headline .heading.smaller, .headline .subheading.smaller {
    font-size:2em;
}
.headline p {
    width:30em;
    margin:1em auto 3em;
}
.headline_and_paragraph p {
    margin:1em auto .5em;
}
/*}}}*/
/* Tiles (products,programs,careers) {{{ */
.tile_list {
    margin:0 auto;
    padding:1px 0;
    text-align:center;
}
.tile_container p {
    width:35em;
    margin:.5em auto 1em;
}
.tile_search {
    padding:2em 0;
}
.tile_search input[type="search"] {
    width:20em;
}
.tile {
    background:#fafafa;
    background:-moz-linear-gradient(top,  #ffffff 0%, #f5f5f5 100%);
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f5f5f5));
    background:-webkit-linear-gradient(top,  #ffffff 0%,#f5f5f5 100%);
    background:-o-linear-gradient(top,  #ffffff 0%,#f5f5f5 100%);
    background:-ms-linear-gradient(top,  #ffffff 0%,#f5f5f5 100%);
    background:linear-gradient(to bottom,  #ffffff 0%,#f5f5f5 100%);
    display:block;
    margin:0 0 .7em;
    border:1px solid #FFF;
    border-radius:.6em;
    float:left;
    line-height:1em;
    padding:0;
    position:relative;
    text-align:center;
    vertical-align:top;
}
.tile a {
    display:block;
    height:100%;
    margin:0;
    padding:1em;
    width:100%;
}
.tile .svg_icon {
    display:block;
    width:95px;
    height:95px;
    margin:0 auto;
    padding:0 0 .5em;
}
.tile.active {
    font-weight:bold;
}
.tile:hover {
    background:#f5f5f5;
}
.tile:active {
    background:#ebebeb;
}
.tile:hover a {
    text-decoration:none;
}
.tile .sticker_price {
    display:inline-block;
    width:6em;
    margin:0 0 0 -3em;
    padding:.2em 0;
    border-color:orange;
    color:orange;
    position:absolute;
    bottom:-0.5em;
    left:50%;
    z-index:1;
}
/*}}}*/
/* Footer {{{ */
/* Footer - Flying Footer {{{ */
.flying_footer {
    background-color:rgb(255,255,255);
    background-color:rgba(255,255,255,.85);
    border-top:1px solid #C3CCD7;
    display:block;
    width:100%;
    height:0px;
    padding:0;
    overflow:hidden;
    text-align:center;
    transition:height .2s linear;
    position:fixed;
    bottom:0;
    z-index:9999;
}
.flying_footer div {
    width:960px;
    margin:0 auto;
}
.visible_flying_footer {
    display:block;
    height:50px;
}
.flying_footer .icon {
    float:left;
    width:5em;
    padding:.9em .95em;
    border-right:1px solid #C3CCD7;
}
.flying_footer .svg_icon {
    width:22px;
    height:22px;
}
.flying_footer .icon.active {
    background-color:#06897C;
}
.flying_footer .icon.active .svg_icon path,
.flying_footer .icon.active .svg_icon polygon {
    fill:#FFF;
}
.flying_footer .icon:hover {
    background-color:#FFF;
}
.flying_footer .icon:hover .svg_icon path,
.flying_footer .icon:hover .svg_icon polygon {
    fill:#06897C;
}
.flying_footer .flying_right {
    float:right;
    margin:0;
    padding:0 1em 0 0;
    font-size:1.45em;
    line-height:2.18;
    color:#00A79D;
    text-transform:lowercase;
}
.flying_footer .btn_primary {
    float:right;
    display:inline;
    margin:.6em 1em 0 0;
}
.flying_footer_popup {
    background-color:#E4E4E4;
    display:none;
    width:23em;
    padding:1em 1.4em;
    transition:left .8s;
    position:absolute;
    top:900px;
    left:0px;
    left:-19em;
    z-index:10000;
}
.lt-ie9 .flying_footer_popup {
    width:26em;
    left:-360px;
}
.flying_footer_popup h2,.flying_footer_popup dl,.flying_footer_popup dt {
    margin:0;
    padding:0;
}
.flying_footer_popup dt,.flying_footer_popup dd {
    float:left;
    width:30%;
}
.flying_footer_popup dt {
    margin:.3em 1.4em 0 0;
    text-align:right;
    font-size:.9em;
}
.flying_footer_popup dd {
    font-size:1.4em;
    color:#00A79D;
    width:58%;
}
.flying_footer_popup img {
    margin:0 auto;
    position:relative;
    top:1.75em;
    left:.5em;
    z-index:10001;
}
.price_star_link {
    color:#00A79D;
}
.price_star_link:hover {
    text-decoration:none;
}
/*}}}*/
/* Footer - Country/Language Drop-down {{{ */
.footer_select {
    background:#4685C1;
    background-clip:padding-box;
    margin:0;
    padding:0;
    border:1px solid #5991C7;
    border-radius:.5em;
    position:relative;
    -webkit-background-clip:padding-box;
    -moz-background-clip:padding-box;
}
.footer_select dt,.footer_select dd {
    display:block;
    width:9.38em;
    padding:0 1.5em 0 1em;
    border-bottom:1px solid #5991C7;
    overflow:hidden;
    text-transform:lowercase;
    text-overflow:ellipsis;
    line-height:1.8em;
    color:#FFF;
}
.footer_select dd:first-child {
    border-radius:.5em .5em 0 0;
}
.footer_select dd:last-child {
    border-bottom:none;
    border-radius:0 0 .5em .5em;
}
.footer_select dd.active,.footer_select dt {
    /* add icon here */
}
.footer_select dd:hover {
    background:#3077BA;
}
.radio,.checkbox {
    display:inline-block;
    margin-right:.5em;
    padding:.5em 1em;
    border:1px solid transparent;
    border-radius:.325em;
    line-height:1em;
    cursor:pointer;
}
.radio label,.checkbox label {
    display:inline;
}
.radio:hover,.radio:focus,.radio.active,.checkbox:hover,.checkbox:focus,.checkbox.active {
    background:#EFEFEF;
}
.blueform .radio:hover,.blueform .radio:focus,.blueform .radio.active,.blueform .checkbox:hover,.blueform .checkbox:focus,.blueform input[type="file"],.blueform .checkbox.active {
    background:#00A79D;
    border:1px solid #FFF;
    color:#FFF;
}
.radio:active,.checkbox:active {
    background:#CCC;
}
.radio input[type="radio"],.checkbox input[type="checkbox"] {
    margin-right:.5em;
    line-height:1em;
}
/*}}}*/
/*}}}*/
/* assortment of stuff I need for various pages {{{ */
/* TODO - some or all of this probably needs to be moved */
/* Features (programs,careers) {{{ */
/* Features - Basic {{{ */
.feature.feature_basic .svg_icon {
    float:left;
    width:40px;
    height:40px;
}
.feature.feature_basic .feature_name {
    margin:.4em 0 1.5em 2.5em;
    text-transform:lowercase;
    font-size:1.2em;
    color:inherit;
}
/*}}}*/
/* Features - Vertical {{{ */
.feature.feature_vertical {
    text-align:center;
}
.feature.feature_vertical .svg_icon {
    margin:0 auto;
    width:64px;
    height:64px;
}
.feature.feature_vertical .feature_name {
    margin:.3em 0;
    text-transform:lowercase;
    font-size:1.2em;
}
.feature.feature_vertical .feature_desc {
    font-size:1.1em;
    margin:.5em 0;
}
.feature.feature_vertical .feature_action {
    margin-top:1em;
}
/*}}}*/
/* Features - Wide {{{ */
.feature.feature_wide .svg_icon {
    float:left;
    width:50px;
    height:50px;
}
.feature.feature_wide .feature_name {
    margin:0 0 0 78px;
    text-transform:lowercase;
    font-size:1.625em;
    line-height:1.8em;
    color:inherit;
}
.feature.feature_wide .feature_desc {
    margin:0 0 0 78px;
}
.feature:hover .feature_name {
    color: #00A79D;
}
.feature:hover .svg_icon .outlined {
    display: none;
}
.feature:hover .svg_icon .filled {
    display: block;
}
/*}}}*/
/*}}}*/
/* Banner (programs) {{{ */
.banner {
    background-color:#999;
}
.banner {
    background:#999;
    min-height:20em;
    height:auto !important;
    height:20em;
    text-align:right;
    color:#FFF;
}
.banner .cover_wrap {
    padding:4em 32em 4em 4em;
}
.banner p {
    margin:1em 0 2em;
}
.banner h2 {
    display:inline-block;
    width:5em;
    margin:0;
    text-align:right;
    font-size:3em;
    line-height:1;
}
.banner:before {
    content:'';
    display:none;
    width:100%;
    height:19.9em;
    margin:-33px 0 0;
    position:absolute;
    left:0;
}
.banner.reverse .cover_wrap {
    padding:4em 4em 4em 32em;
    text-align:left;
}
.banner.reverse:before {
    display:none;
}
.banner.reverse h2,.banner.reverse p {
    text-align:left;
}
.banner h2 {
    color:#FFF;
}
/*}}}*/
/* Blue Form (careers,contact) {{{ */
.blueform {
    background:#00A79D;
    max-width:52.5em;
    padding:1em 2em;
    border-radius:.325em;
    color:#FFF;
}
.blueform input[type="checkbox"],.blueform input[type="radio"],.blueform input[type="file"],.blueform a,.blueform label,.blueform h1,.blueform h2,.blueform h3,.blueform h4,.blueform h5,.blueform h6 {
    color:#FFF;
}
.blueform a.btn {
    color:#555;
}
.blueform .btn_hairline.active,.blueform .btn_hairline.inverse.active,.blueform .btn_hairline:hover,.blueform .btn_hairline.inverse:hover,.blueform a:hover .btn_hairline {
    border-color:#CCC;
}
/*}}}*/
/* Triform (careers,contact) {{{ */
.triform {
    display:inline-block;
    margin-bottom:.7em;
    overflow:visible;
    position:relative;
}
.triform.active:after {
    content:"";
    display:block;
    width:0px;
    margin:.5em 50% 1em;
    border-right:15px solid transparent;
    border-bottom:15px solid #3575BC;
    border-left:15px solid transparent;
    position:absolute;
    bottom:-2em;
    left:-15px;
}
/*}}}*/
/* Folded image widget {{{ */
.folded_image {
    padding-top:300px;
    position:relative;
    margin:1px 0 0;
    color:#fff;
    text-align:center;
}
.folded_image h2 {
    color:#fff;
    word-spacing:.5em;
    margin-top:0;
    font-size:3em;
}
.folded_image p {
    margin:0 auto;
    width:25em;
}
.folded_image:before {
    content:'';
    background:-webkit-gradient(linear,left bottom,left top,color-stop(0%,rgba(0,0,0,.6)),color-stop(42%,rgba(0,0,0,.2)),color-stop(100%,rgba(0,0,0,0)));
    background:-webkit-linear-gradient(bottom,rgba(0,0,0,.6) 0%,rgba(0,0,0,.2) 42%,rgba(0,0,0,0));
    background:-moz-linear-gradient(bottom,rgba(0,0,0,.6) 0%,rgba(0,0,0,.2) 42%,rgba(0,0,0,0));
    background:linear-gradient(to top,rgba(0,0,0,.6) 0%,rgba(0,0,0,.2) 42%,rgba(0,0,0,0));
    display:block;
    width:100%;
    height:10px;
    position:absolute;
    top:290px;
    z-index:1;
}
.lt_ie9 .folded_image {
    border-bottom:1px solid #ccc;
}
.folded_image .wrap {
    background-color:#00A79D;
    padding:4em;
}
.folded_image .wrap img {
    vertical-align:middle;
}
/*}}}*/
/* Feature List *//*{{{*/
.feature_list {
    background: #eaeaea;
    background: -webkit-linear-gradient(top, #eaeaea 50%, #ffffff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eaeaea), color-stop(100%, #ffffff));
    background: -moz-linear-gradient(top, #eaeaea 50%, #ffffff 100%);
    background: -ms-linear-gradient(top, #eaeaea 50%, #ffffff 100%);
    background: -o-linear-gradient(top, #eaeaea 50%, #ffffff 100%);
    background: linear-gradient(to bottom, #eaeaea 50%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeaea', endColorstr='#ffffff',GradientType=0 );
    margin-top:-2.5em;
    padding-top:2em;
}
.lte_ie9 .feature_list {
    margin-top:auto;
    padding-top:auto;
}
.feature_list .tab_section {
    width:960px;
    margin:0 auto;
}
.feature_list .feature_list_heading,.feature_list .feature_list_subheading {
    margin-bottom:.2em;
    text-align:center;
    text-transform:lowercase;
    font-size:3em;
}
.feature_list .feature_list_subheading {
    margin:.2em 0 2.4em;
    font-size:1.2em;
    color:inherit;
    text-transform:none;
}
.feature_list .pane ul {
    padding:0;
    clear:both;
}
.feature_list .pane li {
    float:left;
    width:30.3%;
    min-height:11em;
    margin:1.5%;
    list-style:none;
    line-height:1.4em;
}
.lt_ie9 .feature_list .pane li {
    height:16em;
}
.feature_list .pane li .btn_hairline {
    font-size:.9em;
    margin:.8em 0;
}
article.tool .feature_list .pane li {
    height:16em;
}
/*}}}*/
/* Feature List No Tabs *//*{{{*/
.feature_list.no_tabs {
    background-color:#fff;
    margin-top:0;
}
.post_features {
    text-align:center;
}
/*}}}*/
/* Feature List Single (no tabs) *//*{{{*/
.mojo_bar {
    clear:both;
    position:relative;
    height:33em;
    background:#E2E3DE url(/cgi-bin/replace_me.png/1800/750) no-repeat center -120px;
}
.mojo_bar .mojo_left {
    padding:0 3em;
    width:48%;
    float:left;
    text-align:center;
}
.mojo_bar h2 {
    margin:2.3em 0 0.4em;
}
.mojo_bar .links a {
    color:#333;
    font-size:1.2em;
    padding:0 .8em;
    border-right:1px solid #333;
    margin-bottom:.5em;
}
.mojo_bar .links p {
    display:none;
}
.mojo_bar .links a.active {
    color:#3575B6;
}
.mojo_bar .links a.last {
    border-right:none;
}
.mojo_bar p {
    clear:both;
    line-height:1.4em;
    margin-top:2em;
    height:7em;
}
.mojo_bar_image {
    float:right;
    margin:3em;
}
/*}}}*/
/* Contact bar - seen on VPS & Dedicated {{{ */
.ribbon-link,
.contact_bar {
    background-color:#00A79D;
    background:-webkit-gradient(linear,left bottom,right bottom,color-stop(0%,#06897C),color-stop(100%,#00A79D));
    background:-webkit-linear-gradient(left,#06897C 0%,#00A79D 100%);
    background:-moz-linear-gradient(left,#06897C 0%,#00A79D 100%);
    background:-ms-linear-gradient(left,#06897C 0%,#00A79D 100%);
    background:-o-linear-gradient(left,#06897C 0%,#00A79D 100%);
    background:linear-gradient(to right,#06897C 0%,#00A79D 100%);
    padding:1em;
    color:#fff;
    text-align:center;
    position:relative;
}
.ribbon-link {
    display:block;
    min-height:4.5em;
}
.lt_ie9 {
    min-height: 2.5em;
}
.ribbon-link:hover {
    text-decoration:none;
}
.ribbon-link h2,
.ribbon-link p {
    display:inline;
    color:#fff;
}
.ribbon-link.shadow_top,
.contact_bar.shadow_top {
    padding:2.1em 0 1.2em;
    z-index:-4;
    top:-2.2em;
    margin-bottom:-2.1em;
}
.ribbon-link .left_text,
.contact_bar .left_text {
    font-size:2.2em;
}
.ribbon-link .smallest_text,
.contact_bar .smallest_text {
    padding:0 1.4em;
    position:relative;
    top:-.2em;
}
.contact_bar .phone {
    font-size:2.2em;
}
.ribbon-link .svg_icon {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 1em;
}
.ribbon-link .svg_icon g * {
    fill: #fff;
}
/*}}}*/
/* Social Bar *//*{{{*/
.social_bar {
    background-color:#3575BA;
    margin-top:2.4em;
    padding:0;
    text-align:center;
    color:#fff;
}
.social_bar .social_blurb {
    font-size:2.25em;
    line-height:2em;
    margin-right:1em;
}
.social_bar a {
    color:#fff;
    display:inline-block;
    margin:0 .5em;
    vertical-align:text-bottom;
}
.social_bar a:hover {
    color:#C9E3FF;
    text-decoration:none;
}
.social_bar .svg_icon {
    width:30px;
    height:30px;
    vertical-align:middle;
}
.social_bar a path,
.social_bar a polygon,
.social_bar a rect {
    fill:#fff;
}
.social_bar a:hover path,
.social_bar a:hover polygon,
.social_bar a:hover rect {
    fill:#C9E3FF;
}
/*}}}*/
/* Feature icons for the tools pages *//*{{{*/
article.tool .features .mojo {
    background-image:url(/media/shared/info/index/_bh/mojo.png);
}
article.tool .features .support {
    background-image:url(/media/shared/info/index/_bh/support.png);
}
article.tool .features .scale {
    background-image:url(/media/shared/info/index/_bh/scale.png);
}
article.tool .features .guarantee {
    background-image:url(/media/shared/info/index/_bh/guarantee.png);
}
/*}}}*/
/* Utilities (careers) {{{ */
.hide {
    display:none !important;
}
/*}}}*/
/* Hero *//*{{{*/
.hero {
    min-height:23.6em;
    position:relative;
}
.hero.short {
    height:14.4em;
}
.hero h1 {
    margin:0;
}
.hero h1 b {
    display:block;
}
.lt-ie9 .hero h1 {
    font-size:2.6em;
}
.hero p {
    width:22.5em;
    margin-bottom:1.2em;
}
.hero .aside {
    position:absolute;
    top:0;
    right:0;
    width:33em; /* IE8 */
    width:52vw;
    height:20.6em;
}
.lte_ie9 .hero .aside {
    -ms-behavior: url(/media/shared/general/backgroundsize.min.htc);
}
/*}}}*/
/* Video Bar *//*{{{*/
.video_bar {
    background:#000 url(/media/shared/info/style/blocks/video_bar/video_bar_one.jpg) no-repeat center -219px;
}
.dedicated .video_bar {
    background:#000 url(/media/shared/info/style/blocks/video_bar/video_bar_one.jpg) no-repeat center -219px;
}
/*}}}*/
/* Partner List *//*{{{*/
.partner_list {
    width:960px;
    margin:0 auto;
    padding:1px 0;
    text-align:center;
}
.partner_list .partner_list_heading {
    margin-bottom:0;
    text-transform:lowercase;
    font-size:3em;
}
.partner_list .partner_list_desc {
    width:36em;
    margin:1em auto 2em;
}
.partner_list .partner_search {
    padding:1em 0;
}
.partner_list .partner_search input {
    width:20em;
}
.partner_list .partner_list_show_all {
    text-transform:lowercase;
}
/*}}}*/
/* Tools *//*{{{*/
.tools {
    width:960px;
    height:34em;
    margin:0 auto;
    padding:1px 0;
    text-align:center;
}
.tools h2 {
    margin:1em 0 0;
    font-size:3em;
}
.tools p {
    width:36em;
    margin:1em auto 3em;
    font-size:.9em;
}
.tools input[type="search"] {
    width:20em;
    padding:.25em;
    border:1px solid;
    border-radius:.25em;
    font-size:1.5em;
    color:#00A79D;
}
.tools .featured_tools {
    margin:3em 0 1em;
    padding:0;
    list-style:none;
}
.featured_tools .tool {
    background:#AAA;
    display:inline-block;
    width:10em;
    height:7em;
    margin:0 .5em;
    padding:4em 2em 0;
    vertical-align:top;
    color:#00A79D;
}
.tools #server_features {
    display:block;
    margin:1em auto;
    font-size:1em;
}
/*}}}*/
/* Rotating Server *//*{{{*/
.dedicated_server {
    background:url(/media/shared/info/products/_bh/rotating_server_static.jpg);
    width:660px;
    height:280px;
}
.rotating_server .rotating_image {
    margin:4em auto 0em;
}
.rotating_server .cover_wrap {
    text-align:center;
}
.rotating_server .rotating_server_link {
    position:relative;
    top:-3.8em;
    z-index:10;
}
.rotating_server .rotating_server_link .click_text {
    display:none;
}
.rotating_server_link.active:after {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    top: -3px;
}
.lt_ie9 .rotating_server_link.active:after {
    top: 5px;
    right: 0;
}
/*}}}*/
/* Double pane *//*{{{*/
.double_pane.content_right {
    margin-top:-.2em;
}
/*}}}*/
/* Tech Specs *//*{{{*/
.tech_spec_container {
    background:#000;
    background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#000),color-stop(100%,#333));
    background:-webkit-linear-gradient(top,#000 0%,#333 100%);
    background:-moz-linear-gradient(top,#000 0%,#333 100%);
    background:-ms-linear-gradient(top,#000 0%,#333 100%);
    background:-o-linear-gradient(top,#000 0%,#333 100%);
    background:linear-gradient(to bottom,#000 0%,#333 100%);
    height:0em;
    overflow:hidden;
    -webkit-transition:all .4s ease-out;
    -moz-transition:all .4s ease-out;
    -o-transition:all .4s ease-out;
    transition:all .4s ease-out;
    position:relative;
    top:-4.8em;
}
.tec_spec_showing {
    height: auto;
    padding: 2em;
}
.tech_spec {
    width:14em;
    min-height:27.5em;
    padding:.625em;
    border-radius:.5em;
    border:1px solid #097AB6;
    float:left;
    margin:1em .5em 2em;
}
.tech_spec:hover {
    background:#00A79D;
}
.tech_spec.footer {
    display:none;
    margin-bottom: .8em;
    min-height:11em;
    width:59em;
}
.lt-ie9 .tech_spec {
    min-height:22em;
}
.tech_spec_container .cover_wrap {
    text-align:center;
}
.tech_spec dt {
    margin:.3em 0 1em;
    padding:0 0 0 1.9em;
    text-transform:lowercase;
    font-size:1.6em;
    line-height:1.5em;
    color:#FFF;
    text-align:left;
    position:relative;
}
.tech_spec_icon .svg_icon {
    display: inline-block;
    width:1.5em;
    height: 1.5em;
    position: absolute;
    left:0;
}
.tech_spec_icon .svg_icon g * {
    fill:#fff;
}
.tech_spec dt.icon_memory, .tech_spec dt.icon_power {
    margin-top:2em;
}
.tech_spec dd {
    display:block;
    clear:both;
    margin-bottom:1em;
    font-weight:bold;
    font-size:.9em;
    color:#FFF;
}
.tech_spec.footer div {
    width:32em;
    text-align:left;
    margin-left:3.3em;
}
.tech_spec.footer span {
    width:10em;
    float:left;
    color:#fff;
}
.tech_spec_container .disclaimer {
    clear:both;
    font-size:.75em;
    text-align:left;
    margin:.4em 0 0 1em;
    color:#eaeaea;
}
.tech_spec dd:after {
    content:"";
    display:table;
    clear:both;
    visibility:hidden;
}
.spec_name {
    display:inline;
    float:left;
    width:4em;
    margin-right:.5em;
    text-align:right;
    font-weight:normal;
    font-size:.9em;
}
.spec_name:after {
    content:":";
}
.spec {
    display:inline;
    float:right;
    width:8.7em;
    text-align:left;
}
.tech_line {
    background-color:#3575B5;
    position:absolute;
    z-index:10;
}
.tech_circle {
    width:1em;
    height:1em;
    border:3px solid #3575B5;
    border-radius:.5em;
    position:absolute;
}
/*}}}*/
/* Shared *//*{{{*/
/* Shared â€¢ Price Display *//*{{{*/
.price_display {
    width:960px;
    height:100%;
    margin:0 auto;
    position:relative;
}
.price_display li {
    font-size:1.1em;
}
.price_display:after {
    content:'.';
    display:block;
    clear:both;
    visibility:hidden;
}
.price_display .left_info {
    float:left;
    width:48%;
    padding:0em 2em 0 6em;
    text-align:right;
}
.price_display .right_info {
    float:right;
    width:52%;
    text-transform:lowercase;
}
.price_display_first {
    float:left;
    width:15em;
    margin-bottom:2em;
}
.price_display_main {
    display:block;
    width:15em;
    border-radius:.5em;
    box-shadow:0 4px 6px #7F7F7F;
    position:relative;
}
.price_display_main .price_star_link {
    color:#fff;
}
.price_display_main header {
    display:block;
    width:15em;
    margin:0 auto;
    border-radius:.5em .5em 0 0;
    overflow:hidden;
    text-align:center;
    color:#FFF;
}
.price_display_main .price {
    display:block;
    width:100%;
    padding:.15em 0 .18em;
    font-size:3em;
}
.price_display_main .price .per_month {
    display:block;
    width:100%;
    margin:-.6em 0 .5em;
    font-size:.38em;
}
.price_display_main ul {
    background-color:#E0E0E0;
    width:15em;
    margin:0 auto;
    padding:1.4em 0 2.4em;
    border-radius:0 0 .5em .5em;
    list-style-type:none;
    text-align:center;
}
.price_display_main li {
    padding-bottom:.6em;
}
.price_display_second {
    display:block;
    width:14em;
    margin-top:1.5em;
    border:1px solid #DADADA;
    border-left:none;
    border-radius:0 .5em .5em 0;
    overflow:hidden;
    text-align:center;
    color:#C0C0C0;
}
.price_display_second ul {
    margin:0;
    padding:1em 0 2em;
    border-top:1px solid #DADADA;
    list-style-type:none;
}
.price_display_second li.details_header {
    font-size:1.5em;
    color:#00A79D;
}
.price_display_second li {
    padding-bottom:.4em;
}
.price_display_second .price {
    display:block;
    width:100%;
    font-size:2.6em;
}
.price_display_second .price span {
    display:block;
    width:100%;
    margin:-.6em 0 .5em;
    font-size:.4em;
}
.price_display_first .btn_primary {
    margin: -1em .86em;
    display: block;
}
.price_display .btn_dark {
    margin-top: -1em;
    position: absolute;
    display: block;
    right: 2.5em;
    width: 8em;
}
/* Price Display colors */
.price_display_main .price {
    background:#0D52B2;
    background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#0D52B2),color-stop(100%,#00A79D));
    background:-webkit-linear-gradient(top,#0D52B2 0%,#00A79D 100%);
    background:-moz-linear-gradient(top,#0D52B2 0%,#00A79D 100%);
    background:-ms-linear-gradient(top,#0D52B2 0%,#00A79D 100%);
    background:-o-linear-gradient(top,#0D52B2 0%,#00A79D 100%);
    background:linear-gradient(to bottom,#0D52B2 0%,#00A79D 100%);
}
/*}}}*/
/*}}}*/
/* Price Browser (VPS, Dedicated) *//*{{{*/
.price_browser {
    width:61em;
    margin: 0 auto 6em;
    position:relative;
    text-transform:lowercase;
}
.vps_price_browser .behind_price_bar {
    width:44.13em;
}
.price_browser_wrapper {
    display:block;
    width:48em;
    margin:0 auto;
}
.price_browser_core {
    width:16em;
    margin-left:16em;
    border-radius:.5em;
    box-shadow:0 4px 6px #7F7F7F;
}
.price_browser .bar_container {
    float:right;
    width:15.7em;
    padding:6.5em 0 0;
}
.bar_container .bar {
    display:block;
    width:0;
    height:1em;
    margin:1.1em 0;
}
.price_browser header {
    display:block;
    width:16em;
    margin:0 auto;
    border-radius:.5em .5em 0 0;
    overflow:hidden;
    text-align:center;
    color:#0D52B2; /* hide prices in IE <9 */
    color:rgba(0,0,0,0);
    position:relative;
    height: 100px;
    overflow: hidden;
}
.price_browser header div {
    display:none;
    width:10em;
    color:#FFF;
    position:absolute;
    top:0;
    left:3em;
}
.price_browser header div.svg_icon {
    display: block;
    width: 30px;
    position: static;
    top: auto;
    left: auto;
}
.price_browser .arrow {
    display:block;
    width:30px;
    height:30px;
    font-size:3em;
    color:#709AD3;
    color:rgba(255,255,255,.4);
    position:absolute;
    top:.4em;
    overflow: hidden;
}
.price_browser .arrow .svg_icon {
    width: 30px;
    height: 30px;
    display: block;
}
.price_browser .arrow .svg_icon path,
.price_browser .arrow .svg_icon rect,
.price_browser .arrow .svg_icon polygon {
    fill: rgba(255,255,255,.7);
}
.price_browser .arrow:hover {
    text-decoration:none;
}
.price_browser .arrow:hover .svg_icon path,
.price_browser .arrow:hover .svg_icon rect,
.price_browser .arrow:hover .svg_icon polygon {
    fill: rgba(255,255,255,.9);
}
.price_browser .arrow.left {
    left:.2em;
}
.price_browser .arrow.right {
    right:.2em;
}
.price_browser .price {
    display:block;
    width:100%;
    font-size:2.9em;
}
.price_browser .price span {
    display:block;
    width:100%;
    margin:-.6em 0 .5em;
    font-size:.38em;
}
.price_browser .level {
    display:block;
    height:1.2em;
    font-size:1.2em;
    line-height:1.1em;
}
.promo-star {
    color:#fff;
    color:rgba(255,255,255,.3);
    text-decoration:none;
}
.promo-star:hover {
    text-decoration:none;
}
.behind_price_container {
    display:block;
    width:50%;
    height:12em;
    overflow:hidden;
    position:absolute;
    top:.6em;
    z-index:6;
}
.behind_price_container.left {
    left:0;
}
.behind_price_container.right {
    right:0;
}
.behind_price_bar {
    display:block;
    width:33.13em;
    border:1px solid #DADADA;
    border-radius:.5em;
    overflow:hidden;
    text-align:center;
    color:#C0C0C0;
    cursor:pointer;
    z-index:1;
}
.behind_price_bar .promo-star {
    color:#C0C0C0;
    text-decoration:none;
}
.behind_price_bar div {
    float:left;
    width:11em;
    border-right:1px solid #DADADA;
}
.behind_price_bar:last-child {
    border-right:none;
}
.behind_price_bar .price {
    font-size:2.6em;
}
.behind_price_bar .price span {
    font-size:.32em;
}
.behind_price_bar .level {
    background:none;
    border-top:1px solid #DADADA;
}
.price_glow {
    color:#FFF;
}
.price_browser ul {
    background-color:#E0E0E0;
    display:none;
    width:16em;
    margin:0 auto;
    padding:0 0 2em;
    border-radius:0 0 .5em .5em;
    list-style-type:none;
    text-align:center;
    padding-top:.5em;
}
.price_browser li {
    border-top:1px solid #D0D0D0;
    margin:0;
    padding:.3em 0;
    position:relative;
}
.price_browser li:first-child {
    border-top:0;
}
.price_browser .subtext {
    display: block;
    color: #666;
    font-style: italic;
    font-size: 0.9em;
}
.price_browser .price_bars {
    width:16em;
    position:absolute;
    top:15px;
    left:0;
}
.price_browser header .initial_display,.price_browser ul.initial_display {
    display:block;
}
.price_browser .btn_primary {
    display:block;
    width:9.4em;
    clear:both;
    margin:-1em auto;
}
.price_browser .action_button {
    position:absolute;
    width:100%;
    height:3em;
}
/* price browser site-specific--colors & images */
.bar_container {
    background: url('/media/shared/general/_bh/bar-container-lines.jpg') left 104px no-repeat;
}
.bar_container .bar {
    background:#EDF6FE;
    background:-webkit-gradient(linear,left top,right top,color-stop(0%,#FFF),color-stop(100%,#7BA7D5));
    background:-webkit-linear-gradient(left,#FFF 0%,#7BA7D5 100%);
    background:-moz-linear-gradient(left,#FFF 0%,#7BA7D5 100%);
    background:-ms-linear-gradient(left,#FFF 0%,#7BA7D5 100%);
    background:-o-linear-gradient(left,#FFF 0%,#7BA7D5 100%);
    background:linear-gradient(to right,#FFF 0%,#7BA7D5 100%);
    background-size:16em;
}
.price_browser header {
    background:#0D52B2;
    background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#0D52B2),color-stop(100%,#00A79D));
    background:-webkit-linear-gradient(top,#0D52B2 0%,#00A79D 100%);
    background:-moz-linear-gradient(top,#0D52B2 0%,#00A79D 100%);
    background:-ms-linear-gradient(top,#0D52B2 0%,#00A79D 100%);
    background:-o-linear-gradient(top,#0D52B2 0%,#00A79D 100%);
    background:linear-gradient(to bottom,#0D52B2 0%,#00A79D 100%);
}
.price_browser .displayed .level {
    background-color:#505050;
    background-image:-webkit-gradient(linear,left top,right top,color-stop(0%,#4D4D4D),color-stop(100%,#666));
    background-image:-webkit-linear-gradient(left,#4D4D4D 0%,#666 100%);
    background-image:-moz-linear-gradient(left,#4D4D4D 0%,#666 100%);
    background-image:-ms-linear-gradient(left,#4D4D4D 0%,#666 100%);
    background-image:-o-linear-gradient(left,#4D4D4D 0%,#666 100%);
    background-image:linear-gradient(to right,#4D4D4D 0%,#666 100%);
    border-top:1px solid #4D4D4D;
    border-bottom:1px solid #4D4D4D;
}
/*}}}*/
/* Tool/partner search section {{{ */
.scroll_filter {
    position:relative;
    width:960px;
    margin:0 auto;
}
.scroll_filter .scroll_box {
    height:170px;
    width:850px;
    margin:0 auto;
    overflow:hidden;
    position:relative;
}
.scroll-box-wrapper {
    width: 960px;
    margin: 0 auto;
    display: block;
    position: relative;
}
.scroll_filter .tile_list {
    padding:0;
    position:relative;
    text-align:left;
    width:999999px;
}
.scroll_filter .tile {
    border:0;
    display:block;
    float:left;
    height:140px;
    margin:15px;
    width:140px;
}
.scroll_filter .tile .tile_icon {
    padding-top:6em;
}
.scroll_filter .btn_slide {
    top:auto;
    bottom:60px;
}
.scroll_filter .btn_left {
    left:0;
}
.scroll_filter .btn_right {
    right:0;
}
/*}}}*/
.alt_background {
    background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ebebec),color-stop(100%,#FFF));
    background:-webkit-linear-gradient(top,#ebebec 0%,#FFF 100%);
    background:-moz-linear-gradient(top,#ebebec 0%,#FFF 100%);
    background:-ms-linear-gradient(top,#ebebec 0%,#FFF 100%);
    background:-o-linear-gradient(top,#ebebec 0%,#FFF 100%);
    background:linear-gradient(to bottom,#ebebec 0%,#FFF 100%);
}
/* Chat Sidebar {{{ */
.chat-sidebar {
    position:absolute;
    margin-top:6em;
    z-index:1;
    background-color:#fff;
    width:300px;
    left:-300px;
    transition:all .3s;
}
.chat-sidebar.active {
    left:0;
    box-shadow:8px 8px 14px 8px rgba(128, 128, 128, 0.42);
}
.chat-sidebar .tab {
    margin:0;
    position:absolute;
    background-color:#00A79D;
    border-top-right-radius:5px;
    border-bottom-right-radius:5px;
    color:#fff;
    width:36px;
    height:136px;
    right:-36px;
    cursor:pointer;
}
.chat-sidebar .tab .svg_icon {
    display:block;
    margin:.5em auto .8em;
    width:24px;
    height:24px;
}
.chat-sidebar .tab .svg_icon .outlined,
.chat-sidebar .tab .svg_icon .filled {
    display:block;
}
.chat-sidebar .tab .svg_icon path {
    fill:#fff;
}
.chat-sidebar .tab .title {
    -moz-transform:rotate(90deg);
    -moz-transform-origin:50% 50%;
    -webkit-transform:rotate(90deg);
    -webkit-transform-origin:50% 50%;
    -o-transform:rotate(90deg);
    -o-transform-origin:50% 50%;
    -ms-transform:rotate(90deg);
    -ms-transform-origin:50% 50%;
    transform:rotate(90deg);
    transform-origin:50% 50%;
    white-space:nowrap;
    display:block;
}
.chat-sidebar form {
    padding:2em;
    text-align:center;
    display:block;
}
.chat-sidebar .phone {
    display:block;
    font-size:2em;
    font-weight:bold;
}
.chat-sidebar .info {
    display:block;
    font-size:1.6em;
    color:#00A79D;
    text-transform:lowercase;
    margin-bottom:.5em;
}
.chat-sidebar .livechat {
    display:block;
    font-size:1.4em;
    font-weight:bold;
}
.chat-sidebar textarea {
    margin:1em 0;
    width:100%;
    resize:vertical;
}
.chat-sidebar button[type=submit] {
    display:block;
    margin:0 0 0 auto;
}
.chat-sidebar .close {
    position:absolute;
    line-height:33px;
    display:block;
    text-transform:lowercase;
}
.chat-sidebar .close .svg_icon {
    width:24px;
    height:24px;
    vertical-align:middle;
}
/*}}}*/
/* @media for respoviness */
@media screen and (max-width: 767px) {
    #cloud-pane .cloud-pane-container{
        background: none;
    }
}

/*widget css ends here  */
/*main.css starts here*/
/* WARNING! This file is being generated from main.scss */
@charset 'UTF-8';.vps_link {
                     float:left;
                 }
.dedicated_link {
    float:right;
}
.vps .hero .aside {
    background:#FFF url(/media/shared/info/vps/_bh/vps_server.jpg) no-repeat;background-size:1217px 330px;
}
.lt_ie9 .vps .hero .aside {
    background:#FFF url(/media/shared/info/vps/_bh/vps_server_ie8.jpg) no-repeat;width:50%;position:absolute;top:0;left:50%;
}
.vps #bar_support {
    background:url(/media/shared/info/products/_bh/vps_bar_tech.jpg) center center no-repeat #000;background-size:1920px 1024px;
}
.lt_ie9 .vps #bar_support {
    background:url(/media/shared/info/products/_bh/vps_bar_tech_ie.jpg) no-repeat #837978;
}
.vps #bar_experts {
    background:url(/media/shared/info/products/_bh/vps_bar_support.jpg) center center no-repeat #837978;background-size:1920px 1024px;
}
.lt_ie9 .vps #bar_experts {
    background:url(/media/shared/info/products/_bh/vps_bar_support_ie.jpg) no-repeat #CCC;
}
.vps .dedicated_server {
    background:url(/media/shared/info/products/_bh/rotating_vps_static.jpg);width:726px;height:264px;
}
.vps .hosting_type_selector {
    box-shadow:none;
}
.dedicated .hero h1 {
    width:10em;
}
.dedicated .hero .aside {
    background:#FFF url(/media/shared/info/dedicated/_bh/dedicated_server.jpg) no-repeat;background-size:819px 330px;
}
.lt_ie9 .dedicated .hero .aside {
    background:#FFF url(/media/shared/info/dedicated/_bh/dedicated_server_ie8.jpg) no-repeat;width:50%;position:absolute;top:0;left:50%;
}
.dedicated #bar_built {
    background:url(/media/shared/info/products/_bh/dedicated_bar_tech.jpg) center center no-repeat #000;background-size:1920px 1024px;
}
.lt_ie9 .dedicated #bar_built {
    background:#837978 url(/media/shared/info/products/_bh/dedicated_bar_tech_ie.jpg) no-repeat;
}
.dedicated #bar_dedicated {
    background:url(/media/shared/info/products/_bh/shared_bar_support.jpg) center center no-repeat #837978;background-size:1920px 1024px;
}
.lt_ie9 .dedicated #bar_dedicated {
    background:#837978 url(/media/shared/info/products/_bh/shared_bar_support_ie.jpg) no-repeat;
}
.dedicated .hosting_type_selector {
    box-shadow:none;
}
.lt_ie9 .shared .designed_by h2 {
    width:120%;
}
.shared #designed_by p {
    width:85%;
}
.shared .hero .aside {
    background:#FFF url(/media/shared/info/shared/_bh/shared_server.jpg) no-repeat;background-size:1013px 330px;
}
.lt_ie9 .shared .hero .aside {
    background:#FFF url(/media/shared/info/shared/_bh/shared_server_ie8.jpg) no-repeat;width:50%;position:absolute;top:0;left:50%;
}
.shared #bar_support {
    background:url(/media/shared/info/products/_bh/shared_bar_support.jpg) center center no-repeat #837978;background-size:1920px 1024px;
}
.lt_ie9 .shared #bar_support {
    background:url(/media/shared/info/products/_bh/shared_bar_support_ie.jpg);
}
.shared #designed_by {
    background:url(/media/shared/info/products/_bh/shared_bar_tech.jpg) center center no-repeat #000;background-size:1920px 1024px;
}
.lt_ie9 .shared #designed_by {
    background:url(/media/shared/info/products/_bh/shared_bar_tech_ie.jpg);
}
.shared .dedicated_server {
    background:url(/media/shared/info/products/_bh/rotating_shared_static.jpg);width:696px;height:264px;
}
.shared .hosting_type_selector {
    box-shadow:none;
}
#reseller_support {
    background:url(/media/shared/info/products/_bh/reseller_support.jpg) center no-repeat,#000;background-size:1920px 1024px;
}
.lt_ie9 #reseller_support {
    background:#000;background:url(/media/shared/info/products/_bh/reseller_support_ie.jpg) center no-repeat;
}
.hosting_type_selector {
    margin:0 auto;border-radius:0;box-shadow:0 10px 10px -7px #AAA inset;text-align:center;
}
#product_list {
    margin:2em 0 2.5em;text-align:center;
}
#product_list img {
    margin:.5em 0 0;
}
#product_list .hosting_products {
    width:48em;margin:-1em auto 0;padding:0;list-style-type:none;
}
#product_list .product_vertical {
    float:left;width:33.333333%;padding:0 3em;
}
#product_list .product_vertical .hover_cta {
    display:block;
}
#product_list .product_vertical .product_vertical_name {
    margin:0 0 .2em;text-transform:lowercase;font-size:2em;
}
#product_list .product_vertical .product_vertical_action {
    margin-bottom:2em;text-transform:lowercase;
}
.products_page #support {
    background:url(/media/shared/info/products/_bh/main_support.jpg) center top no-repeat,#000;background-size:1920px 1024px;
}
.lt_ie9 .products_page #support {
    background:#000;background:url(/media/shared/info/products/_bh/main_support_ie.jpg) center no-repeat;
}
.products_page #support h2 {
    margin-top:1.5em;
}
.hero .aside {
    background:url(/media/shared/info/reseller/_bh/reseller-server.jpg) 200px center no-repeat;background-size:600px 258px;
}
.lt_ie9 .hero .aside {
    background:url(/media/shared/info/reseller/_bh/reseller-server.jpg) 200px center no-repeat;background-size:600px 258px;
}
.hero-btn {
    width:160px;margin:30px 20px;
}
.text-sup {
    padding:0 0 0 .15em;vertical-align:super;font-size:.6em;
}
.product-bar {
    float:none;max-width:54em;margin:6em auto;padding:0 2em;position:relative;
}
.product-bar .product-content {
    margin:-5.875em 0 0;position:absolute;top:50%;left:30em;
}
.product-bar .product-content h2 {
    margin:0em 0;text-transform:none;font-size:3em;
}
.product-bar .product-content p {
    width:20em;
}
.product-bar .product-wrapper {
    width:25em;border:2px solid #00A79D;border-radius:5px;overflow:hidden;text-align:center;
}
.product-bar .content-wrapper {
    display:inline-block;padding:0 0 .5em;color:#666;
}
.product-bar .content-wrapper:hover {
    text-decoration:none;
}
.product-bar .product-wrapper .sale-tagline {
    margin:0 0 .5em;border-radius:0;text-transform:none;
}
.product-bar .normal-rate {
    margin:0 0 .5em;
}
.product-bar .sale-rate {
    margin:0;font-weight:bold;font-size:3em;
}
.product-bar .sale-rate .sale-term {
    font-size:.5em;
}
.product-bar ul,.product-bar li {
    margin:0;padding:0;list-style:none;
}
.product-bar ul {
    margin:.5em 0;
}
.product-bar li {
    height:2.25em;margin:0 auto;padding:0 6em;text-align:left;line-height:2.25;
}
.product-bar li b {
    padding:0 .25em 0 0;font-size:1.2em;
}
.product-bar li:hover {
    background-color:#F1F6FA;
}
.product-bar i {
    vertical-align:middle;font-size:2em;line-height:1;
}
.product-bar hr {
    margin:1em 2em;border:0;border-top:1px solid #C7C7C7;vertical-align:baseline;
}
#content .product-bar .btn_primary {
    display:inline-block;width:10em;text-transform:none;
}

/*main.css ends here*/
.hosting_type_selector{box-shadow: none;}
.hosting_type_selector{margin: 0 auto;border-radius: 0;box-shadow: 0 10px 10px -7px #AAA inset;text-align: center;}
.nav-on-skinny-bar{position: relative;top: 21px;z-index: 1;box-shadow:none;}
.tabs2{display: block;margin: 0;padding: 0;list-style-type: none;text-align: center;text-transform: lowercase;font-size: 1.2em;color: #777;position: relative;}
.tabs2 li, .sidetabs2 li{display: inline-block;margin: 0;}
.tabs2 a, .sidetabs2 a{background: #FFF;border: 1px solid #00A79D;border-right: 0;border-radius: 0;text-decoration: none;color: #00A79D;}
.tabs2:after{content: "";display: table;clear: both;visibility: hidden;}
.tabs2 li a.active, .tabs2 li a:hover, .sidetabs2 li a:hover{background: #00A79D;background: -webkit-gradient(linear,left bottom,left top,color-stop(0%,#06897C),color-stop(100%,#00A79D));background: -webkit-linear-gradient(bottom,#06897C 0%,#00A79D 100%);background: -moz-linear-gradient(bottom,#06897C 0%,#00A79D 100%);background: -ms-linear-gradient(bottom,#06897C 0%,#00A79D 100%);background: -o-linear-gradient(bottom,#06897C 0%,#00A79D 100%);background: linear-gradient(to top,#06897C 0%,#00A79D 100%);color: #fff;}
.tabs2 li:first-child a{border-radius: .375em 0 0 .375em;}
.tabs2 a.active, .sidetabs a.active{cursor: default;}
.tabs2 a.active{margin-bottom: 0px;}
.tabs2 a.last{border-right: 1px solid #00A79D;border-radius: 0 .375em .375em 0;}
.dedi-wrapper .row-wrapper.dedicated-plans-content{
    background: #ffffff;
}

.row-indent.linux-hosting-banner, .row-indent.windows-hosting-banner, .row-indent.vps-banner, .row-indent.dedicated-server-banner, .row-indent.windows-server-banner, .row-indent.premium-banner, .row-indent.sitebuilder-banner {
    margin: 4px auto 0;
}
.linux-hosting-banner #plans-masthead, .windows-hosting-banner #plans-masthead, .vps-banner #plans-masthead {
    padding: 0 0 0 8px;
}
.dedicated-server-banner #plans-masthead, .windows-server-banner #plans-masthead {
    padding: 0;
}
.sitebuilder-banner #plans-masthead {
    height: 180px;
    padding: 0 0 0 8px;
    width: auto;
}
.radio label{
    padding-left: 8px;
}
.top-bar {
    text-align: right;
    background: #fff;
}
.nav-bar li a {
    padding: 0 20px;
}
.header .phone {
    line-height: 4;
    visibility: hidden;
}
.masthead {
    background: url(/getImage.php?src=mastheadbg.jpg) no-repeat center top;
    border-bottom: solid 2px #666;
}
.masthead h2 span {
    font-size: 36px;
    display: block;
}
.plain-btn span {
    position: absolute;
    right: 10px;
    top: -5px;
    font-size: 27px !important;
}
.shadow_div .img-for-rh {
    background: url(/getImage.php?src=rh.jpg) no-repeat center 0 #000;
}
.thumb-for-rh {
    background: url("/getImage.php?src=thumbforrh.jpg") no-repeat scroll;
    height: 330px;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
}
.thumb-for-lh {
    background: url("/getImage.php?src=thumbforhosting.jpg") no-repeat scroll;
    height: 330px;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
}
.nav-dd .sub-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    width: 165px;
    border-top: none;
    background: #fff;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #F3F3F3;
    border-top: none;
}
.support-bg {
    background: url(/getImage.php?src=myUploadedImages/support.jpg) no-repeat center -290px;
}
ul#payment_options_online li.paymentOption input {
    display: block;
    float: left;
    margin: 17px 8px 0;
}
#paymentOption_offline {
    z-index: 1;
    display: none;
}
.modal_content {
    position: fixed;
    margin-left: -350px;
}
.wide_modal {
    width: 790px;
}
a.modal_close {
    background: url("/getImage.php?src=/images/close.png") no-repeat 0 0;
    right: 10px;
    top: 10px;
    height: 15px;
    position: absolute;
    width: 15px;
    opacity: 0.6;
}
/* */
#payment_options_alipayoverseas label {
    background: 0px -176px url(/getImage.php?src=payment_option_logos.gif) no-repeat !important;

}
/*Ã¥Å“Â¨Ã§ÂºÂ¿Ã¥Â®Â¢Ã¦Å“ÂÃ¤Â»Â£Ã§ Â*/

.rides-cs {
    background: rgba(27,95,182,0.9);
    position: fixed;
    top: 130px;
    left: 1px;
    _position: absolute;
    z-index: 999;
    filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#E5333333', endColorstr='#E5333333');
}
.rides-cs a {
    color: #00A0E9;
}
.rides-cs a:hover {
    color: #ff8100;
    text-decoration: none;
}
.rides-cs .floatL {
    width: 36px;
    float: left;
    position: relative;
    z-index: 1;
}
.rides-cs .floatL a {
    font-size: 0;
    text-indent: -999em;
    display: block;
}
.rides-cs .floatR {
    width: 130px;
    float: left;
    padding: 5px;
    overflow: hidden;
}
.rides-cs .floatR .cn {
    background: #F7F7F7;
    font: normal 12px Arial, Helvetica, sans-serif;
    color: #333;
}
.rides-cs .cn h3 {
    font: bold 14px Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 24px;
    padding: 5px;
}
.rides-cs .cn ul {
    padding: 0 0 0 8px;
}
.rides-cs .cn ul li {
    line-height: 38px;
    height: 38px;
    border-bottom: solid 1px #E6E4E4;
    overflow: hidden;
}
.rides-cs .cn ul li span {
    color: #777;
}
.rides-cs .cn ul li img {
    vertical-align: middle;
}
.rides-cs .btnOpen, .rides-cs .btnCtn {
    position: relative;
    z-index: 9;
    top: 0;
    left: 0;
    background-image: url(/getImage.php?src=myUploadedImages/shopnc.png);
    background-repeat: no-repeat;
    display: block;
    width: 20px;
    height: 146px;
    padding: 8px;
}
.rides-cs .btnOpen {
    background-position: -450px 0;
}
.rides-cs .btnCtn {
    background-position: -410px 0;
}
.rides-cs ul li.top {
    border-bottom: solid #ACE5F9 1px;
}
.rides-cs ul li.bot {
    border-bottom: none;
}
.floatR ul span {
    color: #333;
}
.inner-content p {
    padding: 10px;
}
.inner-content input[type="text"] {
    width: 70%;
    margin: 10px;
    padding: 10px;
}
.lfloat.purchase-sitelock, .lfloat.purchase-codeguard {
    width: 50%;
}
#select-domain-modal .inner-content span.sitelock-small-logo, #select-domain-modal .inner-content span.codeguard-small-logo {
    text-align: left;
    width: 100%;
    padding: 10px;
}
#select-domain-modal .inner-content span.sitelock-small-logo span, #select-domain-modal .inner-content span.codeguard-small-logo span {
    background: url('/getImage.php?src=images/all-images-codeguard.png') no-repeat;
}
#select-domain-modal .inner-content span.sitelock-small-logo span {
    background-position: -140px 0;
    height: 20px;
    width: 102px;
}
#select-domain-modal .inner-content span.codeguard-small-logo span {
    background-position: 0 -123px;
    height: 26px;
    width: 131px;
}
.pp_name {
    display: inline-block;
    *display:inline;
    zoom: 1;
    position: relative;
    margin-left: 10px;
}
.pp_in_cart {
    position: absolute;
    bottom: 0;
    width: 904px;
}
.pp_total {
    font-size: 16px;
    margin: 0 94px 0 0;
}
#sl-plan-details h2 {
    background: url("/getImage.php?src=images/all-images_sitelock.png") no-repeat -29px -618px !important;
    font-size: 30px;
    font-weight: 400;
    color: #222;
    width: 938px;
    text-align: center;
    margin: 0 0 22px 0;
}
.sl-plan-price .value {
    font-weight: 800;
    font-size: 25px;
}
.sl-plan-price .symbol {
    position: relative;
    left: -4px;
    top: -6px;
}
.continue-button-container {
    padding: 20px 0;
}
#select-domain-modal .continue-button-container input#continue_action {
    background: #2fbe15;
    border: 1px solid #18900b;
    cursor: pointer;
    font-size: 18px;
    font-weight: 100;
    color: #fff;
}
#select-domain-modal .continue-button-container input#continue_action:hover {
    -webkit-transition: background-color .2s ease-in-out;
    -moz-transition: background-color .2s ease-in-out;
    -o-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
    background: #34c918;
}
.footer-cols {
    overflow: hidden;
    /*text-transform: lowercase;*/
    width: auto;
}
#plans-masthead li {
    font: normal 18px bluehost, 'Segoe UI', 'Gill Sans', 'Gill Sans MT', GillSans, 'Trebuchet MS', Arial, sans-serif;
    color: #00A79D;
    margin: 0;
    padding: 0 0 14px 23px;
    background: url("/getImage.php?src=myUploadedImages/greentic.png") no-repeat 0 5px;/* background: url(/getImage.php?src=myUploadedImages/graytic.png) no-repeat 0 8px; */
}
.plan-list {
    width: 238px !important;
}
.hosting-wrapper.reseller-wrapper .plans-container{
    padding-top: 40px;
}
.ui-slider .ui-slider-handle{
    z-index:1;
}

/* common style ends here */
.top-bar {
    text-align: right;
}
/* Checkout starts here */

.abtest .sectionWrp.completed .title .edit, .abtest .sectionWrp.completed .title .logout {
    background: #0cce65;
}
.sectionWrp.completed .title .check {
    background: url('/getImage.php?src=check.gif') no-repeat scroll 8px 9px #0cce65;
}
.shop-cart-table .update_item_class {
    padding: 0;
}
.ItemTotalAfterDiscount #TotalAmount {
    padding-left: 10px;
    font: bold 25px bluehost, 'Segoe UI', 'Trebuchet MS', Arial, sans-serif;
    text-align: left;
}
/* Checkout ends here */

/* Codegaurd starts here */
#cog-wrapper h1, #cog-wrapper h2, #cog-wrapper h3, #cog-wrapper p, #cog-wrapper span, #cog-wrapper a, #cog-wrapper table thead th, #cog-wrapper table tbody td, #cog-wrapper button {
    font-family: "proxima_nova", Arial;
}
/*Codegaurd ends here */



/* Domain starts here */
.dca-search button:hover, .dca-domain-avail span button:hover, #checkout:hover, .dca-footer-banner a:hover, a.dca-comingsoon-button:hover, .filter-button:hover {
    background: #34c918;
    -webkit-transition: background-color .2s ease-in-out;
    -moz-transition: background-color .2s ease-in-out;
    -o-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
}
.dca-footer-banner a:active, a.dca-comingsoon-button:active, .filter-button:active {
    background: #2db315
}
.secondary-section {
    width: 735px;
    margin: 40px 0 0 0;
}
.primary-result-section.dca-available {
    border: 2px solid #62bc33;
}
.dca-domain-avail {
    text-align: right;
    padding: 0 20px 0 0;
    position: absolute;
    right: 0;
    width: 60%;
}
.dca-domain-avail span button, a.dca-comingsoon-button, .filter-button {
    background: #62bc33;
    border: 0;
    color: #fff;
    font-family: "proxima_nova", Arial;
    font-size: 14px;
    font-weight: 100;
    height: auto;
    width: auto;
    padding: 8px 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    cursor: pointer;
    border: 1px solid #18900b;
    outline: none;
}
.secondary-result .dca-pricing {
    font-weight: 100;
    font-size: 15px;
    color: #222;
}
.secondary-result .dca-domain-avail span.inline-block em.dca-red-text {
    font-style: normal !important;
    font-family: "proxima_nova", Arial;
    font-size: 18px;
    font-weight: 600;
}
.dca-dn-available, .dca-dn-unavailable {
    background: url('/getImage.php?src=images/dca-icons-sprite.png') no-repeat;
    padding: 0 0 0 50px;
}
.dca-dn-available {
    background-position: 0 -42px;
}
.dca-dn-unavailable {
    background-position: 0 6px;
}
.secondary-result .dca-sale-tag, .primary-result .dca-sale-tag {
    background: url('/getImage.php?src=images/dca-icons-sprite.png') no-repeat 0 -98px;
    position: absolute;
    top: -30px;
    right: 0;
    height: 38px;
    width: 38px;
}
.primary-result .dca-sale-tag {
    top: -27px;
}
.dca-comingsoon-tag, .dca-premiumdomain-tag {
    font-family: "proxima_nova", Arial;
    font-size: 12px;
    font-weight: 100;
    color: #fff;
    padding: 0 10px 0 27px;
    line-height: 19px;
    margin-top: -2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    display: block !important;
}
.dca-comingsoon-tag {
    background: #e07182;
    width: 112px !important;
    padding: 0 !important;
    vertical-align: top;
    height: 19px;
}
.dca-comingsoon-tag .dca-comingsoon-icon {
    background: url('/getImage.php?src=images/dca-icons-sprite.png') no-repeat 0 -145px;
    height: 18px;
    width: 20px !important;
    margin: 0 5px 0 0;
}
.dca-premiumdomain-tag {
    background: url('/getImage.php?src=images/dca-icons-sprite.png') no-repeat -37px -145px #ff9c00;
    height: 19px;
    width: 55px !important;
}
.dca-page-wrapper .cart .remove, .secondary-result a.tooltipanimated.dca-comingsoon-button span.classic-ani .close-button {
    background: url("/getImage.php?src=close.png") no-repeat 0 0;
    right: 20px;
    top: 1px;
    height: 15px;
    position: absolute;
    width: 15px;
    opacity: 0.6;
}
.dca-page-wrapper .cart .remove:hover, .secondary-result a.tooltipanimated.dca-comingsoon-button span.classic-ani .close-button:hover {
    opacity: 0.8
}
.dca-page-wrapper .cart .remove:active, .secondary-result a.tooltipanimated.dca-comingsoon-button span.classic-ani .close-button:hover {
    opacity: 1;
}
span.dca-domain-purchased, .secondary-result .dca-domain-name span, .dca-domain-name span.dca-primary-dn {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 150px;
}
.secondary-result .dca-domain-name span, .dca-domain-name span.dca-primary-dn {
    width: 265px;
}
.dca-domain-name span.dca-primary-dn {
    margin-bottom: -5px;
    line-height: 20px;
}
.dca-footer-banner {
    display: none;
    background: url('/getImage.php?src=images/dca-banner-bg.png') no-repeat 20px 15px #02b6ec;
    height: 170px;
    width: 735px;
    margin: 80px 0 0 0;
    text-align: center;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
a:hover.dca-premiumdomain-tag.tooltipanimated span.classic-ani {
    visibility: visible;
    opacity: 1;
    bottom: -115px; /*left: 35%;*/
    margin-left: -80px;
    z-index: 9999;
    -webkit-transition: opacity, bottom 0.2s ease;  /* Chrome 1-25, Safari 3.2+ */
    -moz-transition: opacity, bottom 0.2s ease;  /* Firefox 4-15 */
    -o-transition: opacity, bottom 0.2s ease;  /* Opera 10.50ÃƒÂ¢Ã¢â€šÂ¬"12.00 */
    transition: opacity, bottom 0.2s ease;  /* Chrome 26, Firefox 16+, IE 10+, Opera     12.50+ */
}
.secondary-result a.tooltipanimated span:after, .primary-result a.tooltipanimated span:after {
    display: none;
}
a.dca-premiumdomain-tag.tooltipanimated span.classic-ani {
    position: absolute;
    width: 300px;
    color: #FFFFFF;
    background: #363636;
    height: 85px;
    border: 1px solid #000;
    line-height: 21px;
    font-size: 14px;
    font-family: "proxima_nova", sans-serif;
    font-weight: 100;
    text-align: left;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    visibility: hidden;
    margin-left: 0;
    bottom: -105px;
    opacity: 0;
    padding: 10px !important;
    overflow: visible !important;
    -webkit-box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.7);
    -moz-box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.7);
    box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.7);
}
a.dca-premiumdomain-tag.tooltipanimated span.classic-ani .tooltip-arrow {
    background: url('/getImage.php?src=images/dca-tooltip-arrow.png') no-repeat;
    position: absolute;
    top: -8px;
    left: 133px;
    height: 9px;
    width: 18px;
    display: block;
}
a:hover.dca-premiumdomain-tag.tooltipanimated {
    color: #fff !important;
}
.secondary-result a.tooltipanimated.dca-comingsoon-button em {
    font-style: normal !important;
}
.secondary-result a.tooltipanimated.dca-comingsoon-button span.classic-ani {
    position: absolute !important;
    width: 270px !important;
    color: #222 !important;
    background: #fff !important;
    height: 95px !important;
    border: 1px solid #e2e2e2 !important;
    line-height: 19px !important;
    font-size: 13px;
    font-family: "proxima_nova", sans-serif;
    font-weight: 100;
    text-align: left;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    visibility: hidden;
    margin-left: -293px;
    bottom: -135px;
    opacity: 0;
    padding: 20px !important;
    overflow: visible !important;
    -webkit-box-shadow: 0 0 2px 2px #f1f1f1;
    -moz-box-shadow: 0 0 2px 2px #f1f1f1;
    box-shadow: 0 0 2px 2px #f1f1f1;
}
.secondary-result a.clicked.tooltipanimated.dca-comingsoon-button span.classic-ani {
    visibility: visible;
    opacity: 1;
    bottom: -145px; /*left: 35%;*/
    left: auto !important;
    margin-left: -293px;
    z-index: 9999;
    -webkit-transition: opacity, bottom 0.2s ease;  /* Chrome 1-25, Safari 3.2+ */
    -moz-transition: opacity, bottom 0.2s ease;  /* Firefox 4-15 */
    -o-transition: opacity, bottom 0.2s ease;  /* Opera 10.50ÃƒÂ¢Ã¢â€šÂ¬"12.00 */
    transition: opacity, bottom 0.2s ease;  /* Chrome 26, Firefox 16+, IE 10+, Opera     12.50+ */
}
.secondary-result a.tooltipanimated.dca-comingsoon-button span.classic-ani .tooltip-arrow {
    background: url('/getImage.php?src=images/dca-comingsoon-arrow.png') no-repeat;
    position: absolute;
    top: -8px;
    left: 330px;
    height: 9px;
    width: 18px;
    display: block;
}
.secondary-result a.tooltipanimated.dca-comingsoon-button span.classic-ani button {
    margin-top: 10px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.secondary-result a.tooltipanimated.dca-comingsoon-button span.classic-ani .close-button {
    top: -5px;
    right: -15px;
    border: 0 !important;
}
.primary-result a.tooltipanimated {
    position: absolute;
    bottom: -20px;
}
.dca-domain-avail span .dca-duration {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 20px;
    width: 80px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: "proxima_nova", Arial;
    font-size: 15px;
    font-weight: 100;
    text-align: left !important;
    display: inline-block;
    *display: inline;
    *position:relative;
    zoom: 1;
    margin: 3px 0 0 0;
}
ul.hidden-dca-durations {
    border: 1px solid #e2e2e2;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 0;
    margin: 0;
    width: 100px;
    position: absolute;
    top: 25px;
    left: 0;
    z-index: 9999;
}
ul.hidden-dca-durations li {
    background: #fff;
    padding: 10px 15px;
    cursor: pointer;
    list-style: none;
    text-align: left !important;
    font-family: "proxima_nova", Arial;
    font-size: 14px;
    font-weight: 100;
}
ul.hidden-dca-durations li.even {
    background: #f8f8f8;
}
ul.hidden-dca-durations li:hover, ul.hidden-dca-durations li.even:hover {
    background: #ccc;
}
.discount-offered {
    font-style: normal;
    font-family: "proxima-nova", Arial;
    font-weight: 100 !important;
    font-size: 13px !important;
    position: relative;
    top: 2px; /*top:-3px;*/
}
.dotwien_authcode_link {
    position: relative;
    left: -162px;
}
.tld-box table.dataTable2 td.radio {
    background-color: #fff;
}
.price-list-bar ul {
    margin: 0;
    padding: 0;
}
.wrapper .ui-heading {
    text-align: inherit;
    padding: 30px 0 15px 0;
}
.feature-blurb .frb {
    margin: 0;
    padding: 0;
}
.row-white .row-indent {
    margin: 0;
}
.dpricing-table th {
    background: #E0EFFC;
    font: bold 17px Arial, Helvetica, sans-serif;
    border-right: none;
}
.odd, .odd td {
    background-color: #ffffff;
}
.even, .even td {
    background: #CAF296;
}
input#field_domains-input {
    font: normal 19px Arial, Helvetica, sans-serif;
    padding: 11px 0 12px 0;
    border: medium none;
}
.secondary-result .dca-domain-name span, .dca-domain-name span.dca-primary-dn {
    width: auto;
}
ul.hidden-dca-durations li {
    margin: 0;
}
.dca-page-wrapper .cart-header h3 {
    margin: 0;
}
.dca-search input[type="text"] {
    color: #222;
    font-family: "proxima_nova", Arial;
    font-size: 18px;
    font-weight: 100;
    padding: 20px 0 20px 20px;
    width: 562px;
    border: 1px solid #d8d8d8;
    -webkit-border-radius: 4px 0 4px 0;
    -moz-border-radius: 4px 0 4px 0;
    border-radius: 4px 0 0 4px;
    -webkit-box-shadow: 0 0 1px 1px #e5e5e5;
    -moz-box-shadow: 0 0 1px 1px #e5e5e5;
    box-shadow: 0 0 1px 1px #e5e5e5;
    outline: none;
}
.dca-dn-unavailable {
    background: #fff;
    background-position: 0 6px;
    padding: 0;
}
.dca-dn-available {
    background-position: 0 -42px;
    background: #fff;
    padding: 0;
}
#main-content.row-indent {
    margin: 0 auto;
}
.tabs-wrapper .tab .active a:hover, .tabs-wrapper .tab li a:hover {
    text-decoration: none;
}
#upsell_modal h1, .modal_content h1 {
    margin: 0;
}
ul.country_specific_tabs {
    margin: 0;
    padding: 0;
}
.server_loc_tabs li {
    background: #fff;
    font: normal 20px bluehost, 'Segoe UI', 'Gill Sans', 'Gill Sans MT', GillSans, 'Trebuchet MS', Arial, sans-serif;
    line-height: 40px;
    padding: 0 30px;
    float: left;
    position: relative;
    cursor: pointer;
    border: 1px solid #1d61b6;
    color: #396fbb;
    margin: 0 -1px 1em 0;
}
#upsell_modal h2 {
    margin: 0;
}
.server_loc_tabs ul li.sel {
    color: #ffffff;
}
.server_loc_tabs ul li.sel .sel_tab {
    background: url("/getImage.php?src=myUploadedImages/seltab.gif") no-repeat 0px 0px;
    width: 16px;
    height: 8px;
    position: absolute;
    top: 41px;
    left: 50%;
    display: block;
}
.wide_modal {
    width: 824px;
}
ul.country_specific_tabs {
    margin: 0px;
    padding: 0;
    margin-bottom: 19px;
}
ul.country_specific_tabs {
    margin: 10px auto;
}
.secondary-section-heading {
    margin: 0;
}
.aff-bg .row-indent {
    margin: 0 auto;
}
.dca-page-wrapper .cart-empty p {
    margin: 0;
}
.dca-page-wrapper .cart-list {
    margin: 0;
    padding: 0;
    padding-top: 25px;
}
.new_contact_col.bor {
    border: none;
    padding-left: 40px;
}
/* Domain ends here */

/* Canadian form starts here */
.view-form td {
    border-right: none;
}
.model-button:hover {
    text-decoration: none;
}
.search-uibutton {
    top: 8px;
}
a.modal_close {
    background: none;
    height: 15px;
    position: absolute;
    width: auto;
    opacity: 0.6;
    color: #000000;
}
.tooltip {
    opacity: 1;
}
/* Canadian form ends here */

/*Domain transfer starts here */

.data-form td {
    border-right: none;
}

.data-form td:nth-child(1){
	width: 15%;
}

.data-form td:nth-child(2){
	width: 60%;
}
.frm-label {
    font: normal 16px/1.25 bluehost, 'Segoe UI', 'Gill Sans', 'Gill Sans MT', GillSans, 'Trebuchet MS', Arial, sans-serif;
}
input#field_domains-input {
    font: normal 14px Arial, Helvetica, sans-serif;
    padding: 6px 11px;
    border: solid 1px #b2c4d4;
}
#CartTable .showmore a {
    color: #377ce4;
}
#CartTable .showmore a:hover {
    text-decoration: none;
}
.switch-nav .tab-wrp div a {
    cursor: default;
}
.switch-nav .tab-wrp div a:hover {
    text-decoration: none;
    cursor: default;
}
.tabs a, .sidetabs a {
    border-right: 1px solid #00A79D;
}
/*Domain transfer ends here */

/* Affiliates starts here */
#plans-masthead .btn {
    background: linear-gradient(to right, #62bc33 0%, #8bd331 100%);
    color: #fff;
    border: none;
}
.plain-btn a :hover {
    text-decoration: none;
}
.affi-blurb h2 {
    margin: 0;
}
.txt-center a:hover {
    text-decoration: none;
}
a.plain-btn:hover {
    text-decoration: none;
}
.aff-bg {
    background: url(/getImage.php?src=aff_bg.jpg) no-repeat center 0;
    height: 410px;
    margin-top: -35px;
}
.blurb-blue {
    margin-top: 0px;
}
/* Affiliates ends here */


/* DD-server starts here */

.thumb-for-ds {
    background: url("/getImage.php?src=thumbfords.jpg") no-repeat scroll;
    height: 330px;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
}
.dd-heading {
    font: bold 86px 'bluehost', serif;
}
.dplan-list .plans {
    border: 1px solid #dedcdc;
    border-radius: 6px;
    display: inline-block;
    list-style: outside none none;
    margin: 0;
    padding: 0;
    position: relative;
    text-align: center;
    width: 33%;
}
.dplan-list .plans .name {
    font: normal 22px 'Open Sans', sans-serif;
    color: #fff;
    padding: 9px 0;
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #505050), color-stop(1, #020202) );
    background: -moz-linear-gradient( top, #505050 5%, #020202 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#505050', endColorstr='#020202');
    background-image: -ms-linear-gradient(top, #505050 0%, #020202 100%);
    background-color: #505050;
    margin: 0;
}
.pname {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    width: 250px;
}
.dplan-list .plans li {
    border-bottom: 1px solid #f1f1f1;
    color: #464646;
    font: 17px 'Open Sans', sans-serif;
    margin: 0 20px;
    padding: 15px 0;
}
.plans .currency {
    font: 40px 'Open Sans', sans-serif;
}
.dplan-list .plans .pricing {
    color: #00A79D;
    font: 45px 'Open Sans', sans-serif;
    padding: 20px 0;
    position: relative;
    margin: 0;
    height: inherit;
}
.dplan-list .dropdown select {
    border: 1px solid #dcdcdc;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    padding: 5px 3px;
    width: 195px;
}
.dplan-list .plans .p-button {
    padding: 12px 0 22px;
}
.dplan-list .plans .duration {
    display: block;
    font: 18px 'Open Sans', sans-serif;
    margin-top: -5px;
}
.txt-em {
    border-bottom: solid 1px #ccc;
    height: 5px;
    margin: 45px 0;
    font: bold 26px 'bluehost', serif;
    text-align: center;
}
.txt-em em {
    position: relative;
    top: -12px;
    background: #fff;
    padding: 5px 10px;
    color: #5b5b5b;
}
.dd-server .heading {
    font: bold 26px 'bluehost', serif;
}
.dd-server .cont td {
    font: 400 16px/30px 'bluehost', serif;
}
.dd-server .cont .txt-dd-info {
    font: 400 14px 'bluehost', serif;
    color: #666;
}

.dd-server .txt-dd-info {
    font: normal 15px 'bluehost', serif;
}
.dd-server-cart h3 {
    background: url("/getImage.php?src=dd-cart-bg.gif") no-repeat scroll 0 0 #CFCFCF;
    font: normal 20px 'bluehost', serif;
}
.dd-cart-item p {
    font: normal 13px/22px 'bluehost', serif;
}
.dd-cart-total {
    font: bold 18px arial;
}
.cart-button .ui-button {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}
.dd-prog-bar {
    background: url(/getImage.php?src=dd-step-bg.jpg) no-repeat center 0;
}
.dd-prog-bar-over {
    background: url("/getImage.php?src=dd-step-over.jpg") no-repeat;
    margin-left: 19px;
}
.dd-sele-name li {
    font: normal 18px/20px 'bluehost', serif;
}
.dd-sele-name .step1 {
    width: 85px;
    padding-right: 0px;
    padding-left: 10px;
}
.dd-opt #hardware_addons, .dd-opt #software_addons, .dd-opt #domain_options {
    padding: 0;
}
.features-rows h3 {
    font: normal 18px 'bluehost', serif;
}
.features-rows p {
    font: normal 14px/19px 'bluehost', serif;
}
.dplan-list .plan-featured .pricing {
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #06897C), color-stop(1, #00A79D) );
    background: -moz-linear-gradient( top, #06897C 5%, #00A79D 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#06897C', endColorstr='#00A79D');
    background-image: -ms-linear-gradient(top, #06897C 0%, #00A79D 100%);
    background-color: #06897C;
    color: #fff;
    -moz-border-radius: 6px 6px 0 0;
    -webkit-border-radius: 6px 6px 0 0;
    -ms-border-radius: 6px 6px 0 0;
    border-radius: 6px 6px 0 0;
    border: none;
}
.dd-opt .link-back {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #00A79D;
    border-radius: 5px;
    display: inline-block;
    font: 16px "bluehost";
    padding: 5px 8px;
}
.dplan-list .plans.plan-featured {
    border: none;
}
.dplan-list .plans.plan-featured .name {
    height: initial;
}
.dplan-list .plans.plan-featured .pname {
    height: inherit;
}
.tab-content {
    overflow: auto;
}
.tab-content .features {
    overflow: hidden;
}
.tab-content .columns {
    width: 306px;
    min-height: 184px;
    padding: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.tab-content .columns .title {
    padding: 12px 0 12px 58px;
    font-size: 20px;
}
.columns.extreme-speed .title {
    background: url('/getImage.php?src=bhiextremespeed.png') no-repeat scroll 0 50% transparent;
}
.columns.remote-desktop .title {
    background: url('/getImage.php?src=bhiremotedesktop.png') no-repeat scroll 0 50% transparent;
}
.columns.instant-provisioning .title {
    background: url('/getImage.php?src=bhiinstantprovisioning.png') no-repeat scroll 0 50% transparent;
}
.columns.raid-storage .title {
    background: url('/getImage.php?src=bhiraidstorage.png') no-repeat scroll 0 50% transparent;
}
.columns.dedicated-support .title {
    background: url('/getImage.php?src=bhidedicatedsupport.png') no-repeat scroll 0 50% transparent;
}
.columns.ssl-certificates .title {
    background: url('/getImage.php?src=bhisslcertificates.png') no-repeat scroll 0 50% transparent;
}
.columns.domain-privacy .title {
    background: url('/getImage.php?src=bhidomainprivacy.png') no-repeat scroll 0 50% transparent;
}
.columns.sitelock .title {
    background: url('/getImage.php?src=bhisitelock.png') no-repeat scroll 0 50% transparent;
}
.columns.site-backup .title {
    background: url('/getImage.php?src=bhisitebackup.png') no-repeat scroll 0 50% transparent;
}
.ui-subheading.grey.small {
    color: #666;
    padding-top: 3px;
    padding-bottom: 45px;
    font-size: 16px;
}
.features-wrp .features .list-cont.support {
    background: url("/getImage.php?src=bhisupport.png") no-repeat scroll 0 0 transparent;
}
.features-wrp .features .list-cont.tech {
    background: url("/getImage.php?src=bhitech.png") no-repeat scroll 0 0 transparent;
}
.features-wrp .features .list-cont.uptime {
    background: url("/getImage.php?src=bhiuptime.png") no-repeat scroll 0 0 transparent;
}
.features-wrp .features .list-cont.easytomanage {
    background: url("/getImage.php?src=bhieasytomanage.png") no-repeat scroll 0 0 transparent;
}
.features-wrp .features .list-cont.advance {
    background: url("/getImage.php?src=bhiadvancedcapabilities.png") no-repeat scroll 0 0 transparent;
}
.features-wrp .features .list-cont {
    background-position: 0 20px !important;
}

.tab-content .columns .title {
    min-height: initial;
    margin: 0;
    line-height: normal;
    text-indent: inherit;
}
.features .desc {
    min-height: initial;
    margin: 0;
    padding: 5px 0;
    line-height: normal;
    /* font-size: 1.4em; */
    text-indent: inherit;
    font: normal 16px bluehost, Arial, Helvetica, sans-serif;
}
.features-wrp h3 {
    margin: 0;
}
.features .list-cont p {
    min-height: initial;
    margin: 0;
    padding: 5px 0;
    line-height: normal;
    font: normal 16px bluehost, Arial, Helvetica, sans-serif;
    text-indent: initial;
}
.dd-server-cart h3 {
    background: url("/getImage.php?src=dd-cart-bg.gif") no-repeat scroll 0 0 #CFCFCF;
    font-size: 20px;
    left: -21px;
    padding: 13px;
    position: relative;
    text-align: center;
    text-shadow: 1px 1px 1px #FFFFFF;
    width: 267px;
    color: #636363;
}
.dd-cart-item p {
    margin: 0;
}
.dd-prog-bar {
    background-image: url('/getImage.php?src=dd-step-bg.jpg');
}
/* DD server ends here */
.hosting_type_selector {
    box-shadow: none;
}
.hosting_type_selector {
    margin: 0 auto;
    border-radius: 0;
    box-shadow: 0 10px 10px -7px #AAA inset;
    text-align: center;
}
.nav-on-skinny-bar {
    position: relative;
    top: 115px;
    z-index: 5;
    box-shadow: none;
}
.tabs2 {
    display: block;
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: center;
    text-transform: lowercase;
    font-size: 1.2em;
    color: #777;
    position: relative;
}
.tabs2 li, .sidetabs2 li {
    display: inline-block;
    margin: 0;
}
.tabs2 a, .sidetabs2 a {
    background: #FFF;
    border: 1px solid #00A79D;
    border-right: 0;
    border-radius: 0;
    text-decoration: none;
    color: #00A79D;
}
.tabs2:after {
    content: "";
    display: table;
    clear: both;
    visibility: hidden;
}
.tabs2 li a.active, .tabs2 li a:hover, .sidetabs2 li a:hover {
    background: #00A79D;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0%, #06897C), color-stop(100%, #00A79D));
    background: -webkit-linear-gradient(bottom, #06897C 0%, #00A79D 100%);
    background: -moz-linear-gradient(bottom, #06897C 0%, #00A79D 100%);
    background: -ms-linear-gradient(bottom, #06897C 0%, #00A79D 100%);
    background: -o-linear-gradient(bottom, #06897C 0%, #00A79D 100%);
    background: linear-gradient(to top, #06897C 0%, #00A79D 100%);
    color: #fff;
}
.tabs2 li:first-child a {
    border-radius: .375em 0 0 .375em;
}
.tabs2 a.active, .sidetabs a.active {
    cursor: default;
}
.tabs2 a.active {
    margin-bottom: 0px;
}
.tabs2 a.last {
    border-right: 1px solid #00A79D;
    border-radius: 0 .375em .375em 0;
}
.hosting_type_selector {
    box-shadow: none;
}
.tech_spec {
    width: 12em;
}
#bar_dedicated {
    background: url("https://www.bluehost.com/media/shared/info/products/_bh/shared_bar_support.jpg") center center no-repeat #837978;
    background-size: 1920px 1024px;
}


/* DD windows starts here */

.tabs a, .sidetabs a {
    border-right: 1px;
}
.sub-heading {
    font: 600 24px Arial, Helvetica, sans-serif;
}
.row-indent {
    margin:0;
}
.ui-heading {
    text-transform: none;
    padding-top: 60px;
}
.thumb-for-ds.windows {
    background: url("/getImage.php?src=bhiwindowsdedihero.png") no-repeat scroll 0 0 transparent;
    width: 36%;
}
.dd-prog-bar {
    background: url(/getImage.php?src=dd-step-bg.jpg) no-repeat center 0;
    position: relative;
    overflow: hidden;
    z-index: 10;
}
.dd-prog-bar-over {
    background-image: url('/getImage.php?src=ddwindowsstepsoverlay.jpg') !important;
    left: 110px;
}
.dd-prog-bar-over {
    background: url("/getImage.php?src=dd-step-over.jpg") no-repeat;
    height: 39px;
    left: 0;
    margin-left: 19px;
    position: absolute;
    width: 135px;
    z-index: 100;
}
.dd-sele-name {
    margin-left: 110px;
}
.server_loc_tabs {
    position: relative;
    left: auto;
    text-align: center;
    font-size: 20px;
    padding: 30px 0;
}
.server_loc_tabs img {
    vertical-align: bottom;
}
.dd-opt {
    width: 100%;
    margin: 0 0 60px 0;
    padding: 0;
}
ul.country_specific_tabs {
}
.tab-content {
    overflow: auto;
}
.tab-content .features {
    overflow: hidden;
}
.tab-content .columns {
    width: 306px;
    min-height: 209px;
    padding: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.tab-content .columns .title {
    padding: 12px 0 12px 58px;
    font-size: 20px;
}
.columns.extreme-speed .title {
    background: url('/getImage.php?src=bhiextremespeed.png') no-repeat scroll 0 50% transparent;
}
.columns.remote-desktop .title {
    background: url('/getImage.php?src=bhiremotedesktop.png') no-repeat scroll 0 50% transparent;
}
.columns.instant-provisioning .title {
    background: url('/getImage.php?src=bhiinstantprovisioning.png') no-repeat scroll 0 50% transparent;
}
.columns.raid-storage .title {
    background: url('/getImage.php?src=bhiraidstorage.png') no-repeat scroll 0 50% transparent;
}
.columns.dedicated-support .title {
    background: url('/getImage.php?src=bhidedicatedsupport.png') no-repeat scroll 0 50% transparent;
}
.columns.ssl-certificates .title {
    background: url('/getImage.php?src=bhisslcertificates.png') no-repeat scroll 0 50% transparent;
}
.columns.domain-privacy .title {
    background: url('/getImage.php?src=bhidomainprivacy.png') no-repeat scroll 0 50% transparent;
}
.columns.sitelock .title {
    background: url('/getImage.php?src=bhisitelock.png') no-repeat scroll 0 50% transparent;
}
.columns.site-backup .title {
    background: url('/getImage.php?src=bhisitebackup.png') no-repeat scroll 0 50% transparent;
}
.ui-subheading.grey.small {
    color: #666;
    padding-top: 3px;
    padding-bottom: 45px;
    font-size: 16px;
}
.features-wrp .features .list-cont.support {
    background: url("/getImage.php?src=bhisupport.png") no-repeat scroll 0 0 transparent;
}
.features-wrp .features .list-cont.tech {
    background: url("/getImage.php?src=bhitech.png") no-repeat scroll 0 0 transparent;
}
.features-wrp .features .list-cont.uptime {
    background: url("/getImage.php?src=bhiuptime.png") no-repeat scroll 0 0 transparent;
}
.features-wrp .features .list-cont.easytomanage {
    background: url("/getImage.php?src=bhieasytomanage.png") no-repeat scroll 0 0 transparent;
}
.features-wrp .features .list-cont.advance {
    background: url("/getImage.php?src=bhiadvancedcapabilities.png") no-repeat scroll 0 0 transparent;
}
.features-wrp .features .list-cont {
    background-position: 0 20px !important;
}
.dd-server-cart h3 {
    margin: 0;
}
.dd-prog-bar-over {
    margin-left: 28px;
}
.dd-sele-name {
    padding: 0;
    margin: 0;
}
#dedicated-new-tabs {
    padding: 30px 0;
}
/*DD windows ends here */
/* ee-lite starts here */
.ee-lite-banner {
    background: #ffba24;
    width: 100%;
    padding: 65px 0 0 0;
    position: relative;
}
.ee-lite-banner-links {
    background: url('/getImage.php?src=images/cog-moreinfo-bg.png') repeat;
    width: 100%;
    margin: -132px 0 0 0;
    position: relative;
    box-shadow: 0 -4px 6px -2px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0 -4px 6px -2px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 0 -4px 6px -2px rgba(0, 0, 0, 0.6);
}
.ee-lite-input-wrapper {
    width: 143px;
    padding: 18px 0 40px 40px;
    vertical-align: middle;
}
.ee-lite-select-wrapper {
    width: 255px;
    padding: 39px 0 40px 40px;
    vertical-align: middle;
}
.ee-lite-total-wrapper {
    width: 182px;
    padding: 39px 30px 40px 40px;
    vertical-align: middle;
}
.ee-lite-submit-wrapper #purchase_button {
    text-align: center;
    background: #2fbe15;
    border: 1px solid #18900b;
    cursor: pointer;
    font-size: 18px;
    font-weight: 100;
    color: #fff;
    text-shadow: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    outline: none;
    text-decoration: none;
    width: 125px;
    height: 40px;
    line-height: 40px;
    margin: 40px 0 0 55px;
    padding: 0;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(216, 216, 216, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(216, 216, 216, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(216, 216, 216, 0.2);
    outline: none;
}
.ee-lite-total-wrapper .total-value{
    margin: 2px 0 0 0;
}
.ee-lite-submit-wrapper #purchase_button:hover {
    background: #34c918;
    -webkit-transition: background-color .2s ease-in-out;
    -moz-transition: background-color .2s ease-in-out;
    -o-transition: background-color .2s ease-in-out;
    transition: background-color .2s ease-in-out;
}
.registerfrm .row8 .btnWrp button{
    padding: 14px 8px;
}
.ee-lie-showtooltip {
    position: relative;
    display: inline-block;
    *display: inline;
    zoom: 1;
}
span.ee-lite-tooltip {
    position: absolute;
    width: 190px;
    color: #FFFFFF;
    background: #000000;
    height: 75px;
    line-height: 17px;
    text-align: center;
    visibility: hidden;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    padding: 10px 5px 5px 5px;
    text-shadow: none;
    font-size: 13px;
    font-family: "proxima_nova", sans-serif;
    font-weight: 100;
    margin-left: -86px;
    bottom: -47px;
    opacity: 0;
    right: -40px;
}
.ee-lie-showtooltip span:after {
    content: '';
    position: absolute;
    top: -8px;
    left: 100px;
    bottom: 0;
    margin-left: -8px;
    width: 0;
    height: 0;
    border-bottom: 8px solid #000;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
}
.ee-lie-showtooltip span {
    visibility: visible;
    opacity: 1;
    bottom: -57px;
    right: -40px;
    margin-left: -86px;
    z-index: 9999;
    -webkit-transition: opacity, bottom 0.2s ease;  /* Chrome 1-25, Safari 3.2+ */
    -moz-transition: opacity, bottom 0.2s ease;  /* Firefox 4-15 */
    -o-transition: opacity, bottom 0.2s ease;  /* Opera 10.50ÃƒÂ¢Ã¢â€šÂ¬"12.00 */
    transition: opacity, bottom 0.2s ease;  /* Chrome 26, Firefox 16+, IE 10+, Opera     12.50+ */
}
#ee-lite-wrapper {
    margin: -35px 0 0 0;
}
.ee-lite-plans-form label {
    color: #666;
}
.eelite-per-account-space {
    font: normal 16px/18px bluehost, Arial, Helvetica, sans-serif;
    margin: 0;
}
.ee-lite-select-wrapper {
    padding: 16px 0 40px 40px;
}
.ee-lite-total-wrapper {
    padding: 16px 30px 40px 40px;
}
.ee-lite-features ul {
    margin: 0;
    padding: 0;
}
#ee-lite-wrapper h3 {
    font: normal 16px/1.25 bluehost, 'Segoe UI', 'Gill Sans', 'Gill Sans MT', GillSans, 'Trebuchet MS', Arial, sans-serif;
}
#ee-lite-wrapper p {
    font: normal 15px bluehost, Arial, Helvetica, sans-serif;
    margin: 0;
}
#ee-lite-wrapper h2 {
    text-transform: uppercase;
}
#ee-lite-wrapper h4 {
    margin: 0;
}
ul#ee-sl-value {
    margin: 0;
    padding: 0;
}
ul#ee-sl-value li {
    margin: 0;
}
/* ee-lite ends here */



/* vps starts here */
.vps-addons table td {
    font-size: 16px;
    padding: 18px 14px;
    vertical-align: top;
    color: #333;
}
.vps-addons table td.col3 div {
    width: 275px;
    font-size: 14px;
    color: #888;
}
.vps-domain-name .vps-domain-block label {
    display: block;
}
.vps-summary-block {
    float: right;
    width: 300px;
}
.vps-summary-block table th {
    padding: 10px 20px;
    font-size: 20px;
    color: #0f0f0f;
    background-color: #ededed;
    text-transform: lowercase;
    font-weight: bold;
}
.vps-summary-block table td {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #f6f6f6;
    border-top: 2px solid #fff;
}
.vps-summary-block table td div {
    color: #949393;
    font-size: 13px;
    font-style: italic;
}
.vps-tep-1 {
    height: 39px;
    width: 720px;
    background: url("/getImage.php?src=vps-step-l1.jpg") no-repeat 0px 0;
    position: absolute;
    top: 0px;
    left: 105px;
    z-index: 1
}
.vps-step-2 {
    height: 39px;
    width: 134px;
    background: url("/getImage.php?src=vps-step-l2.jpg") no-repeat 0px 0;
    position: absolute;
    top: 0px;
    left: 105px;
    z-index: 2;
}
#steps-wrp {
    position: relative;
    height: 100px;
}
.dd-sele-name {
    padding: 0;
}
.bullet-list ul {
    margin: 0 0 0 10px;
    padding: 0;
}
.vps-summary-block {
    border: none;
}
.vps-summary-block table th {
    border-right: none;
}
.vps-summary-block table td {
    border-right: none;
}
a#checkout-button:hover {
    text-decoration: none;
}
.shadow_div .row-indent {
    margin: 0 auto;
}
/* vps ends here */


/* sitebuilder starts here */
.ui-subheading.hosting-select {
    text-align: center;
}
.ic-diy-1 {
    background: url("/getImage.php?src=icdiy1.png") no-repeat scroll 0 0px;
    background-size: contain;
}
.ic-diy-2 {
    background: url("/getImage.php?src=icdiy2.png") no-repeat scroll 0 0px;
    background-size: contain;
}
.ic-diy-3 {
    background: url("/getImage.php?src=icdiy3.png") no-repeat scroll 0 0px;
    background-size: contain;
}
.ic-diy-4 {
    background: url("/getImage.php?src=icdiy4.png") no-repeat scroll 0 0px;
    background-size: contain;
}
.ic-diy-5 {
    background: url("/getImage.php?src=icdiy5.png") no-repeat scroll 0 0px;
    background-size: contain;
}
.site-builder li.p-name {
    margin: 0;
}
.icon-xs{
    width: 70px;
    height: 70px;
    display: inline-block;
}

/* sitebuilder ends here */

/* Hosting starts here */

#upsell_modal h1, .modal_content h1 {
    margin: 0;
}
/* hosting ends here */

/* SSl starts here */

.sslc-banner {
    margin-top: -35px;
    padding: 30px 0 0 0;
}
.sslc-price-row h3 {
    margin: 0;
}
.sc-plans h2 {
    margin: 0;
}
.ui-button2:hover {
    text-decoration: none;
}
.feq-wrp .ssl-tabs a.active:hover {
    text-decoration: none;
    pointer-events: none;
    cursor: default;
}
#sl-dailyscan, #sl-threats, #sl-notification {
    display: none;
}
.sl-howitworks h2 {
    margin: 0;
}
/* SSL ends here */

/*Sitelock starts here */

table.sl-plans-pricing tr.even> td {
    background: #F8F8F8;
}
.sl-head-banner, #cog-wrapper .cog-banner {
    margin-top: -35px;
}
.sl-view-plans:hover, .sl-learn-more:hover {
    text-decoration: none;
}
/*Sitelock ends here */

/* Homepage starts here */

/* Nav menu starts here */

.nav-bar li a {
    padding: 0 15px;
}
/* nav menu ends here */

.header .end {
    top: 26px;
}
.cover_wrap ul li {
    background: url(/getImage.php?src=myUploadedImages/ictic.png) no-repeat 0 5px;
    padding: 0 0 0 20px;
}
.features li {
    background: none;
}
.rides-cs .btnOpen, .rides-cs .btnCtn {
    width: 36px;
    height: 152px;
}
.hero {
    background-image: url(https://www.bluehost.com/media/shared/info/about_us/_bh/hero_about.jpg);
}
.headline p {
    line-height: 1.4em;
    text-indent: 2em;
}
.attention {
    margin-bottom: 0;
}
.hero.home_hero {
    height: 30em;
    background-image: url(https://www.bluehost.com/media/shared/info/index/_bh/shared2x.jpg);
    color: #FFF;
    position: relative;
    background-position: center;
    -ms-behavior: url(https://www.bluehost.com/media/shared/general/backgroundsize.min.htc);
    background-size: cover;
}
.hero_background {
    display: none;
}
.hero.home_hero .cover_wrap {
    padding: 5.5em;
}
.hero.home_hero h1, .hero.home_hero .price, .hero.home_hero b, .hero.home_hero .heading {
    color: #00A79D;
    margin: -.5em 0 .26em;
    line-height: .8;
}
.hero.home_hero h1.promo_header_active {
    margin-bottom: 0;
}
.hero.home_hero.promo h3 {
    color: #00A79D;
    font-size: 3em;
    margin: -.5em 0 .26em .7em;
    line-height: .8;
}
.mini-col-left {
    width: 5em;
    display: inline-block;
    text-align: right;
}
.hero.home_hero .hookline {
    width: 14.5em;
    color: #00A79D;
    text-align: center;
    margin-left: 2em;
}
.hero.home_hero h2 {
    font-size: 2.2em;
    margin: 0;
    color: #6694c6;
}
.hero-promo-header {
    font-size: 2em;
    color: #00A79D;
}
.hero.home_hero .price {
    font-weight: bold;
}
.hero.home_hero li {
    font-size: 1.4em;
    color: #6694c6;
    line-height: 1em;
    margin: 0 0 .2em;
}
.hero.home_hero li b {
    display: inline-block;
    text-align: left;
}
.hero.home_hero ul {
    list-style: none;
    text-transform: lowercase;
}
.hero.home_hero li a {
    color: #6694c6;
}
.hero.home_hero .below-home {
    font-size: 1em;
    color: #00A79D;
    width: initial;
    text-align: left;
}
.hero.home_hero.vps {
    background-image: url(https://www.bluehost.com/media/shared/info/index/_bh/vps_hero.jpg);
    text-align: left;
}
.hero.home_hero.dedi {
    background-image: url(https://www.bluehost.com/media/shared/info/index/_bh/dedi_hero.jpg);
}
.hero.home_hero.cloud {
    background-image: url(https://www.bluehost.com/media/shared/info/index/_bh/cloud_hero.png);
    background-size: cover;
}
.hero.home_hero.support_slide {
    background-image: url(https://www.bluehost.com/media/shared/info/index/_bh/touching-desktop-guy2x.jpg);
    background-size: cover;
}
.hero.home_hero.dedi .heading, .hero.home_hero.support_slide .heading {
    width: 7em;
}
.hero.home_hero.ohwp_slide {
    background-image: url(https://www.bluehost.com/media/shared/info/index/_bh/salmon_jacket_and_mac.jpg);
    background-size: cover;
}
.ie8 .hero.home_hero.support_slide {
    background-image: url(https://www.bluehost.com/media/shared/info/index/_bh/touching-desktop-guy.jpg);
}
.servers {
    overflow: hidden;
    width: 100%;
    height: 298px;
}
.servers .wrapper {
    width: 1800px;
    left: 50%;
    top: 0;
    margin-left: -900px;
    position: relative;
    text-align: center;
}
.servers img {
    border: 0;
    margin: 0 75px;
    padding: 0;
}
.features .mojo {
    background-image: url(https://www.bluehost.com/media/shared/info/index/_bh/mojo.png);
}
.features .support {
    background-image: url(https://www.bluehost.com/media/shared/info/index/_bh/support.png);
}
.features .scale {
    background-image: url(https://www.bluehost.com/media/shared/info/index/_bh/scale.png);
}
.features .guarantee {
    background-image: url(https://www.bluehost.com/media/shared/info/index/_bh/guarantee.png);
}
.pro_services p.pro_services_desc {
    width: 23em;
    line-height: 1.5em;
    text-indent: 2em;
    font-size: 1.4em;
}
.delayed {
    display: none;
}
.double_pane .content_half p {
    width: 20em;
}
.features .svg_icon {
    width: 66px;
    height: 66px;
    margin: 0 auto;
}
.features a:hover {
    text-decoration: none;
}
#technology_by.double_pane {
    background: url(https://www.bluehost.com/media/shared/info/products/home_technology_bar.jpg) no-repeat scroll 0 -120px #000000;
    background-size: 1800px;
}
.optimized-icon {
    position: absolute;
    left: 34px;
    top: 70px;
}
.hero.ohwp_slide .cover_wrap {
    padding: 5.5em 9em;
}
.hero.ohwp_slide h2 {
    margin: 0;
    color: #00A79D;
    text-transform: uppercase;
    font-weight: 600;
}
.hero.ohwp_slide h2 b {
    color: #222;
    text-transform: uppercase;
    font-size: 1.3em;
    display: block;
    margin: 0;
}
.ohwp_slide p.ohwp {
    color: #444;
    font-size: 1.6em;
    text-transform: lowercase;
    padding-right: 9.5em;
}
.ohwp_slide .below-home {
    position: relative;
}
@media screen and (min-width: 1800px) {
    #technology_by.double_pane {
        background-size: cover;
    }
}
.adisc {
    text-align: center;
}
.unlimited:hover, .moneyback:hover, .always_support:hover {
    color: #00A79D;
}
.features li.moneyback {
    text-decoration: none;
}
.feature_sprite {
    background-image: url(https://www.bluehost.com/media/shared/info/index/_bh/home_sprite.png);
    width: 66px;
    height: 66px;
    margin: 0 auto;
}
.always_support .feature_sprite {
    background-position: 198px;
}
.instant_scalability .feature_sprite {
    background-position: 132px;
}
.moneyback .feature_sprite {
    background-position: 66px;
}
#p_tagline {
    text-transform: lowercase;
    font-size: 3em;
}
.hero.text-light h1, .hero.text-light h2, .hero.text-light .hookline, .hero.text-light a, .hero.text-light b, .hero.text-light .below-home, .hero.text-light li a, .hero.text-light li {
    color: #fff;
    text-shadow: 1px 1px 3px #000;
    text-shadow: 1px 1px 3px rgba(0,0,0,.5);
}
.hero.text-dark h1, .hero.text-dark h2, .hero.text-dark .hookline, .hero.text-dark a, .hero.text-dark b, .hero.text-dark .below-home, .hero.text-dark li a, .hero.text-dark li {
    color: #4d4d4d;
    text-shadow: 1px 1px 3px #fff;
    text-shadow: 1px 1px 3px rgba(255,255,255,.2);
}
.hero a.btn_primary {
    color: #fff;
}
.google-icon .svg_icon {
    width: 100px;
}
#cloud-hero {
    color: #fff;
    padding-right: 250px;
}
#cloud-hero h2 {
    font-size: 2.9em;
}
#cloud-hero h3 {
    font-size: 1.5em;
    line-height: 0.5em;
}
#cloud-hero h2, #cloud-hero h3, #cloud-hero a, #cloud-hero b {
    text-transform: none;
    color: #fff;
}
#cloud-hero .starting-price {
    margin: 20px 0;
    font-size: 1.8em;
}
#cloud-hero .btn_primary {
    margin-top: 30px;
    font-size: 1.7em;
    color: #fff;
}
.btn_dark, input.btn_dark {
    background: #1a1a1a;
    background: -moz-linear-gradient(left, #1a1a1a 0, #4d4d4d 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0, #1a1a1a), color-stop(100%, #4d4d4d));
    background: -webkit-linear-gradient(left, #1a1a1a 0, #4d4d4d 100%);
    background: -o-linear-gradient(left, #1a1a1a 0, #4d4d4d 100%);
    background: -ms-linear-gradient(left, #1a1a1a 0, #4d4d4d 100%);
    background: linear-gradient(to right, #1a1a1a 0, #4d4d4d 100%);
    color: #FFF;
    text-decoration: none;
    border: 0
}
.btn_dark:hover, input.btn_dark:hover {
    background: #4d4d4d
}
.btn_dark:active, input.btn_dark:active {
    background: #1a1a1a
}
.btn_dark:focus, input.btn_dark:focus {
    outline: 0
}
.btn_icon {
    padding-left: 3em
}
.btn_icon span {
    display: block;
    min-width: 1.2em;
    min-height: 1.2em;
    max-height: 1.2em;
    margin-right: .4em;
    position: absolute;
    top: .3em;
    left: 1em
}
.btn_video, .btn_video_no_text {
    background: 0 0;
    display: inline-block;
    width: 3em;
    height: 3em;
    border: .07em solid #FFF;
    border-radius: 1.8em;
    box-shadow: 0 1px 2px rgba(0,0,0,.1), inset 0 1px 2px rgba(0,0,0,.1);
    overflow: hidden;
    font-weight: 700;
    font-size: 1em;
    line-height: 3em;
    color: #FFF;
    -webkit-transition: all .1s;
    -moz-transition: all .1s;
    -o-transition: all .1s;
    transition: all .1s;
    position: relative;
    cursor: pointer
}
.btn_video:before, .btn_video_no_text:before {
    content: "";
    width: 0;
    height: 0;
    border-top: .6em solid transparent;
    border-bottom: .6em solid transparent;
    border-left: .8em solid #FFF;
    white-space: nowrap;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
    position: absolute;
    top: .8em;
    left: 1.2em
}
.btn_video_no_text:hover {
    background: #00A79D
}
.btn_video:hover:before, .ie8 .btn_video, .ie8 .btn_video_no_text {
    display: none
}
.btn_video:hover, .ie7 .btn_video, .ie8 .btn_video {
    background: #00A79D;
    width: auto;
    padding: 0 2em;
    text-decoration: none;
    text-indent: 0!important;
    line-height: 3em
}
.btn_inspect:after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 8px;
    right: 7px
}
.lt_ie9 .btn_inspect:after {
    top: 5px;
    right: 0
}
.btn_inspect:after:hover {
    -webkit-transform:rotate(0deg);
    -moz-transform:rotate(0deg);
    -ms-transform:rotate(0deg);
    -o-transform:rotate(0deg);
    transform:rotate(0deg);
}
.btn.disabled, .btn.disabled:hover, .disabled, .disabled:hover, a.btn.disabled, a.btn.disabled:hover, button.disabled, button.disabled:hover, input.disabled, input.disabled:hover {
    background: #CCC;
    border: #CCC 1px solid;
    color: #999;
    box-shadow: none;
    text-decoration: none;
    text-shadow: none!important;
    cursor: default
}
.sidetab_section.tab_section_bg, .tab_section.tab_section_bg {
    background: #FFF;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, #FFF), color-stop(100%, #EFEFEF));
    background: -webkit-linear-gradient(top, #FFF 80%, #EFEFEF 100%);
    background: -moz-linear-gradient(top, #FFF 80%, #EFEFEF 100%);
    background: -ms-linear-gradient(top, #FFF 80%, #EFEFEF 100%);
    background: -o-linear-gradient(top, #FFF 80%, #EFEFEF 100%);
    background: linear-gradient(to bottom, #FFF 80%, #EFEFEF 100%);
    border-radius: .375em;
    position: relative
}
.sidetab_content {
    display: inline-block;
    width: 79%;
    vertical-align: top
}
.tab_content {
    background: #fff;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    margin-top: -2em;
    padding: 2em 2.5em;
    overflow: hidden
}
.sidetab_content>*, .tab_content>* {
    display: none
}
.sidetab_content .shown, .tab_content .shown {
    display: block
}
.tabs {
    display: block;
    margin: 0;
    margin: 0;
    padding: 0;
    padding: 0;
    list-style-type: none;
    text-align: center;
    text-transform: lowercase;
    font-size: 1.2em;
    color: #777;
    position: relative;
    top: -.75em
}
.tabs:after {
    content: "";
    display: table;
    clear: both;
    visibility: hidden
}
.sidetabs {
    display: inline-block;
    width: 20%;
    margin: 0;
    padding: 0;
    position: relative
}
.sidetabs li, .tabs li {
    display: inline-block;
    margin: 0
}
.sidetabs li {
    display: block;
    float: none
}
.sidetabs a, .tabs a {
    background: #FFF;
    border: 1px solid #00A79D;/*border-right:0;*/
    border-radius: 0;
    text-decoration: none;
    color: #00A79D
}
.sidetabs a {
    height: auto
}
.tabs li:first-child a {
    border-radius: .375em 0 0 .375em
}
.tabs a.last {
    border-right: 1px solid #00A79D;
    border-radius: 0 .375em .375em 0
}
.sidetabs li a:hover, .tabs li a.active, .tabs li a:hover {
    background: #00A79D;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #06897C), color-stop(100%, #00A79D));
    background: -webkit-linear-gradient(bottom, #06897C 0, #00A79D 100%);
    background: -moz-linear-gradient(bottom, #06897C 0, #00A79D 100%);
    background: -ms-linear-gradient(bottom, #06897C 0, #00A79D 100%);
    background: -o-linear-gradient(bottom, #06897C 0, #00A79D 100%);
    background: linear-gradient(to top, #06897C 0, #00A79D 100%);
    color: #fff
}
.tabs li a:active {
    background: #2356A6;
    color: #FFF;
    text-decoration: none;
    cursor: default
}
.sidetab_content .pane, .tab_content .pane {
    display: none
}
.sidetab_content .pane.active, .tab_content .pane.active {
    display: block
}
.tabs a.active {
    margin-bottom: 0
}
.sidetabs a.active, .tabs a.active {
    cursor: default
}
.invoice li {
    padding: 1em
}
.invoice .row_header .price {
    font-size: 1em
}
.invoice .product {
    width: 47em;
    float: left;
    display: inline
}
.invoice .price {
    display: inline;
    float: right;
    width: 6em;
    font-size: 1.5em;
    text-align: right
}
.invoice .product h4 {
    margin: 0 0 .5em 0
}
.invoice .product p {
    margin: .5em
}
.invoice .product_price {
    font-style: italic
}
.video_bar_section {
    position: relative
}
.video_bar {
    background: #000;
    height: 31.4em;
    text-align: center;
    color: #FFF
}
.ie8 .video_bar {
    min-height: 235px;
    max-height: 435px
}
.video_bar iframe {
    display: block;
    margin: 0 auto
}
.video_bar:after {
    content: '';
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(0,0,0,.6)), color-stop(42%, rgba(0,0,0,.2)), color-stop(100%, rgba(0,0,0,0)));
    background: -webkit-linear-gradient(bottom, rgba(0,0,0,.6) 0, rgba(0,0,0,.2) 42%, rgba(0,0,0,0));
    background: -moz-linear-gradient(bottom, rgba(0,0,0,.6) 0, rgba(0,0,0,.2) 42%, rgba(0,0,0,0));
    background: -ms-linear-gradient(bottom, rgba(0,0,0,.6) 0, rgba(0,0,0,.2) 42%, rgba(0,0,0,0));
    background: -o-linear-gradient(bottom, rgba(0,0,0,.6) 0, rgba(0,0,0,.2) 42%, rgba(0,0,0,0));
    background: linear-gradient(to top, rgba(0,0,0,.6) 0, rgba(0,0,0,.2) 42%, rgba(0,0,0,0));
    display: block;
    width: 100%;
    height: .6em;
    position: absolute;
    bottom: 0
}
.video_bar a {
    margin: 8em auto;
    font-size: 1.5em
}
.video_close {
    display: none;
    width: 10em;
    margin: 0 auto;
    position: relative;
    top: -.3em;
    background-color: #00A79D;
    opacity: 0
}
.double_pane {
    background: #999;
    height: 20em;
    text-align: right;
    color: #FFF;
    position: relative
}
.double_pane iframe {
    display: block;
    margin: 0 auto
}
.double_pane h2 {
    margin: 1em 0 0 0;
    text-align: right;
    text-transform: lowercase;
    font-size: 3em;
    line-height: 1
}
.double_pane.dark_text h2, .double_pane.dark_text p {
    color: #333
}
.double_pane.blue_text h2, .double_pane.blue_text p {
    color: #00A79D
}
.double_pane:before {
    content: '';
    display: none;
    width: 100%;
    height: 19.9em;
    margin: -33px 0 0;
    position: absolute
}
.double_pane_phone {
    display: block;
    font-size: 1.8em;
    margin: .8em 0
}
.double_pane .content_half {
    float: left;
    height: 100%;
    padding-right: 33em;
    padding-left: 0
}
.double_pane .video_half {
    width: 50%;
    height: 100%;
    text-align: left;
    position: absolute;
    top: 0;
    left: 50%
}
.double_pane .action_buttons {
    position: absolute;
    bottom: 1em;
    left: 3em
}
.double_pane.content_right .action_buttons {
    left: auto
}
.double_pane .learn_more {
    margin: .8em 0
}
.double_pane.content_right .content_half {
    padding: 0 0 0 38em
}
.pro_services .cover_wrap p{text-align:center;}
.double_pane.content_right h2, .double_pane.content_right p {
    text-align: left
}
.double_pane.content_right .video_half {
    text-align: right;
    left: 0
}
.double_pane.content_right .learn_more {
    margin-right: 12em
}
.double_pane.content_right .video_half iframe {
    float: right
}
.double_pane p {
    clear: right;
    float: right;
    width: 100%;
    padding-top: .75em
}
.double_pane h2 {
    color: #FFF
}
.double_pane .expand_video {
    color: #FFF
}
.double_pane.content_right ul {
    margin: 0;
    padding-left: 1em;
    text-align: left
}
.double_pane.content_right .action_buttons {
    margin: 1em 0;
    text-align: left
}
.double_pane.content_right iframe {
    margin: 0
}
.double_pane_icon {
    width: 50px;
    height: 50px;
    margin-right: 1em
}
.double_pane_hover:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5000;
    right: 50.05%;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjM1Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjQwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMCIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, rgba(0,0,0,.5) 0, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0,0,0,.5)), color-stop(40%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,0)));
    background: -webkit-linear-gradient(top, rgba(0,0,0,.5) 0, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 100%);
    background: -o-linear-gradient(top, rgba(0,0,0,.5) 0, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 100%);
    background: -ms-linear-gradient(top, rgba(0,0,0,.5) 0, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,.5) 0, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 100%);
    filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#590000', endColorstr='#00000000', GradientType=0 );
    height: 130px
}
.lcol {
    margin-top: 1.5em;
    padding: 0;
    list-style-type: none
}
.lcol:after, .lcol:before {
    content: "";
    display: table;
    visibility: hidden
}
.lcol:after {
    clear: both
}
.lcol>li {
    float: left
}
.lcol.col1>li {
    width: 100%
}
.lcol.col2>li {
    width: 48%;
    margin-right: 4%
}
.lcol.col3>li {
    width: 32%;
    margin-right: 2%
}
.lcol.col4>li {
    width: 24.25%;
    margin-right: 1%
}
.ie8 .lcol.col4>li {
    width: 23%
}
.lcol.col5>li {
    width: 19.2%;
    margin-right: 1%
}
.lcol.col6>li {
    width: 16%;
    margin-right: .8%
}
.lcol.col2>li:nth-child(2n), .lcol.col3>li:nth-child(3n), .lcol.col4>li:nth-child(4n), .lcol.col5>li:nth-child(5n), .lcol.col6>li:nth-child(6n) {
    margin-right: 0
}
#cloud-pane {
    background-color: #00A79D;
    min-height: 320px
}
#cloud-pane a, #cloud-pane h1, #cloud-pane h2, #cloud-pane h3 {
    color: #fff;
    text-transform: none
}
#cloud-pane h2 {
    font-weight: 400;
    margin: 50px 0 30px 0
}
#cloud-pane .introduction, #cloud-pane-inverse .introduction {
    font-size: 1.5em;
    margin: 0;
    padding: 0;
    line-height: 1.5em;
}
#cloud-pane .introduction {
    color: #fff
}
#cloud-pane-inverse .introduction {
    color: #00A79D
}
#cloud-pane .more-cloud {
    margin: 40px 0 50px 0
}
.cloud-pane-container {
    margin: 0 auto;
    max-width: 1086px;
    padding-right: 426px;
    min-height: 320px
}
#cloud-pane .cloud-pane-container {
    background: url(https://www.bluehost.com/media/shared/general/illustrations/cloud_illustration.png) no-repeat;
    background-position: bottom right
}
#cloud-pane-text {
    text-align: left;
    max-width: 660px;
    padding: 0 20px;
    float: right
}
#cloud-pane-inverse {
    background-color: #edf4f9;
    min-height: 320px;
    border-style: solid;
    border-color: #00A79D;
    border-width: 1px 0
}
#cloud-pane-inverse a, #cloud-pane-inverse h1, #cloud-pane-inverse h2, #cloud-pane-inverse h3 {
    color: #00A79D;
    text-transform: none
}
#cloud-pane-inverse .btn_hairline:hover {
    color: #fff
}
.sticker {
    float: left;
    width: 28em;
    height: 8em;
    margin: 0 1em;
    padding: 0 0 0 2.5em
}
.sticker {
    background: #FFF;
    width: 9em;
    border: 1px solid #00A79D;
    border-radius: .375em;
    text-align: center;
    font-size: 1em
}
.sticker p {
    margin: 1em 0
}
.sticker .notice {
    display: block;
    font-weight: 200;
    font-size: 1.25em;
    font-family: bluehost;
    color: #00A79D
}
.sticker p {
    width: auto;
    margin: 1em 0 0
}
.sticker .price {
    float: right;
    width: 9em;
    height: 8em;
    margin: 0 0 0 2.5em;
    border-left: 1px solid #00A79D
}
.sticker .price p {
    width: auto;
    margin: 1em 0;
    font-size: 2em;
    color: #00A79D
}
.sticker .price small {
    display: block;
    font-size: .4em;
    color: #B2B2B2
}
.btn_sticker {
    background: #fff;
    border-radius: .375em;
    border: 1px solid #00A79D;
    color: inherit;
    display: block;
    height: 7.2em;
    padding: .5em 0;
    position: relative;
    text-align: center;
    text-transform: lowercase
}
.btn_sticker .notice {
    display: block;
    font-size: 2.6em
}
.btn_sticker .price_lower {
    margin-top: .5em
}
.btn_sticker .hover {
    font-size: 1.8em;
    height: 1.2em;
    left: 0;
    margin-top: -.7em;
    position: absolute;
    right: 0;
    top: 50%
}
.btn_sticker .hover, .btn_sticker:hover .shown, a:hover .btn_sticker .shown {
    display: none
}
.btn_sticker .shown, .btn_sticker:hover .hover, a:hover .btn_sticker .hover {
    display: block
}
.product_basic {
    background: #FFF;
    float: left;
    width: 28em;
    max-width: 30em;
    margin: 0 0 0 2.5%;
    margin: 1em 1em 0;
    padding: 0;
    border: 1px solid #00A79D;
    border-radius: .375em;
    text-align: center;
    color: inherit;
    position: relative
}
.product_basic .product_basic_name {
    margin: .8em 35% 0 0;
    padding: 0 1em;
    text-transform: lowercase;
    font-size: 1.625em
}
.product_basic .product_basic_desc {
    margin: .6em 35% 1.5em 0;
    padding: 0 1.7em
}
.product_basic .btn_sticker {
    height: auto;
    width: 35%;
    padding-top: 2em;
    border: 0;
    border-left: 1px solid #00A79D;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    font-size: .9em;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0
}
.product_basic:hover {
    text-decoration: none
}
.product-upsell {
    min-height: 70px;
    display: block;
    position: relative
}
.product-upsell, .product-upsell h2, .product-upsell h2:hover, .product-upsell h3, .product-upsell h3:hover, .product-upsell h4, .product-upsell h4:hover, .product-upsell p, .product-upsell p:hover, .product-upsell:hover {
    text-decoration: none
}
.product-upsell.full-wide .svg_icon {
    width: 40px;
    height: 40px;
    position: absolute
}
.product-upsell.full-wide {
    padding: 1em;
    text-align: center
}
.product-upsell.text-light h2, .product-upsell.text-light h3 {
    color: #fff
}
.product-upsell.full-wide h3 {
    font-size: 2.5em;
    margin: .2em 0
}
.full-wide .product-hooks {
    display: inline-block;
    width: 24em;
    float: left;
    padding-right: 3.5em;
    text-align: right;
    border-right: 1px solid #444
}
.full-wide .product-hooks p {
    font-size: 1.25em;
    font-weight: 600;
    margin: 0 0 1em
}
.full-wide .product-logo {
    float: left;
    display: inline;
    text-align: left;
    width: 33em;
    padding: 1em .5em 1em 1.5em;
    margin-bottom: .5em
}
.full-wide .product-logo img {
    float: left;
    display: inline;
    margin: 0 1em
}
.product-upsell.full-wide .svg_icon {
    top: 3em
}
.product-upsell.optimized-hosting .svg_icon g * {
    fill: #9d9d9d
}
.full-wide .product-logo.is-optimized img {
    max-width: 100px
}
.full-wide .product-logo.is-optimized h2 {
    float: left;
    display: inline-block;
    max-width: 11em;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 2em;
    width: 10em;
    margin: .5em 0 .1em
}
.full-wide .product-logo.is-optimized h4 {
    display: inline;
    float: left;
    font-weight: 600;
    font-size: 2em;
    margin: 0;
    text-transform: uppercase
}
.full-wide.optimized-hosting.product-upsell {
    background: #000;
    background: -moz-linear-gradient(left, #000 0, #434343 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0, #000), color-stop(100%, #434343));
    background: -webkit-linear-gradient(left, #000 0, #434343 100%);
    background: -ms-linear-gradient(left, #000 0, #434343 100%);
    background: linear-gradient(to right, #000 0, #434343 100%)
}
.headline {
    text-align: center
}
.headline .heading, .headline .subheading {
    margin: 0 0 .3em;
    text-transform: lowercase;
    font-size: 3em
}
.no-text-transform-override .skinny-bar-small-text, .no-text-transform-override .subheading {
    text-transform: none
}
.headline .heading.smaller, .headline .subheading.smaller {
    font-size: 2em
}
.headline p {
    width: 30em;
    margin: 1em auto 3em
}
.headline_and_paragraph p {
    margin: 1em auto .5em
}
.tile_list {
    margin: 0 auto;
    padding: 1px 0;
    text-align: center
}
.tile_container p {
    width: 35em;
    margin: .5em auto 1em
}
.tile_search {
    padding: 2em 0
}
.tile_search input[type=search] {
    width: 20em
}
.tile {
    background: #fafafa;
    background: -moz-linear-gradient(top, #fff 0, #f5f5f5 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(100%, #f5f5f5));
    background: -webkit-linear-gradient(top, #fff 0, #f5f5f5 100%);
    background: -o-linear-gradient(top, #fff 0, #f5f5f5 100%);
    background: -ms-linear-gradient(top, #fff 0, #f5f5f5 100%);
    background: linear-gradient(to bottom, #fff 0, #f5f5f5 100%);
    display: block;
    margin: 0 0 .7em;
    border: 1px solid #FFF;
    border-radius: .6em;
    float: left;
    line-height: 1em;
    padding: 0;
    position: relative;
    text-align: center;
    vertical-align: top
}
.tile a {
    display: block;
    height: 100%;
    margin: 0;
    padding: 1em;
    width: 100%
}
.tile .svg_icon {
    display: block;
    width: 95px;
    height: 95px;
    margin: 0 auto;
    padding: 0 0 .5em
}
.tile.active {
    font-weight: 700
}
.tile:hover {
    background: #f5f5f5
}
.tile:active {
    background: #ebebeb
}
.tile:hover a {
    text-decoration: none
}
.tile .sticker_price {
    display: inline-block;
    width: 6em;
    margin: 0 0 0 -3em;
    padding: .2em 0;
    border-color: orange;
    color: orange;
    position: absolute;
    bottom: -.5em;
    left: 50%;
    z-index: 1
}
.flying_footer {
    background-color: #fff;
    background-color: rgba(255,255,255,.85);
    border-top: 1px solid #C3CCD7;
    display: block;
    width: 100%;
    height: 0;
    padding: 0;
    overflow: hidden;
    text-align: center;
    transition: height .2s linear;
    position: fixed;
    bottom: 0;
    z-index: 9999
}
.flying_footer div {
    width: 960px;
    margin: 0 auto
}
.visible_flying_footer {
    display: block;
    height: 50px
}
.flying_footer .icon {
    float: left;
    width: 5em;
    padding: .9em .95em;
    border-right: 1px solid #C3CCD7
}
.flying_footer .svg_icon {
    width: 22px;
    height: 22px
}
.flying_footer .icon.active {
    background-color: #06897C
}
.flying_footer .icon.active .svg_icon path, .flying_footer .icon.active .svg_icon polygon {
    fill: #FFF
}
.flying_footer .icon:hover {
    background-color: #FFF
}
.flying_footer .icon:hover .svg_icon path, .flying_footer .icon:hover .svg_icon polygon {
    fill: #06897C
}
.flying_footer .flying_right {
    float: right;
    margin: 0;
    padding: 0 1em 0 0;
    font-size: 1.45em;
    line-height: 2.18;
    color: #00A79D;
    text-transform: lowercase
}
.flying_footer .btn_primary {
    float: right;
    display: inline;
    margin: .6em 1em 0 0
}
.flying_footer_popup {
    background-color: #E4E4E4;
    display: none;
    width: 23em;
    padding: 1em 1.4em;
    transition: left .8s;
    position: absolute;
    top: 900px;
    left: 0;
    left: -19em;
    z-index: 10000
}
.lt-ie9 .flying_footer_popup {
    width: 26em;
    left: -360px
}
.flying_footer_popup dl, .flying_footer_popup dt, .flying_footer_popup h2 {
    margin: 0;
    padding: 0
}
.flying_footer_popup dd, .flying_footer_popup dt {
    float: left;
    width: 30%
}
.flying_footer_popup dt {
    margin: .3em 1.4em 0 0;
    text-align: right;
    font-size: .9em
}
.flying_footer_popup dd {
    font-size: 1.4em;
    color: #00A79D;
    width: 58%
}
.flying_footer_popup img {
    margin: 0 auto;
    position: relative;
    top: 1.75em;
    left: .5em;
    z-index: 10001
}
.price_star_link {
    color: #00A79D
}
.price_star_link:hover {
    text-decoration: none
}
.footer_select {
    background: #4685C1;
    background-clip: padding-box;
    margin: 0;
    padding: 0;
    border: 1px solid #5991C7;
    border-radius: .5em;
    position: relative;
    -webkit-background-clip: padding-box;
}
.footer_select dd, .footer_select dt {
    display: block;
    width: 9.38em;
    padding: 0 1.5em 0 1em;
    border-bottom: 1px solid #5991C7;
    overflow: hidden;
    text-transform: lowercase;
    text-overflow: ellipsis;
    line-height: 1.8em;
    color: #FFF
}
.footer_select dd:first-child {
    border-radius: .5em .5em 0 0
}
.footer_select dd:last-child {
    border-bottom: none;
    border-radius: 0 0 .5em .5em
}
.footer_select dd:hover {
    background: #3077BA
}
.checkbox, .radio {/*display:inline-block;margin-right:.5em;padding:.5em 1em;*/
    border: 1px solid transparent;
    border-radius: .325em;
    line-height: 1em;
    cursor: pointer
}
.checkbox label, .radio label {
    display: inline
}
.checkbox.active, .checkbox:focus, .checkbox:hover, .radio.active, .radio:focus, .radio:hover {

}
.blueform .checkbox.active, .blueform .checkbox:focus, .blueform .checkbox:hover, .blueform .radio.active, .blueform .radio:focus, .blueform .radio:hover, .blueform input[type=file] {
    background: #00A79D;
    border: 1px solid #FFF;
    color: #FFF
}
.checkbox:active, .radio:active {
    background: #CCC;
}
tr.radio:active,tr.radio:hover {
    background:none;
}
.checkbox input[type=checkbox], .radio input[type=radio] {
    margin-right: .5em;
    line-height: 1em
}
.feature.feature_basic .svg_icon {
    float: left;
    width: 40px;
    height: 40px
}
.feature.feature_basic .feature_name {
    margin: .4em 0 1.5em 2.5em;
    text-transform: lowercase;
    font-size: 1.2em;
    color: inherit
}
.feature.feature_vertical {
    text-align: center
}
.feature.feature_vertical .svg_icon {
    margin: 0 auto;
    width: 64px;
    height: 64px
}
.feature.feature_vertical .feature_name {
    margin: .3em 0;
    text-transform: lowercase;
    font-size: 1.2em
}
.feature.feature_vertical .feature_desc {
    font-size: 1.1em;
    margin: .5em 0
}
.feature.feature_vertical .feature_action {
    margin-top: 1em
}
.feature.feature_wide .svg_icon {
    float: left;
    width: 50px;
    height: 50px
}
.feature.feature_wide .feature_name {
    margin: 0 0 0 78px;
    text-transform: lowercase;
    font-size: 1.625em;
    line-height: 1.8em;
    color: inherit
}
.feature.feature_wide .feature_desc {
    margin: 0 0 0 78px
}
.feature:hover .feature_name {
    color: #00A79D
}
.feature:hover .svg_icon .outlined {
    display: none
}
.feature:hover .svg_icon .filled {
    display: block
}
.banner {
    background-color: #999
}
.banner {
    background: #999;
    min-height: 20em;
    height: auto!important;
    height: 20em;
    text-align: right;
    color: #FFF
}
.banner .cover_wrap {
    padding: 4em 32em 4em 4em
}
.banner p {
    margin: 1em 0 2em
}
.banner h2 {
    display: inline-block;
    width: 5em;
    margin: 0;
    text-align: right;
    font-size: 3em;
    line-height: 1
}
.banner:before {
    content: '';
    display: none;
    width: 100%;
    height: 19.9em;
    margin: -33px 0 0;
    position: absolute;
    left: 0
}
.banner.reverse .cover_wrap {
    padding: 4em 4em 4em 32em;
    text-align: left
}
.banner.reverse:before {
    display: none
}
.banner.reverse h2, .banner.reverse p {
    text-align: left
}
.banner h2 {
    color: #FFF
}
.blueform {
    background: #00A79D;
    max-width: 52.5em;
    padding: 1em 2em;
    border-radius: .325em;
    color: #FFF
}
.blueform a, .blueform h1, .blueform h2, .blueform h3, .blueform h4, .blueform h5, .blueform h6, .blueform input[type=checkbox], .blueform input[type=file], .blueform input[type=radio], .blueform label {
    color: #FFF
}
.blueform a.btn {
    color: #555
}
.blueform .btn_hairline.active, .blueform .btn_hairline.inverse.active, .blueform .btn_hairline.inverse:hover, .blueform .btn_hairline:hover, .blueform a:hover .btn_hairline {
    border-color: #CCC
}
.triform {
    display: inline-block;
    margin-bottom: .7em;
    overflow: visible;
    position: relative
}
.triform.active:after {
    content: "";
    display: block;
    width: 0;
    margin: .5em 50% 1em;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #3575BC;
    border-left: 15px solid transparent;
    position: absolute;
    bottom: -2em;
    left: -15px
}
.folded_image {
    padding-top: 300px;
    position: relative;
    margin: 1px 0 0;
    color: #fff;
    text-align: center
}
.folded_image h2 {
    color: #fff;
    word-spacing: .5em;
    margin-top: 0;
    font-size: 3em
}
.folded_image p {
    margin: 0 auto;
    width: 25em
}
.folded_image:before {
    content: '';
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(0,0,0,.6)), color-stop(42%, rgba(0,0,0,.2)), color-stop(100%, rgba(0,0,0,0)));
    background: -webkit-linear-gradient(bottom, rgba(0,0,0,.6) 0, rgba(0,0,0,.2) 42%, rgba(0,0,0,0));
    background: -moz-linear-gradient(bottom, rgba(0,0,0,.6) 0, rgba(0,0,0,.2) 42%, rgba(0,0,0,0));
    background: linear-gradient(to top, rgba(0,0,0,.6) 0, rgba(0,0,0,.2) 42%, rgba(0,0,0,0));
    display: block;
    width: 100%;
    height: 10px;
    position: absolute;
    top: 290px;
    z-index: 1
}
.lt_ie9 .folded_image {
    border-bottom: 1px solid #ccc
}
.folded_image .wrap {
    background-color: #00A79D;
    padding: 4em
}
.folded_image .wrap img {
    vertical-align: middle
}
.feature_list {
    background: #eaeaea;
    background: -webkit-linear-gradient(top, #eaeaea 50%, #fff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eaeaea), color-stop(100%, #fff));
    background: -moz-linear-gradient(top, #eaeaea 50%, #fff 100%);
    background: -ms-linear-gradient(top, #eaeaea 50%, #fff 100%);
    background: -o-linear-gradient(top, #eaeaea 50%, #fff 100%);
    background: linear-gradient(to bottom, #eaeaea 50%, #fff 100%);
    filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeaea', endColorstr='#ffffff', GradientType=0 );
    margin-top: -2.5em;
    padding-top: 2em
}
.lte_ie9 .feature_list {
    margin-top: auto;
    padding-top: auto
}
.feature_list .tab_section {
    width: 960px;
    margin: 0 auto
}
.feature_list .feature_list_heading, .feature_list .feature_list_subheading {
    margin-bottom: .2em;
    text-align: center;
    text-transform: lowercase;
    font-size: 3em
}
.feature_list .feature_list_subheading {
    margin: .2em 0 2.4em;
    font-size: 1.2em;
    color: inherit;
    text-transform: none
}
.feature_list .pane ul {
    padding: 0;
    clear: both
}
.feature_list .pane li {
    float: left;
    width: 30.3%;
    min-height: 11em;
    margin: 1.5%;
    list-style: none;
    line-height: 1.4em
}
.lt_ie9 .feature_list .pane li {
    height: 16em
}
.feature_list .pane li .btn_hairline {
    font-size: .9em;
    margin: .8em 0
}
article.tool .feature_list .pane li {
    height: 16em
}
.feature_list.no_tabs {
    background-color: #fff;
    margin-top: 0
}
.post_features {
    text-align: center
}
.mojo_bar .mojo_left {
    padding: 0 3em;
    width: 48%;
    float: left;
    text-align: center
}
.mojo_bar h2 {
    margin: 2.3em 0 .4em
}
.mojo_bar .links a {
    color: #333;
    font-size: 1.2em;
    padding: 0 .8em;
    border-right: 1px solid #333;
    margin-bottom: .5em
}
.mojo_bar .links p {
    display: none
}
.mojo_bar .links a.active {
    color: #3575B6
}
.mojo_bar .links a.last {
    border-right: none
}
.mojo_bar p {
    clear: both;
    line-height: 1.4em;
    margin-top: 2em;
    height: 7em
}
.mojo_bar_image {
    float: right;
    margin: 3em
}
.contact_bar, .ribbon-link {
    background-color: #00A79D;
    background: -webkit-gradient(linear, left bottom, right bottom, color-stop(0, #06897C), color-stop(100%, #00A79D));
    background: -webkit-linear-gradient(left, #06897C 0, #00A79D 100%);
    background: -moz-linear-gradient(left, #06897C 0, #00A79D 100%);
    background: -ms-linear-gradient(left, #06897C 0, #00A79D 100%);
    background: -o-linear-gradient(left, #06897C 0, #00A79D 100%);
    background: linear-gradient(to right, #06897C 0, #00A79D 100%);
    padding: 1em;
    color: #fff;
    text-align: center;
    position: relative
}
.ribbon-link {
    display: block;
    min-height: 4.5em
}
.lt_ie9 {
    min-height: 2.5em
}
.ribbon-link:hover {
    text-decoration: none
}
.ribbon-link h2, .ribbon-link p {
    display: inline;
    color: #fff
}
.contact_bar.shadow_top, .ribbon-link.shadow_top {
    padding: 2.1em 0 1.2em;
    z-index: -4;
    top: -2.2em;
    margin-bottom: -2.1em
}
.contact_bar .left_text, .ribbon-link .left_text {
    font-size: 2.2em
}
.contact_bar .smallest_text, .ribbon-link .smallest_text {
    padding: 0 1.4em;
    position: relative;
    top: -.2em
}
.contact_bar .phone {
    font-size: 2.2em
}
.ribbon-link .svg_icon {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 1em
}
.ribbon-link .svg_icon g * {
    fill: #fff
}
.social_bar {
    background-color: #3575BA;
    margin-top: 2.4em;
    padding: 0;
    text-align: center;
    color: #fff
}
.social_bar .social_blurb {
    font-size: 2.25em;
    line-height: 2em;
    margin-right: 1em
}
.social_bar a {
    color: #fff;
    display: inline-block;
    margin: 0 .5em;
    vertical-align: text-bottom
}
.social_bar a:hover {
    color: #C9E3FF;
    text-decoration: none
}
.social_bar .svg_icon {
    width: 30px;
    height: 30px;
    vertical-align: middle
}
.social_bar a path, .social_bar a polygon, .social_bar a rect {
    fill: #fff
}
.social_bar a:hover path, .social_bar a:hover polygon, .social_bar a:hover rect {
    fill: #C9E3FF
}
.hide {
    display: none!important
}
.hero {
    min-height: 23.6em;
    position: relative
}
.hero.short {
    height: 14.4em
}
.hero h1 {
    margin: 0
}
.hero h1 b {
    display: block
}
.lt-ie9 .hero h1 {
    font-size: 2.6em
}
.hero p {
    width: 22.5em;
    margin-bottom: 1.2em
}
.hero .aside {
    position: absolute;
    top: 0;
    right: 0;
    width: 33em;
    width: 52vw;
    height: 20.6em
}
.partner_list {
    width: 960px;
    margin: 0 auto;
    padding: 1px 0;
    text-align: center
}
.partner_list .partner_list_heading {
    margin-bottom: 0;
    text-transform: lowercase;
    font-size: 3em
}
.partner_list .partner_list_desc {
    width: 36em;
    margin: 1em auto 2em
}
.partner_list .partner_search {
    padding: 1em 0
}
.partner_list .partner_search input {
    width: 20em
}
.partner_list .partner_list_show_all {
    text-transform: lowercase
}
.tools {
    width: 960px;
    height: 34em;
    margin: 0 auto;
    padding: 1px 0;
    text-align: center
}
.tools h2 {
    margin: 1em 0 0;
    font-size: 3em
}
.tools p {
    width: 36em;
    margin: 1em auto 3em;
    font-size: .9em
}
.tools input[type=search] {
    width: 20em;
    padding: .25em;
    border: 1px solid;
    border-radius: .25em;
    font-size: 1.5em;
    color: #00A79D
}
.tools .featured_tools {
    margin: 3em 0 1em;
    padding: 0;
    list-style: none
}
.featured_tools .tool {
    background: #AAA;
    display: inline-block;
    width: 10em;
    height: 7em;
    margin: 0 .5em;
    padding: 4em 2em 0;
    vertical-align: top;
    color: #00A79D
}
.tools #server_features {
    display: block;
    margin: 1em auto;
    font-size: 1em
}
.rotating_server .rotating_image {
    margin: 4em auto 0
}
.rotating_server .cover_wrap {
    text-align: center
}
.rotating_server .rotating_server_link {
    position: relative;
    top: -3.8em;
    z-index: 10
}
.rotating_server .rotating_server_link .click_text {
    display: none
}
.rotating_server_link.active:after {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    top: -3px
}
.lt_ie9 .rotating_server_link.active:after {
    top: 5px;
    right: 0
}
.double_pane.content_right {
    margin-top: -.2em
}
.tech_spec_container {
    background: #000;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000), color-stop(100%, #333));
    background: -webkit-linear-gradient(top, #000 0, #333 100%);
    background: -moz-linear-gradient(top, #000 0, #333 100%);
    background: -ms-linear-gradient(top, #000 0, #333 100%);
    background: -o-linear-gradient(top, #000 0, #333 100%);
    background: linear-gradient(to bottom, #000 0, #333 100%);
    height: 0;
    overflow: hidden;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    transition: all .4s ease-out;
    position: relative;
    top: -4.8em
}
.tec_spec_showing {
    height: auto;
    padding: 2em
}
.tech_spec {
    width: 14em;
    min-height: 27.5em;
    padding: .625em;
    border-radius: .5em;
    border: 1px solid #097AB6;
    float: left;
    margin: 1em .5em 2em
}
.tech_spec:hover {
    background: #00A79D
}
.tech_spec.footer {
    display: none;
    margin-bottom: .8em;
    min-height: 11em;
    width: 59em
}
.lt-ie9 .tech_spec {
    min-height: 22em
}
.tech_spec_container .cover_wrap {
    text-align: center
}
.tech_spec dt {
    margin: .3em 0 1em;
    padding: 0 0 0 1.9em;
    text-transform: lowercase;
    font-size: 1.6em;
    line-height: 1.5em;
    color: #FFF;
    text-align: left;
    position: relative
}
.tech_spec_icon .svg_icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    position: absolute;
    left: 0
}
.tech_spec_icon .svg_icon g * {
    fill: #fff
}
.tech_spec dt.icon_memory, .tech_spec dt.icon_power {
    margin-top: 2em
}
.tech_spec dd {
    display: block;
    clear: both;
    margin-bottom: 1em;
    font-weight: 700;
    font-size: .9em;
    color: #FFF
}
.tech_spec.footer div {
    width: 32em;
    text-align: left;
    margin-left: 3.3em
}
.tech_spec.footer span {
    width: 10em;
    float: left;
    color: #fff
}
.tech_spec_container .disclaimer {
    clear: both;
    font-size: .75em;
    text-align: left;
    margin: .4em 0 0 1em;
    color: #eaeaea
}
.tech_spec dd:after {
    content: "";
    display: table;
    clear: both;
    visibility: hidden
}
.spec_name {
    display: inline;
    float: left;
    width: 4em;
    margin-right: .5em;
    text-align: right;
    font-weight: 400;
    font-size: .9em
}
.spec_name:after {
    content: ":"
}
.spec {
    display: inline;
    float: right;
    width: 8.7em;
    text-align: left
}
.tech_line {
    background-color: #3575B5;
    position: absolute;
    z-index: 10
}
.tech_circle {
    width: 1em;
    height: 1em;
    border: 3px solid #3575B5;
    border-radius: .5em;
    position: absolute
}
.price_display {
    width: 960px;
    height: 100%;
    margin: 0 auto;
    position: relative
}
.price_display li {
    font-size: 1.1em
}
.price_display:after {
    content: '.';
    display: block;
    clear: both;
    visibility: hidden
}
.price_display .left_info {
    float: left;
    width: 48%;
    padding: 0 2em 0 6em;
    text-align: right
}
.price_display .right_info {
    float: right;
    width: 52%;
    text-transform: lowercase
}
.price_display_first {
    float: left;
    width: 15em;
    margin-bottom: 2em
}
.price_display_main {
    display: block;
    width: 15em;
    border-radius: .5em;
    box-shadow: 0 4px 6px #7F7F7F;
    position: relative
}
.price_display_main .price_star_link {
    color: #fff
}
.price_display_main header {
    display: block;
    width: 15em;
    margin: 0 auto;
    border-radius: .5em .5em 0 0;
    overflow: hidden;
    text-align: center;
    color: #FFF
}
.price_display_main .price {
    display: block;
    width: 100%;
    padding: .15em 0 .18em;
    font-size: 3em
}
.price_display_main .price .per_month {
    display: block;
    width: 100%;
    margin: -.6em 0 .5em;
    font-size: .38em
}
.price_display_main ul {
    background-color: #E0E0E0;
    width: 15em;
    margin: 0 auto;
    padding: 1.4em 0 2.4em;
    border-radius: 0 0 .5em .5em;
    list-style-type: none;
    text-align: center
}
.price_display_main li {
    padding-bottom: .6em
}
.price_display_second {
    display: block;
    width: 14em;
    margin-top: 1.5em;
    border: 1px solid #DADADA;
    border-left: none;
    border-radius: 0 .5em .5em 0;
    overflow: hidden;
    text-align: center;
    color: silver
}
.price_display_second ul {
    margin: 0;
    padding: 1em 0 2em;
    border-top: 1px solid #DADADA;
    list-style-type: none
}
.price_display_second li.details_header {
    font-size: 1.5em;
    color: #00A79D
}
.price_display_second li {
    padding-bottom: .4em
}
.price_display_second .price {
    display: block;
    width: 100%;
    font-size: 2.6em
}
.price_display_second .price span {
    display: block;
    width: 100%;
    margin: -.6em 0 .5em;
    font-size: .4em
}
.price_display_first .btn_primary {
    margin: -1em .86em;
    display: block
}
.price_display .btn_dark {
    margin-top: -1em;
    position: absolute;
    display: block;
    right: 2.5em;
    width: 8em
}
.price_display_main .price {
    background: #0D52B2;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #0D52B2), color-stop(100%, #00A79D));
    background: -webkit-linear-gradient(top, #0D52B2 0, #00A79D 100%);
    background: -moz-linear-gradient(top, #0D52B2 0, #00A79D 100%);
    background: -ms-linear-gradient(top, #0D52B2 0, #00A79D 100%);
    background: -o-linear-gradient(top, #0D52B2 0, #00A79D 100%);
    background: linear-gradient(to bottom, #0D52B2 0, #00A79D 100%)
}
.price_browser {
    width: 61em;
    margin: 0 auto 6em;
    position: relative;
    text-transform: lowercase
}
.vps_price_browser .behind_price_bar {
    width: 44.13em
}
.price_browser_wrapper {
    display: block;
    width: 48em;
    margin: 0 auto
}
.price_browser_core {
    width: 16em;
    margin-left: 16em;
    border-radius: .5em;
    box-shadow: 0 4px 6px #7F7F7F
}
.price_browser .bar_container {
    float: right;
    width: 15.7em;
    padding: 6.5em 0 0
}
.bar_container .bar {
    display: block;
    width: 0;
    height: 1em;
    margin: 1.1em 0
}
.price_browser header {
    display: block;
    width: 16em;
    margin: 0 auto;
    border-radius: .5em .5em 0 0;
    overflow: hidden;
    text-align: center;
    color: #0D52B2;
    color: transparent;
    position: relative;
    height: 100px;
    overflow: hidden
}
.price_browser header div {
    display: none;
    width: 10em;
    color: #FFF;
    position: absolute;
    top: 0;
    left: 3em
}
.price_browser header div.svg_icon {
    display: block;
    width: 30px;
    position: static;
    top: auto;
    left: auto
}
.price_browser .arrow {
    display: block;
    width: 30px;
    height: 30px;
    font-size: 3em;
    color: #709AD3;
    color: rgba(255,255,255,.4);
    position: absolute;
    top: .4em;
    overflow: hidden
}
.price_browser .arrow .svg_icon {
    width: 30px;
    height: 30px;
    display: block
}
.price_browser .arrow .svg_icon path, .price_browser .arrow .svg_icon polygon, .price_browser .arrow .svg_icon rect {
    fill: rgba(255,255,255,.7)
}
.price_browser .arrow:hover {
    text-decoration: none
}
.price_browser .arrow:hover .svg_icon path, .price_browser .arrow:hover .svg_icon polygon, .price_browser .arrow:hover .svg_icon rect {
    fill: rgba(255,255,255,.9)
}
.price_browser .arrow.left {
    left: .2em
}
.price_browser .arrow.right {
    right: .2em
}
.price_browser .price {
    display: block;
    width: 100%;
    font-size: 2.9em
}
.price_browser .price span {
    display: block;
    width: 100%;
    margin: -.6em 0 .5em;
    font-size: .38em
}
.price_browser .level {
    display: block;
    height: 1.2em;
    font-size: 1.2em;
    line-height: 1.1em
}
.promo-star {
    color: #fff;
    color: rgba(255,255,255,.3);
    text-decoration: none
}
.promo-star:hover {
    text-decoration: none
}
.behind_price_container {
    display: block;
    width: 50%;
    height: 12em;
    overflow: hidden;
    position: absolute;
    top: .6em;
    z-index: 6
}
.behind_price_container.left {
    left: 0
}
.behind_price_container.right {
    right: 0
}
.behind_price_bar {
    display: block;
    width: 33.13em;
    border: 1px solid #DADADA;
    border-radius: .5em;
    overflow: hidden;
    text-align: center;
    color: silver;
    cursor: pointer;
    z-index: 1
}
.behind_price_bar .promo-star {
    color: silver;
    text-decoration: none
}
.behind_price_bar div {
    float: left;
    width: 11em;
    border-right: 1px solid #DADADA
}
.behind_price_bar:last-child {
    border-right: none
}
.behind_price_bar .price {
    font-size: 2.6em
}
.behind_price_bar .price span {
    font-size: .32em
}
.behind_price_bar .level {
    background: 0 0;
    border-top: 1px solid #DADADA
}
.price_glow {
    color: #FFF
}
.price_browser ul {
    background-color: #E0E0E0;
    display: none;
    width: 16em;
    margin: 0 auto;
    padding: 0 0 2em;
    border-radius: 0 0 .5em .5em;
    list-style-type: none;
    text-align: center;
    padding-top: .5em
}
.price_browser li {
    border-top: 1px solid #D0D0D0;
    margin: 0;
    padding: .3em 0;
    position: relative
}
.price_browser li:first-child {
    border-top: 0
}
.price_browser .subtext {
    display: block;
    color: #666;
    font-style: italic;
    font-size: .9em
}
.price_browser .price_bars {
    width: 16em;
    position: absolute;
    top: 15px;
    left: 0
}
.price_browser header .initial_display, .price_browser ul.initial_display {
    display: block
}
.price_browser .btn_primary {
    display: block;
    width: 9.4em;
    clear: both;
    margin: -1em auto
}
.price_browser .action_button {
    position: absolute;
    width: 100%;
    height: 3em
}
.bar_container .bar {
    background: #EDF6FE;
    background: -webkit-gradient(linear, left top, right top, color-stop(0, #FFF), color-stop(100%, #7BA7D5));
    background: -webkit-linear-gradient(left, #FFF 0, #7BA7D5 100%);
    background: -moz-linear-gradient(left, #FFF 0, #7BA7D5 100%);
    background: -ms-linear-gradient(left, #FFF 0, #7BA7D5 100%);
    background: -o-linear-gradient(left, #FFF 0, #7BA7D5 100%);
    background: linear-gradient(to right, #FFF 0, #7BA7D5 100%);
    background-size: 16em
}
.price_browser header {
    background: #0D52B2;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #0D52B2), color-stop(100%, #00A79D));
    background: -webkit-linear-gradient(top, #0D52B2 0, #00A79D 100%);
    background: -moz-linear-gradient(top, #0D52B2 0, #00A79D 100%);
    background: -ms-linear-gradient(top, #0D52B2 0, #00A79D 100%);
    background: -o-linear-gradient(top, #0D52B2 0, #00A79D 100%);
    background: linear-gradient(to bottom, #0D52B2 0, #00A79D 100%)
}
.price_browser .displayed .level {
    background-color: #505050;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #4D4D4D), color-stop(100%, #666));
    background-image: -webkit-linear-gradient(left, #4D4D4D 0, #666 100%);
    background-image: -moz-linear-gradient(left, #4D4D4D 0, #666 100%);
    background-image: -ms-linear-gradient(left, #4D4D4D 0, #666 100%);
    background-image: -o-linear-gradient(left, #4D4D4D 0, #666 100%);
    background-image: linear-gradient(to right, #4D4D4D 0, #666 100%);
    border-top: 1px solid #4D4D4D;
    border-bottom: 1px solid #4D4D4D
}
.scroll_filter {
    position: relative;
    width: 960px;
    margin: 0 auto
}
.scroll_filter .scroll_box {
    height: 170px;
    width: 850px;
    margin: 0 auto;
    overflow: hidden;
    position: relative
}
.scroll-box-wrapper {
    width: 960px;
    margin: 0 auto;
    display: block;
    position: relative
}
.scroll_filter .tile_list {
    padding: 0;
    position: relative;
    text-align: left;
    width: 999999px
}
.scroll_filter .tile {
    border: 0;
    display: block;
    float: left;
    height: 140px;
    margin: 15px;
    width: 140px
}
.scroll_filter .tile .tile_icon {
    padding-top: 6em
}
.scroll_filter .btn_slide {
    top: auto;
    bottom: 60px
}
.scroll_filter .btn_left {
    left: 0
}
.scroll_filter .btn_right {
    right: 0
}
.alt_background {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ebebec), color-stop(100%, #FFF));
    background: -webkit-linear-gradient(top, #ebebec 0, #FFF 100%);
    background: -moz-linear-gradient(top, #ebebec 0, #FFF 100%);
    background: -ms-linear-gradient(top, #ebebec 0, #FFF 100%);
    background: -o-linear-gradient(top, #ebebec 0, #FFF 100%);
    background: linear-gradient(to bottom, #ebebec 0, #FFF 100%)
}
.chat-sidebar {
    position: absolute;
    margin-top: 6em;
    z-index: 1;
    background-color: #fff;
    width: 300px;
    left: -300px;
    transition: all .3s
}
.chat-sidebar.active {
    left: 0;
    box-shadow: 8px 8px 14px 8px rgba(128,128,128,.42)
}
.chat-sidebar .tab {
    margin: 0;
    position: absolute;
    background-color: #00A79D;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: #fff;
    width: 36px;
    height: 136px;
    right: -36px;
    cursor: pointer
}
.chat-sidebar .tab .svg_icon {
    display: block;
    margin: .5em auto .8em;
    width: 24px;
    height: 24px
}
.chat-sidebar .tab .svg_icon .filled, .chat-sidebar .tab .svg_icon .outlined {
    display: block
}
.chat-sidebar .tab .svg_icon path {
    fill: #fff
}
.chat-sidebar .tab .title {
    -moz-transform: rotate(90deg);
    -moz-transform-origin: 50% 50%;
    -webkit-transform: rotate(90deg);
    -webkit-transform-origin: 50% 50%;
    -o-transform: rotate(90deg);
    -o-transform-origin: 50% 50%;
    -ms-transform: rotate(90deg);
    -ms-transform-origin: 50% 50%;
    transform: rotate(90deg);
    transform-origin: 50% 50%;
    white-space: nowrap;
    display: block
}
.chat-sidebar form {
    padding: 2em;
    text-align: center;
    display: block
}
.chat-sidebar .phone {
    display: block;
    font-size: 2em;
    font-weight: 700
}
.chat-sidebar .info {
    display: block;
    font-size: 1.6em;
    color: #00A79D;
    text-transform: lowercase;
    margin-bottom: .5em
}
.chat-sidebar .livechat {
    display: block;
    font-size: 1.4em;
    font-weight: 700
}
.chat-sidebar textarea {
    margin: 1em 0;
    width: 100%;
    resize: vertical
}
.chat-sidebar button[type=submit] {
    display: block;
    margin: 0 0 0 auto
}
.chat-sidebar .close {
    position: absolute;
    line-height: 33px;
    display: block;
    text-transform: lowercase
}
.chat-sidebar .close .svg_icon {
    width: 24px;
    height: 24px;
    vertical-align: middle
}
.hero.home_hero .cover_wrap {
    box-sizing: border-box;
}

.shared .dedicated_server {
    width: 696px;
    height: 264px;
}
.hosting_type_selector{box-shadow:none;}
.tech_spec{width:12em;}
.addon-info:hover .btn_hairline:after, .btn_hairline:active:after, .btn_hairline.inverse:active:after, 
.btn_hairline.active:after, .btn_hairline.inverse.active:after, .btn_hairline:hover:after, .btn_hairline.inverse:hover:after, 
.btn_hairline.inverse:after, a:active .btn_hairline:after, a:hover .btn_hairline:after {
    background-image: url(https://bluehost-cdn.com/media/shared/general/icons/arrow_r_white.svg);
}
.btn_inspect:after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 8px;
    right: 7px;
}
.shared.rotating_server{
    overflow-y: hidden;
}
.ic-kvm-1 {
    background: url(/getImage.php?src=myUploadedImages/bhikvmtech.png) no-repeat scroll 5px 45px transparent;
}
.ic-kvm-2 {
    background: url(/getImage.php?src=myUploadedImages/bhikvmuptime.png) no-repeat scroll 0 22px transparent;
}
.ic-kvm-3 {
    background: url(/getImage.php?src=myUploadedImages/bhikvmroles.png) no-repeat scroll 0 25px transparent;
}
.ic-kvm-4 {
    background: url(/getImage.php?src=myUploadedImages/bhikvmcomputer.png) no-repeat scroll 0 24px transparent;
}
.hosting_type_selector{box-shadow: none;}
.hosting_type_selector{margin: 0 auto;border-radius: 0;box-shadow: 0 10px 10px -7px #AAA inset;text-align: center;}
.nav-on-skinny-bar{position: relative;top: 21px;z-index: 1;box-shadow:none;}
.tabs2{display: block;margin: 0;padding: 0;list-style-type: none;text-align: center;text-transform: lowercase;font-size: 1.2em;color: #777;position: relative;}
.tabs2 li, .sidetabs2 li{display: inline-block;margin: 0;}
.tabs2 a, .sidetabs2 a{background: #FFF;border: 1px solid #00A79D;border-right: 0;border-radius: 0;text-decoration: none;color: #00A79D;padding-left:30px;padding-right:30px;}
.tabs2:after{content: "";display: table;clear: both;visibility: hidden;}
.tabs2 li a.active, .tabs2 li a:hover, .sidetabs2 li a:hover{background: #00A79D;background: -webkit-gradient(linear,left bottom,left top,color-stop(0%,#06897C),color-stop(100%,#00A79D));background: -webkit-linear-gradient(bottom,#06897C 0%,#00A79D 100%);background: -moz-linear-gradient(bottom,#06897C 0%,#00A79D 100%);background: -ms-linear-gradient(bottom,#06897C 0%,#00A79D 100%);background: -o-linear-gradient(bottom,#06897C 0%,#00A79D 100%);background: linear-gradient(to top,#06897C 0%,#00A79D 100%);color: #fff;}
.tabs2 li:first-child a{border-radius: .375em 0 0 .375em;}
.tabs2 a.active, .sidetabs a.active{cursor: default;}
.tabs2 a.active{margin-bottom: 0px;}
.tabs2 a.last{border-right: 1px solid #00A79D;border-radius: 0 .375em .375em 0;}
@media (min-width: 992px){
        .bh-in .hosting-wrapper .jumbotron.main-banner .thumb-for-lh{
            top: 7px;
        }
    }
   @media (min-width: 1200px){
    .bh-in .hosting-wrapper .jumbotron.main-banner .thumb-for-wh{
        top: 7px;
    }
}
@media screen and (max-width: 767px) {
.rides-cs .btnOpen, .rides-cs .btnCtn {
    width: 36px;
    height: 42px;
}
}
@media screen and (max-width: 767px) {
    @viewport {
        width: 640px;
    }
    #container {
        min-width: initial;
    }
    .cover_wrap {
        width: initial;
    }
    #cloud-hero {
        padding-right: 0;
    }
    .hero.home_hero li b {
        display: inline;
        line-height: 1.2em;
    }
    .support_slide {
        font-size: 1.4em;
        line-height: 1em;
    }
    .skinny-bar {
        height: auto;
        line-height: inherit;
        padding: 2em;
    }
    .skinny-bar-large-text {
        line-height: .8em;
    }
    .skinny-bar em {
        display: block;
        height: 1.2em;
        font-size: 1.4em;
        font-weight: bold;
        line-height: 1.4em;
        text-transform: uppercase;
    }
    .skinny-bar .btn_secondary {
        margin: 1.6em 0 0;
    }
    .adisc {
        padding: 0 2em;
    }
    .features {
        width: 90%;
        margin: 0 auto !important;
    }
    .features h4 {
        margin: .4em 0 .7em;
    }
    .features p {
        min-height: initial;
        margin-bottom: 1.4em;
        padding: 0;
    }
    .pro_services p.pro_services_desc {
        width: 80%;
    }
    .pro_services .pro_services_heading {
        width: 60%;
        margin: 1em auto 0;
    }
    #cloud-pane-text {
        max-width: 100%;
    }
    .cloud-pane-container {
        padding-right: 0;
    }
    .hero.home_hero .cover_wrap {
        padding: 2em 0 0 0;
    }
    .heading, h1 {
        font-size: 2.4em;
    }
    .s1 ul {
        width: 50%;
    }
    #cloud-hero h2 {
        font-size: 2em;
    }
    .lightbox_container .title {
        text-overflow: ellipsis;
        overflow: hidden;
    }
    .slider {
        width: 100%;
        height: 22em;
    }
    .cover_wrap {
        width: 100%;
    }
    .hero.home_hero h1, .hero.home_hero .price, .hero.home_hero b, .hero.home_hero .heading {
        margin: 0 !important;
    }
    .hero.home_hero .cover_wrap {
        padding: 30px 0px !important;
        font-size: .7em;
        height: 32em;
    }
    .hero.home_hero .cover_wrap h1,  .hero.home_hero .cover_wrap h2 {
        text-align: center;
    }
    .hero.home_hero .cover_wrap li .mini-col-left {
        font-style: italic;
    }
    .cover_wrap {
        text-align: center;
    }
    .hero.home_hero .cover_wrap ul {
        text-align: left !important;
    }
    .hero.home_hero .cover_wrap li .mini-col-left,  .hero.home_hero .cover_wrap li b,  .hero.home_hero .cover_wrap .below-home {
        font-size: 1em;
        padding: 10px 5px;
    }
    .btn_primary.big {
        font-size: 2em;
        color: #fff;
        padding: 6px 60px 6px 30px;
        display: inline-block;
    }
    .starting-price {
        padding-top: 0;
    }
    .hero.home_hero {
        height: initial !important;
    }
    .lightbox_container {
        position: fixed !important;
        left: 0 !important;
        top: 0 !important;
        right: 0;
        bottom: 0;
    }
    .lightbox_container div.lightbox_padding {
        width: 100% !important;
        height: initial !important;
        position: absolute;
        top: 50px;
        right: 0;
        bottom: 0;
        left: 0;
    }
    .below-home {
        text-align: center !important;
    }
    #cloud-pane {
        min-height: initial;
    }
    #cloud-pane .cloud-pane-container {
        background: none;
    }
    .pro_services .pro_services_heading {
        font-size: 2em;
    }
    .servers {
        height: 0;
        display: none;
    }
    .pro_services .pro_services_action {
        margin-left: 20%;
    }
    .pro_services {
        padding: 0;
    }
    .footer-links .wrapper {
        width: 100%;
    }
    .logo {
        width: 60px;
        overflow: hidden;
    }
    .logo img {
        left: 176%;
        width: 300%;
        height: auto;
    }
    .slider .controls a {
        display: none;
    }
    .hero {
        min-height: initial;
    }
    #cloud-hero h2, #cloud-hero h3, #cloud-hero a, #cloud-hero b {
        color: #00A79D;
    }
    .hero.home_hero {
        background-image: none !important;
    }
    .support_slide {
        font-size: 1em;
    }
    .ohwp_slide img {
        display: none;
    }
    .btn_primary.big:after, .btn_secondary.big:after {
        width: 34px;
        height: 34px;
    }

}
.homepage-wrapper {
    position: relative;
    top: -36px;
}
/* Homepage css ends here*/

.row-wrapper.features #features-toggle:before {
    content: "查看全部";
}
.row-wrapper.features #features-toggle.open:before {
    content: "关闭";
}
/* Linux hosting starts here */



.tab-content .features-wrp .features .features {
    margin: 0 0 20px 0;
    padding: 0;
}
.tab-content .features-wrp .features .features li {
    background: url("/getImage.php?src=ic-gray-tic.gif") no-repeat scroll 0 8px transparent;
    padding: 5px 0 5px 20px;
    font: normal 15px bluehost, Arial, Helvetica, sans-serif;
    color: #5b5b5b;
    float: none;
    width: auto;
    min-height: initial;
    text-align: inherit;
}
.tab-content .features-wrp .features a {
    display: inline;
    /* color: #666; */
    color: #377ce4;
}
.tab-content .features-wrp .faq {
}
.plan-featured .p-pricing {
    margin: 0px;
}

.shadow_div .img-for-sh {
    background: url(/getImage.php?src=sh.jpg) no-repeat center 0 #000;
}
.lightbox_content p {
    font: normal 16px/18px bluehost, Arial, Helvetica, sans-serif;
    text-align: left;
    margin: 0;
    padding: 10px 0;
}
.lightbox_content h3 {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: normal;
    color: #636363;
}
.dd-server .cont td {
    border-right: none;
}
.dd-server .cont td label {
    color: #333;
}
.frm-field, .frm-select input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text] {
    font: normal 14px Arial, Helvetica, sans-serif;
    color: #626262;
    padding: 6px 11px;
    border: solid 1px #b2c4d4;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    background: #fff;
    -webkit-transition: border linear 0.3s, box-shadow linear 0.3s;
    -moz-transition: border linear 0.3s, box-shadow linear 0.3s;
    transition: border linear 0.3s, box-shadow linear 0.3s;
    vertical-align: inherit;
}
.server_loc_tabs {
    margin-left: 112px;
    padding: 0;
}
/*linux hosting ends here */

/* checkout starts here */

#CartTable td, #CartTable th {
    border-right: none;
}
#CartTableFooter td {;
    border-right: none;
}
#CartTotal, #taxTotalCurrency {
    text-align: left !important;
}
#TotalAmount {
    font: bold 25px bluehost, 'Segoe UI', 'Trebuchet MS', Arial, sans-serif;
}
.extra_nav {
    padding: 0;
}
/* checkout ends here */

#dedicated-new-tabs {
    position: relative;
}
/* Cloudsite css starts here */

.row-wrapper.effortless h3 {
    font-weight: 400;
}
.row-wrapper.hero .mobile-bg h3 {
    text-align: left;
    color: #ffffff;
    font-size: 49px;
    font-weight: 600;
    margin-bottom: 35px;
}
.row-wrapper.hero .mobile-bg h3 .term {
    text-align: left;
    color: #ffffff;
    font-size: 36px;
    font-weight: 400;
}
.row-wrapper.features h3 {
    font-weight: 400;
}
.cloudsites .col-offset-left {
    margin-left: -0.333333%;
}

.cloudsites .row-wrapper.hero .mobile-bg{
    margin-top: 30px;
}


.addon-info p {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.42857;
    color: #FFFFFF;
}
.hosting-wrapper .addon-info .addon-info-text {
    float: right;
    width: 50%;
    text-align: left;
}
.hosting-wrapper .addon-info .addon-info-text h4 {
    font-family: "bluehost", "Segoe UI", "Gill Sans", "Gill Sans MT", GillSans, "Trebuchet MS", Arial, sans-serif;
    padding-top: 10%;
    line-height: 1.1;
    color: #00A79D;
    margin-bottom: 10px;
    font-weight: 600;
}
.hosting-wrapper .addon-info .addon-info-text h3 {
    font-family: "bluehost", "Segoe UI", "Gill Sans", "Gill Sans MT", GillSans, "Trebuchet MS", Arial, sans-serif;
    padding-top: 2%;
    padding-left: 6%;
    line-height: 1.1;
    color: #00A79D;
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 600;
}
.inner-content p {
    padding: 10px;
}
.row-wrapper.hero .mobile-bg .btn-primary {
    background: #62bc33;
    background: -moz-linear-gradient(left, #62bc33 0%, #8bd331 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #62bc33), color-stop(100%, #8bd331));
    background: -webkit-linear-gradient(left, #62bc33 0%, #8bd331 100%);
    background: -o-linear-gradient(left, #62bc33 0%, #8bd331 100%);
    background: -ms-linear-gradient(left, #62bc33 0%, #8bd331 100%);
    background: linear-gradient(to right, #62bc33 0%, #8bd331 100%);
}
.hosting-wrapper .plan-list li.p-button {
    margin: 0;
}
.row-wrapper.features p {
    padding: 0 38px;
    margin-bottom: 50px;
    text-align: center;
    min-height: inherit;
    line-height: normal;
    font: normal 16px/1.25 bluehost, 'Segoe UI', 'Gill Sans', 'Gill Sans MT', GillSans, 'Trebuchet MS', Arial, sans-serif;
}
.txt-button:hover, .uiButton:hover, .ui-button:hover, .frmButton:hover {
    text-decoration: none;
}
.row-wrapper.hero .mobile-bg h5 {
    color: #ffffff;
    margin: 0;
}
.row-wrapper.hero .mobile-bg .btn-primary {
    border: none;
    color: #ffffff;
}
.row-wrapper.hero .mobile-bg h6 {
    color: #ffffff;
    margin: 0;
    padding-bottom:10px;
}
.bh-in .cloudsites .cloudsites-plans.hosting-wrapper .plans-column-content .slider-chevron {
    position: absolute;
    z-index: 1;
    bottom: 29%;
}
.bh-in .hosting-wrapper .control_next {
    display: block;
    position: absolute;
    right: -251px;
}

.bh-in .cloudsites .blue-seperator-xs .blue-separator-content .btn.btn_hairline.inverse{
    background: transparent;
    padding: .3em 2.8em .3em 1.1em;
    border: 1px solid white;
    border-radius: 5px;
    text-align: left;
    color: #fff;
    position: relative;
    margin-left: 25px;
    font-size: 16px;
    font-weight: normal;
    vertical-align: top;
}

.bh-in .cloudsites .blue-seperator-xs .blue-separator-content .btn.btn_hairline.inverse:after{
    content: '';
    background: transparent url(/getImage.php?src=myUploadedImages/bh_btn_arrow.png) no-repeat right center;
    display: block;
    width: 26px;
    height: 26px;
    position: absolute;
    top: 2px;
    right: 10px;
}

.cloudsites .hosting-wrapper .addon-info{
    background-image: url(/getImage.php?src=bh-staff.jpg);
    background-position: 14% 99%;
    background-repeat: no-repeat;
    background-size: auto;
    height: 367px;
    border-top: 1px solid #00A79D;
    position: relative;
    margin-bottom: 40px;
    margin-left: 10px;
    color: #00A79D;
    padding-top: 36px;
}
.bh-in .cloudsites .addon-info .addon-info-text .addon-info-text-wrap h2{
    color:#00A79D;
}
.hosting-wrapper .addon-info .addon-info-text .addon-info-text-wrap ul li{
    padding: 2px 0px 10px 0px;
    background: none;
}
/*Cloudsite css ends here */


.dd-server .dplan-list {
    padding: 0;
}
.wrp {
    margin: 0 auto;
    width: 960px;
}
.nav-dd .sub-nav {
    width: 180px;
}

/*Responsive style starts here*/
.thumb-for-vps{
    width: 40%;
}
.bh-in .hosting-wrapper .jumbotron.main-banner .main-banner-content-lg h2 {
    font: normal 48px/51px bluehost, 'Segoe UI', 'Gill Sans', 'Gill Sans MT', GillSans, 'Trebuchet MS', Arial, sans-serif;
}
.addons-bar {
    margin: 0 auto;
}
.blurb-blue {
    padding: 16px 0 20px 0;
}
.blurb-blue .wrapper {
    overflow: hidden;
    max-width: 1170px;
}
.blurb-blue .txt-info {
    line-height: 38px;
}
.bh-in .hosting-wrapper .plans-section {
    background: none;
}
.server_loc_tabs {
    margin-left: 0;
}
.hosting-wrapper .addon-info {
    padding-top: 36px;
    height: 320px;
}
.bh-in .hosting-wrapper .product-feature-section {
    background-color: inherit;
    padding-top: 0;
}
.hosting-wrapper .tabs {
    padding: 0;
}
.features-wrp .faq {
}
.section-one, .section-two, .section-three {
    padding-bottom: 20px;
    border-bottom: 1px dotted #9A9A9A;
}
.section-one h3, .section-two h3, .section-three h3, .section-four h3 {
    color: #5B5B5B;
    font-size: 24px;
    margin: 1em 0;
}
.section-one li, .section-two li, .section-three li, .section-four li {
    padding-bottom: 2px;
    list-style: disc;
    color: #9A9A9A;
    margin-left: 10px;
    line-height: 24px;
}
.product-features-questions p.que {
    color: #62BC33;
}

/*new color style starts here*/
.blurb-blue{
    background: #00A79D;
}
.server_loc_tabs ul li.sel{background: #00A79D;}
.server_loc_tabs ul li:hover{background: #00A79D;color:#fff;}
.hosting-wrapper .plan-list.plan-featured .p-pricing{
    background: #00A79D;
}
.txt-button, .uiButton, .ui-button, .frmButton, .model-button{
    background: #FFCB05;
}
.txt-button:hover, .uiButton:hover, .ui-button:hover, .frmButton:hover{
    background: #E9B321;
    color: #fff;
}
.shadow_div{
    background: #EDF4F9;
    background: -webkit-linear-gradient(top, #EDF4F9 50%, #ffffff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #EDF4F9), color-stop(100%, #ffffff));
    background: -moz-linear-gradient(top, #EDF4F9 50%, #ffffff 100%);
    background: -ms-linear-gradient(top, #EDF4F9 50%, #ffffff 100%);
    background: -o-linear-gradient(top, #EDF4F9 50%, #ffffff 100%);
    background: linear-gradient(to bottom, #EDF4F9 50%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#EDF4F9', endColorstr='#ffffff',GradientType=0 );
}
.features-wrp .faq{
    background: #EDF4F9;
}
/*new color style ends here*/
/* domain-registration starts here*/
.bh-in .domain-content .sd-tarea {
    width: 100%;
}
.domain-search-wrapper{
    min-height:700px;
}
/* domain-registration ends here*/
/* Responsive plan stats here*/
@media (min-width: 768px) {
    .hosting-wrapper .server_loc_tabs {
        padding: 0;
    }

    .hosting-wrapper .server_loc_tabs .country_specific_tabs {
        border: none;
    }

    .hosting-wrapper .server_loc_tabs li {
        float: left;
        border-radius: 0;
        line-height: 40px;
        border: 1px solid #4481d8;
    }
    .country_specific_tabs li:first-child{
        border-radius:10px 0 0 10px;
    }
    .country_specific_tabs li:last-child{border-radius:0 10px 10px 0;}
}
.hosting-wrapper .plan-list .p-name{
    position: relative;
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #505050), color-stop(1, #020202) );
    background: -moz-linear-gradient(top, #505050 5%, #020202 100% );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#505050', endColorstr='#020202');
    background-image: -ms-linear-gradient(top, #505050 0%, #020202 100%);
    background-color: #505050;
    font-size: 22px;
    color: #fff;
}
.hosting-wrapper .plan-list li.p-feat{
    font-size: 18px;
    padding:15px 0;
    text-align: center;
    border-bottom: 1px solid #f1f1f1;
}
.hosting-wrapper .plan-list.plan-featured{
    top:0;
}
.hosting-wrapper .plan-list{
    margin:0;
}
.hosting-wrapper .plan-list.plan-featured .p-name .pl-title{
    color: #fff;
}
.hosting-wrapper .plan-list.plan-featured .p-pricing{
    padding:23px 0;
}
.hosting-wrapper .plan-list .p-pricing{
    padding:20px 0;
    color: #00A79D;
    font-size: 45px;
    font-weight: normal;
}
.hosting-wrapper .plan-list .p-pricing .p-currency {
    font-size: 48px;
    display: inline-block;
    vertical-align: initial;
    margin-top: 3px;
    margin-right: -5px;
}
.hosting-wrapper .plan-list .p-pricing .p-duration {
    display: inline-block;
    vertical-align: initial;
    position: relative;
    margin-top: 4px;
    text-align: left;
    line-height: 13px;
}
.hosting-wrapper .plan-list.plan-featured .p-pricing {
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #06897C), color-stop(1, #00A79D) );
    background: -moz-linear-gradient( top, #06897C 5%, #00A79D 100% );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#06897C', endColorstr='#00A79D');
    background-image: -ms-linear-gradient(top, #06897C 0%, #00A79D 100%);
    background-color: #06897C;
    color: #fff;
    -moz-border-radius: 6px 6px 0 0;
    -webkit-border-radius: 6px 6px 0 0;
    -ms-border-radius: 6px 6px 0 0;
    border-radius: 6px 6px 0 0;
}
.bh-in .hosting-wrapper .plan-list{
    margin-top:0;
}
.hosting-wrapper .plan-list li.p-button{
    padding:12px 0 22px;
}
.hosting-wrapper .plan-list li.p-button .txt-button{
    width:165px;
    display: inline-block;
    border-radius: 5px;
    padding: 6px 12px;
}

/*Responsive style ends here*/


/*new responsive style starts here*/

/*COMMON STYLES STARTS HERE*/

/*header starts here  */
.header-in .navbar-brand>img{
    width:200px;
    padding-top: 4px;
}



.header-in .navbar-default .navbar-nav .new{
    bottom:-9px;
    top:initial;
}

.header-in .dropdown ul{
    border-color:rgba(0,0,0,0.15);
}

.header-in .user-info.nav.navbar-nav{
    padding-left: 222px;
}


/*header ends here    */

/*footer starts here*/
.footerSocialWrp {
    font-size: 16px;
}

.footerSocialWrp ul li {
    list-style: none;
    float: left;
    width: 20px;
    text-align: center;
    margin-right: 16px;
    color: white;
}

.footerSocialWrp ul li:hover a {
    opacity: 0.6;
}

.footerSocialWrp ul li:last-child {
    width: inherit;
}

.footer-cols h4{
    color:#ffffff;
}

.footer-links-main{
	text-align: right;
}
/*footer ends here*/

/*Homepage starts here */

.homepage-in .jumbotron .carousel-control .glyphicon-chevron-left,.homepage-in .jumbotron .carousel-control .glyphicon-chevron-right{
    width: 39px;
    border: 2px solid #00A79D;
    height: 39px;
    border-radius: 20px;
    padding-top: 1px;
}

.homepage-in .main-banner .green-button:focus,.homepage-in .main-banner .green-button:hover{
    background-color: #88D331;
}
.homepage-in .main-banner.vps-hero .green-button:focus,.homepage-in .main-banner.vps-hero .green-button:hover{
    background-color: #00A79D;
}
.homepage-in .pro_services a.btn.btn-default.blue_seperator_button {
    border-color: #00A79D;
    color: #00A79D;
    padding-top: 5px;
}

.homepage-in .pro_services a.btn.btn-default.blue_seperator_button:hover{
    color:#ffffff;
	  padding-right: 0px;
}

.homepage-in .main-banner{
    background: url(../img/banner04.jpg) no-repeat center top;
    background-size: cover;
}
.homepage-in .windows-hero{
    background: url(../img/banner05.jpg) no-repeat center top;
    background-size: cover;
}

.homepage-in .vps-hero{
    background: url(../img/banner06.jpg) no-repeat center top;
    background-size: cover;
}

.homepage_modals h3 {
    color: #636363;
    font-weight: bold;
    font-size:18px;
}

h4#money_back {
    color: #ffffff;
}

h4#usage_policies{
    color: #ffffff;
}

.btn-flat-green.btn-flat-green-loading{
    width: 74px;
}

ol, ul{
    margin:0;
}
.homepage-in .always_support_para {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 55px;
}

.homepage-in .homepage-cloud-container{
    background-color:#00A79D;
    padding-top: 60px;
    padding-bottom:60px;
}

.homepage-in .homepage-cloud-container h2,.homepage-in .homepage-cloud-container p{
    color:#ffffff;
}

.homepage-cloud-container p{
    margin:1em 0;
}
.homepage-cloud-container a.btn_hairline.inverse {
    padding: 5px 25px 4px 15px;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
}

.homepage-cloud-container a.btn_hairline.inverse:after{
    background: none;
}
.homepage-in .homepage-cloud-container .chevron-right{
    position: relative;
    left: 9px;
}
/*Homepage ends here*/

/*Domain modal starts here*/
.domain-field-wrapper select.domain-modal-select{
    height: 42px;
    position: relative;
    top: 1px;
    left: -1px;
    border-radius: 0 5px 5px 0px;
}
#select_domain input[type="text"]#new-domain-name{
    padding-bottom: 8px;
}

.sitelock-box h4{
    color:#333333;
}
.domain-modal p{
    color:#333333;
}
.sitelock-box p.checkbox:hover{
    background: none;
}

.upsell-bot-box{
    padding: 20px 10px 20px 10px;
}

.domain-field-wrapper.select-domain-modal input.textbox{
    margin-top: 12px;
    margin-bottom: 13px;
}
/*Domain modal ends here*/

.blue-box p {
    font: normal 20px/3 bluehost,'Segoe UI','Gill Sans','Gill Sans MT',GillSans,'Trebuchet MS',Arial,sans-serif;
}
.blue-box .ItemTitle {
    font: bold 32px/3 bluehost,'Segoe UI','Gill Sans','Gill Sans MT',GillSans,'Trebuchet MS',Arial,sans-serif;
}
.registerfrm .row .labelWrp{
    padding:0 10px;
}
.bh-in .row5 select{
    -webkit-appearance: menulist-button;
    line-height:52px;
}
.hosting-wrapper .plan-list .p-pricing .server-location{
    display:block;
}
.hosting-wrapper .plan-list .p-pricing .server-location img{
    width:40px;
}
#payment_options_online li.paymentOption label.paymentOptionNetbanking{
    width: 235px;
}
/*COMMON STYLES ENDS HERE*/

@media (max-width:1200px){
    /*header md starts here*/
    .header-in .user-info.nav.navbar-nav{
        padding-left: 40px;
    }
    /*header md ends here*/

    /*Homepage md starts here*/
    .homepage-in .row-wrapper .main-banner{
        padding-top: 3.5em;
        padding-bottom: 3.5em;
    }
    .homepage-in .row-wrapper .windows-hero{
        padding-top: 2.1em;
        padding-bottom: 2.2em;
    }
    .homepage-in .row-wrapper .vps-hero{
        padding-top: 1.9em;
        padding-bottom: 1.93em;
    }

    .homepage-in .row-wrapper .linux-hero {
        padding-top: 4.8em;
        padding-bottom: 4.7em;
    }



    /*Homepage md ends here*/
}

@media (max-width: 992px) {

    /*header sm starts here*/
    .header-in .xs-navbar .navbar-brand>img{
        width:170px;
    }
    /*header sm ends here*/

    /*Homepage sm start here*/
    .homepage-in .windows-hero{
        padding-top: 65px;
        padding-bottom: 65px;
    }
    .homepage-in .vps-hero{
        padding-left:69px;
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .homepage-in .linux-hero{
        padding-top: 102px;
        padding-bottom: 101px;
    }
    .homepage-in .always_support{
        padding-top:60px;
        padding-bottom:60px;
    }



    .homepage-in .always_support p {
        font-size: 18px;
        line-height: 1.428571429;
        margin: 0;
        padding-bottom:15px;
    }

    .homepage-in .always_support a:hover {
        text-decoration: none;
    }
    .homepage-in .always_support_para{
        width:50%;
    }

    .homepage-in .always_support .always_support_para .blue_seperator_button{
        border-color:#00A79D;
        color:#00A79D;
        padding-top: 4px;
    }

    .homepage-in .pro_services h3{
        font-size: 30px;
        font-weight:bold;
    }

    .homepage-in .pro_services p{
        font-size: 18px;
        margin: 0;
        padding: 20px;
    }

    .homepage-in .homepage-cloud-container h2,.homepage-in .homepage-cloud-container p{
        text-align: center;
    }
    /*Homepage sm ends here*/

    /*Domain modal xs starts here*/
    .bh-in .domain-field-wrapper select.domain-modal-select {
        height: 42px;
        position: relative;
        top: 1px;
        left: 4px;
        border-radius: 0 5px 5px 0px;
    }


    /*Domain modal xs ends here*/
}

@media (max-width: 767px) {
    .bh-in .hosting-wrapper .main-banner-xs h2{
        color: #00A79D;
    }
    .flexible ul#payment_options_online li.paymentOption#payment_debit label {
        background: url(/getImage.php?src=myUploadedImages/payment_icon_balance.png) no-repeat 5px center;
    }
    .flexible ul#payment_options_online li.paymentOption label{
        padding: 8px 0 8px 72px;
    }
    .header-in .xs-navbar.navbar-default .navbar-nav .open .dropdown-menu>li>a{
        padding: 5px 45px 5px 25px;
    }
    .header-in .xs-navbar.navbar-default .navbar-nav>li>a{
        padding: 0 44px;
    }
    .bh-in .cloudsites .main-banner-xs{
        background-image: url(/getImage.php?src=myUploadedImages/mobilecloud.jpg);
    }
    .thumb-for-lh {
        background-size: cover;
    }
    .blurb-blue span {
        display: block;
    }
    .server_loc_tabs {
        position: initial;
        width: 100%;
        margin: 0 auto;
    }
    .server_loc_tabs li {
        padding: 0 8px;
        font-size: 18px;
    }
    .plans-columns .plan-list {
        margin-bottom: 10px;
    }
    .wrapper {
        width: initial;
    }
    .addon-info .span50 {
        width: initial;
        padding: 0 10px;
    }
    .row-indent {
        width: initial;
    }
    .shadow_div .img-for-wsh {
        background-size: cover;
    }
    .tab-content {
        padding: 30px 10px;
    }
    .features-wrp .features {
        width: initial;
    }
    .features-wrp .features .features {
        width: initial;
    }
    .features-wrp .faq {
        width: initial;
    }
    .shared {
        display: none;
    }
    #plans-masthead {
        height: initial;
		background-color: rgba(255,255,255,0.5);
    }
    .banner-img {
        display: none;
    }
    #plans-masthead ol {
        width: 80%;
    }
    .ui-heading {
        font-size: 32px;
        padding: 0 48% 15px 2%;
    }
    .addon-info .span1 {
        width: initial;
        padding: 0 10px;
    }
    .btn, .btn_primary, .btn_secondary, .btn_dark, .btn_icon, .btn_hairline, .btn_hairline_inverse {
        /*font-size: .9em;*/
        padding: .35em .5em;
    }
    .btn_hairline {
        padding: .35em 2em .35em 1em
    }
    .dd-server {
        position: relative;
        width: initial;
    }
    .dd-opt {
        width: initial;
        height: initial;
    }
    .dd-server .dplan-list {
        width: initial;
    }
    #dd-opt {
        height: initial;
    }
    .plan-list {
        margin-bottom: 10px;
    }
    .ui-subheading {
        font-size: 22px;
    }
    #dd-prog-bar {
        display: none;
    }
    .dplan-list .plans {
        margin-bottom: 10px;
		width: 100%;
    }
    .rotating_server {
        display: none;
    }
    #bar_dedicated {
        display: none;
    }
    .cover_wrap {
        width: initial;
    }
    .pro_services p.pro_services_desc {
        width: initial;
        padding: 0 10px;
        text-align: center;
    }
    .server_loc_tabs img {
        width: initial;
    }
    .blurb-blue {
        padding: 16px 0;
    }
    .domain-sbox {
        height: 240px;
    }
    .idomain-box .tld-box {
        width: initial;
    }
    .feature-blurb ul li {
        width: initial;
    }
    .element-bg {
        background-size: contain;
    }
    .premium-dsearch-box {
        width: initial;
    }
    .dsearch-box-inner .frm-text {
        width: 75%;
    }
    .price-selector {
        width: 70%;
    }
    .pre-domain-wrp .gray-bg {
        width: 85%;
        background: none;
    }
    .ee-lite-banner-content, .ee-lite-plans, .ee-lite-features, .ee-lite-faqs {
        width: initial;
    }
    .ee-lite-banner p img {
        width: 80%;
    }   
    .ee-lite-banner p.ee-lite-highlights span {
        margin: 0;
        padding: 0;
        display: inline;
        font-size: 16px;
    }
    .ee-lite-submit-wrapper {
        width: 100%;
    }
    .ee-lite-features ul {
        text-align: center;
    }
    .ee-lite-faqs ul {
        width: 90%;
        margin: 0 auto;
        background-color: #f4f4f4;
        padding: 20px;
    }
    .wrp {
        width: initial;
    }
    .sslc-banner .content-wrp {
        width: initial;
    }
    .sslc-banner h2 {
        font-size: 34px;
    }
    .sslc-banner .bg-banner {
        background: none;
    }
    .title2:before {
        width: 50px;
    }
    .title2:after {
        width: 50px;
    }
    .sc-plans .plan-block {
        margin: 0 6px 10px 0;
    }
    #footer-wrapper {
        width: 100%;
    }
    .secondary-links {
        display: none;
        height: inherit;
    }
    .footer-cols .col {
        width: 100%;
        padding: 0;
    }
    .footer-cols .col h4 {
        border-bottom: 1px solid #095EAD;
        cursor: pointer;
        height: 40px;
        line-height: 40px;
        margin: 0;
        padding-left: 20px;
        background: url("http://cn.bluehost.com/getImage.php?src=myUploadedImages/down.png") no-repeat right;
    }
    .footer-links .rfloat, #fineprint {
        margin: 0 auto;
        width: initial;
        float: none;
        text-align: center;
    }
    .footer-links .rfloat {
        padding-right: 0;
    }
    .hero.home_hero ul {
        padding: 0 0 0 35px;
    }
    .nav-bar ul li a {
        background-color: #06897C;
    }
    .nav-bar li .new {
        display: block;
        position: absolute;
        background: #ffba24;
        color: #000;
        font-size: 12px;
        padding: 2px 6px;
        border-radius: 4px;
        left: 50%;
        font-weight: bold;
        bottom: 11px;
        margin-left: -43px;
        z-index: 2;
    }
    .shp-cart-no {
        background: #FFFFFF;
        border-radius: 20px;
        color: #00A79D;
        font: bold 11px arial;
        height: 13px;
        left: 98px;
        padding: 3px;
        position: absolute;
        top: 6px;
        width: 13px;
    }
    /* Cloudsite mobile starts here*/
    .bh-in .cloudsites .main-banner-xs h4 {
        color: #ffffff;
        font-weight: 300;
        margin-top: 0;
        font-size: 18px;
    }
    .row-wrapper.hero {
        background-image: none;
        background-color: #ffffff;
        color: #000;
    }
    .row-wrapper.hero .container-custom {
        background-color: #ffffff;
        width: 100%;
        height: auto;
    }
    .row-wrapper.hero .mobile-bg h1 {
        color: #00A79D;
        text-align: center;
        font-size: 2em;
        line-height: 1em;
        font-weight: 800;
        padding-left: 18%;
    }
    .row-wrapper.hero h4 {
        color: #6694c6;
        text-align: center;
        font-size: 1.1em;
        font-weight: 400;
        padding-left: 23%;
    }

    .row-wrapper.hero .mobile-bg h5 {
        color: #00A79D;
        font-size: 1em;
        text-align: center;
        padding-left: 21%;
    }
    .row-wrapper.hero .mobile-bg h3 {
        color: #00A79D;
        font-size: 43px;
    }
    .row-wrapper.hero .mobile-bg h6 {
        color: #6694c6;
    }
    .row-wrapper.hero .mobile-bg h3 .term {
        color: #00A79D;
        font-size: 26px;
    }
    .bh-in .cloudsites .blue-seperator-xs .blue-separator-content .btn.btn_hairline.inverse{
        margin-left: 0;
    }

    .video-btn-xs {
        padding-top: 20px;
    }

    /* Cloudsite mobile ends here*/
    /* hosting plans common xs starts here*/
    .server_loc_tabs ul li.sel .sel_tab{
        display: none;
    }
    .country_specific_tabs li:first-child{
        border-radius: 5px;
    }
    .country_specific_tabs li:last-child {
        border-radius: 5px;
    }
    .footer-wrapper .row-wrapper.accordion .panel a h4{
        color:#ffffff;
    }

    /* hosting plans common xs ends here*/

    .bh-in .hosting-wrapper .plans-container .plans-column-content{
        width: 238px;
    }
    .bh-in .hosting-wrapper .control_next{
        right:-271px;
        font-size:30px;
    }
    .bh-in .hosting-wrapper .control_prev{
        left: -35px;
   		  font-size: 30px;
    }
    .bh-in .hosting-wrapper .plan-list .p-name{
        background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #505050), color-stop(1, #020202) );
        background: -moz-linear-gradient( top, #505050 5%, #020202 100% );
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#505050', endColorstr='#020202');
        background-image: -ms-linear-gradient(top, #505050 0%, #020202 100%);
        background-color: #505050;
        color: #fff;
        top:0 !important;
    }
    .bh-in .hosting-wrapper .plan-list .p-button .txt-button{
        width: 165px;
    }
    .bh-in .hosting-wrapper .plan-list .p-button{
        padding: 12px 0 22px;
    }
    #slider{
        padding-bottom: 10px;
    }
    .bh-in .hosting-wrapper .plan-list .p-duration{
        color: inherit;
    }
    .bh-in .hosting-wrapper .plan-list .pl-title{
        font-size: 22px;
    }

    /*cloud site xs stats here*/
    .bh-in .cloudsites .cloudsites-plans.hosting-wrapper .plans-columns .plans-column-content{
        width:238px;
    }
    .bh-in .hosting-wrapper .plan-list .p-feat.domains {
        background-color: #eeeeee;
    }
    .bh-in .cloudsites .blue-seperator-xs .blue-separator-content .btn{
        border-radius: 6px;
        padding: 8px 15px;
        background: #FFCB05;
        color: #fff;
        border: none;
    }

    /*clousite ends here*/

    /*header xs styles here  */
    .header-in .xs-navbar.navbar>.container-fluid .navbar-brand{
        width: 145px;
    }
    .bh-in .navbar-brand img.img-responsive {
        padding-left: 12px;
        padding-top: 5px;
    }

    .header-in .xs-navbar.navbar-fixed-top .navbar-collapse{
        min-height:385px;
    }
    .header-in .dropdown-menu>li>a{
        font: normal 15px/3 bluehost,'Segoe UI','Gill Sans','Gill Sans MT',GillSans,'Trebuchet MS',Arial,sans-serif;
    }

    .dropdown-menu:before{
        display:none;
    }
    .header-in .xs-navbar .navbar-header{
        -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.4);
        box-shadow: 0 6px 12px rgba(0,0,0,.4);
    }
    /*header xs ends here*/

    /*footer xs starts here */
    .row-wrapper.accordion .panel a h4{
        color:#ffffff;
    }

    #page-footer a:hover{
        text-decoration: none;
    }

    .fineprint{
        text-align: center;
        padding-bottom: 5px;
    }
    .footer-links-xs{
        text-align:right;
    }
	
	.footer-link-one,
	.footer-link-two{
		text-align: center;
	}
    /*footer xs ends here*/

    /*homepage xs starts here*/
    .row-wrapper-xs .powering-xs h3{
        padding:20px 0;
    }

    .main-banner-xs h2{
        font: normal 57px bluehost, Arial, Helvetica, sans-serif;
    }
    .homepage-in .homepage-cloud-container h2{
        font-size:30px;
        font-weight:bold;
    }
    /*homepage xs ends here*/

    /*Domain modal xs starts here*/
    .bh-in .domain-field-wrapper select.domain-modal-select {
        position: relative;
        top: 1px;
        left: 3px;
        height: 42px;
        border-radius: 0 5px 5px 0px;
    }


    /*Domain modal xs ends here*/
    /*domain-registration xs starts here*/
    .bh-in .domain-content .hastab.tabs-wrapper .tab {
        width: 290px;
    }
    .checkbox label, .radio label {
        display: block;
    }
    /*domain-registration xs ends here*/
    .logout-wrapper a.logout {
        background-color: #FFCB05;
        padding: 8px;
        border-radius: 5px;
        color: #fff;
        float: right;
        font-size: 17px;
        font-family: bluehost,'Segoe UI','Trebuchet MS',Arial,sans-serif;
        margin-top: 4px;
    }
    .blue-box .ItemTitle {
        font: bold 16px/1.5 bluehost,'Segoe UI','Gill Sans','Gill Sans MT',GillSans,'Trebuchet MS',Arial,sans-serif;
    }
    .blue-box p {
        font: normal 16px/1 bluehost,'Segoe UI','Gill Sans','Gill Sans MT',GillSans,'Trebuchet MS',Arial,sans-serif;
    }
    #modal_div ul.country_specific_tabs {
        width: 183px;
    }
    /*business-email mobile start here*/
    .bh-in #ee-lite-wrapper .ee-lite-banner {
        padding: 60px 0 0 0;
        background: none;
    }
    .bh-in #ee-lite-wrapper .ee-lite-banner p {
        color: #5B5B5B;
        font-weight: 100;
        font-size: 14px;
        line-height: 1.42857143;
        text-align: left;
        margin: 10px 0 0 0;
    }
    .ee-lite-banner-links {
        background: none;
        width: 100%;
        margin: 0;
        position: relative;
        z-index: 0;
        box-shadow: none;
        -moz-box-shadow: 0 -4px 6px -2px rgba(0, 0, 0, 0.6);
        -webkit-box-shadow: none;
    }
/*business-email mobile start here*/
}

/*new responsive style starts here*/

#colo_spec {}
#colo_spec ul {
	padding: 1px 15px;
}
#colo_spec ul li{
	font-size: 16px;
	list-style: circle;
	line-height: 1.9em;
	letter-spacing: 1px;
}
