/*!
 * Concello de Ordes
 * styles.css
 * General css styles
 */


/* -------------------------------------------------------------
   BODY
------------------------------------------------------------- */

/* General */ 
html {
	position: relative;
	min-height: 100%;
}
body {
	margin-bottom: 50px;
	background: #FFF;
}

/* Wrapper */ 
.wrapper {
}
#homepage {
}

/* Main content */ 
#main-content {
	padding-bottom: 60px;
}


/* -------------------------------------------------------------
   TYPOGRAPHY
------------------------------------------------------------- */

/* General */
body {
	font-family: 'Varela Round', sans-serif;
	color: #333;
}

/* Titles */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Baloo Bhai', cursive;
    font-weight: 300;
    letter-spacing: 1px;
    color: #0099d0;
    text-transform: lowercase;
}
h1 {
	margin: 0;
	font-size: 42px;
	line-height: 1.2em;
}
h2 {
	margin: 0;
	margin-bottom: 30px;
	letter-spacing: 1px;
}

/* Header */
header {
	margin: 0;
	margin-bottom: 60px;
	text-align: center;
}
header h3 {
	margin: 0;
	font-size: 42px;
	line-height: 1;
	text-transform: lowercase;
}
header p {
	font-size: 20px;
	font-style: italic;
	line-height: 1.8 !important;
	color: #004b70;
}
header hr {
	width: 90px;
	height: 2px;
	margin: 30px auto;
	border: none;
	background: #0099d0;
}

/* Paragraph */
p {
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
}
p.lead {
	margin-bottom: 30px;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.5em;
}

/* List */
li {
    font-size: 15px;
    font-weight: 300;
}

/* Date, time, location, category */
.date:before,
.time:before,
.location:before,
.category:before {
	display: inline-block;
	margin-right: 5px;
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
}
.date:before {
	content: '\f133';
}
.date.end-date:before {
	margin-left: 5px;
	content: ' - ' !important;
}
.time {
	margin-left: 20px;
}
.time:before {
	content: '\f017';
}
.location {
	margin-left: 20px;
}
.location:before {
	content: '\f041';
}
.category:before {
	content: '\f02b';
}

/* Required text */
p.required {
	font-style: italic;
	font-size: 14px;
}

/* Table */
td {
    font-size: 18px;
    font-weight: 300;
}


/* -------------------------------------------------------------
   BUTTONS
------------------------------------------------------------- */

/* Default */
.btn-default {
	margin: 0;
	padding: 18px 30px 16px;
	color: #FFF;
	line-height: 1;
	letter-spacing: .5px;
	text-transform: uppercase;
	border-radius: 0;
	border: none;
	background: #0099d0;
}
.btn-default:hover {
	color: #FFF !important;
	background: #004b70;
}
.btn-default:focus {
	color: #FFF !important;
}

/* Back button */
.btn-back {
	padding: 15px 0 13px;
}
.btn-back:before  {
	display: inline-block;
	margin: 0;
	margin-right: 10px;
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
	content: '\f104';	
}

/* Dropdown toggle */
.btn.dropdown-toggle:before {
	margin: 0;
	content: '';
}
.btn.dropdown-toggle:after {
	display: inline-block;
	margin: 0;
	margin-left: 5px;
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
	content: '\f107';
}
.btn-group.open .dropdown-toggle {
	color: #FFF;
	box-shadow: none;
}

/* Buttons container */
.buttons-container {
	margin: 45px 0 0;
	text-align: center;
}

/* Load button */
.btn-default span {
	margin: 0 10px 0 0;
	padding: 0;
}
.btn-default .fa {
	font-size: 16px;
}
.btn-default[disabled],
.btn-default[disabled]:focus
.btn-default[disabled]:hover {
	background: #0f71b7 !important;
}


/* -------------------------------------------------------------
   LINK
------------------------------------------------------------- */

