/*--------------RESET CSS---------------*/
 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}
/* remember to define focus styles! */
 :focus {
    outline: 0;
}
body {
    line-height: 1;
    color: black;
    background: white;
}
ol, ul {
    list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
 table {
    border-collapse: separate;
    border-spacing: 0;
}
caption, th, td {
    text-align: left;
    font-weight: normal;
}
blockquote:before, blockquote:after, q:before, q:after {
    content:"";
}
blockquote, q {
    quotes:"""";
}
em {
    font-style:italic;
}
strong {
    font-weight:bold;
}
/*
Baseline - a designer framework
Copyright (C) 2009 Stephane Curzi, ProjetUrbain.com
Creative Commons Attribution-Share Alike 3.0 License
version 0.5
*/

/*--------------BEGIN CUSTOM CSS---------------*/
 .radius3 {
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
    border-radius:3px;
}
.radius5 {
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    border-radius:5px;
}
.radius8 {
    -moz-border-radius:8px;
    -webkit-border-radius:8px;
    border-radius:8px;
}
.radius10 {
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
    border-radius:10px;
}
.right {
    float:right;
}
.left {
    float:left;
}
.last {
    margin-right:0;
}
.first {
    margin-right:20px;
}
input.form_textbox {
    font-family:Verdana, Geneva, sans-serif;
    font-size:16px;
    font-weight:bold;
    color:#999;
    border:1px solid #CCC;
    height:35px;
    padding:0 8px;
    line-height:35px;
}
.text_input {
    font-family:Verdana, Geneva, sans-serif;
    font-size:20px;
    font-weight:bold;
    color:#999;
    border:1px solid #CCC;
    padding:0 8px;
    line-height:25px;
    height: 20px;
}
.text_input.editDescriptionInput {
    width:260px;
}
.btn, .orange_button {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border:1px solid #F26100;
    background: #fb9700;
    background: -moz-linear-gradient(top, #fb9700 1%, #f26100 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #fb9700), color-stop(100%, #f26100));
    background: -webkit-linear-gradient(top, #fb9700 1%, #f26100 100%);
    background: -o-linear-gradient(top, #fb9700 1%, #f26100 100%);
    background: -ms-linear-gradient(top, #fb9700 1%, #f26100 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fb9700', endColorstr='#f26100', GradientType=0);
    background: linear-gradient(top, #fb9700 1%, #f26100 100%);
    color:#FFF;
    font-weight:bold;
    font-size:16px;
    font-family:Verdana, Geneva, sans-serif;
    text-decoration:none;
    padding:5px 8px;
    line-height:22px;
    -webkit-box-shadow: inset 0px 0px 1px 1px #ffa229;
    -moz-box-shadow: inset 0px 0px 1px 1px #ffa229;
    box-shadow: inset 0px 0px 1px 1px #ffa229;
    cursor:pointer;
}
.btn:hover, .orange_button:hover, .orange_button.selected {
    background: #fb9700;
    background: -moz-linear-gradient(top, #f26100 1%, #fb9700 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #f26100), color-stop(100%, #fb9700));
    background: -webkit-linear-gradient(top, #f26100 1%, #fb9700 100%);
    background: -o-linear-gradient(top, #f26100 1%, #fb9700 100%);
    background: -ms-linear-gradient(top, #f26100 1%, #fb9700 100%);
    color:#FFF;
}
.gray_button {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border:1px solid #D2D2D2;
    background: #FAFAFA;
    background: -moz-linear-gradient(top, #FAFAFA 1%, #D2D2D2 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #FAFAFA), color-stop(100%, #D2D2D2));
    background: -webkit-linear-gradient(top, #FAFAFA 1%, #D2D2D2 100%);
    background: -o-linear-gradient(top, #FAFAFA 1%, #D2D2D2 100%);
    background: -ms-linear-gradient(top, #FAFAFA 1%, #D2D2D2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA', endColorstr='#D2D2D2', GradientType=0);
    background: linear-gradient(top, #FAFAFA 1%, #D2D2D2 100%);
    color:#666666;
    font-weight:bold;
    font-size:16px;
    font-family:Verdana, Geneva, sans-serif;
    text-decoration:none;
    padding:5px 8px;
    line-height:22px;
    -webkit-box-shadow: inset 0px 0px 1px 1px #FFF;
    -moz-box-shadow: inset 0px 0px 1px 1px #FFF;
    box-shadow: inset 0px 0px 1px 1px #FFF;
    cursor:pointer;
}
.gray_button:hover, .gray_button.selected {
    background: #EEE;
    background: -moz-linear-gradient(top, #D2D2D2 1%, #FAFAFA 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #D2D2D2), color-stop(100%, #FAFAFA));
    background: -webkit-linear-gradient(top, #D2D2D2 1%, #FAFAFA 100%);
    background: -o-linear-gradient(top, #D2D2D2 1%, #FAFAFA 100%);
    background: -ms-linear-gradient(top, #D2D2D2 1%, #FAFAFA 100%);
    color:#666;
}
.gray_button_small {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border:1px solid #D2D2D2;
    background: #FAFAFA;
    background: -moz-linear-gradient(top, #FAFAFA 1%, #D2D2D2 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #FAFAFA), color-stop(100%, #D2D2D2));
    background: -webkit-linear-gradient(top, #FAFAFA 1%, #D2D2D2 100%);
    background: -o-linear-gradient(top, #FAFAFA 1%, #D2D2D2 100%);
    background: -ms-linear-gradient(top, #FAFAFA 1%, #D2D2D2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA', endColorstr='#D2D2D2', GradientType=0);
    background: linear-gradient(top, #FAFAFA 1%, #D2D2D2 100%);
    color:#666666;
    font-weight:normal;
    font-size:11px;
    font-family:Verdana, Geneva, sans-serif;
    text-decoration:none;
    padding:5px 8px;
    line-height:22px;
    -webkit-box-shadow: inset 0px 0px 1px 1px #FFF;
    -moz-box-shadow: inset 0px 0px 1px 1px #FFF;
    box-shadow: inset 0px 0px 1px 1px #FFF;
    cursor:pointer;
}
.gray_button_small:hover, .gray_button_small.selected {
    background: #EEE;
    background: -moz-linear-gradient(top, #D2D2D2 1%, #FAFAFA 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #D2D2D2), color-stop(100%, #FAFAFA));
    background: -webkit-linear-gradient(top, #D2D2D2 1%, #FAFAFA 100%);
    background: -o-linear-gradient(top, #D2D2D2 1%, #FAFAFA 100%);
    background: -ms-linear-gradient(top, #D2D2D2 1%, #FAFAFA 100%);
    color:#666;
}
body {
    border-top:3px solid #F38000;
}
#container {
    width:960px;
    margin:0 auto;
    margin-top:20px;
}
.gray_block {
    background:#EEE;
    border:1px solid #CCC;
    padding:20px;
}
#header {
    overflow:hidden;
}
#nav {
    background:url(../images/menu_bg.png) no-repeat;
    height:50px;
    width:960px;
    line-height:50px;
    list-style:none;
    margin-top:20px;
    font-size:14px;
    font-family:Verdana, Geneva, sans-serif;
    font-weight:bold;
    overflow:hidden;
}
#nav li {
    float:left;
    border-right:1px solid #FFA722;
    border-left:1px solid #CC5200;
}
#nav li:first-child {
    border-left:none;
}
#nav li:last-child {
    border-right:none;
}
#nav li a {
    text-decoration:none;
    float:left;
    display:block;
    height:50px;
    padding:0 20px;
    color:#FFF;
}
#nav li a.current, #nav li a:hover, #nav li a.premium:hover {
    color:#622900;
    text-shadow:1px 1px 0px #E8964B;
}
#nav li a.premium {
    color:#000;
    text-shadow:1px 1px 0px #E8964B;
}
#content {
    margin-top:20px;
    display:block;
    overflow:hidden;
}
.premium_hp {
    width:420px;
}
.premium_hp h2 {
    color:#FF9028;
    font-size:30px;
    font-family:Verdana, Geneva, sans-serif;
    font-weight:bold;
}
.premium_hp h3 {
    color:#FFF;
    font-size:14px;
    font-family:Verdana, Geneva, sans-serif;
    font-weight:bold;
    margin-top:15px;
}
.premium_hp ul {
    color:#FFB824;
    font-weight:bold;
    list-style:circle;
    list-style-position:inside;
    margin-top:20px;
    font-family:Verdana, Geneva, sans-serif;
    font-size:13px;
    line-height:22px;
}
.premium_small_hp {
    background:url(/images/bg_purple.jpg) 100% 5%;
    width:470px;
    height:260px;
    margin-top:20px;
    overflow:hidden;
    position:relative;
}
.premium_small_hp h2 {
    font-family:Verdana, Geneva, sans-serif;
    font-size:62px;
    font-weight:bold;
    color:#FFF;
    text-shadow: 0px 0px 120px #ffffff;
    margin-top:20px;
    margin-left:30px;
}
.premium_small_hp ul {
    color:#FFB824;
    font-weight:bold;
    list-style:circle;
    list-style-position:inside;
    margin:20px 0 20px 30px;
    font-family:Verdana, Geneva, sans-serif;
    font-size:13px;
    line-height:22px;
    float:left;
}
.affiliate_small_hp {
    background:url(/images/bg_red_dark.jpg) 30% 50%;
    width:470px;
    height:260px;
    margin-top:20px;
    overflow:hidden;
    position:relative;
    font-family:Verdana, Geneva, sans-serif;
    font-weight:bold;
}
.affiliate_small_hp h2 {
    font-family:Verdana, Geneva, sans-serif;
    font-size:62px;
    font-weight:bold;
    color:#FFF;
    text-shadow: 0px 0px 120px #ffffff;
    margin-top:20px;
    margin-left:30px;
    margin-bottom:10px;
}
.affiliate_small_hp p {
    font-size:24px;
    color:#FFF;
    margin:0 0 0 30px;
}
.affiliate_small_hp span {
    font-size:16px;
    color:#FFA427;
    margin-left:30px;
    margin-top:5px;
    display:block;
}
.login_small {
    background:url(/images/bg_red.jpg) 90% 10%;
    width:470px;
    height:260px;
    margin-top:20px;
    overflow:hidden;
    position:relative;
    font-family:Verdana, Geneva, sans-serif;
    font-weight:bold;
}
.login_small h2 {
    font-family:Verdana, Geneva, sans-serif;
    font-size:30px;
    font-weight:bold;
    color:#FFF;
    text-shadow: 0px 0px 60px #ffffff;
    margin-top:20px;
    margin-left:20px;
    margin-bottom:20px;
}
.register_big {
    background:url(/images/bg_blue.jpg) 90% 10%;
    width:480px;
    margin:0 auto;
    margin-top:20px;
    overflow:hidden;
    position:relative;
    font-family:Verdana, Geneva, sans-serif;
    font-weight:bold;
}
.register_big h2 {
    font-family:Verdana, Geneva, sans-serif;
    font-size:30px;
    font-weight:bold;
    color:#FFF;
    text-shadow: 0px 0px 60px #ffffff;
    margin-top:15px;
    margin-left:20px;
    margin-bottom:20px;
}
#accept_terms {
    background:#FFF;
    border:1px solid #CCC;
    height:35px;
    line-height:35px;
    font-family:Verdana, Geneva, sans-serif;
    font-size:16px;
    font-weight:bold;
    color:#999;
    cursor:pointer;
    width:408px;
    margin-left:20px;
    margin-bottom:10px;
    padding-left:30px;
    display:block;
}
.input_label {
    position:relative;
    left:30px;
    top:25px;
    color:#666;
    font-size:16px;
    font-family:Verdana, Geneva, sans-serif;
    font-weight:bold;
}
.recover_password {
    background:url(/images/bg_blue.jpg) 90% 10%;
    width:480px;
    padding:0 15px;
    margin:0 auto;
    margin-top:20px;
    overflow:hidden;
    position:relative;
    font-family:Verdana, Geneva, sans-serif;
    font-weight:bold;
}
.recover_password h2 {
    font-family:Verdana, Geneva, sans-serif;
    font-size:30px;
    font-weight:bold;
    color:#FFF;
    text-shadow: 0px 0px 60px #ffffff;
    margin-top:15px;
    margin-left:20px;
    margin-bottom:20px;
}
.recover_password p {
    color:#FFF;
    font-size:13px;
    font-weight:bold;
    text-align:center;
}
/*---------- USER CP ------------*/
 #tabss {
    font-family:Verdana, Geneva, sans-serif;
    font-weight:normal;
    color:#333;
    font-size:12px;
}
#tabss .orange_button {
    font-size:16px;
}
#tabss ul li {
    font-family:Verdana, Geneva, sans-serif;
    font-size:14px;
    font-weight:bold;
}
#profile_tab ul {
    margin-bottom:30px;
}
#profile_tab ul li {
    float:left;
    margin-right:15px;
}
#profile_information {
    background:url(/images/bg_red.jpg) 90% 10%;
    width:920px;
    height:300px;
    margin-top:20px;
    overflow:hidden;
    position:relative;
    font-family:Verdana, Geneva, sans-serif;
    font-weight:bold;
}
#profile_information h2 {
    font-family:Verdana, Geneva, sans-serif;
    font-size:30px;
    font-weight:bold;
    color:#FFF;
    text-shadow: 0px 0px 60px #ffffff;
    margin-top:20px;
    margin-left:20px;
    margin-bottom:20px;
}
.upload_small {
    background:url(/images/bg_purple.jpg) 100% 0;
    width:540px;
    margin-top:20px;
    overflow:hidden;
    position:relative;
    font-family:Verdana, Geneva, sans-serif;
    font-weight:bold;
    display:block;
    padding:20px;
    margin:0 auto;
    text-align:center;
}
.upload_small h2 {
    font-family:Verdana, Geneva, sans-serif;
    font-size:30px;
    font-weight:bold;
    color:#FFF;
    text-shadow: 0px 0px 60px #ffffff;
    margin-top:20px;
    margin-left:20px;
    margin-bottom:20px;
}
.upload_small p {
    color:#00CCFF;
    font-weight:bold;
    margin-bottom:20px;
    font-family:Verdana, Geneva, sans-serif;
    font-size:13px;
    line-height:20px;
}
.fm_table tr td:first-child {
    padding-right: 20px;
}
a.fm_item {
    color:#FFF;
    font-size:13px;
    font-weight:bold;
    font-family:Verdana, Geneva, sans-serif;
    text-decoration:none;
    width:425px;
    height:40px;
    line-height:40px;
    padding-left:15px;
    margin-bottom:20px;
    display:block;
    border:1px solid #FFF;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    border-radius:5px;
    background: #B9BFC6;
    background: -moz-linear-gradient(top, #B9BFC6 1%, #8D8B8D 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #B9BFC6), color-stop(100%, #8D8B8D));
    background: -webkit-linear-gradient(top, #B9BFC6 1%, #8D8B8D 100%);
    background: -o-linear-gradient(top, #B9BFC6 1%, #8D8B8D 100%);
    background: -ms-linear-gradient(top, #B9BFC6 1%, #8D8B8D 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#B9BFC6', endColorstr='#8D8B8D', GradientType=0);
    background: linear-gradient(top, #B9BFC6 1%, #8D8B8D 100%);
}
a.fm_item:hover {
    color:#FFF;
    font-size:13px;
    font-weight:bold;
    font-family:Verdana, Geneva, sans-serif;
    text-decoration:none;
    width:425px;
    height:40px;
    line-height:40px;
    padding-left:15px;
    display:block;
    border:1px solid #FFF;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    border-radius:5px;
    background: #01A4DE;
    background: -moz-linear-gradient(top, #01A4DE 1%, #0376B9 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #01A4DE), color-stop(100%, #0376B9));
    background: -webkit-linear-gradient(top, #01A4DE 1%, #0376B9 100%);
    background: -o-linear-gradient(top, #01A4DE 1%, #0376B9 100%);
    background: -ms-linear-gradient(top, #01A4DE 1%, #0376B9 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#01A4DE', endColorstr='#0376B9', GradientType=0);
    background: linear-gradient(top, #01A4DE 1%, #0376B9 100%);
}
table.fm_table td span {
    display:block;
    float:right;
    border-left:1px solid #FFF;
    width:30px;
    height:35px;
    line-height:40px;
    margin-right:15px;
    cursor:pointer;
    padding-top:5px;
    padding-left:10px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    border-radius:5px;
    -moz-border-radius-bottomleft:0;
    -moz-border-radius-topleft:0;
    -webkit-border-bottom-left-radius:0;
    -webkit-border-top-left-radius:0;
    border-bottom-left-radius:0;
    border-top-left-radius:0;
    background: #B9BFC6;
    background: -moz-linear-gradient(top, #B9BFC6 1%, #8D8B8D 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #B9BFC6), color-stop(100%, #8D8B8D));
    background: -webkit-linear-gradient(top, #B9BFC6 1%, #8D8B8D 100%);
    background: -o-linear-gradient(top, #B9BFC6 1%, #8D8B8D 100%);
    background: -ms-linear-gradient(top, #B9BFC6 1%, #8D8B8D 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#B9BFC6', endColorstr='#8D8B8D', GradientType=0);
    background: linear-gradient(top, #B9BFC6 1%, #8D8B8D 100%);
}
table.fm_table td span:hover {
    background: #01A4DE;
    background: -moz-linear-gradient(top, #01A4DE 1%, #0376B9 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #01A4DE), color-stop(100%, #0376B9));
    background: -webkit-linear-gradient(top, #01A4DE 1%, #0376B9 100%);
    background: -o-linear-gradient(top, #01A4DE 1%, #0376B9 100%);
    background: -ms-linear-gradient(top, #01A4DE 1%, #0376B9 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#01A4DE', endColorstr='#0376B9', GradientType=0);
    background: linear-gradient(top, #01A4DE 1%, #0376B9 100%);
}
.pagination {
    text-align:center;
}
.pagination a {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border:1px solid #D2D2D2;
    background: #FAFAFA;
    background: -moz-linear-gradient(top, #FAFAFA 1%, #D2D2D2 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #FAFAFA), color-stop(100%, #D2D2D2));
    background: -webkit-linear-gradient(top, #FAFAFA 1%, #D2D2D2 100%);
    background: -o-linear-gradient(top, #FAFAFA 1%, #D2D2D2 100%);
    background: -ms-linear-gradient(top, #FAFAFA 1%, #D2D2D2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA', endColorstr='#D2D2D2', GradientType=0);
    background: linear-gradient(top, #FAFAFA 1%, #D2D2D2 100%);
    color:#666666;
    font-weight:bold;
    font-size:13px;
    font-family:Verdana, Geneva, sans-serif;
    text-decoration:none;
    padding:8px 8px;
    line-height:22px;
    -webkit-box-shadow: inset 0px 0px 1px 1px #FFF;
    -moz-box-shadow: inset 0px 0px 1px 1px #FFF;
    box-shadow: inset 0px 0px 1px 1px #FFF;
    cursor:pointer;
}
.pagination a:hover, .pagination a.selected {
    background: #EEE;
    background: -moz-linear-gradient(top, #D2D2D2 1%, #FAFAFA 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #D2D2D2), color-stop(100%, #FAFAFA));
    background: -webkit-linear-gradient(top, #D2D2D2 1%, #FAFAFA 100%);
    background: -o-linear-gradient(top, #D2D2D2 1%, #FAFAFA 100%);
    background: -ms-linear-gradient(top, #D2D2D2 1%, #FAFAFA 100%);
    color:#000;
}
#remote_upload_tab {
    line-height:20px;
}
#remote_upload_tab h3 {
    font-size:18px;
    font-weight:bold;
    color: #1C94C4;
    margin-bottom:20px;
}
#remote_upload_tab h4 {
    font-size:16px;
    font-weight:bold;
    color: #1C94C4;
    margin-bottom:20px;
    margin-top:30px;
}
#remote_upload_tab table tr td {
    padding-bottom:10px;
}
/*----------- MOVIES -----------*/
 .movies_table td {
    font-family:Verdana, Geneva, sans-serif;
    padding-top:25px;
    padding-right:25px;
    font-size:12px;
}
.movies_table a.movie_poster:hover {
    opacity:0.9;
    filter:alpha(opacity=90);
}
.movies_table h4 a {
    font-family:Verdana, Geneva, sans-serif;
    font-size:13px;
    color:#069;
    font-weight:bold;
    text-decoration:none;
}
.movies_table h4 a:hover {
    color:#09C;
}
.movies_table span {
    display:block;
    margin-top:5px;
    font-weight:bold;
    color:#333;
}
.movies_table .ratings {
    margin-top:5px;
}
.movies_table .comments {
    font-size:12px;
    color:#333;
    font-weight:bold;
    line-height:16px;
}
.movies_table .comments a {
    background:#333;
    font-size:9px;
    color:#FFF;
    font-weight:normal;
    text-decoration:none;
    height:16px;
    line-height:16px;
    display:inline-block;
    margin-top:-10px;
    padding:0 3px;
}
.movies_table .comments a:hover {
    background-color:#666;
}
.movies_table .author a, .movies_table .category a {
    color:#09C;
    font-size:12px;
    text-decoration:none;
    font-weight:bold;
}
.movies_table .author a:hover, .movies_table .category a:hover {
    color:#069;
}
/*------------VIDEO PAGE------------*/
 .video_details {
    font-family:Verdana, Geneva, sans-serif;
    font-size:12px;
    margin-top:20px;
    width:500px;
    line-height:20px;
    color:#666;
    float:left;
    background:#E9E9E9;
    border:1px solid #CCC;
    padding:10px;
}
.video_details h4, .video_embed h4 {
    font-family:Verdana, Geneva, sans-serif;
    font-size:16px;
    color:#069;
    font-weight:bold;
    text-decoration:none;
    margin-bottom:10px;
}
.video_embed {
    margin-top:20px;
}
.video_sharing {
    font-family:Verdana, Geneva, sans-serif;
    font-size:12px;
    margin-top:20px;
    width:350px;
    line-height:20px;
    color:#666;
    float:right;
    background:#E9E9E9;
    border:1px solid #CCC;
    padding:10px;
}
.video_sharing h4 {
    font-family:Verdana, Geneva, sans-serif;
    font-size:16px;
    color:#069;
    font-weight:bold;
    text-decoration:none;
    margin-bottom:10px;
}
/*--------------  Affiliate page  ---------------*/
 #affiliate_page h2 {
    font-size:22px;
    color:#E86100;
    margin-bottom:60px;
    font-family:Verdana, Geneva, sans-serif;
}
#affiliate_page h3 {
    font-size:16px;
    color:#398CAC;
    /*2*/
    margin-top:20px;
}
#affiliate_page h3#affiliate_balance {
    font-size:18px;
    color:#398CAC;
    margin-bottom:30px;
    border-bottom:1px dotted #C0C0C0;
    padding-bottom:8px;
    width:270px;
}
#affiliate_page #request_payout {
    float:right;
}
#message {
    font-size:120px;
    color:#E2E2E2;
    font-family:Georgia, 'Times New Roman', Times, serif;
    letter-spacing:-10px;
    position:absolute;
    margin-top:-70px;
    z-index:0;
}
#message_text {
    margin-bottom:40px;
    font-weight:bold;
    line-height:26px;
    padding:20px 20px 20px 100px;
    border:1px dotted #D3D3D3;
}
.text_shadow {
    text-shadow: 1px 1px 1px #ffffff;
}
.shadow_table {
    border:1px solid #FFF;
    background:#EAEAEA;
    -moz-border-radius:10px;
    border-radius:10px;
    -webkit-box-shadow: 2px 2px 3px #D5D5D5;
    -moz-box-shadow: 2px 2px 3px #D5D5D5;
    box-shadow: 2px 2px 3px #D5D5D5;
}
.shadow_table tr td, .shadow_table tr th {
    border:none;
    border-bottom:1px solid #FFF;
    border-left:1px solid #FFF;
    padding:9px 10px;
}
.shadow_table tr:last-child td {
    border-bottom:none;
}
.shadow_table tr:first-child td, .shadow_table tr:first-child th:first-child {
    border-left:none;
}
.shadow_table caption {
    text-align:left;
    font-size:22px;
    font-weight:normal;
    color:#E86100;
    text-shadow: 1px 1px 1px #FFF;
    margin-bottom:30px;
    font-family:Verdana, Geneva, sans-serif;
}
.shadow_table tr th {
    color:#398CAC;
    /*2*/
    font-size:17px;
    font-weight:bold;
    text-shadow: 1px 1px 1px #FFF;
    text-align:left;
    padding-left:25px;
}
.shadow_table tr td {
    font-size:14px;
    font-weight:bold;
    color:#00978B;
    padding-left:25px;
}
.shadow_table tr.finished td {
    font-size:14px;
    font-weight:bold;
    color:#00978B;
    padding-left:25px;
}
.shadow_table tr.pending td {
    font-size:14px;
    font-weight:bold;
    color:#787878;
    padding-left:25px;
}
.shadow_table tr.failed td {
    font-size:14px;
    font-weight:bold;
    color:#FF2020;
    padding-left:25px;
}
.shadow_table tr td a:link, .shadow_table tr td a:visited, .shadow_table tr td a:active, .shadow_table tr td a:hover {
    font-size:13px;
    font-weight:normal;
    color:#0099CC;
}
/*------------ FOOTER --------------*/
 #footer {
    background:#EEE;
    border:1px solid #CCC;
    text-align:center;
    margin-top:30px;
    margin-bottom:20px;
    padding:12px 0;
}
#footer a {
    color:#266576;
    font-size:12px;
    font-family:Verdana, Geneva, sans-serif;
    text-decoration:none;
    margin:0 10px;
}
#footer a:hover {
    color:#348AA3;
}
.error_message {
    color:#069;
    font-size:17px;
    border:1px solid #DEDE83;
    background:#FFFFCC;
    margin:0;
    padding:6px 10px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color:#000;
    margin:15px auto;
    display:inline-block;
}
.text_page {
    font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;
    font-size:12px;
    color: #222;
    width:90%;
}
.text_page p {
    margin-top:5px;
    margin-bottom:25px;
    line-height:20px;
}
.text_page h4 {
    font-size:18px;
    font-family:Georgia, 'Nimbus Roman No9 L', serif;
    font-weight:bold;
    font-style:italic;
    color: #333;
    margin-top:30px;
    padding-bottom:4px;
}
.p_top {
    font-size:12px;
    color: #333;
    font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;
    overflow: hidden;
    margin-top:30px;
    margin-bottom:15px;
    padding-bottom:10px;
}
.p_top strong {
    margin-top:10px;
}
.p_top_left, .p_top_right {
    height:35px;
    line-height:35px;
    font-size:14px;
    font-weight:bold;
    font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;
    color: #333;
    text-indent:20px;
    width:478px;
    float: left;
    display: block;
    border:1px solid #BFBFBF;
    text-shadow: 1px 1px 0px #FFFFFF;
    filter: dropshadow(color=#FFFFFF, offx=1, offy=1);
    background: #eeeeee;
    background: -moz-linear-gradient(top, #eeeeee 1%, #cccccc 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eeeeee), color-stop(100%, #cccccc));
    background: -webkit-linear-gradient(top, #eeeeee 1%, #cccccc 100%);
    background: -o-linear-gradient(top, #eeeeee 1%, #cccccc 100%);
    background: -ms-linear-gradient(top, #eeeeee 1%, #cccccc 100%);
    background: linear-gradient(top, #eeeeee 1%, #cccccc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc', GradientType=0);
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-radius: 5px 0px 0px 5px;
    border-radius: 5px 0px 0px 5px;
}
.p_top_right {
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 0px;
    -webkit-border-radius: 0px 5px 5px 0px;
    border-radius: 0px 5px 5px 0px;
}
.p_top_left.active, .p_top_right.active {
    color: #FFF;
    border:1px solid #F26100;
    text-shadow: 1px 1px 0px #F68900;
    filter: dropshadow(color=#F68900, offx=1, offy=1);
    background: #f88d00;
    background: -moz-linear-gradient(top, #f88d00 0%, #e86100 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f88d00), color-stop(100%, #e86100));
    background: -webkit-linear-gradient(top, #f88d00 0%, #e86100 100%);
    background: -o-linear-gradient(top, #f88d00 0%, #e86100 100%);
    background: -ms-linear-gradient(top, #f88d00 0%, #e86100 100%);
    background: linear-gradient(top, #f88d00 0%, #e86100 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f88d00', endColorstr='#e86100', GradientType=0);
}
textarea.form_textbox {
    border: 1px solid #CCC;
}
.box {
    background: #FFF;
    border: 1px solid #DFDFDF;
    text-align: center;
    padding: 8px 12px;
    overflow:hidden;
    text-align:left;
    color:#777;
    margin:5px;
}
.box h4 {
    font-size: 13px;
    font-weight: bold;
    color:#2285A0;
    font-family: Arial, Verdana, sans-serif;
    letter-spacing: 1px;
    word-spacing: 2px;
    margin-bottom: 15px;
}
#remoteForm label {
    margin-bottom: 5px;
}
#remoteForm label strong {
    font-weight: normal;
}
.box p {
    line-height: 22px;
}
.remoteTableContent, .remoteTable {
    margin:5px;
}
/****************
FILE MANAGER
*****************/
 a img {
    outline: none;
    border:none;
}
.fm_table a, .top_sortby a {
    color:#309AB4;
    text-decoration: none;
}
.fm_table {
    border: 1px solid #DDD;
    border-collapse: separate;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color:#444;
    margin-top:5px;
    max-width: 100%;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 18px;
}
.fm_table tr th, .fm_table tr td {
    padding: 8px;
    line-height: 18px;
    text-align: left;
    vertical-align: top;
    border-top: 1px solid #DDD;
}
.fm_table tr th {
    background-color: #555;
    color:#FFF;
}
.fm_table tr td {
    background-color: #F9F9F9;
    color:#999;
}
.fm_table th + th, .fm_table td + td, .fm_table th + td, .fm_table td + th {
    border-left: 1px solid #DDD;
}
.table tbody tr:hover td, .table tbody tr:hover th {
    background-color: whiteSmoke;
}
th.file_number {
    width:20px;
}
.fm_table .file_name {
    color: #9E9E9E;
    font-size: 11px;
}
.fm_table th.file_name {
    color: #FFF;
}
.fm_table .file_name a {
    display: block;
    font-weight: bold;
    font-size: 12px;
    font-family: Arial, Verdana, sans-serif;
}
.fm_table .btn, .remoteTable .btn {
    padding: 0.1em 0.6em;
}
.control-label {
    font-weight: bold;
    color: #444;
}
.controls input[type="text"], .controls input[type="password"] {
    border:1px solid #CCC;
}
.span3 {
    width:260px;
}
.btn {
    font-weight: bold;
    padding:0.1em 0.6em;
}
.btn.active, .btn:hover {
    background-position: 0 -15px;
    color: #FFF;
    text-decoration: none;
}
.top_sortby {
    padding: 3px 0;
    display: block;
}
.top_sortby a {
    margin-right: 15px;
}
#fm_search_form {
    float: right;
}
.pagination {
    text-align: center;
}
.pagination ul {
    display: inline-block;
    margin-bottom: 0;
    margin-left: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    text-align: center;
}
.pagination ul > li {
    display: inline;
}
.pagination ul > li > a, .pagination ul > li > span {
    float: left;
    padding: 4px 12px;
    line-height: 20px;
    text-decoration: none;
    background-color: white;
    border: 1px solid #DDD;
    border-left-width: 0;
    color:#258CD1;
}
.pagination ul > li:first-child > a, .pagination ul > li:first-child > span {
    border-left-width: 1px;
    -webkit-border-bottom-left-radius: 4px;
    border-bottom-left-radius: 4px;
    -webkit-border-top-left-radius: 4px;
    border-top-left-radius: 4px;
    -moz-border-radius-bottomleft: 4px;
    -moz-border-radius-topleft: 4px;
}
.pagination ul > li:last-child > a, .pagination ul > li:last-child > span {
    -webkit-border-top-right-radius: 4px;
    border-top-right-radius: 4px;
    -webkit-border-bottom-right-radius: 4px;
    border-bottom-right-radius: 4px;
    -moz-border-radius-topright: 4px;
    -moz-border-radius-bottomright: 4px;
}
.pagination ul > .active > a, .pagination ul > .active > span {
    color: #999;
    cursor: default;
}
.pagination ul > li > a:hover, .pagination ul > li > a:focus, .pagination ul > .active > a, .pagination ul > .active > span {
    background-color: #D8D8D8;
    color:#333;
}
.text_input {
    padding: 0.2em 0.4em;
    font-size: 1em;
    line-height: 1em;
}
textarea.text_input {
    border:1px solid #CCC !important;
}
.fixed_bar {
    overflow:hidden;
    display:block;
    background:#E6E4E3;
    border:1px solid #DAD4D4;
    padding:6px 8px;
    margin:0 10px;
    -moz-border-radius:4px;
    -webkit-border-radius:4px;
    border-radius:4px;
}
.fixed_bar.fixed {
    position:fixed;
    top:0px;
    width:942px;
    margin-left:-3px;
    -moz-border-radius:0px;
    -webkit-border-radius:0px;
    border-radius:0px;
    border-bottom:2px solid #BDBDBD;
}
.fixed_bar_sort {
    height:28px;
    line-height:28px;
}
.fixed_bar_arrows {
    float:right;
    margin-right:80px;
}
.fixed_bar_arrows a {
    margin:0px;
    display:inline-block;
    padding:4px 10px;
    border:1px solid #A7A7A7;
}
.gray_button_small {
    border:1px solid #A7A7A7;
}
.misc a {
    margin-right: 5px;
    text-decoration: none;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
    opacity: 0.6;
}
.misc a:hover {
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}
.remoteTable {
    width:100%;
}
.remoteTable th {
    text-align: left;
    font-weight: normal;
    background: #2285A0;
    color: #EEE;
    padding: 8px 5px;
}
#usercp_content .remoteTable td {
    color:#666;
    background: #F9F9F9;
    border-bottom: 1px solid #DDD;
    padding: 8px 10px;
}
/***************
SUPPORT
*****************/
 #ticketContent a.btn:link, a.btn:visited, a.btn:active, a.btn:hover {
    text-decoration:none;
    color:#FFF !important;
    font-size:12px;
}
#ticketContent a:hover {
    text-decoration:underline;
    color:#09C;
}
#ticketContent hr {
    border:none;
    border-top:1px dashed #E9E9E9;
}
#ticketContent table {
    border:none;
    font-weight:normal;
    color:#777
}
#ticketContent table tr td {
    border:none;
    border-bottom:1px dashed #CCC;
    padding:5px;
}
#ticketContent h3 {
    margin-top: 10px;
    color: 333;
    font-size: 1.2em;
    font-weight: bold;
}
#ticketContent strong {
    font-size:1.1em;
}
#ticketContent span {
    margin-top: 10px;
    margin-bottom: 10px;
    display: block;
}
.green{
    color:#090;
}
.red {
    color:#900
}
.ticket_reply {
background-color: #FCFCFC;
border: 1px solid #DDD;
padding: 8px 12px;
margin-top: 15px;
}
.admin_reply {
background-color: #C5CFD3;
border: 1px solid #A1A5A7;
padding: 8px 12px;
margin-top: 15px;
}
.ticket_question {
margin-bottom: 20px;
padding: 8px 12px;
margin-top: 15px;
background-color: #F5F5F5;
border: 1px solid #C0CFD5;
}
.ticket_question p{
    padding:5px;
}
.ticket_question h3{
    margin:10px 0 10px 0;
}
.admin_reply strong, .ticket_reply strong {
    display:block;
}
#ticketContent a.btn{
    color:#FFF;
    text-decoration: none;
}
.border_table {
    width: 100%;
}
.border_table td {
    border-bottom: 1px solid #E2E2E2;
    padding: 10px;
    color: #444;
}
.box h3 {
    font-size: 15px;
    font-weight: bold;
    color: #444;
    margin-top: 10px;
}
/****************
Uploader
*****************/
 .uploadWidget {
    /*    background: #dd6a1e;
    background: -moz-linear-gradient(45deg,  #dd6a1e 0%, #f17b21 100%);
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%,#dd6a1e), color-stop(100%,#f17b21));
    background: -webkit-linear-gradient(45deg,  #dd6a1e 0%,#f17b21 100%);
    background: -o-linear-gradient(45deg,  #dd6a1e 0%,#f17b21 100%);
    background: -ms-linear-gradient(45deg,  #dd6a1e 0%,#f17b21 100%);
    background: linear-gradient(45deg,  #dd6a1e 0%,#f17b21 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dd6a1e', endColorstr='#f17b21',GradientType=1 );
    */
    background: url(../images/cloudbg.png) no-repeat;
    background-position: left bottom;
    padding:15px;
    color:#FFF;
    overflow: hidden;
}
.uploadWidgetBG {
    background: url(../images/blockbg.png);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden;
}
#upload {
    font-family: Arial, Verdana, sans-serif;
    /*background-color: rgba(255, 255, 255, 0.4);*/
    /*    background-image:-webkit-linear-gradient(top, #FFFFFF, #EEEEEE);
    background-image:-moz-linear-gradient(top, #FFFFFF, #EEEEEE);
    background-image:linear-gradient(top, #FFFFFF, #EEEEEE);*/
    width:590px;
    float:left;
    padding:10px 0 0 30px;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);*/
}
#drop {
    background: none;
    padding: 0;
    border-radius: 3px;
    text-align: left;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    color: #FFF;
    height: 100%;
}
#drop a.uploadBtn {
    color: #FFF;
    font-size: 14px;
    border-radius: 2px;
    cursor: pointer;
    display: block;
    line-height: 1;
    height: inherit;
    width:420px;
}
#drop a.uploadBtn:hover {
    text-decoration: none;
    -webkit-opacity: 0.9;
    -moz-opacity: 0.9;
    filter:alpha(opacity=90);
    opacity: 0.9;
}
#drop strong {
    text-align: center;
    display: block;
    width: 315px;
}
#drop input {
    display:none;
}
#uploader ul {
    list-style:none;
    margin:10px auto;
    width: 700px;
    color: #EEE;
    padding:10px;
    margin-bottom: 15px;
}
#uploader ul li {
    margin-bottom: 8px;
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 0%, #c9cacc 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #c9cacc));
    background: -webkit-linear-gradient(top, #ffffff 0%, #c9cacc 100%);
    background: -o-linear-gradient(top, #ffffff 0%, #c9cacc 100%);
    background: -ms-linear-gradient(top, #ffffff 0%, #c9cacc 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #c9cacc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#c9cacc', GradientType=0);
    border-top: 1px solid #c9cacc;
    border-bottom: none;
    padding: 10px;
    position: relative;
    text-align: left;
}
#uploader ul li input {
    display: none;
}
#uploader ul li .vidInfosDiv {
    overflow: hidden;
    white-space: nowrap;
    color: #444;
    font-size: 14px;
    font-weight: bold;
    line-height: 18px;
    margin:0;
    text-shadow: 1px 1px rgba(255, 255, 255, 0.76);
    font-family: Arial, Verdana, sans-serif;
}
#uploader ul li .vidInfosDiv .vidTitle {
    font-size: 13px;
}
#uploader ul li i {
    font-weight: normal;
    font-style:normal;
    color:#6BA5D3;
    font-size: 0.9em;
}
#uploader ul li canvas {
    top: 15px;
    left: 32px;
    position: absolute;
}
#uploader ul li span {
    width: 15px;
    height: 12px;
    background: url('../assets/img/icons.png') no-repeat;
    position: absolute;
    bottom: 19px;
    right: 15px;
    cursor: pointer;
}
#uploader ul li.working span {
    height: 16px;
    background-position: 0 -12px;
}
#uploader ul li.error p {
    color:#FF1B1B;
}
#uploader ul li em {
    display: block;
    margin: 5px 0 0 0;
    color: #CE1919;
}
#uploader .screens {
    margin-top: 5px;
    margin-left: 16px;
}
#uploader .infos a.editVidBtn {
    margin-top: 5px;
    color: #FFF;
    font-size: 12px;
    font-weight: normal;

    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}
#uploader .infos a.editVidBtn:hover {
    color:#FFF;
}
#uploader .infos {
    margin: 5px 0 0 0;
    color: #FFF;
    background: #24313D;
    line-height: 20px;
    font-size: 13px;
    font-family: Arial, Verdana, sans-serif;
    padding: 5px;
    border: 1px dashed #7C7C7C;
    display: none;
}
#uploader .vidURL {
    font-size: 12px;
    display: block;
}
#uploader ul li input.vidURL {
    display: inline-block;
    height: 16px;
    line-height: 16px;
    width: 228px;
    font-size: 10px;
    padding: 0 4px;
    margin: 0;
    background: #FFF;
    color: #696969;
    border: 1px solid #000;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
#uploader .infos a {
    color: #25ACE0;
    text-decoration: none;
}
#uploader .infos a:hover {
    color: #6BD1F8;
}
.fileslist {
    width: 100%;
    padding: 0;
    overflow: hidden;
    display: block;
}
.fileslist ul li {
    width: 275px;
    margin: 10px 5px 10px 10px;
    float: left;
    overflow: hidden;
    position: relative;
    padding-bottom: 10px;
}

/*Login HP*/
 .grayBox {
    position: relative;
    padding:15px 20px;
    border:1px solid rgba(255, 255, 255, 0.2);
    /*-webkit-box-shadow: 0 0 7px 1px rgba(0,0,0,0.2);
    box-shadow: 0 0 7px 1px rgba(0,0,0,0.2);*/
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 0%, #c9cacc 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #c9cacc));
    background: -webkit-linear-gradient(top, #ffffff 0%, #c9cacc 100%);
    background: -o-linear-gradient(top, #ffffff 0%, #c9cacc 100%);
    background: -ms-linear-gradient(top, #ffffff 0%, #c9cacc 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #c9cacc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#c9cacc', GradientType=0);
}
.grayBox .curl {
    background: url(../../images/curl.png);
    position: absolute;
    width: 75px;
    height: 63px;
    display: block;
    top: -11px;
    right: -15px;
}
.loginHP {
    float:right;
    width: 230px;
    margin: 0;
    display: block;
    color: #555;
    font-size: 13px;
    font-weight: normal;
    font-family: Arial, Verdana, sans-serif;
}
.loginHP h3 {
    color: #505050;
    letter-spacing: 2px;
    font-size: 15px;
    margin-bottom: 15px;
}
.loginHP label {
    font-weight: normal;
    display: block;
    letter-spacing: 1px;
    margin-top: 5px;
}
.loginHP input {
    width:90%;
    padding:8px 12px;
    background: #FFF;
    border:1px solid #a6a6a6;
    color:#999;
    font-family: arial, Verdana, sans-serif;
    font-size: 13px;
}
.loginHP button {
    margin-top: 4px;
    padding:8px 12px;
    color: #FFF;
    border:1px solid #F0F0F0;
    font-size: 14px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    cursor: pointer;
    width:102%;
    background: #585858;
    background: -moz-linear-gradient(top, #585858 0%, #272727 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #272727));
    background: -webkit-linear-gradient(top, #585858 0%, #272727 100%);
    background: -o-linear-gradient(top, #585858 0%, #272727 100%);
    background: -ms-linear-gradient(top, #585858 0%, #272727 100%);
    background: linear-gradient(to bottom, #585858 0%, #272727 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#585858', endColorstr='#272727', GradientType=0);
}
.loginHP button:hover {
    background: #353535;
}
.loginHP p {
    color: #555;
    font-size: 13px;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.loginHP p a {
    color: #1D8CC0;
    text-decoration: none;
}
hr.sep {
    border:none;
    border-top: 1px solid #B3B3B3;
    border-bottom: 1px solid #F0F0F0;
    height: 0;
    margin-bottom: 10px;
}
.dropLoggedIn { margin-left:210px; }

.mobilePay {
font-size: 12px;
width: 300px;
margin: 0 auto;
background: #F5F5F5;
border: 1px solid #CCC;
padding: 10px 30px;
border-radius: 4px;
margin-top: -10px;
margin-bottom: 15px;
}
.mobilePay h4 {
font-size: 14px;
color: #EA6700;
}