/* Reset & Basics (Inspired by E. Meyers) */
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,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    outline: 0;
    font: inherit;
    vertical-align: top;
}

@font-face {
    font-family: arial-black;
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/arial-black.ttf) format("truetype");
}

@font-face {
    font-family: SansationBold;
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/SansationRegular/SansationBold.eot#iefix) format("embedded-opentype"),url(../fonts/SansationRegular/SansationBold.woff) format("woff"),url(../fonts/SansationRegular/SansationBold.ttf) format("truetype"),url(../fonts/SansationRegular/SansationBold.svg#SansationBold) format("svg");
}

@font-face {
    font-family: SansationRegular;
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/SansationRegular/SansationRegular.eot#iefix) format("embedded-opentype"),url(../fonts/SansationRegular/SansationRegular.woff) format("woff"),url(../fonts/SansationRegular/SansationRegular.ttf) format("truetype"),url(../fonts/SansationRegular/SansationRegular.svg#SansationRegular) format("svg");
}

@font-face {
    font-family: 'shift_icons';
    src: url(../fonts/font/shift.eot);
    src: url(../fonts/font/shift.eot#iefix) format("embedded-opentype"),url(../fonts/font/shift.woff) format("woff"),url(../fonts/font/shift.ttf) format("truetype"),url(../fonts/font/shift.svg#shift) format("svg");
}
.shift_icons {
    font-family: "shift_icons";
}

@import url('https://fonts.googleapis.com/css?family=Open+Sans');

/**** START ****/
* {
    box-sizing: border-box;
}

html {
    position: relative;
    min-height: 100%;
    font: 20px/23px 'Open Sans', sans-serif;
}

body {
    font-size: 1rem;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    margin: 0;
    padding: 0;    
    color: #444;
    letter-spacing: -1px;
}

@media (min-width: 400px) {

    html {
        font-size: calc(16px + (22 - 16) * (100vw - 400px) / (1200 - 400));
    }
}

p, li, td {
    margin: 0 0 15px;
    font-size: calc( 21px + (23 - 19) * (100vw - 1200px) / (1200 - 400) ); 
    line-height: 1.5em;
    letter-spacing: -0.04rem;
}

@media (min-width: 1200px) {

    html {
        font-size: 22px;
    }
    
    p, li, td {
        font-size: 1em; 
    }
}


/* #Typography */
h1,h2,h3,h4,h5,h6 {
    color: #0f0931;
    font-family: SansationBold;
    font-weight: 600;
    margin: 0 0 5px;
    padding: 0;
}
h1 {
    font-size: 2.5rem;
    letter-spacing: -0.13rem;
    line-height: 2.25rem;
}

h2 {
    font-size: 2.1rem;
    letter-spacing: -0.11rem;
    line-height: 1.8rem;
}

h3 {
    font-size: 1.75rem;
    letter-spacing: -0.08rem;
    line-height: 1.54rem;
}

h4 {
    font-size: 1.4rem;
    letter-spacing: -0.08rem;
    line-height: 1.3rem;
}

h5 {
    font-size: 1.2rem;
    letter-spacing: -0.08rem;
    line-height: 1.3rem;
}

p,li {
    margin: 0 0 15px;
}

ul, ol {
    margin-left: 5%;
}

strong {
    font-weight: 600;
}

em {
    display: inline;
    font-style: italic;
    padding-right: 3px;
}

strong em {
    padding-right: 0;
}

img,embed,object,video {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}


.embedded-video {
  width: 100%;
  max-width: 700px;
  margin-bottom: 40px;
}

.video_embed {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.embedded-video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.embedded-video-wrapper > * {
    position: absolute;
    top: 10%;
    left: 0;
    height: 100%;
    width: 100%;
}

blockquote {
    padding: 0 5%;
    border-left: 5px solid #ccc;
}


#admin-menu li {
    font-size: 10px;
}

.menu_select_bottom {
    display: none;
}

/* #Layout */
#container {
    margin: 0;
    padding: 0;
    padding-bottom: 120px;
}