/* General */ 
a {
	color: #0099d0;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}
a:hover,
a:focus {
	color: #0099d0;
    outline: 0;
    box-shadow: none;
    border: none;
}


/* -------------------------------------------------------------
   GENERAL LISTING
------------------------------------------------------------- */

/* Item */
.list-item {
	position: relative;
	float: left;
	width: 25%;
	min-height: 1px;
	margin: 0;
	padding: 0 15px;
}

/* Link */
.list-item a {
	display: block;
	margin: 0;
	color: #1C1C1B;
}
.list-item a:hover {
	color: #1C1C1B;
}

/* Image */
.list-item .item-image {
	display: block;
	float: left;
	width: 100%;
	margin: 0;
	text-align: center;
	overflow: hidden;	
}
.list-item .item-image img {
	display: block;
	width: 100%;
	margin: 0;
}

/* Text */
.list-item .text-container {
	display: block;
	float: left;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #FFF;
}
.list-item .text-container h2 {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .5px;
}
.list-item .text-container p {
	margin: 0;
	font-size: 12px;
}


/* -------------------------------------------------------------
   HEADER
------------------------------------------------------------- */

/* General */ 
#header {
    position: relative;
    top: 0;
    left: 0;
    z-index: 101;
    width: 100%;
    margin: 0;
	background: #FFF;
}
#header .container {
	position: relative;
	width: 100%;
    height: 122px;
	padding: 0;
}

/* Logo */
#header .logo {
	position: absolute;
	top: 10px;
	left: 50%;
	float: left;
	width: 220px;
	min-height: 1px;
	margin: 0;
	margin-left: -110px;
}
#header .logo a {
	display: block;
	margin: 0;
}
#header .logo img {
	display: block;
	width: 100%;
	margin: 0;
}

/* Language links */
#header .language-links {
	float: left;
	margin: 32px 0 0 30px;
	padding: 0;
	list-style: none;
}
#header .language-links li {
	font-size: 12px;
	font-style: italic;
}

/* Social follow */
#header .social-follow {
	float: right;
	margin: 26px 30px 0 0;
	padding: 0;
	list-style: none;
}
#header .social-follow li {
	float: left;
	margin-left: 10px;
	text-align: center;
}
#header .social-follow li a:hover {
	text-decoration: none;
}
#header .social-follow li i {
	display: block;
	width: 32px;
	font-size: 24px;
	line-height: 32px;
}
#header .social-follow li:first-child i {
	font-size: 22px;
}


/* -------------------------------------------------------------
   MAIN NAVIGATION
------------------------------------------------------------- */

/* General */ 
#header #main-navigation {
	width: 100%;
	margin: 0;
	margin-top: 80px;
	padding: 0;
	background: #0099d0;
	border-bottom: 1px solid #FFF;
}
#header #main-navigation .navbar-nav {
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: center;.item-image
}
#header #main-navigation .navbar-nav>li {
	display: inline-block;
	position: relative;
	float: none;
	margin: 0;
	padding: 0;
	font-size: 18px;
	letter-spacing: 1px;
	text-transform: lowercase;
}
#header #main-navigation .navbar-nav>li>a {
	height: 42px;
	margin: 0;
	padding: 11px 20px 0;
	color: #FFF;
	background: none;
	cursor: pointer;
}
#header #main-navigation .navbar-nav>li>a:hover,
#header #main-navigation .navbar-nav>li:hover>a {
	color: #fff;
	background: #005c82;
}
#header #main-navigation .navbar-nav>li.active>a,
#header #main-navigation .navbar-nav>li.open>a,
#header #main-navigation .navbar-nav>li.open>a:hover {
	color: #FFF;
	background: #005c82;
}

/* Dropdown */ 
#header #main-navigation .dropdown-menu {
	padding: 0;
	background: #005c82;
	border: none;
	border-radius: 0;
	box-shadow: none;
}
#header #main-navigation .dropdown-menu>li {
	border-top: 1px solid #FFF;
}	
#header #main-navigation .dropdown-menu>li>a {
	padding: 8px 20px;
	color: #FFF;
}
#header #main-navigation .dropdown-menu>li>a:hover {
	color: #FFF;
	background: #0099d0;
}


/* -------------------------------------------------------------
   HEADER IMAGE
------------------------------------------------------------- */

/* General */
#header-image {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #000;
	background-repeat: norepeat;
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;	
	background-position: center;	
}

