@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;
	background:#000;
	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 {
	margin:40px 65px 10px;
}

.headline {
	padding: 585px 65px 0 65px;
	background:url(images/doom-bg.jpg) top left no-repeat #000;
}

.headline-bold {
	font-family: 'KlavikaBoldCondensed';
}

.headline h1 {
	font-size:80px;
	font-family: 'KlavikaLightCond';
	color:#c7c8ca;
	font-weight:normal !important;
	line-height:70px;
	letter-spacing:-1.5px;
	margin:0;
	text-transform: uppercase;
}

.headline h4 {
	font-size:120px;
	font-family: 'KlavikaMediumCondensed';
	color:#c7c8ca;
	font-weight:normal !important;
	line-height:70px;
	margin:0;
}
.headline h2 {
	font-size:27px;
	font-family: 'KlavikaRegular';
	width:550px;
	line-height: 34px;
	color:#ff0000;
	font-weight:normal !important;
	padding:15px 0 15px 0;
	margin:0;	
}

.headline h3 {
	font-size:19px;
	font-family: 'KlavikaRegular';
	color:#FFF;
	font-weight:normal !important;
	margin:0 0 10px;
}

.bold {
	font-family: 'KlavikaMedium';
}

.bold-italic {
	font-family: 'KlavikaMediumItalic';	
}

.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;
	
}

.body-area {
	background:url(images/amd-am3-mobo.jpg) top right no-repeat #000;	
	padding: 20px 65px 20px;
}
.body-area-sub {
	width:848px;
	font-family:'KlavikaRegular';
	font-size:20px;
	line-height:32px;
}

.body-area h1 {
	font-family: 'KlavikaBoldCondensed';
	font-size:32px;
}

.body-area h2 {
	font-size:27px;
	font-family: 'KlavikaRegular';
	width:550px;
	line-height: 27px;
	font-weight:normal !important;
	padding:5px 0 15px 0;
	margin:0;	
	letter-spacing:-.5px;
}

.body-area h3 {
	font-size:21px;
	font-family: 'KlavikaRegularCondensed';
	line-height: 25px;
	font-weight:normal !important;
	padding:5px 0 15px 0;
	margin:0;
}

.oem-designator {
	font-family: 'KlavikaMediumCondensed';
	font-size: 19px;
	margin-top: 5px;
	color: #ff0000;
	text-align: center;
	margin-right: 8px;
}

.model-number {
	color:#FFF;
	font-size:15px;
}

.total-price {
	font-size:21px;
	color:#FFF;
}

.bold-italic {
	font-family: 'KlavikaBoldItalic';
}

.product-shop-button {
	font-family: 'KlavikaMediumCondensedItalic';
	margin:10px 0 20px 0;
	width:82px;
	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;	
}

.body-list {
	padding: 0px 0px 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;
}

.product-area {
	padding: 0 75px 10px 75px;
}

.product-description {
	width: 181px;
	float: left;
	padding-top: 0;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 0;
	border-left: #9d9fa2 1px solid;
}

.product-area .first {
	padding-top: 0;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 0;
	border-left: none;
}

.product-area .end {
	padding: 0 0 0 30px;
}

footer {
	padding:40px 0 0;
	font-size:10px;
	width:800px;
}

footer p {
	font-family:'KlavikaRegular';
	margin: 0 0 4px 70px;	
	color:#666;
	font-size:9px;
	line-height:9px;
}

.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';	
}

.top-line {
	border-top: 1px solid #636466;
	margin:0;
	padding:40px 0 50px;
	float: left;
	width:100%;
}

.web-address {
	font-family: 'KlavikaRegularCondensedItalic';
	font-size:19px;
	line-height:19px;
}

.web-address span {
	font-family: 'KlavikaMediumCondensedItalic';	
}

.footer-image {
	float:right;
}

footer li {
	margin-left:20px;	
}


#birdseed{
	font-family:'KlavikaRegular';
	margin: 30px 70px 70px 70px;	
	color:#666;
	font-size:10px;
	line-height:10px;
	border-top: 1px solid #666;
}

#birdseed p{
	margin: 7px 0 0;	
}

#birdseed ol{
	padding-left:10px;
	margin-top:7px;	
	margin-bottom:3px;	
}

#birdseed ol li{
	padding-bottom:5px;	
}
