@font-face {
  font-family: 'Nasalization';
  src:  url('../fonts/nasalization-rg.ttf') format('truetype'),
  		url('../fonts/nasalization-rg.woff2') format('woff2'),
        url('../fonts/nasalization-rg.woff') format('woff');
}

::selection {
    background: cyan;
}

::-moz-selection {
    background: cyan;
}

body {
    color: #999;
    background-color: #1e1e1e;
}

.centre {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Core Style Overrides */

h1, h2, h3, .future-font {
  font-family: 'Nasalization', Helvetica, Arial, sans-serif;

  text-shadow: 1px 1px 1px #000;
}

h2 {
	font-size: 25px;
}

h3 {
    margin-top: 35px;
}

p {
  color: #888;
}

a:hover, a:focus, a:active {
	color: #9cbce3;
	text-decoration: none;
}

.label-default {
  background-color: #2f3238;
}

.label {
  color: #777;
}

.row-content {
    margin-top: 20px;
    margin-bottom: 25px;
}

.emphasise-copy {
    color: yellow;
    font-size: 20px;
    font-weight: bold;
}

/* Button Primary is used in the homepage carousel */

.btn-primary, .btn-primary:hover {
	border-color: #72acdf;

	-moz-box-shadow: inset 0 -10px 40px -10px #5d91bf;
	-webkit-box-shadow: inset 0 -10px 40px -10px #5d91bf;
	box-shadow: inset 0 -10px 40px -10px #5d91bf;

}

/* Button Default is used in the body per folio item */

.btn-default {
	color: #bbb;
	background-color: #2f3238;
	border-color: #555;

	-moz-box-shadow: 0 2px 2px 0 #000;
	-webkit-box-shadow: 2px 2px 0 #000;
	box-shadow: 0 2px 2px 0 #000;
}

.nav-title {
	padding-top: 17px;
	font-size: 14px;
}

.navbar {
	margin-bottom: 0;
}

.navbar-inverse {
	background-color: #1e1e1e;
	border-color: #000;

	border-top: 1px solid #3c3c3c;
    
    -moz-box-shadow: inset 0 10px 40px -10px #333;
    -webkit-box-shadow: inset 0 10px 40px -10px #333;
    box-shadow: inset 0 10px 40px -10px #333;
}

/* Separators appear as black gradial strips used on core modules */

.separator {
	margin: 0;
	padding: 0;
	width: 100%;
}

.separator > img {
	width: inherit;
	height: 12px;
	vertical-align: top;
}

.featurette-divider-stick {
	border-top: 1px solid #666;
	margin: 0;
	padding: 0;
}

/* Carousel Custom Styles (Big Top Graphics + Index Slideshow) */

.carousel {
	margin: 0;
}

#myCarousel {
	text-align: center;
	overflow: hidden;
	position: relative;
}

.carousel-inner > .item {
	overflow: hidden;
}

.carousel-inner > .item > img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: auto;
    
    -webkit-transform: translate(-50%, -50%);
    -moz-transform:    translate(-50%, -50%);
    -ms-transform:     translate(-50%, -50%);
    -o-transform:      translate(-50%, -50%);
    transform:         translate(-50%, -50%);
}

@media (max-width:1020px) {

	.carousel-inner > .item > img {
		height: 100%;
		width: auto;
		max-width: none;
		min-width: none;
	}

}

/* Body Content Styles For Portfolio Items */

.thumbnail {
	background-color: #333;
	border: 1px solid #444;
	color: #888;
	text-align: center;
	font-size: 10px;
}

.thumbnail > p {
	margin: 10px 0 5px;
}

a.thumbnail {
	color: #337ab7;
}

a.thumbnail:hover {
	color: #337ab7;
	text-decoration: none;
}