<!--
@charset 'UTF-8';

/*** GENERIC CLASSES  ***/

/** general reset  ***/
* {	
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    line-height: 1.4em;
    vertical-align: baseline;
    text-decoration: none; 
}
html { 
    overflow-y: scroll;
}
body {
    font: 100% Arial, Helvetica, sans-serif;
    background: white;
    margin: 0; 
    padding: 0;
    text-align: left;
    /* add a WebKit-only fake animation to Fix Android problem with the pseudo-class :checked not working combined with the general sibling*/
    -webkit-animation: bugfix infinite 1s;
}
/* Fix Android */
@-webkit-keyframes bugfix { 
  from {padding:0;} 
  to {padding:0;} 
}

ol, ul { 
    list-style: none; 
    margin: 0;
}
ul li { 
    margin: 0; 
    padding: 0;
}
h1 { 
    margin-bottom: 10px; 
    color:#336699;
}
h2 {
    margin-bottom: 1em;
}
a, img { 
    outline: none; 
    border: none;
    text-decoration: none;
    font-weight: bold;
}
p { 
    margin: 0 0 10px; 
    line-height: 1.4em; 
    font-size: 1.2em;    
}
img { 
    display: block;
    width: 100%;
    height: auto;
    /*vertical-align: middle;*/
}
article, details, figcaption, figure,
hgroup, menu, nav, section { 
    display: block;
}


/*  MISC RULES  */

