@charset "utf-8";
/* CSS Document */

<!--PREVENTS PHONE FROM RESIZING IN LANDSCAPE MODE-->
html {-webkit-text-size-adjust: none; 
	}
<!--MAINTAINS BOX SIZE (WITH PADDING AND MARGIN INCLUDED)-->
* {-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;}

@media only screen and (max-width:600px) {
	
	
/*--------BODY--------*/

body {background-color: #FFF;
	font-family: 'Libre Baskerville', serif;
	font size: 16px; 
}
	
body h1{
	font-size:1.6em;
}
body h2{
	font-size:1.4em;	
}
body h3{
	font-size:1.2em;
}
body h4{
	font-size:1em;
}
body h5{
	font-size:.8em;
}

/*------LINKS------*/


/*unvisited link*/
a:link {
	color:#DAA520;
	text-decoration:none;
}


/* mouse over link */
a:hover {
	color:#333;
	text-decoration:underline;
}

/*visited link*/
a:visited {
	color:#daa520;
	text-decoration:none;
}

/* selected link */
a:active {
	color:#333;
    text-decoration:underline;
}



/* -----MAIN CONTAINERS-----  */
#container {
	min-width:1025px;


}

.content_container{
	width:100%;
	height:auto;
	float:right;	
	overflow:hidden;
	font-family:"Baskerville Old Face";
}

header {
	width:100%;
	height:auto;
	padding:5px;
	background-color:#fff;
	clear:both;
}


#social_sidebar{
	width:100%;
	height:auto;
	min-height:40px;
	padding-top:.5em;
	background-color:#9cbcbc;
	float:right;
	text-align:center;
}
#social_sidebar img{
	max-width:40px;
	width:100%;
	height:auto;
	
}

.sidebar{
	width:70%;
	height:auto;
	background-color:#9cbcbc;
	text-align:center;
	padding:15%;;
	color:#fff;
	clear:both;
	
	
}

.main_content{
	width:100%;
	float:left;
	background-color:#fff;
	color:#daa520;
	clear:both;
	background-color:#fff;
	
}

.footer{
	width:100%;
	height:auto;
	float:left;
	text-align:center;
	padding:.5em;
	font-size:14px;
	background-color:#ccc;
}



/*--------IMG BOXES--------*/
#logo_box{
	width:100%;
	float:left;
	text-align:center;
}
#logo_box img{
	max-width:80px;
	width:100%;
	height:auto;
	
	
}

#img_box1{
	text-align:center;
	width:100%;
}
#img_box1 img{
	max-width:100%;
	height:auto;



	
}
#img_box2{
	width:100%;
	height:auto;
	margin-top:.5em;
	margin-bottom:.5em;
}

/*--------TEXTBOXES--------*/
#title{
	width:100%;
	padding:1em;
	background-color:#9cbcbc;
	float:left;

}

#textbox1{
	width:100%;
	height:auto;
	background-color:#fff;
	text-align:center;
	padding-top:2em;
	background-color:#fff;
	clear:both;
}

#textbox2{
	width:80%;
	height:auto;
	background-color:#9cbcbc;
	padding:10%;
	font-size:16px;
}

#textbox3{
	width:70%;
	padding:15%
}
#textbox4{
	width:70%;
	height:auto;
	float:left;
	margin:15%;
	text-align:center;


}
#textbox5{
	width:70%;
	height:auto;
	float:left;
	margin:15%;
	text-align:center;
	font-size:18px;


}

/*--------BUTTONS--------*/


#button {
	border:none;
	width:50%;
	height:auto;
	margin-left:25%;
	margin-right:25%;
	margin-top:1em;
	margin-bottom:1em;
	padding-bottom: .5em;
	padding-top:.5em;
	text-align:center;
	background-color:#FC0;
	border-radius: 20px;
	-moz-border-radius:20px;
	-webkit-border-radius:20px;
	color:#000;
	font-size:16px;
	font-weight:bold;
	text-decoration:none;
}

#button_container {
	width:100%;
	height: auto;
	color:#333;
}

/*unvisited link*/
#button a:link {
	color:#333;
	text-decoration:none;
}


