/*
** Basics
*/

html {

}

body {
	color: #666666;
	font-family: "Roboto", arial;
	line-height: 1.5em;
}

div {

}

span {
	display: inline-block;
	float: left;
	position: relative;
}

p {

}

a {
	color: white;
	text-decoration: none;
	display: inline-block;
}

button {

}

/*
**	Bloc styles
*/


/* Height */
.s_heightXxs {
	min-height: 50px;
	line-height: 50px;
}

.s_heightXs {
	height: 80px;
	line-height: 80px;
}

.s_heightXsFixed {
	height: 80px;
	line-height: 80px;
}

.s_heightS {
	min-height: 80px;
	line-height: 80px;
}

.s_heightSm {
	min-height: 100px;
	line-height: 100px;
}

.s_heightSmFixed {
	height: 120px;
	line-height: 120px;
	overflow: hidden;
}

.s_heightM {
	min-height: 120px;
	line-height: 120px;
}

.s_heightMm {
	min-height: 150px;
}

.s_heightMl {
	min-height: 160px;
	line-height: 160px;
}

.s_heightL {
	min-height: 225px;
}

.s_heightXl {
	min-height: 500px;
}

.s_heightFull {
	height: 100%;
}

/* Width */
.s_container {
	width: 100%;
}

.s_fullWidth {
	width: 100%
}

.s_innerWidth {
	width: 95%;
	margin-left: 2.5%;
	display: inline-block;
}

.s_innerWidthS {
	width: 80%;
	margin-left: 10%;
	display: inline-block;
}

.s_halfWidth {
	width: 50%;
	display: inline-block;
}

.s_twoThirdWidth {
	width: 67%;
	display: inline-block;
}

.s_thirdWidth {
	width: 33%;
	display: inline-block;
}

.s_fourthWidth {
	width: 25%;
	display: inline-block;
}

.s_columnWidthL {
	width: 25%;
	display: inline-block;
}

.s_columnWidthS {
	width: 15%;
	display: inline-block;
}

/* Button */

.s_btnFull  {
	height: 100%;
	min-width: 20%;
}

.s_btnS {
	height: 20px;
	min-width: 30px;
}

.s_btnM {
	height: 30px;
	min-width: 50px;
}
.s_btnL {
	height: 50px;
	min-width: 100%; 
}

.s_linkBox a {
	width: 100%;
	height: 100%;
	display: inline-block;
}

.s_rounded {
	border-radius: 5px;
}


/* Icons */
.s_iconS {
	width: 25px;
	height: 25px;
	vertical-align: middle;
}

.s_iconM {
	width: 40px;
	height: 40px;
	vertical-align: middle;
}

.s_iconMl {
	width: 50px;
	height: 50px;
	vertical-align: middle;
}

.s_iconL {
	width: 80px;
	height: 80px;
	vertical-align: middle;
}

.s_iconXl {
	width: 190px;
	height: 190px;
	vertical-align: middle;
}

.s_iconFull {
	height: 100%;
	width: auto;
	vertical-align: middle;
}

.s_cover {
	/*
	background-image: url('../img/slideshow.jpg');
	background-size: cover;
    background-repeat: no-repeat;
	*/
}

/*
** Colors
*/

/* Blocs */
.s_colMain {
	background-color: #9C0032;	
}

.s_colAccent1 {
	background-color: #88012C;
}

.s_colAccent2 {
	background-color: #AC4D6D;
}

.s_colAccent3{
	background-color: #2d8a77;
}

.s_colFlat1 {
	background-color: #E5ECF4;
}

.s_colFlat2 {
	background-color: #F4F4F4;
}

/* Text colors */
.s_accentText {
	color: #8B8185;
}

.s_mainText {
	color: #527EAF;
}

.s_accentText2 {
	color: white;
}

/* Buttons */

.s_btnColor1 {
	background-color: #38b099;
}

.s_btnColor2 {
	background-color: #a30135;
}

.s_btnColor3 {
	background-color: #517DAE;
}

.s_btnColor4 {
	background-color: #38B099;
}


.s_relative {
	position: relative;
}

/*
** Fancy
*/

/*Animations*/

.s_slideDown{
	animation-duration: .5s;
	animation-name: slideDown;
	animation-fill-mode: forwards;
}

