@charset "UTF-8";
/* Top-level Styling */
* {
	margin:0;
	padding:0; 
	-webkit-margin-before: 0; 
	-webkit-margin-after: 0;
	-webkit-padding-start: 0;
	}

body{
	font-family: 'Work Sans', sans-serif;
	background-color:#e6e6e6;
	margin: 0 auto;
		}
		.container{
			width: 97%;
			height: 220px;
			margin-left:20px;
			margin-right:20px;
		}

		ul.tabs{
			margin: 0px;
			padding: 0px;
			list-style: none;
			font-style: bold;
		}
		ul.tabs li{
			background: none;
			color: #222;
			display: inline-block;
			padding: 10px 15px;
			cursor: pointer;
		}

		ul.tabs li.current{
			background: #ededed;
			color: #222;
		}

		.tab-content{
			display: none;
			background: #ededed;
			padding: 15px;
		}

		.tab-content.current{
			display: inherit;
}

.left {
    float: left;
    width: 40%;
}

.right {
    margin-left: 40%;
}

fieldset { 
    display: block;
	margin: 15px 2px 0 2px;
    padding-bottom: 0.225em;
    padding-left: 0.75em;
    padding-right: 0.75em;
    border: 2px groove (internal value);
	font-weight: 300;
}

#wrapper {
	max-width: 1280px;
	height: 90%;
	background: #fff;
	margin: 25px auto 0;
	padding: 20px;
}

/* Div Layout Styling */

#viewerBox {
	position: relative;
	margin: 0 auto;
	padding:10px 0;
	height: auto;
	width: 100%;
	min-width: 500px;
}

.viewerForm {
	display: block;
	margin: 20px 0 0 0;
	width: 100%;
}

/* Text Styling for h2, p, a */
hx {
	font-size: 1.5em;
	font-weight: 500;
	letter-spacing: -.02em;
	color: #333333;
	font-style:normal;
}

.thin {
	font-weight:200;
}

.center-align {
	text-align: center;
}

.right-align {
	text-align: right;
}

h2 {
	font-weight: 400;
	font-size: 1.3em;
	letter-spacing: -.05em;
	color: #333333;
	font-style:normal;
}

hp {
	display: block;
	width: 100%;
	margin: 20px 0 0 0;
	line-height: 1.3em;
	color: #333333;
	font-style: normal;
	font-weight: 300;
}

hcpy {
	display: block;
	margin: 10px 0 15px 0;
	font-family: 'News Cycle', sans-serif;
	line-height: 1em;
	font-size: 0.9em;
	font-weight: 400;
}

ol {
	margin-left: 10px;
	padding: 10px;
}

ol li {
    padding: 2px;
    margin-left: 15px;
	font-weight: 300;
	font-size: 1em;
	letter-spacing: -.03em;
}

.switch-title {
  margin-bottom: 6px;
}

.switch-field {
  padding: 10px;
  overflow: hidden;
}

.switch-field input {
  display: none;
}

.switch-field label {
  float: left;
}

.switch-field label {
  display: inline-block;
  width: 60px;
  background-color: #e4e4e4;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-family: 'News Cycle', sans-serif;
  font-weight: bold;
  text-align: center;
  text-shadow: none;
  padding: 10px 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition:    all 0.1s ease-in-out;
  -ms-transition:     all 0.1s ease-in-out;
  -o-transition:      all 0.1s ease-in-out;
  transition:         all 0.1s ease-in-out;
}

.switch-field label:hover {
    cursor: pointer;
}

.switch-field input:checked + label {
  background-color: #FE7B1A;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.switch-field label:first-of-type {
  border-radius: 4px 0 0 4px;
}

.switch-field label:last-of-type {
  border-radius: 0 4px 4px 0;
}


#cf {
  position:relative;
  height:500px;
  width:500px;
  margin:0 0;
}

#cf img {
  position:absolute;
  left:0;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

#cf img.top:hover {
  opacity:0;
}