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

/* Style Map */

.embed-container {
	position: relative;
	padding-bottom: 80%; 
	height: 0; 
	max-width: 100%;
} 
.embed-container iframe, .embed-container object, .embed-container iframe{
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%;
} 
small{
	position: absolute; 
	z-index: 40; 
	bottom: 0; 
	margin-bottom: -15px;
}
/* End Style Map */
/* Accordion Menu Style */

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: 1px solid black;
    outline: none;
	font-size: inherit;
    transition: 0.4s;
	margin-top: 5px;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
    background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0px;
    background-color: transparent;
	max-height:0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	box-sizing:border-box;
}

/*Add (+/-) icons */
.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}
/*Style Other Bullets*/
.subBullets{
  list-style-type: circle;
  list-style-position: outside;
  padding-left: 5px;
  padding-bottom: 5px;
  padding-top: 5px;
  margin-left: 20px;
  text-align: left;
}
.list-numbers{
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 5px;
  padding-bottom: 5px;
  padding-top: 5px;
  margin-left: 20px;
  text-align: left;
}
/* Style Buttons */
.btn-group{
	width:100%;
	padding:0;
	margin: auto;
}
.btn-group .btn{
	background-color: white;
	padding:15px 30px;
	border: 1px solid black;
	text-align:center;
	text-decoration:none;
	display: inline-block;
	font-size: .75em;
	width: 33%;
	cursor:pointer;
	float:left;
}
.btn-group .btn:hover{
	background-color:#e7e7e7;
}
.disabled{
	opacity: .6;
	cursor: not-allowed;
}
