/*

Speak friend and enter.

======================= TABLE OF CONTENTS ======================*/
/*
*
*	1. COLOURS
*	2. TYPOGRAPHY
*	3. GLOBAL STYLES
*	4. STRUCTURE
*	5. COMPONENT STYLES
*	6. WIDGET STYLES
*	7. THIRD PARTY STYLES
*
*/
/*-------------------------- COLOURS ---------------------------*/
/*

	#fffff8 - White(ish)
	#3b3b3b - Black(ish)
	#484848 - Dark Grey
	#afafaf - Light Grey
	#e8e8e8 - Ultra Light Grey
	#f9f9f9 - White Grey
	#aa852a - Gold
	#bb9300 - Gold Highlight
	#5b4925 - Dark Brown
	#a79b83 - Grey Brown
	#847b7d - Grey Purple

*/
.faded {
	color: #afafaf !important;
}
/*........ DARK STYLES .......*/
.dark {
	background: #3b3b3b !important;
	color: #fffff8 !important;
}
.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6, .dark .h1, .dark .h2, .dark .h3, .dark .h4, .dark .h5, .dark .h6 {
	color: #fffff8 !important;
}
.dark .faded {
	color: #afafaf !important;
}
/*------------------------- TYPOGRAPHY -------------------------*/
* {
	font-size: 20px;
	font-family: 'Libre Baskerville', serif;
	line-height: 1.9;
	box-sizing: border-box;
}
span {
	font-size: inherit;
	font-family: inherit;
}
/*..... BASIC TEXT STYLES ....*/
p {
	margin: 0 0 1em 0;
}
h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	margin: 0.5em 0;
}
h1, .h1 {
	font-size: 2em;
	color: #3b3b3b;
}
h2, .h2 {
	font-size: 1.8em;
	color: #aa852a;
}
h3, .h3 {
	font-size: 1.6em;	
	color: #5b4925;
}
h4, .h4 {
	font-size: 1.4em;
	color: #a79b83;
}
h5, .h5 {
	font-size: 1.2em;
	color: #484848;
}
h6, .h6 {
	font-size: 1em;
	color: #aa852a; /* Had been #847b7d */
}
ol.special li {
	font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.35em;
    line-height: 0;
    color: #a79b83;
}
ol.special p {
	color: #484848;
}
.flourish {
	font-style: italic;
	font-size: 2em;
	line-height: 1;
	margin-bottom: 0.5em;
	color: #a79b83;
}
u {
	text-decoration: none;
	border-bottom: 4px double #afafaf;
}
/*..... LINKS & BUTTONS ......*/
a {
	border-bottom: 2px solid;
	text-transform: uppercase;
	font-size: 0.8em;
	text-decoration: none;
	color: #484848;
}
a:hover {
	color: #3b3b3b;
	background: rgba(0, 0, 0, 0.04); /* #f9f9f9 */
}
a.button {
	font-size: 0.75em;
	font-style: normal;
	margin-bottom: 0.5em;
	padding: 0.5em 0.65em;
	border-radius: 0.25em;
	display: inline-block;
	background-color: #aa852a;
	border: 2px solid #aa852a;
	color: #fffff8;
	letter-spacing: 0.15em;
}
a.button:hover {
	background-color: #bb9300;
	border: 2px solid #bb9300;
	color: #fffff9;
}
a.button.large {
	font-size: 0.8em;
}
a.button.ghost {
	background: none;
	color: #aa852a;
	border: 2px solid #aa852a;
}
a.button.ghost:hover {
	color: #5b4925;
	border: 2px solid #5b4925;
}
.dark a.button {
	background-color: #aa852a;
	border: 2px solid #aa852a;
	color: #fffff8;
}
.dark a.button:hover {
	background-color: #afafaf;
	border: 2px solid #afafaf;
	color: #3b3b3b;
}
.dark a.button.ghost {
	background: none;
	color: #aa852a;
	border: 2px solid #aa852a;
}
.dark a.button.ghost:hover {
	color: #afafaf;
	border: 2px solid #afafaf;
}
.bar a.button {
	margin-bottom: 0;
}
nav li a {
	text-transform: none;
	font-size: 0.75em;
	padding: 1em 0.6em;
	color: #afafaf;
}
nav li a.active, nav li a.active:hover {
	color: #aa852a;
}
nav li a:hover {
	color: #fffff8;
	background: none;
}
nav ul li::before {
	color: #847b7d;
}
figure a {
	border-bottom: none;
}
/*......... ALIGNMENT ........*/
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
@media screen and (max-width: 960px) {
	.mobile-center {
		text-align: center !important;
		margin: 0 auto;
	}
}
/*........ TOP OF PAGE .......*/
.intro, .intro h1 {
	color: #fffff8;
}
.intro p {
	font-size: 1.2em;
	font-style: italic;
	color: #aa852a;
}
.intro p.opening-times {
	line-height: 1.2;
	margin: 2em 0;
}
.intro p.opening-times span {
	font-size: 0.7em;
}
.intro p.opening-times span:first-of-type {
	font-size: 0.5em;
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #b59d62;
}
@media (min-width: 1200px) {
	.intro h1, .intro .h1 {
		font-size: 2.75em;
	}
	.intro p {
		font-size: 1.5em;
	}
}
/*.......... QUOTES ..........*/
blockquote {
	position: relative;
	margin: 2em;
}
blockquote p:first-child:before {
	content: '\201C';
	color: #e8e8e8;
	font-size: 6em;
	position: absolute;
	top: -0.5em;
	left: -0.4em;
	z-index: -1;
}
blockquote p {
	font-size: 1.2em;
	font-style: italic;
	margin-bottom: 0.25em;
}
blockquote footer cite {
	font-style: normal;
	color: #a79b83;
}
blockquote.testimonial {
	text-align: center;
	padding: 0 10%;
}
/*........... CODE ...........*/
pre {
	white-space: pre-line;
	font-size: 0.75em;
	line-height: 2;
	padding: 1em;
	border-radius: 0.25em;
	background-color: #3b3b3b;
}
code {
	padding: 0.25em 0.5em;
	border-radius: 0.25em;
	background: #3b3b3b;
	color: #fffff8;
}
pre code {
	padding: 0;
}
/*............ NAV ...........*/
p.address {
	font-style: normal;
	font-size: 0.8em;
}
/*p.address::before {
	content: url(images/icons/svg/pin.svg);
	width: 32px;
	height: 32px;
	fill: #aa852a;
}*/
figcaption, span.cite, span.cite cite {
	font-style: italic;
	text-align: center;
}
figcaption {
	font-size: 0.75em;
}
span.cite, span.cite cite {
	font-style: normal;
	text-transform: uppercase;
	font-size: inherit;
}
span.cite {
	font-size: 0.6em;
}
span.cite cite a {
	font-size: inherit;
}
span.cite, span.cite cite a {
	color: #afafaf;
}
.small-caps {
	font-variant: small-caps;
	font-size: 1.1em;
}
.all-caps {
	text-transform: uppercase;
	font-size: 0.8em;
}
.squished, .squished * {
	line-height: 1.75 !important;
}
.virtual-line {
	display: block;
}
@media screen and (max-width: 960px) {
	.virtual-line {
		display: inline;
	}
}
.announcement {
	text-align: center;
}
button, input, optgroup, select, textarea {
	font-family: 'Libre Baskerville', serif;
}
footer.footer .copyright, footer.footer ul.privacy-terms li a {
	font-size: 0.5em;
	text-align: center;
	border: none;
}
footer.footer ul.privacy-terms {
	margin: 1em 0 1em 0;
	text-align: center;
}
/* FIX THESE UP AND PUT IN THE RIGHT PLACE */
/*..... FOOD & DRINK MENU ....*/
.menu table td {
	border: 0;
	padding: 0 0 1em 0;
}
.menu table td .overflowing {
	overflow: hidden; /* Sadly a fix to ensure leading dots work*/
}
.menu .tag {
	position: relative;
	top: -0.2em;
	padding: 0.5em 0.5em 0.5em 0.75em;
	margin: 0 0.2em;
	border-radius: 0.3em;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 0.6em;
	text-transform: uppercase;
	letter-spacing: 0.2em;
}
.menu table tr td {
	vertical-align: top;
}
.menu table td .title {
	font-weight: bold;
	position: relative;
}
.menu table td.price {
	padding-left: 0.5em; /* This matches td .title::after margin-left */
}
.menu table td .title::after {
	content: '';
	position: absolute;
	bottom: 0.25em;
	width: 710px;
	height: 0px ;
	margin-left: 0.5em; /* This matches td.price padding-left */
}
.menu table td .description {
	display: block;
	font-style: italic;
}
.menu table td .contains {
	font-size: 0.75em;
	margin: 0.5em 0;
}
.menu .price {
	color: #5b4925;
}
.menu .description {
	color: #847b7d;
}
.menu .title::after {
	border-bottom: 2px dotted #afafaf;
}
.menu .bg-text {
    text-align: right;
    height: 0;
    position: relative;
    /*position: -webkit-sticky;
    position: sticky;*/
    top: -1.15em;
    right: -0.5em;
    font-size: 7em;
    font-style: italic;
    z-index: -1;
    color: rgba(0, 0, 0, 0.04);
}
/*........... ICONS ..........*/
span.icon-spicy {
	display: inline-block;
	width: 32px;
	height: 32px;
	background: url(images/icons/icon-spicy.png) no-repeat;
	background-size: cover;
}
span.icon-vegetarian {
	display: inline-block;
	width: 26px;
	height: 26px;
	margin-bottom: 3px;
	background: url(images/icons/icon-vegetarian.png) no-repeat;
	background-size: cover;
}
span.icon-vegan {
	display: inline-block;
	width: 26px;
	height: 26px;
	margin-bottom: 3px;
	background: url(images/icons/icon-vegan.png) no-repeat;
	background-size: cover;
}
span.icon-gluten-free {
	display: inline-block;
	width: 26px;
	height: 26px;
	margin-bottom: 3px;
	background: url(images/icons/icon-gluten-free.png) no-repeat;
	background-size: cover;
}
span.icon-gluten-free-2 {
	display: inline-block;
	width: 26px;
	height: 26px;
	margin-bottom: 3px;
	background: url(images/icons/icon-gluten-free-2.png) no-repeat;
	background-size: cover;
}
p.icon-row {
	text-align: center;
	margin-bottom: 0;
}
p.icon-row svg {
	fill: #484848;
	width: 50px;
	height: 50px;
	transition: all 0.3s;
}
p.icon-row svg:hover {
	fill: #e8e8e8;
	width: 50px;
	height: 50px;
}
/*----------------------- GLOBAL STYLES ------------------------*/
body {
	background-color: #fffff8;
	color: #484848;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden; /* this ensures img.full-width works properly*/
}
body.noscroll {
	overflow: hidden;
/*	position: fixed; 
	overflow-y: scroll;
	width: 100%;*/
}
::selection {
	background: #aa852a;
	color: #fffff8;
}
a {
	transition: all 0.3s;
}
hr {
	height: 1px;
	border: 0;
	margin: 2em 0;
	background-color: #e8e8e8;
}
mark {
	padding: 0.2em 0.3em;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	-o-box-decoration-break: clone;
	background-color: #aa852a;
	color: #fffff8;
}
.primary-color {
	color: #aa852a;
}
span.cite {
	display: block;
	margin-top: 0.5em;
}
/*.......... FOOTER ..........*/
footer.footer {
	background: #000000;
	width: 100%;
	margin-top: 2em;
	padding: 2em 0;
}
footer.footer ul {
	list-style: none;
	padding-left: 0;
}
footer.footer ul.privacy-terms li a {
	color: #afafaf;
}
footer.footer ul.privacy-terms li {
	display: inline-block;
	margin: 0 0.25em;
}
footer.footer ul.privacy-terms li a {
	color: #847b7d;
}
footer.footer ul.privacy-terms li a:hover {
	color: #fffff8;
	background: none;
}
footer p {
	color: #484848;
}
footer.footer .copyright {
	color: #aa852a;
}