/* mouse over link */
#button a:hover {
	color:#FFF;
}

/*visited link*/
#button a:visited {
	color:#333;
	text-decoration:none;
}

/* selected link */
#button a:active {
    text-decoration:line-through;
}

#button_container {
	width:100%;
	height: auto;
	
}


  
/*--------NAVIGATION--------*/
.menu_bar {
    width: 35px;
    height: 5px;
    background-color: black;
    margin: 6px 0;
}

.mobile_menu {
    display: inline-block;
    cursor: pointer;
}

.bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
}

/* Rotate first bar */
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px) ;
    transform: rotate(-45deg) translate(-9px, 6px) ;
}

/* Fade out the second bar */
.change .bar2 {
    opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px) ;
    transform: rotate(45deg) translate(-8px, -8px) ;
}



#nav_container {
	float:left;
	text-align:center;
	width:100%;

	border-top:solid #ccc 3px;
	border-bottom:solid #ccc 3px;
	

}
nav ul     { display: none; }
  nav select { display: inline-block; }

	
nav {
	background-color: #fff;
	}
nav ul li { 

	height:36px;
	border: solid #daa520 2px;
	background-color: #fff;
	padding-top:.8em;
	margin:.5em;
	text-align:center;
			}
nav ul li a {

	font-size: 1em;
	text-align: center;
	padding: .5em;
	background-color:#fff;
	color: #daa520;
	text-decoration:none;
	
	
	}
nav ul li a:hover {
	color: #000
	}
	

/*--------BLOG--------*/

.blog_sidebar{
	display:none;

}

.blog_main_content{
	width:100%;
	height:auto;
	float:left;
	background-color:#FFF;
	color:#000;

	padding-left:3%;
	padding-right:3%;
	padding-bottom:2%;
	padding-top:0;
	
	
}

.blog_main_content img{
	width:80%;
	height:auto;
	padding-left:1%;
	padding-right:1%;

}
#blogtitle{
	width:100%;
	text-align:center;
	margin-bottom:1%;
	margin-top:1%;
	padding-top:1%;
	padding-bottom:1%;
	background-color:#666;
	color:#fff;
}
	
.blogtext{

	font-size:18px;
	padding-right:1%;
	padding-left:4%;
	padding-top:5%;
	margin-right:3%;
	
}

/*--------MAILCHIMP SUBSCRIBE--------*/
#mailchimp {
	background-color:#ccc;
	width:100%;
	height:auto;
	clear:both;	
}


/*------MOBILE DROPDOWN MENU ------*/


#nav ul 
{
	margin: 0;
	padding: 0;
	width: 100%;
	display: block;
	list-style: none;
	line-height: 1;
}

#nav li { display: inline; }

#nav a
{
	display: block;
	padding: .5em;
	color: #fff;
	background: #9cbcbc;
	border-bottom: 1px solid #fff;
	text-decoration: none;
}

#nav-toggle
{
	display: block;
	padding: .5em .5em .5em 40px;
	color: #fff;
	background-color: #9cbcbc;
	background-image: url(responsive-nav-img.png);
	background-repeat: no-repeat;
	background-position: 10px 50%;
	border-bottom: 1px solid #fff;
	text-decoration: none;
}

#nav a:focus,#nav-toggle:focus { background-color: black; }
#nav a:hover,#nav-toggle:hover { background-color: black; }
#nav a:active,#nav-toggle:active { background-color:#9cbcbc; }

/* -----------------------------------
Predefined
----------------------------------- */

.js #nav
{
	clip: rect(0 0 0 0);
	max-height: 0;
	position: absolute;
	display: block;
	overflow: hidden;
	zoom: 1;
}

#nav.opened { max-height: 9999px; }

/* -----------------------------------
Navigation wide screen
----------------------------------- */

@media (min-width: 38em)
{
	.js #nav { position: relative; }
	.js #nav.closed { max-height: none; }
	#nav-toggle { display: none; }
	
	#nav
	{
		overflow: hidden;
		zoom: 1;
		background-color: #9cbcbc;
	}
	
	#nav a
	{
		float: left;
		padding: .5em 1em;
		border-bottom: 0;
		border-right: 1px solid #fff;
	}

}