/* Spacer */
#header-image .spacer {
	width: 100%;
	height: auto;
	margin: 0;
}
#header-image img {
	display: block;
	width: 100%;
	margin: 0;
}

/* Mobile image */
#header-image .image-small {
	display: none;
}


/* -------------------------------------------------------------
   BREADCRUMBS / FILTERS
------------------------------------------------------------- */

/* General */
#breadcrumbs-filters {
	width: 100%;
	margin: 0;
	padding: 0;
}
#breadcrumbs-filters .container {
	width: 970px;
	padding: 0;
}

/* Breadcrumbs */
#breadcrumbs-filters .breadcrumb {
	float: left;
	margin: 0;
	padding: 15px 0;
	border-radius: 0;
	background: none;
}
#breadcrumbs-filters .breadcrumb li {
	font-size: 12px;
}
#breadcrumbs-filters .breadcrumb li.active {
	color: #333;
}
#breadcrumbs-filters .breadcrumb li a {
}
#breadcrumbs-filters .breadcrumb>li+li:before {
}


/* -------------------------------------------------------------
   PAGE HEADER
------------------------------------------------------------- */

/* General */
header.page-header {
	display: block;
	margin: 30px 0 45px;
	padding: 0;
	border: none;
}
header.page-header p {
	margin: 0;
	font-size: 14px;
	line-height: 28px;
	font-weight: 300;
}
header.page-header span {
	white-space: nowrap;
}

/* Share */
.page-header .addthis_default_style {
	margin-top: 30px;
}
.page-header .addthis_default_style label {
	margin: 0;
	font-weight: 400;
	line-height: 32px;
}
.page-header .addthis_default_style a {
	display: inline-block;
	float: none;
	margin: 0;
	padding: 0;
	text-decoration: none;
	background: none;
	color: #011d2d !important;
	cursor: pointer;
}
.page-header .addthis_default_style a:hover {
}
.page-header .addthis_default_style a .icon {
	display: block;
	margin: 0;
}
.page-header .addthis_default_style a .icon:before {
	display: block;
	width: 32px;
	height: 32px;
	margin: 0;
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 18px;
	line-height: 32px;
	text-align: center;
	vertical-align: -1px;
}
.page-header .addthis_default_style .addthis_button_facebook:hover {
	color: #4c66a4;
}
.page-header .addthis_default_style .addthis_button_facebook .icon:before {
	content: "\f09a"
}
.page-header .addthis_default_style .addthis_button_twitter:hover {
	color: #4099FF;
}
.page-header .addthis_default_style .addthis_button_twitter .icon:before {
	content: "\f099"
}
.page-header .addthis_default_style .addthis_button_google_plusone_share:hover {
	color: #D34836;
}
.page-header .addthis_default_style .addthis_button_google_plusone_share .icon:before {
	content: "\f0d5"
}
.page-header .addthis_default_style .addthis_button_email:hover {
	color: #000;
}
.page-header .addthis_default_style .addthis_button_email .icon:before {
	content: "\f0e0"
}


/* -------------------------------------------------------------
   SLIDESHOW
------------------------------------------------------------- */

/* General */
#homepage #slideshow .container {
	width: 100%;
	margin: 0;
	padding: 0;	
}

/* Item */
#homepage .carousel .item {
	background-repeat: norepeat;
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;	
	background-position: center;
}

/* Spacer */
#homepage .carousel .item .spacer {
	width: 100%;
	height: auto;
	margin: 0;
}
#homepage .carousel .item .spacer img {
	display: block;
	width: 100%;
	margin: 0;
}

/* Mobile image */
#homepage .carousel .item .image-small {
	display: none;
}

/* Indicators */
#homepage .carousel .carousel-indicators {
	bottom: 0;
}
#homepage .carousel .carousel-indicators li {
	width: 12px;
	height: 12px;
	margin: 0 2px;
	border: none !important;
	background: #FFF;
}
#homepage .carousel .carousel-indicators .active {
	width: 12px;
	height: 12px;
	margin: 0 2px;
	background: #0099d0;
	border: none !important;
}

