
 * {
   margin: 0px;
   padding: 0px;
   }
                    
div#registration_container {
                           float: left; 
                           position: relative;
                           width: 94%;
                           background-color: tan;
                           margin: 0.4% 0% 0.4% 3%;    /* down, left, up, right */
						   border-radius: 1px;
                           outline: 1px solid rosybrown;
                           } 
                           
                           
div#login_container {
                    float: left; 
                    position: relative;
                    width: 99%;
                    background-color: sienna;
                    margin: 0.4% 0% 0% 0.5%;    /* down, left, up, right */
					border-radius: 1px;
                    outline: 1px solid saddlebrown;
                    }   
                    
                    
p#websiteName {
              float: left; 
              position: relative;
              width: 20%;
              text-align: center;
              font-family: bookman;
			  text-transform: lowercase;
              font-size: 3em;
              padding: 1% 0% 1% 0%;
			  color: #E8E8E8;
              margin: 0.7% 0% 0% 1%;    /* down, left, up, right */
             /*outline: 1px solid rosybrown;*/
              }
              
              
div#errorForm_wrapper {
                      float: left; 
                      position: relative;
                      width: 50%;
                      margin: 0.7% 0% 0% 2%;    /* down, left, up, right */
                     /*outline: 1px solid red;*/
                      }
                      
                      
p#errormessage {
               float: left; 
               position: relative;
               width: 94%;
               text-align: center;
               font-family: bookman;
               font-size: 1em;
               padding: 1% 0% 1% 0%;
               color: salmon;
               margin: 3.8% 0% 4% 3%;    /* down, left, up, right */
              /*outline: 1px solid #C8C8C8;*/
               }                                   
                      
                      
div#loginForm_wrapper {
                      float: right; 
                      position: relative;
                      width: 24%;
                      height: 82px;
                      margin: 0.7% 1% 1% 0%;    /* down, left, up, right */
                     /*outline: 1px solid red;*/
                      }
                      
                      
input#login_username {
                     float: left; 
                     position: relative;
                     width: 65%;
                     height: 20px;
                     text-align: center;
					 font-size: 0.8em;
                     background-color: #E8E8E8;
                     margin: 2% 0% 0% 33%;    /* down, left, up, right */
                     border-radius: 4px;
                     border: 1px solid #808080;
                     }						 
                     
                     
hr.horizontal_loginForm {
                        float: right; 
                        position: relative;
                        width: 60%;
                        margin: 0% 4% 0% 0%;    /* down, left, up, right */
                        border: 1px solid sienna;
                        }                    
                     
                     
input#login_password {
                     float: left; 
                     position: relative;
                     width: 65%;
                     height: 20px;
                     text-align: center;
					 font-size: 0.8em;
                     background-color: #E8E8E8;
                     margin: 0% 0% 0% 33%;    /* down, left, up, right */
                     border-radius: 4px;
                     border: 1px solid #808080;
                     }
                     

input#login_button {
                   float: left; 
                   position: relative;
                   width: 18%;
                   height: 22px;
				   font-size: 0.8em;
                   color: #707070;
                   margin: 0% 0% 0% 80.7%;    /* down, left, up, right */
                   border-radius: 4px;
                   border: 1px solid #C0C0C0;
                   } 
                   
                   
input#login_button:hover {
                         background-color: #F8F8F8;
                         }
                         
                         
div#logoContainer {
                  float: left; 
                  position: relative;
                  width: 45%;
                  height: 569px;
                  margin: 0.5% 0% 0.4% 0.5%;    /* down, left, up, right */
                  outline: 1px solid tan;
                  }
                  
                  
div#logo_innerWrapper {
                      float: left; 
                      position: relative;
                      width: 95.5%;
                      height: 542px;
                      margin: 2% 0% 0% 2%;    /* down, left, up, right */
                      border-top-width: 1px;
                      border-right-width: 0px;
                      border-bottom-width: 1px;
                      border-left-width: 1px;
                      border-color: rosybrown;
                      border-style: solid;                      
                      }                   
                  
                  
img#websiteLogo {
                float: left; 
                position: relative;
                width: 85%;
                height: 450px;
                margin: 8% 0% 0% 7%;    /* down, left, up, right */
                border-radius: 3%;
				border: 1px solid rosybrown;
                } 
                
                
div#registrationWrapper {
                        float: right; 
                        position: relative;
                        width: 53.5%;
                        height: 569px;
                        margin: 0.5% 0.5% 0.4% 0%;    /* down, left, up, right */
                        outline: 1px solid tan;
                        }
                        
                        
p.emergency_announcements {
                          float: left; 
                          position: relative;
                          width: 97.9%;
                          height: 30px;
                          line-height: 30px;
                          text-align: center;
						  text-transform: lowercase; 
                          font-family: bookman;
                          font-size: 0.95em;
                          color: crimson;
                          margin: 0.8% 0% 1% 1%;    /* down, left, up, right */
                         /*outline: 1px solid #C8C8C8;*/
                          }
                          
                          
p.announcementFading {
                     animation: fading 20s infinite;
                     animation: fading 20s infinite
                     }
                   
                   
@keyframes fading {

                  0%

                  {
                  opacity: 0
                  }
                  
                  
             50% {
                 opacity: 1
                 }
                 
                 
            100% {
                 opacity: 0
                 }
}

/* the webkit animation starts here */                           
                          
p.announcementFading {
                     -webkit-animation: fading 20s infinite;
                     -webkit-animation: fading 20s infinite
                     }
                   
                   
@-webkit-keyframes fading {

                  0%

                  {
                  opacity: 0
                  }
                  
                  
             50% {
                 opacity: 1
                 }
                 
                 
            100% {
                 opacity: 0
                 }
} 						  

/* the webkit animation ends here */ 						  
		   
div#registration_innerBorder {
                             float: left; 
                             position: relative;
                             width: 97.9%;
                             margin: 0% 0% 0% 1%;    /* down, left, up, right */
                             outline: 1px solid tan;
                             } 
                             
                             
h2#registrationField {
                     float: left; 
                     position: relative;
                     width: 100%;
                     text-align: center;
                     font-family: times;
                     color: purple;
                     padding: 1% 0% 1% 0%;
                     margin: 0% 0% 1% 0%;    /* down, left, up, right */
                    /*outline: 1px solid rosybrown;*/
                     }
                     
                     
div#infoBorder {
               float: left; 
               position: relative;
               width: 90%;
               height: 133px;
               margin: 0% 0% 1.4% 5%;    /* down, left, up, right */
               border-top-width: 1px;
               border-right-width: 1px;
               border-bottom-width: 0px;
               border-left-width: 0px;
               border-color: rosybrown;
               border-style: solid;
               }
               
               
div#infoBorder_extra {
                     float: left; 
                     position: relative;
                     width: 90%;
                     height: 133px;
                     margin: 0% 0% 1.4% 5%;    /* down, left, up, right */
                     border-top-width: 1px;
                     border-right-width: 0px;
                     border-bottom-width: 0px;
                     border-left-width: 1px;
                     border-color: rosybrown;
                     border-style: solid;
                     }                 
        
        
div#infoBorder_extreme {
                       float: left; 
                       position: relative;
                       width: 90%;
                       height: 152px;
                       margin: 0% 0% 1.4% 5%;    /* down, left, up, right */
                       border-top-width: 1px;
                       border-right-width: 1px;
                       border-bottom-width: 0px;
                       border-left-width: 0px;
                       border-color: rosybrown;
                       border-style: solid;                        
                       }
                       
                       
label#personal_account {
                       float: left; 
                       position: relative;
                       width: 50%;
                       text-align: center;
                       font-size: 1em;
                       color: forestgreen;
                       margin: 1% 0% 0% 2%;    /* down, left, up, right */
                      /*outline: 1px solid rosybrown;*/
                       } 
                                
                                
input#privateAccount {
                     float: left; 
                     margin: 1% 0% 0% 2%;    /* down, left, up, right */
                    /*border: 1px solid green;*/
                     }
                     
                     
label#public_account {
                     float: left; 
                     position: relative;
                     width: 50%;
                     text-align: center;
                     font-size: 1em;
                     color: forestgreen;
                     margin: 1% 0% 0% 2%;    /* down, left, up, right */
                    /*outline: 1px solid rosybrown;*/
                     } 
                                
                                
input#publicAccount {
                    float: left; 
                    margin: 1% 0% 0% 2%;    /* down, left, up, right */
                   /*border: 1px solid green;*/
                    }                     
                 
               
input.register_names {
                     float: left; 
                     position: relative;
                     width: 65%;
                     height: 24px;
                     font-family: sans-serif;
                     text-align: center;
					 font-size: 0.8em;
                     margin: 1% 0% 0.5% 17%;    /* down, left, up, right */
					 border-radius: 12px;
                     border: 1px solid rosybrown;
                     } 
                     
                     
input.register_basics {
                      float: left; 
                      position: relative;
                      width: 65%;
                      height: 24px;
                      font-family: sans-serif;
                      text-align: center;
					  font-size: 0.8em;
                      margin: 1% 0% 0.5% 17%;    /* down, left, up, right */
					  border-radius: 12px;
                      border: 1px solid rosybrown;
                      }                      
                     
                     
select#register_country {
                        float: left; 
                        position: relative;
                        width: 22%;
                        height: 25px;
						text-align: center;
						font-size: 0.7em;
                        margin: 1% 0% 1% 2%;    /* down, left, up, right */
						border-radius: 3px;
                        border: 1px solid rosybrown;
                        }
                        
                        
select#register_city {
                     float: left; 
                     position: relative;
                     width: 22%;
                     height: 25px;
					 text-align: center;
					 font-size: 0.7em;
                     margin: 1% 0% 1% 2%;    /* down, left, up, right */
					 border-radius: 3px;
                     border: 1px solid rosybrown;
                     } 
					 
					 
select#current_country {
                       float: left; 
                       position: relative;
                       width: 22%;
                       height: 25px;
					   text-align: center;
					   font-size: 0.7em;
                       margin: 1% 0% 1% 2%;    /* down, left, up, right */
					   border-radius: 3px;
                       border: 1px solid rosybrown;
                       }
                        
                        
select#current_city {
                    float: left; 
                    position: relative;
                    width: 22%;
                    height: 25px;
					text-align: center;
					font-size: 0.7em;
                    margin: 1% 0% 1% 2%;    /* down, left, up, right */
					border-radius: 3px;
                    border: 1px solid rosybrown;
                    }
                     
                     
hr#horizontal_line {
                   float: left; 
                   position: relative;
                   width: 92%;
                   margin: 0% 0% 5% 4%;    /* down, left, up, right */
                   border: 1px solid tan;
                   } 
                   
                   
button#terms_conditions {
                        float: left; 
                        position: relative;
                        width: 22%;
                        height: 22px;
						font-size: 0.8em;
                        color: #707070;
                        margin: -13.1% 0% 0% 2%;    /* down, left, up, right */
                        border-radius: 4px;
						border: 1px solid #C0C0C0;
                        } 
                        
                        
button#terms_conditions:hover {
                              background-color: #F8F8F8;
                              }
							  

div#featureBrowse_pagesContainer {
							     float: left; 
							     position: relative;
							     width: 22%;
							     margin: -13.1% 0% 0% 26%;    /* down, left, up, right */
							     border-radius: 0px;
							    /*border: 1px solid red;*/
							     } 						 
                               
                               
button#featureBrowse_buttons1 {
                              float: left;
                              position: relative; 
                              width: 100%;
                              height: 22px;
                              margin: 0% 0% 0% 0%;    /* down, left, up, right */
                              color: #707070;
					          border-radius: 2px;
					          border: 1px solid #E8E8E8;
                              }
                             
                             
button#featureBrowse_buttons1:hover {
                                    background-color: #F8F8F8;
                                    }
									
									
button#featureBrowse_buttons11 {
							   display: none;
							   }
									 
									 
button.featureBrowse_buttons2 {
                              float: left;
                              position: relative; 
                              width: 100%;
                              height: 22px;
							  font-size: 0.7em;
							  font-weight: bold;
							  background-color: white;
                              margin: 0% 0% 0% 0%;    /* down, left, up, right */
                              color: sienna;
					          border: 1px solid white;
                              }
                             
                             
button.featureBrowse_buttons2:hover {
                                    background-color: rosybrown;
                                    }
                                     
                                     
button#featureBrowse_buttons3 {
                              float: left;
                              position: relative; 
                              width: 100%;
                              height: 22px;
                              margin: 0% 0% 0% 0%;    /* down, left, up, right */
                              color: #707070;
					          border-radius: 2px;
					          border: 1px solid #E8E8E8;
                              }
                             
                             
button#featureBrowse_buttons3:hover {
                                    background-color: #F8F8F8;
                                    } 


button#featureBrowse_buttons33 {
							   display: none;
							   }                                    
                              
                              
div#featureBrowse_infoMessage {
							  overflow: hidden;
							  float: left;
							  position: relative;
							  width: 92%;
							  height: 0px;
							  text-align: center;
							  font-size: 0.9em;
							  padding: 2% 3% 2% 3%;    /* down, left, up, right */
							  color: #B0B0B0;
							  margin: 0% 0% 0% 1%;    /* down, left, up, right */
							  transition-duration: 2s;
							 /*outline: 1px solid #C8C8C8;*/
							  } 
			  
			  
div#featureBrowse_innerMessages {
								display: none;
								overflow: auto;
							    float: left;
							    position: relative;
							    width: 99%;
							    height: 120px;
								opacity: 0.7;  
							    margin: 0% 0% 0% 0%;    /* down, left, up, right */
								border-radius: 2px;
							    outline: 1px solid tan;
							    } 
								
								
hr#horizontal_line2 {
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 0% 0% 1% 4%;    /* down, left, up, right */
                    border: 1px solid tan;
                    }                               
                              

label#termsConditions_agreement {
                                float: left; 
                                position: relative;
                                width: 50%;
                                height: 30px;
                                line-height: 30px;
                                text-align: center;
                                font-size: 1em;
                                color: sienna;
                                margin: 0% 0% 1% 4%;    /* down, left, up, right */
                               /*outline: 1px solid rosybrown;*/
                                }  
                                
                                
input#termsConditions {
                      float: left; 
                      margin: 2.5% 0% 0% 2%;    /* down, left, up, right */
                      border: 1px solid green;
                      } 
                      
                      
hr#horizontal_line3 {
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 0% 0% 1% 4%;    /* down, left, up, right */
                    border: 1px solid tan;
                    }                      
 
 
hr.horizontal_line4 {
                    display: none;
                    } 

					
p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 50%;
                  text-align: center;
                  font-size: 0.9em;
                  color: white;
				  padding: 0% 0% 0% 0%;
                  margin: 20.5% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }					

                      
input#submitButton {
                   float: right; 
                   position: relative;
                   width: 13%;
                   height: 21px;
				   font-size: 0.8em;
                   color: #707070;
                   margin: 0% 3.7% 0% 0%;    /* down, left, up, right */
                   border-radius: 3px;
                   border: 1px solid #C0C0C0;
                   } 
                   
                   
input#submitButton:hover {
                         background-color: #F8F8F8;
                         }                   
                         
                         
div#loadingWrapper {
                   float: left; 
                   position: absolute;
                   width: 98.8%;
                   margin: 0% 0% 0% 0.6%;    /* down, left, up, right */
                  /*outline: 1px solid red;*/
                   }
                   
                   
div#loader_container {
                     float: left; 
                     position: relative;
                     width: 5%;
                     margin: 20% 0% 0% 47.5%;    /* down, left, up, right */
                    /*outline: 1px solid gold;*/
                     }
                     
                     
img#loaderImage {
                float: left; 
                position: relative;
                width: 100%;
                height: 65px;
                margin: 0% 0% 0% 0%;    /* down, left, up, right */
				border-radius: 3px;
               /*outline: 1px solid blue;*/
                }                          
                          
/* SCREEN SIZE STARTS */

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

div#registration_container {
                           float: left; 
                           position: relative;
                           width: 94%;
                           background-color: tan;
                           margin: 0.4% 0% 0.4% 3%;    /* down, left, up, right */
						   border-radius: 1px;
                           outline: 1px solid rosybrown;
                           }
                           
                          
