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


/*FONTS*/

/*  Klavika Regular  */

@font-face{
     font-family: 'KlavikaLightCond';
     src: url('fonts/KlavikaWebLightCond.eot');
     src: url('fonts/KlavikaWebLightCond.eot?#iefix') format('embedded-opentype'),
          url('fonts/KlavikaWebLightCondensed.woff') format('woff');
}

@font-face{
     font-family: 'KlavikaLightCondItalic';
     src: url('fonts/KlavikaWebLightCondItalicSub.eot');
     src: url('fonts/KlavikaWebLightCondItalicSub.eot?#iefix') format('embedded-opentype'),
          url('fonts/KlavikaWebLightCondensedItalicSub.woff') format('woff');
}

@font-face{
     font-family: 'KlavikaLight';
     src: url('fonts/KlavikaWebBasicLight.eot');
     src: url('fonts/KlavikaWebBasicLight.eot?#iefix') format('embedded-opentype'),
          url('fonts/KlavikaWebBasicLight.woff') format('woff');
}


@font-face{
     font-family: 'KlavikaRegular';
     src: url('fonts/KlavikaWebBasicRegular.eot');
     src: url('fonts/KlavikaWebBasicRegular.eot?#iefix') format('embedded-opentype'),
          url('fonts/KlavikaWebBasicRegular.woff') format('woff');
}

@font-face{
     font-family: 'KlavikaRegularItalic';
     src: url('fonts/KlavikaWebBasicRegularItalic.eot');
     src: url('fonts/KlavikaWebBasicRegularItalic.eot?#iefix') format('embedded-opentype'),
          url('fonts/KlavikaWebBasicRegularItalic.woff') format('woff');
}

/*  Klavika Regular Condensed  */
@font-face{
     font-family: 'KlavikaRegularCondensed';
     src: url('fonts/KlavikaWebRegularCond.eot');
     src: url('fonts/KlavikaWebRegularCond.eot?#iefix') format('embedded-opentype'),
          url('fonts/KlavikaWebRegularCondensed.woff') format('woff');
}

/*  Klavika Regular Condensed Italic  */
@font-face{
     font-family: 'KlavikaRegularCondensedItalic';
     src: url('fonts/KlavikaWebRegularCondItalic.eot');
     src: url('fonts/KlavikaWebRegularCondItalic.eot?#iefix') format('embedded-opentype'),
          url('fonts/KlavikaWebRegularCondensedItalic.woff') format('woff');
}


/*  -Klavika Medium-  */

/*  Klavika Medium  */
@font-face{
     font-family: 'KlavikaMedium';
     src: url('fonts/KlavikaWebBasicMedium.eot');
     src: url('fonts/KlavikaWebBasicMedium.eot?#iefix') format('embedded-opentype'),
          url('fonts/KlavikaWebBasicMedium.woff') format('woff'); 
}

/*  Klavika Medium Italic  */
@font-face{
     font-family: 'KlavikaMediumItalic';
     src: url('fonts/KlavikaWebBasicMediumItalic.eot');
     src: url('fonts/KlavikaWebBasicMediumItalic.eot?#iefix') format('embedded-opentype'),
          url('fonts/KlavikaWebBasicMediumItalic.woff') format('woff');
}

/*  Klavika Medium Condensed  */
@font-face{
     font-family: 'KlavikaMediumCondensed';
     src: url('fonts/KlavikaWebMediumCond.eot');
     src: url('fonts/KlavikaWebMediumCond.eot?#iefix') format('embedded-opentype'),
          url('fonts/KlavikaWebMediumCondensed.woff') format('woff');
}

/*  Klavika Medium Condensed Italic  */
@font-face{
     font-family: 'KlavikaMediumCondensedItalic';
     src: url('fonts/KlavikaWebMediumCondItalic.eot');
     src: url('fonts/KlavikaWebMediumCondItalic.eot?#iefix') format('embedded-opentype'),
          url('fonts/KlavikaWebMediumCondensedItalic.woff') format('woff');
}


/*  -Klavika Bold-  */

/*  Klavika Bold Condensed Italic  */
@font-face{
     font-family: 'KlavikaBoldCondensedItalic';
     src: url('fonts/KlavikaWebBoldCondItalic.eot');
     src: url('fonts/KlavikaWebBoldCondItalic.eot?#iefix') format('embedded-opentype'),
          url('fonts/KlavikaWebBoldCondensedItalic.woff') format('woff'); 
}

