/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.width-1-of-1 {
  width: 100%; }

.width-1-of-2 {
  width: 50%; }

.width-1-of-3 {
  width: 33.33333%; }

.width-2-of-3 {
  width: 66.66667%; }

.width-1-of-4 {
  width: 25%; }

.width-2-of-4 {
  width: 50%; }

.width-3-of-4 {
  width: 75%; }

.width-1-of-5 {
  width: 20%; }

.width-2-of-5 {
  width: 40%; }

.width-3-of-5 {
  width: 60%; }

.width-4-of-5 {
  width: 80%; }

.width-1-of-9 {
  width: 11.11111%; }

.width-2-of-9 {
  width: 22.22222%; }

@media (min-width: 720px) {
  .mobile-1-of-1 {
	width: 100%; }

  .mobile-1-of-2 {
	width: 50%; }

  .mobile-1-of-3 {
	width: 33.33333%; }

  .mobile-2-of-3 {
	width: 66.66667%; }

  .mobile-1-of-4 {
	width: 25%; }

  .mobile-2-of-4 {
	width: 50%; }

  .mobile-3-of-4 {
	width: 75%; }

  .mobile-1-of-5 {
	width: 20%; }

  .mobile-2-of-5 {
	width: 40%; }

  .mobile-3-of-5 {
	width: 60%; }

  .mobile-4-of-5 {
	width: 80%; } }
ul {
  maring: 0;
  padding: 0;
  list-style-type: none; }

dd {
  margin: 0; }

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