p#websiteName {
              float: left; 
              position: relative;
              width: 20%;
              text-align: center;
              font-family: bookman;
			  text-transform: lowercase;
              font-size: 3em;
              padding: 1% 0% 1% 0%;
              color: #E8E8E8;
              margin: 0.7% 0% 0% 1%;    /* down, left, up, right */
             /*outline: 1px solid rosybrown;*/
              }
              
              
div#errorForm_wrapper {
                      float: left; 
                      position: relative;
                      width: 50%;
                      margin: 0.7% 0% 0% 2%;    /* down, left, up, right */
                     /*outline: 1px solid red;*/
                      }
                      
                      
p#errormessage {
               float: left; 
               position: relative;
               width: 94%;
               text-align: center;
               font-family: bookman;
               font-size: 1em;
               padding: 1% 0% 1% 0%;
               color: salmon;
               margin: 3.8% 0% 4.2% 3%;    /* down, left, up, right */
              /*outline: 1px solid #C8C8C8;*/
               } 
               
               
div#loginForm_wrapper {
                      float: right; 
                      position: relative;
                      width: 24%;
                      height: 82px;
                      margin: 0.7% 1% 1% 0%;    /* down, left, up, right */
                     /*outline: 1px solid red;*/
                      }
                      
                      
input#login_username {
                     float: left; 
                     position: relative;
                     width: 65%;
                     height: 20px;
                     text-align: center;
					 font-size: 0.8em;
					 background-color: #E8E8E8;
                     margin: 2% 0% 0% 33%;    /* down, left, up, right */
                     border-radius: 4px;
                     border: 1px solid #808080;
                     }
                     
                     
input#login_password {
                     float: left; 
                     position: relative;
                     width: 65%;
                     height: 20px;
                     text-align: center;
					 font-size: 0.8em;
                     background-color: #E8E8E8;
                     margin: 0% 0% 0% 33%;    /* down, left, up, right */
                     border-radius: 4px;
                     border: 1px solid #808080;
                     }
                     

input#login_button {
                   float: left; 
                   position: relative;
                   width: 18%;
                   height: 22px;
				   font-size: 0.8em;
                   color: #707070;
                   margin: 0% 0% 0% 80.7%;    /* down, left, up, right */
                   border-radius: 4px;
                   border: 1px solid #C0C0C0;
                   } 
           
                         
div#infoBorder_extreme {
                       float: left; 
                       position: relative;
                       width: 90%;
                       height: 175px;
                       margin: 0% 0% 2% 5%;    /* down, left, up, right */
                       border-top-width: 1px;
                       border-right-width: 1px;
                       border-bottom-width: 0px;
                       border-left-width: 0px;
                       border-color: rosybrown;
                       border-style: solid;   
                       }                         
                         
                         
hr#horizontal_line {
                   float: left; 
                   position: relative;
                   width: 92%;
                   margin: 0% 0% 5% 4%;    /* down, left, up, right */
                   border: 1px solid tan;
                   } 
                   
                   
button#terms_conditions {
                        float: left; 
                        position: relative;
                        width: 22%;
                        height: 22px;
						font-size: 0.8em;
                        color: #707070;
                        margin: -14.7% 0% 0% 2%;    /* down, left, up, right */
                        border-radius: 4px;
						border: 1px solid #C0C0C0;
                        }  


div#featureBrowse_pagesContainer {
							     float: left; 
							     position: relative;
							     width: 22%;
							     margin: -14.7% 0% 0% 26%;    /* down, left, up, right */
							     border-radius: 0px;
							    /*border: 1px solid red;*/
							     }  
                               
                               
hr#horizontal_line2 {
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 0.6% 0% 2% 4%;    /* down, left, up, right */
                    border: 1px solid tan;
                    }                               
                              

label#termsConditions_agreement {
                                float: left; 
                                position: relative;
                                width: 50%;
                                height: 30px;
                                line-height: 30px;
                                text-align: center;
                                font-size: 1em;
                                color: sienna;
                                margin: 0% 0% 1% 4%;    /* down, left, up, right */
                               /*outline: 1px solid rosybrown;*/
                                }
                                 
                                
                                
input#termsConditions {
                      float: left; 
                      margin: 2.5% 0% 0% 2%;    /* down, left, up, right */
                      border: 1px solid green;
                      } 
                      
                      
hr#horizontal_line3 {
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 0% 0% 1% 4%;    /* down, left, up, right */
                    border: 1px solid tan;
                    } 


p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 50%;
                  text-align: center;
                  font-size: 0.9em;
                  color: white;
				  padding: 0% 0% 0% 0%;
                  margin: 22.2% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }	
                    
                    
input#submitButton {
                   float: right; 
                   position: relative;
                   width: 13%;
                   height: 21px;
				   font-size: 0.8em;
                   color: #707070;
                   margin: 0% 3.7% 0% 0%;    /* down, left, up, right */
                   border-radius: 3px;
                   border: 1px solid #C0C0C0;
                   } 
                         
                         
div#loadingWrapper {
                   float: left; 
                   position: absolute;
                   width: 98.8%;
                   margin: 0% 0% 0% 0.6%;    /* down, left, up, right */
                  /*outline: 1px solid red;*/
                   }
                   
                   
div#loader_container {
                     float: left; 
                     position: relative;
                     width: 5%;
                     margin: 20% 0% 0% 47.5%;    /* down, left, up, right */
                    /*outline: 1px solid gold;*/
                     }
                     
                     
img#loaderImage {
                float: left; 
                position: relative;
                width: 100%;
                height: 65px;
                margin: 0% 0% 0% 0%;    /* down, left, up, right */
				border-radius: 3px;
               /*outline: 1px solid blue;*/
                }                          
                         
                         
/* JAVASCRIPT OPENNING */
                         
/* =============== terms and conditions open =============== */

iframe#termCondition_wrapper {
                             float: left; 
                             position: relative;
                             width: 93%;
                             height: 606px;
                             text-align: left;
                             padding: 2% 1% 2% 2%;
                             margin: 0% 0% 2% 1%;    /* down, left, up, right */
                             border: 1px solid #E0E0E0;
                             } 
                                       
/* =============== terms and conditions close =============== */

/* JAVASCRIPT CLOSING */                                                     
                             
}

@media screen and (max-width: 1300px) {
	
p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 50%;
                  text-align: center;
                  font-size: 0.9em;
                  color: white;
				  padding: 0% 0% 0% 0%;
                  margin: 22.5% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }	 	


div#featureBrowse_pagesContainer {
							     float: left; 
							     position: relative;
							     width: 22%;
							     margin: -14.7% 0% 0% 26%;    /* down, left, up, right */
							     border-radius: 0px;
							    /*border: 1px solid red;*/
							     }  				  

}

@media screen and (max-width: 1250px) {
                          
p#websiteName {
              float: left; 
              position: relative;
              width: 20%;
              text-align: center;
              font-family: bookman;
			  text-transform: lowercase;
              font-size: 2.8em;
              padding: 1% 0% 1% 0%;
              color: #E8E8E8;
              margin: 0.7% 0% 0% 1%;    /* down, left, up, right */
             /*outline: 1px solid rosybrown;*/
              }
              
div#errorForm_wrapper {
                      float: left; 
                      position: relative;
                      width: 50%;
                      margin: 0.7% 0% 0% 2%;    /* down, left, up, right */
                     /*outline: 1px solid red;*/
                      }
                      
                      
p#errormessage {
               float: left; 
               position: relative;
               width: 94%;
               text-align: center;
               font-family: bookman;
               font-size: 1em;
               padding: 1% 0% 1% 0%;
               color: salmon;
               margin: 3.8% 0% 4.7% 3%;    /* down, left, up, right */
              /*outline: 1px solid #C8C8C8;*/
               } 
               
               
div#loginForm_wrapper {
                      float: right; 
                      position: relative;
                      width: 24%;
                      height: 82px;
                      margin: 0.7% 1% 1% 0%;    /* down, left, up, right */
                     /*outline: 1px solid red;*/
                      }
                      
                      
input#login_username {
                     float: left; 
                     position: relative;
                     width: 67%;
                     height: 20px;
                     text-align: center;
					 font-size: 0.8em;
                     background-color: #E8E8E8;
                     margin: 2% 0% 0% 31%;    /* down, left, up, right */
                     border-radius: 4px;
                     border: 1px solid #808080;
                     }
                     
                     
input#login_password {
                     float: left; 
                     position: relative;
                     width: 67%;
                     height: 20px;
                     text-align: center;
					 font-size: 0.8em;
                     background-color: #E8E8E8;
                     margin: 0% 0% 0% 31%;    /* down, left, up, right */
                     border-radius: 4px;
                     border: 1px solid #808080;
                     }
                     

input#login_button {
                   float: left; 
                   position: relative;
                   width: 20%;
                   height: 22px;
				   font-size: 0.8em;
                   color: #707070;
                   margin: 0% 0% 0% 78.7%;    /* down, left, up, right */
                   border-radius: 4px;
                   border: 1px solid #C0C0C0;
                   }                           
                                       
                         
div#infoBorder_extreme {
                       float: left; 
                       position: relative;
                       width: 90%;
                       height: 170px;
                       margin: 0% 0% 2% 5%;    /* down, left, up, right */
                       border-top-width: 1px;
                       border-right-width: 1px;
                       border-bottom-width: 0px;
                       border-left-width: 0px;
                       border-color: rosybrown;
                       border-style: solid;     
                       }                         
                         
                         
hr#horizontal_line {
                   float: left; 
                   position: relative;
                   width: 92%;
                   margin: 0% 0% 5% 4%;    /* down, left, up, right */
                   border: 1px solid tan;
                   } 
                   
                   
button#terms_conditions {
                        float: left; 
                        position: relative;
                        width: 22%;
                        height: 22px;
						font-size: 0.8em;
                        color: #707070;
                        margin: -15.7% 0% 0% 2%;    /* down, left, up, right */
                        border-radius: 4px;
						border: 1px solid #C0C0C0;
                        }  


div#featureBrowse_pagesContainer {
							     float: left; 
							     position: relative;
							     width: 22%;
							     margin: -15.6% 0% 0% 26%;    /* down, left, up, right */
							     border-radius: 0px;
							    /*border: 1px solid red;*/
							     } 						
                
                          
hr#horizontal_line2 {
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 1% 0% 2% 4%;    /* down, left, up, right */
                    border: 1px solid tan;
                    }                               
                              

label#termsConditions_agreement {
                                float: left; 
                                position: relative;
                                width: 50%;
                                height: 30px;
                                line-height: 30px;
                                text-align: center;
                                font-size: 0.9em;
                                color: sienna;
                                margin: 0% 0% 1% 4%;    /* down, left, up, right */
                               /*outline: 1px solid rosybrown;*/
                                } 
                                
                                
input#termsConditions {
                      float: left; 
                      margin: 3% 0% 0% 2%;    /* down, left, up, right */
                      border: 1px solid green;
                      } 
                      
                      
hr#horizontal_line3 {
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 0% 0% 1% 4%;    /* down, left, up, right */
                    border: 1px solid tan;
                    } 


p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 55%;
                  text-align: center;
                  font-size: 0.9em;
                  color: white;
				  padding: 0% 0% 0% 0%;
                  margin: 23.4% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }						
                    
                    
input#submitButton {
                   float: right; 
                   position: relative;
                   width: 13%;
                   height: 21px;
				   font-size: 0.8em;
                   color: #707070;
                   margin: 0% 3.7% 0% 0%;    /* down, left, up, right */
                   border-radius: 3px;
                   border: 1px solid #C0C0C0;
                   } 
                         
                         
div#loadingWrapper {
                   float: left; 
                   position: absolute;
                   width: 98.8%;
                   margin: 0% 0% 0% 0.6%;    /* down, left, up, right */
                  /*outline: 1px solid orange;*/
                   }
                   
                   
div#loader_container {
                     float: left; 
                     position: relative;
                     width: 5.5%;
                     margin: 20% 0% 0% 47.2%;    /* down, left, up, right */
                    /*outline: 1px solid gold;*/
                     }
                     
                     
img#loaderImage {
                float: left; 
                position: relative;
                width: 100%;
                height: 65px;
                margin: 0% 0% 0% 0%;    /* down, left, up, right */
				border-radius: 3px;
               /*outline: 1px solid blue;*/
                }                         
                         
/* JAVASCRIPT OPENNING */
                         
/* =============== terms and conditions open =============== */

iframe#termCondition_wrapper {
                             float: left; 
                             position: relative;
                             width: 93%;
                             height: 590px;
                             text-align: left;
                             padding: 2% 1% 2% 2%;
                             margin: 0% 0% 2% 1%;    /* down, left, up, right */
                             border: 1px solid #E0E0E0;
                             } 
                                       
/* =============== terms and conditions close =============== */

/* JAVASCRIPT CLOSING */                                                   
   
}   

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

p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 50%;
                  text-align: center;
                  font-size: 0.9em;
                  color: white;
				  padding: 0% 0% 0% 0%;
                  margin: 23.7% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }	
				  
				  
div#featureBrowse_pagesContainer {
							     float: left; 
							     position: relative;
							     width: 21.7%;
							     margin: -15.6% 0% 0% 26%;    /* down, left, up, right */
							     border-radius: 0px;
							    /*border: 1px solid red;*/
							     } 	

}  

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

p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 50%;
                  text-align: center;
                  font-size: 0.9em;
                  color: white;
				  padding: 0% 0% 0% 0%;
                  margin: 24% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }	
				  
				  
div#featureBrowse_pagesContainer {
							     float: left; 
							     position: relative;
							     width: 21.7%;
							     margin: -15.6% 0% 0% 26%;    /* down, left, up, right */
							     border-radius: 0px;
							    /*border: 1px solid red;*/
							     } 

}                       
             
@media screen and (max-width: 1150px) {
	
div#registrationWrapper {
                        float: right; 
                        position: relative;
                        width: 53.5%;
                        height: 569px;
                        margin: 0.5% 0.5% 0.4% 0%;    /* down, left, up, right */
                        outline: 1px solid tan;
                        }	
						
                          
p#websiteName {
              float: left; 
              position: relative;
              width: 20%;
              text-align: center;
              font-family: bookman;
			  text-transform: lowercase;
              font-size: 2.6em;
              padding: 1% 0% 1% 0%;
              color: #E8E8E8;
              margin: 0.7% 0% 0% 1%;    /* down, left, up, right */
             /*outline: 1px solid rosybrown;*/
              }
              

div#errorForm_wrapper {
                      float: left; 
                      position: relative;
                      width: 50%;
                      margin: 0.7% 0% 0% 2%;    /* down, left, up, right */
                     /*outline: 1px solid red;*/
                      }
                      
                      
p#errormessage {
               float: left; 
               position: relative;
               width: 94%;
               text-align: center;
               font-family: bookman;
               font-size: 1em;
               padding: 1% 0% 1% 0%;
               color: salmon;
               margin: 2.3% 0% 2.3% 3%;    /* down, left, up, right */
              /*outline: 1px solid #C8C8C8;*/
               }
               
               
div#loginForm_wrapper {
                      float: right; 
                      position: relative;
                      width: 24%;
                      height: 82px;
                      margin: 0.7% 1% 1% 0%;    /* down, left, up, right */
                     /*outline: 1px solid red;*/
                      }
                      
                      
input#login_username {
                     float: left; 
                     position: relative;
                     width: 69%;
                     height: 20px;
                     text-align: center;
					 font-size: 0.8em;
                     background-color: #E8E8E8;
                     margin: 2% 0% 0% 29.3%;    /* down, left, up, right */
                     border-radius: 4px;
                     border: 1px solid #808080;
                     }
                     
                     
input#login_password {
                     float: left; 
                     position: relative;
                     width: 69%;
                     height: 20px;
                     text-align: center;
					 font-size: 0.8em;
                     background-color: #E8E8E8;
                     margin: 0% 0% 0% 29.3%;    /* down, left, up, right */
                     border-radius: 4px;
                     border: 1px solid #808080;
                     }
                     

input#login_button {
                   float: left; 
                   position: relative;
                   width: 22%;
                   height: 22px;
				   font-size: 0.8em;
                   color: #707070;
                   margin: 0% 0% 0% 77.2%;    /* down, left, up, right */
                   border-radius: 4px;
                   border: 1px solid #C0C0C0;
                   } 
                         
                         
