/* General */
body {
	font-family: 'Lato', sans-serif, Arial;
	font-size: 14px;
	margin: 0;
	padding: 0;
	background-color: #355e86;
	color: #666;
}

a {
	text-decoration: none;
	color: #990033;
	cursor: pointer;
}

a:hover {
	text-decoration: underline;
}

a:focus {
	text-decoration: underline;
}

::selection {
	color: #fff;
	background: #b21e50;
}

::-moz-selection {
	color: #fff;
	background: #b21e50;
}

h1 {
	font-weight: 300;
	font-size: 28px;
}

h2 {
	font-weight: 300;
	font-size: 24px;
	color: #003366;
	margin: 0;
	margin-bottom: 20px;
}

h3 {
	font-weight: 500;
	font-size: 18px;
	color: #003366;
	margin-top: 20px;
	margin-bottom: 5px;
}

h4 {
	font-weight: 700;
	font-size: 16px;
	color: #666666;
	margin-top: 20px;
	margin-bottom: 5px;
}

input[type="text"], input[type="email"], input[type="password"], textarea, select {
	border: 1px solid #c4d6e7;
	padding: 5px;
	font-family: 'Lato', sans-serif, Arial;
	font-size: 14px;
	border-radius: 0;
	box-shadow: none;
	background-color: #fff;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-moz-transition: 0.2s ease-in-out all;
	-o-transition: 0.2s ease-in-out all;
	-webkit-transition: 0.2s ease-in-out all;
	transition: 0.2s ease-in-out all;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
	border-color: #63a5e3;
	outline: 0;
}

.togglebox {
	display: block;
	width: 22px;
	height: 22px;
	background-image: url(/Images/checkbox.png);
}

.togglebox:hover, .togglebox.hover {
	background-position: 0 -40px;
}

.togglebox.on {
	background-position: 0 -80px;
}

.togglebox.on:hover, .togglebox.on.hover {
	background-position: 0 -120px;
}