/* Text container */
#homepage .carousel .text-container {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 50%;
	width: 1170px;
	height: 100%;
	margin-left: -585px;
	padding: 75px 15px;
	text-align: center;
	font: 0/0 a;
}
#homepage .carousel .text-container:before {
	content: " ";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}

/* Article */
#homepage .carousel .text-container article {
	display: inline-block;
	width: auto;
	padding: 30px 60px;
	vertical-align: middle;
	font: 12px/1 Varela Round;
	text-align: center;
	text-transform: uppercase;
	background: rgba(0,0,0,.5);
}
#homepage .carousel .text-container article h2 {
	margin: 0;
	margin-bottom: 10px;
	font-size: 60px;
	color: #FFF;
}
#homepage .carousel .text-container article p {
	margin: 0;
	color: #FFF;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 1px;
}
#homepage .carousel .text-container article a {
	color: #FFF;
}

/* Controls */
#homepage .carousel .carousel-control {
	width: 42px;
	margin: 0;
	text-decoration: none;
	background: none;
}
#homepage .carousel .carousel-control:hover {
	text-decoration: none;
}
#homepage .carousel .carousel-control .icon {
	display: inline-block;
	position: absolute;
	top: 50%;
	z-index: 5;
	width: 80px;
	height: 80px;
	margin: 0;
	margin-top: -40px;
	padding: 0;
	line-height: 80px;
	color: #FFF;
	background: none;
}
#homepage .carousel-control.left .icon {
	left: 0;
}
#homepage .carousel-control .icon:before {
	display: block;
	width: 100%;
	padding: 0;
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 60px;
    color: #FFF;
}
#homepage .carousel-control.left .icon:before {
	content: '\f104';
}
#homepage .carousel-control.right .icon {
	right: 0;
}
#homepage .carousel-control.right .icon:before {
	content: '\f105';
}


/* -------------------------------------------------------------
   HOMEPAGE SERVICES
------------------------------------------------------------- */

/* General */
#homepage #services {
	padding: 60px 0 75px;
	text-align: center;
}

/* Listing */
#homepage #services .row {
	margin-bottom: 45px;
}
#homepage #services .list-item {
	width: 33.33333333%;
	padding: 0 30px;
	text-align: center;
}
#homepage #services .list-item img {
	margin-bottom: 15px;
}
#homepage #services .list-item h4 {
	font-size: 24px;
	color: #004b70;
}
#homepage #services .list-item p {
	margin-bottom: 0;
}


/* -------------------------------------------------------------
   HOMEPAGE ABOUT US
------------------------------------------------------------- */

/* General */
#homepage #aboutus {
	padding: 60px 0 75px;
	text-align: center;
	background: #0099d0;
}

/* Header */
#homepage #aboutus header {
	margin-bottom: 30px;
}
#homepage #aboutus header h3 {
	color: #FFF;
}
#homepage #aboutus header p {
	font-size: 20px;
	color: #004b70;
}
#homepage #aboutus header hr {
	background: #FFF;
}

/* Content */
#homepage #aboutus p {
	font-size: 24px;
	line-height: 1.8;
	color: #FFF;
}

/* Button */
#homepage #aboutus .btn-default {
	margin-top: 20px;
	background: #004b70;
}
#homepage #aboutus .btn-default:hover {
	color: #004b70 !important;
	background: #FFF;
}


/* -------------------------------------------------------------
   FREETEXT
------------------------------------------------------------- */

/* General */
.freetext {
	width: 970px;
}

/* Content image */
.freetext .content-image {
	display: block;
	width: 100%;
	margin: 30px 0;
}
.freetext .content-image img {
	display: block;
	width: 100%;
	margin: 0;
}
.freetext .content-image .text-container {
	margin-top: 5px;
}
.freetext .content-image .text-container p {
	font-size: 13px;
}

/* Services listing */
.freetext .services-listing {
	margin: 0;
	padding: 0;
	list-style: none;
	margin-bottom: 30px;
}
.freetext .services-listing li {
	display: inline-block;
	margin: 0;
	margin-bottom: 5px;
	padding: 5px 5px;
	color: #FFF;
	background: #005c82;
	border-radius: 2px;
}