div#infoBorder_extreme {
                       float: left; 
                       position: relative;
                       width: 90%;
                       height: 170px;
                       margin: 0% 0% 2% 5%;    /* down, left, up, right */
                       border-top-width: 1px;
                       border-right-width: 1px;
                       border-bottom-width: 0px;
                       border-left-width: 0px;
                       border-color: rosybrown;
                       border-style: solid;    
                       }                         
                     
                     
hr#horizontal_line {
                   float: left; 
                   position: relative;
                   width: 92%;
                   margin: 0% 0% 5% 4%;    /* down, left, up, right */
                   border: 1px solid tan;
                   } 
                   
                   
button#terms_conditions {
                        float: left; 
                        position: relative;
                        width: 22%;
                        height: 22px;
						font-size: 0.8em;
                        color: #707070;
                        margin: -16.8% 0% 0% 2%;    /* down, left, up, right */
                        border-radius: 4px;
						border: 1px solid #C0C0C0;
                        } 
						
						
button#pageButton1A {
					display: none;
					}
					
					
button#pageButton1B {
					display: none;
					}
					
					
button#pageButton1C {
					display: none;
					}


div#featureBrowse_pagesContainer {
							     float: left; 
							     position: relative;
							     width: 21.7%;
							     margin: -16.7% 0% 0% 26%;    /* down, left, up, right */
							     border-radius: 0px;
							    /*border: 1px solid red;*/
							     } 						
                
                          
hr#horizontal_line2 {
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 1.7% 0% 2% 4%;    /* down, left, up, right */
                    border: 1px solid tan;
                    }                               
                              

label#termsConditions_agreement {
                                float: left; 
                                position: relative;
                                width: 50%;
                                height: 30px;
                                line-height: 30px;
                                text-align: center;
                                font-size: 0.85em;
                                color: sienna;
                                margin: 0% 0% 1% 4%;    /* down, left, up, right */
                               /*outline: 1px solid rosybrown;*/
                                } 
                                
                                
input#termsConditions {
                      float: left; 
                      margin: 3.5% 0% 0% 2%;    /* down, left, up, right */
                      border: 1px solid green;
                      } 
                      
                      
hr#horizontal_line3 {
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 0% 0% 1% 4%;    /* down, left, up, right */
                    border: 1px solid tan;
                    } 


p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.9em;
                  color: white;
				  padding: 0% 0% 0% 0%;
                  margin: 25.2% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }						
                    
                    
input#submitButton {
                   float: right; 
                   position: relative;
                   width: 13%;
                   height: 21px;
				   font-size: 0.8em;
                   color: #707070;
                   margin: 0% 3.7% 0% 0%;    /* down, left, up, right */
                   border-radius: 3px;
                   border: 1px solid #C0C0C0;
                   } 
                         
                         
div#loadingWrapper {
                   float: left; 
                   position: absolute;
                   width: 98.8%;
                   margin: 0% 0% 0% 0.6%;    /* down, left, up, right */
                  /*outline: 1px solid blue;*/
                   }
                   
                   
div#loader_container {
                     float: left; 
                     position: relative;
                     width: 6%;
                     margin: 20% 0% 0% 47%;    /* down, left, up, right */
                    /*outline: 1px solid gold;*/
                     }
                     
                     
img#loaderImage {
                float: left; 
                position: relative;
                width: 100%;
                height: 65px;
                margin: 0% 0% 0% 0%;    /* down, left, up, right */
				border-radius: 3px;
               /*outline: 1px solid blue;*/
                }                          
                                                                                                                                                                                                                            
} 

@media screen and (max-width: 1120px) {
	
p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.9em;
                  color: white;
				  padding: 0% 0% 0% 0%;
                  margin: 25.4% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }
				  
				  
div#featureBrowse_pagesContainer {
							     float: left; 
							     position: relative;
							     width: 21.7%;
							     margin: -16.8% 0% 0% 26%;    /* down, left, up, right */
							     border-radius: 0px;
							    /*border: 1px solid red;*/
							     } 

}

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

p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.9em;
                  color: white;
				  padding: 0% 0% 0% 0%;
                  margin: 25.8% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }


div#featureBrowse_pagesContainer {
							     float: left; 
							     position: relative;
							     width: 21.7%;
							     margin: -16.8% 0% 0% 26%;    /* down, left, up, right */
							     border-radius: 0px;
							    /*border: 1px solid red;*/
							     } 				  

}

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

p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.9em;
                  color: white;
				  padding: 0% 0% 0% 0%;
                  margin: 26% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }	
				  
				  
div#featureBrowse_pagesContainer {
							     float: left; 
							     position: relative;
							     width: 21.7%;
							     margin: -16.8% 0% 0% 26%;    /* down, left, up, right */
							     border-radius: 0px;
							    /*border: 1px solid red;*/
							     } 	

}

@media screen and (max-width: 1050px) {
	
div#login_container {
                    float: left; 
                    position: relative;
                    width: 99%;
                    background-color: sienna;
                    margin: 0.4% 0% 0% 0.5%;    /* down, left, up, right */
					border-radius: 2px;
                    outline: 1px solid saddlebrown;
                    } 
					
	
div#registration_container {
                           float: left; 
                           position: relative;
                           width: 94%;
                           background-color: white;
                           margin: 0.4% 0% 0.4% 3%;    /* down, left, up, right */
						   border-radius: 1px;
                           outline: 1px solid white;
                           } 


div#registration_innerBorder {
                             float: left; 
                             position: relative;
                             width: 97.9%;
                             margin: 0% 0% 0% 1%;    /* down, left, up, right */
                             outline: 1px solid white;
                             } 
                             
                             
h2#registrationField {
                     float: left; 
                     position: relative;
                     width: 100%;
                     text-align: center;
                     font-family: times;
                     color: purple;
                     padding: 1% 0% 1% 0%;
                     margin: 0% 0% 1% 0%;    /* down, left, up, right */
                    /*outline: 1px solid rosybrown;*/
                     }

            
p#websiteName {
              float: left; 
              position: relative;
              width: 20%;
              text-align: center;
              font-family: bookman;
			  text-transform: lowercase;
              font-size: 2.4em;
              padding: 1% 0% 1% 0%;
              color: #E8E8E8;
              margin: 0.7% 0% 0% 1%;    /* down, left, up, right */
             /*outline: 1px solid rosybrown;*/
              }
              
              
div#errorForm_wrapper {
                      float: left; 
                      position: relative;
                      width: 50%;
                      margin: 0.7% 0% 0% 2%;    /* down, left, up, right */
                     /*outline: 1px solid red;*/
                      }
                      
                      
p#errormessage {
               float: left; 
               position: relative;
               width: 94%;
               text-align: center;
               font-family: bookman;
               font-size: 1em;
               padding: 1% 0% 1% 0%;
               color: salmon;
               margin: 1.8% 0% 1.8% 3%;    /* down, left, up, right */
              /*outline: 1px solid #C8C8C8;*/
               }
               
               
div#loginForm_wrapper {
                      float: right; 
                      position: relative;
                      width: 24%;
                      height: 82px;
                      margin: 0.7% 1% 1% 0%;    /* down, left, up, right */
                     /*outline: 1px solid red;*/
                      }
                      
                      
input#login_username {
                     float: left; 
                     position: relative;
                     width: 71%;
                     height: 20px;
                     text-align: center;
					 font-size: 0.8em;
                     background-color: #E8E8E8;
                     margin: 2% 0% 0% 27%;    /* down, left, up, right */
                     border-radius: 4px;
                     border: 1px solid #808080;
                     }
                     
                     
input#login_password {
                     float: left; 
                     position: relative;
                     width: 71%;
                     height: 20px;
                     text-align: center;
					 font-size: 0.8em;
                     background-color: #E8E8E8;
                     margin: 0% 0% 0% 27%;    /* down, left, up, right */
                     border-radius: 4px;
                     border: 1px solid #808080;
                     }
                     

input#login_button {
                   float: left; 
                   position: relative;
                   width: 24%;
                   height: 22px;
				   font-size: 0.8em;
                   color: #707070;
                   margin: 0% 0% 0% 74.7%;    /* down, left, up, right */
                   border-radius: 4px;
                   border: 1px solid #C0C0C0;
                   } 
                         
                         
div#logoContainer {
                  display: none;
                  } 
                  
                  
div#registrationWrapper {
                        float: right; 
                        position: relative;
                        width: 71%;
                        height: 618px;
                        margin: 0.5% 14.5% 0.4% 0%;    /* down, left, up, right */
                        outline: 1px solid white;
                        }
						
						
div#infoBorder {
               float: left; 
               position: relative;
               width: 90%;
               height: 133px;
               margin: 0% 0% 1.4% 5%;    /* down, left, up, right */
               border-top-width: 1px;
               border-right-width: 1px;
               border-bottom-width: 1px;
               border-left-width: 1px;
               border-color: white;
               border-style: solid;
               }
               
               
div#infoBorder_extra {
                     float: left; 
                     position: relative;
                     width: 90%;
                     height: 133px;
                     margin: 0% 0% 1.4% 5%;    /* down, left, up, right */
                     border-top-width: 1px;
                     border-right-width: 1px;
                     border-bottom-width: 1px;
                     border-left-width: 1px;
                     border-color: white;
                     border-style: solid;
                     } 
             

div#infoBorder_extreme {
                       float: left; 
                       position: relative;
                       width: 90%;
                       height: 270px;
                       margin: 0% 0% 2% 5%;    /* down, left, up, right */
                       border-top-width: 1px;
                       border-right-width: 1px;
                       border-bottom-width: 1px;
                       border-left-width: 1px;
                       border-color: white;
                       border-style: solid;   
                       }
					   
					   
label#personal_account {
                       float: left; 
                       position: relative;
                       width: 50%;
                       text-align: center;
                       font-size: 1em;
                       color: forestgreen;
                       margin: 1% 0% 0% 2%;    /* down, left, up, right */
                      /*outline: 1px solid rosybrown;*/
                       } 
                     
                     
label#public_account {
                     float: left; 
                     position: relative;
                     width: 50%;
                     text-align: center;
                     font-size: 1em;
                     color: forestgreen;
                     margin: 1% 0% 0% 2%;    /* down, left, up, right */
                    /*outline: 1px solid rosybrown;*/
                     } 
					   
					   
input.register_names {
                     float: left; 
                     position: relative;
                     width: 65%;
                     height: 24px;
                     font-family: sans-serif;
                     text-align: center;
					 font-size: 0.8em;
                     margin: 1% 0% 0.5% 17%;    /* down, left, up, right */
                     border: 1px solid #E8E8E8;
                     }


input.register_basics {
                      float: left; 
                      position: relative;
                      width: 65%;
                      height: 24px;
                      font-family: sans-serif;
                      text-align: center;
					  font-size: 0.8em;
                      margin: 1% 0% 0.5% 17%;    /* down, left, up, right */
                      border: 1px solid #E8E8E8;
                      } 					 


select#register_country {
                        float: left; 
                        position: relative;
                        width: 92%;
                        height: 25px;
						text-align: center;
                        font-size: 0.7em;
                        margin: 0% 0% 0% 4%;    /* down, left, up, right */
						border-radius: 3px;
                        border: 1px solid #E0E0E0;
                        }
                        
                        
select#register_city {
                     float: left; 
                     position: relative;
                     width: 92%;
                     height: 25px;
					 text-align: center;
                     font-size: 0.7em;
                     margin: 0% 0% 0% 4%;    /* down, left, up, right */
					 border-radius: 3px;
                     border: 1px solid #E0E0E0;
                     } 
					 
					 
select#current_country {
                       float: left; 
                       position: relative;
                       width: 92%;
                       height: 25px;
					   text-align: center;
                       font-size: 0.7em;
                       margin: 0% 0% 0% 4%;    /* down, left, up, right */
					   border-radius: 3px;
                       border: 1px solid #E0E0E0;
                       }
                        
                        
select#current_city {
                    float: left; 
                    position: relative;
                    width: 92%;
                    height: 25px;
					text-align: center;
                    font-size: 0.7em;
                    margin: 0% 0% 0% 4%;    /* down, left, up, right */
					border-radius: 3px;
                    border: 1px solid #E0E0E0;
                    }
                     
                     
hr#horizontal_line {
                   float: left; 
                   position: relative;
                   width: 92%;
                   margin: 0% 0% 5% 4%;    /* down, left, up, right */
                   border: 1px solid white;
                   } 
                   
                   
button#terms_conditions {
                        float: left; 
                        position: relative;
                        width: 92%;
                        height: 22px;
                        font-size: 0.78em;
                        color: #707070;
                        margin: -20.2% 0% 0% 4%;    /* down, left, up, right */
                        border-radius: 4px;
						border: 1px solid #E0E0E0;
                        } 
						
						
div#featureBrowse_pagesContainer {
							     float: left; 
							     position: relative;
							     width: 20%;
							     margin: -85% 0% 0% -20%;    /* down, left, up, right */
							     border-radius: 0px;
							    /*border: 1px solid red;*/
							     } 


div#featureBrowse_innerMessages {
							    display: none;
								overflow: auto;
							    float: left;
							    position: relative;
							    width: 99%;
							    height: 115px;
								opacity: 0.7;  
								background-color: tan;
							    margin: 0% 0% 0% 0%;    /* down, left, up, right */
								border-radius: 2px;
							    outline: 1px solid tan;
							    } 


button.featureBrowse_buttons2 {
                              float: left;
                              position: relative; 
                              width: 100%;
                              height: 22px;
							  font-size: 0.7em;
							  font-weight: bold;
							  background-color: tan;
                              margin: 0% 0% 0% 0%;    /* down, left, up, right */
                              color: sienna;
					          border: 1px solid tan;
                              }								
                              
                              
hr#horizontal_line2 {
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 1.5% 0% 2% 4%;    /* down, left, up, right */
                    border: 1px solid white;
                    }                               
                              

label#termsConditions_agreement {
                                float: left; 
                                position: relative;
                                width: 92%;
                                height: 20px;
                                line-height: 20px;
                                text-align: center;
                                font-size: 0.75em;
                                color: sienna;
                                margin: 0% 0% 2% 4%;    /* down, left, up, right */
                               /*outline: 1px solid rosybrown;*/
                                } 
                                
                                
input#termsConditions {
                      float: left; 
                      margin: 0.8% 0% 0% 2%;    /* down, left, up, right */
                      border: 1px solid green;
                      } 
                      
                      
hr#horizontal_line3 {
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 0% 0% 3% 4%;    /* down, left, up, right */
                    border: 1px solid white;
                    }


hr.horizontal_line4 {
                    display: block;
					float: left; 
                    position: relative;
                    width: 92%;
					height: 5px;
                    margin: 0% 0% 0% 4%;    /* down, left, up, right */
                    border: 1px solid white;
                    }


p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.9em;
                  color: crimson;
				  padding: 0% 0% 0% 0%;
                  margin: 38.9% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }						
                      
                      
input#submitButton {
                   float: right; 
                   position: relative;
                   width: 16%;
                   height: 20px;
                   font-size: 0.7em;
                   color: #707070;
                   margin: 0% 3.7% 0% 0%;    /* down, left, up, right */
                   border-radius: 3px;
                   border: 1px solid #C0C0C0;
                   } 
                         
                         
div#loadingWrapper {
                   float: left; 
                   position: absolute;
                   width: 98.8%;
                   margin: 0% 0% 0% 0.6%;    /* down, left, up, right */
                  /*outline: 1px solid limegreen;*/
                   }
                   
                   
div#loader_container {
                     float: left; 
                     position: relative;
                     width: 6.6%;
                     margin: 20% 0% 0% 46.8%;    /* down, left, up, right */
                    /*outline: 1px solid gold;*/
                     }
                     
                     
img#loaderImage {
                float: left; 
                position: relative;
                width: 100%;
                height: 65px;
                margin: 0% 0% 0% 0%;    /* down, left, up, right */
				border-radius: 3px;
               /*outline: 1px solid blue;*/
                }                         
                         
/* JAVASCRIPT OPENNING */
                         
/* =============== terms and conditions open =============== */

iframe#termCondition_wrapper {
                             float: left; 
                             position: relative;
                             width: 93%;
                             height: 640px;
                             text-align: left;
                             padding: 2% 1% 2% 2%;
                             margin: 0% 0% 2% 1%;    /* down, left, up, right */
                             border: 1px solid #E0E0E0;
                             } 
                                       
