/*******************************************************
*
*	General
*
*******************************************************/

* {
	font-family: Lato, Calibri;
	font-size:14px; 
}

body {
	margin:0;
	background: #f5f6f7;
}

a {
	color:rgba(9,31,81,1);
	text-decoration: none;
	font-weight: bold;
}

a:hover {
	text-decoration: underline;
}

p {
	margin:10px 0;
}

table td {
	vertical-align: top;
}

fieldset {
	padding: 20px;
	border: 1px solid gray;
	margin:15px 0;
}

fieldset legend {
	padding:0 10px;
}

button {
	padding: 3px 10px;
}

input, textarea, select {
	padding:3px 5px;
	outline: none;
}

input {
	min-width: 300px;
	-webkit-box-sizing: border-box; /* Safari 3.0 - 5.0, Chrome 1 - 9, Android 2.1 - 3.x */
	-moz-box-sizing: border-box;    /* Firefox 1 - 28 */
	box-sizing: border-box;         /* Safari 5.1+, Chrome 10+, Firefox 29+, Opera 7+, IE 8+, Android 4.0+, iOS any */
}

textarea {
	min-width:350px;
	max-width:350px;
	height:100px;
	-webkit-box-sizing: border-box; /* Safari 3.0 - 5.0, Chrome 1 - 9, Android 2.1 - 3.x */
	-moz-box-sizing: border-box;    /* Firefox 1 - 28 */
	box-sizing: border-box;         /* Safari 5.1+, Chrome 10+, Firefox 29+, Opera 7+, IE 8+, Android 4.0+, iOS any */
}

h1, h1 a {
	margin:10px 0;
	padding: 10px;
	font-size:22px;
	border-bottom:1px solid gray;
	font-weight: bold;
}

h2 {
	margin:10px 0px;
	padding:10px;
	font-size:18px;
	border-bottom:1px solid rgba(128,128,128,.5);
}

table#user { }

table#user td:first-child {
	width:150px;
	padding:5px;
	vertical-align: top;
}

table#user td input {
	width:350px;
}

table.nice-table {
	
}

table.nice-table thead {
	background:#374971;
	color:#f2f2f2;
}

table.nice-table th, table.nice-table td {
	padding:5px;
	vertical-align: middle;
}

table.nice-table tr:nth-child(even) {
	background:white;
}

table#form {

}

table#form td:first-child {
	padding-right:20px;
	padding-top:10px;
}

table#form td, table#form th {
	padding:5px;
	position: relative;
}

table.data {
	border-spacing: 0;
	border:1px solid rgba(128,128,128,.6);
}

table.data .right { text-align: right; }
table.data .center { text-align: center; }
table.data .left { text-align: left; }

table.data tr {
}

table.data td, table.data th {
	padding:10px;
	vertical-align: middle;
	border:1px solid rgba(128,128,128,.1);
}

table.data th {
	text-align: left;
	background:rgba(128,128,128,.2);
}

table.data td {
}


.clear-both {
	clear:both;
}

.clear-left {
	clear:left;
}

.clear-right {
	clear:right;
}

.code {
	border-left:3px solid rgba(128,128,128,.5);
	padding:15px;
	margin:15px;
}

/*******************************************************
*
*	Header
*
*******************************************************/

#header {
	background-image:url("/images/header.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-color: #091f51; 
	box-shadow: 0px 0px 5px black;
}

#header > #content {
	background:url("/images/main-menu.png") no-repeat bottom left;
	width:1135px;
	height:195px;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin:0 auto;
	position: relative;
	padding-top:155px;
}

#header > #content #irl_notifications, 
#header > #content #irl_messages {
	display:inline-block;
	position:relative;
	margin-right:10px;
}

#header > #content #irl_notifications > i, 
#header > #content #irl_messages > i {
	cursor: pointer;
	font-size:16px;
	color:white;
}

#header > #content #irl_notifications > span, 
#header > #content #irl_messages > span {
	background:red;
	color:white;
	border-radius: 5px;
	min-width:15px;
	padding:0 1px;
	margin-left:-5px;
	position: relative;
	display: inline-block;
	text-align: center;
	font-size:11px;
}