@keyframes slideDown {
	from {
		height: 0px;
	}

	to {
		height: 250px;
	}
}

.s_slideUp{
	animation-duration: 1s;
	animation-name: slideUp;
	animation-fill-mode: forwards;
	overflow: hidden;
}

@keyframes slideUp {
	from {
		height: 250px;
	}

	to {
		height: 0px;
	}
}

/*Borders*/
.s_bordered {
	border: 1px solid black;
	margin: 0 -1px;
}

.s_bT {
	border: none;
	border-top: 1px solid black;
	border-color: inherit;
}

.s_bR {
	border: none;
	border-right: 1px solid black;
	margin-right: -1px;
	border-color: inherit;
}

.s_bB {
	border: none;
	border-bottom: 1px solid black;
	border-color: inherit;
}

.s_bL {
	border: none;
	border-left: 1px solid black;
	margin-left: -1px;
	border-color: inherit;
}

.s_bM {
	border: none;
	border-left: 1px solid black;
	border-right: 1px solid black;
	margin: 0 -1px;
	border-color: inherit;
}

.s_bC {
	border: none;
	border-top: 1px solid black;
	border-bottom: 1px solid black;
	border-color: inherit;
}

.s_largeBorder {
	border-width: 3px;
}

.s_borderColor1 {
	border-color: #E3E2E7;
}

.s_borderColor2 {
	border-color: #CDCDCD;
}

/* Shadows */

.s_shadIn {

}

.s_shadOut {

}

.s_shadColor1 {

}

.s_shadColor2 {

}

/*
** Animation
*/

/* Fade-Time */

/* Pointer */

/* Add a dark layer */

.s_darkenSoft:hover {
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, .2);
}

.s_darken:hover {
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, .5);
}

/* Add colour layer on hover states */

.s_colourBlue1:hover {
	background-color: rgb(202, 216, 231);
	background-color: rgba(202, 216, 231, 1);
}

/*
** Overflow
*/

.s_overHidden {
	overflow: hidden;
}

/*
** Texts
*/

h1 {
	font-size: 2.8em;
	font-weight: bold;
	color: #a30135;
}

h2 {
	font-size: 2em;
}

h3 {
	font-size: 1.5em;
	font-weight: 500;
}

h4 {

}

h5 {

}

h6 {

}

.s_navText {

}

.s_menuText {

}

.s_link {
	color: #CD0033;
	cursor: pointer;
	font-weight: bold;
}

.s_pointer {
	cursor: pointer;
}

.s_quote {
	font-size: 2em;
	font-weight: 500; 
}

.s_smallText {
	font-size: 0.8em;
}

.s_mentionText {
	font-size: 0.7em;
	line-height: 1.4em;
	text-align: center;
	font-style: italic;
	font-weight: bold;
	width: 500px;
	padding-top: 30px;
	padding-left: 10px;
	color: #999999;
}

.s_largerText {
	font-size: 1.3em;
}

.s_largeText {
	font-size: 1.5em;
}

.s_largeXText {
	font-size: 1.6em;
	line-height: 1.3em;
}


.s_btnText {
	font-variant: small-caps;
}

.s_leftText {
	text-align: left;
}

.s_rightText {
	text-align: right;
}

.s_centeredText {
	text-align: center;
}

.s_justifiedText {
	text-align: justify;
}

.s_thin {
	font-weight: 200;
}

.s_bold {
	font-weight: bold;
}

.s_fat {
	font-weight: 900;
}

/*
** Placement
*/

.s_bot {
	position: absolute;
	/*bottom: 10%;*/
}

.s_top {
	position: absolute;
	top: 10%;
}

.s_left {
	position: absolute;
	left: 0;
}

.s_right {
	position: absolute;
	right: 0;
}

/* Float */
.s_hCenter {
	margin: auto;
}

.s_vCenter {

}

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

.s_floatLeft {
	float: left;
}

.s_floatRight {
	float: right;
}

.s_fixedColR {
	position: fixed;
	right: 0px;
	height: 100%;
}

.s_fixedColL {
	position: fixed;
	left: 0px;
	height: 100%;
}

.s_fixedRowT {
	position: fixed;
	top: 0px;
	width: 100%;
}

.s_fixedRowB {
	position: fixed;
	bottom: 0px;
	width: 100%;
}