/* =============== terms and conditions close =============== */

/* JAVASCRIPT CLOSING */                                                                                                               
          
}  

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


p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.9em;
                  color: crimson;
				  padding: 0% 0% 0% 0%;
                  margin: 40% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }	
				  
				  
div#featureBrowse_pagesContainer {
							     float: left; 
							     position: relative;
							     width: 20.3%;
							     margin: -86% 0% 0% -20%;    /* down, left, up, right */
							     border-radius: 0px;
							    /*border: 1px solid red;*/
							     } 


div#featureBrowse_innerMessages {
							    display: none;
								overflow: auto;
							    float: left;
							    position: relative;
							    width: 99%;
							    height: 115px;
								opacity: 0.7;  
								background-color: tan;
							    margin: 0% 0% 0% 0%;    /* down, left, up, right */
								border-radius: 2px;
							    outline: 1px solid tan;
							    }

}

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


p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.9em;
                  color: crimson;
				  padding: 0% 0% 0% 0%;
                  margin: 41.2% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }	

}

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

p#websiteName {
              float: left; 
              position: relative;
              width: 20%;
              text-align: center;
              font-family: bookman;
			  text-transform: lowercase;
              font-size: 2.2em;
              padding: 1% 0% 1% 0%;
              color: #E8E8E8;
              margin: 0.7% 0% 0% 1%;    /* down, left, up, right */
             /*outline: 1px solid rosybrown;*/
              }
              
              
div#errorForm_wrapper {
                      float: left; 
                      position: relative;
                      width: 50%;
                      margin: 0.7% 0% 0% 2%;    /* down, left, up, right */
                     /*outline: 1px solid red;*/
                      }
                      
                      
p#errormessage {
               float: left; 
               position: relative;
               width: 94%;
               text-align: center;
               font-family: bookman;
               font-size: 1em;
               padding: 1% 0% 1% 0%;
               color: salmon;
               margin: 1.6% 0% 1.6% 3%;    /* down, left, up, right */
              /*outline: 1px solid #C8C8C8;*/
               } 
               
               
div#loginForm_wrapper {
                      float: right; 
                      position: relative;
                      width: 24%;
                      height: 82px;
                      margin: 0.7% 1% 1% 0%;    /* down, left, up, right */
                     /*outline: 1px solid red;*/
                      }
                      
                      
input#login_username {
                     float: left; 
                     position: relative;
                     width: 73%;
                     height: 20px;
                     text-align: center;
					 font-size: 0.8em;
                     background-color: #E8E8E8;
                     margin: 2% 0% 0% 25%;    /* down, left, up, right */
                     border-radius: 4px;
                     border: 1px solid #808080;
                     }
                     
                     
input#login_password {
                     float: left; 
                     position: relative;
                     width: 73%;
                     height: 20px;
                     text-align: center;
					 font-size: 0.8em;
                     background-color: #E8E8E8;
                     margin: 0% 0% 0% 25%;    /* down, left, up, right */
                     border-radius: 4px;
                     border: 1px solid #808080;
                     }
                     

input#login_button {
                   float: left; 
                   position: relative;
                   width: 26%;
                   height: 22px;
				   font-size: 0.8em;
                   color: #707070;
                   margin: 0% 0% 0% 72.8%;    /* down, left, up, right */
                   border-radius: 4px;
                   border: 1px solid #C0C0C0;
                   } 
         
                         
div#registrationWrapper {
                        float: right; 
                        position: relative;
                        width: 71%;
                        height: 607px;
                        margin: 0.7% 14.5% 0.6% 0%;    /* down, left, up, right */
                        outline: 1px solid white;
                        } 
                        
                        
h2#registrationField {
                     float: left; 
                     position: relative;
                     width: 100%;
                     text-align: center;
                     font-size: 1.4em;
                     font-family: times;
                     color: purple;
                     padding: 1% 0% 1% 0%;
                     margin: 0% 0% 1% 0%;    /* down, left, up, right */
                    /*outline: 1px solid rosybrown;*/
                     } 
                     

div#infoBorder_extreme {
                       float: left; 
                       position: relative;
                       width: 90%;
                       height: 260px;
                       margin: 0% 0% 2% 5%;    /* down, left, up, right */
                       border-top-width: 1px;
                       border-right-width: 1px;
                       border-bottom-width: 1px;
                       border-left-width: 1px;
                       border-color: white;
                       border-style: solid;   
                       }


select#register_country {
                        float: left; 
                        position: relative;
                        width: 92%;
                        height: 25px;
						text-align: center;
                        font-size: 0.7em;
                        margin: 0% 0% 0% 4%;    /* down, left, up, right */
						border-radius: 3px;
                        border: 1px solid #E0E0E0;
                        }
                        
                        
select#register_city {
                     float: left; 
                     position: relative;
                     width: 92%;
                     height: 25px;
					 text-align: center;
                     font-size: 0.7em;
                     margin: 0% 0% 0% 4%;    /* down, left, up, right */
					 border-radius: 3px;
                     border: 1px solid #E0E0E0;
                     }
				 
					 
select#current_country {
                       float: left; 
                       position: relative;
                       width: 92%;
                       height: 25px;
					   text-align: center;
                       font-size: 0.7em;
                       margin: 0% 0% 0% 4%;    /* down, left, up, right */
					   border-radius: 3px;
                       border: 1px solid #E0E0E0;
                       }
                        
                        
select#current_city {
                    float: left; 
                    position: relative;
                    width: 92%;
                    height: 25px;
					text-align: center;
                    font-size: 0.7em;
                    margin: 0% 0% 0% 4%;    /* down, left, up, right */
					border-radius: 3px;
                    border: 1px solid #E0E0E0;
                    }			 
                     
                     
hr#horizontal_line {
                   float: left; 
                   position: relative;
                   width: 92%;
                   margin: 0% 0% 5% 4%;    /* down, left, up, right */
                   border: 1px solid white;
                   } 
                   
                   
button#terms_conditions {
                        float: left; 
                        position: relative;
                        width: 92%;
                        height: 22px;
                        font-size: 0.78em;
                        color: #707070;
                        margin: -21% 0% 0% 4%;    /* down, left, up, right */
                        border-radius: 4px;
						border: 1px solid #E0E0E0;
                        } 
                              
                              
hr#horizontal_line2 {
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 1.5% 0% 2% 4%;    /* down, left, up, right */
                    border: 1px solid white;
                    }                               
                              

label#termsConditions_agreement {
                                float: left; 
                                position: relative;
                                width: 92%;
                                height: 20px;
                                line-height: 20px;
                                text-align: center;
                                font-size: 0.75em;
                                color: sienna;
                                margin: 0% 0% 2% 4%;    /* down, left, up, right */
                               /*outline: 1px solid rosybrown;*/
                                }


div#featureBrowse_pagesContainer {
							     float: left; 
							     position: relative;
							     width: 21.5%;
							     margin: -92% 0% 0% -25%;    /* down, left, up, right */
							     border-radius: 0px;
							    /*border: 1px solid red;*/
							     } 


div#featureBrowse_innerMessages {
							    display: none;
								overflow: auto;
							    float: left;
							    position: relative;
							    width: 99%;
							    height: 115px;
								opacity: 0.7;  
								background-color: tan;
							    margin: 0% 0% 0% 0%;    /* down, left, up, right */
								border-radius: 2px;
							    outline: 1px solid tan;
							    }								
                                
                                
input#termsConditions {
                      float: left; 
                      margin: 0.8% 0% 0% 2%;    /* down, left, up, right */
                      border: 1px solid green;
                      } 
                      
                      
hr#horizontal_line3 {
                    visibility: hidden;
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 0% 0% 3% 4%;    /* down, left, up, right */
                    border: 1px solid white;
                    } 


p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.9em;
                  color: crimson;
				  padding: 0% 0% 0% 0%;
                  margin: 41.8% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }						
                      
                      
input#submitButton {
                   float: right; 
                   position: relative;
                   width: 16%;
                   height: 20px;
                   font-size: 0.7em;
                   color: #707070;
                   margin: 0% 3.7% 0% 0%;    /* down, left, up, right */
                   border-radius: 3px;
                   border: 1px solid #C0C0C0;
                   } 
                         
                         
div#loadingWrapper {
                   float: left; 
                   position: absolute;
                   width: 98.8%;
                   margin: 0% 0% 0% 0.6%;    /* down, left, up, right */
                  /*outline: 1px solid black;*/
                   }
                   
                   
div#loader_container {
                     float: left; 
                     position: relative;
                     width: 7.3%;
                     margin: 20% 0% 0% 46.4%;    /* down, left, up, right */
                    /*outline: 1px solid gold;*/
                     }
                     
                     
img#loaderImage {
                float: left; 
                position: relative;
                width: 100%;
                height: 65px;
                margin: 0% 0% 0% 0%;    /* down, left, up, right */
				border-radius: 3px;
               /*outline: 1px solid blue;*/
                }                          
                         
/* JAVASCRIPT OPENNING */
                         
/* =============== terms and conditions open =============== */

iframe#termCondition_wrapper {
                             float: left; 
                             position: relative;
                             width: 93%;
                             height: 615px;
                             text-align: left;
                             padding: 2% 1% 2% 2%;
                             margin: 0% 0% 2% 1%;    /* down, left, up, right */
                             border: 1px solid #E0E0E0;
                             } 
                             
                             
h3#termCondition_header {
                        float: left; 
                        position: relative;
                        width: 82%;
                        font-size: 0.9em;
                        text-align: center;
                        padding: 2% 0% 2% 0%;
                        color: black;
                        margin: 1.5% 0% 1.2% 6%;    /* down, left, up, right */
                       /*outline: 1px solid #C8C8C8;*/
                        }                                                       


button#termCondition_closeButton {
                                 float: right; 
                                 width: 5%;    /* 7 mm width and 5 mm height */
                                 height: 21px;
                                 text-align: center;
                                 margin: 3% 2.3% 1.2% 0%;    /* down, left, up, right */
                                 color: limegreen;
                                 background-color: #E8E8E8;
                                 border-radius: 0.2em;
                                 border: 1px solid #A8A8A8;
                                 }  
                                       
/* =============== terms and conditions close =============== */

/* JAVASCRIPT CLOSING */                                                                                                                                                     
              
} 

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

p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.9em;
                  color: crimson;
				  padding: 0% 0% 0% 0%;
                  margin: 43% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }
				  
				  
div#featureBrowse_pagesContainer {
							     float: left; 
							     position: relative;
							     width: 21.5%;
							     margin: -94% 0% 0% -25%;    /* down, left, up, right */
							     border-radius: 0px;
							    /*border: 1px solid red;*/
							     } 


div#featureBrowse_innerMessages {
							    display: none;
								overflow: auto;
							    float: left;
							    position: relative;
							    width: 99%;
							    height: 115px;
								opacity: 0.7;  
								background-color: tan;
							    margin: 0% 0% 0% 0%;    /* down, left, up, right */
								border-radius: 2px;
							    outline: 1px solid tan;
							    }

}

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

p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.9em;
                  color: crimson;
				  padding: 0% 0% 0% 0%;
                  margin: 45% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }

}

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

p#websiteName {
              float: left; 
              position: relative;
              width: 20%;
              text-align: center;
              font-family: bookman;
			  text-transform: lowercase;
              font-size: 2em;
              padding: 1% 0% 1% 0%;
              color: #E8E8E8;
              margin: 0.7% 0% 0% 1%;    /* down, left, up, right */
             /*outline: 1px solid rosybrown;*/
              }
              
              
div#errorForm_wrapper {
                      float: left; 
                      position: relative;
                      width: 50%;
                      margin: 0.7% 0% 0% 2%;    /* down, left, up, right */
                     /*outline: 1px solid red;*/
                      }
                      
                      
p.emergency_announcements {
                          float: left; 
                          position: relative;
                          width: 97.9%;
                          height: 30px;
                          line-height: 30px;
                          text-align: center;
						  text-transform: lowercase; 
                          font-family: bookman;
                          font-size: 0.82em;
                          color: crimson;
                          margin: 0.8% 0% 1% 1%;    /* down, left, up, right */
                         /*outline: 1px solid #C8C8C8;*/
                          }                       
                      
                      
p#errormessage {
               float: left; 
               position: relative;
               width: 94%;
               text-align: center;
               font-family: bookman;
               font-size: 0.9em;
               padding: 1% 0% 1% 0%;
               color: salmon;
               margin: 1.4% 0% 1.4% 3%;    /* down, left, up, right */
              /*outline: 1px solid #C8C8C8;*/
               } 
               
               
div#loginForm_wrapper {
                      float: right; 
                      position: relative;
                      width: 26%;
                      height: 82px;
                      margin: 0.7% 1% 1% 0%;    /* down, left, up, right */
                     /*outline: 1px solid red;*/
                      }
                      
                      
input#login_username {
                     float: left; 
                     position: relative;
                     width: 93%;
                     height: 20px;
                     text-align: center;
					 font-size: 0.8em;
                     background-color: #E8E8E8;
                     margin: 2% 0% 0% 3%;    /* down, left, up, right */
                     border-radius: 4px;
                     border: 1px solid #808080;
                     }
                     
                     
input#login_password {
                     float: left; 
                     position: relative;
                     width: 93%;
                     height: 20px;
                     text-align: center;
					 font-size: 0.8em;
                     background-color: #E8E8E8;
                     margin: 0% 0% 0% 3%;    /* down, left, up, right */
                     border-radius: 4px;
                     border: 1px solid #808080;
                     }
                     

input#login_button {
                   float: left; 
                   position: relative;
                   width: 36%;
                   height: 20px;
				   font-size: 0.8em;
                   color: #707070;
                   margin: 0% 0% 0% 61%;    /* down, left, up, right */
                   border-radius: 4px;
                   border: 1px solid #C0C0C0;
                   } 
                         
                         
div#registrationWrapper {
                        float: right; 
                        position: relative;
                        width: 71%;
                        height: 586px;
                        margin: 0.7% 14.5% 0.8% 0%;    /* down, left, up, right */
                        outline: 1px solid white;
                        }                     
                        
                        
h2#registrationField {
                     float: left; 
                     position: relative;
                     width: 100%;
                     text-align: center;
                     font-size: 1.3em;
                     font-family: times;
                     color: purple;
                     padding: 1% 0% 1% 0%;
                     margin: 0% 0% 1.2% 0%;    /* down, left, up, right */
                    /*outline: 1px solid rosybrown;*/
                     } 
                     
                     
div#infoBorder {
               float: left; 
               position: relative;
               width: 90%;
               height: 130px;
               margin: 0% 0% 2.1% 5%;    /* down, left, up, right */
               border-top-width: 1px;
               border-right-width: 1px;
               border-bottom-width: 1px;
               border-left-width: 1px;
               border-color: white;
               border-style: solid;
               }
               
               
div#infoBorder_extra {
                     float: left; 
                     position: relative;
                     width: 90%;
                     height: 130px;
                     margin: 0% 0% 2% 5%;    /* down, left, up, right */
                     border-top-width: 1px;
                     border-right-width: 1px;
                     border-bottom-width: 1px;
                     border-left-width: 1px;
                     border-color: white;
                     border-style: solid;
                     }                 
        
        
div#infoBorder_extreme {
                       float: left; 
                       position: relative;
                       width: 90%;
                       height: 255px;
                       margin: 0% 0% 2% 5%;    /* down, left, up, right */
                       border-top-width: 1px;
                       border-right-width: 1px;
                       border-bottom-width: 1px;
                       border-left-width: 1px;
                       border-color: white;
                       border-style: solid;    
                       }
          

select#register_country {
                        float: left; 
                        position: relative;
                        width: 92%;
                        height: 25px;
						text-align: center;
                        font-size: 0.7em;
                        margin: 0% 0% 0% 4%;    /* down, left, up, right */
						border-radius: 3px;
                        border: 1px solid #E0E0E0;
                        }
                        
                        
select#register_city {
                     float: left; 
                     position: relative;
                     width: 92%;
                     height: 25px;
					 text-align: center;
                     font-size: 0.7em;
                     margin: 0% 0% 0% 4%;    /* down, left, up, right */
					 border-radius: 3px;
                     border: 1px solid #E0E0E0;
                     }


