/*
Theme Name: flyILM
Author: ICND
Author URI: http://www.icoastalnet.com/
Description: Description
Version: 1.0-wpcom
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: flyilm
Domain Path: /languages/
Tags:

*/

/*
	Lighter Blue: rgb(0, 163, 224);
	Light Blue: rgb(0, 114, 206);
	Slightly Lighter than Dark Blue: rgb(0, 89, 170);
	Dark Blue: rgb(0, 40, 85);
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Reset
2.0 - Typography
3.0 - Elements
4.0 - Forms
5.0 - Navigation
	5.1 - Links
	5.2 - Menus
6.0 - Accessibility
7.0 - Alignments
8.0 - Clearings
9.0 - Widgets
10.0 - Content
	10.1 - Posts and pages
	10.2 - Asides
	10.3 - Comments
11.0 - Infinite scroll
12.0 - Media
	12.1 - Captions
	12.2 - Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 - Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
	overflow-x: hidden;
}
*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
	box-sizing:         border-box;
}
body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}
ol, ul {
	list-style: none;
}
table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a,
a:hover,
a:active {
	outline: none;
}
a img {
	border: none;
	outline: none;
}

img[height="1"] {
	display: none;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body {
	color: rgb(0, 0, 0);
	font-family: "Ingra", "Lucida Sans", Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
	clear: both;
	margin-bottom: 10px;
}
p {
	margin-bottom: 1.5em;
}
b, strong {
	font-weight: bold;
}
dfn, cite, em, i {
	font-style: italic;
}
blockquote {
	margin: 0 1.5em;
}
address {
	margin: 0 0 1.5em;
}
#content table td img { margin-right: 5px; }
pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}
code, kbd, tt, var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
mark, ins {
	background: #fff9c0;
	text-decoration: none;
}
sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}
small {
	font-size: 75%;
}
big {
	font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}
ul, ol {
	margin: 0 0 1.5em 3em;
}
ul {
	list-style: disc;
}
ol {
	list-style: decimal;
}
li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}
dt {
	font-weight: bold;
}
dd {
	margin: 0 1.5em 1.5em;
}
img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}
figure {
	margin: 0;
}
table {
	margin: 0 0 1.5em;
	width: 100%;
}
th {
	font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border-color: #ccc #ccc #bbb;
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, .8);
	cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
	position: relative;
	float: right;
	margin-right: 15px;
	padding: 9px 10px;
	margin-top: 8px;
	margin-bottom: 8px;
	background-color: #e6e6e6;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 4px;
	z-index: 100;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
	float: right;
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}
input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}
input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing:    content-box;
	box-sizing:         content-box;
}
input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}
textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 100%;
}
body.error404 input[type="submit"]{
	float: none;
}
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {

}
a:visited,
a:hover,
a:active{
	color: #23527c;
}
/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
	height: auto;
	background-color: rgb(0, 40, 85);
}
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
	float: right;
}
.main-navigation li {
	float: left;
	position: relative;
	padding: 10px 62px 10px 0px;
}
.main-navigation li a{
	font-weight: 300;
	display: block;
	text-decoration: none;
	font-size: 1.75rem;
	color: rgb(255, 255, 255);
}

.main-navigation li:hover{}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	position: absolute;
	top: 100%;
	z-index: 1;
	display: none;
	left: 0;
}
.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}
.main-navigation ul ul li:before {content: "";display: block;position: absolute;z-index: -1;width: 100%;height: 100%;background-color: #0e2342;opacity: .90;}
.main-navigation ul ul li {
	float: right;
	position: relative;
	color: #fff;
	padding: 0px;
	font-size: 18px;
	left: 0px;
	border-bottom: none;
	width: 250px;
	text-align: left;
}
.main-navigation ul ul li:last-of-type{
	padding-bottom: 1rem;
}
.main-navigation ul ul li a{
	padding: .5rem 0 0 20px;
}
ul ul li a {padding: 5px 0px 0px 24px;}
.main-navigation li:hover > a {color: rgb(0, 163, 224);}
.main-navigation ul ul :hover > a {}
.main-navigation ul ul a:hover {}
.main-navigation ul li:hover > ul {	display: block;}
.main-navigation ul ul li:hover > ul {	left: 100%;}
.main-navigation .current_page_item a,
.main-navigation .current-menu-item a { }
.current-menu-item li {border-bottom: 2px solid rgb(255, 255, 255);}
.main-navigation .current-menu-item a:hover {}

.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}
.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
	padding-bottom: 2rem;
}
.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
	padding-bottom: 2rem;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: '';
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0;
}

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
	display: none;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
}
.hentry {
	margin: 0 0 1.5em;
}
.byline,
.updated {
	display: none;
}
.single .byline,
.group-blog .byline {
	display: inline;
}
.page-content,
.entry-content,
.entry-summary {
	margin: 1em 0 0;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}
.bypostauthor {
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}
.wp-caption-text {
	text-align: center;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}
.gallery-columns-2 .gallery-item {
	max-width: 50%;
}
.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
	max-width: 25%;
}
.gallery-columns-5 .gallery-item {
	max-width: 20%;
}
.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}
.gallery-caption {}


/*custom CSS
-----------------------------*/
a{
	color: rgb(81, 148, 206);
}
body.archive h1{
	margin-bottom: 0;
	clear: right;
}
body.archive .paging-navigation{
	display: table;
	width: 100%;
}
img.attachment-thumbnail.size-thumbnail{
	float: left;
	margin-right: 1rem;
}
.hellipse{
	padding-left: 1rem;
}
.hellipse::after{
	content: '>>';
	display: inline-block;
	position: relative;
	padding-left: .5rem;
}
#page{
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
	-webkit-flex-direction: column;
     -moz-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
	min-height: 100vh;
}
#masthead{
  -ms-flex-positive: 0;
  -webkit-flex-grow: 0;
     -moz-flex-grow: 0;
      -ms-flex-grow: 0;
					flex-grow: 0;
	position: relative;
	z-index: 2;
}
.container {
	max-width: 1220px;
	width: 100%;
	margin: 0 auto;
}
.site-branding{
	background: rgb(255, 255, 255);
	padding: 0 0 2rem 0;
}
.site-branding .container{
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
	-webkit-flex-direction: row;
     -moz-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
	-ms-flex-pack: justify;
  -webkit-justify-content: space-between;
     -moz-justify-content: space-between;
      -ms-justify-content: space-between;
          justify-content: space-between;
	-ms-flex-align: center;
  -webkit-align-items: center;
     -moz-align-items: center;
      -ms-align-items: center;
          align-items: center;
	padding-top: 2rem;
	padding-bottom: 1rem;
}
.site-branding ul{
	margin: 0;
}
.site-branding .container .logo-container{
	position: relative;
	width: 20rem;
}
.logo .left-swoop{
	fill: rgb(0, 114, 206);
}
.logo .right-swoop{
	fill: rgb(0, 163, 224);
}

