/*initially hide the slicknav java created menus */
.slicknav_menu {
	display:none;
}
/*show the slicknav java menus at a specific scren size and hide the original*/
@media screen and (max-width: 40em) {
	/* #menu is the original menu */
	.js #Main_Menu {
		display:none;
	}
	
	.headerleft {
		display:none;
	}
	
	.js .slicknav_menu {
		display:block;
	}
}

.headerleft {
	float:left;
	padding-top:10px;
	padding-left:2%;
}
.headerright {
	padding-top:10px;
	padding-right:2%;
	float:right;
}

.headercenter {
  width: 600px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}



.tr {
	margin-bottom:0;
    display:table-row;
    background:red;
}

header.tr {
	background:white;
}

footer.tr {
	background:white;
}

footer.tr p {
	padding-top:3%;
	text-align:center; font-size:12px; color:#666;
}


section.tr {
	height:100%; 
	background:white;
 }
 
section {
	background:white; 
   position:relative;
}

article {
	padding:0 2% 2% 2%; /*2%*/
	font-size: 16px;
	background:white;  
}

article#centeredmaintext {
	margin-top:1%;
	margin-left: auto;
    margin-right: auto;
    width: 400px;
	font:#320000;
}

#centeredmaintext {
	width:85%;
	margin-left:.5rem;
	max-width:400px;
}

article#centeredmaintext p {
	font-size: 20px;
	color:#320000;
}

article#centeredmainlogo {
	
	margin-top:1%;
	margin-bottom:2%;
	margin-left: auto;
    margin-right: auto;
    width: 600px;
}

#centeredmainlogo {
	

	margin-left: auto;
    margin-right: auto;
    width: 600px;
}

/* mainmenu navigation menu styling */


nav.mainmenu {
	
	height: 40px;
	
	background:white;
	font-size: 11pt;
	font-family: 'PT Sans', Arial, sans-serif;
	font-weight: bold;
	position: relative;
}
nav.mainmenu ul {
	background:white;
	background:red;
	padding: 0;
	  margin: 0 auto; 
	  margin-left:auto;
	  margin-right:auto;
	 width:400px; /* hard hack  equal to the number of menu items*/
	height: 40px;
}
nav.mainmenu li { 
	display: inline;
	background:white;
}
nav.mainmenu a {
	color: #AEAEAE;
	display: inline-block;
	width: 100px;
	text-align: center;
	text-decoration: none;
	line-height: 40px;
}
nav.mainmenu li a {

	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
nav.mainmenu li:last-child a {
	border-right: 0;
}
nav.mainmenu a:hover {
	color:#320000; 
}

nav.mainmenu a:active {
	color: #CCFFCC; text-decoration: none
}



/* responsive image */

.imgcont {
	position:relative;
	top:0;
	left:0;

}



/* quirky round buttons */

.fixedrndbuttons-container{
	margin-bottom:10px;
	margin-right:10px;
 
  width: 100%;
  text-align: center;
  z-index:4;
  background:red;
}

/* round buttons and bubble contents */
.round-button {
   width: 100%;  
   height: 0;
   padding-bottom: 100%;  /* width and padding-bottom must be the same and set the size of the button */
		
    border-radius: 50%;
    overflow: hidden;
    background:black; /* FF8240 */
	
	box-shadow: 
        inset 0 0 0 10px rgba(255,255,255,0.6),
        0 1px 2px rgba(0,0,0,0.1);
    transition: all 0.4s ease-in-out;
	
}

.active-round {
	background: #689AD3;
}
	
.round-button:hover {
    background: #320000;
}
.round-button img {
    display: block; 
    width: 60%;
    padding: 19%;
    height:auto;  
}