.button {
	border: none;
	cursor: pointer;
	background-color: #355e86;
	color: #dee2e7;
	padding: 8px;
	padding-left: 15px;
	padding-right: 15px;
	border-radius: 3px;
	font-size: 13px;
	font-weight: 700;
	-moz-transition: 0.2s ease-in-out all;
	-o-transition: 0.2s ease-in-out all;
	-webkit-transition: 0.2s ease-in-out all;
	transition: 0.2s ease-in-out all;
	background: linear-gradient(to bottom, #1f4c78 0,#06396a 100%);
}

.button:hover {
	text-decoration: none;
	background-color: #487aaa;
	color: #fff;
	background: linear-gradient(to bottom, #2d5a89 0,#0f4484 100%);
}

.button:focus {
	text-decoration: none;
	outline: 0;
	box-shadow: rgba(255,255,255,0.9) 0 0 10px inset;
}

.button.action {
	background-color: #b21e50;
	background: linear-gradient(to bottom, #b21e50 0,#990033 100%);
	color: #fcecf1;
}

.button.action:hover {
	background-color: #cb285f;
	background: linear-gradient(to bottom, #ce2b62 0,#cb285f 100%);
}

.button.action:focus {
	background-color: #cb285f;
	background: linear-gradient(to bottom, #ce2b62 0,#cb285f 100%);
}

.button[disabled=disabled], .button.disabled {
	color: #fff;
	background-color: #b6c1ca;
	background: linear-gradient(to bottom, #ccd4db 0,#aeb9c3 100%);
	cursor:default;
}

.button[disabled=disabled]:hover, .button.disabled:hover {
	background-color: #b6c1ca;
	background: linear-gradient(to bottom, #ccd4db 0,#aeb9c3 100%);
}

.button[disabled=disabled]:focus, .button.disabled:focus {
	background-color: #b6c1ca;
	background: linear-gradient(to bottom, #ccd4db 0,#aeb9c3 100%);
}

.error, .validation-summary-errors, .field-validation-error {
	color: #cc0019;
	margin-top: 5px;
}

.validation-summary-errors ul, .validation-summary-errors li {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Layout */
.outer-base {
	background-color: #f3f7fb;
}

.outer-base > header {
	height: 175px;
	background-color: #fff;
	-moz-transition: 0.3s ease-in-out all;
	-o-transition: 0.3s ease-in-out all;
	-webkit-transition: 0.3s ease-in-out all;
	transition: 0.3s ease-in-out all;
}

.outer-base > header > div {
}

.outer-base > header .secondary-nav {
	background-color: #333;
	height: 35px;
}

.outer-base > header .secondary-nav > nav {
	margin: auto;
	width: 960px;
	position: relative;
}

.outer-base > header .secondary-nav > nav:after {
	content: '';
	display: block;
	clear: both;
}

.outer-base > header .secondary-nav a {
	color: #fff;
	display: block;
	float: left;
	height: 35px;
	line-height: 35px;
	padding-left: 15px;
	padding-right: 15px;
	font-size: 14px;
	font-weight: bold;
	-moz-transition: 0.3s ease-in-out all;
	-o-transition: 0.3s ease-in-out all;
	-webkit-transition: 0.3s ease-in-out all;
	transition: 0.3s ease-in-out all;
}

.outer-base > header .secondary-nav a:hover {
	background-color: #444;
	text-decoration: none;
}

.outer-base > header .secondary-nav input {
	position: absolute;
	top: 0;
	right: 0;
	background-color: #CCCCCC;
	border: none;
	height: 35px;
	line-height: 35px;
	padding: 0;
	padding-left: 15px;
	padding-right: 15px;
	width: 200px;
	color: #000;
	border-radius: 0;
}

.outer-base > header .secondary-nav div {
	position: relative;
}

.outer-base > header .secondary-nav div a {
	float: none;
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	width: 35px;
	height: 35px;
	padding: 0;
	background-image: url(/Images/searchIcon.png);
	background-repeat: no-repeat;
	background-size: auto 100%;
}

.outer-base > header .secondary-nav div a:hover {
	background-color: transparent;
}

.outer-base > header .secondary-nav div a > span {
	display: none;
}

header .mobile-menu-button {
	display: none;
}

header .primary-header {
	width: 960px;
	margin: auto;
	position: relative;
}

header .primary-header .logo {
	background-image: url("/Images/ntcLogo.png");
	background-size: 100% auto;
	background-repeat: no-repeat;
	width: 190px;
	height: 80px;
	display: block;
	position: absolute;
	left: 0;
	top: 35px;
	-moz-transition: 0.3s ease-in-out height;
	-o-transition: 0.3s ease-in-out height;
	-webkit-transition: 0.3s ease-in-out height;
	transition: 0.3s ease-in-out height;
	-moz-transition: 0.3s ease-in-out width;
	-o-transition: 0.3s ease-in-out width;
	-webkit-transition: 0.3s ease-in-out width;
	transition: 0.3s ease-in-out width;
}

header .primary-header .logo > span {
	display: none;
}

header .primary-header > nav {
	position: absolute;
	top: 30px;
	left: 230px;
}

header .primary-header > nav ul {
	display: block;
	margin: 0;
	padding: 0;
}

header .primary-header > nav ul:after {
	content: '';
	display: block;
	clear: both;
}

header .primary-header > nav ul li {
	float: left;
	display: block;
	margin: 0;
	padding: 0;
	background-image: url(/Images/primaryNavSeparator.png);
	background-size: 115px auto;
	background-repeat: no-repeat;
	background-position: right 0;
	padding-right: 4px;
	padding-left: 4px;
}

header .primary-header > nav ul li:last-child {
	background-image: none;
	padding-right: 0;
}

header .primary-header > nav ul li:first-child {
	padding-left: 0;
}
/*header .primary-header > nav ul li:nth-last-child(2) { background-image: none; padding-right: 0; }*/

header .primary-header > nav ul li a {
	display: block;
	width: 115px;
	height: 96px;
	text-align: center;
	background-repeat: no-repeat;
	position: relative;
	background-position: center 0;
	background-size: 100% auto;
	background-image: url(/Images/primaryNavBg.png);
	box-sizing: border-box;
}

header .primary-header > nav ul li a:hover {
	background-image: url(/Images/primaryNavBg.png);
	background-position: center -110px;
}

header .primary-header > nav ul li.selected a {
	background-image: url(/Images/primaryNavBg.png);
	background-position: center -220px;
	color: #fff;
}

header .primary-header > nav ul li a > span {
	display: block;
	position: absolute;
	width: 100%;
	top: 55px;
	font-size: 12px;
}

header .primary-header > nav ul li a .icon {
	height: 40px;
	width: 40px;
	margin: auto;
	background-repeat: no-repeat;
	background-position: center 0;
	position: absolute;
	top: 13px;
	left: 0;
	right: 0;
	background-position: center 0;
	background-size: 100% auto;
}

header .primary-header > nav ul li.selected a .icon {
	background-position: center -50px;
}

header .primary-header > nav ul li.roads a .icon {
	background-image: url(/Images/navIconRoads.png);
}

header .primary-header > nav ul li.trucks a .icon {
	background-image: url(/Images/navIconTrucks.png);
}

header .primary-header > nav ul li.buses a .icon {
	background-image: url(/Images/navIconBuses.png);
}

header .primary-header > nav ul li.rail a .icon {
	background-image: url(/Images/navIconRail.png);
}

header .primary-header > nav ul li.port a .icon {
	background-image: url(/Images/navIconPort.png);
}

header .primary-header > nav ul li.topics a .icon {
	background-image: url(/Images/navIconTopics.png);
}

header .primary-header > nav ul li.publications a .icon {
	background-image: url(/Images/navIconPublications.png);
}

header .primary-header > nav ul li.search a .icon {
	background-image: url(/Images/navIconSearch.png);
}

header .primary-header > nav ul li.search {
	display: none;
}

.base {
	width: 960px;
	margin: auto;
}

.base > main {
	position: relative;
	padding-bottom: 1px;
}

.base > main:after {
	content: '';
	display: block;
	clear: both;
}

.intro {
	height: 220px;
	background-color: #104070;
	background-image: url(/Images/introBg.png);
	background-size: auto 100%;
	background-repeat: repeat-x;
	-moz-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
}

.intro > div {
	width: 960px;
	margin: auto;
	color: #fff;
	height: 220px;
	position: relative;
}

.intro > div > div {
	background-image: url(/Images/introCircles.jpg);
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: right 0;
	height: 190px;
	padding-top: 30px;
}

.intro.content-intro > div > div {
	background-image: url(/Images/introCircles2.jpg);
}

.intro > div h1 {
	margin: 0;
	margin-bottom: 10px;
	max-width: 550px;
}

.intro > div h1 a {
	color: #fff;
	font-weight: 300;
}

.intro > div p {
	margin: 0;
	font-size: 18px;
	font-weight: 300;
	width: 600px;
	color: #ced9e6;
}

.intro > div a {
	color: #fff;
	font-weight: bold;
}

.intro .icon {
	background-size: 100% auto;
	background-repeat: no-repeat;
	width: 80px;
	height: 80px;
	position: absolute;
	right: 132px;
	top: 74px;
}

.intro .sub-icon {
	display: block;
	position: absolute;
	width: 50px;
	height: 50px;
	right: 260px;
	top: 59px;
	background-size: 100% auto;
	background-repeat: no-repeat;
}

.intro .breadcrumb {
	font-size: 18px;
}

.intro .breadcrumb a {
	font-weight: normal;
}

.intro.slim {
	height: auto;
}

.intro.slim > div {
	height: auto;
}

.intro.slim > div > div {
	height: auto;
	background-image: none;
	padding-bottom: 30px;
}

.intro.slim .icon {
	display: none;
}

.intro.slim > div p {
	width: auto;
}

.intro.slim > div h1 {
	width: auto;
	max-width: initial;
}

.intro a.button {
	position: absolute;
	right: 0;
	top: 45px;
	background-color: #990033;
	background: linear-gradient(to bottom,#b21e50 0, #990033 100%);
	box-shadow: rgba(0,0,0,0.5) 0 1px 2px;
	border-top: 1px solid #d83f73;
}

.content .intro > div > div {
	background-position: right -240px;
}

.roads .intro .icon {
	background-image: url(/Images/largeIntroIconRoads.png);
}

.trucks .intro .icon {
	background-image: url(/Images/largeIntroIconTrucks.png);
}

.buses .intro .icon {
	background-image: url(/Images/largeIntroIconBuses.png);
}

.rail .intro .icon {
	background-image: url(/Images/largeIntroIconRail.png);
}

.port .intro .icon {
	background-image: url(/Images/largeIntroIconPort.png);
}

.topics .intro .icon {
	background-image: url(/Images/largeIntroIconTopics.png);
}

.publications .intro .icon {
	background-image: url(/Images/largeIntroIconPublications.png);
}

.search .intro .icon {
	background-image: url(/Images/largeIntroIconSearch.png);
}

.intro.news .icon {
	background-image: url(/Images/largeIntroIconNews.png);
}

.intro.events .icon {
	background-image: url(/Images/largeIntroIconEvents.png);
}

.intro.content-intro > div p {
	width: 550px;
}

.roads .intro.content-intro .sub-icon {
	background-image: url(/Images/largeIntroIconRoads.png);
}

.trucks .intro.content-intro .sub-icon {
	background-image: url(/Images/largeIntroIconTrucks.png);
}

.buses .intro.content-intro .sub-icon {
	background-image: url(/Images/largeIntroIconBuses.png);
}

.rail .intro.content-intro .sub-icon {
	background-image: url(/Images/largeIntroIconRail.png);
}

.port .intro.content-intro .sub-icon {
	background-image: url(/Images/largeIntroIconPort.png);
}

.topics .intro.content-intro .sub-icon {
	background-image: url(/Images/largeIntroIconTopics.png);
}

.publications .intro.content-intro .sub-icon {
	background-image: url(/Images/largeIntroIconPublications.png);
}

footer {
	background-color: #355e86;
}

footer > .links {
	background-color: #d8e6f3;
}

footer > .links > div {
	overflow: auto;
	margin: auto;
	width: 960px;
	padding-top: 20px;
	padding-bottom: 20px;
}

footer > .links > div > div {
	float: left;
	width: 136px;
}

footer > .links > div > div ul {
	display: block;
	margin: 0;
	padding: 0;
}

footer > .links > div > div ul li {
	display: block;
	padding: 0;
	margin: 0;
	margin-bottom: 10px;
	font-size: 11px;
}

footer > .links > div > div a {
	color: #003366;
}

footer > .links > div h4 {
	margin: 0;
	margin-bottom: 10px;
	margin-top: 10px;
	font-size: 16px;
}

footer > .company-details {
	margin: auto;
	width: 960px;
	position: relative;
	height: 150px;
	color: #fff;
}

footer > .company-details .logo {
	background-image: url(/Images/footerLogo.png);
	background-size: 100% auto;
	background-repeat: no-repeat;
	width: 158px;
	height: 69px;
	position: absolute;
	left: 0;
	top: 40px;
}

footer > .company-details .logo > span {
	display: none;
}

footer > .company-details .email {
	position: absolute;
	right: 0;
	top: 35px;
	color: #fff;
	font-size: 22px;
}

footer > .company-details .phone-number {
	position: absolute;
	right: 0;
	top: 80px;
}

footer > .company-details .address {
	position: absolute;
	right: 0;
	top: 63px;
}

/* Popup */
.popup-container {
	z-index: 4;
}

.popup-container .shader {
	background-color: rgba(0,0,0,0.5);
	position: absolute;
	top: 0;
	width: 100%;
	height: 1000px;
}

/* Home */
.carousel {
	height: 380px;
	background-color: #114070;
	background-image: url(/Images/carouselBg.png);
	background-size: auto 100%;
	background-repeat: repeat-x;
	z-index: 1;
	position: relative;
}

.carousel > div {
	margin: auto;
	max-width: 1325px;
	position: relative;
}

.carousel article {
	height: 380px;
	background-color: #333;
	color: #fff;
	background-size: auto 100%;
	background-repeat: no-repeat;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-position: 10% 0;
}

.carousel article > div {
	margin: 0 100px 0 100px;
	background-color: #073a6a;
	height: 380px;
	position: relative;
}

.carousel article div.carousel-image {
	width: 56%;
	height: 380px;
	position: absolute;
	left: 0;
	background-position: 90% center;
	background-size: auto 100%;
}

.carousel article div.carousel-content {
	width: 44%;
	background-color: #990033;
	position: absolute;
	right: 0;
	height: 380px;
	z-index: 2;
}

.carousel article div.carousel-content > div {
	padding: 40px;
	padding-right: 60px;
}

.carousel article div.carousel-content a {
	z-index: 2;
	display: block;
	width: 140px;
	background-image: url(/Images/carouselMoreButton.png);
	background-size: 100% auto;
	height: 44px;
	color: #fff;
	text-align: center;
	font-weight: 700;
	margin-top: 20px;
	padding: 0;
	-moz-transition: none;
	-o-transition: none;
	-webkit-transition: none;
	transition: none;
}

.carousel article div.carousel-content a:hover {
	background-position: 0 -60px;
	text-decoration: none;
}

.carousel article div.carousel-content a > span {
	display: block;
	padding-top: 12px;
	font-size: 16px;
}

.carousel article p {
	color: #f1c6d5;
	line-height: 150%;
}

.carousel article h1, .carousel article h2 {
	font-weight: 300;
	font-size: 30px;
	margin: 0;
	margin-bottom: 20px;
	color: #fff;
}

.carousel > div > div.overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10000000;
	width: 100%;
}

.carousel > div > div.overlay > div {
	width: 140px;
	position: absolute;
	left: 0;
	height: 380px;
	background-image: url(/Images/carouselOverlay.png);
	background-size: auto 100%;
}

.carousel > div > div.overlay .left {
}

.carousel > div > div.overlay .right {
	left: auto;
	right: 0;
	background-position: right 0;
}

.carousel > div > div.overlay div a {
	position: absolute;
	top: 152px;
	display: block;
	width: 76px;
	height: 76px;
	background-size: 100% auto;
}

.carousel > div > div.overlay div a:hover {
	background-position: 0 -90px;
}

.carousel > div > div.overlay div a > span {
	display: none;
}

.carousel > div > div.overlay .left a {
	right: 31px;
	background-position: left 0;
	background-image: url(/Images/carouselArrowPrev.png);
}

.carousel > div > div.overlay .right a {
	left: 31px;
	background-image: url(/Images/carouselArrowNext.png);
}

.home main {
}

.home-content-container {
	background-image: url(/Images/contentBlockShadow.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	position: relative;
	top: -60px;
	padding: 0;
	padding-bottom: 15px;
}

.home-content {
	background-color: #fff;
	border-radius: 3px;
	position: relative;
	top: 0;
	z-index: 2;
	padding: 0;
	background-position: right 0;
	background-repeat: repeat-y;
	overflow: hidden;
	width: 960px;
	margin: auto;
	box-shadow: rgba(0,50,100,0.1) 0 0 20px;
	min-height: 455px;
	background-color: #355e86;
}

.info-block-container {
	margin: auto;
	width: 960px;
	padding-bottom: 30px;
}

.info-block {
	background-image: url(/Images/largeInfoIcon.png);
	background-size: auto 100%;
	background-repeat: no-repeat;
	padding: 5px;
	padding-right: 0;
	padding-left: 120px;
	color: #355e86;
	font-size: 24px;
	font-weight: 300;
	position: relative;
	top: -25px;
}

.info-block > a {
	display: block;
	font-weight: 500;
	font-size: 16px;
	margin-top: 5px;
	color: #355e86;
	font-weight: 700;
}

.tab-content {
	width: 635px;
	background-image: url(/Images/tabHeaderBg.png);
	background-size: auto 60px;
	background-repeat: repeat-x;
	background-color: #fff;
}

.tab-content .tabs {
	padding: 10px;
	padding-bottom: 0;
	overflow: auto;
	height: 50px;
}

.tab-content .tabs h2 {
	margin: 0;
	background-color: #bfd1e1;
	float: left;
	height: 50px;
	width: 281px;
	border-radius: 3px 3px 0 0;
	margin-right: 10px;
	line-height: 50px;
	color: #355e86;
	font-weight: 500;
	font-size: 18px;
	padding-left: 20px;
	cursor: pointer;
	-moz-transition: 0.2s ease-in-out all;
	-o-transition: 0.2s ease-in-out all;
	-webkit-transition: 0.2s ease-in-out all;
	transition: 0.2s ease-in-out all;
}

.tab-content .tabs h2:hover {
	background-color: #accae5;
}

.tab-content .tabs h2:last-child {
	margin-right: 0;
}

.tab-content .tabs h2.selected {
	background-color: #fff;
}

.tab-content section {
	padding: 30px;
	min-height: 340px;
}

.prime-links-area {
	background-color: #355e86;
	width: 325px;
	float: right;
	position: absolute;
	top: 0;
	right: 0;
}

.prime-links-area article {
	color: #cedeee;
	padding: 20px;
	background-image: url(/Images/homeLink.png);
	background-size: 67px auto;
	background-position: 20px 20px;
	background-repeat: no-repeat;
}

.prime-links-area article > div {
	padding-left: 80px;
	min-height: 65px;
	padding-top: 5px;
	position: relative;
}

.prime-links-area article:hover {
	background-color: #3f77ad;
}

.prime-links-area article p {
	margin: 0;
	font-size: 12px;
}

.prime-links-area article a {
	display: block;
	color: #fff;
	margin: 0;
	font-size: 16px;
}

.prime-links-area article > div .icon {
	width: 67px;
	height: 70px;
	background-size: 50px auto;
	background-position: center 8px;
	background-repeat: no-repeat;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
}

.prime-links-area article.environment > div .icon {
	background-image: url(/Images/homeLinkEnvironment.png);
}

.prime-links-area article.publications > div .icon {
	background-image: url(/Images/homeLinkPublications.png);
}

.prime-links-area article.meter > div .icon {
	background-image: url(/Images/homeLinkMeter.png);
}

.home .base {
	width: auto;
}

.base {
	position: relative;
}

.base.news .when, .base.events .when {
	margin-bottom: 20px;
	display: block;
	font-size: 18px;
	color: #999;
}

section.media-release article,
.tab-content section article {
	overflow: auto;
	border-bottom: 1px solid #e3eaf1;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

section.media-release article:last-child
{
	border:none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.tab-content section article h3
{
	margin-left: 85px;
}

section.media-release article h4
{
	margin:0 0 14px 85px;
}

.tab-content section article h3 {
	display: block;
	margin-top: 0;
	margin-bottom: 5px;
	font-size: 16px;
	font-weight: 500;
}

section.media-release article p,
.tab-content section article p {
	margin: 0;
	margin-left: 85px;
}

.tab-content section article:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

section.media-release article .date,
.tab-content section article .date {
	display: block;
	float: left;
	width: 64px;
	height: 64px;
	background-image: url(/Images/dateDot.png);
	background-size: 100% auto;
	color: #fff;
	text-align: center;
	position: relative;
}

.tab-content section.events article .date {
	background-image: url(/Images/dateDot2.png);
}

.tab-content section.events article div a {
	color: #003366;
}

section.media-release article .date > span,
.tab-content section article .date > span {
	display: block;
	position: absolute;
	width: 100%;
}

section.media-release article .date .month,
.tab-content section article .date .month {
	font-size: 10px;
	text-transform: uppercase;
	top: 7px;
}

section.media-release article .date .day, 
.tab-content section article .date .day {
	font-size: 20px;
	margin-top: 0;
	top: 16px;
}

section.media-release article .date .year,
.tab-content section article .date .year {
	font-size: 10px;
	margin-top: 0;
	top: 40px;
}



/* Landing page */
.landing-links {
	margin-top: 40px;
	margin-bottom: 20px;
}

.landing-links:after {
	content: '';
	display: block;
	clear: both;
}

.landing-links article {
	float: left;
	width: 320px;
	position: relative;
	height: 95px;
	margin-bottom: 30px;
}

.landing-links article h2 {
	margin: 0;
	margin-bottom: 5px;
	display: block;
	font-weight: 700;
	font-size: 16px;
}

.landing-links article.no-description h2 {
	margin-top: 25px;
}

.landing-links article p {
	padding: 0;
	margin: 0;
	font-size: 13px;
}

.landing-links article .icon {
	background-size: 100% auto;
	background-position: center;
	display: block;
	width: 90px;
	height: 90px;
	position: absolute;
	left: 0;
	top: 0;
	background-repeat: no-repeat;
	-moz-transition: 0.3s ease-in-out width;
	-o-transition: 0.3s ease-in-out width;
	-webkit-transition: 0.3s ease-in-out width;
	transition: 0.3s ease-in-out width;
}

.landing-links article > div {
	margin-left: 107px;
	padding-right: 18px;
	padding-top: 5px;
	min-height: 90px;
}

.landing-links article.safety .icon {
	background-image: url(/Images/landingIconSafety.png);
}

.landing-links article.environment .icon {
	background-image: url(/Images/landingIconEnvironment.png);
}

.landing-links article.efficiency .icon {
	background-image: url(/Images/landingIconMeter.png);
}

.landing-links article.standards .icon {
	background-image: url(/Images/landingIconStandards.png);
}

.landing-links article.publications .icon {
	background-image: url(/Images/landingIconPublications.png);
}

.landing-links article.contacts .icon {
	background-image: url(/Images/landingIconContacts.png);
}

.landing-links article.technology .icon {
	background-image: url(/Images/landingIconTech.png);
}

.landing-links article.charges .icon {
	background-image: url(/Images/landingIconCharges.png);
}

.landing-links article.productivity .icon {
	background-image: url(/Images/landingIconProductivity.png);
}

/* Content page */
.base main nav {
	width: 25%;
	float: left;
	margin-top: 30px;
	margin-bottom: 30px;
}

.base main nav > header {
	background-color: #a60f42;
	background-image: url(/Images/sideNavHeaderBg.png);
	background-size: auto 100%;
	background-repeat: repeat-x;
	color: #fff;
	padding: 15px;
	padding-top: 12px;
	padding-bottom: 12px;
	border-radius: 3px 3px 0 0;
	font-weight: 700;
}

.base main nav > div.nav {
	background-color: #fff;
	border: 1px solid #c3d1e0;
	padding: 0;
	border-radius: 0 0 3px 3px;
	font-size: 14px;
}

.base main nav > div ul {
	display: block;
	margin: 0;
	padding: 0;
	padding-bottom: 0;
}

.base main nav > div ul li {
	display: block;
	padding: 0;
	margin: 0;
}

.base main nav > div ul li a {
	text-decoration: none;
}

.base main nav > div > ul > li {
	display: block;
	padding: 0;
	margin: 0;
	margin-bottom: 0;
}

.base main nav > div > ul > li a {
	color: #1d4a77;
	display: block;
	padding: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
	-moz-transition: 0.2s ease-in-out all;
	-o-transition: 0.2s ease-in-out all;
	-webkit-transition: 0.2s ease-in-out all;
	transition: 0.2s ease-in-out all;
}

.base main nav > div > ul > li > a:hover {
	background-color: #f2f7fd;
}

.base main nav > div > ul > li.selected {
	background-color: #e5eef8;
}

.base main nav > div > ul > li.selected > a {
	background-color: #990033;
	font-weight: 700;
	background-image: url("/Images/sideNavHeaderBg.png");
	background-size: auto 100%;
	color: #fff;
}

.base main nav > div > ul > li ul {
	font-size: 12px;
}

.base main nav > div > ul > li.selected ul {
	display: block;
	margin: 0;
	padding: 0;
	padding-bottom: 0;
	padding-top: 0;
	border-bottom: 1px solid #c3c1e0;
}

.base main nav > div > ul > li:last-child ul {
	border-bottom: none;
}

.base main nav > div > ul > li ul li.selected {
	background-color: #c9dbec;
}

.base main nav > div > ul > li ul li a:hover {
	background-color: #d0e0ef;
}

.base main nav > div > ul > li ul li ul {
	border-bottom: none;
	background-color: #e5eef8;
}

.base main nav > div > ul > li ul li.selected ul {
	border-bottom: none;
	background-color: #e5eef8;
}

.base main nav > div > ul > li.selected ul li ul {
	border-bottom: none;
	background-color: #e5eef8;
	border-bottom: none;
}

.base main nav > div > ul > li.selected ul li.selected ul {
	border-bottom: none;
	background-color: #e5eef8;
}

.base main nav > div > ul > li ul li ul li a {
	padding-left: 30px;
}

.base main .content > div {
	padding: 30px;
	padding-right: 0;
	padding-left: 0;
}

.base main .content .publish-info {
	text-align: right;
	color: #999;
	display: block;
	border-top: 1px solid #dce5ef;
	padding-top: 15px;
	margin-top: 20px;
	font-size: 12px;
}

.base main.has-nav .content {
	float: right;
	width: 75%;
}

.base main.has-nav .content > div {
	padding: 30px;
	padding-right: 0;
}

.base main.has-nav .content > div table {
	border-collapse: collapse;
	border: 1px solid #c3d1e0;
	border-bottom: none;
	background-color: #fff;
	width: 100%;
}

.base main.has-nav .content > div table tr td, .base main.has-nav .content > div table tr th {
	border-bottom: 1px solid #c3d1e0;
	padding: 5px;
}

.base main.has-nav .content > div table tr th {
	background-color: #c3d1e0;
	color: #003366;
}

.base main .content section.links {
	margin-top: 30px;
}

.base main .content section.links > article {
	background-image: url(/Images/largeSubLinkBullet.png);
	background-size: auto 62px;
	background-repeat: no-repeat;
	border-bottom: 1px solid #dce5ef;
	padding-left: 80px;
	min-height: 62px;
	margin-bottom: 15px;
	padding-bottom: 15px;
}

.base main .content section.links > article:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.base main .content section.links > article h3 {
	margin: 0;
	margin-bottom: 5px;
	font-size: 16px;
}

.base main .content section.links > article p {
	margin: 0;
}

.base main .content section.links > article.no-description h3 {
	padding-top: 20px;
}

/* Search */
.outer-base.search .base main .content {
	float: none;
	width: initial;
}

.outer-base.search .base section article {
	margin-bottom: 20px;
	margin-top: 20px;
	border-bottom: 1px solid #d8e6f3;
	padding-bottom: 20px;
}

.outer-base.search .base section article:last-child {
	border-bottom: none;
}

.outer-base.search .base section article h3 {
	margin-top: 0;
}

.outer-base.search .base section article a {
	display: block;
}

.outer-base.search .base main .content > div {
	padding: 30px;
	padding-left: 0;
	padding-right: 0;
}

.outer-base .intro.search p {
	margin-bottom: 20px;
}

.outer-base .intro.search input[type=text] {
	width: 300px;
	background-color: #0a335d;
	box-shadow: rgba(0,0,0,0.2) 0 2px 13px inset;
	color: #fff;
	border: none;
	border-bottom: 1px solid #1f4c79;
	padding: 10px;
	font-size: 16px;
}

.outer-base .intro.search input[type=submit] {
	display: none;
}

.outer-base .intro.search .search-button {
	background-image: url(/Images/searchIcon.png);
	background-repeat: no-repeat;
	background-size: auto 100%;
	width: 35px;
	height: 35px;
	position: absolute;
	left: 283px;
	top: 2px;
}

.outer-base .intro.search .search-button > span {
	display: none;
}

.outer-base .intro.search > div > div > div {
	position: relative;
}

.intro.submission .icon {
	background-image: url(/Images/largeIntroIconSubmission.png);
}

/* Form */
.base .form-container {
	border: 1px solid #c3d1e0;
	overflow: auto;
	margin-bottom: 40px;
	background-repeat: repeat-y;
	background-position: right 0;
}

.base .form-container > div {
	padding: 30px;
}

.base .form-container form {
	padding: 0;
	margin: 0;
}

.base .form-container form > div {
	margin-bottom: 15px;
}
/*.base .form-container form > div > div { float: left; width: 330px; }*/
.base .form-container form > div.required {
	background-image: url(/Images/required.png);
	background-size: 11px;
	background-repeat: no-repeat;
	background-position: 115px 10px;
}

.base .form-container form > div.attachments .button {
	display: block;
	width: 120px;
	float: left;
	text-align: center;
}

.base .form-container h3 {
	margin-left: 130px;
	margin-bottom: 10px;
	margin-top: 20px;
}

.base .form-container .other-container {
	margin-left: 130px;
}

.base .form-container .other-container label {
	float: none;
}

.base .form-container form div.attachments .button {
	display:inline-block;
}

.base .form-container form div.attachments .attachment-files {
	clear: both;
	padding-top: 10px;
}

.base .form-container.submission-create form div.attachments
{
	margin-left:198px;
}

.base .form-container.submission-create form div.attachments .attachment-files
{
}

.base .form-container form div.attachments .attachment-files > div {
	display: block;
	height: 30px;
	line-height: 29px;
	background-color: #fff;
	border: 1px solid #ccc;
	margin-right: 5px;
	margin-top: 5px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	position: relative;
	font-size: 12px;
	width: 310px;
}

.base .form-container form div.attachments .attachment-files > div .progress-bar {
	display: block;
	position: absolute;
	right: 30px;
	top: 10px;
	height: 10px;
	width: 80px;
	overflow: hidden;
	border-radius: 2px;
	background-color: #ccc;
}

.base .form-container form div.attachments .attachment-files > div .progress-bar > span {
	display: block;
	width: 100%;
	height: 10px;
	background-color: #355E86;
}

.base .form-container form div.attachments .attachment-files > div .title {
	display: block;
	margin-left: 10px;
	width: 185px;
	-ms-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.base .form-container form div.attachments .attachment-files > div .delete {
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	right: 5px;
	top: 5px;
	background-image: url(/Images/deleteAttachment.png);
	cursor: pointer;
}

.base .form-container form div.attachments .attachment-files > div .delete:hover {
	background-position: 0 -40px;
}

.base .form-container .indent {
	margin-left: 130px;
}

.base .form-container form div:after {
	content: '';
	display: block;
	clear: both;
}

.base .form-container form > div label {
	display: block;
	float: left;
	min-width: 130px;
	color: #355e86;
	font-weight: 700;
	line-height: 30px;
}

.base .form-container form > div label 
{

}

.g-recaptcha {
	margin-left: 130px;
}

.base .form-container form > div input[type=text] {
	width: 300px;
}

.base .form-container form > div input[type=email] {
	width: 300px;
}

.base .form-container form > div input[type=password] {
	width: 300px;
}

.base .form-container form > div textarea {
	width: 750px;
	max-width: 750px;
	min-width: 750px;
	height: 100px;
}

.base .form-container form form > div select {
	width: 250px;
}

.base .form-container .terms {
	float: right;
	width: 49%;
	max-height: 500px;
	overflow: auto;
}

.base .form-container .terms h3 {
	margin: 0;
	margin-bottom: 10px;
}

.base .form-container .form-indent {
	margin-left: 130px;
}

.base .form-container .checkbox-container {
	margin-left: 130px;
}

.base .form-container.submission-create .checkbox-container
{
	margin-left: 198px;
}

.base .form-container.submission-create form .question-label {	
	font-weight: bold;	
	margin-bottom: 5px;
}

.base .form-container .checkbox-container .togglebox {
	float: left;
	margin-right: 10px;
}

.base .form-container .checkbox-container .error,
.base .form-container .checkbox-container .field-validation-error {
	margin-left: 0;
	clear: both;
	padding-top: 10px;
	display: block;
}

.base .form-container form div.checkbox-container {
	margin-bottom: 8px;
}

.base .form-container form div.checkbox-container label {
	font-weight: 500;
	color: #666;
	font-size: 13px;
	line-height: 20px;
}

.base .form-container .button-container {
	margin-left: 130px;
	margin-top: 30px;
}

.base .form-container.submission-create .button-container
{
	margin-left: 198px;
}

/*.base .form-container .button-container input[type=submit] { visibility: hidden; }*/
.base .form-container form .error,
.base .form-container form .validation-summary-errors,
.base .form-container form .field-validation-error {
	margin: 0;
	padding: 0;
	margin-left: 130px;
	display: block;
}

.base .form-container.submission-create .validation-summary-errors
{
	margin-left: 198px;
	margin-top:30px;
}

.base .form-container form .field-validation-error ul {
	display: block;
	margin: 0;
	padding: 0;
}

.base .form-container form .field-validation-error ul li {
	display: block;
	margin: 0;
	padding: 0;
}


.base .form-container .radio-container {
	margin-left: 130px;
	margin-bottom: 10px;
}

.base .form-container .radio-container input {
	float: left;
	margin-right: 10px;
}

.base .form-container .radio-container label {
	font-weight: 500;
	color: #666;
	font-size: 13px;
	line-height: 20px;
}

section.media-release
{
	padding-top:20px;
	border-top: 1px solid #e3eaf1;
}


section.news article {
	border-bottom: 1px solid #e3eaf1;
}

section.news article:last-child {
	border-bottom: none;
}


section.reports {
	/*border: 1px solid #c3d1e0;*/
	border-bottom: 1px solid #c3d1e0;
	border-right: 1px solid #c3d1e0;
}

section.submissions h3.list,
section.reports h3,
section.content-reports h3 {
	background-color: #c3d1e0;
	color: #0a3b6c;
	margin: 0;
	padding: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: bold;
	font-size: 14px;
	margin-top:20px;
}


section.reports > article {
	background-color: #fff;
	border-top: 1px solid #c3d1e0;
	border-left: 1px solid #c3d1e0;
	position: relative;
	overflow: auto;
}

section.reports > article:first-child {
	border-top: none;
}

section.reports > article .title-col {
	float: left;
	width: 65%;
}

.content-reports > article .title-col {
	float: left;
	width: 54%;
}

.publicationspage section.reports > article
{
	overflow:visible;
}

.publicationspage section.reports > article .title-col
{
	width: auto;
	padding-right: 48px;
	position:relative;
}

.action-popup-btn
{
	width:32px;
	height:32px;
	background:url('/Images/publications-popup-btn.png') 0 0 no-repeat;
	display:block;
	cursor:pointer;
	overflow:visible;
	position:relative;
	
}

.action-popup-btn.active
{
	background-position:0 -32px;
}

.action-popup
{
	display:none;
	width: 163px;
	border: 1px solid #c3d1e0;
	position: absolute;
	top: 39px;
	right:0;
	z-index: 10;
	background-color: #fff;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	cursor:auto;
	-webkit-box-shadow: 0 1px 10px 2px rgba(212,212,212,0.4);
	box-shadow: 0 1px 10px 2px rgba(212,212,212,0.4);
	
}

.action-popup ul {
	margin:0;
	padding:0;
	list-style-type:none;
}

.action-popup ul li {
	display:block;
	border-top:1px solid #c3d1e0;
}

.action-popup ul li span.no-submission,
.action-popup ul li a {
	height:27px;
	display:block;
	padding:10px 15px 0 15px;
	font-size:0.85em;
	text-decoration:none;
}

.action-popup ul li a span.red-link:hover
{
	text-decoration:underline;
}

.action-popup ul li.first {
	border:none;
}

.action-popup ul li span.grey-text
{
	color:#999;
}

.publicationspage section.reports > article .action-popup-btn
{
	position:absolute;
	top:18px;
	right:15px;
}

section.reports > article .buttons-col {
	float: left;
	width: 35%;
}

section.content-reports > article .buttons-col {
	float: left;
	width: 46%;
}

section.content-reports > article ul.files,
section.reports > article ul.files {
	margin: 0 0 0 -4px;
	clear: both;
}

section.content-reports > article .title-col > div,
section.reports > article .title-col > div {
	padding: 16px 19px 20px 19px;
}

section.content-reports > article .buttons-col > div,
section.reports > article .buttons-col > div {
	padding: 6px;
}

section.content-reports > article .buttons-col .button,
section.reports > article .buttons-col .button {
	display: block;
	margin-bottom: 5px;
	margin-right: 6px;
	float: right;
	padding-left:0;
	padding-right:0;
	font-weight:normal;
	text-align:center;
	font-size:12px;
}

section.content-reports > article .buttons-col .enquire-btn,
section.reports > article .buttons-col .enquire-btn {
	width:62px;
}

section.content-reports > article .buttons-col .submission-btn,
section.reports > article .buttons-col .submission-btn {
	width:117px;
}

section.content-reports > article .buttons-col .make-submission-btn,
section.reports > article .buttons-col .make-submission-btn {
	width:111px;
	margin-right: 0;
}

section.content-reports > article h4,
section.reports > article h4 {
  font-weight: bold;
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 0;
  float:left;
  display:block;
}

section.content-reports > article h4 a,
section.reports > article h4 a {

}

section.content-reports > article .file-size,
section.reports > article .file-size {
	font-weight:normal;
}


section.content-reports > article a.more-info,
section.reports > article a.more-info {
	float:left;
	margin-right:36px;
}

section.content-reports > article .date-range,
section.reports > article .date-range {
	font-size: 12px;
	padding-top:2px;
	float:left;
}

section.content-reports > article .info,
section.reports > article .info  {
	margin-left:36px;
}

section.content-reports > article .date-range > span,
section.reports > article .date-range > span {
  width: 160px;
  display: inline-block;
}

section.content-reports > article .date-range > span {

}

section.content-reports > article .date-range > span > span,
section.reports > article .date-range > span > span {
	font-weight:bold;
}

section.content-reports > article a.button,
section.reports > article a.button {
	background-color: #990033;
}

section.submissions {
	border-right: 1px solid #c3d1e0;
}

section.submissions article {

	background-color: #fff;
	border-left: 1px solid #c3d1e0;
	border-bottom: 1px solid #c3d1e0;
	border-top: 1px solid #c3d1e0;
	padding: 20px;
	margin-bottom: 10px;
	position: relative;
}

section.submissions article.list {

	border-top: none;
	border-right: none;
	padding: 6px;
	margin-bottom:0;
}

section.submissions article .date {
  position: absolute;
  top: 20px;
  right: 20px;
}

.submission-columns
{
	height:20px;
	font-size:12px;
	color:#637a98;
	background-color:#d5dfe9;
	padding-top:6px;
}

section.submissions article > div > div,
.submission-columns div {
	float:left;
}

.submission-columns div.submitter {
	width:57%;
}

.submission-columns div.submitter > span {
	padding-left:20px;
	display:block;
}

section.submissions article div.submitter
{
	width:57%;
}

section.submissions article div.submitter > span
{
	margin-left:14px;
	margin-right:14px;
	display:block;
}

section.submissions article div.submittion-date,
.submission-columns div.submittion-date {
	width:22%;
}

.submission-columns div.submission
{
	width:21%;
}

section.submissions article div.submission
{
	width:21%;
}

section.submissions article div.submitter,
section.submissions article div.submittion-date
{
	padding-top:7px;
	padding-bottom: 7px;
}

section.submissions article h3 {
	margin: 0;
	margin-bottom: 10px;
}

section.submissions article p {
	margin-top: 10px;
	margin-bottom: 0;
}

section.submissions > article .button
{
	  background-color: #990033;
	  display: block;
	  margin: 0;
	  font-weight: normal;
	  text-align: left;
	  font-size: 12px;
}

section.submissions > article .button:first-child
{
	margin-bottom:4px;
}

section.content-reports {
	border-bottom: 1px solid #c3d1e0;
	border-right: 1px solid #c3d1e0;
}

section.content-reports > article {
	background-color: #fff;
	border-top: 1px solid #c3d1e0;
	border-left: 1px solid #c3d1e0;
	position: relative;
	overflow: auto;
}

section.content-reports > article h3 {
	margin: 0;
	margin-bottom: 10px;
}

section.content-reports > article .buttons {
	overflow: auto;
	margin-top: 10px;
}

section.content-reports > article a.button {
	float: left;
	display: block;
	margin-right: 5px;
}

section.content-documents {
	margin-bottom: 30px;
}

section.content-documents h2 {
	margin-top: 20px;
	margin-bottom: 10px;
}

ul.files {
	display: block;
	margin: 0;
	padding: 0;
}

ul.files > li {
	display: block;
	margin: 0;
	padding: 0;
	background-repeat: no-repeat;
	padding-left: 40px;
	padding-top: 3px;
	padding-bottom: 7px;
	margin-bottom: 5px;
}

ul.files > li.img {
	background-image: url(/Images/fileImage.png);
}

ul.files > li.txt {
	background-image: url(/Images/fileText.png);
}

ul.files > li.unknown {
	background-image: url(/Images/fileUnknown.png);
}

ul.files > li.pdf {
	background-image: url(/Images/filePdf.png);
}

ul.files > li.doc {
	background-image: url(/Images/fileDoc.png);
}

ul.files > li.video {
	background-image: url(/Images/fileVideo.png);
}

ul.files > li.audio {
	background-image: url(/Images/fileAudio.png);
}

ul.files > li.zip {
	background-image: url(/Images/fileZip.png);
}

ul.files > li .file-size {
	color: #666;
	padding-left: 5px;
}

.search .filters {
	float: left;
	width: 25%;
	margin-bottom: 50px;
}

.search .filters > div {
	padding: 15px;
	padding-right: 20px;
	padding-top: 10px;
	padding-left: 0;
	margin-top: 0;
	background-image: url(/Images/searchFilterBg.png);
	background-position: right top;
	background-repeat: no-repeat;
}

.search .filters form section {
	border-bottom: 1px solid #c3d1e0;
	padding-bottom: 15px;
	padding-top: 15px;
	position: relative;
}

.search .filters form section h3 {
	font-size: 16px;
	margin: 0;
	margin-bottom: 10px;
}

.search .filters form section label {
	display: block;
	margin-top: 2px;
}

.search .filters form section input[type=text] {
	width: 205px;
}

.search .filters form section .checkbox-container:after {
	clear: both;
	content: "";
	display: block;
}

.search .filters form section .checkbox-container {
	margin-bottom: 5px;
}

.search .filters form section .checkbox-container label {
	float: left;
	width: 80%;
}

.search .filters form section .checkbox-container .togglebox {
	float: left;
	margin-right: 10px;
}

.search .filters form section:last-child {
	border-bottom: none;
}

.search .filters form .typing-icon {
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 15px;
	right: 0;
	display: none;
	background-image: url(/Images/typingIcon.png);
}

.search .base main .content {
	width: 75%;
	float: left;
}

.search .base main .content > div {
	padding-left: 30px;
}

.search .base main .content .results article {
	border-bottom: 1px solid #c3d1e0;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.search .base main .content .results article:last-child {
	border-bottom: none;
}

.search .base main .content .results article h3 {
	margin-top: 0;
}

.search .base main .content .results-title {
	margin-bottom: 40px;
}

.search .base main .content .results-area {
	opacity: 1.0;
	-moz-transition: 0.2s ease-in-out all;
	-o-transition: 0.2s ease-in-out all;
	-webkit-transition: 0.2s ease-in-out all;
	transition: 0.2s ease-in-out all;
}

.search .base main .content .results-area img.preview {
	max-height: 200px;
}

.search .base main .content .results-area.loading {
	opacity: 0.2;
}


.search .pagination {
	font-size: .9em;
	margin-bottom: 20px;
}

.search .pagination ul, .search .pagination li {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 18px;
}

.search .pagination li {
	display: inline-block;
	margin-right: .5em;
}

.search .pagination li a {
	color: #999;
}

.search .pagination .page.current a {
	font-weight: bold;
	color: #333;
}

.highlight {
	background-color: #ffe775;
}

/* Sitemap */
.sitemap .content nav {
	position: relative;
	float: left;
	width: 100%;
}

.sitemap .content nav .column {
	position: relative;
	width: 30%;
	float: left;
	margin-left: 5%;
}

.sitemap .content nav .column:first-child {
	margin-left: 0;
}

.sitemap .content nav h3 {
	padding-bottom: .75em;
	margin-bottom: 1.2em;
	border-bottom: solid 1px #e5eef8;
}

.sitemap .content nav h3 a {
	display: block;
	background-size: auto 40px;
	background-repeat: no-repeat;
	background-position: 0 center;
	font-size: 1.1em;
	font-weight: bold;
	padding-left: 2.5em;
	line-height: 40px;
	margin-top: 30px;
}

.sitemap .content nav .level-3 {
	font-size: 1.2em;
	padding-left: 0;
}

.sitemap .content nav ul li.level-3 {
	font-size: 18px;
	background-image: none;
	margin-bottom: 20px;
}

.sitemap .content nav .level-3 ul {
	list-style-type: circle;
}

.sitemap .content nav ul li {
	padding-left: 15px;
	font-size: 14px;
	background-image: url(/Images/bullet.png);
	background-repeat: no-repeat;
	background-position: 0 5px;
	background-size: 7px auto;
	margin: 10px 0;
}

/* Submission create form page */

.submission-create div.toggleHolder
{
	float:left;margin-left:29px;margin-right:18px;
}

.submission-create .togglebox.off:hover{ background-position:0 0; }
.submission-create .togglebox.on:hover{ background-position:0 -80px; }

.base .form-container.submission-create form > div textarea.comments
{
	height: 130px;
	width: 710px;
	max-width: 710px;
	min-width: 710px;
}

.base .form-container.submission-create form div.comments-field textarea.comments
{
	width: 100%;
	max-width: none;
	min-width: unset;
}

.base .form-container.submission-create form div.comments-field div {
	margin-right: 20px;
}

.base .form-container.submission-create form > div textarea.disabled
{
	background-color:#f9fbfd;
	color:#ccc;
}

.base .form-container form div.or-display-btn {
	background-image:url('/Images/form-section-or.png');
	width:50px;
	height:50px;
	margin:0;
	padding:0;
	margin:0 auto -60px auto;
}

.submission-create .form-section { border-bottom:1px solid #c3d1e0; position:relative;margin-bottom:5px !important; padding-bottom:35px;padding-top:35px;}

	.submission-create .form-section .comments-field {
		margin-left: 200px
	}

	.submission-create .form-section .comments-field div {
		margin-bottom: 15px;
	}

#confirm-modal-header
{
	height:73px;
	background: #b31f50; /* Old browsers */
	background: -moz-linear-gradient(top,  #b31f50 0%, #990033 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b31f50), color-stop(100%,#990033)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #b31f50 0%,#990033 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #b31f50 0%,#990033 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #b31f50 0%,#990033 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #b31f50 0%,#990033 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b31f50', endColorstr='#990033',GradientType=0 ); /* IE6-9 */
}

#confirm-modal-header-inner{
	background:url('/images/submission-dialog-icon.png') no-repeat 24px 20px;
	color:#fff;
	font-weight: 300;
	font-size: 24px;
	padding-left:73px;
	padding-top:20px;
}

#confirm-modal-body
{
	padding:26px 45px 80px 45px;
	font-size:1.14em;
	line-height:2em;
	color:#345d86;
}

#confirm-modal-footer
{
	height:82px;
	background-color:#dde6f1;
	border-top:1px solid #c7d3e0;
	position:relative;
}

#confirm-modal-footer .button
{
	font-size:1.07em;
	padding:13px 18px;
	font-weight:normal;
	display:inline-block;margin-left:16px;
}

#confirm-modal-buttons
{
	position:absolute;
	right:20px;
	bottom:20px;
	
}

.form-processing-message
{
	display:none;
	color:#345d86;
	font-weight:bold;
}

/* project template styles */

.listing-item {
	padding: 15px 20px;
	background-color: #fff;
	border-top: 1px solid #c3d1e0;
	border-left: 1px solid #c3d1e0;
}

.listing-item .contact-line {
	padding-bottom: 8px;
}

.listing-item .label {
	color: #0a3b6c;
	display: inline-block;
	width: 134px;
}

.timeline-holder {
	border: 1px solid #c3d1e0;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background-color:#d8e6f3;
	color:#003366;
	width:696px;
	margin-bottom:16px;
}

.timeline-holder ul{
	list-style-type:none;
	margin:0;
	padding:0;
}
.timeline-holder ul li
{
	background-image:url('/Images/project-stage-arrow.png');
	background-position:right 0;
	height:76px;
	width:158px;
	float:left;
	display:block;
	margin-right:-23px;
	position:relative;
	padding-left:23px;
}

.timeline-holder ul li.scoping {
	width: 181px;
	padding-left: 0;
	z-index: 10;
	-webkit-border-radius: 4px 0 0 4px;
	-moz-border-radius: 4px 0 0 4px;
	border-radius: 4px 0 0 4px;
}

.timeline-holder ul li span.mobile-arrow
{
	display:none;
}

.timeline-holder ul li.issues { z-index:9;width:179px; }
.timeline-holder ul li.dis-paper { z-index:8;width:177px; }
.timeline-holder ul li.pol-paper { z-index:7;width:159px; -moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background-image:none;
}

.timeline-holder ul li.active {
	background-position:right -76px;
}

.timeline-holder ul li.active:last-child {
		
	background-color:#fff;
}
	
.timeline-holder ul li span {
	display:inline-block;
	width:135px;
	padding:8px 18px 0 18px;
	line-height:1.4em;
}

.content-holder
{
	margin:6px 0;
}

.project-content-section
{
	border-top:1px solid #d2dce8;
}

.project-content-section h3 {
	width:19%;
	padding-right:10px;
	margin-bottom:20px;
	float:left;

}

.project-section
{
	padding-top:20px;
}

.project-content-section div.content-holder
{
	width:78%;
	float:right;
}

.timeline-holder-min {
	display:none;
}

/* project list */
.project-list
{

}

.project-col
{
	width:78%;
	float:left;
}

.project-list-header
{
	margin-bottom:8px;
}

.project-status
{
	width:22%;
	float:left;
	color:#003366;
}

.project-col span.header,
.project-status span.header
{
	color:#003366;
	font-weight:bold;
	font-size:14px;
}

.project {
	border-top:1px solid #dce4ef;
	background-image:url('/Images/largeSubLinkBullet.png');
	background-size: auto 62px;
	background-repeat: no-repeat;
	background-position:left 16px;
	min-height:94px;
}

.project-content
{
	padding-left:80px;
	padding-right:40px;
}

.project-content h3 {
	margin: 0;
		margin-bottom: 5px;
		margin-top:16px;
	font-size: 16px;
}

.project-content p {
	margin: 0;
}
			
.project-status div
{
	padding-top:16px;
}


/* Tablet Horizontal */
@media (max-width: 1024px) {

	/*.carousel > div > div.overlay { width: 830px; }*/
	.home-content-container {
		top: auto;
		background-image: none;
		padding-bottom: 30px;
	}

	.carousel > div {
		width: 100%;
	}

	.home-content {
		width: 100%;
		border-radius: initial;
		box-shadow: none;
		overflow: auto;
	}

	.info-block-container {
		width: auto;
	}

	.info-block {
		top: auto;
		background-position: 30px 0;
		padding-left: 170px;
		padding-right: 30px;
		font-size: 22px;
	}

	.intro a.button {
		right: 30px;
	}

	footer > .links {
		display: none;
	}

	.tab-content {
		width: 66%;
		float: left;
	}

	.prime-links-area {
		width: 34%;
		position: relative;
		float: right;
		height: 100%;
	}

	.carousel article div.carousel-content > div {
		padding: 30px;
	}

	.carousel article div.carousel-image {
		width: 50%;
		background-position: 74% center;
	}

	.carousel article div.carousel-content {
		width: 50%;
	}

	.tab-content .tabs h2 {
		width: 50%;
		padding: 0;
		margin: 0;
		border-radius: 3px 0 0 0;
	}

		.tab-content .tabs h2:last-child {
			border-radius: 0 3px 0 0;
		}

		.tab-content .tabs h2 > span {
			padding-left: 30px;
		}

	.outer-base > header {
		height: 155px;
	}

	header .primary-header {
		width: auto;
	}

		header .primary-header > nav {
			right: 0;
			left: 240px;
			top: 15px;
		}

		header .primary-header .logo {
			left: 30px;
			top: 25px;
			width: 175px;
		}

		header .primary-header > nav ul {
			width: 100%;
			box-sizing: border-box;
			padding-right: 15px;
		}

	.base main.has-nav .content > div {
		padding: 30px;
	}


	.outer-base > header .secondary-nav a {
		padding-left: 10px;
		padding-right: 10px;
	}

		.outer-base > header .secondary-nav a:first-child {
			padding-left: 30px;
		}

	header .primary-header > nav ul li {
		width: 16.66%;
		padding: 0 5px;
		border-radius: 3px;
		overflow: hidden;
		box-sizing: border-box;
	}

		header .primary-header > nav ul li a {
			width: auto;
			border-radius: 3px;
			height: 86px;
			border-radius: 3px;
			background-image: none;
			border: 2px solid #eee;
		}

			header .primary-header > nav ul li a .icon {
				position: relative;
				left: auto;
				right: auto;
			}

			header .primary-header > nav ul li a:hover {
				background-image: none;
				background-color: #f9eef2;
				border-color: #f1d5de;
			}

		header .primary-header > nav ul li.selected a {
			background-image: url(/Images/sideNavHeaderBg.png);
			background-size: auto 100%;
			background-repeat: repeat-x;
			background-position: 0 0;
			border: 2px solid #990033;
		}

	.prime-links-area article p {
		font-size: 14px;
	}

	.prime-links-area article {
		padding: 15px;
		background-position: 15px 15px;
	}

	.home-content {
		background-image: none;
	}

	footer > .company-details {
		width: auto;
		height: auto;
	}

		footer > .company-details .logo {
			left: 30px;
			top: 20px;
			width: 120px;
		}

		footer > .company-details .email {
			right: 30px;
			top: 12px;
		}

		footer > .company-details .phone-number {
			right: 30px;
			top: 55px;
		}

		footer > .company-details .address {
			right: 30px;
			top: 38px;
		}

	.outer-base > header .secondary-nav > nav {
		width: auto;
	}

	.base {
		width: auto;
	}

	.intro > div {
		width: auto;
	}

		.intro > div p {
			width: 60%;
			font-size: 16px;
		}

	.landing-links article {
		width: 50%;
	}

		.landing-links article .icon {
			left: 30px;
		}

		.landing-links article > div {
			margin-left: 137px;
		}

	.intro > div > div {
		padding-left: 30px;
	}

	.base main nav > div {
		margin-left: 30px;
	}

	.base main nav {
		width: 30%;
	}

	.base main.has-nav .content {
		width: 70%;
	}

	.base main .content > div {
		padding: 30px;
	}

	.outer-base.search .base main .content > div {
		padding: 30px;
	}

	.intro > div h1, .intro > div p, .intro.content-intro > div p {
		width: 50%;
	}

	.search .filters > div {
		padding: 10px 20px 15px 20px;
	}

	.search .filters form section input[type="text"] {
		width: 90%;
	}

	.base .form-container form div.checkbox-container label {
		width: 90%;
	}

	.base .form-container .radio-container label {
		width: 90%;
	}

	.base .form-container form > div textarea {
		max-width: 70%;
		min-width: 70%;
		width: 70%;
	}

	.sitemap .content nav {
		box-sizing: border-box;
		padding: 0 20px;
	}

	#SurveyOption4Text, #SurveyOption6Text {
		margin-top: 10px;
	}

}

/* Tablet Vertical */
@media (max-width: 768px) {

	.outer-base > header .secondary-nav a:first-child {
		padding-left: 15px;
	}

	header .primary-header .logo {
		left: 20px;
		width: 160px;
		top: 30px;
	}

	header .primary-header > nav {
		right: 0;
		left: 200px;
	}

	.carousel article > div {
		margin: 0 80px 0 80px;
	}

	.carousel article {
		height: 300px;
	}

	.carousel {
		height: 300px;
	}

	.carousel > div > div.overlay > div {
		height: 300px;
	}

	.carousel > div > div.overlay div a {
		top: 112px;
	}

	.carousel > div > div.overlay .left a {
		right: 46px;
	}

	.carousel > div > div.overlay .right a {
		left: 46px;
	}

	.carousel article div.carousel-image {
		height: 300px;
	}

	.carousel article p {
		line-height: 120%;
		font-size: 14px;
	}

	.carousel article h1, .carousel article h2 {
		font-size: 22px;
	}

	.prime-links-area .your-say div {
		left: 90px;
	}

	.prime-links-area .your-say div strong {
		font-size: 14px;
	}

	.intro {
		height: auto;
	}

	.intro > div {
		height: auto;
	}

	.intro > div > div {
		background-image: none;
		height: auto;
		padding: 30px;
	}

	.intro.content-intro > div > div {
		background-image: none;
	}

	.intro .icon {
		display: none;
	}

	.intro.content-intro .sub-icon {
		display: none;
	}

	.intro > div h1, .intro > div p {
		width: auto;
	}

	.intro > div h1, .intro > div p, .intro.content-intro > div p {
		width: auto;
	}

	.search .filters {
		width: 100%;
		margin-bottom: 0;
		background-color: #e5eef8;
		border-bottom: 1px solid #c3d1e0;
	}

	.search .filters form section input[type="text"] {
		width: 98%;
	}

	.search .filters > div {
		background-image: none;
	}

	.search .base main .content {
		width: auto;
		padding-top: 0;
	}

	.search .filters form section .checkbox-container {
		float: left;
		width: 33.33%;
	}

	.search .filters form section:after {
		clear: both;
		content: "";
		display: block;
	}

	.search .filters form section {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	/* Sitemap */
	.sitemap .content nav .column {
		width: 48%;
		margin: 0;
	}

	.sitemap .content nav .column:nth-child(2n) {
		float: right;
	}

	.project-content-section h3 {
		width:100%;
		padding-right:0;
		float:none;
	}

	.project-content-section div.content-holder
	{
		width:100%;
		float:none;
	}

	.timeline-holder {
		padding-bottom:20px;
		color:#355e86;
		font-weight: 500;
		font-size: 18px;
		border:none;
		background-color:transparent;
		width:auto;
		margin-bottom:0;
	}

	

	.timeline-holder ul li span.mobile-arrow
	{
		display:inline;
	}

	.timeline-holder ul li
	{
		background-image:none;
		display:block;
		height:auto;
		width:100%;
		margin:0;
		padding:0;
		float:none;
	}

	.timeline-holder ul li.active {
		font-weight:bold;
		color:#990033
	}

	.timeline-holder ul li.scoping { z-index:10;width:auto; }
	.timeline-holder ul li.issues { z-index:9;width:auto; }
	.timeline-holder ul li.dis-paper { z-index:8;width:auto; }
	.timeline-holder ul li.pol-paper { z-index:7;width:auto	}

	.timeline-holder ul li span
	{
		display:inline;
		width:auto;
		padding-left:0;
		padding-right:0;
	}
	
}

/* Mobile Horizontal */
@media (max-width: 680px) {

	section.content-reports h3,
	section.reports h3 {
		padding: 10px 15px;
	}

	section.reports .listing-item
	{
		padding: 15px;
	}

	body { 
		font-size: 16px;
		background-color: #f3f7fb;
	}

	.outer-base > header {
		height: auto;
	}

	.outer-base > header > div {
		height: auto;
	}

	header .primary-header > div {
		padding: 15px;
	}

	header .primary-header .logo {
		position: relative;
		left: auto;
		top: auto;
		height: 60px;
		width: 170px;
		background-size: auto 100%;
	}

	header .primary-header > nav {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		background-color: #990033;
		width: 100%;
	}

	header .primary-header > nav ul {
		overflow: auto;
		padding-right: 0;
	}

	header .primary-header > nav ul li { /*width: 12.5%;*/
		float: left;
		margin: 0;
		padding: 0;
		background-image: none;
		border-radius: 0;
	}

	header .primary-header > nav ul li.selected {
		background-color: #6b0024;
	}

	.outer-base > header .secondary-nav {
		display: none;
		position: absolute;
		right: 20px;
		top: 68px;
		width: 70%;
		height: auto;
		z-index: 2;
		background-color: #333;
		box-shadow: rgba(0,0,0,0.3) 0 5px 20px;
	}

	.outer-base > header .secondary-nav.show {
		display: block;
	}

	.outer-base > header .secondary-nav > nav {
		padding: 15px;
		position: relative;
	}

	.outer-base > header .secondary-nav a {
		display: block;
		float: none;
		font-size: 16px;
	}

	.outer-base > header .secondary-nav input {
		position: relative;
		width: 91%;
		margin-top: 20px;
		font-size: 16px;
	}

	.outer-base > header .secondary-nav div a {
		right: 0;
		top: 20px;
	}

	header .mobile-menu-button {
		display: block;
		width: 50px;
		height: 50px;
		background-color: #444;
		border-radius: 3px;
		background-image: url(/Images/mobileMenuButton.png);
		background-size: 100% auto;
		position: absolute;
		right: 20px;
		top: 18px;
	}

	header .mobile-menu-button.on {
		background-position: 0 -60px;
		border-radius: 3px 3px 0 0;
	}

	header .mobile-menu-button > span {
		display: none;
	}

	header .primary-header > nav ul li.selected a {
		background-image: none;
		border: none;
		border-right: 1px solid #b84d71;
	}

	/*header .primary-header > nav ul li.search { display: block; }*/
	header .primary-header > nav ul li a .icon {
		position: relative;
		left: auto;
		right: auto;
		background-position: center -50px;
	}

	header .primary-header > nav ul li a > span {
		color: #fff;
	}

	header .primary-header > nav ul li a {
		border: 1px solid #b84d71;
		border-top: none;
		border-left: none;
		border-bottom: none;
		width: auto;
		height: 86px;
		overflow: hidden;
		border-radius: 0;
	}

	header .primary-header > nav ul li:last-child a {
		border-right: none;
	}

	header .primary-header > nav ul li a:hover {
		background-image: none;
		background-color: transparent;
		border-color: #b84d71;
	}

	.carousel article div.carousel-content {
		background-color: #103f70;
	}

	.carousel > div > div.overlay > div {
		background-image: none;
	}

	.carousel > div > div.overlay .left {
		display: none;
	}

	.carousel > div > div.overlay {
		top: 0;
		bottom: 0;
		left: 0;
		width: 50%;
		height: auto;
		height: 300px;
	}

	.carousel > div > div.overlay .right {
		padding: 0;
		margin: 0;
		right: auto;
		left: 0;
		bottom: 0;
		top: auto;
	}

	.carousel > div > div.overlay .right a {
		left: 0;
		bottom: 0;
		top: auto;
	}

	.carousel article div.carousel-content > div {
		padding: 15px;
	}

	.carousel article > div {
		margin: 0;
	}

	.carousel article p {
		color: #bfd1e1;
		line-height: 110%;
		font-size: 14px;
	}

	.carousel article div.carousel-content a {
		background-image: url(/Images/carouselMoreButtonMobile.png);
	}

	.carousel article div.carousel-content a:hover {
		background-position: 0 0;
	}

	.carousel article div.carousel-image {
		background-position: 70% center;
	}

	.tab-content {
		width: auto;
		float: none;
	}

	.tab-content section {
		min-height: initial;
	}

	.landing-links article {
		width: auto;
		float: none;
		margin-bottom: 20px;
		height: auto;
	}

	.landing-links article .icon {
		width: 70px;
		height: 70px;
	}

	.landing-links article > div {
		min-height: 70px;
		margin-left: 117px;
	}

	footer {
		display: none;
	}

	.info-block-container {
		display: none;
	}

	.intro.content-intro > div > div {
		background-image: none;
	}

	.roads .intro.content-intro .sub-icon {
		display: none;
	}

	.home-content-container {
		padding-bottom: 0;
	}

	.prime-links-area {
		float: none;
		width: auto;
	}

	.prime-links-area article {
		padding-bottom: 0;
	}

	.prime-links-area article:last-child {
		padding-bottom: 20px;
	}

	.tab-content section article:last-child {
		padding-bottom: 0;
	}

	.landing-links {
		padding-bottom: 1px;
		margin-bottom: 0;
	}

	.intro > div > div {
		padding-left: 30px;
	}

	.base main nav {
		float: none;
		width: auto;
		margin-top: 0;
		margin-bottom: 0;
	}

	.base main .content, .base main.has-nav .content {
		float: none;
		width: auto;
	}

	.base main nav > div {
		margin-left: 20px;
		margin-right: 20px;
		margin-top: 0;
	}

	.base main nav > div > ul > li ul {
		font-size: 14px;
	}

	.base main nav > div.nav {
		font-size: 16px;
	}

	section.content-reports > article .title-col,
	section.reports > article .title-col {
		width: 100%;
		float: none;
	}

	section.content-eports > article .title-col > div,
	section.reports > article .title-col > div {
		padding: 15px;
		padding-bottom: 0;
	}

	section.content-reports > article .buttons-col,
	section.reports > article .buttons-col {
		width: auto;
		padding-top:10px;
		float: none;
	}

	section.content-reports > article .buttons-col > div,
	section.reports > article .buttons-col > div {
		overflow: auto;
		padding: 15px;
		padding-top: 0;
	}

	section.content-reports > article .buttons-col .button,
	section.reports > article .buttons-col .button {
		float: left;
		margin-right: 5px;
		margin-bottom: 5px;
	}

	.search .filters form section .checkbox-container {
		width: 50%;
	}

	.base .form-container form > div.required {
		background-position: 135px 10px;
	}

	.base .form-container form > div label {
		width: 130px;
	}

	.base .form-container .checkbox-container {
		margin-left: 0;
	}

	.base .form-container h3 {
		margin-left: 0;
	}

	.base .form-container .form-indent {
		margin-left: 0;
	}

	.base .form-container .radio-container {
		margin-left: 0;
	}

	.base .form-container .button-container {
		margin-left: 0;
	}

	.base .form-container form > div select {
		width: 50%;
	}

	.base .form-container form > div input[type="text"] {
		width: 50%;
	}

	.base .form-container form > div input[type="password"] {
		width: 50%;
	}

	.base .form-container form > div input[type=email] {
		width: 50%;
	}

	.base .form-container .indent {
		margin-left: 0;
	}

	.g-recaptcha {
		margin-left: 0;	
	}
}

/* Mobile Vertical */
@media (max-width: 460px) {
	.carousel article h1, .carousel article h2 {
		font-size: 16px;
		margin-bottom: 10px;
	}

	header .primary-header > nav ul li {
		width: 33.33%;
		float: left;
		margin: 0;
		padding: 0;
		background-image: none;
	}

	header .primary-header > nav ul li a {
		border: 1px solid #b84d71;
		border-top: none;
		border-left: none;
	}

	header .primary-header > nav ul li:nth-child(3n) a {
		border-right: none;
	}

	header .primary-header > nav ul li:nth-child(1n+4) a {
		border-bottom: none;
	}

	header .primary-header > nav ul li.selected:nth-child(1) a {
		border-bottom: 1px solid #b84d71;
	}

	header .primary-header > nav ul li.selected:nth-child(2) a {
		border-bottom: 1px solid #b84d71;
	}

	header .primary-header > nav ul li.selected:nth-child(3) a {
		border-bottom: 1px solid #b84d71;
	}

	.landing-links {
		margin-top: 20px;
	}

	.landing-links article .icon {
		left: 20px;
	}

	.landing-links article > div {
		margin-left: 107px;
	}

	.outer-base > header .secondary-nav input {
		width: 88%;
	}

	.base main .content section.links > article {
		background-size: 48px auto;
		padding-left: 60px;
	}

	section.content-reports > article .buttons-col .button,
	section.reports > article .buttons-col .button {
		float: none;
	}

	section.content-reports > article .buttons-col .make-submission-btn,
	section.reports > article .buttons-col .make-submission-btn {
		width:100%;
	}

	section.content-reports > article .buttons-col .submission-btn,
	section.reports > article .buttons-col .submission-btn {
		width:100%;
	}

	section.content-reports > article .buttons-col .enquire-btn,
	section.reports > article .buttons-col .enquire-btn {
		width:100%;
	}

	section.reports > article a.button,
	section.content-reports > article a.button {
		float: none;
		margin-bottom: 5px;
	}

	.base .form-container form > div.required {
		background-position: 0 10px;
	}

	.base .form-container form > div.required label {
		padding-left: 15px;
	}

	.base .form-container form > div select {
		width: 100%;
	}

	.base .form-container form > div input[type="text"] {
		width: 100%;
	}

	.base .form-container form > div input[type="password"] {
		width: 100%;
	}

	.base .form-container form > div input[type=email] {
		width: 100%;
	}

	.base .form-container form div.checkbox-container label {
		width: 80%;
	}

	.base .form-container .radio-container label {
		width: 80%;
	}

	/* Sitemap */
	.sitemap .content nav .column {
		width: auto;
		float: none;
	}

	.sitemap .content nav .column:nth-child(2n) {
		float: none;
	}

	/* submissions table */
	.submission-columns {
		display:none;
	}

	section.submissions article div.submitter
	{
		float:none;
		width:auto;
	}

	section.submissions article div.submittion-date
	{
		float:none;
		width:auto;
		padding: 0 14px 10px 14px;
	}

	section.submissions article div.submission
	{
		float:none;
		width:auto;
	}

	/* project list */
	.project {
		background-size: 48px auto;
	}

	.project-content{
		padding-left: 60px;
	}

	.submission-create .form-section .comments-field {
		margin-left: 0;
	}

	.base .form-container.submission-create form div.comments-field div,
	.base .form-container.submission-create .checkbox-container,
	.base .form-container.submission-create form .button-container
	{
		margin-left: 20px;
		margin-right: 20px;
	}	

	.base .form-container.submission-create form .comments-field {
		clear: both;
	}

	.base .form-container.submission-create form .question-label {
		margin-left: 0 !important;
	
	}
}
/* EDITOR PROPERTIES - PLEASE DON'T DELETE THIS LINE TO AVOID DUPLICATE PROPERTIES */
