/*
 * rolex press room
 *
 * index:
 * 1. reset / normalise (boilerplate)
 * 2. non-semantic helper classes
 * 3. fonts
 * 4. default styles
 * 5. shared components (modules / widgets)	
 * 6. layout styles	
 * 7. section and page specific
 * 8. @mediaqueries
 */

/* 1. normalise (boilerplate) */
	article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
	audio[controls], canvas, video { display: inline-block; *display: inline; *zoom: 1; }
	html { font-size: 100%; overflow-y: scroll; -webkit-tap-highlight-color: rgba(0,0,0,0); -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
	body { margin: 0; font-size: 13px; line-height: 1.231; }
	body, button, input, select, textarea { font-family: sans-serif; color: #222; }
	a { color: #00e; }
	a:focus { outline: thin dotted; }
	a:hover, a:active { outline: 0; }
	abbr[title] { border-bottom: 1px dotted; }
	b, strong { font-weight: bold; }
	blockquote { margin: 1em 40px; }
	dfn { font-style: italic; }
	hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
	ins { background: #ff9; color: #000; text-decoration: none; }
	mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }
	pre, code, kbd, samp { font-family: monospace, monospace; _font-family: 'courier new', monospace; font-size: 1em; }
	pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
	q { quotes: none; }
	q:before, q:after { content: ""; content: none; }
	small { font-size: 85%; }
	sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
	sup { top: -0.5em; }
	sub { bottom: -0.25em; }
	ul, ol { margin: 1em 0; padding: 0 0 0 40px; }
	dd { margin: 0 0 0 40px; }
	nav ul, nav ol { list-style: none; margin: 0; padding: 0; }
	img { border: 0; -ms-interpolation-mode: bicubic; }
	svg:not(:root) { overflow: hidden; }
	figure { margin: 0; }
	form { margin: 0; }
	fieldset { border: 0; margin: 0; padding: 0; }
	legend { border: 0; *margin-left: -7px; padding: 0; }
	label { cursor: pointer; }
	button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }
	button, input { line-height: normal; *overflow: visible; }
	button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; }
	input[type="checkbox"], input[type="radio"] { box-sizing: border-box; }
	input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
	input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
	button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
	textarea { overflow: auto; vertical-align: top; }
	input:valid, textarea:valid { }
	input:invalid, textarea:invalid { background-color: #f0dddd; }
	table { border-collapse: collapse; border-spacing: 0; }

/* 2. non-semantic helper classes */
	/* image replacement */		
		.ir { 
			background-repeat: no-repeat;
			display: block; 
			direction: ltr; 
			overflow: hidden; 
			text-align: left;
			text-indent: -999em;				
		}

	/* hidden */		
		.hidden {
			display: none; 
			visibility: hidden; 
		} 

	/* hide only visually, but have it available for screenreaders */		
		.visually-hidden { 
			border: 0; 
			clip: rect(0 0 0 0); 
			height: 1px; 
			margin: -1px; 
			overflow: hidden; 
			padding: 0; 
			position: absolute; 
			width: 1px; 
		}

		.visually-hidden.focusable:active,
		.visually-hidden.focusable:focus { 
			clip: auto; 
			height: auto;
			margin: 0; 
			overflow: visible; 
			position: static; 
			width: auto; 
		}

	/* Hide visually and from screenreaders, but maintain layout */		
		.invisible { 
			visibility: hidden; 
		}

	/* clearfix */		
		.clearfix:before, 
		.clearfix:after { 
			content: ""; 
			display: table; 
		}

		.clearfix:after { 
			clear: both; 
		}

		.clearfix { 
			zoom: 1; 
		}
		
	/* vertically centered */	
		.vertically-centered {
			display: table-cell; 
			vertical-align: middle;
		}	
		
/* 3. fonts  */
	@font-face {
		font-family: 'TrajanPro';
		src: url('../fonts/trajanpro-bold-webfont.eot.html');
		src: url('../fonts/trajanpro-bold-webfont.eot%3F.html') format('embedded-opentype'),
			 url('../fonts/trajanpro-bold-webfont.woff.html') format('woff'),
			 url('../fonts/trajanpro-bold-webfont.ttf.html') format('truetype'),
			 url('../fonts/trajanpro-bold-webfont.svg.html') format('svg');
		font-weight: bold;
		font-style: normal;
	}
	
/* 4. default styles */
	body {		
		background: #521707 url("../images/bg.jpg");
		background-attachment: fixed; 	
		color: #fed553;
		font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
		font-size: 11px;	
	}
	
	html[lang="ja"] body,
	html[lang="ko"] body {
		font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	}
	
	/* links */	
		a {
			color: #fed553;
			text-decoration: none;
			-webkit-transition: color 0.2s ease-in-out;
			-moz-transition: color 0.2s ease-in-out;
			-ms-transition: color 0.2s ease-in-out;
			-o-transition: color 0.2s ease-in-out;		
			transition: color 0.2s ease-in-out;
		}

		a:hover,
		a:focus {
			color: #c6a244;
		}
		
	/* sectioning content */
		nav {
			text-transform: uppercase;	
		}
		
		section {
			border-bottom: 1px solid #606060;
			margin-bottom: 15px;
		}
		
		section:last-child {
			border-bottom: none;
		}
		
	/* heading content */
		h1,
		h2,
		h3,
		h4 {
			font-family: TrajanPro, "Lucida Sans Unicode", "Lucida Grande", sans-serif;
			font-weight: normal;	
			text-transform: uppercase;
			margin: 0;
			font-size: 90%;
		}
		
		h2 {
			font-size: 16px;
		}
		
		h3 {
		
		}
		
		h2 {
			margin: 0px 0px 3px 0px;
		}
		
	/* text-level semantics */
		address {
			font-style: normal;
		}
		
		small {
			color: #9f9f9f;
			font-size: 11px;
		}

	/* grouping content */
		p {
			margin: 0 0 1em 0;	
		}
	
	/* form content */

	/* embedding content */	
		img {
			display: block;
		}
		
		figure {
			background: url("../images/common-figure-bg.png.html") repeat 0 0;
			position: relative;
		}
		
		figure figcaption {
			font-family: TrajanPro, "Lucida Sans Unicode", "Lucida Grande", sans-serif;
			font-size: 13px;	
			text-transform: uppercase;
			width: 100%;
			display: block;
			margin: -70px 0px 0px 0px;
			height: 70px;
			
		}	
		
		figure figcaption img {
			float: left;
			margin: 0px 15px 0px 0px;
			opacity: 1;
			width: 48px;
			height: 48px;
			opacity: 1 !important;
		}
		
		figure figcaption:last-child {
			
		}
		

		
/* 5. shared components (modules / widgets) */
	
	/* figures (collection of images) */
		.figures {
			margin: 0 0 0 -12px;	
			padding: 0 0 13px 0;
			zoom: 1;
		}
		
		.figures li {
			float: left;
			list-style: none;
			margin: 0 0 12px 12px;		
		}
		
		.figures li a {
			display: block;
			zoom:1;
		}
		
		.figures li a:focus {
			opacity: 0.6;	
			outline: none;
		}
		
		.figures li a figcaption {
			display: block;
			-webkit-transition: color 0.2s ease-in-out;
			-moz-transition: color 0.2s ease-in-out;
			-ms-transition: color 0.2s ease-in-out;
			-o-transition: color 0.2s ease-in-out;		
			transition: color 0.2s ease-in-out;
		}
		
		.figures li a:hover figcaption {
			color: #C6A244;
		}
		
		/* with hero */
			.figures.with-hero li:first-child figure figcaption {
				font-size: 22px;
				padding: 4px 0; 	
			}
		
/* 6. layout styles */
	/* wrapper */
		#wrapper {
			margin: 0 auto;
			width: 960px;
		}	
		
	/* header */
		header[role="banner"] {	
			background: #000;	
			padding: 20px 0px;
			text-align: center;	
			margin: 0px 0px 120px 0px;	
			position: fixed;
			z-index: 100;
			width: 100%;
			top: 0px;
			opacity: 0.9;
			
		}
	
	/* main */
		div[role="main"] {
			float: right;
			margin: 32px 0;
			padding: 0 12px 0 0;
			width: 684px;
		}
		
/* 7. section and page specific */

	header[role="banner"] img {
		margin: 0px auto;
	}
	
	ul {
		padding: 220px 0px 120px 200px;
		width: 6960px;
		display: block;
		

	}
	
	ul li {
		float: left;
		list-style: none;

	}
	
	ul li figure img {
		opacity: 1;
	}
	
	.entry {
		width: 425px;
		height: 350px;
	}

	.bottom{
		position: relative;
		bottom: -442px;
		
	}

	

/* 8. @mediaqueries		
	/* print */
		@media print {	
			* { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important;
				-ms-filter: none !important; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; 
				box-shadow: none !important; border-radius: 0 !important; -moz-border-radius: 0 !important; }
			a, a:visited { color: #444 !important; text-decoration: underline; }
			a[href]:after { content: " (" attr(href) ")"; }
			abbr[title]:after { content: " (" attr(title) ")"; }
			.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
			pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
			thead { display: table-header-group; }
			tr, img { page-break-inside: avoid; }
			@page { margin: 0.5cm; }
			p, h2, h3 { orphans: 3; widows: 3; }
			h2, h3 { page-break-after: avoid; }
		}