/*! Emerald Reels Main CSS created by Reed O'Beirneas, with influence from as thesitewizard.com*/

 */



	/*--COLOR ANIMATIONS--*/
 	-webkit-transition:background-color 0.30s linear, border-color 0.30s linear, color 0.30s linear, outline-color 0.30s linear; 
 	-moz-transition:background-color 0.30s linear, border-color 0.30s linear, color 0.30s linear, outline-color 0.30s linear; 
 	-o-transition:background-color 0.30s linear, border-color 0.30s linear, color 0.30s linear, outline-color 0.30s linear; 
 	transition:background-color 0.30s linear, border-color 0.30s linear, color 0.30s linear, outline-color 0.30s linear;  
 	/*IE SCROLL STYLE*/
 	-ms-overflow-style: -ms-autohiding-scrollbar;

html {
}

* {
    box-sizing: border-box;
}

body {
    margin-bottom: 5vh;
    font-family: 'Archivo', sans-serif;
    text-shadow: 0.5px 0.5px 0.5px #484a48;
	font-size: 125%;   /* calc(10px + 1.4vh); */
    line-height: 1.6em;
    
    background-color:#000000;
    color: #CCCCCC ;
}

/* . :::::::::::::: LINKS ::::::::::::: */
a:link { color: #00FF99; } 
a:visited { color: #009900;} 
a:hover {color: #19684b; }  
a:active {color: #99FF99;}  


.a-container{
    max-width: 1200px;
    margin: 0 auto; /* centers the column */
    padding: 20px;

/*     border: 1px solid green;        */
   
}


/* ::::::::  ::::: */
img {
	max-width: 100% ;
	width: auto ;
	height: auto ;
    align-content: right;  
}

div#newstext {  /* Text on left */
    position: static;
	float: left ;
	width: 45% ;

    padding-left: 0vw ;
	margin-right: 0px ;
    max-width: 667px;
    text-align: left;
    
 /*    border: 1px solid blue;       */

}




div#newsimg { /* image on right */
	float: right ;
    width: 50%;
    max-width: 534px;
    padding-left: 0em;
    padding-top: 1.1em ;
    align-content: right; 
        
  /*     border: 1px solid orange;  testing */

}


hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #484a48;
  margin: 0.5em 0;
  padding: 0;
}


div#header {
    text-align: center;
}

div#footer {
    text-align: center;
}


/* ::::::::: Undependent Page ::::::::::: */

.unimage {
    float: right;
    margin-left: 15px;
    padding-top: 1.1em;
}

.mylogom{
    padding: 1em;
}


/*
.no-break {
	white-space: nowrap;  /* to keep the text from line-breaking on small screens 
}
*/


/* :::::::: Responsive ::::::: */
@media only screen and (max-width: 800px) {
	div#newstext {
		float: none ;
		width: 100% ;
	}
	div#newsimg {
        position: static;
		float: none ;
		width: 100% ;
        padding-left: 0em;
	}
    .unimage{
        float:none;
        margin-left: auto;  /* in combination w right will center   */
        margin-right: auto;
    }
}