#header > #content #irl_notifications > #content, 
#header > #content #irl_messages > #content {
	display: none;
	position:absolute;
	border:1px solid rgba(9,31,81,.5);
	background:white;
	color:#333;
	right:0;
	top:30px;
	width:350px;
	z-index: 9999999;
}

#header > #content #irl_notifications > #content .option > a, 
#header > #content #irl_messages > #content .option > a {
	text-transform: uppercase;
	font-weight: bold;
	display: block;
	color:#333;
	font-size:80%;
	border-top:1px solid gray;
	border-bottom:1px solid gray;
	padding:5px;
	background:rgba(0,0,0,.1);
}

#header > #content > ul {
	list-style: none;
	float:left;
	margin:0;
	padding:0;
	height: 40px;
}

#header > #content > ul sup {
	font-size:8px;
	color:yellow;
}

#header > #content > ul > li {
	display: inline-block;
	color:white;
	height:40px;
}

#header > #content > ul > li:first-child {
	padding-left:5px;
}

#header > #content > ul > li > a {
	border-right:1px solid rgba(255,255,255,0.4);
	text-shadow:1px 1px 1px black; 
	color: white;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	font-weight: normal;
	padding:0px 12px;
	margin-top:11px;
}

#header > #content > ul > li > a:hover {
	color:#c9d7f7;
}

#header > #content > #search {
	overflow: hidden;
	float:right;
	padding:7px;
}

#header > #content > #search #search-magnifier {
	width:20px;
	background:rgba(255,255,255,.7);
	float:left;
	line-height: 25px;
	width:25px;
	text-align: center;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-bottomright: 5px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

#header > #content > #search form {
	float:left;
}

#header > #content > #search input {
	-webkit-border-top-left-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	-webkit-transition:.5s;
    -moz-transition:.5s;
    -o-transition:.5s;
    transition:.5s;
	height:25px;
	border:0;
	padding:0;
	margin:0;
	float:left;
	color:#f2f2f2;
	border:1px solid rgba(255,255,255,.7);
	background: rgba(9,31,81,.8);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width:250px;
	min-width:250px;
	max-width:250px;
	font-size:13px;
	padding:0px 10px;
}

#header > #content > #search input:focus {
	width:300px;
	min-width:300px;
	max-width:300px;
}

/*******************************************************
*
*	Wrapper
*
*******************************************************/

#wrapper {
	margin: auto;
	width: 1135px;
	min-height: 700px;
}

#wrapper > #content {
	width: 728px;
	float:left;
	margin:0 20px 30px 20px;
	overflow: hidden;
}

#wrapper > #content h3 {
	margin:10px 0px;
	padding:10px;
	font-size:16px;
	border-bottom:1px solid rgba(128,128,128,.5);
}

/*******************************************************
*
*	Left Sidebar
*
*******************************************************/

#sidebar-left {
	width:198px;
	min-height: 500px;
	float:left;
}

/*******************************************************
*
*	Right Sidebar
*
*******************************************************/

#sidebar-right {
	width:160px;
	float:left;
}


/*******************************************************
*
*	Pagination
*
*******************************************************/

#pagination > ul {
	list-style: none;
	text-align: center;
}

#pagination > ul li {
	display: inline-block;
}

#pagination > ul li a {
	border:1px solid #f5f6f7;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

#pagination > ul li a:hover {
	border:1px solid #79b8f8;
}

#pagination > ul li a, #pagination ul li span {
	text-decoration: none;
	color:black;
	display: inline-block;
	padding: 1px 5px;
}

#pagination ul li.active span {
	border:1px solid #79b8f8;
	background: #dbe9f8;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

/*******************************************************
*
*	Pagination
*
*******************************************************/

#footer {
	background: #061A4A;
}

#footer > #footer-content {
	margin: auto;
	width: 1135px;
	padding:5px 0 15px 0;
	color:#ccc;
	min-height: 100px;
}

