/* layout.css */

#layout {
  width: 800px;
  height: 362px;
  margin: 0 auto;
}

#select-destination-images {
  list-style-type: none;
  list-style-image: none;
  width: 800px;
  height: 362px;
  margin: 0;
  padding: 0;
  position: relative;
}

#select-destination-images li {
  list-style-type: none;
  list-style-image: none;
  position: absolute;
  top: 0;
  width: 400px;
  height: 362px;
  margin: 0;
  padding: 0;
  background-position: top left;
  background-repeat: no-repeat;
}

#select-destination-images li a {
  display: block;
  width: 400px;
  height: 362px;
  position: relative;
}

#select-destination-images li#canada {
  left: 0;
  background-image: url(/images/canada.jpg);
}

#select-destination-images li#united-states {
  right: 0;
  background-image: url(/images/united-states.jpg);
}

#select-destination-images li span {
  display: block;
  position: absolute;
  bottom: 50px;
  left: 0;
  font-size: 21px;
  font-weight: bold;
  color: #252525;
  width: 300px;
  padding: 0 50px;
}

#select-destination-images li#canada span {
  text-align: right;
  text-shadow: 0 0 3px #f9bc26;
}

#select-destination-images li#united-states span {
  text-align: left;
  text-shadow: 0 0 3px #b4cbc3;
}

#select-destination-form {
  position: absolute;
  top: 492px;
  left: 50%;
  width: 380px;
  margin: 0 0 0 -190px;
}

#select-destination-form fieldset {
  border-style: none;
  border-width: 0;
  margin: 0;
  padding: 0;
}

#select-destination-form fieldset legend {
  display: none;
}

#select-destination-form fieldset div {
  width: 320px;
  margin: 0 0 5px 0;
}

#select-destination-form fieldset div label {
  display: block;
  width: 320px;
  font-size: 14px;
}

#select-destination-form fieldset div label.hidden {
  display: none;
}

#select-destination-form fieldset div select {
  width: 320px;
  font-size: 24px;
}

#select-destination-form fieldset div label input.inputCheckbox {

}

#select-destination-form fieldset div.submit {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
}

#select-destination-form fieldset div.submit input.inputSubmit {
  border-color: #f9bc26;
  background-color: #f9bc26;
  color: #252525;
  padding: 5px;
  font-size: 15px;
  font-weight: bold;
  margin: 0;
}

#select-destination-form.error {
  background-color: #ffffe1;
  border: 1px solid #ffba00;
  padding: 5px;
  color: #ff0000;
}

#select-destination-form.error fieldset div label {
  color: #000000;
}

#select-destination-form.error p.error {
  background-image: url(/images/icon_error.gif);
  background-repeat: no-repeat;
  background-position: 3px 3px;
  padding: 3px 3px 5px 27px;
  margin: 0 0 5px 0;
}

#select-destination-form.error fieldset div.submit {
  top: 50%;
  margin-top: -15px;
}

#footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15px;
  margin: 0;
  padding: 0;
  font-size: 10px;
  color: #ffffff;
  
}

#footer a:link, #footer a:visited {
  text-decoration: none;
}

#footer a:focus, #footer a:hover, #footer a:active {
  text-decoration: underline;
}

#footer a:link, #footer a:visited, #footer a:focus, #footer a:hover, #footer a:active {
  color: #ffffff;
}

#footer #copyright {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #ffffff;
}

#footer #powered {
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: #ffffff;
}