/*handles the vertical centering*/
.Centerer
{
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.Centered
{
    display: inline-block;
    vertical-align: middle;
}

.sharebtn{
    margin: 7px 10px 0px 0px;
    border: 0px red solid;
    width: 100px;
}
.contentBox{
    position:relative;
    float:left;
    background-color: white;
}
.textBox{
    position:relative;
    width:auto;
    padding:10px;
    text-align: left;
    float:left;
    background-color: white;
}

.genBoxAbs{
    position:absolute;
    text-align: left;
    overflow: hidden;
}
.genBoxRel{
    position:relative;
    text-align: left;
    overflow: hidden;
    float:left;
}
.genBoxImg{
    position:relative;
    float:left;
}
.whole-width{
    width:100%; 
}
.half-width{
    width:50%; 
}
.two-third-width{
    width:66.6667%;
}
.one-third-width{
    width:33.3333%; 
}

.curv {	
    border-radius: 10px;
    -moz-border-radius: 10px;	
}
.curv-2 {	
    border-radius: 2px;
    -moz-border-radius: 2px;	
}

.circle {
    border-radius: 50%;
    -moz-border-radius: 50%;
    background-position: center;
    display:block;
    overflow: hidden;
}
.circlebox {	
    border-radius: 50%;
    -moz-border-radius: 50%;	
}
.shd1 {	
    box-shadow: 6px 6px 5px gray;
    -moz-box-shadow: 6px 5px 5px gray;
    -webkit-box-shadow: 6px 6px 5px gray;
}
.shd2 {	
    box-shadow: 6px 6px 5px #414141;
    -moz-box-shadow: 6px 5px 5px #414141;
    -webkit-box-shadow: 6px 6px 5px #414141;
}
.in-shd1 {	
    box-shadow:inset 0px 0px  50px 30px black;
    -moz-box-shadow:inset 0px 0px 50px 30px black;
    -webkit-box-shadow:inset 0px 0px 50px 30px black;
}

.grad {
    background-color: #f2f2f2;
    background:linear-gradient(top,white,#f2f2f2);
    background:-moz-linear-gradient(top,white,#f2f2f2);
    background:-webkit-linear-gradient(top,white,#f2f2f2);
    background:-o-linear-gradient(top,white,#f2f2f2);
    background:-ms-linear-gradient(top,white,#f2f2f2);
}
.grad_horiz {
    background-color: #f2f2f2;
    background:linear-gradient(left,white,#f2f2f2);
    background:-moz-linear-gradient(left,white,#f2f2f2);
    background:-webkit-linear-gradient(left,white,#f2f2f2);
    background:-o-linear-gradient(left,white,#f2f2f2);
    background:-ms-linear-gradient(left,white,#f2f2f2);
}
.grad_horiz_rev {
    background-color: #777777;
    background:linear-gradient(right,white,#777777);
    background:-moz-linear-gradient(right,white,#777777);
    background:-webkit-linear-gradient(right,white,#777777);
    background:-o-linear-gradient(right,white,#777777);
    background:-ms-linear-gradient(right,white,#777777);
}
.grad_horiz_rev_lite {
    background-color: #f2f2f2;
    background:linear-gradient(right,white,#f2f2f2);
    background:-moz-linear-gradient(right,white,#f2f2f2);
    background:-webkit-linear-gradient(right,white,#f2f2f2);
    background:-o-linear-gradient(right,white,#f2f2f2);
    background:-ms-linear-gradient(right,white,#f2f2f2);
}

.grad_dark {
    background-color: #f2f2f2;
    background:linear-gradient(top,white,#a2a2a2);
    background:-moz-linear-gradient(top,white,#a2a2a2);
    background:-webkit-linear-gradient(top,white,#a2a2a2);
    background:-o-linear-gradient(top,white,#a2a2a2);
    background:-ms-linear-gradient(top,white,#a2a2a2);
}
.grad_rev {
    background-color: #f2f2f2;
    background:linear-gradient(top,#f2f2f2,white);
    background:-moz-linear-gradient(top,#f2f2f2,white);
    background:-webkit-linear-gradient(top,#f2f2f2,white);
    background:-o-linear-gradient(top,#f2f2f2,white);
    background:-ms-linear-gradient(top,#f2f2f2,white);
}
.grad_rev_dark {
    background-color: #a2a2a2;
    background:linear-gradient(top,#a2a2a2,white);
    background:-moz-linear-gradient(top,#a2a2a2,white);
    background:-webkit-linear-gradient(top,#a2a2a2,white);
    background:-o-linear-gradient(top,#a2a2a2,white);
    background:-ms-linear-gradient(top,#a2a2a2,white);
}

.grad_dark_orange {
    background-color: #orange;
    background:linear-gradient(top,orange,#000000);
    background:-moz-linear-gradient(top,orange,#000000);
    background:-webkit-linear-gradient(top,orange,#000000);
    background:-o-linear-gradient(top,orange,#000000);
    background:-ms-linear-gradient(top,orange,#000000);
}

.text-shd1{
    text-shadow: 1px 1px 1px #000000;
}

.text-shd2{
    text-shadow: 2px 2px 1px #000000;
}

.bdr{
    border:1px solid grey;
}

.line_horiz4{
    position:relative;
    width:100%;
    height:4px; 
    background:#bbbbbb;
}
.messageAlert{
    position:relative;
    float: left;
    width:100%;/*auto;*/
    padding:10px;
    text-align: left;
    background: blue;
    color: lightyellow;
    border:1px solid blue;
    min-height: 30px;
    font-size: 140%;
}
.errMsg{
    background: red;
    color: white;
    border:1px solid red;
    margin-top: 10px;
}
.infoMsg{
    background: #336699;
    color: white;
    border:1px solid #336699;
    margin-top: 10px;
}
.genMsg{
    background: grey;
    color: white;
    border:1px solid grey;
    margin-top: 10px;
}
.okMsg{
    background: green;
    color: white;
    border:1px solid green;
    margin-top: 10px;
}
.downloadMsg{
    position:relative; 
    color:grey;
    font-family:Arial; 
    font-size:16px;
    width:100%;
}
#article_quote{
    position:relative;
    font-family:Arial;
    font-weight:bold;    
    font-size:14px;
    color:#656565;
    text-align: left;
    margin-left:12%;
    width:85%;
    line-height: 130%;
}
#article_quote_ref{
    position:relative;
    font-family:Arial;
    margin-left:12%;
    color:#a5a5a5;
    font-size:12px;
    font-style:italic;
    width:85%;
}

.article-quote{
    position:relative;
    font-family:Arial;
    font-weight:bold;    
    font-size:14px;
    color:#656565;
    text-align: left;
    margin-left:12%;
    width:85%;
    line-height: 130%;
}
.article-quote-ref{
    position:relative;
    font-family:Arial;
    margin-left:12%;
    color:#a5a5a5;
    font-size:12px;
    font-style:italic;
    width:85%;
}

.parag_title_s{
    width: 100%;
    margin-bottom: 10px; 
    font-size: 16px;
    padding: 7px 0px 7px 10px;    
    color:#656565 ;
}

.read-on-text{
    font-family: Arial;
    font-size:11px;
    font-weight: bold;
    font-style: italic;
    line-height:15px
}
.article_drop_cap:first-letter{
    /*font-family:"<?php echo $font_nserif;?>"; */
    font-size:350%; 
    line-height:80%;    
    font-weight:bold;
    color:#336699;/*#656565 ; */
    float:left;
}

.linked_title{
    font-family:'<?php echo $font_nserif;?>';
    font-weight:bold;
    font-size:14px;
    color:#808080;
    text-align: left; 
    text-decoration: none;
}

/**/
.flat_button{
    position:relative;     
    font-size: 1.0em;
    width: 100%;
    min-width:80px;
    background: grey;
    color: white;
    border: 2px grey solid;
    padding: 3px 10px 3px 10px;
    text-align: center;
    font-weight: bold;
    /*margin-top: 15px;*/
    }
    
    a:link .flat_button { 
       text-decoration: none;
    }

    a:hover .flat_button:hover, .flat_button:hover {
       color: #FFFFE0; 
       border: 2px black solid;
       background: black;
    }

    .ajax_form_button:hover {
       color: #FFFFE0; 
       border: 2px lightblue solid;
    }

.black_form_button{
    position: relative;
    float:left;
    font-weight: bold;
    font-size:1em;
    text-align: center;    
    color: white;    
    padding:8px;
    background:gray;
    border:2px solid gray;
    width:82%;
    margin:5%;
    font-size:18px;
    }
    .black_form_button:hover {
       color: #FFFFE0; 
       border: 2px #aaaaaa solid;
    }
    
.blue_form_button{
    position: relative;
    float:left;
    font-weight: bold;
    font-size:1em;
    text-align: center;    
    color: white;    
    padding:8px;
    background:blue;
    border:2px solid blue;
    width:82%;
    /*margin:5%;*/
    font-size:18px;
    }
    .blue_form_button:hover {
       color: lightgoldenrodyellow;/* #FFFFE0; */
       /*border: 2px lightgoldenrodyellow solid;*/
       border: 2px darkblue solid;
    }    

.red_form_button{
    position: relative;
    float:left;
    font-weight: bold;
    font-size:1em;
    text-align: center;    
    color: #ededed;    
    padding:8px;
    background:#c50000;
    border:2px solid #c50000;
    width:82%;
    margin:5%;
    font-size:18px;
    font-style: normal;
    }
    .red_form_button:hover {
       color: #FFFFFF; 
       border: 2px #a00000 solid;
    }

    
#divFormFields{
    position: relative;
    float:left;
    padding:20px 0 0 .3%; /*2.5%;*/    
    width:92%; /*96%;*/
    border:1px solid grey;
    }
#divFormFieldsCenter{
    position: relative;
    float:left;
    padding:20px 0 0 2.5%;
    width:67%;
    margin-left:16%;
    border:1px solid grey;
    }
    .form_group_header{
        color:white;
        margin:0px 2% 15px 0%;
        position:relative;
        padding: 2px 0 2px 4%;
        float:left;
        width:91.5%;
        font-size:1.7em;
        border:0px solid lightblue;
    }
    .contact_form_row{
        position: relative;
        float:left;
        margin:0 0 10px 0; 
        width: 98%;
        border: 0px darkblue solid;
    }
    .ajax_form_row{
        position: relative;
        float:left;
        padding-left:10px;
        font-weight: normal;
        margin:0 5% 0 5%; 
        width: 80%;
        font-size:12px;
        text-align: center;
    }
    .ajax_form_button{
        position: relative;
        float:left;
        font-weight: bold;
        margin:0px 5% 0px 5%; 
        width: 88%;
        font-size:1em;
        text-align: center;
        background:blue;
        color: white;
        border: 2px solid blue;
        padding:8px;
    }
    .form_label{
        position: relative; 
        width: 35%; 
        min-height: 13px;
        font-size:1.1em;
        font-family: Arial, helvetica, sans-serif;
        padding-left: 2%;
        color:#888888;
        font-weight: bold;
        float: left;
        margin-bottom:8px;
        border: 0px darkblue solid;
    }
    .form_input_row{
        position: relative;
        width: 60%;
        float: left;
        border: 0px red solid;
    }
    .form_input{
        position: relative;
        padding-left: 10px;
        width: 88%;
        min-height: 24px;
        font-family: '<?php echo $font_FxdSpc;?>';
        font-size: 1.4em;
        color:#414141;
        float: left;
        border: 1px #aaaaaa solid;
    }
    .form_input:focus{
        /*border: 1px #666666 solid;
        border-radius: 10px;
        -moz-border-radius: 10px;form_input_req	*/
    }
    .form_input_req{
        position: relative;
        width: 4%;
        min-height: 24px;
        font-family: '<?php echo $font_FxdSpc;?>';
        font-size: 1.4em;
        color:#EE0000;
        float: left;
        text-align: center;
        border: 0px #aaaaaa solid;
    }
    .form_input_grey{
        position: relative;
        padding-left: 10px;
        width: 88%;
        min-height: 24px; 
        font-family: '<?php echo $font_FxdSpc;?>'; 
        font-size: 1.4em; 
        color:#414141;
        background: #eeeeee;
        float: left;
        border: 1px #dedede solid;
    }
    .form_input_ebook{
        position: relative;
        margin:3px 5% 3px 5%;
        padding-left: 10px;
        width: 84%;
        min-height: 24px;
        font-family: Times New Roman;
        font-size: 1em;
        color:#414141;
        float: left;
        border: 1px #aaaaaa solid;
    }
    .divMsgBox{
        width:98%;
        /*border: 1px gray solid;*/
        }
        #divMsgText, #divParaText{
            margin: 10px 0px 0px 10px;
            width:88%;
            max-width:88%;
            border: 1px gray solid;
        }
        
    .form_inrow{
        position:relative;
        float:left;
        margin:0px 0px 0px 10px;
        width:90%;
        text-align: center;
    }
    .form_checkbox{
        position:relative;
        margin:10px 0 0 4px; 
        width:90%; 
        float:left;
    }
    .form_input_text{
        /*visibility:hidden;
        height:0px;
        width:0px;
        top:0px;*/
        position: absolute !important;
        top: -9999px !important;
        left: -9999px !important;
    }
    
    #divFormButtonFrame{
        position: relative;
        float:left;
        margin: 30px 0 20px 0;
        width:98%;
        border:0px solid blue;
        }
        .form_botton_box{
            position:relative; 
            float:left; 
            margin-left:9%; 
            width:40%; 
            height:30px;
            border:0px solid blue;
        }
        .form_botton_box > input{
            width:80%;height:100%;
        }
        
    .ajax_download_result{
        position: relative;
        float:left;
        padding-left:10px;
        font-weight: normal;
        margin:0 5% 0 5%; 
        width: 80%;
        font-size:12px;
        text-align: center;
    }
    
    .form_date_input{
        position: relative;
        background: #ededed;
        width: 92%;
        min-height: 24px;
        font-family: '<?php echo $font_FxdSpc;?>';
        font-size: 14px;
        color:#414141;
        float: left;
        padding-top: 3px;
    }
    .form-date-sub-label {
        position:relative;
        float:left;
        width:12%;
        min-height: 24px;
        padding-top: 4px;
        text-align: right;
    }
    .form-date-sub-value {
        position:relative;
        float:left;
        width:18%;
        margin: 0 1%;
        min-height: 24px;
        padding-top: 4px;
    }

    #numword-output-boxXXXX{        
        width: 97%;
        max-width: 97%;
        border: grey 1px solid;
        background:#eeeeee;
        color:#000000;
        padding:0px 3px;
        font-weight:bold;
    }   


/******   New menu  ******/ 
#new-menu { 
    position:relative;
    width:440px;
    float:right;
    padding:10px 15px 0 0;
    border: solid 0px grey;
}
#new-menu ul {
    list-style-type: none;
    padding: 0;
    overflow: hidden;
    /*margin-left:auto; margin-right:0;*/
    background-color: #ffffff;
    border: solid 0px red;
}

#new-menu li {
    /*margin-left:auto; margin-right:0;*/
    float: left;
}

#new-menu li a, #new-menu .dropbtn {
    display: inline-block;
    color: #414141;/*white;*/
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

#new-menu li a:hover, #new-menu .dropdown:hover .dropbtn {
    /* to highlight on hover */
    
    /*background-color: red;*/
    background-color: #f1f1f1;
    text-decoration: underline;
}

#new-menu li.dropdown {
    display: inline-block;
}

#new-menu .dropdown-content {
    display: none;
    position: absolute;
    z-index: 1000;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

#new-menu .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

#new-menu .dropdown-content a:hover {
    background-color: #f1f1f1;
}

#new-menu .dropdown:hover .dropdown-content {
    display: block;
}


/* Simple scalable breadcrumb by Veerle Pieters
------------------------------------------------------------------*/
.crumb_body {
	font:71%/165% "<?php echo $font_nserif;?>", Lucida, Verdana, sans-serif;
	}
.ul_c, .li_c {
	list-style-type:none;
	padding:0;
	margin:0;
	}		
#crumbs {
	height:2.3em;
	border:0px solid #dedede;
	}
#crumbs .li_c {
	float:left;
	line-height:2.3em;
	color:  #777777;
	padding-left:.75em;
	}		
#crumbs .li_c .a_c {
	background:url(/images/crumbs.gif) no-repeat right center;
	display:block;
	padding:0 15px 0 0;
	}							
#crumbs .li_c a:link,
#crumbs .li_c a:visited {
	color:#777777;
	text-decoration:none;
	}	
/*a:link, a:visited, */
#crumbs .li_c a:hover, #crumbs .li_c a:focus {
	color: #dd2c0d;
	}



.payza_btn{
    background:url(/assets/media/images/buttons/payza_donate_btn01.gif);
    background-position:  0px 0px;
    background-repeat: no-repeat;
    width: 183px;
    height: 50px;
    position: relative;
    z-index: 100;
    float:left;
}​

.payza_btn:hover{ 
    background-position:  0px -3px;
    border:3px solid #eeeeee;
}

.payza_btn:active{
    background-position:  3px -3px;
}

.voguepay_btn{
    background:url(/assets/media/images/buttons/polm_donate_btn_46.png);
    background-position:  0px 0px;
    background-repeat: no-repeat;
    width: 183px;
    height: 50px;
    position: relative;
    z-index: 100;
    float:left;
}​

.voguepay_btn:hover{ 
    /*background:url(/assets/media/images/buttons/polm_donate_orange_45_bold.png);
    background-position:  0px -3px;
    border:3px solid #777777; */
}

.voguepay_btn:active{
      background-position:  3px -3px;
}



#divArchives form {
    position: relative;
    margin-top: 10px;
}
#divArchives form select{
    width: 90%; 
    outline-color:grey;
}

.ebooktagline{
    font-size: 1em;
    color:darkred;
    margin-top:-5px;
}
#ebookimg {
    position:relative;
    width:50%;
    margin:0 0% 10px 25%;
}


/* TABBED BOX */

/* Set the size and font of the tab widget */
.tabGroup {
    font: 10pt arial, verdana;
    width:90%;
    margin: 0 0 15px 10px;
}
 
/* Configure the radio buttons to hide off screen */
.tabGroup > input[type="radio"] {
    position: absolute;
    left:-500px;
    /*top:-500px;*/
}
 
/* Configure labels to look like tabs */
.tabGroup > input[type="radio"] + label {
    /* inline-block such that the label can be given dimensions */
    display: inline-block;
 
    /* A nice curved border around the tab */
    border: 1px solid black;
    border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
     
    /* the bottom border is handled by the tab content div */
    border-bottom: 0;
 
    /* Padding around tab text */
    padding: 5px 10px;
 
    /* Set the background color to default gray (non-selected tab) */
    background-color:#ddd;
    
    color:red;
    font-size: 14px;
    /*height-min: 20px;*/
}
 
/* Focused tabs need to be highlighted as such */
.tabGroup > input[type="radio"]:focus + label {
    border:3px solid #787878;
    /*height: 24px;*/
}
 
/* Checked tabs must be white with the bottom border removed */
.tabGroup > input[type="radio"]:checked + label {
    background-color:white;
    font-weight: bold;
    border-bottom: 1px solid white;
    margin-bottom: -1px;
    /*height-min: 24px;*/
}
 
/* The tab content must fill the widgets size and have a nice border */
.tabGroup > div {
    display: none;
    border: 1px solid black;
    background-color: white;
    padding: 10px 10px;
    height: 100%;
    /*overflow: auto;
    
    box-shadow: 0 0 20px #444;
    -moz-box-shadow: 0 0 20px #444;
    -webkit-box-shadow: 0 0 20px #444;
    
    border-radius: 0 5px 5px 5px;
    -moz-border-radius: 0 5px 5px 5px;
    -webkit-border-radius: 0 5px 5px 5px;
    */
}
 
/* This matches tabs displaying to thier associated radio inputs */
.tab1:checked ~ .tab1, .tab2:checked ~ .tab2, .tab3:checked ~ .tab3, .tab4:checked ~ .tab4, .tab5:checked ~ .tab5 {
    display: block;
    min-height: 40px;
}

/****  M e m b e r s   P r o f i l e  ****/
#ProfilePhotoFrame {
    position:relative; 
    float: left;
    margin:10px 0% 20px 0%;
    max-height:140px;
    width:96%;
    padding:5px 2%;
}
#ProfilePhotoImg {
    position:relative; 
    width:15%; 
    max-width:100px;
    margin:5px 2% 5px 0%;
    float: left;
}
#ProfilePhotoAttr {
    width:80%; 
    margin:5px 5px 0px 5px;
    float: left;
}
#ProfilePhotoLabel {
    width:90%; 
    margin:5px 0;
    min-height: 13px;
    font-size:1.5em;
    font-family: Arial, helvetica, sans-serif;
    padding-left: 2%;
    color:#888888;
    font-weight: bold;
}
#ProfilePhotoErr {
    width:90%; 
    margin:8px 0;
    font-size:1.1em;
    font-family: Arial, helvetica, sans-serif;
    padding-left: 2%;
    color:red;
    font-weight: normal;
}
#ProfilePhotoText {
    width:90%; 
    margin:5px 0;
    font-size:1.2em;
    font-family: Arial, helvetica, sans-serif;
    padding-left: 2%;
    color:black;
    font-weight: normal;
}

.profile-form-row-box {
    position: relative;
    float:left;
    margin:0 0 10px 0; 
    width: 98%;
}
    .form-section-label {
        position: relative;
        float: left;
        width: 95%;
        color: orange;
        font-size: 18px;
        padding: 4px 2%;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .profile-form-label {
        position: relative; 
        width: 25%; 
        min-height: 13px;
        font-size:1.1em;
        font-family: Arial, helvetica, sans-serif;
        padding-left: 2%;
        color:#888888;
        font-weight: bold;
        float: left;
        margin-bottom:8px;
    }
    .profile-form-input-row {
        position: relative;
        width: 70%;
        float: left;
    }
        .profile-form-input-req {
            position: relative;
            width: 4%;
            min-height: 24px;
            font-family: '<?php echo $font_FxdSpc;?>';
            font-size: 1.4em;
            color:#EE0000;
            float: left;
            text-align: center;
        }
        .profile-form-input-text {
            position: relative;
            padding-left: 1%;
            width: 50%;
            min-height: 24px;
            font-family: '<?php echo $font_FxdSpc;?>';
            font-size: 1.4em;
            color:#414141;
            float: left;
            border: 1px #aaaaaa solid;
        }
        .profile-form-input-err {
            position:relative;
            float:left;
            width:42%; 
            
            font-size:1.0em;
            font-family: Arial, helvetica, sans-serif;
            padding-left: 2%;
            color:red;
            font-weight: normal;
        }
        .date-sub-label {
            position:relative;
            float:left;
            width:4%;
            min-height: 24px;
        }
        .date-sub-value {
            position:relative;
            float:left;
            width:11%;
            margin-right: 1%;
            min-height: 24px;
        }
/*//*/

#UpdatePhotoFrame {
    position:relative; 
    float: left;
    margin:10px 0% 20px 0%;
    width:96%;
    padding:5px 2%;
    background: #ffffff;
}
#UpdatePhotoImg {
    position:relative; 
    width:60%; 
    /*max-width:240px;*/
    margin:5px 3% 5px 0%;
    float: right;
}
#UpdatePhotoAttr {
    width:35%; 
    /*margin:5px 5px 0px 5px;*/
    float: left;
}
#UpdatePhotoLabel {
    width:96%; 
    margin:5px 0;
    min-height: 12px;
    font-size:1.2em;
    font-family: Arial, helvetica, sans-serif;
    padding-left: 2%;
    color:#888888;
    font-weight: bold;
}
#UpdatePhotoErr {
    width:96%; 
    margin:8px 0;
    font-size:1.1em;
    font-family: Arial, helvetica, sans-serif;
    padding-left: 2%;
    color:red;
    font-weight: normal;
}
#UpdatePhotoText {
    width:96%; 
    margin:5px 0 20px 0;
    font-size:1.2em;
    font-family: Arial, helvetica, sans-serif;
    padding-left: 2%;
    color:black;
    font-weight: normal;
}


/*   */
.profile-form-row-box {
    position: relative;
    float:left;
    margin:0 0 10px 0; 
    width: 98%;
}
    .form-section-label {
        position: relative;
        float: left;
        width: 95%;
        color: orange;
        font-size: 18px;
        padding: 4px 2%;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .profile-form-label {
        position: relative; 
        width: 25%; 
        min-height: 13px;
        font-size:1.1em;
        font-family: Arial, helvetica, sans-serif;
        padding-left: 2%;
        color:#888888;
        font-weight: bold;
        float: left;
        margin-bottom:8px;
    }
    .profile-form-input-row {
        position: relative;
        width: 70%;
        float: left;
    }
        .profile-form-input-req {
            position: relative;
            width: 4%;
            min-height: 24px;
            font-family: '<?php echo $font_FxdSpc;?>';
            font-size: 1.4em;
            color:#EE0000;
            float: left;
            text-align: center;
        }
        .profile-form-input-text {
            position: relative;
            padding-left: 1%;
            width: 50%;
            min-height: 24px;
            font-family: '<?php echo $font_FxdSpc;?>';
            font-size: 1.4em;
            color:#414141;
            float: left;
            border: 1px #aaaaaa solid;
        }
        .profile-form-input-err {
            position:relative;
            float:left;
            width:42%; 
            /*margin:8px 0;*/
            font-size:1.0em;
            font-family: Arial, helvetica, sans-serif;
            padding-left: 2%;
            color:red;
            font-weight: normal;
        }
        .date-sub-label {
            position:relative;
            float:left;
            width:4%;
            min-height: 24px;
        }
        .date-sub-value {
            position:relative;
            float:left;
            width:11%;
            margin-right: 1%;
            min-height: 24px;
        }
        
        
.archive-label{
    position: relative;
    float: left;
    width: 95%;
    color: darkred;
    font-family: Arial, sans-serif;
    font-size: 22px;
    text-align: center;
    font-weight: bold;
    padding: 7px 0 7px 0;
    background: #ececec;
    margin: 10px 0 0 10px;
}

#divCloud {
    border:0px solid grey;
    position:relative; 
    margin-bottom:10px; 
    width:100%;
}


/* Media Queries */

@media screen and (max-width: 480px) {
    
    
}


/**   SITEMAP  **/
#sitemap {
    position: relative;
    width: 90%;
    background: white;
}
#sitemap .smap-main {
    padding:0px;
    text-align: left;    
    font-size: 14px;
    font-weight: bold;
    margin-top: 30px;
    text-transform: uppercase;
}
#sitemap .smap-sub {
    margin: 12px 0px 8px 30px;
    padding:0px;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    text-transform: none;
}
.smap-detail {
    margin-left: 30px;
    text-align: left;    
    font-size: 12px;
    font-weight: normal;
    border: 0px solid red;
    text-transform: none;
}
#sitemap ul, li {
    margin: 0px;
    padding: 0px;
}



#container {
    height: auto;
    width: 96%;
    max-width: 984px;
    margin: auto; 
    padding:0 2%;
    /*border: 0px solid red;*/
    text-align: left;            
}
/* #wrapper2 {
    width:96%;	
    
    margin: auto;
    padding:0% 2% 2% 2%;
    position:relative;
    float: left;
} */


/*  HEADER COMPLEX  */
#main_quotev-600 {
    position:relative;
    float: left;
    width:100%;
    font-family:"Arial Narrow"; 
    font-size:32px;
    color:#336699;
    margin:7px;    
    display:none;
}
#main_quotev {
    position:absolute;
    z-index:100;
    width:75%;
    font-family:"Arial Narrow"; 
    font-size:40px;
    color:#ffffff;
    top:40px;
    left:5%;
}

#home-page-content {
    position:relative;
    float: left;
    margin:20px 0 10px 0; border:0px solid grey; width:100%;
}
#main-quote-intro {
    position:relative;
    float: left;
    width:95%;
    font-size:16px;
    color:#414141;
    margin-bottom: 20px; 
    font-family: arial;    
    border-left:10px solid #dcdcdc;
    padding-left:12px;
}
.home-page-section-label{
    position:relative;
    float: left;
    width:90%;
    padding:5px 8px;
    font-weight:bold;
    color:#336699;
    font-size:22px;
    border:0;    
}
.home-page-section-content{
    position:relative;
    float: left;
    padding:20px 5px 10px 10px;
}
.home-page-people-label{
    position:relative;
    float: left;
    width:90%;
    padding:0px 8px;
    font-weight:bold;
    color:#336699;
    font-size:22px;
    border:0;
    margin-top:-10px;
}

