/* custom stylesheet for mox, written "mobile first" */
/* elements, including bootstrap overrides */
html { font-size: 62.5%; } /* set up rem as 10px; */ 

body {
	background-color: #fff;
	height: 100%;
	width: 100%;
	margin: 0;
	font: normal 400 14px/1.4857 Lato, Arial, "Helvetica Neue", sans-serif;
	font: normal 400 1.4rem/1.4857 Lato, Arial, "Helvetica Neue", sans-serif;
	color: #5f5d5d;
}

h1, h2, h3, h4, h5 { color: #414042; font-family: Lato, Tahoma, Verdana, sans-serif; }

a { color: #48bcec; }
	a:hover { color: #396aaa }
	a:active, a:focus { outline: 0 none; }
	
/* common page classes and ids */
.text-center img { display: block; margin: 0 auto; }

h1.page-title, h2.page-title {
	font-weight: 900;
	font-size: 21px;
	font-size: 2.1rem;
	color: #414042;
	/* margin: 12px 15px 10px 15px;
	margin: 1.25rem 1.5rem 1rem 1.5rem; */	
	}
	
h2.article-title, h2.section-title {
	font-weight: 700;
	font-size: 18px;
	font-size: 1.8rem;
	/* color: #2ec5f2; */
	color: #0099cc;
	}

/* buttons */
a.mox-primary {
	background: #48bbec;
	background: -moz-linear-gradient(top, #48bbec 5%, #48bbec 100%);
	background: -webkit-linear-gradient(top, #48bbec 5%, #48bbec 100%);
	background: linear-gradient(to bottm, #48bbec 5%, #48bbec 100%);
	
	border: 0 solid #dcdcdc;
	border-radius: 7px;
	-moz-box-shadow: 0 -4px 0 0 #3667ac inset;
	-webkit-box-shadow: 0 -4px 0 0 #3667ac inset;
	box-shadow: 0 -4px 0 0 #3667ac inset;
	color: #ffffff;
	display: inline-block;
	float: left;
	font-size: 12px;
	padding: 18px;
	text-decoration: none;
	width: 160px;
	outline: 0 none;			
	}
	
	a.mox-primary:hover {
		background: -moz-linear-gradient( center top, #3667ac 5%, #3667ac 100% );
		background: -ms-linear-gradient( top, #3667ac 5%, #3667ac 100% );
		filter:progid: DXImageTransform.Microsoft.gradient(startColorstr='#3667ac', endColorstr='#3667ac');
		background: -webkit-gradient( linear, left top, left bottom, color-stop(5%, #3667ac), color-stop(100%, #3667ac) );
		background-color: #3667ac;		  
		transform: scaleX(0.99) scaleY(0.98);
		color: #fff;					
		}
		
a.mox-clear {
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
	border: 2px solid #fff;
	border-radius: 7px;
	color: #ffffff;
	display: inline-block;
	font-size: 12px;
	margin: 22px 40px 0 0 !important;
	padding: 17px;
	text-decoration: none;
	width: 160px;			
	}
	
	a.mox-clear:hover {
		background: -moz-linear-gradient( center top, rgba(249, 249, 249, 0.3) 5%, rgba(249, 249, 249, 0.3) 100% ) !important;
		background: -ms-linear-gradient( top, rgba(249, 249, 249, 0.3) 5%, rgba(249, 249, 249, 0.3) 100% ) !important;
		filter:progid: DXImageTransform.Microsoft.gradient(startColorstr='rgba(249, 249, 249, 0.3)', endColorstr='rgba(249, 249, 249, 0.3)') !important;
		background: -webkit-gradient( linear, left top, left bottom, color-stop(5%, rgba(249, 249, 249, 0.3)), color-stop(100%, rgba(249, 249, 249, 0.3)) ) !important;
		background-color: rgba(249, 249, 249, 0.1) !important;		  
		transform: scaleX(0.99) scaleY(0.99);
		}	
		
a.mox-sm { padding: 10px; width: 100px; }
	
/* common page sections */
header.site-header { width: 100%; visibility: hidden; }

	.site-header::after {
		display: block;
		width: 100%;
		height: 50px;
		height: 5rem;
		content: "";
		background-image: url(../graphics/nav2.jpg);
		border-bottom: 5px solid #f0c221;
		margin-top: 40px;
		margin-top: 4rem;
		}
		
	.site-header .row { padding-left: 15px; }
	
	#mainnav { background-color: transparent; color: #0099cc; border-width: 0; }
	
		#mainnav .navbar-header { width: 100%; }
		
		#mainnav button.navbar-toggle { display: block; background-color: #3668ac; margin-top: 35px; float: right; }
			
			.navbar-toggle span.icon-bar { background-color: #fff; }
			
		#mainnav #myNavbar {	display: none !important; margin-top: 30px; margin-top: 3rem; }
			
			#mainnav #myNavbar.in { display: block !important; }
			
		#mainnav ul.navbar-nav { position: relative; }
		
		#mainnav a { 
			color: #000;
			font-size: 12px;
			font-size: 1.2rem;
			line-height: 1.42857;
			background-color: transparent;
			text-decoration: none;
			text-transform: uppercase;
			padding-left: 10px;
			padding-right: 10px;
			}
			
			#mainnav li { display: block; float: left; width: 100%; }
			
			#mainnav a:hover, #mainnav li.current a, #mainnav li.open > a { color: #0099cc; }
			
			#mainnav .dropdown-menu {
				display: block;
				-moz-box-shadow: none;
				-webkit-box-shadow: none;
				box-shadow: none;
				border-width: 0;
				background-color: transparent;
				background-image: none;
				margin-left: 20px;
				margin-left: 2rem;
				position: relative;
				}
				
				#mainnav .dropdown-menu li { display: block; float: left; width: 100%; }
				
			#mainnav .navbar-collapse { border-top-width: 0; }

					
/* the top most section of actual content */
section#maincontent { }

	#maincontent article.col-md-12 { padding-left: 0; padding-right: 0; }
		
		/* #maincontent article .article-title, #maincontent .page-title { margin-left: 15px; margin-left: 1.5rem; } */
		
		#maincontent article p { margin-bottom: 10px; margin-bottom: 1rem; }
		
		#maincontent article aside { }
		
			#maincontent article aside.images { padding-left: 0; }
			
			#maincontent article aside img { margin-bottom: 10px; margin-bottom: 1rem; }

footer.site-footer {
	width: 100%;
	font-size: 14px;
	font-size: 1.4rem;
	margin-top: 20px;
	margin-top: 2rem;
	visibility: hidden;
	}
	
	.site-footer article { padding: 0; overflow: hidden; }
	
	.site-footer .press-row { background-color: #f9f9f9; padding: 20px 0; padding: 2rem 0; }
	
		.site-footer a.btn-primary { margin: 25px 40px 0 0; }

		.site-footer h2.article-title {
			font-size: 25px;
			font-size: 2.5rem;
			font-weight: 700;
			margin: 0 0 20px;
			margin: 0 0 2rem;
			color: #414042;
			}
			
		.site-footer article.moxtv a { color: #414042; }
		
			.site-footer article.moxtv a:hover { color: #48bcec; }
			
			.site-footer article.moxtv figure { display: block; }
			
			.site-footer article.moxtv figure figcaption {
				font-weight: 700;
				font-size: 21px;
				font-size: 2.1rem;
				margin: 10px 0 20px;
				margin: 1rem 0 2rem;
				display: block;
				text-align: center;
				}
				
		.site-footer article.social li {
		/* 	padding: 10px 13px; */
			display: inline-block;
			width: auto;
			height: auto;
			margin: 0 4px;
			}

		.site-footer article.social li a {
			display: block;
			width: 62px;
			height: 62px;
			text-indent: -5000px;
			overflow: hidden;
			background-image: url(../graphics/socialicons.png);
			background-repeat: no-repeat:
			}
					
			.site-footer article.social li a.youtube { background-position: 0 0; }

				.site-footer article.social li a.youtube:hover { background-position: 0 -75px; }
			
			.site-footer article.social li a.instagram { background-position: 0 -150px; }

				.site-footer article.social li a.instagram:hover { background-position: 0 -225px; }

		.site-footer section.attribution { padding: 15px 0; }
				
		.site-footer p.copyright { color: #0099cc; text-align: center; }

		/*
		.site-footer article.social li a { 
			display: block;
			width: 48px;
			height: 48px;
			background-image: url(../graphics/social-icons.png);
			background-repeat: no-repeat;
			text-indent: -5000px;
			overflow: hidden;
			}

			.site-footer article.social li.youtube a { background-position: 0 0; }
			
				.site-footer article.social li.youtube a:hover { background-position: 0 -60px; }
			
			.site-footer article.social li.instagram a { background-position: 0 -120px; }
			
				.site-footer article.social li.instagram a:hover { background-position: 0 -181px; }
		*/
				

/* page-specific stuff */

#home header.site-header { min-height: 100px; min-height: 10rem; }

#home header:after { display: none; }

#home #hero {
	background: transparent url(../graphics/Mox_BG_top.jpg) no-repeat center top;
	background-size: fill;
	height: 525px;
	border-bottom: 5px solid #f0c221;
	color: #fff;	
	}
	
	#home #hero h1 { color: #fff; font-weight: 300; font-size: 42px; }
	
	#home #hero a.watch-video { margin: 22px 40px 0 0!important; }
	
		#home #hero a.watch-video:hover { }
		
	#home #hero a.view-more { }
	
		#home #hero a.view-more:hover { }
		
#home #maincontent {
	padding-bottom: 20px;
	padding-bottom: 2rem;
	padding-top: 20px;
	padding-top: 2rem;
	}
	#home #maincontent article { padding-bottom: 40px; }	/* overflow: hidden; */
		
		#home #maincontent article:after { clear: both; content: ""; display: block; height: 0; }
		
	#home #maincontent h2.article-title { color: #414042; }
	
	#home #maincontent aside span.m_banner_show, #home #maincontent aside span.m_banner_hide { width: 100%; }
	
		#home #maincontent aside span.m_banner_show img { width: 100%; height: auto; }

#home #watchsection {
	background: url(../graphics/Mox_BG_bottom.jpg) no-repeat center center;
	text-align: center;
	padding: 13px 0 50px;
	border-bottom: 5px solid #f0c221;
	}
	
	#home #watchsection h2 {
		color: #fff;
		font-weight: 100;
		-moz-text-shadow: 1px 1px 3px #707070;
		-webkit-text-shadow: 1px 1px 3px #707070;
		text-shadow: 1px 1px 3px #707070;
		}

		#home #watchsection h2 span { font-weight: 400; }
		
	#home #watchsection p { color: #fff; }
	
	#home #watchsection a.btn { margin: 40px auto; }
	
		#home #watchsection a.btn:active { position: relative; top: 1px; }
	
	#home #quick-links { padding: 25px 0 0; }
	
		#home #quick-links a {
			font-size: 21px;
			font-weight: 700;
			color: #414042;
			padding-top: 160px;
			background-repeat: no-repeat;
			background-position: center top;
			text-align: center;
			display: block;
			padding-bottom: 25px;
			}
			
			#home #quick-links a:hover, #home #quick-links h2:hover { color: #45bcec; text-decoration: none; transform: scaleX(0.99) scaleY(0.98); }
			
			#home #quick-links a#leadership-link { background-image: url(../graphics/iconleadership.png); }
			
			#home #quick-links a#facts-link { background-image: url(../graphics/iconfacts.png); }
			
			#home #quick-links a#multimedia-link { background-image: url(../graphics/iconmedia.png); }
			
			#home #quick-links a#newsmedia-link { background-image: url(../graphics/iconnews.png); }
			
#home footer.site-footer { margin-top: 0; }

#newsmedia ul#press-articles li { margin-bottom: 10px; margin-bottom: 1rem; }

#careers p.career-links { overflow: hidden; padding: 20px 0;	}

	#careers p.career-links a { float: left; }
	
		#careers p.career-links a + a { margin-left: 50px; }
		
	#careers #cbi-career-link { 
		display: inline-block;
 		width: 146px;
		height: 90px;
		text-indent: -5000px;
		overflow: hidden;
		background: url(../graphics/CB&I-LOGO-cmyk.png) no-repeat 0 0;
		}
		
	#careers #areva-career-link {
		display: inline-block;
		width: 150px;
		height: 90px;
		text-indent: -5000px;
		overflow: hidden;
		background: url(../graphics/Areva_logo.png) no-repeat 0 0;
		}
		
		#careers #cbi-career-link:hover, #careers #areva-career-link:hover { opacity: .80; }

#contact div.contact-info { margin-top: 40px; margin-top: 4rem; }

	#contact .contact-info span.name { font-weight: bold; }
	
	#contact .contact-info span.nl { display: block; }

#leadership #maincontent figure {
	overflow: hidden;
	margin-top: 20px;
	margin-bottom: 25px;
	text-align: center;
	}
	
	#leadership #maincontent figure img { display: block; margin: 0 auto; }
	
	#leadership #maincontent figure figcaption { display: block; padding-top: 15px; }
	
		#leadership #maincontent figcaption h3 {
			color: #0099cc;
			font-size: 18px;
			font-size: 1.8rem;
			margin: 10px 0;
			font-weight: bold;	
			}
		
		#leadership #maincontent figcaption span { display: block; font-weight: bold; }


@media (min-width: 640px) 
	{
	#maincontent .page-title, #maincontent article .article-title { margin-left: 0; }

	#leadership #maincontent figure { text-align: left; }
	
		#leadership #maincontent figure img { float: left; margin: 0 10px; }
		
		#leadership #maincontent figure figcaption { display: inline-block; float: left; padding-top: 25px; }
	}

@media (min-width: 1000px)
	{
	.container-row { padding-left: 0 !important; padding-right: 0 !important; }
	
	.container-row > .col-md-6 { padding-left: 0; padding-right: 15px; }
	
	.container-row > .col-md-6 + .col-md-6 { 	padding-left: 15px; padding-right: 0; }
	
	.site-header .row { padding-left: 0; }
	
	#mainnav button.navbar-toggle { display: none; }
	
	#mainnav .navbar-header { width: auto; }
	
	#mainnav #myNavbar { display: block !important; }

	#mainnav .navbar-collapse { float: right; }
	
	#mainnav li.open:after {
		content: "";
		display: block;
		width: 1px;
		height: 15px;
		background-color: #0099cc;
		margin: 0 auto;
		}
	
	#mainnav li { display: inline-block; width: auto; }
	
	#mainnav a { padding-bottom: 0; }
	
	ul.navbar-nav li:last-child a { padding-right: 0; }
	
	#mainnav .dropdown-menu { display: none; }
	
	#mainnav li.open .dropdown-menu { 
		display: block; 
		min-width: 640px;
		min-width: 64rem;
		position: absolute;
		margin-top: 0;
		margin-left: 0;
		padding-top: 0;		
		}
		
		#mainnav .dropdown-menu li {
			display: inline-block;
			width: auto;
			float: left;
			border-top: 1px solid #0099cc;
			margin: 0;
			}
		
			#mainnav .dropdown-menu a { padding-bottom: 0; padding-top: 5px; }
			
				#mainnav .dropdown-menu li:first-child a { 	padding-left: 0; }
				
				#mainnav .dropdown-menu li:last-child a { padding-right: 0; }
				
	#maincontent { padding-left: 0; 	padding-right: 0; }
	
	#maincontent .col-md-12 { padding-left: 0; padding-right: 0; }

	footer .container { padding-left: 0; padding-right: 0; }
	
	/* page-specific menu stuff */
	body.about #mainnav #myNavbar, body.multimedia #mainnav #myNavbar { margin-top: 15px; margin-top: 1.5rem; }
	
	body#about .dropdown-menu, body.about .dropdown-menu { left: -50px; left: -5rem; }
	
	body#multimedia .dropdown-menu, body.multimedia .dropdown-menu { left: -108px; left: -10.8rem; }

	#home #hero { padding: 160px 0 50px; }

	footer p.copyright { text-align: left; float: left; }
}

/* 
@media (min-width: 1200px) 
	{
	header.site-header .container, #maincontent.container { padding-left: 0; padding-right: 0; }
	}
*/