/**
 * RESET 
 */

@import "css/reset.css";
/**
 * GLOBAL
 */
body {
	background: #dcdcdc;
	color: #434343;
	font-family: 'Raleway', sans-serif;
	font-size: 100%;
	line-height: 1.5;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: 'Open Sans Condensed', sans-serif;
	font-style: normal;
	font-weight: normal;
	color: #151515;
}

h1, .h1 {
	font-size: 2em;
	line-height: 1.5;
	margin-top: 0.75em;
}

h2, .h2 {
	font-size: 1.8em;
	line-height: 1;
	margin-top: 1em;
}

h3, .h3 {
	font-size: 1.6em;
	line-height: 1.2;
	margin-top: 1.2em;
}

h4, h5, h6, .h4, .h5, .h6 {
	font-size: 1.4em;
	line-height: 1.5;
	margin-top: 1.5em;
}

p {
	line-height: 1.5;
	margin: 0 0 1.5em 0;
}

a { color: #295884; text-decoration: none; }

a:visited { color: #295884; }
a:hover{ color: #2472ba; }
a:active, li a.active  { color: #295884; }
a:focus { outline: thin dotted; }
a:hover, a:active { outline: 0; }

/* apply common styling after reset.css */
li ul, li ol {  margin: 0; }
ul, ol {  margin: 0 1.5em 1.5em 0;  padding-left: 1.5em; }
ul {  list-style-type: disc; }
ol {  list-style-type: decimal; }
dl {  margin: 0 0 1.5em 0; }
dl dt {  font-weight: bold; }
dd {  margin-left: 1.5em; }
hr {  background: #20303f;  border: none;  clear: both;  float: none;  height: 1px;  margin: 0 0 1.4375em;  width: 100%; }
fieldset {  border: 1px solid #ccc;  margin: 0 0 1.4375em;  padding: 1.5em; }
table {  margin-bottom: 1.5em;  width: 100%; }
th, tr, td {  vertical-align: middle; }
th { padding-right: 1em; }
.sticky-header th, .sticky-table th {  border-bottom: 3px solid #ccc;  padding-right: 1em;  text-align: left; }

blockquote {
	background-color: #e7e7e7;
	border-left: 6px solid #536b81;
	padding: 14px 14px 6px 14px;
	margin: 10px 0px;
	text-shadow: 1px 1px #fff;
}

code, pre {
	background-color: #e7e7e7;
	border-left: 6px solid #536b81;
	display: block;
	padding-left: 20px;
	margin: 10px 0;
	text-shadow: 1px 1px #fff;
}

strong { font-weight: bold; }

i { font-style: italic; }

.clear { clear: both; width: 100%;}

.display-block { display: block; }

#main .content  table{
	margin-bottom: 1.5em;  
	width: 100%; 
}

#main .content  th{
	font-weight: bold;
	padding: 10px 5px;
	background: #eae9e9;
	border: 1px solid #aeaeae;
}
#main .content table td{
	border: 1px solid #aeaeae;
	padding: 5px;
}
/* Layout
------------------------------------------------- */

#container {
  margin: 0 auto;
  padding: 0 10px;
  width: 940px;
}
.container {
  margin: 0 auto;
  padding: 0 10px;
  width: 940px;
}
.wrap {
	margin: 0 auto;
	padding: 0 10px;
	width: 940px;
	display: table;
}
/* Main
------------------------------------------------- */

/* 1 column: global values*/

#main {
  display: inline;
  margin: 0;
}

/* 3 columns */

body.two-sidebars #main {
  float: left;
  margin: 0 0 0 240px;
  padding: 0;
  width: 460px;
}

/* 2 columns: sidebar-first */

body.sidebar-first #main {
  float: right;
  margin: 0;
  padding: 0;
  width: 700px;
}

/* 2 columns: sidebar-second */

body.sidebar-second #main {
  float: left;
  margin: 0;
  padding: 0;
  width: 700px;
}

/* Sidebar
------------------------------------------------- */

/* 3 columns: sidebar-first */

body.two-sidebars #sidebar-first {
  float: left;
  margin: 0 0 0 -700px;
  padding: 0;
  width: 220px;
}

/* 3 columns: sidebar-second */

body.two-sidebars #sidebar-second {
  float: right;
  margin: 0;
  padding: 0;
  width: 220px;
}