#toprow {
    position:relative; 
    width: 100%;
    float:left;
    margin-bottom: 15px;
}
#user-auth-box {
    position:relative; 
    width:35%;
    max-width: 480px;
    min-width: 260px;
    min-height:22px; 
    float:left;
    overflow:visible; 
    border:0px solid green;
}
#curuser_text{
    font-size:15px;
    border:1px solid gray;
    background: white;
    top: 0px; 
    width: 40%; 
    min-height: 26px;
    text-align: center;
    padding: 6px auto;
    margin-right: 1%;
}
#btn-signup {
    float: right;
    width: 25%;
    min-width: 60px; 
    color: #dedede;
    text-decoration: none;
}
#btn-signin {
    float: left;
    width: 25%;
    min-width: 55px; 
    color: #dedede;
    text-decoration: none;
}
#btn-signout {
    float: left;
    width: 25%;
    min-width: 55px; 
    color: #dedede;
    text-decoration: none;
}
.curuser-button {
    position:relative;
    width: 96%;
    font-size: 12px;
    min-width:80px;
    background: #414141;
    text-decoration: none;
    border: 2px #000000 solid;
    padding: 5px 1% 5px 1%;
    text-align: center;
    font-weight: bold;
}
#btn-signup:hover, #btn-signin:hover, #btn-signout:hover {
    color: white;
    background: #000000;
    border: 2px #989898 solid;
}

