@charset "UTF-8";
/* CSS Document */



#myTopnav { width:100%; text-align:center;}
.topnav {
	font-family: 'Quicksand', sans-serif;	
	font:0.735em "Quicksand";	
    overflow: hidden;
	letter-spacing:0.1em;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	padding: .0em 1em;
	margin: 0px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	word-wrap: break-word;

	
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    display: block;
    text-align: center;
    padding: 7px 16px;
    font-size: 1.235em;
    color: #AC3572;
}

/* Change the color of links on hover */
.topnav a:link {
    background-color: #FFF;
	text-decoration:none;
    color: #AC3572;
	text-decoration:none;

}

.topnav a:hover {
    background-color: #AC3572;
	text-decoration:none;
    color: #FFF;
	text-decoration:none;

}
.topnav a:focus {
    background-color: #EE805B;
	text-decoration:none;
    color: #FFF;
	text-decoration:none;

}
.topnav a:active {
    background-color: #AC3572;
	text-decoration:none;
    color: #FFF;
	text-decoration:none;

}



/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
} 

@media screen and (max-width: 640px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 640px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
} 