@font-face{
     font-family: 'KlavikaBoldCondensed';
     src: url('fonts/KlavikaWebBoldCond.eot');
     src: url('fonts/KlavikaWebBoldCond.eot?#iefix') format('embedded-opentype'),
          url('fonts/KlavikaWebBoldCondensed.woff') format('woff'); 
}

@font-face{
     font-family: 'KlavikaBold';
     src: url('fonts/KlavikaWebBasicBold.eot');
     src: url('fonts/KlavikaWebBasicBold.eot?#iefix') format('embedded-opentype'),
          url('fonts/KlavikaWebBasicBold.woff') format('woff'); 
}

@font-face{
     font-family: 'KlavikaBoldItalic';
     src: url('fonts/KlavikaWebBasicBoldItalic.eot');
     src: url('fonts/KlavikaWebBasicBoldItalic.eot?#iefix') format('embedded-opentype'),
          url('fonts/KlavikaWebBasicBoldItalic.woff') format('woff'); 
}


body {
	font: 100%/1.4 'KlavikaLightCond';
	background-color: #000;
	margin: 0;
	padding: 0;
	color: #fff;
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding: 0;
	 /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #ed1c24;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #ed1c24;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

.clear {
	clear:both;
}

.clear-space {
	clear:both;
	height:40px;
}


/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	width: 998px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

sub, sup { 
	font-size: 50%;
	line-height: 0; 
	position: relative; 
	vertical-align: baseline; 
}

sup { 
	top: -0.9em; 
}
sub { 
	bottom: -0.25em; 
}

.logos {
	float:left;
	margin:30px;
}

.logos img {
	margin:0 27px 0 0;	
}

.header {
	
	background: url(images/amdvr-header.jpg) no-repeat top left #000;
	height:549px;
}

.header h1 {
	font-size:48px;
	font-family: 'KlavikaMediumCondensed';
	color:#FFF;
	font-weight:normal !important;
	line-height:40px;
	margin:0;
	padding: 645px 65px 0 65px;
}

.header h1 span {
	font-size:35px;
	font-family:'KlavikaRegularCondensedItalic';
}

.body {
	padding:0px 50px 45px;	
}

.body h2 {
	font-size:36.15px;
	font-family: 'KlavikaRegular';
	line-height: 40px;
	text-transform:uppercase;
	color:#9d9d9d;
	font-weight:normal !important;
	padding:13px 0;
	margin:0 0 25px 0 ;
	border-bottom:2px #666 solid;
	border-top:2px #666 solid;
	float:left;
}

.body h2 span {
	font-family: 'KlavikaBoldCondensed';
}

.body h3 {
	font-size:24px;
	line-height:28px;
	font-family: 'KlavikaRegular';
	color:#9d9d9d;
	font-weight:normal !important;
	margin:0 0 30px;
	width: 500px;
}

.body p {
	font-size:18px;
	line-height:28px;
	font-family: 'KlavikaRegular';
	color:#fff;
	font-weight:normal !important;
	margin:0 0 15px;
}

.badge {
	padding:20px 0 26px 0;
	
}
.term {
	font-family:'KlavikaMediumCondensed';
	font-size:18px;
	color:#cbcbcb;
	padding: 0 65px 0 0;
		
}

.shop-button {
	font-family: 'KlavikaMediumCondensedItalic' ;
	margin:20px 0 20px 0;
	width:171px;
	line-height:0;
	padding:10px 0 8px 10px;
	font-size:16px;
	background:#ed1c24;
	float:left;
	text-decoration:none !important;
	color:#fff !important;
}

.shop-button img {
	margin-left: 96px;
}

.shop-button:hover {
	background:#b11116;	
}

.line {
	padding: 0;
	height:1px;
	background-color:#FFFFFF;
	border:0;
	margin: 15px 0 15px 0;
	width:360px;
	margin-left:72px;
	
}

.feature {
	background:#1d1d1d;
	margin: 0 0 35px;
	padding:25px 0 0;
}

.feature h4 {
	margin:0 25px 25px;
	color:#ed1c24;
	text-transform:uppercase;
	font-size:34px;
	line-height:34px;
	font-family:'KlavikaRegular';
	font-weight:normal !important;
	letter-spacing:.5px;
}

.feature-body {
	padding:25px;
	background:#292929;
}

.col-3 {
	width:33%;
	float:left;
}

.col-3.last {
	width:34%;
}

.col-3 li {
	font-family:'KlavikaRegular';
	font-size:18px;
	margin: 0 0 0 20px;
}

.body-area-sub {
	width:848px;
	font-family:'KlavikaRegular';
	font-size:20px;
	line-height:32px;
}

.body-area h1 {
	font-family: 'KlavikaBoldCondensed';
	font-size:32px;
}

.bold-italic {
	font-family: 'KlavikaBoldItalic';
}

/** Benchmarks Styles **/

.chip-name {
	width:18%;
	float:left;
	color:#ed1c24;
	font-family: 'KlavikaMediumCondensed';
	font-size:26px;
	line-height:30px;
	text-transform:uppercase;
}

.chip-name p {
	color:#ed1c24;
	font-family: 'KlavikaMediumCondensed';
	font-size:26px;
	line-height:24px;
	margin:0 0 15px;
	text-transform:uppercase;
	float:left;
}

.bar-box {
	width:60%;
	float:left;
}

.bar-box p {
	font-family: 'KlavikaRegularCondensed';
	font-size:12px;
	line-height:16px;
	text-align:right;
	text-transform:uppercase;
	margin:3px;
	padding:0;
}

.bar-89 {
	width:89%;
	float:left;
	background:#ed1c24;
	margin:0 0 15px;
}

.bar-85 {
	width:85%;
	float:left;
	background:#ed1c24;
	margin:0 0 15px;
}

p.benchmark-footnote {
	color:#888;
	text-transform:uppercase;
	font-family: 'KlavikaRegularCondensed';
	letter-spacing:.75px;
	font-size:18px;
	float:left;
}



/** Product Styles **/

.product-area {
	padding: 0 75px 25px 75px;
}

.product-description {
	width:181px;
	float:left;
	padding: 0 10px 0 30px;
	border-left:#9d9fa2 1px solid;
}

.product-area .first {
	padding: 0 10px 0 0;
	border-left:none;
}

.product-area .end {
	padding: 0 0 0 30px;
}

.oem-designator {
	font-family: 'KlavikaMediumCondensed';
	font-size:19px;
	margin-top:5px;
	color:#fff;
}

.model-number {
	color:#888;
	font-size:15px;
}

.total-price {
	font-size:21px;
	color:#888;
}

.product-shop-button {
	font-family: 'KlavikaMediumCondensedItalic';
	margin:10px 0 20px 0;
	width:100px;
	line-height:0;
	padding:10px 0 8px 10px;
	font-size:16px;
	background:#ed1c24;
	float:left;
	text-decoration:none !important;
	color:#fff !important;
}

.product-shop-button img {
	margin-left: 5px;
}


.product-shop-button:hover {
	background:#b11116;	
}



/** Footer Styles **/

footer {
	padding:0 0 45px;
	font-size:10px;
	width:100%;
}

footer p {
	font-family:Calibri, Helvetica, Arial, sans-serif;
	margin:0 50px 4px;	
	color:#666;
	font-size:12px;
	line-height:13px;
}

.top-line {
	border-top: 1px solid #636466;
	margin:0 50px 45px;
	padding:0;
	float: left;
	width:868px;
}

.footer-image {
	float:right;
}

footer li {
	margin-left:20px;	
}




.body-list {
	padding: 20px 70px 30px;;
	font-family:'KlavikaLightCond';
	font-size:22px;
	line-height:26px;
	width:520px;
	}
	
.body-list h4 {
	font-family:'KlavikaMedium';
	color:#ff0000;	
	font-size:22px;
	margin:10px 0;
}
	
.body-list p {
	padding-bottom: 14px;
	color:#fff;
	}
	
.body-list .cta {
	font-family:'KlavikaMedium';
	color:#ff0000 !important;
	font-size:30px;
	line-height:42px;
	margin:10px 0 0;
}

.wraith {
	background:url(images/grey-poly.png) top left no-repeat;
	height:158px;
	width:800px;	
	margin:70px 0 0;
}

.wraith p {
	font-size:24px;
	line-height:29px;
	color:#fff;
	font-family:'KlavikaRegular';	
	width:330px;
	padding:50px 0 0 70px;
	margin:0px;
}

.wraith span {
	font-family: 'KlavikaMediumItalic';	
}

.web-address {
	font-family: 'KlavikaRegularCondensedItalic';
	font-size:19px;
	line-height:19px;
}

.web-address span {
	font-family: 'KlavikaMediumCondensedItalic';	
}

.body img.badge {
	float:left;	
}

.body p.tagline {
	font-size:30px;
	line-height:38px;
	color:#00aeb5;
	margin:70px 30px;
	float:left;
	font-family: 'KlavikaMediumCondensedItalic';	
}

