/* Table of Content
==================================================
	#Site Styles
	#Page Styles
	#Media Queries
	#Font-Face */

/* #Site Styles
================================================== */

* {
    padding:0;
    margin:0;

	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */  
}

body 
{
    background:#fff;
    margin-top:50px;
	font-size:14px;   
    line-height:21px;  
    color:#555; 
}

img 
{   
    max-width:100%; 
    height:auto;
}

img.min100Percent {
    min-width:100%;
}

#logo
{
    text-align: center;
}

#text
{
    margin-top: 50px;
    text-align:justify;
}

h1,h2,h3,h4 
{
    padding:12px 12px 0 12px;
}

h1 {
    font-size:28px;
    color: #262a26;    
}

h2 {
    font-size:14px;
    color: #262a26;   
    line-height:6px;   
}

h2.footer 
{
    text-transform:uppercase;    
    font-size:12px;
    font-family:Arial;
    font-weight:bold;
    padding:0; margin:0;
}

hr.footer 
{
    min-width:100%;
    height:3px;
    color:#999;
}

.center {
    text-align:center;
}

img.Over {
           filter:alpha(opacity=100); 
           -moz-opacity: 1; 
           opacity: 1; 
           -khtml-opacity: 1; 
           cursor:pointer; 
         }  
		       
img.Over:hover { 
           filter:alpha(opacity=70); 
           -moz-opacity: 0.7; 
           opacity: 0.7; 
           -khtml-opacity: 0.7; 
           cursor:pointer; 
         }
         
a, a:visited  {
        color:#38aae1;
}

a:hover {
      color:inherit; 
  
}

.removePadding  
{
    padding:0px;
}

.center {
    text-align:center;
}

nav.primary
{
    padding:12px 0 6px 0;
    height:auto;
    text-align:center;
}

nav.primary ul,
nav.primary ul li {
    margin:0px;
}

nav.primary ul li {
    display: inline;
    position:relative;
    padding:0 24px 0 18px;
    text-transform:uppercase;
    font-weight:bold;
}

nav.primary ul li a {
    color:#0f100f;
    font-size:12px;
    text-decoration:none;
   -moz-transition: color 0.5s ease-in-out;
   -webkit-transition: color 0.5s ease-in-out;
   -o-transition: color 0.5s ease-in-out;
   transition: color 0.5s ease-in-out;    
}

nav.primary ul li a:hover {
    color:#00cd04;
}

nav select {
  display: none;
}


/* #Fancy Stuff 
================================================= */

.rotate {
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    -o-transition-duration: 0.8s;
    transition-duration: 0.8s;
     
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
     
    overflow:hidden;
    }  
 
.rotate:hover  {
    -webkit-transform:rotate(360deg);
    -moz-transform:rotate(360deg);
    -o-transform:rotate(360deg);
}  

.Fade 
{
   -moz-transition: color 0.5s ease-in-out;
   -webkit-transition: color 0.5s ease-in-out;
   -o-transition: color 0.5s ease-in-out;
   transition: color 0.5s ease-in-out;    
}


/* #Page Styles
================================================== */



/* #Media Queries
================================================== */

	/* Smaller than standard 960 (devices and browsers) */
	@media only screen and (max-width: 959px) {}

	/* Tablet Portrait size to standard 960 (devices and browsers) */
	@media only screen and (min-width: 768px) and (max-width: 959px) {}

	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {

        nav ul     { display: none; }
        nav select { display: inline-block; width:100%; height:30px; }	

        body 
        {
	        font-size:18px;   
            line-height:28px;  
        }

        #text
        {
            margin-top: 20px;
            text-align:justify;
        }

	}

	/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
	@media only screen and (min-width: 480px) and (max-width: 767px) {}

	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
	@media only screen and (max-width: 479px) {}



/* #Font-Face
================================================== */
/* 	This is the proper syntax for an @font-face file
		Just create a "fonts" folder at the root,
		copy your FontName into code below and remove
		comment brackets */

/*	@font-face {
	    font-family: 'FontName';
	    src: url('../fonts/FontName.eot');
	    src: url('../fonts/FontName.eot?iefix') format('eot'),
	         url('../fonts/FontName.woff') format('woff'),
	         url('../fonts/FontName.ttf') format('truetype'),
	         url('../fonts/FontName.svg#webfontZam02nTh') format('svg');
	    font-weight: normal;
	    font-style: normal; }
*/