select#current_country {
                       float: left; 
                       position: relative;
                       width: 92%;
                       height: 25px;
					   text-align: center;
                       font-size: 0.7em;
                       margin: 0% 0% 0% 4%;    /* down, left, up, right */
					   border-radius: 3px;
                       border: 1px solid #E0E0E0;
                       }
                        
                        
select#current_city {
                    float: left; 
                    position: relative;
                    width: 92%;
                    height: 25px;
					text-align: center;
                    font-size: 0.7em;
                    margin: 0% 0% 0% 4%;    /* down, left, up, right */
					border-radius: 3px;
                    border: 1px solid #E0E0E0;
                    }					 
                     
                     
hr#horizontal_line {
                   float: left; 
                   position: relative;
                   width: 92%;
                   margin: 0% 0% 5% 4%;    /* down, left, up, right */
                   border: 1px solid white;
                   } 
                   
                   
button#terms_conditions {
                        float: left; 
                        position: relative;
                        width: 92%;
                        height: 22px;
                        font-size: 0.78em;
                        color: #707070;
                        margin: -23% 0% 0% 4%;    /* down, left, up, right */
                        border-radius: 4px;
						border: 1px solid #E0E0E0;
                        } 
						
						
div#featureBrowse_pagesContainer {
							     float: left; 
							     position: relative;
							     width: 24%;
							     margin: -102% 0% 0% -26%;    /* down, left, up, right */
							     border-radius: 0px;
							    /*border: 1px solid red;*/
							     }
								 

 button#featureBrowse_buttons1 {
                              float: left;
                              position: relative; 
                              width: 100%;
                              height: 18px;
                              margin: 0% 0% 0% 0%;    /* down, left, up, right */
                              color: #707070;
					          border-radius: 2px;
					          border: 1px solid #E8E8E8;
                              }
                                     
                                     
button#featureBrowse_buttons3 {
                              float: left;
                              position: relative; 
                              width: 100%;
                              height: 18px;
                              margin: 0% 0% 0% 0%;    /* down, left, up, right */
                              color: #707070;
					          border-radius: 2px;
					          border: 1px solid #E8E8E8;
                              }


div#featureBrowse_innerMessages {
							    display: none;
								overflow: auto;
							    float: left;
							    position: relative;
							    width: 99%;
							    height: 115px;
								opacity: 0.7;  
								background-color: tan;
							    margin: 0% 0% 0% 0%;    /* down, left, up, right */
								border-radius: 2px;
							    outline: 1px solid tan;
							    }
                              
                              
hr#horizontal_line2 {
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 2.5% 0% 2% 4%;    /* down, left, up, right */
                    border: 1px solid white;
                    }                               
                              

label#termsConditions_agreement {
                                float: left; 
                                position: relative;
                                width: 92%;
                                height: 20px;
                                line-height: 20px;
                                text-align: center;
                                font-size: 0.75em;
                                color: sienna;
                                margin: 0% 0% 2% 4%;    /* down, left, up, right */
                               /*outline: 1px solid rosybrown;*/
                                } 
                                
                                
input#termsConditions {
                      float: left; 
                      margin: 0.8% 0% 0% 2%;    /* down, left, up, right */
                      border: 1px solid green;
                      } 
                      
                      
hr#horizontal_line3 {
                    visibility: hidden;
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 0% 0% 3% 4%;    /* down, left, up, right */
                    border: 1px solid white;
                    }


p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.9em;
                  color: crimson;
				  padding: 0% 0% 0% 0%;
                  margin: 46.5% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }					
                      
                      
input#submitButton {
                   float: right; 
                   position: relative;
                   width: 16%;
                   height: 20px;
                   font-size: 0.7em;
                   color: #707070;
                   margin: 0% 3.7% 0% 0%;    /* down, left, up, right */
                   border-radius: 3px;
                   border: 1px solid #C0C0C0;
                   } 
                        
                         
div#loadingWrapper {
                   float: left; 
                   position: absolute;
                   width: 98.8%;
                   margin: 0% 0% 0% 0.6%;    /* down, left, up, right */
                  /*outline: 1px solid red;*/
                   }
                   
                   
div#loader_container {
                     float: left; 
                     position: relative;
                     width: 8%;
                     margin: 20% 0% 0% 46%;    /* down, left, up, right */
                    /*outline: 1px solid gold;*/
                     }
                     
                     
img#loaderImage {
                float: left; 
                position: relative;
                width: 100%;
                height: 65px;
                margin: 0% 0% 0% 0%;    /* down, left, up, right */
				border-radius: 3px;
               /*outline: 1px solid blue;*/
                }                         
                         
} 

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

p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.8em;
                  color: crimson;
				  padding: 0.3% 0% 0.3% 0%;
                  margin: 47.5% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }
				  
				  
div#featureBrowse_pagesContainer {
							     float: left; 
							     position: relative;
							     width: 24%;
							     margin: -105% 0% 0% -26%;    /* down, left, up, right */
							     border-radius: 0px;
							    /*border: 1px solid red;*/
							     }

}

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

p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.8em;
                  color: crimson;
				  padding: 0.3% 0% 0.3% 0%;
                  margin: 49% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }

}

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

p#websiteName {
              float: left; 
              position: relative;
              width: 20%;
              text-align: center;
              font-family: bookman;
			  text-transform: lowercase;
              font-size: 1.8em;
              padding: 1% 0% 1% 0%;
              color: #E8E8E8;
              margin: 0.7% 0% 0% 1%;    /* down, left, up, right */
             /*outline: 1px solid rosybrown;*/
              }
              
              
div#errorForm_wrapper {
                      float: left; 
                      position: relative;
                      width: 50%;
                      margin: 0.7% 0% 0% 2%;    /* down, left, up, right */
                     /*outline: 1px solid red;*/
                      }
                      
                      
p.emergency_announcements {
                          visibility: hidden; 
                          }                       
                      
                      
p#errormessage {
               float: left; 
               position: relative;
               width: 94%;
               text-align: center;
               font-family: bookman;
               font-size: 0.75em;
               padding: 1% 0% 1% 0%;
               color: salmon;
               margin: 1.8% 0% 1.8% 3%;    /* down, left, up, right */
              /*outline: 1px solid #C8C8C8;*/
               }
               
               
div#loginForm_wrapper {
                      float: right; 
                      position: relative;
                      width: 26%;
                      margin: 0.7% 1% 1% 0%;    /* down, left, up, right */
                     /*outline: 1px solid red;*/
                      }
                      
                      
input#login_username {
                     float: left; 
                     position: relative;
                     width: 93%;
                     height: 20px;
                     text-align: center;
					 font-size: 0.8em;
                     background-color: #E8E8E8;
                     margin: 2% 0% 0% 3%;    /* down, left, up, right */
                     border-radius: 4px;
                     border: 1px solid #808080;
                     }
                     
                     
input#login_password {
                     float: left; 
                     position: relative;
                     width: 93%;
                     height: 20px;
                     text-align: center;
					 font-size: 0.8em;
                     background-color: #E8E8E8;
                     margin: 0% 0% 0% 3%;    /* down, left, up, right */
                     border-radius: 4px;
                     border: 1px solid #808080;
                     }
                     

input#login_button {
                   float: left; 
                   position: relative;
                   width: 37%;
                   height: 20px;
				   font-size: 0.8em;
                   color: #707070;
                   margin: 0% 0% 0% 60.6%;    /* down, left, up, right */
                   border-radius: 4px;
                   border: 1px solid #C0C0C0;
                   } 
                         
                         
div#registrationWrapper {
                        float: right; 
                        position: relative;
                        width: 71%;
                        height: 560px;
                        margin: 0.8% 14.5% 0.8% 0%;    /* down, left, up, right */
                        outline: 1px solid white;
                        }                      
                        
                        
h2#registrationField {
                     float: left; 
                     position: relative;
                     width: 100%;
                     text-align: center;
                     font-size: 1.2em;
                     font-family: times;
                     color: purple;
                     padding: 1% 0% 1% 0%;
                     margin: 0% 0% 1.4% 0%;    /* down, left, up, right */
                    /*outline: 1px solid rosybrown;*/
                     }
                     
                     
div#infoBorder {
               float: left; 
               position: relative;
               width: 90%;
               height: 125px;
               margin: 0% 0% 2.1% 5%;    /* down, left, up, right */
               border-top-width: 1px;
               border-right-width: 1px;
               border-bottom-width: 1px;
               border-left-width: 1px;
               border-color: white;
               border-style: solid;
               }
               
               
div#infoBorder_extra {
                     float: left; 
                     position: relative;
                     width: 90%;
                     height: 125px;
                     margin: 0% 0% 2% 5%;    /* down, left, up, right */
                     border-top-width: 1px;
                     border-right-width: 1px;
                     border-bottom-width: 1px;
                     border-left-width: 1px;
                     border-color: white;
                     border-style: solid;
                     }                 
        
        
div#infoBorder_extreme {
                       float: left; 
                       position: relative;
                       width: 90%;
                       height: 250px;
                       margin: 0% 0% 2% 5%;    /* down, left, up, right */
                       border-top-width: 1px;
                       border-right-width: 1px;
                       border-bottom-width: 1px;
                       border-left-width: 1px;
                       border-color: white;
                       border-style: solid;  
                       }                      
                     
                     
label#personal_account {
                       float: left; 
                       position: relative;
                       width: 90%;
                       line-height: 18px;
                       text-align: center;
                       padding: 0% 0% 0.5% 0%;
                       font-size: 1em;
                       color: forestgreen;
                       margin: 1.2% 0% 0.2% 5%;    /* down, left, up, right */
                      /*outline: 1px solid rosybrown;*/
                       } 
                                
                                
input#privateAccount {
                     float: right; 
                     width: 10%;
                     margin: 1% 0% 0% 2%;    /* down, left, up, right */
                    /*border: 1px solid green;*/
                     }
                     
                     
label#public_account {
                     float: left; 
                     position: relative;
                     width: 90%;
                     line-height: 18px;
                     text-align: center;
                     padding: 0% 0% 0.5% 0%;
                     font-size: 1em;
                     color: forestgreen;
                     margin: 1.2% 0% 0.2% 5%;    /* down, left, up, right */
                    /*outline: 1px solid rosybrown;*/
                     } 
                                
                                
input#publicAccount {
                    float: right; 
                    width: 10%;
                    margin: 1% 0% 0% 2%;    /* down, left, up, right */
                   /*border: 1px solid green;*/
                    }
 

select#register_country {
                        float: left; 
                        position: relative;
                        width: 92%;
                        height: 25px;
						text-align: center;
                        font-size: 0.7em;
                        margin: 0% 0% 0% 4%;    /* down, left, up, right */
						border-radius: 3px;
                        border: 1px solid #E0E0E0;
                        }
                        
                        
select#register_city {
                     float: left; 
                     position: relative;
                     width: 92%;
                     height: 25px;
					 text-align: center;
                     font-size: 0.7em;
                     margin: 0% 0% 0% 4%;    /* down, left, up, right */
					 border-radius: 3px;
                     border: 1px solid #E0E0E0;
                     }


select#current_country {
                       float: left; 
                       position: relative;
                       width: 92%;
                       height: 25px;
					   text-align: center;
                       font-size: 0.7em;
                       margin: 0% 0% 0% 4%;    /* down, left, up, right */
					   border-radius: 3px;
                       border: 1px solid #E0E0E0;
                       }
                        
                        
select#current_city {
                    float: left; 
                    position: relative;
                    width: 92%;
                    height: 25px;
					text-align: center;
                    font-size: 0.7em;
                    margin: 0% 0% 0% 4%;    /* down, left, up, right */
					border-radius: 3px;
                    border: 1px solid #E0E0E0;
                    }					 
                     
                     
hr#horizontal_line {
                   float: left; 
                   position: relative;
                   width: 92%;
                   margin: 0% 0% 5% 4%;    /* down, left, up, right */
                   border: 1px solid white;
                   } 
                   
                   
button#terms_conditions {
                        float: left; 
                        position: relative;
                        width: 92%;
                        height: 22px;
                        font-size: 0.78em;
                        color: #707070;
                        margin: -25% 0% 0% 4%;    /* down, left, up, right */
                        border-radius: 4px;
						border: 1px solid #E0E0E0;
                        } 
						
						
div#featureBrowse_pagesContainer {
							     float: left; 
							     position: relative;
							     width: 27%;
							     margin: -112% 0% 0% -26%;    /* down, left, up, right */
							     border-radius: 0px;
							    /*border: 1px solid red;*/
							     }
                              
                              
hr#horizontal_line2 {
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 3.5% 0% 2% 4%;    /* down, left, up, right */
                    border: 1px solid white;
                    }                               
                              

label#termsConditions_agreement {
                                float: left; 
                                position: relative;
                                width: 92%;
                                height: 20px;
                                line-height: 20px;
                                text-align: center;
                                font-size: 0.75em;
                                color: sienna;
                                margin: 0% 0% 2% 4%;    /* down, left, up, right */
                               /*outline: 1px solid rosybrown;*/
                                } 
                                
                                
input#termsConditions {
                      float: left; 
                      margin: 0.8% 0% 0% 2%;    /* down, left, up, right */
                      border: 1px solid green;
                      } 
                      
                      
hr#horizontal_line3 {
                    visibility: hidden;
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 0% 0% 3% 4%;    /* down, left, up, right */
                    border: 1px solid white;
                    } 


p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.8em;
                  color: crimson;
				  padding: 0.3% 0% 0.3% 0%;
                  margin: 51.5% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }					
                      
                      
input#submitButton {
                   float: right; 
                   position: relative;
                   width: 17%;
                   height: 20px;
                   font-size: 0.7em;
                   color: #707070;
                   margin: 0% 3.7% 0% 0%;    /* down, left, up, right */
                   border-radius: 3px;
                   border: 1px solid #C0C0C0;
                   } 
                         
                         
div#loadingWrapper {
                   float: left; 
                   position: absolute;
                   width: 98.8%;
                   margin: 0% 0% 0% 0.6%;    /* down, left, up, right */
                  /*outline: 1px solid blue;*/
                   }
                   
                   
div#loader_container {
                     float: left; 
                     position: relative;
                     width: 9.3%;
                     margin: 20% 0% 0% 45.5%;    /* down, left, up, right */
                    /*outline: 1px solid gold;*/
                     }
                     
                     
img#loaderImage {
                float: left; 
                position: relative;
                width: 100%;
                height: 65px;
                margin: 0% 0% 0% 0%;    /* down, left, up, right */
				border-radius: 3px;
               /*outline: 1px solid blue;*/
                }                         
                                                                        
}

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

p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.8em;
                  color: crimson;
				  padding: 0.3% 0% 0.3% 0%;
                  margin: 53% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }	

}

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

p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.8em;
                  color: crimson;
				  padding: 0.3% 0% 0.3% 0%;
                  margin: 54.5% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }	
				  
				  
div#featureBrowse_pagesContainer {
							     float: left; 
							     position: relative;
							     width: 29%;
							     margin: -119% 0% 0% -26%;    /* down, left, up, right */
							     border-radius: 0px;
							    /*border: 1px solid red;*/
							     }

}

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

p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.8em;
                  color: crimson;
				  padding: 0.3% 0% 0.3% 0%;
                  margin: 56% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }	

}

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

p#websiteName {
              float: left; 
              position: relative;
              width: 20%;
              text-align: center;
              font-family: bookman;
			  text-transform: lowercase;
              font-size: 1.2em;
              padding: 3% 0% 3% 0%;
              color: #E8E8E8;
              margin: 0.7% 0% 0% 1%;    /* down, left, up, right */
             /*outline: 1px solid rosybrown;*/
              }
              
              
div#loginForm_wrapper {
                      float: right; 
                      position: relative;
                      width: 26%;
                      margin: 0.7% 1% 1% 0%;    /* down, left, up, right */
                     /*outline: 1px solid blue;*/
                      }                     
                      
                      
input#login_username {
                     float: left; 
                     position: relative;
                     width: 93%;
                     height: 20px;
                     text-align: center;
                     font-size: 0.7em;
                     background-color: #E8E8E8;
                     margin: 2% 0% 0% 3%;    /* down, left, up, right */
                     border-radius: 4px;
                     border: 1px solid #808080;
                     }
                     
                     