/* FORMS */
select,input[type=password],input[type=text] {
    border: 1px solid rgba(0,0,0,.5);
    border-radius: 3px;
    color: #555;
    font-weight: 700;
    padding: 8px 3px;
    width: 97%;
    font-family: "Ubuntu",sans-serif;
    font-size: .8rem;
    margin: 2px 0;
}

input[type="text"]:hover,textarea:hover {
    box-shadow: 0 0 3px rgba(255,255,255,1);
    transition: box-shadow .2s ease-in-out;
}

input[type="text"]:focus,textarea:focus {
    box-shadow: 0 0 3px rgba(116,185,239,1);
    border-color: #74B9EF;
}

input[type=checkbox] {
  
}

label.option {
  line-height: 1em;
}

.gold_bg, a.gold_bg, input.gold_bg, button.gold_bg {
    color: #fff;
    background-color: #faaf18;
    border-radius: 2px;
    font-size: 1.1rem;
    font-family: "SansationBold";
    outline: none;
    padding: .7em .8em;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    display: block;
}

.gold_bg:hover,a.gold_bg:hover {
    text-decoration: none;
    text-shadow: 0 0 6px rgba(255,255,255,.3) ,0 0 15px rgba(255,255,255,.3) ,0 0 20px rgba(255,255,255,.3);
}

textarea {
    resize: vertical;
}

.white,a.white {
    color: #FFF;
}

.orange,a.orange {
    color: #fdaa28;
}

.red,a.red {
    color: #FF2A2A;
}

.center {
    text-align: center;
    display: block;
    margin: 0 auto;
}

a:link,a:visited,a:active {
    text-decoration: none;
}

.hidden {
    display: none;
}

.clear,.clearfix:after,.clear {
    clear: both;
}

.s10 {
    height: 10px;
}

.s20 {
    height: 20px;
}

.s30 {
    height: 30px;
}

.s40 {
    height: 40px;
}

.s50 {
    height: 50px;
}

.s60 {
    height: 60px;
}

.s70 {
    height: 70px;
}

.s80 {
    height: 80px;
}

.s90 {
    height: 90px;
}

.s100 {
    height: 100px;
}

.l {
    float: left;
    margin: 5px 1.5vw 5px 0;
}

.shadow {
    box-shadow: 2px 3px 4px 2px rgba(0,0,0,0.5);
}

.invite_sharebar span a {
  margin-top: 6px;
}

.invite_sharebar {
  width: 45px;
  margin: 0 auto;
}

.facebook_32 a {
  background: url(../images/facebook_32.png) no-repeat left top;
}

.twitter_32 a {
  background: url(../images/twitter_32.png) no-repeat left top;
}

.googleplus_32 a {
  background: url(../images/googleplus_32.png) no-repeat left top;
}

.linkedin_32 a {
  background: url(../images/linkedin_32.png) no-repeat left top;
}

.pinterest_32 a {
  background: url(../images/pinterest_32.png) no-repeat left top;
  margin-bottom: 12px;
}

.messages {
    position: relative;
    top: 0;
    text-align: center;
    z-index: 5;
    background-color: rgba(255,255,255,0.7);
    border: 1px solid #ccc;
    padding: 8px 0;
}

.edit_links {
    position: fixed;
	left: 0;
    bottom: 0;
    width: 100%;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    padding-left: 33px;
}

.edit_links a, .edit_links span {
    color: #fff;
    display: inline-block;
    margin: 0 12px;
}

div.messages.edit_link {
    border: none;
    padding: 0;
    background-color: transparent;
}

#bottom_fixed {
    position: fixed;
    bottom: 0;  
    background-color: #000;
    padding: 1px 0 5px 30px;
    font-size: 10px;
    line-height: 2em;
    left: 0;
    z-index: 150;
    width: 100%;
}