/*........ NAVIGATION ........*/
header {
	min-height: 100px; /* TOM - can you make all these 100px's a variable for the user to customise? */
	position: absolute;
	z-index: 1;
	width: 100%;
}
header.light {
	background-color: #fffff8;
	border-bottom: 1px solid #e8e8e8;
}
nav {
	max-width: 750px;
	margin: 0 auto;
	padding: 0 20px;
}
nav a.logo img {
	height: 40px;
	display: inline-block;
	vertical-align: middle;
}
a.logo {
	border: none;
}
a.logo:hover {
	background: none;
}
nav ul {
	text-align: right;
}
nav ul li {
	display: inline;
}
nav ul li:first-child::before {
	content:" ";
}
nav ul li::before {
	content:"\00b7";
	margin-right: 0.3em;
}
nav ul li a {
	border-bottom: none;
}
.mobile-navigation-toggle {
	font-size: 1.8em;
	font-weight: bold;
	float: right;
	margin-top: -15px;
	color: #aa852a;
}
@media (max-width: 1200px) {
	.desktop-navigation {
		display: none;
	}
	header {
		/* REMOVE IF HEADLINE JS KEPT */
		/*background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 100%);*/
		/*position: fixed !important;*/
	}
	nav {
		position: relative;
		z-index: 3; /* In front of mobile nav */
	}
	nav.mobile {
		display: block;
		overflow: hidden;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		position: fixed;
		z-index: 2; /* Behind Main Nav*/
		background: rgba(0,0,0,0.95);
		width: 100%;
		height: 100%;
		max-width: 100%;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s;
	}
	nav.mobile.open {
		opacity: 1;
		visibility: visible;
		overflow: auto;
	}
	nav.mobile.open .vertical-parent.full-height {
		padding: 1em;
	}
	nav.mobile.open + nav {
		position: fixed;
		width: 100%;
		z-index: 2;
		left: 50%;
		transform: translate(-50%, 0);
	}
	nav.mobile.open + nav .logo {
		opacity: 0.1;
	}
	nav.mobile.open + nav span.hamburger {
		display: none !important;
	}
	nav.mobile.open + nav span.close {
		display: inline-block;
	}
	ul.mobile-navigation {
		text-align: center;
		padding-left: 0;
	}
	ul.mobile-navigation li {
		display: block;
		font-size: 2em;
	}
	ul.mobile-navigation li::before {
		content: "";
	}
	ul.mobile-navgation li {
    animation: fadein 2s;
    -moz-animation: fadein 2s; /* Firefox */
    -webkit-animation: fadein 2s; /* Safari and Chrome */
	}
	.mobile .mobile-navigation-toggle {
		position: fixed;
		top: 25px;
		padding-right: 20px;
		right: 0px;
	}
	.mobile-navigation-toggle .close {
		display: none;
	}
}
@media (min-width: 1200px) {
	.mobile, .mobile-navigation-toggle {
		display: none !important;
	}
	nav {
		max-width: 1000px;
	}
	nav a.logo img {
		height: 50px;
	}
}
/*.......... IMAGES ..........*/
figure {
	margin: 6em 0; /* Make all these 6ems a variable */
}
figcaption {
	margin: 0.5em 40px 0 40px;
}
img {
	max-width: 100%;
	display: block;
	margin: 0 auto;
}
img.full-width {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	max-width: 100vw;
}
img.right {
	margin-right: 0;
	margin-left: auto;
}
img.left {
	margin-left: 0;
	margin-right: auto;
}
img.bordered{
	padding: 0.25em;
	border: 1px solid #e8e8e8;
	border-radius: 0.25em;
	transition: border 0.3s;
}
img.bordered:hover {
	border: 1px solid #afafaf;
}
.parallax::before {
	background-attachment: fixed !important;
}
.always-400px-tall {
	/* MAY REQUIRE POLYFILL TO WORK ON IE8 */
	object-fit: cover;
	height: 400px;
	/* Users can adjust image position inline with object-position %fromleft %fromtop */
}
/*.......... TABLES ..........*/
.responsive-table {
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
}
table {
	width: 100%;
	max-width: 100%;
	border-collapse: collapse;
}
thead > tr > th {
	background-color: #e8e8e8;
	border-bottom: 1px solid #afafaf;
}
th, td {
	padding: 0.25em 0.5em;
	border: 1px solid #afafaf;
}
/*....... FORM ELEMENTS ......*/
form {
	/*max-width: 750px;*/
	margin: 0 auto;
}
fieldset legend {
	padding: 0 0.5em;
	color: #aa852a;
}
fieldset {
	padding: 0.5em 1em;
	margin: 1em 0;
	border: 1px solid #aa852a;
}
[type=reset], [type=submit], button, html [type=button] {
	font-size: 0.6em;
	font-style: normal;
	margin-bottom: 0.5em;
	padding: 0.5em 0.75em;
	border-radius: 0.25em;
	display: inline-block;
	background-color: #aa852a;
	border: 2px solid #aa852a;
	text-transform: uppercase;
	color: #fffff8;
	transition: all 0.3s;
}
[type=reset]:hover, [type=submit]:hover, button:hover, html [type=button]:hover {
	background-color: #5b4925;
	border: 2px solid #5b4925;
	color: #b59d62;
}
input[type="button" i]:disabled,
input[type="submit" i]:disabled,
input[type="reset" i]:disabled,
input[type="file" i]:disabled::-webkit-file-upload-button,
button:disabled,
select:disabled,
keygen:disabled,
optgroup:disabled,
option:disabled,
select[disabled] > option {
	color: #5b4925;
	cursor: not-allowed;
}
input[type="button" i]:disabled:hover,
input[type="submit" i]:disabled:hover,
button:disabled:hover {
	background-color: #aa852a;
	border: 2px solid #aa852a;
	color: #5b4925;
}
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="week"],
input[type="month"],
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
textarea,
select {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	padding: 0.5em;
}
label {
	color: #847b7d;
}
/*------------------------- STRUCTURE -------------------------*/
html {
	height: 100%;
}
body {
	height: 100%;
}
.full-height {
	height: 100% !important;
}
.main-content {
	margin: 0 auto;
	padding: 6em 20px; /* Make all these 6ems a variable */
	max-width: 750px;
}
@media (min-width: 1600px) {
	.main-content {
		max-width: 1000px;
	}
}
.main-content.no-top-padding {
	padding: 0 20px 3em 20px;
}
.inner {
	margin: 0 auto;
	max-width: 750px;
	padding-left: 20px !important;
	padding-right: 20px !important;
}
@media (min-width: 1600px) {
	.inner {
		max-width: 1000px;
	}
}
.chevron::after {
	content: "";
	width: 100%;
	height: 1em;
	background: url(images/icons/down-chevron.png) no-repeat center center;
	background-size: contain;
	position: absolute;
	bottom: 2em;
	left: 0;
}
/*.... VERTICAL ALIGNMENT ....*/
.vertical-parent {
	display: table;
}
.vertical-child {
	display:table-cell;
	vertical-align:middle;
}
.vertical-center {
	vertical-align: middle !important;
}
.vertical-bottom {
	vertical-align: bottom !important;
}
nav .vertical-parent {
	width: 100%;
	/*To make things work in Firefox*/
	height: 100px; /* TOM - can you make all these 100px's a variable for the user to customise? */
	/*Everyone else*/
	min-height: 100px; /* TOM - can you make all these 100px's a variable for the user to customise? */
}
/*......... COLUMNS ..........*/
.one-half, .one-third, .two-thirds, .one-quarter {
	width: 100%;
}
.column {
	margin: 1%;
	display: inline-block;
	vertical-align: top;
}
.column.padded {
	padding: 2%; /* Consider deleting */
}
.column > :last-child {
	margin-bottom: 0;
}
@media screen and (min-width: 480px) and (max-width: 960px) {
	.column {
		margin: 2% 0 0 0;
	}
	.column.one-quarter {
		position: relative;
		margin: 1%;
	}
	.column.one-quarter:nth-child(odd) {
		margin-left: 0 !important;
	}
	.column.one-quarter:nth-child(even) {
		margin-right: 0 !important;
	}
	.one-quarter {
		width: 49%;
	}
}
@media screen and (min-width: 960px) {
	.column {
		position: relative;
	}
	.column:first-child {
		margin-left: 0 !important;
	}
	.column:last-child {
		margin-right: 0 !important;
	}
	.one-half {
		width: 49%;
	}
	.one-third {
		width: 32%;
	}
	.two-thirds {
		width: 66%;
	}
	.one-quarter {
		width: 23.5%;
	}
}
.row {
	display: table;
	position: relative;
	width: 100%;
}
/*......... SPACING ..........*/
.space-all-round {
	margin: 6em 0; /* Make all these 6ems a variable */
}
.space-at-bottom {
	margin-bottom: 6em; /* Make all these 6ems a variable */
}
.space-at-top {
	margin-top: 6em; /* Make all these 6ems a variable */
}
/*........ OVERRIDES .........*/
.no-bg {
	background: none !important;
}
.no-border {
	border: none;
}
/*---------------------- COMPONENT STYLES ---------------------*/
.intro {
	width: 100%;
	height: 450px;
	box-sizing: border-box;
	background: rgba(0,0,0,0.8);
	position: relative;	
	overflow: hidden;
}
.big {
	height: 100vh;
}
@media (max-width: 960px) {
	.intro {
		/*transition: height 3s;*/ /*Smooths URL bar jitters on Chrome for mobile */
		transition: height 999999s; /*Prevents jitter on Chrome for mobile caused by URL bar factoring into 100% height calculations */
	}
}
.intro::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: url(images/inside.jpg); /* url(images/landan.jpg)*/
	background-size: cover;
	background-position: 20% 50%;
	background-repeat: no-repeat;
}
.intro:: after {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	bottom: 0;
}
p.address {
	display: inline-block;
	vertical-align: middle;
}
svg.pin {
	display: inline-block;
	height: 0.7em;
	margin-bottom: 0.3em;
	margin-right: -0.2em;
}
path.pin {
	fill: #aa852a;
}
.callout {
	padding: 0.5em 1em;
	margin-bottom: 1em;
	border: 1px solid #afafaf;
	border-left-width: 0.25em;
	border-left-color: #aa852a;
	background: #f9f9f9;
}
.no-bottom-margin, .callout p:last-child, .announcement p:last-child {
	margin-bottom: 0 !important;
}
.bar {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	max-width: 100vw;
	border-top: 1px solid #e8e8e8;
	border-bottom: 1px solid #e8e8e8;
	border-left: none;
}
.bar.dark-border {
	border-bottom: 1px solid #101010 !important;
}
/* Ensures text readable on mobile devices when background image used */
@media screen and (max-width: 960px) {
	.mobile-background-overlay-light {
		position: absolute;
		width: 100%;
		height: 100%;
		top:0;
		left: 0;
		background: rgba(255,255,255,0.7);
	}
	.mobile-background-overlay-dark {
		position: absolute;
		width: 100%;
		height: 100%;
		top:0;
		left: 0;
		background: rgba(0,0,0,0.7);
	}
}
}
.bar .callout {
	border: none;
	padding: 1.5em 0;
}
.announcement {
	outline-offset: -0.4em;
	padding: 1em;
	margin-bottom: 1em;
	background: #f9f9f9;
	border: 1px solid #e8e8e8;
	outline: 0.1em solid #aa852a;
}
.no-top-margin, .announcement h1:first-child, .announcement h2:first-child, .announcement h3:first-child, .announcement h4:first-child, .announcement h5:first-child, .announcement h6:first-child, .announcement .h1:first-child, .announcement .h2:first-child, .announcement .h3:first-child, .announcement .h4:first-child, .announcement .h5:first-child, .announcement .h6:first-child, .bar h1:first-child, .bar h2:first-child, .bar h3:first-child, .bar h4:first-child, .bar h5:first-child, .bar h6:first-child, .bar .h1:first-child, .bar .h2:first-child, .bar .h3:first-child, .bar .h4:first-child, .bar .h5:first-child, .bar .h6:first-child {
	margin-top: 0 !important;
}
/*...... FANCY BORDERS .......*/
.border-1, .border-2, .border-3, .border-4, .border-5, .border-6, .border-7, .border-8, .border-9, .border-10 {
	border: 50px solid;
	outline: none;
}
.border-1 {
	border-image: url(images/borders/1-gdj.png) 69 69 round;
}
.border-2 {
	border-image: url(images/borders/2-gdj.png) 75 75 round;
}
.border-3 {
	border-image: url(images/borders/3-gdj.png) 149 149 stretch;
}
.border-4 {
	border-image: url(images/borders/4-gdj.png) 75 75 round;
}
.border-5 {
	border-image: url(images/borders/5-gdj.png) 62 62 round;
}
.border-6 {
	border-image: url(images/borders/6-gdj.png) 60 60 repeat;
}
.border-7 {
	border-image: url(images/borders/7-gdj.png) 54 54 round;
}
.border-8 {
	border-image: url(images/borders/8-gdj.png) 69 69 round;
}
.border-9 {
	border-image: url(images/borders/9-sambeet.png) 50 50 round;
}
/*....... FANCY BOXES ........*/
a.linked.column {
	background: #f9f9f9;
	border: 1px solid #e8e8e8;
}
a.linked.column:hover, a.linked.column:active {
	box-shadow: 0px 0px 10px #e8e8e8;
	border: 1px solid #afafaf;
}
a.linked.column:active {
	border: 1px solid #afafaf;
}
/*------------------------ WIDGET STYLES ----------------------*/
/*--------------------- THIRD PARTY STYLES --------------------*/
/*....... HEADROOM JS ........*/
.headroom {
	transition: all 0.3s ease-in-out;
}
.headroom--pinned {
/*	transform: translateY(0);*/ /*Stops the menu opening fully for some reason*/
	position: fixed;
	opacity: 1;
	background: rgba(0,0,0,0.95);
}
.headroom--unpinned {
	transform: translateY(-100%);
	opacity: 0;
	background: none;
}
.headroom--top {
	opacity: 1;
	background: none;
	position: absolute;
}