.flat_button{
    position:relative;
    width: 96%;
    font-size: 1.2em;
    min-width:80px;
    background: #cccccc;
    color: #000000;
    border: 2px #cccccc solid;
    padding: 3px 2% 3px 2%;
    text-align: center;
    font-weight: bold;    
}
a:link .flat_button { 
   text-decoration: none;
}
a:hover .flat_button:hover {
    background: #676767;
    color: #FFFFff; 
    border: 2px  solid;
}

/*/       /*/
.evang_button{
    position:relative;
    float: left;
    font-size: 24px;
    width: 80%;
    min-width:80px;
    color: white;
    border: 2px black solid;
    padding: 6px 6px;
    text-align: center;
    font-weight: bold;
    margin: 10px 10%;
    text-decoration: none;
    }
    
    a:link .evang_button {
       text-decoration: none;
    }

    a:hover .evang_button:hover, .evang_button:hover {
       color: #FFFFE0; 
       border: 2px black solid;
       /*background: black;*/
    }
/*     ///      */
#home-header-search-frame{    
    border:0px solid red;    
    position:absolute;
    width:42%;
    max-width:400px;
    height:35px;
    bottom: 20px;
    left:5.5%;
  }
#home-header-search-frame-600{
    position: relative;
    float:left;
    width: 80%;
    display: none;
    border:1px solid grey;
    margin: 10px 10% 15px 9%;
    height:35px;
  }