/* 2 columns: sidebar-first */

body.sidebar-first #sidebar-first {
  float: left;
  margin: 0;
  padding: 0;
  width: 220px;
}

/* 2 columns: sidebar-second */

body.sidebar-second #sidebar-second {
  float: right;
  margin: 0;
  padding: 0;
  width: 220px;
}

/* Header
------------------------------------------------- */
#header {
	background: #2d3e4f url(images/header-line.jpg) repeat-x;
	padding-bottom: 15px;
	margin: 0 auto;
	padding: 0;
	clear: both;
	width: 100%;
	display: table;
	min-height: 150px;
	border-bottom: 1px solid #0a1118;
}
/* Logo */
#header #logo {
	float: left;
	margin: 0 1em 1.5em 0;
}

/* Navigation
------------------------------------------------- */
#header #navigation {
	float: right;
	font-family: 'Open Sans Condensed', sans-serif;
}
#header #navigation ul.menu{
	clear: both;
	list-style: none;
	margin: 0;
	padding: 0;
}
#header #navigation ul.menu li {
  float: left;
  margin: 0;
  padding: 0;
  font-size: 18px;
  list-style: none;
}

#header#navigation ul.menu li a { }

#header #navigation ul.menu li a.active, #navigation ul.menu li a:hover{
  color: #718395;
}
/* Little tricking with positions */
#header .navigation  li {
	float:left;
	position:relative; 
}
#header .navigation  ul li a{
	display: block;
	padding: 17px 14px 14px 10px;
	color: #c4cfdb;
}
/* Sub Cat Menu stuff*/
#header .navigation  ul ul{
	position:absolute; 
	left:0; 
	display:none; /* Hide it by default */
	margin:0 0 0 -1px; 
	padding:0;
	list-style: none;
	border-bottom: 2px solid #1b2733;
	z-index: 110;
}
	
#header .navigation  ul ul li {
	width: 170px; 
	float: left; 
	border-top: none;
}
	
/* Sub Cat menu link properties */
#header .navigation ul ul a {

}
#header .navigation  ul ul li a {
	background:#20303f; 
	display:block;  	/* Making sure a element covers whole li area */
	padding: 4px 10px; 
	text-decoration:none; /* No underline */
	border-top:1px solid #121c26;
	text-transform: none;
}
#header li.expanded > a:after {
	content: " + ";
	color: #718395;
	font-weight: bold;
}
/* Homepage
------------------------------------------------- */
#homepage-header {
	background: #20303f;
	width: 100%;
	display: table;
	padding: 20px 0;
	border-top: 1px solid #364655;
}
.page-header {
	text-align: center;
	width: 100%;
	margin-bottom: 30px;
}
.page-header h1{
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 40px;
	text-transform: uppercase;
	margin: 0;
	color: #ccd5dc;
}
.page-header h2{
	font-size: 34px;
	text-transform: uppercase;
}
.page-header p{
	font-size: 30px;
	color: #939fab;
	font-family: 'Open Sans Condensed', sans-serif;
}
.full {
	width: 940px;
	margin: 0 auto;
	float: left;
}
.one_three {
	margin-right: 20px;
}
.one_three_last {
	margin-right: 0;
}
.one_three , .one_three_last {
	width: 300px;
	min-height: 300px;
	float: left;
	position: relative;
	text-align: center;
}
.one_three p , .one_three_last p{
	text-shadow: 1px 1px #fff;
}
.one_three  .button, .one_three_last .button{
	background: #2d3e4f;
	padding: 6px 10px;
	text-shadow: none;
	color: #fff;
	-webkit-transition: background 0.5s ease-in-out;
	-moz-transition: background 0.5s ease-in-out;
	-o-transition: v 0.5s ease-in-out;
	transition: background 0.5s ease-in-out;
}
.one_three  .button:hover, .one_three_last .button:hover{
	background: #151f2a;
}
.last {
	margin-right: 0;
}
/* Homepage Slider
------------------------------------------------- */
#slider{
	float: left;
	margin-top: 14px;
}
.main_view { 
	float: left; 
	position: relative; 
}

.window { 
	overflow: hidden; 
	position: relative; 
	width:940px; 
	height:350px; 
	float: left;
}

.image_reel { 
	position: absolute; 
	top: 0; 
	left: 0; 
}

.image_reel img {
	float: left;
}