.messages.edit_link a {
  color: #fff;
  padding: 0 12px;
}

/* COLORBOX */
#overcat {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #333;
    opacity: .6;
    display: none;
    z-index: 11;
}

#colorbox {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 20;
}

#cboxClose {
    background: none;
    border: 0 none;
    color: #fff;
    font-size: 1.42em;
    position: absolute;
    right: -5px;
    top: -2px;
}

#cboxClose::after {
    font-family: shift_icons;
    content: "\e821";
}

#cboxClose:hover {
    color: #ccc;
    cursor: pointer;
}

#reg_form {
    color: #fff;
    border-radius: 20px;
    padding: 5% 5% 15%;
    background-color: #D38644;
}

.div_cb {
    font-weight: 500;
    margin: 11px 0;
}

#s1 .div_cb {
    font-size: .8rem;
    font-weight: 500;
    line-height: .7rem;
    margin: 11px 0;
}

#sop_second,#sub_second {
    margin: 30px 5%;
}

button.gold_bg {
    padding: .37em .8em;
    width: 97%;
}

#form_error, .form_error {
    background-color: #d35e5e;
    font-size: .78rem;
    line-height: .5rem;
    padding: 4px;
    display: none;
}

.reg_form_4 button.gold_bg {
    background-color: #846000;
}

.reg_form_form .div_cb {
    margin: 5px 5%;
}

.reg_form_form input[type="checkbox"] {
    position: relative;
    top: -6px;
}

.reg_form_form button.gold_bg,.reg_form_form a.gold_bg {
    padding: .37em .8em;
    width: 80%;
    margin: 5px auto 0;
}
/* END COLORBOX */

.embedded-video {
    width: 100%;
    max-width: 700px;
    margin-bottom: 40px;
}

.videoWrapperOuter {
    max-width: 800px;
    margin: 0 auto;
}
.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin-bottom: 20px;
}

.videoWrapper iframe {
    display: block;
    margin: 15px auto;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wrap_round_left,.wrap_round_right {
    position: relative;
}

.wrap_round_left div {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
}

.wrap_round_right div {
    position: absolute;
    z-index: 0;
    right: 0;
    top: 0;
}

.wleft {
    margin-left: -3%;
}

.wright {
    margin-right: -3%;
}

.circle {
  border-radius: 100%;
  -webkit-shape-outside: circle();
  shape-outside: circle();
}

.sandwich {
    height: 0;
    width: auto;
}

.handbad {
    left: 0;
    top: 0;
    width: 100%;
    position: absolute;
}



.right {
  float: right;
	margin: 0 -80px 0 20px;
	margin: 5px 0 5px 20px;
}

.left {
  float: left;
	margin: 10px 20px 0 -80px;
	margin: 5px 20px 5px 0;
}



.free_reg_top div {
    display: inline;
    padding-right: 6px;
}

#register-notify .form-item {
    font-size: .5em;
    margin: 3px 0;
}
.privacy {
    margin-top: 12px;
    font-size: .7em;
}

#notify_box_outer {
    background-color: rgba(0,0,0,0.5);
    position: fixed;
    width: 100%;
}

#notify_box_inner {
    margin: 0;
    max-width: 600px;
    padding: 0 1% 15px;
    background-color: rgba(255,255,255,0.9);
}

.closed {
    padding-top: 5px;
    text-align: center;
    font-size: 1em;
    line-height: 1em;
    color: #C6452B;
}

#notify_box #edit-Catalyst-wrapper, #notify_box .privacy {
    display: none;
}

#notify_box .free_reg_top {
    text-align: center;
    margin-top: 15px;
}

#notify_box input[type=submit]{
    color: #fff;
    background-color: #faaf18;
    border-radius: 2px;
    font-size: 1.1rem;
    font-family: "SansationBold";
    outline: none;
    padding: .3em .8em;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    display: block;
    width: 96.5%;
}