#searchFrame{
    width: 30%;
    min-width: 300px;
    border:0px solid red;
    float:right;
    margin: 1px 0 0 1%;
  }
  #divSearch{
      position: relative;
      float:left; 
      width: 100%; 
      height: 28px; 
      }
      #search_query{
          position:relative;
          float:left;
          height:29px;
          width:77%;
          font-size:13px;
          margin-right: 1%; 
          border: solid 1px #999999;
      }
      #search_submit{
          position:relative;
          float:left;
          height:28px;
          width:20%;
          font-size:13px;
      }

#header {
    position:relative; 
    background: #336699;
    width: 100%;
    float:left;
}
#header-background {
    position:relative;   
    width:100%;
    float:left;
}
#site-logo {
    position:relative;
    width:300px;
    float:left;
}
#site-desc {
    position:absolute; 
    font-size:17px;
    color:white;
    width:41.33%;
    top: 40px;
    left: 21.33%;
    z-index: 2;
    border: 0px solid yellow;
}
#site-name {
    position: relative;
    font-size: 24px;
    font-family: "Times New Roman";
    width:98%;
    border: 0px solid yellow;
}
#site-motto {
    position:relative; 
    font-size:12px;
    font-family: "Arial";
    width:98%;        
    border: 0px solid yellow;
}
#site-serv {
    position:absolute;
    font-size:17px;
    color:orange; 
    top: 10px;
    left: 66%;
    width:33%;
    z-index: 2;
    border: 0px solid yellow;
}
#site-img-extra {
    position:relative; 
    margin: 10px 1% 0px 0%; 
    width:26.36%;
    float:right;
    border: 0px solid yellow;
}

#online-chat-button-headerX{
    position:absolute; 
    width:20%;
    min-width: 150px;    
    left: 50%;
    display: block;
    bottom: 20px;
    border: 1px solid #cdcdcd;
}
#online-chat-button-header{
    position:absolute; 
    width:100px; /*12%;*/
    min-width: 80px;    
    left:0px;/* 65%;*/
    display: block;
    bottom: 20px;    
}
#online-chat-button{
    position:absolute; 
    width:28%;
    top: 57%; 
    left: 66%;
    display: block;
}
#online-chat-button-mobile{
    position:relative; 
    float: left;
    width:63%;
    margin: 15px 0 10px 18%;
    display: none;
}




#home-header-social-btn{
    position:absolute; 
    width:50%;
    bottom: 60px;
    left:6%;
}




/*  MAIN CONTENT AREA  */


#main {
    position:relative;
    float: left;
    background: #ffffff;
    width: 100%;
    /*max-width: 960px;*/
    margin: 20px 0px;
    padding: 10px 1%;    
}
#main-bar {
    width: 62%;
    float: left;
    /*border:1px solid #cdcdcd;*/
    padding:0%;
    margin: 0 1% 0 0;
}
#main-bar-center {/* to center some objects such as Forms on pages */
        width: 62%;
        margin: 0 0 25px 16%;
        float: left;
        background-color:#ffffff;
        padding: 0 2% 0 2%;
    }
    #main-bar-full {/* to center some objects such as Forms on pages */
        width: 94%;
        margin: 1% 1% 25px 1%;
        float: left;
        background-color:#ffffff; /* #cdcdcd;*/
        padding: 0 2% 0 2%;
        border:0px red solid;
    }

#cur-section-label {
    position:relative;
    color: orange;
    font-size: 20px;
    font-weight: bold;
    width:94%;
    padding: 6px 2%;
    background-color: #f2f2f2;
    background:linear-gradient(right,white,#f2f2f2);
    background:-moz-linear-gradient(right,white,#f2f2f2);
    background:-webkit-linear-gradient(right,white,#f2f2f2);
    background:-o-linear-gradient(right,white,#f2f2f2);
    background:-ms-linear-gradient(right,white,#f2f2f2);
    margin: 0px 0 10px 0;
}
#article_body_frame {
    padding:10px 0px;
    margin-bottom: 15px;
    text-align: left;
    float:left;
    font-size: 16px;/* 1.1em; */
    line-height: 155%;
    background-color: white;
    width:100%;
    /*color:green;*/
}

#page_shareBox{
    position:relative;
    width:100%;
    float:left;
    font-size: .9em;
    margin-bottom: 10px;
    border-bottom: 1px solid grey;
    border-top: 1px solid grey;
    background: #ffffff;
}

#right-sidebar {
    position: relative;
    float: right;    
    width: 33%;
    max-width: 325px;    
    background-color: transparent;/* #dedede; */
}
.right-bar-item {
    position: relative;
    margin:5px 0;
    padding: 10px;
    float: left;
    border: 1px solid #dddddd;
    width:100%;
    background-color: #ffffff;
}
.item_details {
    margin: 0;
    padding: 0;
    position: relative;    
    float: left;    
    width: 100%;
}

#article_title{
    position:relative;
    width:100%;
    min-width: 100%;
    float:left;
    font-size: 36px;
    line-height: 120%;
    padding-top:25px;
    background-color: white;
    margin-bottom: 20px; 
    color:#336699; /*787878;*/
}
.page_title{
    position:relative;
    width:100%;
    min-width: 100%;
    float:left;
    font-size: 36px;
    line-height: 120%;
    padding-top:25px;
    background-color: white;
    margin-bottom: 20px; 
    color:#336699; /*787878;*/
}
#zoom-page-nav{
    position:relative;
    float:left;
    background: #ffffff;
    }
#font_zoom_frame{
    position:relative;
    float:left;
    margin: 0 0% 10px 0;
    width:31%; 
    overflow:hidden;
    min-height: 30px;
    }
    #font_zoom_btn_in{
        position:relative;
        float:left;
        font-size:24px; 
        height:30px; 
        width:40px;
        margin-right: 3px;
    }
    #font_zoom_btn_out{
        position:relative;
        float:left;
        font-size:12px;
        height:30px; 
        width:40px;
    }

#article_credits{
    position:relative;
    width:100%;
    float:left;
    font-size: 0.9em;
    margin-bottom: 10px;
    background-color: white;
}
#art-auth{
    position:relative;
    float:left;
    width:50%;
}    
#art-date{
    position:relative;
    float:left;
    width:50%;
}