select,
textarea,
input[type="date"],
input[type="datetime"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
.replacedInput > .replacement {
  background-color: white;
  border: 1px solid #ccc;
  color: #688091;
  height: 36px;
  line-height: 23px;
  padding: 2px .5em 0 .5em;
  font-size: 14px;
  width: 100%;
  box-shadow: none; }

input.inputfield {
  margin-bottom: 10px; }

.mainwrapper {
  max-width: 1000px;
  margin: 50px auto 0 auto; }
  .mainwrapper .sidebar {
	width: 33.33333%;
	float: right;
	clear: both;
	margin-top: 30px;
	background: #D1E0EA;
	padding: 0 20px; }
	@media (max-width: 719px) {
	  .mainwrapper .sidebar {
		position: fixed;
		bottom: 0px;
		left: 0px;
		right: 0px;
		width: auto;
		z-index: 10; } }
  .mainwrapper .maincolumn {
	width: 66.66667%;
	float: left;
	clear: left;
	margin-top: 30px;
	background: #fff;
	padding: 0px; }
	@media (max-width: 1023px) {
	  .mainwrapper .maincolumn {
		width: 100%;
		padding: 0 20px; } }
	.mainwrapper .maincolumn.full {
	  width: 100%;
	  padding: 0 20px; }
	  @media (min-width: 1024px) {
		.mainwrapper .maincolumn.full {
		  padding: 0; } }

.centeralign {
  text-align: center;
  margin: 0 auto; }

.itemgroup {
  margin-bottom: 4em; }

.importance {
  font-weight: bold; }

h1 {
  font-family: georgia;
  color: #ccc;
  font-weight: normal;
  font-size: 30px;
  clear: both;
  padding: .4em 0; }

@font-face {
  font-family: 'colorawesome';
  src: url("../fonts/colorawesome.eot?-v6uqr4");
  src: url("../fonts/colorawesome.eot?#iefix-v6uqr4") format("embedded-opentype"), url("../fonts/colorawesome.woff?-v6uqr4") format("woff"), url("../fonts/colorawesome.ttf?-v6uqr4") format("truetype"), url("../fonts/colorawesome.svg?-v6uqr4#colorawesome") format("svg");
  font-weight: normal;
  font-style: normal; }
[class^="icon-"],
[class*=" icon-"] {
  font-family: 'colorawesome';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-bk-boat:before {
  content: "\e61e"; }

.icon-circle:before {
  content: "\e63f"; }

.icon-basket-empty:before {
  content: "\e640"; }

.icon-wind:before {
  content: "\e603"; }

.icon-sun:before {
  content: "\e604"; }

.icon-storm:before {
  content: "\e605"; }

.icon-rain:before {
  content: "\e606"; }

.icon-frost:before {
  content: "\e607"; }

.icon-drop:before {
  content: "\e608"; }

.icon-cloud:before {
  content: "\e609"; }

.icon-cloud-sun:before {
  content: "\e60a"; }

.icon-ok:before {
  content: "\f00c"; }

.icon-remove:before {
  content: "\f00d"; }

.icon-refresh:before {
  content: "\f021"; }

.icon-map-marker:before {
  content: "\f041"; }

.icon-picture:before {
  content: "\f03e"; }

.icon-facetime-video:before {
  content: "\f03d"; }

.icon-play-circle:before {
  content: "\f01d"; }

.icon-check:before {
  content: "\f046"; }

.icon-plus-sign:before {
  content: "\f055"; }

.icon-minus-sign:before {
  content: "\f056"; }

.icon-question-sign:before {
  content: "\f059"; }

.icon-info-sign:before {
  content: "\f05a"; }

.icon-plus:before {
  content: "\f067"; }

.icon-minus:before {
  content: "\f068"; }

.icon-exclamation-sign:before {
  content: "\f06a"; }

.icon-circle-arrow-up:before {
  content: "\f0aa"; }

.icon-circle-arrow-down:before {
  content: "\f0ab"; }

.icon-circle-arrow-left:before {
  content: "\f0a8"; }

.icon-circle-arrow-right:before {
  content: "\f0a9"; }

.icon-calendar:before {
  content: "\f073"; }

.icon-chevron-up:before {
  content: "\f077"; }

.icon-chevron-down:before {
  content: "\f078"; }

.icon-resize-horizontal:before {
  content: "\f07e"; }

.icon-phone:before {
  content: "\f095"; }

.icon-filter:before {
  content: "\f0b0"; }

.icon-exchange:before {
  content: "\f0ec"; }

.icon-chevron-circle-right:before {
  content: "\f138"; }

.icon-chevron-circle-left:before {
  content: "\f137"; }

.icon-fullscreen:before {
  content: "\f0b2"; }

.icon-remove-sign:before {
  content: "\f057"; }

.icon-ok-sign:before {
  content: "\f058"; }

.icon-bars:before {
  content: "\f0c9"; }

.icon-angle-left:before {
  content: "\f104"; }

.icon-angle-right:before {
  content: "\f105"; }

.icon-angle-up:before {
  content: "\f106"; }

.icon-angle-down:before {
  content: "\f107"; }

.icon-envelope:before {
  content: "\f003"; }

.icon-minus-thin:before {
  content: "\e60d"; }

.icon-plus-thin:before {
  content: "\e60e"; }

.icon-switch:before {
  content: "\e600"; }

.icon-spinner:before {
  content: "\f110"; }

.icon-search:before {
  content: "\f002"; }

.icon-star-half-full:before {
  content: "\f605"; }

.icon-star-empty:before {
  content: "\f604"; }

.icon-star:before {
  content: "\f603"; }

.icon-seng:before {
  content: "\e60f"; }

.icon-seng8:before {
  content: "\e601"; }

.icon-minibar:before {
  content: "\e602"; }

.icon-seng1:before {
  content: "\e60b"; }

.icon-seng2:before {
  content: "\e60c"; }

.icon-seng3:before {
  content: "\e622"; }

.icon-seng4:before {
  content: "\e623"; }

.icon-seng5:before {
  content: "\e624"; }

.icon-seng6:before {
  content: "\e625"; }

.icon-seng7:before {
  content: "\e626"; }

.icon-tags:before {
  content: "\e627"; }

.icon-wifi:before {
  content: "\e62a"; }

.icon-card:before {
  content: "\e610"; }

.icon-boat:before {
  content: "\e611"; }

.icon-man:before {
  content: "\e612"; }

.icon-single-dude:before {
  content: "\e613"; }

.icon-shopping-basket:before {
  content: "\e615"; }

.icon-pets:before {
  content: "\e616"; }

.icon-mail:before {
  content: "\e617"; }

.icon-bike:before {
  content: "\e618"; }

.icon-hotel:before {
  content: "\e619"; }

.icon-checked:before {
  content: "\e61b"; }

.icon-cabin:before {
  content: "\e61c"; }

.icon-people:before {
  content: "\e614"; }

.icon-people-solid2:before {
  content: "\e621"; }

.icon-ship-front:before {
  content: "\e61a"; }

.icon-ship-front-solid:before {
  content: "\e628"; }

.icon-hotel2:before {
  content: "\e61d"; }

.icon-hotel-solid2:before {
  content: "\e629"; }

.icon-bk-boat-left:before {
  content: "\e641"; }

.icon-seat:before {
  content: "\e61f"; }

.icon-seat-buffet:before {
  content: "\e620"; }

.icon-car:before {
  content: "\e62b"; }

.icon-single-dude-filled:before {
  content: "\e62c"; }

.icon-meal:before {
  content: "\e62d"; }

.icon-map-pin-outline:before {
  content: "\e63e"; }

.icon-map-pin:before {
  content: "\e63d"; }

.icon-chevron-up2:before {
  content: "\e62e"; }

.icon-chevron-down2:before {
  content: "\e62f"; }

.icon-chevron-left:before {
  content: "\e630"; }

.icon-chevron-right:before {
  content: "\e631"; }

.icon-kai:before {
  content: "\e632"; }

.icon-boat-solid-small:before {
  content: "\e633"; }

.icon-lock:before {
  content: "\f023"; }



.progresswrap {
  clear: both;
  margin: 70px 20px 0px 20px; }
  @media (min-width: 1024px) {
  }

	@media (max-width: 719px) {

	 }

  @media (min-width: 1024px) {

   }


.secondary {
  width: 100%; }
  @media (min-width: 1024px) {
	.secondary {
	  width: 33.33333%;
	  float: right; } }




.ibe.loginscreen {
  background: rgba(0, 0, 0, 0.6); }

.ibe.loginscreen .loginbox {
    margin: 100px auto 40px auto;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 20px 20px 20px;
    border-radius: 5px;
    color: #233545
}


.ibe.loginscreen .loginbox h1 {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 100;
    padding-bottom: 0px;
    color: #233545;
    font-size: 26px;
    text-align: center;
    margin-top: 0px
}

.ibe.loginscreen .loginbox .errormsg {
    padding: 10px;
    background: #fcc;
    color: #900;
    margin-bottom: 10px;
    position: relative
}
	  
	  
.ibe.loginscreen .loginbox .errormsg .icon {
    position: absolute;
    left: 10px;
    top: 10px
}

.ibe.loginscreen .loginbox .errormsg p {
    margin: 0 0 0 24px
}

	   .ibe.loginscreen .loginbox .show {
		display: block; }
		
		.ibe.loginscreen .loginbox .hide {
		display: none; }
		
		.ibe.loginscreen .loginbox .errormsg ul {
			margin-left: 24px;
			padding: 0;
			list-style-type: none;
			margin-top: 0;
		}
		
.ibe.loginscreen .loginbox .inputfield {
    background: rgba(0, 0, 0, 0.6);
    border: 0;
    color: #fff;
    height: auto;
    padding: 10px 10px 10px 50px
}

.ibe.loginscreen .loginbox .username,
.ibe.loginscreen .loginbox .password {
    position: relative
}

.ibe.loginscreen .loginbox .username:before,
.ibe.loginscreen .loginbox .password:before {
    font-family: 'colorawesome';
    content: "\f003";
    position: absolute;   
	top: 20%;
    left: 5%;
    color: #fff;
    z-index: 10;
    color: #ccc;
    font-size: 1.2em
}

.ibe.loginscreen .loginbox .password:before {
    content: "\f023";		
	top: 16%;
	top:12%\9; /*hack for ie*/
	left: 6%;
    font-size: 1.5em;
	font-size: 1.2em\9; /*hack for ie*/
}


.ibe.loginscreen .loginbox .submitbutton {
    background: none repeat scroll 0 0 transparent;
    border: 1px solid #051f38;
    margin-top: 15px;
    padding: 10px 50px;
    text-align: center;
    width: 100%;
}

.ibe.loginscreen .loginbox .foot {
    font-size: 12px;
    margin-top: 1.6em;
    padding-bottom: 1em;
}

*, *:before, *:after {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: border-box;
}
.ibe.loginscreen .loginbox .foot {
    font-size: 12px;
    margin-top: 1.6em;
    padding-bottom: 1em;
}
*, *:before, *:after {
    box-sizing: border-box;
}

	.ibe.loginscreen .loginbox .forgot a{
	  color: #233545;
	  padding-top: 1.6em !important;
	}

	.ibe.loginscreen .loginbox .remberme{
		margin-bottom: 1.6em;
		padding-top: 0.8em;
	}
      .ibe.loginscreen .loginbox .foot label{
         margin-left:  5px;
      }

  .ibe.loginscreen .loginbox .remberme input[type="checkbox"]{
    width: auto;
    float:left;
  }
	.ibe.loginscreen .loginbox .remberme .rembermetext{
		float:left;
		margin-top: 2px;
		margin-left:4px;
		font-size:10px;
		color:#233545;
	}

      .ibe.loginscreen .loginbox .foot .remember {
          float: left;
          width: 140px;
      }
      .ibe.loginscreen .loginbox .foot .forgot {
          float: right;
      }

      .ibe.loginscreen .loginbox .foot .forgot a {
          color: #051f38;
      }
      .ibe.loginscreen .loginbox .foot .salesf a {
        color: #0066cc;
      }

      *, *:before, *:after {
          box-sizing: border-box;
      }

	.ibe.loginscreen{
/*		background: url("/theme/images/common/lighthouse.jpg")  no-repeat center center fixed;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;*/

	}

      /*NBIProd:8314*/
        #bg-img-full{ 
              width: 100%;
              height: 100%;  
              position: fixed;
              top: 0;
              left: 0;
              z-index: -20; 
              background-image: url("/theme/images/common/lighthouse.jpg") ;
              background-repeat:no-repeat;
              background-position: center center;
              /* background-attachment: fixed; removed for Android */
              -webkit-background-size: cover;
              -moz-background-size: cover;
              -o-background-size: cover;
              background-size: cover;
      }


	.ibe.loginscreen .loginbox .recoverystatus{
		background: rgba(0, 0, 0, 0.6);
		color: #ccc;
	}
	.ibe.loginscreen .loginbox .recoverystatus .msg{
		padding: 1em;
  		font-size: 15px;
	}
	.ibe.loginscreen .loginbox .continue{
		margin-top: 1.6em;
	}
	
	.ibe.loginscreen .loginbox .continue a{
	  	font-size: 1.2em;
  		color: #233545;
	}
