@charset "utf-8";
/*for Rockin' The Silver Screen Page (Media)*/
/*Global Design including mobile layout*/
* {
  box-sizing: border-box; 
}
.notA, .notA:visited, .notA:hover, .notA:focus, .notA:active {
    color: inherit;
		cursor: text;
    text-decoration: none;
}
#lrgImage {
	display:none;
	z-index:100;
}
.container {
	max-width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: column;
	    flex-flow: column;
}
.accordionwrapper {
	box-sizing: border-box;
	padding-bottom: 3px;
	width: 100%;
}
.accordion {
  	background-color: #eee; /* For browsers that do not support gradients */
	background-image: -webkit-linear-gradient(#eee, white);
	background-image: linear-gradient(#eee, white);
  	cursor: pointer;
	font-family: inherit;
	font-size: 24px;
	font-size: 1.5rem;
  	font-weight: bold;
	color: midnightblue;
  	padding: 5px 3px 5px 20px;
  	width: 100%;
	border-radius: 30px 30px 0 0;
  	text-align: left;
  	outline: none;
  	-webkit-transition: 1s;
  	transition: 1s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.accordion .titles {
	line-height: 32px;
	line-height: 2rem;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.active, .accordion:hover {
	background-color: gold; /* For browsers that do not support gradients */
	background-image: -webkit-linear-gradient(gold, white);
	background-image: linear-gradient(gold, white);
}
.panel {
	padding: 0 2px 5px;
	display: none;
	background-color: white;
	overflow: hidden;
}
.block1 {
	border-bottom: thin solid #D3770A;
	color: #714821;
}
.row block {
	background-color: palegoldenrod;
	font-weight: bold;
	padding-left: .3em;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.row block-data {
	background-color: palegoldenrod;
	border-left: thin dashed #D3770A;
	padding-left: 5px;
	-webkit-box-flex: 4;
	    -ms-flex: 4;
	        flex: 4;
}
.row {
	border-bottom: thin solid #C0C0C0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.row rtitle {
	background-color: #E7E7E7;
	font-weight: bold;
	padding-left: .3em;
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.row rdata {
	padding-left: 5px;
	-webkit-box-flex: 4;
	    -ms-flex: 4;
	        flex: 4;
}
.accordion:after {
  font-size: 13px;
  color: midnightblue;
  float: right;
  margin-left: 5px;
}
.active:after {
  
}
.cameraImgs {
	display: inline-block;
	float: right;
	margin: 0px 0px -7px 0px;
	padding: 4px 0px 0px;
	position: relative; /* position parameter required for z-index to work */
	text-align: right;
	z-index: 99;
}
ul {
	list-style: none;
}
hr {
	overflow: visible; /* For IE */
  height: 30px;
  margin-top: 20px;
  margin-bottom: -10px;
	width: 80%;
  border-style: solid;
  border-color: #714821;
  border-width: 1px 0 0 0;
  border-radius: 20px;
}
hr:before { /* Not really supposed to work, but does */
    display: block;
    content: "";
    height: 30px;
    margin-top: -31px;
    border-style: solid;
    border-color: #714821;
    border-width: 0 0 1px 0;
    border-radius: 20px;
}
/******End Accordion ********/
.details-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
input {
	margin-bottom: 15px;
	margin-right: 15px;
	padding: 0.2rem 1rem;
	color: #714821;
	border-radius: 7px;
	outline: none;
	flex-basis: 100%;
	   -moz-transition: all 0.3s ease-in-out;
		 -o-transition: all 0.3s ease-in-out;
 	-webkit-transition: all 0.3s ease-in-out;
 			transition: all 0.3s ease-in-out;
}
input:focus {
	color: #9F6D32;
	outline: none;
	border-radius: 5px;
	flex-basis: 100%;
	-moz-box-shadow: 0 0 5px #9F6D32;
	-webkit-box-shadow: 0 0 5px #9F6D32;
	box-shadow: 3px 2px 20px #9F6D32;
}
.entrywrapper {
	margin: 0 auto;
    width: 50%;
	padding: 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
#MediaDBAdd {
	width: 320px;
}
.form-inline input {
	vertical-align: middle;
	margin: 5px 10px 5px 0;
	padding: 10px 5px;
	background-color: #fff;
	border: 1px solid #ddd;
}
.form-inline button {
	-webkit-appearance: none;
	background: #fff;
	border: 2px solid #9F6D32;
	border-radius: 25px;
	outline: none;
	padding: 0.2em 0;
	margin-bottom: 15px;
	width: 7rem;
	color: #9F6D32;
	font-size: .8em;
	font-family: "Quicksand", sans-serif;
	cursor: pointer;
}
.form-inline button:active,
.form-inline button:hover {
  	background: #9F6D32;
	color: white;
	-webkit-transition: .9s;
			transition: .9s;
}
/************************
The radiobutton container 
************************/
.radiocontainer {
	display: block;
	position: relative;
	padding-left: 25px;
	margin-bottom: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	   -moz-user-select: none;
		-ms-user-select: none;
			user-select: none;
}

/* Hide the browser's default radio button */
.radiocontainer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Create a custom radio button */
.radiomark {
	position: absolute;
	top: 4px;
	left: 0;
	height: 20px;
	width: 20px;
	background-color: #eee;
	border: thin solid #6E6D96;
	border-radius: 50%;
}

/* On mouse-over, add a background color */
.radiocontainer:hover input ~ .radiomark {
	background-color: #6E6D96;
	-webkit-transition: .9s;
			transition: .9s;
}

/* When the radio button is checked, add a background */
.radiocontainer input:checked ~ .radiomark {
 	background-color: #9F6D32;
	border: #9F6D32;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiomark:after {
	content: "";
	position: absolute;
	display: none;
	-webkit-animation: dot 1s linear;
	        animation: dot 1s linear;
}
@-webkit-keyframes dot {
	from {
		-webkit-transform: scale(0);
		        transform: scale(0);
	}
	to {
		-webkit-transform: scale(3);
		        transform: scale(3);
	}
}
@keyframes dot {
	from {
		-webkit-transform: scale(0);
		        transform: scale(0);
	}
	to {
		-webkit-transform: scale(3);
		        transform: scale(3);
	}
}
/* Show the indicator (dot/circle) when checked */
.radiocontainer input:checked ~ .radiomark:after {
  	display: block;
}

/* Style the indicator (dot/circle) */
.radiocontainer .radiomark:after {
 	top: 6px;
	left: 6px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}
/************
Media Queries
************/
@media only screen and (max-width : 555px) {
	.pagetitle {
		font-size: 2.5rem; 
	}
	.entrywrapper {
		width: 100%;
	}
	#MediaDBAdd {
		width: 180px;
	}
	.form-inline button {
		margin-bottom: 15px;
		width: 5rem;
	}
	.details-area {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	rtitle {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		width: 90px;
	}
	.row rdata {
		-webkit-box-flex: 2;
			-ms-flex: 2;
				flex: 2;
	}
}
@media only screen and (min-width : 555.1px) and (max-width : 1100px) {
	.entrywrapper {
		margin: 0px;
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}