.page_nav_frame{
    position:relative;
    float:right;
    margin: 0 0 10px 0%;
    width:69%; 
    min-height: 30px;
}
    .page_nav_label{
        width:30%;
        position:relative;
        top:7px;
        float:left;
        font-family:Arial;
        font-weight:bold;
        font-size:16px;
        text-align: left;
        color:gray;
    }
    .page_nav_box{
        border: 0px solid green;
        position:relative;
        overflow:hidden;
        float:right;
        font-weight:bold;
        text-align: center;
        font-family:Arial;
        font-size:24px;   
    }
    .page_nav_btn_on{
        position:relative;
        float:right;
        margin-left:7px;
        height:30px;
        width:30px;
        background: #dddddd;
        color: #aaaaaa;
        border:1px #bbbbbb solid;
    }
    .page_nav_btn_off{
        position:relative;     
        float:right;
        margin-left:7px;
        height:30px;
        width:30px;
        background:  #f9f9f9;
        color: darkred;
        border: 1px #999999 solid;                            
    }
    .page_nav_btn_off a { 
       font-weight: normal;
       color: darkred;
       text-decoration:none;
       background:#f9f9f9;
    }

    .page_nav_btn_off a:hover {
       font-weight: bold;
       color: orange; 
    }

    
/*   Generic Slider - home */    

#home-slider-frame{
   width: 100%;
   height: 320px;
   margin-top: 0px;
   margin-left: 0px;
   margin-bottom:40px;
   /*text-align: left;*/
   border:0px solid red;
}

#home-slider-box{
    margin-top: 0px;
    margin-left: 0px;
    width:100%;
    height:100%;
    /*z-index:10000;*/
}

.home-slider-image{
    position: absolute;
    border-width:0;
    left:0px;
    top:0px;
    width:100%;
    /*height:250px;*/
    /*display:none;*/
    /*z-indez:20000;*/
}
.home-large-menu-button-dbl{
    width: 45%;
    margin: 10px 1%;    
    position: relative;
    float: left;
    border:1px solid #dcdcdc;
    min-height: 200px;
}
.home-large-menu-button{
    width: 22%;
    margin: 10px 1%;
    border:1px solid #e7e7e7;
    position: relative;
    float: left;
    border:1px solid #dcdcdc;
    min-height: 200px;
}

.genealogy-large-menu-button-dbl{
    width: 45%;
    margin: 10px 1%;
    border:1px solid #e7e7e7;
    position: relative;
    float: left;
    border:1px solid #dcdcdc;
    min-height: 200px;
}
.genealogy-large-menu-button{
    width: 22%;
    margin: 10px 1%;
    border:1px solid #e7e7e7;
    position: relative;
    float: left;
    border:1px solid #dcdcdc;
    min-height: 200px;
}
.genealogy-large-menu-button:hover{
    /*background: #cdcdcd;*/
    border:1px solid #777777;    
}

#home-look-around-text{
    margin:10px 0 10px 0;
    border:0px solid grey; 
    width:100%; 
    color:#aeaeae; 
    font-size:60px;
}
#SectionWhoWeAreLabel, #SectionWhatWeDoLabel, #SectionHowToJoinLabel {
    margin:60px 0 5px 0; 
    font-size:30px;
}


/* popup starts  */
#popupOverlay {
    position: absolute;
    visibility: hidden;
    width: 100%;
    height:100%;
    overflow:hidden;
    text-align:center;
    margin:0px;
}
div#popupWall {
    position:fixed;/* absolute; */
    visibility: hidden;
    width: 100%;
    height: 100%;
    overflow:hidden;
    filter:alpha(opacity=0); /* 50 */
    -moz-opacity:0.1; /* 0.5 */
    opacity: 0.0; /* 0.5 */
    /*
    filter:alpha(opacity=0);
    -moz-opacity:0;
    opacity: 0; 
    */
    background-color: #222;
    margin:0px;
    z-index: 2147483645;
}

#popupBox {
    position:absolute;
    padding:10px;
    z-index: 2147483646;
    background-color: #ececec;
    border: 1px solid #414141;
    
    /*max-width:500px;
    min-width: 400px; */
    
    width:50%;
    /*margin:auto;*/
    margin-top:100px;
    left:24%;
    font-family: Arial, sans-serif;
    border: 3px solid #787878;
    
    box-shadow: 10px 10px 10px #414141;
    -moz-box-shadow: 10px 10px 10px #414141;
    -webkit-box-shadow: 10px 10px 10px #414141;
    
    border-radius: 10px;
    -moz-border-radius: 10px;
}
#popupCloseButton {
    position:relative;
    float:right;
    border:0px solid red;
    background: none;
    margin:-20px -20px 0 0;
    width:32px;
    padding:0;
}

#popupTitle{
    width: 90%;
    color:#c50000;
    font-size:28px;
    font-style: bold;
}
#popupText{
    width: 90%;
    min-height: 50px;
    color: #414141;
    font-size:22px;
    font-style: normal;
    margin:10px;
}
#popupForm{
    width: 90%;
    min-height: 30px;
    color: #414141;
    font-size:16px;
    font-style: normal;
    margin:0 10px;
}
.contact_spc{
    visibility:hidden;
    height:0px;
    width:0px;
    top:0px;
}
.form_input_popup{
    position: relative;
    margin:3px 5% 3px 5%;
    padding-left: 10px;
    width: 84%;
    min-height: 26px;
    font-family: Times New Roman;
    font-size: 16px;
    color:#414141;
    float: left;
    border: 1px #bbbbbb solid;
}
#popup_user_choice {
    position: relative;
    float:left;
    padding: 10px 1%;  
    /*padding-top: 10px;*/
    width:98%;
    margin-left:2%;
    /*background-color: white;*/
}
.popupSubmit {
    position: relative;
    float:left;
    text-decoration: none;
    font-family: Arial,sans-serif;
    padding-right:5px; line-height:12pt;
    font-weight: bold;
    text-align: center;    
    color: #ededed;    
    padding:6px 8px;
    background:#c50000;
    border:2px solid #c50000;
    margin:0;
    font-size:18px;
    font-style: normal;
}
.popupSubmit:hover {
    color: #ffffff;    
    background:#aa0000;
    border:2px solid #aa0000;
    font-style: bold;
}
.noThanks {
    border:0px solid grey;
    position: relative;
    float:right; 
    width:40%;
    height: 12px;
    margin-top: 24px;
    text-align: left;
    font-size: 11px; 
    padding:0;
}
#ajaxSuccessAlert{
    position:absolute;
    padding:10px;
    z-index: 2147483647;
    background-color: #414141;
    border: 1px solid #414141;
    visibility: hidden;
    width: 80%;    
    margin:auto;
    top:20px;
    margin-left:5%;
    font-family: Arial, sans-serif;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
}
/* popup ends  */

/*   */
.inlineBox {
    position:relative;
    float:left;
    padding:10px;
    background-color: #ececec;
    width: 96%;    
    margin:10px 0;
    font-family: Arial, sans-serif;
    border: 1px solid #787878;
    border-radius: 2px;
    -moz-border-radius: 2px;
}

.inlineText{
    width: 90%;
    text-align: center;
    color: #000000;
    font-size:15px;
    font-style: normal;
    margin:7px;
}
#inlineForm{
    width: 90%;
    min-height: 30px;
    color: #414141;
    font-size:16px;
    font-style: normal;
    margin:0 10px;
}

#home-resource-media-file{
    position: relative;
    float: right;
    min-width: 50%;
    min-height: 100px;
    background: #cdcdcd;
}


/*  FOOTER COMPLEX */

#footer, #scripts_footer {
    background: #000000;
    width: 100%;
    min-height: 60px;
    float:left;
    margin-bottom: 10px;
}

.footerGenLabel{
    position: relative;
    float: left;
    width: 100%;
    color: orange;
    font-weight: bold;
    font-size: 16px;
    font-family: Arial;
}

