@charset "utf-8";
/* CSS Document */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}

/*Animation*/
@-webkit-keyframes spinnerRotate
{
    from{-webkit-transform:rotate(0deg);}
    to{-webkit-transform:rotate(360deg);}
}
@-moz-keyframes spinnerRotate
{
    from{-moz-transform:rotate(0deg);}
    to{-moz-transform:rotate(360deg);}
}
@-ms-keyframes spinnerRotate
{
    from{-ms-transform:rotate(0deg);}
    to{-ms-transform:rotate(360deg);}
}
/* magnifier (http://thecodeplayer.com/walkthrough/magnifying-glass-for-images-using-jquery-and-css3)*/
/*Lets create the magnifying glass*/
.large {
	width: 175px; height: 175px;
	position: absolute;
	border-radius: 100%;
	
	/*Multiple box shadows to achieve the glass effect*/
	box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.85), 
	0 0 7px 7px rgba(0, 0, 0, 0.25), 
	inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
	
	/*Lets load up the large image first*/
	background: url('http://thecodeplayer.com/uploads/media/iphone.jpg') no-repeat;
	
	/*hide the glass by default*/
	display: none;
}

/*To solve overlap bug at the edges during magnification*/
.small { display: block; }


/*Pop-up div*/

.pop-up_background{
  display:none;
  position:fixed;
  top:0%;
  left:0%;
  width:100%;
  height:100%;
  background-color:black;
  z-index:1001;
  -moz-opacity:0.8;
  opacity:.80;
  filter:alpha(opacity=80);
}
.pop-up_content{
  display:none;
  position:fixed;
  top:7%;
  left:7%;
  width:86%;
  height:86%;
  z-index:1002;
}

.pop-up_image{
	height:100%;
	max-width:86vw;
	margin:auto;
	display:block;
}

/*MAIN CSS*/
/*Rabin Joseph Gosal*/

html{
	background-color:#291D82;
	color:#fff;
	font-family:Helvetica, Arial, sans-serif;
}

a {
	text-decoration:none;
	color:inherit;
}

#header{
	width:950px;
	height:248px;
	margin:auto;
	padding-top:20px;
	padding-bottom:20px;
	background-color:#291D82;
	position:absolute;
	z-index:500;
	top:0;
}

.header_cassette{
	position:absolute;
	z-index:100;
}

.header_cassette img{
	width:950px;

}

.header_spokes1{
	position:absolute;
	margin-left:389px;
	margin-top:98px;
}

.header_spokes1 img{
	width:95px;
	margin-top:2px;
	margin-right:2px;
}

.header_spokes1{
    -webkit-animation-name: spinnerRotate;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spinnerRotate;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spinnerRotate;
    -ms-animation-duration: 5s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
}

.header_spokes2{
	position:absolute;
	margin-left:770px;
	margin-top:98px;
}

.header_spokes2 img{
	width:95px;
	margin-top:2px;
	margin-right:2px;
}

.header_spokes2{
    -webkit-animation-name: spinnerRotate;
    -webkit-animation-duration: 6s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spinnerRotate;
    -moz-animation-duration: 6s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spinnerRotate;
    -ms-animation-duration: 6s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
}


.menu-sticky{
	font-weight:600;
	font-size:14px;
	height:100px;
	width:950px;
	background-color:#291D82;
	position:absolute;
	top:0px;
	z-index:100;
}

.menu-sticky a{
	width:182px;
	display:inline-block;
	float:left;
	color:#241a75;
	background-color:#5144b1;
	text-align:center;
	margin-right:10px;
	margin-top:30px;
	padding-top:10px;
	padding-bottom:10px;
}

.menu-sticky a:hover{
	color:#5144b1;
	background-color:#241a75;
}

.menu{
	font-weight:600;
	font-size:14px;
	height:100px;
	width:950px;
	position:absolute;
	top:298px;
	z-index:50;
}

.menu a{
	width:182px;
	display:inline-block;
	float:left;
	color:#241a75;
	background-color:#5144b1;
	text-align:center;
	margin-right:10px;
	margin-top:30px;
	padding-top:10px;
	padding-bottom:10px;
}

.menu a:hover{
	color:#5144b1;
	background-color:#241a75;
}

.sticky-menu-blocker{
	height:100px;
	width:100%;
	background-color:#291D82;
	z-index:25;
	position:fixed;
	top:0;
}

.anchor{
	display: block;
    position: relative;
    top: -110px;
    visibility: hidden;
}