input#login_password {
                     float: left; 
                     position: relative;
                     width: 93%;
                     height: 20px;
                     text-align: center;
                     font-size: 0.7em;
                     background-color: #E8E8E8;
                     margin: 0% 0% 0% 3%;    /* down, left, up, right */
                     border-radius: 4px;
                     border: 1px solid #808080;
                     }
                     

input#login_button {
                   float: left; 
                   position: relative;
                   width: 37%;
                   height: 20px;
                   font-size: 0.7em;
                   color: #707070;
                   margin: 0% 0% 0% 60%;    /* down, left, up, right */
                   border-radius: 4px;
                   border: 1px solid #C0C0C0;
                   } 
                         
                         
div#registrationWrapper {
                        float: right; 
                        position: relative;
                        width: 71%;
                        height: 519px;
                        margin: 0.8% 14.5% 0.8% 0%;    /* down, left, up, right */
                        outline: 1px solid white;
                        }                        
                        
                        
h2#registrationField {
                     float: left; 
                     position: relative;
                     width: 100%;
                     text-align: center;
                     font-size: 1.1em;
                     font-family: times;
                     color: purple;
                     padding: 1% 0% 1% 0%;
                     margin: 0% 0% 1.4% 0%;    /* down, left, up, right */
                    /*outline: 1px solid rosybrown;*/
                     }
                     
                     
div#infoBorder {
               float: left; 
               position: relative;
               width: 90%;
               height: 112px;
               margin: 0% 0% 2.1% 5%;    /* down, left, up, right */
               border-top-width: 1px;
               border-right-width: 1px;
               border-bottom-width: 1px;
               border-left-width: 1px;
               border-color: white;
               border-style: solid;
               }
               
               
div#infoBorder_extra {
                     float: left; 
                     position: relative;
                     width: 90%;
                     height: 112px;
                     margin: 0% 0% 2% 5%;    /* down, left, up, right */
                     border-top-width: 1px;
                     border-right-width: 1px;
                     border-bottom-width: 1px;
                     border-left-width: 1px;
                     border-color: white;
                     border-style: solid;
                     }                 
        
        
div#infoBorder_extreme {
                       float: left; 
                       position: relative;
                       width: 90%;
                       height: 250px;
                       margin: 0% 0% 2% 5%;    /* down, left, up, right */
                       border-top-width: 1px;
                       border-right-width: 1px;
                       border-bottom-width: 1px;
                       border-left-width: 1px;
                       border-color: white;
                       border-style: solid;  
                       }                      
                     
                     
label#personal_account {
                       float: left; 
                       position: relative;
                       width: 90%;
                       line-height: 18px;
                       text-align: center;
                       font-size: 0.9em;
                       padding: 0.5% 0% 0.5% 0%;
                       color: forestgreen;
                       margin: 1.5% 0% 0.5% 5%;    /* down, left, up, right */
                      /*outline: 1px solid rosybrown;*/
                       } 
                                
                                
input#privateAccount {
                     float: right; 
                     width: 10%;
                     margin: 1% 0% 0% 2%;    /* down, left, up, right */
                    /*border: 1px solid green;*/
                     }
                     
                     
label#public_account {
                     float: left; 
                     position: relative;
                     width: 90%;
                     line-height: 18px;
                     text-align: center;
                     font-size: 0.9em;
                     padding: 0.5% 0% 0.5% 0%;
                     color: forestgreen;
                     margin: 1.5% 0% 0.5% 5%;    /* down, left, up, right */
                    /*outline: 1px solid rosybrown;*/
                     } 
                                
                                
input#publicAccount {
                    float: right; 
                    width: 10%;
                    margin: 1% 0% 0% 2%;    /* down, left, up, right */
                   /*border: 1px solid green;*/
                    }
                    
                    
input.register_names {
                     float: left; 
                     position: relative;
                     width: 65%;
                     height: 20px;
                     font-family: sans-serif;
                     text-align: center;
                     font-size: 0.7em;
                     margin: 1% 0% 0.5% 17%;    /* down, left, up, right */
                     border: 1px solid #E8E8E8;
                     } 
                     
                     
input.register_basics {
                      float: left; 
                      position: relative;
                      width: 65%;
                      height: 20px;
                      font-family: sans-serif;
                      text-align: center;
                      font-size: 0.7em;
                      margin: 1% 0% 0.5% 17%;    /* down, left, up, right */
                      border: 1px solid #E8E8E8;
                      }
                  
                      
select#register_country {
                        float: left; 
                        position: relative;
                        width: 92%;
                        height: 25px;
						text-align: center;
                        font-size: 0.7em;
                        margin: 0% 0% 0% 4%;    /* down, left, up, right */
						border-radius: 3px;
                        border: 1px solid #E0E0E0;
                        }
                        
                        
select#register_city {
                     float: left; 
                     position: relative;
                     width: 92%;
                     height: 25px;
					 text-align: center;
                     font-size: 0.7em;
                     margin: 0% 0% 0% 4%;    /* down, left, up, right */
					 border-radius: 3px;
                     border: 1px solid #E0E0E0;
                     }


select#current_country {
                       float: left; 
                       position: relative;
                       width: 92%;
                       height: 25px;
					   text-align: center;
                       font-size: 0.7em;
                       margin: 0% 0% 0% 4%;    /* down, left, up, right */
					   border-radius: 3px;
                       border: 1px solid #E0E0E0;
                       }
                        
                        
select#current_city {
                    float: left; 
                    position: relative;
                    width: 92%;
                    height: 25px;
					text-align: center;
                    font-size: 0.7em;
                    margin: 0% 0% 0% 4%;    /* down, left, up, right */
					border-radius: 3px;
                    border: 1px solid #E0E0E0;
                    }					 
                     
                     
hr#horizontal_line {
                   float: left; 
                   position: relative;
                   width: 92%;
                   margin: 0% 0% 5% 4%;    /* down, left, up, right */
                   border: 1px solid white;
                   } 
                   
                   
button#terms_conditions {
                        float: left; 
                        position: relative;
                        width: 92%;
                        height: 22px;
                        font-size: 0.78em;
                        color: #707070;
                        margin: -28.3% 0% 0% 4%;    /* down, left, up, right */
                        border-radius: 4px;
						border: 1px solid #E0E0E0;
                        } 
						
						
div#featureBrowse_pagesContainer {
							     float: left; 
							     position: relative;
							     width: 31%;
							     margin: -119% 0% 0% -26%;    /* down, left, up, right */
							     border-radius: 0px;
							    /*border: 1px solid red;*/
							     }
                              
                              
hr#horizontal_line2 {
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 5.5% 0% 2% 4%;    /* down, left, up, right */
                    border: 1px solid white;
                    }                               
                              

label#termsConditions_agreement {
                                float: left; 
                                position: relative;
                                width: 92%;
                                height: 20px;
                                line-height: 20px;
                                text-align: center;
                                font-size: 0.75em;
                                color: sienna;
                                margin: 0% 0% 2% 4%;    /* down, left, up, right */
                               /*outline: 1px solid rosybrown;*/
                                } 
                                
                                
input#termsConditions {
                      float: left; 
                      margin: 0.8% 0% 0% 2%;    /* down, left, up, right */
                      border: 1px solid green;
                      } 
                      
                      
hr#horizontal_line3 {
                    visibility: hidden;
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 0% 0% 3% 4%;    /* down, left, up, right */
                    border: 1px solid white;
                    } 


p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.8em;
                  color: crimson;
				  padding: 0.3% 0% 0.3% 0%;
                  margin: 58% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }						
                      
                      
input#submitButton {
                   float: right; 
                   position: relative;
                   width: 18%;
                   height: 20px;
                   font-size: 0.7em;
                   color: #707070;
                   margin: 0% 3.7% 0% 0%;    /* down, left, up, right */
                   border-radius: 3px;
                   border: 1px solid #C0C0C0;
                   } 
                         
                         
div#loadingWrapper {
                   float: left; 
                   position: absolute;
                   width: 98.8%;
                   margin: 0% 0% 0% 0.6%;    /* down, left, up, right */
                  /*outline: 1px solid gold;*/
                   }
                   
                   
div#loader_container {
                     float: left; 
                     position: relative;
                     width: 10.4%;
                     margin: 20% 0% 0% 45.1%;    /* down, left, up, right */
                    /*outline: 1px solid gold;*/
                     }
                     
                     
img#loaderImage {
                float: left; 
                position: relative;
                width: 100%;
                height: 65px;
                margin: 0% 0% 0% 0%;    /* down, left, up, right */
				border-radius: 3px;
               /*outline: 1px solid blue;*/
                }                          
                                                                                                 
}

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

p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.8em;
                  color: crimson;
				  padding: 0.3% 0% 0.3% 0%;
                  margin: 59.5% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }

}

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

p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.8em;
                  color: crimson;
				  padding: 0.3% 0% 0.3% 0%;
                  margin: 61% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }
				  
				  
div#featureBrowse_pagesContainer {
							     float: left; 
							     position: relative;
							     width: 32%;
							     margin: -124% 0% 0% -26%;    /* down, left, up, right */
							     border-radius: 0px;
							    /*border: 1px solid red;*/
							     }

}

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

p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.8em;
                  color: crimson;
				  padding: 0.3% 0% 0.3% 0%;
                  margin: 63% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }

}

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

p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.72em;
                  color: crimson;
				  padding: 0.5% 0% 0.5% 0%;
                  margin: 64.5% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }
				  
				  
div#featureBrowse_pagesContainer {
							     float: left; 
							     position: relative;
							     width: 32%;
							     margin: -132% 0% 0% -26%;    /* down, left, up, right */
							     border-radius: 0px;
							    /*border: 1px solid red;*/
							     }

}

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

p#websiteName {
              float: left; 
              position: relative;
              width: 20%;
              text-align: center;
              font-family: bookman;
			  text-transform: lowercase;
              font-size: 1.2em;
              padding: 3% 0% 3% 0%;
              color: #E8E8E8;
              margin: 0.7% 0% 0% 1%;    /* down, left, up, right */
             /*outline: 1px solid rosybrown;*/
              }
              
              
div#errorForm_wrapper {
                      float: left; 
                      position: relative;
                      width: 50%;
                      margin: 0.7% 0% 0% 2%;    /* down, left, up, right */
                     /*outline: 1px solid red;*/
                      }                      
                      
                      
p#errormessage {
               float: left; 
               position: relative;
               width: 94%;
               text-align: center;
               font-family: bookman;
               font-size: 0.7em;
               padding: 1% 0% 1% 0%;
               color: salmon;
               margin: 1.8% 0% 1.8% 3%;    /* down, left, up, right */
              /*outline: 1px solid #C8C8C8;*/
               } 
               
               
div#loginForm_wrapper {
                      float: right; 
                      position: relative;
                      width: 26%;
                      margin: 0.7% 1% 1% 0%;    /* down, left, up, right */
                     /*outline: 1px solid red;*/
                      }
                      
                      
input#login_username {
                     float: left; 
                     position: relative;
                     width: 93%;
                     height: 20px;
                     text-align: center;
                     font-size: 0.7em;
                     background-color: #E8E8E8;
                     margin: 2% 0% 0% 3%;    /* down, left, up, right */
                     border-radius: 4px;
                     border: 1px solid #808080;
                     }
                     
                     
input#login_password {
                     float: left; 
                     position: relative;
                     width: 93%;
                     height: 20px;
                     text-align: center;
                     font-size: 0.7em;
                     background-color: #E8E8E8;
                     margin: 0% 0% 0% 3%;    /* down, left, up, right */
                     border-radius: 4px;
                     border: 1px solid #808080;
                     }
                     

input#login_button {
                   float: left; 
                   position: relative;
                   width: 45%;
                   height: 20px;
                   font-size: 0.7em;
                   color: #707070;
                   margin: 0% 0% 0% 52.6%;    /* down, left, up, right */
                   border-radius: 4px;
                   border: 1px solid #C0C0C0;
                   } 
                         
                         
div#registrationWrapper {
                        float: right; 
                        position: relative;
                        width: 71%;
                        height: 500px;
                        margin: 1% 14.5% 0.8% 0%;    /* down, left, up, right */
                        outline: 1px solid white;
                        }                      

                          
h2#registrationField {
                     float: left; 
                     position: relative;
                     width: 100%;
                     text-align: center;
                     font-size: 1em;
                     font-family: times;
                     color: purple;
                     padding: 1% 0% 1% 0%;
                     margin: 0% 0% 1.5% 0%;    /* down, left, up, right */
                    /*outline: 1px solid rosybrown;*/
                     }
                     
                     
label#personal_account {
                       float: left; 
                       position: relative;
                       width: 90%;
                       line-height: 18px;
                       text-align: center;
                       font-size: 0.82em;
                       padding: 0% 0% 1% 0%;
                       color: forestgreen;
                       margin: 1.5% 0% 0.5% 5%;    /* down, left, up, right */
                      /*outline: 1px solid rosybrown;*/
                       } 
                                
                                
input#privateAccount {
                     float: right; 
                     width: 10%;
                     margin: 1.4% 0% 0% 2%;    /* down, left, up, right */
                    /*border: 1px solid green;*/
                     }
                     
                     
div#infoBorder {
               float: left; 
               position: relative;
               width: 90%;
               height: 109px;
               margin: 0% 0% 2.1% 5%;    /* down, left, up, right */
               border-top-width: 1px;
               border-right-width: 1px;
               border-bottom-width: 1px;
               border-left-width: 1px;
               border-color: white;
               border-style: solid;
               }
               
               
div#infoBorder_extra {
                     float: left; 
                     position: relative;
                     width: 90%;
                     height: 109px;
                     margin: 0% 0% 2% 5%;    /* down, left, up, right */
                     border-top-width: 1px;
                     border-right-width: 1px;
                     border-bottom-width: 1px;
                     border-left-width: 1px;
                     border-color: white;
                     border-style: solid;
                     }                 
        
        
div#infoBorder_extreme {
                       float: left; 
                       position: relative;
                       width: 90%;
                       height: 250px;
                       margin: 0% 0% 2% 5%;    /* down, left, up, right */
                       border-top-width: 1px;
                       border-right-width: 1px;
                       border-bottom-width: 1px;
                       border-left-width: 1px;
                       border-color: white;
                       border-style: solid;   
                       }                     
                     
                     
label#public_account {
                     float: left; 
                     position: relative;
                     width: 90%;
                     line-height: 18px;
                     text-align: center;
                     font-size: 0.82em;
                     padding: 0% 0% 1% 0%;
                     color: forestgreen;
                     margin: 1.5% 0% 0.5% 5%;    /* down, left, up, right */
                    /*outline: 1px solid rosybrown;*/
                     } 
                                
                                
input#publicAccount {
                    float: right; 
                    width: 10%;
                    margin: 1.4% 0% 0% 2%;    /* down, left, up, right */
                   /*border: 1px solid green;*/
                    }
                    
                    
input.register_names {
                     float: left; 
                     position: relative;
                     width: 65%;
                     height: 20px;
                     font-family: sans-serif;
                     text-align: center;
                     font-size: 0.7em;
                     margin: 1% 0% 0.5% 17%;    /* down, left, up, right */
                     border: 1px solid #E8E8E8;
                     } 
                     
                     
input.register_basics {
                      float: left; 
                      position: relative;
                      width: 65%;
                      height: 20px;
                      font-family: sans-serif;
                      text-align: center;
                      font-size: 0.7em;
                      margin: 1% 0% 0.5% 17%;    /* down, left, up, right */
                      border: 1px solid #E8E8E8;
                      }


select#register_country {
                        float: left; 
                        position: relative;
                        width: 92%;
                        height: 25px;
						text-align: center;
                        font-size: 0.7em;
                        margin: 0% 0% 0% 4%;    /* down, left, up, right */
						border-radius: 3px;
                        border: 1px solid #E0E0E0;
                        }
                        
                        
select#register_city {
                     float: left; 
                     position: relative;
                     width: 92%;
                     height: 25px;
					 text-align: center;
                     font-size: 0.7em;
                     margin: 0% 0% 0% 4%;    /* down, left, up, right */
					 border-radius: 3px;
                     border: 1px solid #E0E0E0;
                     }


select#current_country {
                       float: left; 
                       position: relative;
                       width: 92%;
                       height: 25px;
					   text-align: center;
                       font-size: 0.7em;
                       margin: 0% 0% 0% 4%;    /* down, left, up, right */
					   border-radius: 3px;
                       border: 1px solid #E0E0E0;
                       }
                        
                        
