.navbar_main {
  overflow: hidden;
  background-color: #534BA7;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  z-index: 30;	
}

/* For padding: vertical, horizontal */

.navbar_main a {
  display: inline-block;
  color: #f2f2f2;
  text-align: center;
  padding: 5px 15px;
  text-decoration: none;
  font-size: medium;
  font-weight: bold;
  font-family: 'PT Sans Narrow', sans-serif;
}

.navbar_main a:hover {
  color: #FFAEAE;
}

/* Puts the title to the far left */
.navbar_main span.left {
	float: left;
	width: 10%;
	text-align: left;
}

/* Puts the Contact to the far right */
.navbar_main span.right {
	float: right;
	width: 10%;
	text-align: right;
}

/* Used to center the entire body of the document */
html {
	text-align: center;
}

body {
	margin: 0px auto;
	text-align: center;
	border-style: none;
	float: none;
}

a {
	color: blue;	
	text-decoration: none;
}

h3 {
	color: blueviolet;
	text-decoration: underline;
}

h4 {
	margin-top: -1em;	
}

p {
	overflow: hidden;
}

.main {
  padding: 5px;
/*  margin-top: 10px; */
  width: 960px;
  float: none;  
  text-align: left;
  border-style: none;
  display: inline-block;
  font-family: 'PT Sans', sans-serif;
  border-style: none;
}

.ar_main {
  width: 960px;
  float: none;  
  text-align: left;
  border-style: none;
  display: inline-block;
  font-family: 'PT Sans', sans-serif;
  border-style: none;
}

.examples_main {
  width: 960px;
  float: none;  
  text-align: left;
  border-style: none;
  display: inline-block;
  font-family: 'PT Sans', sans-serif;
  border-style: none;
}

.examples_main h4 {
  margin-top: 3em;
}

.examples_main span {
  font-size:x-small; 
  text-align:center; 
  width: 310px; 
  height: 220px;
  display:inline-block; 
  margin: auto;
  vertical-align: middle;
}


.front_logo_bg {
	width:100%; 
	max-width:1920px; 
	height:550px; 
	text-align:center;
	border-style:none; 
	margin-top:25px;
	z-index: 100;
}

.header_logo {
	width:100%; 
	max-width:1920px; 
	height:100px; 
	text-align:center;
	border-style:none; 
	margin-top:25px;
	z-index: 100;
}

blockquote {
	width: 275px;
	font style: italic;
	font-family: 'Belleza', sans-serif;
	margin: 5px 10px 5px 10px;
	padding: 10px;
	border-top: 1px solid #444444;
	border-bottom: 1px solid #444444;
}

.selections {
	width: 200px; 
	position: fixed;
	float: left;
	font-family: 'PT Sans', sans-serif;
	font-weight: bold;
	font-size: small;
	text-align: left;
	margin: 10px;
	border-style: none;
}

.main_body {
	position: relative;
	float: none;
	font-family: 'PT Sans', sans-serif;
	font-weight: normal;
	font-size: medium;
	text-align: left;
	border-style: none;
	z-index: 0;
}

.footer {
  margin-top: 50px;  
  position: relative;
  text-align: left;
  border-style: none;
  display: block;
  font-family: 'PT Sans', sans-serif;
  font-size: x-small;
  color: #229D36;
}

/* This section is used for modal images */

/* Style the Image Used to Trigger the Modal */
#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 25px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
    margin: auto;
    display: block;
    width: 75%;
    max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption { 
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}

/* End modal images section */