.paging { 
	padding: 7px 0 8px 0; 
	text-align: center; 
	z-index: 100; 
}

.paging a { 
	text-indent: -9999px; 
	background: url(images/slide-button.png) no-repeat center; 
	width: 15px; 
	height: 15px; 
	display: inline-block;
	margin: 4px; 
	border: none; 
	outline: none; 
}

.paging a.active { 
	background: url(images/slide-button-active.png) no-repeat center; 
	border: none; 
	outline: none;
}

.paging a:hover {
	font-weight: bold; 
	border: none; 
	outline: none;
}
.slidertitle{
	background: #1b2733;
	display: none; 
	position: absolute; 
	bottom: 100px;
	left: 100px; 
	z-index: 100; 
	color: #fff;
	font-size: 2em;
	font-family: 'Open Sans Condensed', sans-serif;
	padding: 10px;
	margin-bottom: 14px;
}

.slidertext { 
	background: #404d5c; 
	display: none; 
	position: absolute; 
	bottom: 50px;
	left: 100px; 
	z-index: 101; 
	color: #fff;
	font-size: 1.4em; 
	padding: 10px;
	font-family: 'Open Sans Condensed', sans-serif;
}

/* Breadcrumb
------------------------------------------------- */
#breadcrumb {
	padding: 0.5em 0;
}
.breadcrumb {
	clear: both;
	font-family: 'Open Sans Condensed', sans-serif;
	color: #9ea4ab;
}

.breadcrumb a{
	color: #9ea4ab;
}
.breadcrumb-separator {
	margin: 0 10px;
	color: #fff;
}

/* menus and item lists */

.item-list ul {
  margin: 0;
  padding: 0;
}

.item-list ul li {
  margin: 0;
  padding: 0;
}

ul.menu li {
  margin: 0;
  padding: 0;
}

ul.inline {
  clear: both;
}

ul.inline li {
  margin: 0;
  	background: #5e6f7e;
	padding: 4px 6px;
	color: #fff;
}
.node-readmore {

}
ul.inline li a{
	color: #bbc4cd;
}
/* admin tabs */

.tabs-wrapper {
  border-bottom: 1px solid #374456;
  margin: 0 0 1.4375em;
}

ul.primary {
  border: none;
  margin: 0;
  padding: 0;
}

ul.primary li a {
  background: #939ca4;
  border: none;
  display: block;
  float: left;
  line-height: 1.5em;
  margin: 0;
  padding: 0 1em;
  color: #fff;
  border-right: 1px solid #374456;
}

ul.primary li a:hover, ul.primary li a.active {
  background: #20303f;
  border: none;
  color: #fff;
}

ul.primary li a:hover {
  background: #597086;
  text-decoration: none;
}

ul.secondary {
  background: #20303f;
  border-bottom: none;
  clear: both;
  margin: 0;
  padding: 0;
}

ul.secondary li {
  border-right: none;
}

ul.secondary li a, ul.secondary li a:link {
  border: none;
  color: #ccc;
  display: block;
  float: left;
  line-height: 1.5em;
  padding: 0 1em;
}

ul.secondary li a:hover, ul.secondary li a.active {
  background: #597086;
  color: #fff;
  text-decoration: none;
}

ul.secondary a.active {
  border-bottom: none;
}

/* Nodes
------------------------------------------------- */
.node {
	margin-bottom: 3em;
}
.title {
	margin-top: 10px;
	background: url(images/line-bg.png) left bottom repeat-x;
}
.submitted {
	background: url(images/line-bg.png) left bottom repeat-x;
	padding: 5px 0;
	width: 100%;
	margin: 0 0 8px 0;
	color: #20303f;
	text-shadow: 1px 1px #fff;
}

#main img {
	max-width: 700px;
}

#main .content {
	text-shadow: 1px 1px #fff;
}

#main footer {
	margin-bottom: 16px;
}
/* tags */
.field-name-field-tags {
	margin: 0 0 1.5em;
}

.field-name-field-tags .field-item {
	margin: 0 1em 0 0;
}