#notify_box input[type=submit]:hover {
    text-decoration: none;
    text-shadow: 0 0 6px rgba(255,255,255,.3) ,0 0 15px rgba(255,255,255,.3) ,0 0 20px rgba(255,255,255,.3);
}

.topboxx {
    text-align: center;
    margin: 5px auto;
}

#ty_inner {
    max-width: 1200px;
    padding: 0 8%;
    margin: 0 auto;
}

#ty_inner_button {
    max-width: 400px;
    margin: 0 auto;
}

#ty_inner_button a {
    color: #fff;
}

.recording_insert {
    margin: 0 auto;
    text-align: center;
    padding: 13px 0 23px;
    margin-top: -14px;
    background-color: #F6E4CC;
}


.audio_player {
    /*width: 60%;*/
    display: block;
    margin: 0 auto;
    max-width: 500px;
}

.audio_player_box {
    max-width: 400px;
    margin: 0 auto;
}

.audio_player_box audio {
   /* width: 100%;*/
}

.audio_player_box a {
    font-size: 14px;
}

#AjaxMe p {
    text-align: center;
}

#AjaxMe p.left_align {
    text-align: left;
}

.page-runcode #PageBottom {
    display: none;
}


#page-signin-form {
    margin-bottom: 300px;
    max-width: 400px;
    margin: 0 auto;
}

#page-signin-form #edit-password {
    height: inherit;
    font-size: 1em;
    line-height: 1em;
}

#page-signin-form .form-item {
    margin: 15px 0;
    padding-left: 0;
}

#page-signin-form #edit-submit {
    color: #fff;
    background-color: #faaf18;
    border-radius: 2px;
    font-size: 1.1rem;
    font-family: "SansationBold";
    outline: none;
    padding: .7em .8em;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    display: block;
}

#page-signin-form #edit-submit:hover {
    text-decoration: none;
    text-shadow: 0 0 6px rgba(255,255,255,.3) ,0 0 15px rgba(255,255,255,.3) ,0 0 20px rgba(255,255,255,.3);
}

.download_link {
    font-size: .7em;
}

.download_link span {
    margin-left: 5px;
}

#reg_disclose {
    font-size: .7em;
    line-height: 1.1em;
    margin-top: 9px;
}


.showmore_hide, .showless {
    display: none;
}

.showmore, .showless {
    cursor: pointer;
    color: #0e8290;
    text-align: right;
}

.showmore::before {
  font-family: shift_icons;
  content: "\e808";
  padding-right: 6px;
}

.showless::before {
  font-family: shift_icons;
  content: "\e809";
  padding-right: 6px;
}








#admin-menu .admin_menu_rep {
    color: #ff1515;
    font-size: 1.2em;
    font-weight: 600;
    float: right;
    margin-right: 10px;
}
#reportProblem {
    position: fixed;
    top: 30px;
    right: 5px;
    background-color: #fff;
    padding: 20px;
    border: solid #b90000 1px;
    box-shadow: 2px 6px 5px #ddd;
}
#admin-menu-account .admin_menu_rep.active {
    font-size: 1.6em;
}



#aqq .form-item {
    margin-top: 2px;
    margin-bottom: 0;
}

#PageBottom {
    color: #fff;
    font-size: .65em;
    position: absolute;
    left: 0;
    bottom: 0;
    height: auto;
    width: 100%;
}

#flogo {
    margin-left: 3%;
}

#pbotright {
    float: right;
    font-size: 1.1em;
    margin-top: 20px;
    text-align: right;
    margin-right: 2%;
    min-width: 500px;
}

#pbotright span, #pbotright a {
    color: #fff;
    margin: 0 3%;
}

.dim {
    opacity: .5;
}


@media (max-width: 420px) {
#flogo img {
    margin: 0 auto;
    display: block;
}
#pbotright {
    float: none;
    font-size: 1.1em;
    text-align: center;
    min-width: inherit;
    margin: 0 0 20px;
}
#container {
    padding-bottom: 140px;
}
}