/* -------------------------------------------------------------
   RELATED INFORMATION
------------------------------------------------------------- */

/* General */
#related-info {
	width: 100%;
	margin-top: 60px;
}

/* List item */
#related-info .related-items {
	display: block;
	float: left;
	width: 100%;
	margin: 0;
	margin-bottom: 30px;
	padding: 0;
}
#related-info .related-items h4 {
	padding: 15px 0;
	font-size: 16px;
	line-height: 1;
	font-weight: 700;
	text-transform: uppercase;
	border-top: 1px solid #1d1e1c;
	border-bottom: 1px solid #1d1e1c;	
}
#related-info .related-items:first-child h4 {
	border-top: 3px solid #1d1e1c;
}
#related-info .related-items ul {
	float: left;
	width: 100%;
	margin: 15px 0 0;
	padding: 0;
	padding-left: 25px;
}
#related-info .related-items li {
	position: relative;
	float: left;
	width: 50%;
	min-height: 1px;
	margin: 0;
	margin-bottom: 15px;
	padding-right: 45px;
	line-height: 1.2em;
	list-style: none;
}
#related-info .related-items li:nth-child(2n+1) {
	clear: left;
}

/* List icons */
#related-info .related-items li:before {
	display: inline-block;
	margin: 0;
	margin-left: -25px;
	margin-right: 12px;
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 14px;
	vertical-align: 0;
}
#related-info .downloads li:before {
	content: '\f016';
}
#related-info .links li:before {
	content: '\f08e';
}

/* Gallery */
#related-info .gallery ul {  
	float: none; 
	width: auto;      
    margin: 0;
    margin-top: 30px;
    margin-right: -10px;
    margin-left: -10px;
    padding: 0;
}
#related-info .gallery li {
	width: 25%;
	margin-bottom: 20px;
	padding: 0 10px;
	line-height: 1;
}
#related-info .gallery li:nth-child(2n+1) {
	clear: none;
}
#related-info .gallery li img {
    cursor: pointer;
}

/* Gallery modal */
#galleryModal .modal-body {
    padding:5px !important;
}
#galleryModal .modal-content {
    border-radius:0;
}
#galleryModal .modal-dialog img {
    text-align:center;
    margin:0 auto;
}
#galleryModal .controls{          
	width:50px;
    display:block;
    font-size:11px;
    padding-top:8px;
    font-weight:bold;          
}
#galleryModal .next {
    float:right;
    text-align:right;
}


/* -------------------------------------------------------------
   CONTACT
------------------------------------------------------------- */

/* General */
#contact {
	background: #f2f2f2;
}
#contact #main-content {
	width: 100%;
	padding: 0;
	text-align: center;
}
#contact #main-content .content-wrapper {
	width: 720px;
	margin: 0 auto;
}

/* Breadcrumbs */

/* Page header */
#contact .page-header {
	width: 100%;
	margin: 45px 0;
	text-align: center;
}

/* Typography */
#contact h2 {
	margin: 0 0 30px;
}
#contact p {
	margin: 0;
}
#contact p.required {
	text-align: right;
}

/* Contact form */
.contact-form {
	width: 100%;
	margin: 15px 0 60px;
}
.contact-form .form-group {
	margin: 0;
	margin-bottom: 10px;
	padding: 10px 0;
	background: #FFF;
}
.contact-form .form-check {
	visibility: hidden;
	display: none;
}
.contact-form .form-group.form-buttons {
	padding: 0;
	padding-top: 15px;
	text-align: center;
	background: none;
}
.contact-form .control-label {
	position: relative;
	float: left;
	width: 20%;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
	text-align: left;
}
.contact-form .required .control-label:after {
	display: inline-block;
	margin-left: 5px;
	content: '*'
}
.contact-form .input-container {
	position: relative;
	float: left;
	width: 80%;
	min-height: 1px;
	padding-right: 15px;	
}
.contact-form .form-control {
	width: 100%;
	max-width: 100%;
	text-align: left;
	border: none;
	border-left: 1px solid #DDD;
	background: none;
	border-radius: 0;
	box-shadow: none;
}
#contact .select2-container--default .select2-selection--single {
	height: 34px;
	text-align: left;
	border: none;
	border-left: 1px solid #DDD;
	border-radius: 0;
}
#contact .select2-container--default .select2-selection--single:focus {
	box-shadow: none;
	outline: none;
	border: 0;
	border-left: 1px solid #DDD;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 34px !important;
	color: #1d1e1c !important;
}
#contact .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 34px;
}
.select2-dropdown {
	border: 1px solid #DDD !important;
	border-radius: 0 !important;
}
.select2-dropdown li {
	font-size: 14px;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background: #0f71b7 !important;
}