/* padding */

.s_vPadL {
	padding-top: 50px;
	padding-bottom: 50px;
}

.s_vPadM {
	padding-top: 20px;
	padding-bottom: 20px;
}

.s_vPadS {
	padding-top: 1px;
	padding-bottom: 1px;
}

.s_hPadL {
	padding-right: 50px;
	padding-left: 50px;
}

.s_hPadM {
	padding-right: 20px;
	padding-left: 20px;
}

.s_hPadS {
	padding-right: 1px;
	padding-left: 1px;
}

.s_centeredPad {
	padding: 25px;
}


/* margin */

.s_hMargL {
	margin-top: 50px;
	margin-bottom: 50px;
}

.s_hMargM {
	margin-top: 40px;
	margin-bottom: 40px;
}

.s_hMargS {
	margin-top: 20px;
	margin-bottom: 20px;
}

.s_hMargXs {
	margin-top: 1px;
	margin-bottom: 1px;
}

.s_vMargL {
	margin-right: 50px;
	margin-left: 50px;
}

.s_vMargM {
	margin-right: 30px;
	margin-left: 30px;
}

.s_vMargS {
	margin-right: 10px;
	margin-left: 10px;
}

.s_hMargXs {
	margin-right: 1px;
	margin-left: 1px;
}

.s_bMargXl {
	margin-bottom: 70px;
}

.s_bMargL {
	margin-bottom: 50px;
}

.s_bMargM {
	margin-bottom: 30px;
}

.s_bMargS {
	margin-bottom: 1px;
}

.s_tMargL {
	margin-top: 50px;
}

.s_tMargM {
	margin-top: 30px;
}

.s_tMargS {
	margin-top: 1px;
}

.s_rMargL {
	margin-right: 50px;
}

.s_rMargM {
	margin-right: 30px;
}

.s_rMargS {
	margin-right: 1px;
}

.s_lMargL {
	margin-left: 70px;
}

.s_lMargM {
	margin-left: 30px;
}

.s_lMargS {
	margin-left: 1px;
}

.s_noMarg {
	margin: 0;
}

.s_autoMarg {
	margin: auto;
}

.s_percentHMargS {
	margin-right: 5%;
	margin-left: 5%;
}

/*
** Shapes
*/

/* Arrows */

.arrow_box {
	position: relative;
}
.arrow_box:after {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(255, 255, 255, 0);
	border-top-color: #ffffff;
	border-width: 25px;
	margin-left: -25px;
	z-index: 10;
}



/* Round */

/* Diag */

.s_triangleRight{
	width:1px;
	height:1px;
	border:1px solid #527EAF;
	margin-top: -1px;
	border-color:transparent transparent #88012C transparent;
	border-width: 0 0 120px 120px;
	transform: rotate(180deg);
}

.s_triangleLeft{
	width:1px;
	height:1px;
	border:1px solid #527EAF;
	margin-top: -1px;
	border-color:transparent transparent #88012C	 transparent;
	border-width: 0 0 100px 100px;
}

/* Icons */
.s_linkIcon {
	background-image: url('../img/RedArrow1.svg');
}

.s_startIcon {
	background-image: url('../img/Arrow01.svg');
}

.s_continueIcon {
	background-image: url('../img/Arrow02.svg');
}

.s_printIcon {
	background-image: url('../img/printer.svg');
}

.s_pass_change {
	background-image: url('../img/login.svg');
}

path {
	fill:blue; !important
}

/* Use the following class on an img to make it fill a div with the max width and height */
.s_autoStretch{
	zoom: 2;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;

}

/*
** States
*/

.s_on {
	display: inline-block;
}

.s_off {
	
	display: none;
}


@media (max-width:1380px) { 

	.s_linkIcon {
		display: none;
	}

	.s_toHide {
		display: none;
	}

	.s_toFull {
		width: 100%;
	}
}

@media (max-width: 900px) {
	.s_toHalf {
		width: 50%;
	}

	.s_toShrink {
		font-size: 1.5em;
		text-transform: none !important;
	}
}

/* Specific to account renew password pop-in submit button - see header.php */
.btn-submit-npass:hover {
	background-color:#ade4da;
}
.btn-submit-npass {
	background-color: #38b099;
	display: block;
	margin-top: 20px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border-radius:4px;
}