select#current_city {
                    float: left; 
                    position: relative;
                    width: 92%;
                    height: 25px;
					text-align: center;
                    font-size: 0.7em;
                    margin: 0% 0% 0% 4%;    /* down, left, up, right */
					border-radius: 3px;
                    border: 1px solid #E0E0E0;
                    }					 
                     
                     
hr#horizontal_line {
                   float: left; 
                   position: relative;
                   width: 92%;
                   margin: 0% 0% 5% 4%;    /* down, left, up, right */
                   border: 1px solid white;
                   } 
                   
                   
button#terms_conditions {
                        float: left; 
                        position: relative;
                        width: 92%;
                        height: 22px;
                        font-size: 0.78em;
                        color: #707070;
                        margin: -33% 0% 0% 4%;    /* down, left, up, right */
                        border-radius: 4px;
						border: 1px solid #E0E0E0;
                        } 
                              
                              
hr#horizontal_line2 {
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 8.5% 0% 2% 4%;    /* down, left, up, right */
                    border: 1px solid white;
                    }                               
                              

label#termsConditions_agreement {
                                float: left; 
                                position: relative;
                                width: 92%;
                                height: 20px;
                                line-height: 20px;
                                text-align: center;
                                font-size: 0.75em;
                                color: sienna;
                                margin: 0% 0% 2% 4%;    /* down, left, up, right */
                               /*outline: 1px solid rosybrown;*/
                                } 
                                
                                
input#termsConditions {
                      float: left; 
                      margin: 0.8% 0% 0% 2%;    /* down, left, up, right */
                      border: 1px solid green;
                      } 
                      
                      
hr#horizontal_line3 {
                    visibility: hidden;
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 0% 0% 3% 4%;    /* down, left, up, right */
                    border: 1px solid white;
                    }


p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.72em;
                  color: crimson;
				  padding: 0.5% 0% 0.5% 0%;
                  margin: 69% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }					
                      
                      
input#submitButton {
                   float: right; 
                   position: relative;
                   width: 20%;
                   height: 20px;
                   font-size: 0.7em;
                   color: #707070;
                   margin: 0% 3.7% 0% 0%;    /* down, left, up, right */
                   border-radius: 3px;
                   border: 1px solid #C0C0C0;
                   } 
                         
                         
div#loadingWrapper {
                   float: left; 
                   position: absolute;
                   width: 98.8%;
                   margin: 0% 0% 0% 0.6%;    /* down, left, up, right */
                  /*outline: 1px solid green;*/
                   }
                   
                   
div#loader_container {
                     float: left; 
                     position: relative;
                     width: 12.2%;
                     margin: 20% 0% 0% 44%;    /* down, left, up, right */
                    /*outline: 1px solid gold;*/
                     }
                     
                     
img#loaderImage {
                float: left; 
                position: relative;
                width: 100%;
                height: 65px;
                margin: 0% 0% 0% 0%;    /* down, left, up, right */
				border-radius: 3px;
               /*outline: 1px solid blue;*/
                }                          
                                                  
}

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

p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.72em;
                  color: crimson;
				  padding: 0.5% 0% 0.5% 0%;
                  margin: 71% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }
				  
				  
div#featureBrowse_pagesContainer {
							     display: block;
							     float: left; 
								 position: relative;
								 width: 38%;
								 margin: -142% 0% 0% -26%;    /* down, left, up, right */
								 border-radius: 0px;
							    /*border: 1px solid red;*/
								 }
								 
								 
button#featureBrowse_buttons1 {
							  display: none; 
							  }
								 
								 
button#featureBrowse_buttons11 {
                               display: block;
							   float: left;
                               position: relative; 
                               width: 20%;
                               height: 18px;		
							   background-color: white;							   
                               margin: 0% 0% 0% 5%;    /* down, left, up, right */
                               color: tan;
					           border-radius: 2px;
					           border: 1px solid white; 
                               }

						  
							  
button.featureBrowse_buttons2 {
                              float: left;
                              position: relative; 
                              width: 100%;
                              height: 22px;
							  font-size: 0.7em;
							  font-weight: bold;
							  background-color: tan;
                              margin: 0% 0% 0% 0%;    /* down, left, up, right */
                              color: sienna;
					          border: 1px solid tan;
                              }
							  
							  
button#featureBrowse_buttons3 {
							  display: none; 
							  }
                                     
                                     
button#featureBrowse_buttons33 {
                               display: block;
							   float: left;
                               position: relative; 
                               width: 20%;
                               height: 18px;	
							   background-color: white;								   
                               margin: 0% 0% 0% 5%;    /* down, left, up, right */
                               color: tan;
					           border-radius: 2px;
					           border: 1px solid white; 
                               }

}

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

p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.72em;
                  color: crimson;
				  padding: 0.5% 0% 0.5% 0%;
                  margin: 73% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }
				  				  

}

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

p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.7em;
                  color: crimson;
				  padding: 0.5% 0% 0.5% 0%;
                  margin: 75% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }

}

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

p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 60%;
                  text-align: center;
                  font-size: 0.7em;
                  color: crimson;
				  padding: 0.8% 0% 0.8% 0%;
                  margin: 77% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }
				  
				  
div#featureBrowse_pagesContainer {
							     display: block;
							     float: left; 
								 position: relative;
								 width: 44%;
								 margin: -158% 0% 0% -26%;    /* down, left, up, right */
								 border-radius: 0px;
							    /*border: 1px solid red;*/
								 }

}

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

p#websiteName {
              display: none;
              }
              
              
div#errorForm_wrapper {
                      float: left; 
                      position: relative;
                      width: 50%;
                      margin: 2% 0% 0% 2%;    /* down, left, up, right */
                     /*outline: 1px solid red;*/
                      }
                          					                     
                      
p#errormessage {
               float: left; 
               position: relative;
               width: 94%;
               text-align: center;
               font-family: bookman;
               font-size: 0.8em;
               padding: 1% 0% 1% 0%;
               color: salmon;
               margin: 1.8% 0% 1.8% 3%;    /* down, left, up, right */
              /*outline: 1px solid #C8C8C8;*/
               } 
               
               
div#loginForm_wrapper {
                      float: right; 
                      position: relative;
                      width: 45%;
                      margin: 0.7% 1% 1% 0%;    /* down, left, up, right */
                     /*outline: 1px solid green;*/
                      }
                      
                      
input#login_username {
                     float: left; 
                     position: relative;
                     width: 95%;
                     height: 20px;
                     text-align: center;
                     font-size: 0.7em;
                     background-color: #E8E8E8;
                     margin: 2% 0% 0% 2%;    /* down, left, up, right */
                     border-radius: 4px;
                     border: 1px solid #808080;
                     }
                     
                     
input#login_password {
                     float: left; 
                     position: relative;
                     width: 95%;
                     height: 20px;
                     text-align: center;
                     font-size: 0.7em;
                     background-color: #E8E8E8;
                     margin: 0% 0% 0% 2%;    /* down, left, up, right */
                     border-radius: 4px;
                     border: 1px solid #808080;
                     }
                     

input#login_button {
                   float: left; 
                   position: relative;
                   width: 40%;
                   height: 22px;
                   font-size: 0.7em;
                   color: #707070;
                   margin: 0% 0% 0% 57.5%;    /* down, left, up, right */
                   border-radius: 4px;
                   border: 1px solid #C0C0C0;
                   } 
                         
                         
div#registrationWrapper {
                        float: right; 
                        position: relative;
                        width: 71%;
                        height: 496px;
                        margin: 1.3% 14.5% 1% 0%;    /* down, left, up, right */
                        outline: 1px solid white;
                        }
                          
                          
h2#registrationField {
                     float: left; 
                     position: relative;
                     width: 100%;
                     text-align: center;
                     font-size: 0.8em;
                     font-family: times;
                     color: purple;
                     padding: 2% 0% 2% 0%;
                     margin: 0% 0% 1.8% 0%;    /* down, left, up, right */
                    /*outline: 1px solid rosybrown;*/
                     } 
                     
                     
div#infoBorder {
               float: left; 
               position: relative;
               width: 90%;
               height: 113px;
               margin: 0% 0% 2.1% 5%;    /* down, left, up, right */
               border-top-width: 1px;
               border-right-width: 1px;
               border-bottom-width: 1px;
               border-left-width: 1px;
               border-color: white;
               border-style: solid;
               }
               
               
div#infoBorder_extra {
                     float: left; 
                     position: relative;
                     width: 90%;
                     height: 113px;
                     margin: 0% 0% 2% 5%;    /* down, left, up, right */
                     border-top-width: 1px;
                     border-right-width: 1px;
                     border-bottom-width: 1px;
                     border-left-width: 1px;
                     border-color: white;
                     border-style: solid;
                     }                 
        
        
div#infoBorder_extreme {
                       float: left; 
                       position: relative;
                       width: 90%;
                       height: 250px;
                       margin: 0% 0% 2% 5%;    /* down, left, up, right */
                       border-top-width: 1px;
                       border-right-width: 1px;
                       border-bottom-width: 1px;
                       border-left-width: 1px;
                       border-color: white;
                       border-style: solid;   
                       }
                       
                       
label#personal_account {
                       float: left; 
                       position: relative;
                       width: 90%;
                       line-height: 18px;
                       text-align: center;
                       font-size: 0.8em;
                       color: forestgreen;
                       margin: 2.8% 0% 1.7% 5%;    /* down, left, up, right */
                      /*outline: 1px solid rosybrown;*/
                       } 
                                
                                
input#privateAccount {
                     float: right; 
                     width: 10%;
                     margin: 1.4% 0% 0% 2%;    /* down, left, up, right */
                    /*border: 1px solid green;*/
                     }
                     
                     
label#public_account {
                     float: left; 
                     position: relative;
                     width: 90%;
                     line-height: 18px;
                     text-align: center;
                     font-size: 0.8em;
                     color: forestgreen;
                     margin: 2.8% 0% 1.7% 5%;    /* down, left, up, right */
                    /*outline: 1px solid rosybrown;*/
                     } 
                                
                                
input#publicAccount {
                    float: right; 
                    width: 10%;
                    margin: 1.4% 0% 0% 2%;    /* down, left, up, right */
                   /*border: 1px solid green;*/
                    } 
                    
                    
input.register_names {
                     float: left; 
                     position: relative;
                     width: 90%;
                     height: 20px;
                     font-family: sans-serif;
                     text-align: center;
                     font-size: 0.7em;
                     margin: 1% 0% 0.5% 4%;    /* down, left, up, right */
                     border: 1px solid #E8E8E8;
                     } 
                     
                     
input.register_basics {
                      float: left; 
                      position: relative;
                      width: 90%;
                      height: 20px;
                      font-family: sans-serif;
                      text-align: center;
                      font-size: 0.7em;
                      margin: 1% 0% 0.5% 4%;    /* down, left, up, right */
                      border: 1px solid #E8E8E8;
                      } 
                      
                   
select#register_country {
                        float: left; 
                        position: relative;
                        width: 92%;
                        height: 25px;
						text-align: center;
                        font-size: 0.7em;
                        margin: 0% 0% 0% 4%;    /* down, left, up, right */
						border-radius: 3px;
                        border: 1px solid #E0E0E0;
                        }
                        
                        
select#register_city {
                     float: left; 
                     position: relative;
                     width: 92%;
                     height: 25px;
					 text-align: center;
                     font-size: 0.7em;
                     margin: 0% 0% 0% 4%;    /* down, left, up, right */
					 border-radius: 3px;
                     border: 1px solid #E0E0E0;
                     }


select#current_country {
                       float: left; 
                       position: relative;
                       width: 92%;
                       height: 25px;
					   text-align: center;
                       font-size: 0.7em;
                       margin: 0% 0% 0% 4%;    /* down, left, up, right */
					   border-radius: 3px;
                       border: 1px solid #E0E0E0;
                       }
                        
                        
select#current_city {
                    float: left; 
                    position: relative;
                    width: 92%;
                    height: 25px;
					text-align: center;
                    font-size: 0.7em;
                    margin: 0% 0% 0% 4%;    /* down, left, up, right */
					border-radius: 3px;
                    border: 1px solid #E0E0E0;
                    }					 
                     
                     
hr#horizontal_line {
                   float: left; 
                   position: relative;
                   width: 92%;
                   margin: 0% 0% 5% 4%;    /* down, left, up, right */
                   border: 1px solid white;
                   } 
                   
                   
button#terms_conditions {
                        float: left; 
                        position: relative;
                        width: 92%;
                        height: 22px;
                        font-size: 0.78em;
                        color: #707070;
                        margin: -40% 0% 0% 4%;    /* down, left, up, right */
                        border-radius: 4px;
						border: 1px solid #E0E0E0;
                        } 
						
						
div#featureBrowse_pagesContainer {
							     display: block;
							     float: left; 
								 position: relative;
								 width: 47%;
								 margin: -168% 0% 0% -26%;    /* down, left, up, right */
								 border-radius: 0px;
							    /*border: 1px solid red;*/
								 }

                              
                              
hr#horizontal_line2 {
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 13% 0% 2% 4%;    /* down, left, up, right */
                    border: 1px solid white;
                    }                               
                              

label#termsConditions_agreement {
                                float: left; 
                                position: relative;
                                width: 92%;
                                height: 20px;
                                line-height: 20px;
                                text-align: center;
                                font-size: 0.7em;
                                color: sienna;
                                margin: 0% 0% 2% 4%;    /* down, left, up, right */
                               /*outline: 1px solid rosybrown;*/
                                } 
                                
                                
input#termsConditions {
                      float: left; 
                      margin: 2% 0% 0% 2%;    /* down, left, up, right */
                      border: 1px solid green;
                      } 
                      
                      
hr#horizontal_line3 {
                    visibility: hidden;
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 0% 0% 3% 4%;    /* down, left, up, right */
                    border: 1px solid white;
                    }


p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 58%;
                  text-align: center;
                  font-size: 0.7em;
                  color: crimson;
				  padding: 0.8% 0% 0.8% 0%;
                  margin: 84% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }					
                      
                      
input#submitButton {
                   float: right; 
                   position: relative;
                   width: 30%;
                   height: 20px;
                   font-size: 0.7em;
                   color: #707070;
                   margin: 0% 3.7% 0% 0%;    /* down, left, up, right */
                   border-radius: 3px;
                   border: 1px solid #C0C0C0;
                   } 
                         
                         
div#loadingWrapper {
                   display: none;
                   }                         
                                                                                 
}  

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

p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 58%;
                  text-align: center;
                  font-size: 0.7em;
                  color: crimson;
				  padding: 0.8% 0% 0.8% 0%;
                  margin: 86% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }

}

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

p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 58%;
                  text-align: center;
                  font-size: 0.65em;
                  color: crimson;
				  padding: 1% 0% 0.8% 1%;
                  margin: 88% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }
				  
				  
div#featureBrowse_pagesContainer {
							     display: block;
							     float: left; 
								 position: relative;
								 width: 49%;
								 margin: -178% 0% 0% -26%;    /* down, left, up, right */
								 border-radius: 0px;
							    /*border: 1px solid red;*/
								 }

}

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

p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 58%;
                  text-align: center;
                  font-size: 0.65em;
                  color: crimson;
				  padding: 1% 0% 0.8% 1%;
                  margin: 90% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }

}

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

p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 58%;
                  text-align: center;
                  font-size: 0.65em;
                  color: crimson;
				  padding: 1% 0% 0.8% 1%;
                  margin: 91% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }
				  
				  
div#featureBrowse_pagesContainer {
							     display: block;
							     float: left; 
								 position: relative;
								 width: 50%;
								 margin: -187% 0% 0% -26%;    /* down, left, up, right */
								 border-radius: 0px;
							    /*border: 1px solid red;*/
								 }

}

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

p#count_downClock {
                  float: left; 
                  position: absolute;
                  width: 58%;
                  text-align: center;
                  font-size: 0.65em;
                  color: crimson;
				  padding: 1% 0% 0.8% 1%;
                  margin: 93% 0% 0% 4.2%;    /* down, left, up, right */
                 /*border: 1px solid red;*/
                  }

}

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

p#count_downClock {
                  display: none; 
                  }
				  
				  
