/* CSS reset */html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}/* HTML5 display-role reset for older browsers */article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

body {
	/*background-color: #323232;*/
	color: white;
}
#mainContainer {
	background-color: #323232;
	height: 600px;
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
}
#videoMenu {
	background-color: black;
	float: left;
	height: 100%;
	width: 25%;
	min-width: 186px;
}
#mobileInstructions {
	display: none;
	padding: 18px 22px;
}
#mobileInstructions #titleImage {
	display: block;
	margin-bottom: 10px;
	width: 130px;
}
#mobileInstructions #instructions {
	font: 12px Arial, sans-serif;
}
#videoContainer {
	float: right;
	height: 100%;
	width: 75%;
	text-align: center;
	position: relative;
}
#videoPoster {
	position: absolute;
	z-index: 1;
}
#videoScreen, #videoPoster {
	width: 90%    !important;
		max-width: 640px;
	margin-top: 30px;
	display: inline-block;
}
#videoScreen .vjs-big-play-button {
	display: none;
}
#legalWrapper-desktop,
#legalWrapper-mobile {
	margin: 10px auto;
	text-align: left;
	color: #b7b7b7;
	font: 9px/13px Arial, sans-serif;
	width: 90%;
	max-width: 640px;
}
#legalWrapper-desktop a,
#legalWrapper-mobile a {
	color: #b7b7b7;
}
#legalWrapper-mobile {
	display: none;
}
#mainContainer #mobileHeader {
	display: none;
	background-color: black;
	border-bottom: 1px #3b3b3b solid;
	height: 50px;
	width: 100%;
	text-align: left;
}
#mobileHeader #schwabLogo {
	width: 50px;
	float: left;
}
#mobileHeader #logoWrapper {
	overflow: hidden;
	text-align: center;
}
#mobileHeader #streetsmartLogo {
	margin-top: 10px;
	width: 185px;
}
#videoMenu .videoCategory {
		overflow: hidden;
	width: 100%;
}
#videoMenu .videoCategory.activeCategory {
	border-bottom: 1px #545454 solid;
}
#videoMenu .categoryButton {
	border-bottom: 1px #545454 solid;
	cursor: pointer;
	width: 100%;
}
#videoMenu .videoCategory.activeCategory .categoryButton {
	background: #323232;
	border-right: 1px #282828 solid;
	border-bottom: none;
	box-sizing:border-box;
		-moz-box-sizing:border-box;
		-webkit-box-sizing:border-box;
}
#videoMenu .gradient-bg {
	background: #323232; /* Old browsers */
	background: -moz-linear-gradient(left,  #323232 0%, #474747 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,#323232), color-stop(100%,#474747)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left,  #323232 0%,#474747 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left,  #323232 0%,#474747 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(left,  #323232 0%,#474747 100%); /* IE10+ */
	background: linear-gradient(to right,  #323232 0%,#474747 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#323232', endColorstr='#474747',GradientType=1 ); /* IE6-9 */
}
#videoMenu .categoryArrow {
	background: url("../images/arrow-right.png") 0 0 no-repeat;
	display: inline-block;
	height: 12px;
	width: 12px;
	margin-left: 15px;
	margin-right: 4px;
	vertical-align: middle;
}
#videoMenu .videoCategory.activeCategory .categoryArrow {
	background-image: url("../images/arrow-down.png");
}
#videoMenu .categoryTitle {
	font: bold 11px/30px Arial, sans-serif;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	vertical-align: middle;
}
#videoMenu .videoLink.activeVideo,
#videoMenu .videoLink.activeVideo:hover,
#videoMenu .videoCategory.activeCategory .categoryTitle {
	color: #009ddc;
}
#videoMenu .videoCategory .categoryList {
	font: 10px/18px Arial, sans-serif;
	padding: 0 0 0 50px;
	max-height: 0px;
    -webkit-transition: max-height 600ms ease-in-out, padding 300ms ease-in-out 200ms;
    -moz-transition: max-height 600ms ease-in-out, padding 300ms ease-in-out 200ms;
    -o-transition: max-height 600ms ease-in-out, padding 300ms ease-in-out 200ms;
    transition: max-height 600ms ease-in-out, padding 300ms ease-in-out 200ms;
}
#videoMenu .videoCategory.activeCategory .categoryList {
	padding: 7px 0 7px 50px;
	max-height: 200px;
}
#videoMenu .videoLink {
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}
#videoMenu .videoLink:hover,
#videoMenu .categoryButton:hover {
	color: #a5a5a5;
}

.video-js {padding-top: 67%}
.vjs-fullscreen {padding-top: 0px}

@media only screen and (max-width : 750px) {
	body {
		background-color: #323232;
	}
	#mainContainer {
		height: auto;
	}
	#videoMenu {
		width: 186px;
	}
	#videoContainer {
		width: 70%;
	}
}

@media only screen and (max-width : 650px) {
	#videoContainer {
		width: 65%;
	}
}

@media only screen and (max-width : 532px) {
	body, #mainContainer {
		background-color: black;
	}
	#mainContainer #mobileHeader {
		display: block;
	}
	#videoContainer {
		background-color: black;
		float: none;
		margin: 0 auto;
		width: 100%;
	}
	#mobileInstructions {
		display: block;
	}
	#videoScreen, #videoPoster {
		margin: 20px auto;
		display: none;
	}
	#videoScreen.iphone {
		position: absolute;
		left: -2000px;
	}
	#videoMenu {
		float: none;
		width: 100%;
		border-top: 1px #545454 solid;
	}
	#legalWrapper-desktop {
		display: none;
	}
	#legalWrapper-mobile {
		display: block;
		margin-top: 50px;
		width: 80%;
	}
	#videoMenu .videoCategory.activeCategory .categoryButton {
		border-bottom: 1px #545454 solid;
	}
	#videoMenu .categoryTitle {
		font-size: 14px;
		line-height: 38px;
	}
	#videoMenu .videoCategory .categoryList {
		font-size: 12px;
		line-height: 22px;
	}
	#videoMenu .videoCategory.activeCategory .categoryList {
		padding: 12px 0 12px 50px;
	}
}