.field-name-field-tags div {
	display: inline;
}
/* Pages */
ul.pager {
	margin-bottom: 20px;
	padding: 0;
	font-family: 'Open Sans Condensed', sans-serif;
}
ul.pager .pager-current {
	background-color: #222;
	color: #536b81;
}
.pager-item, .pager-next, .pager-last, .pager-previous, .pager-first {
	background-color: #536b81;
	color: #fff;
}
.pager-item a, .pager-next a, .pager-last a, .pager-previous a, .pager-first a{
	color: #fff;
}
/* profile */

.profile {
	margin: 1.5em 0;
}

.profile h3 {
	border: none;
}

.profile dt {
	margin-bottom: 0;
}

.profile dd {
	margin-bottom: 1.5em;
}

.password-parent {
	width: 36em;
}

/**
 * 8.COMMENTS
 */

#comments {
	clear: both;
	margin-top: 1.5em;
}

.comment {
	margin-bottom: 1.5em;
}

.comment .new {
	color: red;
	text-transform: capitalize;
	margin-left: 1em;
}

/**
 * 9.BLOCKS
 */

.block {
	margin-bottom: 2.5em;
}
#sidebar-first .block, #sidebar-second .block{
	margin-top: 10px;
}
.sidebar .block img {
	max-width: 220px;
	margin-top: 6px;
}

#footer .block {
	margin-bottom: 0;
}
.footer .block {
	margin-bottom: 0;
}
#footer .block ul, .sidebar .block ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
#footer .block li {
	border-bottom: 1px solid #20303f;
	padding: 4px 0;
	list-style: none;
}
.sidebar .block li {
	background: url(images/line-bg.png) left bottom repeat-x;
	padding: 4px 0;
	list-style: none;
}
/**
 * 10.FOOTER
 */

#footer {
	clear: both;
	padding: 1em 0;
	position: relative;
	color: #cdd1d5;
	font-family: 'Open Sans Condensed', sans-serif;
	background: #1f272e;
	border-bottom: 1px solid #0d1013;
	width: 100%;
	display: table;
}
#footer a{
	color: #778897;
}
#footer a:hover{
	color: #fff;
}
#footer h2{
	text-transform: uppercase;
	border-bottom: 1px solid #111418;
	margin-bottom: 10px;
	padding: 10px 0;
	color: #cccfd1;
}
.footer-one, .footer-two, .footer-three {
	width: 300px;
	float: left;
	position: relative;
}
.footer-one, .footer-two {
	margin-right: 20px;
}
.footer-three {
	margin-right: 0;
}
#footer-bottom {
	background: #111a24;
	color: #64696f;
	font-family: 'Open Sans Condensed', sans-serif;
	padding: 10px 0;
	border-top: 1px solid #272e34;
	width: 100%;
	display: table;
}
#copyright {
	font-size: 16px;

}
.copyright {
	width: 50%;
	float: left;
	display: block;
	min-height: 1px;
	padding: 10px 0;
}
#footer-icons { float: right;}

#footer-icons li {
	display: inline;
	float: right;
}
#footer-icons .icon{
	width: 32px;
	height: 32px;
	float: right;
	margin-left: 1px;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	opacity: 0.5;
}
#footer-icons .icon:hover{
	opacity: 1;
}
#footer-icons .linkedin{
	background: url(images/linkedin.png) no-repeat;
}
#footer-icons  .googleplus{
	background: url(images/googleplus.png) no-repeat;
}
#footer-icons .twitter{
	background: url(images/twitter.png) no-repeat;
}
#footer-icons .facebook{
	background: url(images/facebook.png) no-repeat;
}
/**
 * CONTACT PAGE / FORM
 */
 input, textarea {
	padding: 7px;
 }
 
.form-submit {
	background:  #20303f;
	padding: 6px 10px;
	color: #fff;
	border: 0;
	cursor: pointer;
	-webkit-transition: background 0.5s ease-in-out;
	-moz-transition: background 0.5s ease-in-out;
	-o-transition: v 0.5s ease-in-out;
	transition: background 0.5s ease-in-out;
}
.form-submit:hover {
	background:  #4b5b6c;
}
.form-item-search-block-form [type="search"]{
	padding: 5px;
}
/* maintenance page
------------------------------------------------- */
.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 5px;
	margin-bottom: 5px;
}

/* LOCAL */

.roundedbox {
    line-height: 155%;
    border: 3px solid #333;
    padding: 1vw;
    background-color: #fff;
    border-radius: 15px;
    display: block;
    margin: 0 1em 10px;
}

.game_title {
	font-weight: 700;
}