div#featureBrowse_pagesContainer {
							     display: block;
							     float: left; 
								 position: relative;
								 width: 53%;
								 margin: -195% 0% 0% -26%;    /* down, left, up, right */
								 border-radius: 0px;
							    /*border: 1px solid red;*/
								 }

}

@media screen and (max-width: 350px) {   
           
div#errorForm_wrapper {
                      float: left; 
                      position: relative;
                      width: 95%;
                      margin: 2% 0% 0% 2%;    /* down, left, up, right */
                     /*outline: 1px solid blue;*/
                      }
                          					                     
                      
p#errormessage {
               float: left; 
               position: relative;
               width: 94%;
               text-align: center;
               font-family: bookman;
               font-size: 0.7em;
               padding: 1% 0% 1% 0%;
               color: salmon;
               margin: 1.8% 0% 1.8% 3%;    /* down, left, up, right */
              /*outline: 1px solid #C8C8C8;*/
               } 
               
               
div#loginForm_wrapper {
                      float: right; 
                      position: relative;
                      width: 95%;
					  height: 55px;
                      margin: 0.7% 3% 1% 0%;    /* down, left, up, right */
                     /*outline: 1px solid green;*/
                      }
                      
                      
input#login_username {
                     float: left; 
                     position: relative;
                     width: 45%;
                     height: 20px;
                     text-align: center;
                     font-size: 0.7em;
                     background-color: #E8E8E8;
                     margin: 0% 0% 3% 2%;    /* down, left, up, right */
                     border-radius: 4px;
                     border: 1px solid #808080;
                     }
					 
					 
hr.horizontal_loginForm {
                        display: none;
						float: right; 
                        position: relative;
                        width: 10%;
                        margin: 0% 4% 0% 0%;    /* down, left, up, right */
                        border: 1px solid sienna;
                        }					 
                     
                     
input#login_password {
                     float: left; 
                     position: relative;
                     width: 45%;
                     height: 20px;
                     text-align: center;
                     font-size: 0.7em;
                     background-color: #E8E8E8;
                     margin: 0% 0% 3% 3%;    /* down, left, up, right */
                     border-radius: 4px;
                     border: 1px solid #808080;
                     }
                     

input#login_button {
                   float: left; 
                   position: relative;
                   width: 30%;
                   height: 18px;
                   font-size: 0.7em;
                   color: #707070;
                   margin: 0% 0% 0% 35%;    /* down, left, up, right */
                   border-radius: 4px;
                   border: 1px solid #C0C0C0;
                   } 
                         
                         
div#registrationWrapper {
                        float: right; 
                        position: relative;
                        width: 96%;
                        height: 496px;
                        margin: 2% 2% 2% 0%;    /* down, left, up, right */
                        outline: 1px solid white;
                        }
                          
                          
h2#registrationField {
                     float: left; 
                     position: relative;
                     width: 100%;
                     text-align: center;
                     font-size: 0.8em;
                     font-family: times;
                     color: purple;
                     padding: 2% 0% 2% 0%;
                     margin: 0% 0% 1.8% 0%;    /* down, left, up, right */
                    /*outline: 1px solid rosybrown;*/
                     } 
                     
                     
div#infoBorder {
               float: left; 
               position: relative;
               width: 90%;
               height: 113px;
               margin: 0% 0% 2.1% 5%;    /* down, left, up, right */
               border-top-width: 1px;
               border-right-width: 1px;
               border-bottom-width: 1px;
               border-left-width: 1px;
               border-color: white;
               border-style: solid;
               }
               
               
div#infoBorder_extra {
                     float: left; 
                     position: relative;
                     width: 90%;
                     height: 113px;
                     margin: 0% 0% 2% 5%;    /* down, left, up, right */
                     border-top-width: 1px;
                     border-right-width: 1px;
                     border-bottom-width: 1px;
                     border-left-width: 1px;
                     border-color: white;
                     border-style: solid;
                     }                 
					   
					   
div#infoBorder_extreme {
                       float: left; 
                       position: relative;
                       width: 90%;
                       height: 225px;
                       margin: 0% 0% 2% 5%;    /* down, left, up, right */
                       border-top-width: 1px;
                       border-right-width: 1px;
                       border-bottom-width: 1px;
                       border-left-width: 1px;
                       border-color: white;
                       border-style: solid;   
                       }					   
                       
                       
label#personal_account {
                       float: left; 
                       position: relative;
                       width: 90%;
                       line-height: 18px;
                       text-align: center;
                       font-size: 0.8em;
                       color: forestgreen;
                       margin: 2.8% 0% 1.7% 5%;    /* down, left, up, right */
                      /*outline: 1px solid rosybrown;*/
                       } 
                                
                                
input#privateAccount {
                     float: right; 
                     width: 10%;
                     margin: 1.4% 0% 0% 2%;    /* down, left, up, right */
                    /*border: 1px solid green;*/
                     }
                     
                     
label#public_account {
                     float: left; 
                     position: relative;
                     width: 90%;
                     line-height: 18px;
                     text-align: center;
                     font-size: 0.8em;
                     color: forestgreen;
                     margin: 2.8% 0% 1.7% 5%;    /* down, left, up, right */
                    /*outline: 1px solid rosybrown;*/
                     } 
                                
                                
input#publicAccount {
                    float: right; 
                    width: 10%;
                    margin: 1.4% 0% 0% 2%;    /* down, left, up, right */
                   /*border: 1px solid green;*/
                    } 
                    
                    
input.register_names {
                     float: left; 
                     position: relative;
                     width: 90%;
                     height: 20px;
                     font-family: sans-serif;
                     text-align: center;
                     font-size: 0.7em;
                     margin: 1% 0% 0.5% 4%;    /* down, left, up, right */
                     border: 1px solid #E8E8E8;
                     } 
                     
                     
input.register_basics {
                      float: left; 
                      position: relative;
                      width: 90%;
                      height: 20px;
                      font-family: sans-serif;
                      text-align: center;
                      font-size: 0.7em;
                      margin: 1% 0% 0.5% 4%;    /* down, left, up, right */
                      border: 1px solid #E8E8E8;
                      } 
                      
                   
select#register_country {
                        float: left; 
                        position: relative;
                        width: 92%;
                        height: 25px;
						text-align: center;
                        font-size: 0.7em;
                        margin: 0% 0% 0% 4%;    /* down, left, up, right */
						border-radius: 3px;
                        border: 1px solid #E0E0E0;
                        }
                        
                        
select#register_city {
                     float: left; 
                     position: relative;
                     width: 92%;
                     height: 25px;
					 text-align: center;
                     font-size: 0.7em;
                     margin: 0% 0% 0% 4%;    /* down, left, up, right */
					 border-radius: 3px;
                     border: 1px solid #E0E0E0;
                     } 
					 
					 
select#current_country {
                       float: left; 
                       position: relative;
                       width: 92%;
                       height: 25px;
					   text-align: center;
                       font-size: 0.7em;
                       margin: 0% 0% 0% 4%;    /* down, left, up, right */
					   border-radius: 3px;
                       border: 1px solid #E0E0E0;
                       }
                        
                        
select#current_city {
                    float: left; 
                    position: relative;
                    width: 92%;
                    height: 25px;
					text-align: center;
                    font-size: 0.7em;
                    margin: 0% 0% 0% 4%;    /* down, left, up, right */
					border-radius: 3px;
                    border: 1px solid #E0E0E0;
                    }
					                  
                     
hr#horizontal_line {
                   display: none;
                   } 
                   
                   
button#terms_conditions {
                        float: left; 
                        position: relative;
                        width: 92%;
                        height: 22px;
                        font-size: 0.78em;
                        color: #707070;
                        margin: -31% 0% 0% 4%;    /* down, left, up, right */
                        border-radius: 4px;
						border: 1px solid #E0E0E0;
                        } 
                              
                              
hr#horizontal_line2 {
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 10% 0% 2% 4%;    /* down, left, up, right */
                    border: 1px solid white;
                    }                               
                              

label#termsConditions_agreement {
                                float: left; 
                                position: relative;
                                width: 92%;
                                height: 20px;
                                line-height: 20px;
                                text-align: center;
                                font-size: 0.7em;
                                color: sienna;
                                margin: 0% 0% 2% 4%;    /* down, left, up, right */
                               /*outline: 1px solid rosybrown;*/
                                } 
                                
                                
input#termsConditions {
                      float: left; 
                      margin: 2% 0% 0% 2%;    /* down, left, up, right */
                      border: 1px solid green;
                      } 
                      
                      
hr#horizontal_line3 {
                    visibility: hidden;
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 0% 0% 3% 4%;    /* down, left, up, right */
                    border: 1px solid white;
                    }                      
                      
                      
input#submitButton {
                   float: right; 
                   position: relative;
                   width: 20%;
                   height: 20px;
                   font-size: 0.7em;
                   color: #707070;
                   margin: 0% 3.7% 0% 0%;    /* down, left, up, right */
                   border-radius: 3px;
                   border: 1px solid #C0C0C0;
                   } 
                         
                         
div#loadingWrapper {
                   display: none;
                   } 


div#featureBrowse_pagesContainer {
							     display: block;
							     float: left; 
								 position: relative;
								 width: 43%;
								 margin: -152% 0% 0% -10%;    /* down, left, up, right */
								 border-radius: 0px;
							    /*border: 1px solid red;*/
								 }				   
                                                                                                                           
}

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

select#register_country {
                        float: left; 
                        position: relative;
                        width: 92%;
                        height: 25px;
						text-align: center;
                        font-size: 0.6em;
                        margin: 0% 0% 0% 4%;    /* down, left, up, right */
						border-radius: 3px;
                        border: 1px solid #E0E0E0;
                        }
                        
                        
select#register_city {
                     float: left; 
                     position: relative;
                     width: 92%;
                     height: 25px;
					 text-align: center;
                     font-size: 0.6em;
                     margin: 0% 0% 0% 4%;    /* down, left, up, right */
					 border-radius: 3px;
                     border: 1px solid #E0E0E0;
                     } 
					 
					 
select#current_country {
                       float: left; 
                       position: relative;
                       width: 92%;
                       height: 25px;
					   text-align: center;
                       font-size: 0.6em;
                       margin: 0% 0% 0% 4%;    /* down, left, up, right */
					   border-radius: 3px;
                       border: 1px solid #E0E0E0;
                       }
                        
                        
select#current_city {
                    float: left; 
                    position: relative;
                    width: 92%;
                    height: 25px;
					text-align: center;
                    font-size: 0.6em;
                    margin: 0% 0% 0% 4%;    /* down, left, up, right */
					border-radius: 3px;
                    border: 1px solid #E0E0E0;
                    }
					 

button#terms_conditions {
                        float: left; 
                        position: relative;
                        width: 92%;
                        height: 22px;
                        font-size: 0.78em;
                        color: #707070;
                        margin: -35% 0% 0% 4%;    /* down, left, up, right */
                        border-radius: 4px;
						border: 1px solid #E0E0E0;
                        }


div#infoBorder_extreme {
                       float: left; 
                       position: relative;
                       width: 90%;
                       height: 235px;
                       margin: 0% 0% 2% 5%;    /* down, left, up, right */
                       border-top-width: 1px;
                       border-right-width: 1px;
                       border-bottom-width: 1px;
                       border-left-width: 1px;
                       border-color: white;
                       border-style: solid;   
                       }


div#featureBrowse_pagesContainer {
							     display: block;
							     float: left; 
								 position: relative;
								 width: 44%;
								 margin: -161% 0% 0% -10%;    /* down, left, up, right */
								 border-radius: 0px;
							    /*border: 1px solid red;*/
								 }						   
                              
                              
hr#horizontal_line2 {
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 14% 0% 2% 4%;    /* down, left, up, right */
                    border: 1px solid white;
                    } 


hr#horizontal_line3 {
                    visibility: hidden;
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 0% 0% 3% 4%;    /* down, left, up, right */
                    border: 1px solid white;
                    } 
				
}

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

button#terms_conditions {
                        float: left; 
                        position: relative;
                        width: 92%;
                        height: 22px;
                        font-size: 0.78em;
                        color: #707070;
                        margin: -40% 0% 0% 4%;    /* down, left, up, right */
                        border-radius: 4px;
						border: 1px solid #E0E0E0;
                        } 
						
						
div#infoBorder_extreme {
                       float: left; 
                       position: relative;
                       width: 90%;
                       height: 242px;
                       margin: 0% 0% 2% 5%;    /* down, left, up, right */
                       border-top-width: 1px;
                       border-right-width: 1px;
                       border-bottom-width: 1px;
                       border-left-width: 1px;
                       border-color: white;
                       border-style: solid;  
                       }


div#featureBrowse_pagesContainer {
							     display: block;
							     float: left; 
								 position: relative;
								 width: 51%;
								 margin: -148% 0% 0% -10%;    /* down, left, up, right */
								 border-radius: 0px;
							    /*border: 1px solid red;*/
								 }						   
                 
                              
hr#horizontal_line2 {
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 20% 0% 2% 4%;    /* down, left, up, right */
                    border: 1px solid white;
                    } 


hr#horizontal_line3 {
                    visibility: hidden;
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 0% 0% 3% 4%;    /* down, left, up, right */
                    border: 1px solid white;
                    }                      
                      
                      
input#submitButton {
                   float: right; 
                   position: relative;
                   width: 25%;
                   height: 20px;
                   font-size: 0.7em;
                   color: #707070;
                   margin: 0% 3.7% 0% 0%;    /* down, left, up, right */
                   border-radius: 3px;
                   border: 1px solid #C0C0C0;
                   }				   
					
}

@media screen and (max-width: 270px) {
	
div#registration_innerBorder {
                             float: left; 
                             position: relative;
                             width: 97.9%;
                             margin: 0% 0% 0% 1%;    /* down, left, up, right */
                             outline: 1px solid white;
                             }


h2#registrationField {
                     float: left; 
                     position: relative;
                     width: 100%;
                     text-align: center;
                     font-size: 0.8em;
                     font-family: times;
                     color: purple;
                     padding: 2% 0% 2% 0%;
                     margin: 0% 0% 1.8% 0%;    /* down, left, up, right */
                    /*outline: 1px solid rosybrown;*/
                     } 							 
							 

label#termsConditions_agreement {
                                float: left; 
                                position: relative;
                                width: 100%;
                                height: 38px;
                                line-height: 20px;
                                text-align: center;
                                font-size: 0.7em;
                                color: sienna;
                                margin: 0% 0% 2% 0%;    /* down, left, up, right */
                               /*outline: 1px solid rosybrown;*/
                                } 
								

button#terms_conditions {
                        float: left; 
                        position: relative;
                        width: 92%;
                        height: 22px;
                        font-size: 0.78em;
                        color: #707070;
                        margin: -52% 0% 0% 4%;    /* down, left, up, right */
                        border-radius: 4px;
						border: 1px solid #E0E0E0;
                        }


div#infoBorder_extreme {
                       float: left; 
                       position: relative;
                       width: 90%;
                       height: 255px;
                       margin: 0% 0% 2% 5%;    /* down, left, up, right */
                       border-top-width: 1px;
                       border-right-width: 1px;
                       border-bottom-width: 1px;
                       border-left-width: 1px;
                       border-color: white;
                       border-style: solid;  
                       }


div#featureBrowse_pagesContainer {
							     display: block;
							     float: left; 
								 position: relative;
								 width: 56%;
								 margin: -170% 0% 0% -10%;    /* down, left, up, right */
								 border-radius: 0px;
							    /*border: 1px solid red;*/
								 }						   
                              
                              
hr#horizontal_line2 {
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 20% 0% 2% 4%;    /* down, left, up, right */
                    border: 1px solid white;
                    } 


hr#horizontal_line3 {
                    visibility: hidden;
                    float: left; 
                    position: relative;
                    width: 92%;
                    margin: 0% 0% 3% 4%;    /* down, left, up, right */
					border: 1px solid white;
                    }                      
                      
                      
input#submitButton {
                   float: right; 
                   position: relative;
                   width: 30%;
                   height: 20px;
                   font-size: 0.7em;
                   color: #707070;
                   margin: 0% 3.7% 0% 0%;    /* down, left, up, right */
                   border-radius: 3px;
                   border: 1px solid #C0C0C0;
                   } 					
					
}

/* SCREEN SIZE ENDS */