.site-branding .airlines{
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
	-webkit-flex-direction: row;
     -moz-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
    -ms-flex-align: center;
  -webkit-align-items: center;
     -moz-align-items: center;
      -ms-align-items: center;
          align-items: center;
}
.site-branding .airlines a{
	padding: .5rem 2rem;
}
.site-branding .airlines img{
	min-height: 25px;
	height: 100%;
}
.delta-logo{
	border-right: 1px solid rgb(0, 40, 85);
}
.delta-logo img{
	padding-top: .5rem;
	max-width: 150px;
}
.aa-logo img{
	max-width: 180px;
}
.site-branding .button{
	color: rgb(255, 255, 255);
	background: rgb(0, 163, 224);
	font-size: 1.75rem;
}
.social .fa{
	font-size: 2.5rem;
	color: rgb(0, 114, 206);
	position: relative;
	padding-left: 1.5rem;
}
.social a {
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
ul.social{
	margin: 1rem 0 0;
}
.site-branding ul.social{
	margin: 0 auto;
	width: 90%;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
	-webkit-flex-direction: row;
     -moz-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
	-ms-flex-pack: justify;
  -webkit-justify-content: space-between;
     -moz-justify-content: space-between;
      -ms-justify-content: space-between;
          justify-content: space-between;
	-ms-flex-align: center;
  -webkit-align-items: center;
     -moz-align-items: center;
      -ms-align-items: center;
          align-items: center;
}
.site-branding ul.social li{
	padding: .5rem 0 0 0;
	display: inline-block;
	text-align: center;
}
/*	Home page carousel */
.tp-static-layers{
	bottom: 0;
}
.slider_plane_shape{
	position: absolute !important;
	bottom: 0 !important;
	top: auto !important;
	left: 3rem !important;
}
/*	Home page banner below carousel: */
.bann{
	background: #002855; /* Old browsers */
	background: -moz-linear-gradient(45deg, #002855 0%, #002855 45%, #0059aa 45%, #0059aa 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(45deg, #002855 0%,#002855 45%,#0059aa 45%,#0059aa 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(45deg, #002855 0%,#002855 45%,#0059aa 45%,#0059aa 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	color: rgb(255, 255, 255);
	font-weight: 300;
	letter-spacing: .125rem;
}
.bann .container{
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
	-webkit-flex-direction: row;
     -moz-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
	-ms-flex-pack: justify;
  -webkit-justify-content: space-between;
     -moz-justify-content: space-between;
      -ms-justify-content: space-between;
          justify-content: space-between;
	-ms-flex-align: center;
  -webkit-align-items: center;
     -moz-align-items: center;
      -ms-align-items: center;
          align-items: center;
}
.bann .container div{
	padding: .75rem 0;
}
.bann a{
	color: rgb(255, 255, 255);
}
.bann a::after{
	position: relative;
	display: inline-block;
	content: ' ';
	height: 1rem;
	width: 1rem;
	border-left: .5rem solid rgb(255, 255, 255);
	border-top: .5rem solid transparent;
	border-right: .5rem solid transparent;
	border-bottom: .5rem solid transparent;
	margin-left: .5rem;
}
.bann .flight-status{
	text-align: right;
}
.bann .bold{
	font-weight: 400;
	padding-right: 1rem;
}
.bann .blog-title-excerpt{
	padding-right: .5rem;
}

/* Home page parking lot status */
.row{
	display: block;
	width: 100%;
	margin: 0;
	padding: 1rem;
	background: rgb(255, 255, 255);
	text-align: center;
}
.row .content{
	margin: 0 auto;
}
.row .content .wrapper{
	display: inline-block;
}
.row .content span{
	position: relative;
	display: inline-block;
	padding-right: 1rem;
}
.row .content span a{
	color: rgb(0, 0, 0);
	font-family: "Ingra", "Lucida Sans", Helvetica, Arial, sans-serif;
	font-weight: bold;
	position: relative;
	padding-right: 1rem;
}
.row .content span:first-of-type{
	font-weight: bold;
	text-transform: capitalize;
}
.row .content a::after{
	position: relative;
	display: inline-block;
	content: ' ';
	height: 1rem;
	width: 1rem;
	border-left: .5rem solid rgb(0, 0, 0);
	border-top: .5rem solid transparent;
	border-right: .5rem solid transparent;
	border-bottom: .5rem solid transparent;
	margin-left: .5rem;
}
.row .content span.lot-name{
	padding-left: 1rem;
	padding-right: 0;
}
.lot-fill{
	color: rgb(12, 138, 0);
}
.lot-fill.warning{
	color: rgb(183, 0, 0);
}
.row .content span.lot-fill{
	border-right: 2px solid rgb(0, 0, 0);
}
.row .content span.lot-fill.last{
	border-right: none;
}

/* Parking options page occupancy table */
.parkinglot-table thead{
	background-color: rgb(0, 40, 85);
	color: rgb(255, 255, 255);
}
.parkinglot-table th,
.parkinglot-table td{
	font-weight: normal;
	padding: .5rem 1rem;
}
.parkinglot-table tbody{
	background-color: rgb(255, 255, 255);
}
.parkinglot-table .right{
	text-align: right;
}
.parkinglot-table tbody tr:nth-of-type(even),
.parkinglot-table .row-hover tr:hover{
	background-color: rgb(227, 237, 241);
}

/* Small menu */
.menu-toggle {display: none;}

.menu-ilm-container {
	width: 100%;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
	-webkit-flex-direction: row;
     -moz-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
	-ms-flex-pack: center;
  -webkit-justify-content: center;
     -moz-justify-content: center;
      -ms-justify-content: center;
          justify-content: center;
	-ms-flex-align: center;
  -webkit-align-items: center;
     -moz-align-items: center;
      -ms-align-items: center;
          align-items: center;
}
.main-navigation li {padding: 7px 27px 7px 38px;}
.main-navigation ul li.current_page_item:after,
.main-navigation ul li.current-menu-parent:after {content:""; display:block; position: absolute; bottom: 0; left: 0; width: 100%;  border-bottom: 2px solid rgb(255, 255, 255);}
.main-navigation ul li li:after {content: ""; display: none !important;}

.img-responsive, .thumbnail > img, .thumbnail a > img {width: 100% !important;}

.fticon{padding: 0px 10px 4px 0px;}
.fticon2{padding: 0px 10px 4px 0px;}
.btn-img{position: relative;left: 15px;}
.ft-col, #ft-col{position:relative; padding:30px 0px 0px 0px;}
.ft-col span, #ft-col span {text-transform: uppercase;}
.ft-col-2, #ft-col-2{position:relative; padding:0px 0px 20px 0px;}
.qlink{list-style-type: none; margin:0 !important;color:#ffffff; }
.qlink li a {color: #fff; text-transform: uppercase;}

.footerbg {background-color: rgb(0, 114, 206); height: auto; width: 100%; padding-bottom: 3rem;}
.footerbg .container .info{
	display: -ms-flexbox;
	display: -ms-flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
	-webkit-box-align: flex-end;
	-moz-box-align: flex-end;
	-ms-flex-align: flex-end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
	padding-top: 4rem;
	font-weight: 300;
}
.footerbg .container .info .widget_text{
	display: -ms-flexbox;
	display: -ms-flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: flex-end;
	-moz-box-align: flex-end;
	-ms-flex-align: flex-end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
	-ms-flex-positive: 1;
	-webkit-flex-grow: 1;
	-moz-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;
}
.footerbg .container .info .phone,
.footerbg .container .info .lost-and-found{
	padding-left: 2rem;
}
.footerbg .container .info .title{
	font-weight: 500;
}
.footbtm{
	background-color: rgb(0, 40, 85);
	padding: 32px 0 1rem;
	position: relative;
}
.footbtm .container{
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
  -webkit-flex-direction: row;
     -moz-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: space-between;
     -moz-justify-content: space-between;
      -ms-justify-content: space-between;
          justify-content: space-between;
	-ms-flex-pack: justify;
    -ms-flex-align: center;
  -webkit-align-items: center;
     -moz-align-items: center;
      -ms-align-items: center;
          align-items: center;
}
.footbtm .container .logo-container{
	width: 150px;
	margin-left: 2rem;
}
.footbtm .container .logo-container .letters{
	fill: rgb(255, 255, 255);
}
.footbtm p.copyright{
	font-size: 1rem;
	margin: 0;
	text-align: right;
	-webkit-flex-grow: 1;
	-moz-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;
}
.footbtm .nav-wrapper{
	-webkit-flex-grow: 1;
	-moz-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;
}
.footbtm .social .fa.fa-envelope-o{
	display: none;
}
.site-footer .info .widget{
	font-size: 1.6rem;
	font-weight: 300;
}
.site-footer .menu{
	list-style: none;
	margin: 0;
	text-align: right;
}
.site-footer .menu li{
	display: inline-block;
	padding-left: 1.5rem;
}
.site-footer,
.site-footer a{
	color: rgb(255, 255, 255);
}

.entry-title{font-size: 6rem; color: rgb(0, 89, 170); font-weight: 400; }
.entry-header{margin-top: 10px;}
.widget-area{color:#ffffff;font-size:31px;margin-top:25px;border:1px solid #7e8590;}
.widget h1{background-color: #202e42;padding:10px;}
.textwidget div{color:#ffffff;font-size:31px;background-color: #3c4c64;padding:10px;border-bottom: 1px solid #afb3bc;}
.textwidget div:last-of-type{color:#ffffff;font-size:31px;background-color: #3c4c64;padding:10px;border-bottom: none;}
.textwidget a{color:#ffffff;}
.textwidget a:hover{color:#ffffff;text-decoration: none;}
.textwidget p{
	margin-bottom: 0;
}
body.archive .entry-title{
	font-size: 3rem;
}
.site-content{
	background-color:rgb(232, 231, 232);
	-ms-flex-positive: 1;
	  -webkit-flex-grow: 1;
		 -moz-flex-grow: 1;
		  -ms-flex-grow: 1;
				flex-grow: 1;
}

.site-footer .social ul{
	margin: 1rem 0 0;
}

#content > #primary + #secondary {width: 25%; float: left;}

/*	Arrivals & Departures: */
h2.flight-type{
	font-size: 2.5rem;
}
.airline-logo{
	max-width: 3rem;
	padding-right: .5rem;
}
.flight-display.table{
	display: table;
}
.flight-display.table .table-row{
	display: block;
	position: relative;
	padding: .5rem;
}
.flight-display.table .stripe{
	background-color: rgb(0, 114, 206);
}
.flight-display.table .stripe:nth-child(2n){
	background-color: rgb(0, 163, 224);
}
.flight-display.table .header{
	background-color: rgb(0, 40, 85);
}
.table-row span{
	display: inline-block;
	position: relative;
	color: rgb(255, 255, 255);
}
.table-row .plane{
	width: 30%;
}
.table-row .city{
	width: 20%;
}
.table-row .time{
	width: 10%;
}
.table-row .remarks{
	width: 20%;
}
.table-row .track{
	width: 7%;
}
.trackingLink{
	cursor: pointer;
}
.overlay{
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, .6);
	z-index: 100;
}
.popup{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-ms-display: flex;
	-webkit-display: flex;
	-moz-display: flex;
	display: flex;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	flex-direction: row;
	background: rgb(255, 255, 255);
	border-radius: 4%;
	padding: 2rem;
	min-width: 20%;
	min-height: 35%;
}
.popup::before{
	position: absolute;
	right: 1rem;
	top: -3rem;
	color: rgb(255, 255, 255);
	display: block;
	content: 'close';
	cursor: pointer;
}
.popup .left{
	padding-right: 2rem;
}
.popup .left .info{
	margin: 1rem 0;
}
.popup .left .info i{
	float: none;
	width: 100%;
	white-space: nowrap;
}
#flight-tracker-image{
	background: rgb(255, 255, 255);
	width: 100%;
	position: relative;
	text-align: center;
}
#flight-tracker-image img{
	margin: 0 auto;
}
#flight-tracker-image .fa-spinner{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#flight-tracker-image .fa-spinner::before{
	font-size: 2rem;
}
.ui-widget-content a{
	color: #337ab7;
}
/*	Panorama images on the terminal map page	*/
div[id^="ipnrm-"]{
	margin: 2rem 0;
}
/*--------------------------------------------------------------
Responsive fixes
--------------------------------------------------------------*/
@media only screen
and (min-width : 1201px)
and (max-width : 1350px){
	.menu-ilm-container {margin: 0;}
	.main-navigation ul {float: right;}
	.main-navigation ul li {left: 0; padding: 7px 0px 7px 50px;}
	.main-navigation ul li#menu-item-258:hover > ul {left: 5%; right: 0;}
	.main-navigation ul li#menu-item-255:hover ul li:hover > ul,
	.main-navigation ul li#menu-item-256:hover ul li:hover > ul{right: 100%; left: auto;}
	.main-navigation ul li#menu-item-258:hover > ul {left: -12%; right: auto;}
}

@media only screen
and (min-width : 992px)
and (max-width : 1200px) {
	.menu-ilm-container {float: right; margin: 0;}
	.main-navigation li{right: 20px; padding:7px 0px 7px 40px; left: 0}
	.main-navigation ul li#menu-item-255:hover ul li:hover > ul,
	.main-navigation ul li#menu-item-256:hover ul li:hover > ul{right: 100%; left: auto;}
	.main-navigation ul li#menu-item-258:hover > ul {left: -12%; right: auto;}
}


@media only screen
and (min-width : 717px)
and (max-width : 991px) {
	.menu-ilm-container {float: right; margin: 0;}
	.main-navigation li{left: 0; right: 20px; padding:7px 0px 7px 30px; font-size: 90%;}
	.main-navigation li a {font-size: 18px;}
	.main-navigation ul li#menu-item-258:hover > ul {left: -57%; right: auto;}
	.main-navigation ul ul li {float: left ;position: relative;color: #fff;padding: 0px;font-size: 18px;left: 0px;border-bottom: none;top:0;}
	.main-navigation ul li#menu-item-254:hover > ul {left: -4px;}
	.main-navigation ul li#menu-item-255:hover ul li:hover > ul,
	.main-navigation ul li#menu-item-256:hover ul li:hover > ul{right: 100%; left: auto;}
	#content > #primary,
	#content > #primary + #secondary {width: 100%; float: none;}
}

@media screen and (max-width: 768px) {
	.site-footer .social {
		display: block;
		margin: 20px auto;
		padding: 0 !important;
		float: none;
		text-align: center;
	}

	#content > #primary,
	#content > #primary + #secondary {width: 100%; float: none;}
	footer .col-xs-6{
		float: none;
		clear: both;
		width: 100%;
		text-align: center;
	}
	footer .col-xs-6.col-md-7{
		padding-top: 0 !important;
	}
	footer .social{
		display: block;
	}
}

@media only screen
and (min-width : 602px)
and (max-width : 716px){
	#content > #primary,
	#content > #primary + #secondary {width: 100%; float: none;}
}

@media only screen
and (min-width : 481px)
and (max-width : 716px){
	.btn-img{position: relative;left: 7px;width: 60%;top: -10px}
	#content > #primary,
	#content > #primary + #secondary {width: 100%; float: none;}
}

@media only screen
and (min-width : 481px)
and (max-width : 602px){
	.btn-img{position: relative;left: 7px;width: 61%;top: -20px}
	#content > #primary,
	#content > #primary + #secondary {width: 100%; float: none;}
}

@media only screen
and (min-width : 320px)
and (max-width : 480px) {

	.main-navigation li {float: none;position: relative;color: #fff;font-size: 21px;padding: 10px 62px 5px 0px;border-bottom: 1px solid;left:0%;}
	.main-navigation li:last-of-type {float: none;position: relative;color: #fff;font-size: 21px;padding: 10px 62px 5px 0px;border-bottom: 0px solid;left:0%;}
	.main-navigation li:first-of-type {float: none;position: relative;color: #fff;font-size: 21px;padding: 10px 62px 5px 0px;border-bottom: 1px solid;left:0%;padding-top: 30px;}
	.main-navigation ul ul {box-shadow: 0px;float: none;position: relative;top: 0px;left: 0px;z-index: 99;display: inline;}
	.main-navigation .sub-menu li{float: none;position: relative;color: #fff;font-size: 21px;padding: 0px 0px 10px 0px;border-bottom: 0px solid;left: 0%;padding-top: 0px;background-color: none;top:0;}
	.btn-img{position: relative;left: 7px;width: 61%;top: -20px}

	.fticon2 {display: none;}

	#content > #primary,
	#content > #primary + #secondary {width: 100%; float: none;}
	form input[type="text"],
	form input[type="email"] {width: 100%;}

}
@media screen and (max-width: 1100px){
	.row .content .wrapper{
		display: block;
		float: none;
		padding-left: 0;
		width: 100%;
		text-align: center;
	}
	.row .content .wrapper .lot-fill{
		border-right: none !important;
	}
	.site-branding .airlines img{
		height: auto;
	}
	.site-branding .aa-logo{
		width: 160px;
	}
	.site-branding .delta-logo{
		width: 130px;
	}
	.bann{
		background: #002855; /* Old browsers */
		background: -moz-linear-gradient(180deg, #002855 0%, #002855 50%, #0059aa 50%, #0059aa 100%); /* FF3.6-15 */
		background: -webkit-linear-gradient(180deg, #002855 0%,#002855 50%,#0059aa 50%,#0059aa 100%); /* Chrome10-25,Safari5.1-6 */
		background: linear-gradient(180deg, #002855 0%,#002855 50%,#0059aa 50%,#0059aa 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	}
	.bann .container{
	  -webkit-flex-direction: column;
		 -moz-flex-direction: column;
		  -ms-flex-direction: column;
			  flex-direction: column;
	}
	.bann .container div{
		margin: 1rem auto;
		text-align: center;
	}
	.footerbg .container .info{
		-webkit-justify-content: space-between;
		 -moz-justify-content: space-between;
		  -ms-justify-content: space-between;
			  justify-content: space-between;
		-ms-flex-pack: justify;
	}
	.footerbg .container .info .phone,
	.footerbg .container .info .lost-and-found{
		-ms-flex-positive: 1;
	  -webkit-flex-grow: 1;
		 -moz-flex-grow: 1;
		  -ms-flex-grow: 1;
			  flex-grow: 1;
		text-align: right;
	}
	.footerbg .container .info .lost-and-found{
		-ms-flex-positive: 0;
	  -webkit-flex-grow: 0;
		 -moz-flex-grow: 0;
		  -ms-flex-grow: 0;
			  flex-grow: 0;
	}
	.footerbg .container .info .lost-and-found span::after{
		display: none;
	}
	.footerbg .container .info .title::after{
		display: table;
		content: ' ';
	}
	.footerbg .container .info .widget_text{
		-webkit-flex-direction: column;
		   -moz-flex-direction: column;
		    -ms-flex-direction: column;
			    flex-direction: column;
	  -ms-flex-positive: 0;
	  -webkit-flex-grow: 0;
		 -moz-flex-grow: 0;
		  -ms-flex-grow: 0;
			  flex-grow: 0;
	}
	.footbtm .container.bottom p.copyright{
		margin: 2rem 0;
	}
}

@media screen and (max-width: 950px){
	.entry-title{
		font-size: 4rem;
	}
	.site-branding{
		padding-bottom: 0;
		padding-top: 1rem;
	}
	.site-branding .container{
	  -webkit-flex-direction: column;
		 -moz-flex-direction: column;
		  -ms-flex-direction: column;
			  flex-direction: column;
		padding-top: 0;
		padding-bottom: 0;
	}
	.site-branding .container div{
		padding: 1rem 0;
	}
	.site-branding .container .menu-social-links-container{
		padding-top: 0;
	}
	.site-branding .aa-logo{
		width: 180px;
	}
	.site-branding .delta-logo{
		width: 150px;
	}
	.menu-toggle,
	.main-navigation.toggled .nav-menu {display: block;}
	.menu-toggle {
		color: rgb(255, 255, 255);
		float: right;
		font-size: 1.5rem;
		font-weight: 300;
		margin: 10px 0;
	}
	.menu-toggle .fa{
		padding-left: 1rem;
		font-size: 2rem;
	}
	.menu-ilm-container {margin: 0; float: none; clear: both}
	.main-navigation ul {
		display: none;
		width: 100%;
		text-align: center;
	}
	.main-navigation li {float: none;position: relative;color: #fff;font-size: 21px;padding: 10px 0 5px 0px;}
	.main-navigation ul ul {
		box-shadow: none;
		float: none;
		position: relative;
		z-index: 99;
		display: block;
		width: 100%;
		text-align: center;
	}
	.main-navigation li.menu-item-has-children > a{
		font-size: 30px;
		font-weight: bold;
	}
	.main-navigation .sub-menu li{
		float: none;
		position: relative;
		color: #fff;
		font-size: 21px;
		padding:0;
		border-bottom: none;
		background-color: none;
		width: 100%;
		text-align: center;
	}
	.main-navigation ul li:hover > ul{left: 0 !important;}
	.main-navigation ul ul li > ul,
	.main-navigation ul ul li:hover > ul {display: block !important; left: 20px !important; box-shadow: none;}
	.main-navigation ul ul li:before{ background: none;}
	.main-navigation ul li.current_page_item::after, .main-navigation ul li.current-menu-parent::after {
		display: none;
	}
	.main-navigation ul ul li a{
		padding: 0;
	}
	.slider_plane_shape{
		display: none !important;
	}
	.slide-text{
		display: none !important;
	}
	.slider-cta-button{
		left: 0 !important;
		width: 100% !important;
		position: relative !important;
		text-align: center !important;
	}
	.slider-cta-button div{
		position: relative !important;
		margin: 0 auto !important;
	}
	.tp-static-layers{
		width: 100%;
	}
	.consistent-tag-line{
		position: relative !important;
		width: 100% !important;
		text-align: center !important;
		left: 0 !important;
	}
	.consistent-tag-line div{
		position: relative !important;
		margin:0 auto !important;
	}
	.footerbg .container .info{
	  -webkit-flex-direction: column;
		 -moz-flex-direction: column;
		  -ms-flex-direction: column;
			  flex-direction: column;
		-ms-flex-align: center;
	  -webkit-align-items: center;
		 -moz-align-items: center;
		  -ms-align-items: center;
			  align-items: center;
	}
	.footerbg .info .widget_text{
	  -webkit-flex-direction: column;
		 -moz-flex-direction: column;
		  -ms-flex-direction: column;
			  flex-direction: column;
	}
	.footerbg .info div{
		width: auto;
		text-align: center;
	}
	.footerbg .container .info .title::after{
		display: none;
	}
	.footerbg .container .info .lost-and-found span::after{
		display: table;
	}
	.footerbg .container .info .lost-and-found,
	.footerbg .container .info .phone{
		text-align: center;
	}
	.footbtm .nav-wrapper{
		display: none;
	}
	.footbtm .container{
		-ms-justify-content: center;
		-webkit-justify-content: center;
		-moz-justify-content: center;
		justify-content: center;
	}
	.footbtm .container.bottom{
		-ms-flex-direction: column;
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		flex-direction: column;
	}
	.footbtm .container .logo-container{
		margin-left: 0;
	}
	.flight-display .table-row.header{
		display: none;
	}
	.table-row.stripe span{
		display: block;
		float: none;
		clear: both;
		width: 100%;
		font-size: 2rem;
		padding: 1rem;
	}
	.table-row.stripe span.track{
		text-align: center;
	}
	.table-row.stripe span:not(.track)::before{
		position: relative;
		display: block;
		float: left;
		content: attr(data-label);
		text-transform: capitalize;
		padding-right: 1rem;
	}
	.mg-image-tiles div.mg-thumbs.mg-fourcol ul li{
		width: 47% !important;
	}
}
@media screen and (max-width: 500px){
	.main-navigation li:last-of-type,
	.main-navigation li:first-of-type{
		padding: 10px 0 5px 0px;
	}
	.site-branding .delta-logo,
	.site-branding .aa-logo{
		display: none;
	}
	.slider_text_constant{
		font-size: 2.5rem !important;
	}
	.bann .container{
		-ms-flex-align: flex-start;
	  -webkit-align-items: flex-start;
		 -moz-align-items: flex-start;
		  -ms-align-items: flex-start;
			  align-items: flex-start;
	}
	.bann .container .blog-title-excerpt::after{
		display: block;
		content: ' ';
	}
	.tp-static-layers .tp-parallax-wrap:nth-of-type(3){
		left: calc(50vw - 150px) !important;
	}
	.mg-image-tiles div.mg-thumbs.mg-fourcol ul li{
		width: 100% !important;
	}
}

#text-2 { display: none; }