.container{
	width:950px;
	margin:auto;
}

#content{
	width:100%;
	height:2000px;
	margin-top:450px;
	position:relative;
	z-index:20;
}

.introduction{
	width:100%;
	height:650px;
	position:relative;
	margin-bottom:50px;
	
}

.main_image{
	height:550px;
	position:absolute;
	bottom:0;
	right:0;
}

.logo{
	height:30px;
}

.model{
	font-size:150px;
	font-weight:600;
}

.gen_button{
	background-color:#291D82;
	border:none;
	outline:solid;
	outline-width:2px;
	outline-color:#5144b1;
	outline-offset:-2px;
    color:white;
    padding:10px 15px;
    text-align:center;
    text-decoration:none;
    display:inline-block;
    font-size:16px;
    margin:4px 2px;
    cursor:pointer;
}

.stats, .features{
	position:absolute;
	top:310px;
	left:70px;
	border-collapse:collapse;
	font-size:12px;
}

.stats, td{
	border: 1px solid #5144b1;
	border-left:none;
}

.stats td, .features td{
	padding:3px 8px 3px 8px;
	line-height:24px;	
}

.table_head{
	color:#241a75;
	background-color:#5144b1;
	font-weight:600;
	border-bottom: 1px solid #291D82;
	border-right:none;
	text-align:right;
}

td img{
	height:10px;
	margin:0 0 -0.5px 2px;
}

.features{
	left:325px;
}

h1{
	color:#5144b1;
	font-size:24px;
	font-weight:800;
}

.content_background{
	height:3000px;
	width:100%;
	background-color:#241a75;
	position:absolute;
	top:1100px; /* height content - height intro (650px) + margin footer (50px)*/
	z-index:10;
}

.about{
	width:100%;
	height:470px;
	text-align:justify;
}

.about h2{
	font-size:18px;
	font-weight:600;
	margin-top:30px;
}

.about p{
	width:580px;
	margin-top:30px;
	line-height:25px;
}

.articles p{
	margin-top:30px;
	line-height:25px;
}

.gallery p{
	margin-top:30px;
	line-height:25px;
}

.gallery h2{
	font-size:18px;
	font-weight:600;
	margin-top:30px;
}

.related p{
	margin-top:30px;
	line-height:25px;
}

.rel_list{
	width:805px;
	background-color:#5144b1;
	margin:auto;
	margin-top:30px;
	position:relative;
}

.rel_list h2{
	color:#241a75;
	font-size:18px;
	font-weight:800;
	padding:10px 0 0 15px;
}

.rel_list_mod{
	background-color:#291D82;
}

a > .rel_list_mod:hover{
	outline:solid;
	outline-color:#FFF;
	outline-width:2px;
}

.rel_list_mod h3{
	font-weight:600;
	font-style:italic;
	line-height:20px;
	padding:10px 0 10px 10px;
}

.rel_list_mod p{
	font-size:12px;
	margin:0 10px 0 10px;
}

.his{
	height:227px;
}

.his_mod{
	width:182.5px;
	height:166px;
}

.his_1{
	position:absolute;
	top:45px;
	left:15px;
}

.his_2{
	position:absolute;
	top:45px;
	left:212.5px;
}

.his_3{
	position:absolute;
	top:45px;
	right:212.5px;
}

.his_4{
	position:absolute;
	top:45px;
	right:15px;
}

.des{
	height:227px;
}

.des_mod{
	width:182.5px;
	height:166px;
}

.des_1{
	position:absolute;
	top:45px;
	left:15px;
}

.des_2{
	position:absolute;
	top:45px;
	left:212.5px;
}

.des_3{
	position:absolute;
	top:45px;
	right:212.5px;
}

.des_4{
	position:absolute;
	top:45px;
	right:15px;
}

.acc{
	height:148px;
}

.acc_mod{
	width:380px;
	height:87px;
}

.acc_1{
	position:absolute;
	top:45px;
	left:15px;
}

.acc_2{
	position:absolute;
	top:45px;
	right:15px;
}

.acc_3{
	position:absolute;
	top:45px;
	right:15px;
}

.docs p{
	margin-top:30px;
	display:inline-block;
	margin-right:15px;
	padding-bottom:10px;
	border-bottom:none;
}

.docs p:hover{
	border-bottom:solid;
	border-bottom-width:3px;
	border-bottom-color:#5144b1;
}

#footer{
	width:100%;
	height:100px;
	background-color:#241a75;
	margin-top:50px;
	position:relative;
	z-index:15;
}