#footerSubLeft{
    width:63%;
    margin: 10px 0 10px 1%;
    border:0px solid lightyellow;
}

#footerAddr{
    position: relative;
    float: left;
    width: 40%;
    color: white;
    font-weight: bold;
    font-size: 12px;
    font-family: Arial;
    padding:0 .5%;
    border:0px solid green;
    line-height: 120%;
}
#footerLinks{
    position: relative;
    float: left;
    width: 28%;
    color: #bbbbbb;
    font-weight: normal;
    font-size: 12px;
    font-family: Arial;
    border:0px solid green;
    /*line-height: 150%;*/
}
#footerPolicies{
    position: relative;
    float: left;
    width: 28%;
    color: #bbbbbb;
    font-weight: normal;
    font-size: 12px;
    font-family: Arial;
    border:0px solid green;
    /*line-height: 150%;*/
}

#footerSubRight{
    width: 34%;
    float: right;
    border:0px solid lightyellow;
    margin: 10px 1% 10px 0;
}
#footerSocialBox{
    width: 64%;
    border:0px solid lightyellow;
    margin: 10px 1% 10px 0;
}
.footerSocialButton{
    min-width: 32px; 
    /*min-height: 48px;*/
    width:32%;
    margin:4px 1% 4px 0;
}

#footerSSL{
    width: 34%;
    float: right;
    border:0px solid lightyellow;
}

.footer_menu_vert{
    font-family:Arial;
    font-weight:normal;
    font-size: 12px;
    text-align: left;
    line-height: 150%;
    color:#999999;
    margin-top:3%;
    width: 100%;
}

.footer_menu_vert a {
   font-weight: normal;
   color: #999999;
}

.footer_menu_vert a:hover { 
   font-weight: bold;
   background-color: #000000; 
   color: #ffffff; 
}
.footer_menu_vert a:visited { 
   background-color: #000000; 
   font-weight: bold;
   color: #cccccc; 
}

#footerCopyright{
    width: 100%;
    text-align: center;
    font-size: 11px;
    color: #cdcdcd;
    margin-bottom: 4px;
}

.clear { 
    clear: both; 
}


.album_photo_frame{
    background: #efefef;
    color: #000000;
    border:2px solid #cccccc;
    font-size: 16px;
    font-family: arial;
    position: relative;    
    }
.album_photo_box{
    background: #efefef;
    border:2px solid #cccccc;
    }
.album_photo_outline{
    background: #ffffff;
    color: #000000;
    border:1px solid gray;
    overflow: hidden;
    }
.album_photo_inline{
    background: #efefef;
    color: #000000;
    border:1px solid #efefef;   
    }

.album_photo_title{
    background: #ffffff;
    color: darkorange;
    border:0px solid #cdcdcd;
    font-size: 18px;
    font-family: Arial;
    position: relative;
    float: left;
    height:44px;
    width:100%;
    line-height: 120%;
    padding:4px;
    }
.album_photo_header{
    background: #ffffff;
    color: gray;
    font-size: 20px;
    font-family: Arial;
    top:180px;
    left:240px;
    }

.album_photo_narration{
    background: #ffffff;
    color: #414141;
    border:0px solid #cdcdcd;
    font-size: 12px;
    font-family: Arial;
    position: relative;
    float: left;
    height:60px;
    width: 100%;
    line-height: 100%;
    padding:4px;
    }

    

.ops-minist-join-box{
    width:96%; margin-bottom:10px;font-size:16px;
}
.ops-minist-join-label{
    padding:5px 0;
}
.ops-minist-join-btn{
    position:relative;float:left;width:auto;margin-left:10px;padding:6px 12px; background:#787878;color:white;font-size:14px;
}


/* BOOK LANDING PAGE DESIGN  */

#lp-core {
    width: 94%;
    margin: 0px 1% 25px 1%;
    float: left;
    background-color:#ffffff; /* #cdcdcd;*/
    padding: 0 2% 0 2%;
    border:0px red solid;
}
#lp-others {
    width: 94%;
    margin: 0px 1% 25px 1%;
    float: left;
    position: relative;
    /*background-color:#cdcdcd;*/
    padding: 0 2% 0 2%;
    border:0px red solid;
}

#lp-core-left {
    position: relative;
    width: 60%;
    float: left;
    border-right: 7px solid #f8f8f8;
    padding-right: 2%;
    /*margin: 0 2% 0 0;*/
}
#lp-core-vert-sep{
    position: relative;
    width: 1%;
    float: left;
    height: 100%;
    margin-left: 1%;
    background-color: #f8f8f8;
}
#lp-core-right {
    position: relative;
    float: right;    
    width: 35%;
    max-width: 480px;    
    background-color: transparent;/* #dedede; */    
    height: 100%;
    /*background: yellow;*/
}

.lp-bar-item {
    position: relative;
    float: left;
    /*margin:5px 0;*/    
    /*border: 0px solid #dddddd;*/
    width:100%;
    background-color: #ffffff;
}
#lp-headline{
    position:relative;
    width:100%;
    min-width: 100%;
    float:left;
    font-size: 40px;
    line-height: 120%;
    padding-top:0px;
    background-color: white;
    margin-bottom: 10px; 
    color:#3366aa;
}
#lp-subhead{
    position:relative;
    width:98%;    
    float:left;
    font-size: 20px;
    line-height: 120%;
    padding:7px;
    background-color: #898989;
    margin-bottom: 20px; 
    color:white;/*#787878;*/
    font-family: Arial;
    font-weight: bold;
}
#lp-cta-inline-header {
    position: relative;
    float: left;     
    margin-bottom:10px; 
    font-size:22px;
    text-align: center;
    font-weight: bold;
    color:#336699;    
    width:100%;
    background-color:yellow; /* #ffffff;*/
}
.lp-cta-inline {
    position: relative;
    float: left;     
    /*margin-bottom:10px;*/ 
    font-size:20px;
    text-align: center;
    color:blue;    
    width:100%;    
}
.lp-section-head{
    position:relative;
    float:left;
    color: red;
    font-size: 26px;
    font-weight: bold;
    width:94%;
    padding: 6px 2%;
    background-color: #f2f2f2;
    background:linear-gradient(right,white,#f2f2f2);
    background:-moz-linear-gradient(right,white,#f2f2f2);
    background:-webkit-linear-gradient(right,white,#f2f2f2);
    background:-o-linear-gradient(right,white,#f2f2f2);
    background:-ms-linear-gradient(right,white,#f2f2f2);
    margin: 0px 0 10px 0;
}
#lp-features-body {
    position: relative;
    float: left;
    width: 100%;
    margin-bottom: 10px;    
}
.lp-features-body-title {
    position: relative;
    float: left;
    width: 96%;
    color:#336699;
    font-size: 16px;
    font-weight: bold;
    margin: 7px 0px 4px 4%;
}
.lp-features-body-text {
    position: relative;
    float: left;
    width: 96%;
    font-size: 11px;
    line-height: 120%;    
    color:#898989;
    font-family: Arial;
    font-weight: normal;
    margin-left: 4%;
}

/* 12-point burst  */
#burst-12 { 
    background: yellow; 
    width: 60px; 
    height: 60px; 
    position: relative; 
    text-align: center; 
    color: red;
} 
#burst-12:before, #burst-12:after { 
    content: ""; 
    position: absolute; 
    top: 0; 
    left: 0; 
    height: 60px; 
    width: 60px; 
    background: yellow;
    color: red;
} 
#burst-12:before { 
    -webkit-transform: rotate(30deg); 
    -moz-transform: rotate(30deg); 
    -ms-transform: rotate(30deg); 
    -o-transform: rotate(30deg); 
} 
#burst-12:after { 
    -webkit-transform: rotate(60deg); 
    -moz-transform: rotate(60deg); 
    -ms-transform: rotate(60deg); 
    -o-transform: rotate(60deg); 
}