#footer > #footer-content > table {
	margin-top:25px;
	border-spacing: 0;
}

#footer > #footer-content > table td {
	vertical-align: top;
}

#footer > #footer-content > table td:first-child {
	width:198px;
	text-align: right;
}

#footer > #footer-content > table td ul {
	padding-left:0px;
	padding-top:5px;
	margin:0;
	list-style: none;
}

#footer > #footer-content > table td ul li a {
	text-decoration:none;
	color:#ccc;
	font-weight: normal;
}

#footer > #footer-content > table td p {
	padding:7px 0;
	margin:0;
}

#footer > #footer-content > table td p#social i {
	font-size:30px;
	margin-left:5px;
	cursor: pointer;
	-webkit-transition:.2s;
    -moz-transition:.2s;
    -o-transition:.2s;
    transition:.2s;
}

#footer > #footer-content > table td p#social i.fa-facebook-square:hover { color:#5e7fc3;  }
#footer > #footer-content > table td p#social i.fa-twitter-square:hover { color:#55acee; }
#footer > #footer-content > table td p#social i.fa-google-plus-square:hover { color:#cc181e; }
#footer > #footer-content > table td p#social i.fa-pinterest-square:hover { color:#d01d15; }
#footer > #footer-content > table td p#social i:hover {
}

#footer > #footer-content > table td ul li a:hover {
	text-decoration: underline;
}

#footer > #footer-content > table td .title {
	font-weight: bold;
}

/*******************************************************
*
*	Notifications
*
*******************************************************/

#notifications-scrollbar-trigger {
	max-height: 350px;
	overflow: hidden;
	position: relative;
}

.notifications {
}

.notifications table {
	border-spacing: 0;
	width:100%;
	height:50px;
}

.notifications table tr
{
	background:rgba(9,31,81,.05);
}

.notifications table tr.seenNotification 
{
	background:none;
}

.notifications table td {
	border-top:1px solid rgba(9,31,81,.2);
	padding:5px;
}

.notifications table td.icon {
	color:rgba(9,31,81,1);
	text-align: center;
}

.notifications table td.description {
	padding-left:0;
}

.notifications table td span.dateTime {
	width:auto;
	display: block;
	white-space: nowrap;
	padding:3px 0;
	color:gray;

	font-size:80%;
}

.notifications table.activityDescription {
	color:rgba(128,128,128,1);
	font-size:100%;
}

/*******************************************************
*
*	Popup
*
*******************************************************/

#popup-container { 
	position: fixed;
	z-index: 9999999;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: rgba(0,0,0,.4);
}
#popup-container #popup { 
	background: white;
	-moz-box-shadow: 0px 0px 10px 0px black;
	-webkit-box-shadow: 0px 0px 10px 0px black;
	box-shadow: 0px 0px 10px 0px black;
	border: 10px solid #0b1f52;
	z-index: 99999999;
	position: fixed;
	width: 500px;
	top: 30%;
	left: 50%;
	margin-left: -250px;
}
#popup-container #popup #title { 
	font-weight: bold;
	background: #0b1f52;
	color: #f1f1f1;
	padding-bottom:10px;
}
#popup-container #popup #text { 
	padding: 20px; 
}
#popup-container #popup #exit { 
	text-align: right;
	margin:10px 15px;
}
#popup-container #popup #exit i { 
	font-size: 20px; 
	color:#909cb7; 
}
#popup-container #popup #exit i:hover { cursor: pointer; color: #0b1f52; }

/*******************************************************
*
*	Activities and Messages
*
*******************************************************/

table#includes-activities {
	
}

/*******************************************************
*
*	Feedback
*
*******************************************************/

#feedback {
	position: fixed;
	bottom:10px;
	right:10px;
	border:1px solid rgba(128,128,128,.5);
	background: rgba(255,255,255,.8);
	color:#333;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding:10px;
	text-align: center;
	font-size: 80%;
}

#feedback:hover {
	border:1px solid rgba(128,128,128,.8);
	cursor: pointer;
	background: white;
}