/* Contact details */
#contact-details {
	width: 100%;
	padding: 60px 0;
	text-align: center;
	background: #FFF;
}
#contact-details .content-wrapper {
	margin: 0;
}
#contact-details h2 {
	margin: 0 0 30px;
}
#contact-details p {
	text-align: center !important;
}

#contact-details ul {
	width: 600px;
	margin: 30px auto 0;
	padding: 0;
	text-align: left;
	list-style: none;
}
#contact-details li {
	margin: 0;
	margin-bottom: 10px;
	padding: 0;
	line-height: 42px;
	background: #F2F2F2;
}
#contact-details li:before {
	display: inline-block;
	width: 42px;
	height: 42px;
	margin-right: 15px;
	font-family: "fontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 18px;
	text-align: center;
	content: '\f105';
	color: #FFF;
	background: #0f71b7;
}
#contact-details .address:before {
	content: '\f041';
}
#contact-details .telephone:before {
	content: '\f095';
}
#contact-details .email:before {
	content: '\f0e0';
}
#contact-details .department {
	text-align: left;
	border: none;
}	

/* Google map */
#google-map {
	width: 100%;
	margin: 0;
	padding: 0;
}
#google-map>.content-wrapper {
	width: 100%;
	height: 480px;
	margin: 0;
	background: #CCC;
}
#google-map iframe {
	width: 100%;
	height: 480px;
}


/* -------------------------------------------------------------
   FOOTER
------------------------------------------------------------- */

/* General */
#footer {
	position: absolute;
	clear: both;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50px;
	margin: 0;
	background: #FFF;
}

/* Contact details */
#footer .contact-details {
	padding: 30px 0 28px;
	text-align: center;
	background: #005c82;
}
#footer .contact-details p {
	margin: 0;
	font-size: 24px;
	color: #FFF;
}
#footer .contact-details p .divider {
	margin: 0 30px;
	border-left: 1px solid #0099d0;
}
#footer .contact-details p a {
	color: #FFF;
}
#footer .contact-details p i {
	margin-right: 15px;
}
#footer .contact-details .social-link i {
	margin: 0 10px;
}

/* Footer links */
#footer .footer-links {
	display: block;
	width: 100%;
	height: 50px;
	margin: 0;
	text-align: center;
	overflow: hidden;
}
#footer .footer-links ul {
	margin: 0;
	padding: 0;
}
#footer .footer-links li {
	display: inline;
	margin-left: 10px;
	font-size: 11px;
	font-weight: 300;
	line-height: 52px;
	color: #0099d0;
	text-transform: uppercase;
}
#footer .footer-links li a {
	color: #0099d0;
	cursor: pointer;
}

/* Footer logo */
#footer .footer-links .footer-logo {
	float: left;
	width: auto;
	margin: 8px 0;	
	margin: 0;
}
#footer .footer-links .footer-logo a {
	float: left;
	width: 80px;
	margin: 0 15px;
	padding: 8px 0;
}
#footer .footer-links .footer-logo a:first-child {
	width: 80px;
	padding: 11px 0;
}

#footer .footer-links .footer-logo img {
	display: block;
	width: 100%;
	margin: 0;
}

/* -------------------------------------------------------------
   MODAL
------------------------------------------------------------- */

/* General */
.modal .modal-header {
	padding: 15px 30px;
}
.modal .modal-title {
	text-transform: uppercase;
}
.modal .modal-body {
	padding: 15px 30px;
	text-align: justify;
}
.modal .modal-body p {
	font-size: 14px;
}