#lp-book-image {
    width: 100%;
    margin: 20px 0%;
    float:left;
    position: relative;
}
#lp-video-headline{
    position: relative;
    float: left;
    font-family: Times New Roman;
    font-style: italic;
    font-size: 40px;
    line-height: 120%;
    text-align: center;
    background-color: white;
    margin-bottom: 10px; 
    color:darkred;
    border: grey solid 2px;
}
#lp-video-subhead {    
    font-family: Times New Roman;
    font-weight: bold;
    font-size: 26px;
    line-height: 120%;
    text-align: left;
    background-color: white;
    margin-top: 10px; 
    /*color:darkred;*/
}
#lp-video-box {
    position:relative;
    float:left;
    width: 98%;
    border: #414141 solid 2px;
    background-color: white;
    margin-bottom: 10px;
    min-height: 200px;
}

#lp-cta-main {
    position:relative;
    float:left;
    width: 100%;
    /*border: #414141 solid 2px;*/
    background-color: white;
    margin: 10px 0px;
    min-height: 40px;
}
#lp-cta-button {
    position: relative;
    float:left;
    font-weight: bold;
    font-size:1.2em;
    text-align: center;
    color: #ededed;    
    padding:15px 5px;
    background:blue; /*#c50000;*/
    border:2px solid blue; /*#c50000;*/
    width:82%; /*82%;*/
    margin:5%;
    font-size:20px;
    font-style: normal;
    }
    #lp-cta-button:hover {
       color: #FFFFFF; 
       border: 2px #336699 solid;
       /*border: 2px #a00000 solid;*/
    }


/* ALTERNATIVE POPUP */

    .modal {
        position: absolute;/* fixed;*/
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transform: scale(1.1);
        transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
        z-index: 2147483645;
    }
    .modal-content {
        position: absolute;
        top: 50%;
        left: 50%;
        /*left : 0%;*/
        /*bottom : 0%;*/
        transform: translate(-50%, -50%);
        background-color: white;
        padding: 1rem 1.5rem;
        width: 24rem;
        border-radius: 0.5rem;
    }
    .close-button {
        float: right;
        width: 1.5rem;
        line-height: 1.5rem;
        text-align: center;
        cursor: pointer;
        border-radius: 0.25rem;
        background-color: lightgray;
    }
    .close-button:hover {
        background-color: darkgray;
    }
    .show-modal {
        opacity: 1;
        visibility: visible;
        transform: scale(1.0);
        transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
    }


/*  MEDIA QUERIES  */

@media screen and (max-width: 960px) {
/*  General  */ 


/*  Header  */ 
    #site-name {
        font-size: 22px;
        font-family: "Times New Roman";
        width:100%;
    }
    #site-motto {
        font-size:11px;
        font-family: "Arial";
        width:100%;
    }
    #site-serv {
        font-size:15px;
        width:34%;
    }
    
/*  Main  */     
    
    
/*  Footer  */
    
    
/*  Utils  */ 
    
}

@media screen and (max-width: 768px) {
/*  General  */ 


/*  Header  */ 
    
    #site-motto {
        font-size:9px;     
    }
    #site-serv {
        font-size:14px;
    }
    
/*  Main  */     

    #home-slider-frame{
        height: 240px;
    }
    
/*  Footer  */
    
    
/*  Utils  */ 
    
}

@media screen and (max-width: 600px) {
/*  General  */ 
    #container {        
        width: 100%;        
    }
    #main_quotev {
        /*font-size: 24px; */
        display: none;
    }
    #main_quotev-600 {
        /*font-size: 24px;*/
        display: block;
    }
    #home-header-social-btn{
        width:75%;
        top: 10px;
        left:5%;
    }
    #home-header-search-frame{
        display: none;
    }
    #home-header-search-frame-600{
        display: block;
    }
    
    #online-chat-button-header{        
        /*width:20%;*/
        /*min-width: 150px;*/    
        left: 5%;        
        bottom: 10px;
    }
    #toprow {
        /*background: #dddddd;*/
        padding: 5px 3%;
    }
    #user-auth-box {
        width:94%;
        margin-bottom: 5px;
        background: #dddddd;
        padding: 5px 3%;
    }
    #searchFrame {
        width:94%;
        margin-bottom: 5px;
        float: left;
        padding-left: 0px;
    }
    #popupBox {
        width:75%;
        /*margin:auto;*/
        margin-top:40px;
        left:12%;
    }
/*  Header  */ 
    #header-background {
        width:100%;
    }
    #site-name {
        font-size: 21px;
    }
    #site-motto {
        font-size:10px;
    }
    #site-serv {
        font-size:15px; 
    }
    #site-img-extra {
        display: none;
    }

/*  Main  */   
    #main {        
        width: 100%;
        margin: 0px;
        padding: 10px 1%;    
    }
    
    #main-bar-center {
        width: 80%; 
        margin-left: 10%;
    }
    
    #home-slider-frame{
        height: 200px;
        border:0px solid blue;
    }
    
    #home-look-around-text{
        margin:0;
        font-size:40px;
    }
    #SectionWhoWeAreLabel, #SectionWhatWeDoLabel, #SectionHowToJoinLabel {
        margin:55px 0 5px 0; 
        font-size:25px;    
    }
    
    #divFormFields{    
        margin:10px 0px 0px 0px;
        width:90%;    
    }
    

/*  Footer  */
    
    
/*  Utils  */ 
    #cir-profile-photo-label, #cir-profile-photo-text{
        width:98%;text-align:center;
    }
    #cir-profile-photo-box{
        background: #cdcdcd;width:100%;padding:3px 1%;
    }
    
    #lp-core-left {        
        width: 100%;        
    }
    #lp-core-right {        
        width: 100%;        
    }
    #lp-book-image {
        width: 75%;
        margin: 20px 12%;        
    }
    #lp-video-headline {
        width: 92%;
        padding: 15px;
        margin-top: 15px;
    }
    #lp-others {        
        min-height: 20px;        
    }
}

@media screen and (max-width: 480px) {
/*  General  */ 
    #container {        
        width: 100%;        
    }

/*  Header  */ 
    
    #toprow {
        padding: 5px 3%;
    }
    #searchFrame{
        display: none;
        margin: 0px;
    }
    
    #site-desc {
        width:100%;
        top: 60px;
    }
    #site-name {
        font-size: 22px;
    }
    #site-motto {        
        font-size:11px;
    }
    #site-serv {
        display: none; 
    }
    #online-chat-button{
        display: none; 
    }
    #online-chat-button-mobile{
        display: block; 
    }
    
        
/*  Main  */
    #main {        
        width: 100%;
        margin: 0px;
        padding: 10px 1%;    
    }
    #main-bar {
        width: 100%; 
        margin-left: 0;
    }
    #main-bar-center {
        width: 96%; 
        margin-left: 1%;
    }
    #right-sidebar {
        width: 99%;
        max-width: 99%;
        float: left;
    }
    
    #article_body_frame {   
        font-size: 18px;/* 1.5em; */
        /*font-size: 1.5em;*/
    }
    #article_title{
        font-size: 20px;
        line-height: 100%;
    }
    #divFormFields{    
        margin:0px;
        width:90%;    
    }
    
/*  Footer  */
    
    
/*  Utils  */ 
    #lp-core-left {        
        width: 100%;        
    }
    #lp-core-right {        
        width: 100%;        
    }
    #lp-video-headline {
        width: 92%;
        padding: 15px;
        margin-top: 15px;
    }
    #lp-others {        
        min-height: 20px;        
    }
}

@media screen and (max-width: 360px) {
/*  General  */ 
    
/*  Header  */     
            
/*  Main  */
    #article_title{
        font-size: 20px;
        line-height: 100%;
    }
    #divFormFields{
        margin:0px;
        width:90%;    
    }
    
/*  Footer  */    
    
/*  Utils  */ 
    
}

-->