/* main stylesheet */
html,
body {
  margin: 0;
  padding: 0;
  background: url(../images/bg2.png) repeat;
  font-family: georgia;
}

.phone {
  display: none;
  transition: all 0.25s ease-in-out;
}

#topBar {
  width: 100%;
  height: 12px;
  background: #1f2133;
}

#navDividerBar {
  width: 100%;
  height: 1px;
  background: #1f2133;
  position: relative;
  top: 127px;
}

#verticalBar {
  width: 1px;
  background: #1f2133;
  position: absolute;
  top: -40px;
  z-index: 1;
  margin-left: 75px;
  *margin-left: -82px;
  z-index: 1;
}

#container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  margin-top: 25px;
  transition: all 0.25s ease-in-out;
}

#header {
  width: 960px;
  position: relative;
}

#logo {
  position: relative;
}

#logo img {
  height: 200px;
  z-index: 9;
  position: relative;
  transition: all 0.25s ease-in-out;
}

#content {
  display: inline-block;
  width: 810px;
  padding-left: 150px;
  clear: both;
}

h1 {
  margin: 0;
  padding-top: 35px;
  font-variant: small-caps;
  color: #6d3749;
  font-weight: 400;
  font-size: 42px;
  transition: all 0.25s ease-in-out;
}

h2 {
  margin: 0;
  font-variant: small-caps;
  color: #27727a;
  font-weight: 400;
  font-size: 27px;
  transition: all 0.25s ease-in-out;
}

#content p {
  font-weight: 400;
  font-size: 17px;
  color: #1f2133;
  text-align: justify;
  line-height: 25px;
  transition: all 0.25s ease-in-out;
}

/* navigations */
/* Begin Navigation Bar Styling */
#mainNavigation ul {
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 82px;
  padding: 0;
  list-style: none;
}

#mainNavigation ul li {
  float: left;
  background-color: #1f2133;
  margin-left: 4px;
}

#mainNavigation ul li a {
  display: block;
  padding: 8px 10px;
  width: 120px;
  text-align: center;
  text-decoration: none;
  color: #f7f5e4;
}

#mainNavigation ul li a:hover,
#mainNavigation ul li.selected {
  background: #27727a;
}

/* End navigation bar styling. */
#footer {
  margin-top: 20px;
  padding: 35px 0;
  background-color: #1f2133;
  width: 100%;
  text-align: center;
}

#footer #footerText {
  color: #f7f5e4;
  font-size: 15px;
  line-height: 22px;
  -webkit-opacity: 0.55;
  -moz-opacity: 0.55;
  filter: alpha(opacity=55);
}

/* live validation */
input#userName,
input#userEmail,
input#subject {
  width: 425px;
  margin: 0 0 25px;
  height: 30px;
  font-size: 18px;
  font-family: georgia;
  font-weight: 400 !important;
  color: black;
  padding-left: 5px;
  background: url(../images/bg2.png);
  border: 1px solid #27727a;
}

textarea#userMessage {
  width: 425px;
  padding-left: 5px;
  padding-top: 5px;
  margin-bottom: 25px;
  height: 170px;
  color: black;
  font-size: 18px;
  font-family: georgia;
  font-weight: 400 !important;
  background: url(../images/bg2.png);
  border: 1px solid #27727a;
}

span#nameLabel,
span#email,
span#message,
span#subjectLabel {
  vertical-align: top;
  font-family: f;
  font-weight: 400 !important;
  font-size: 20px;
  line-height: 25px;
}

input[type="text"],
textarea {
  outline: none;
  border: 1px solid #f7f5e4;
  transition: all 0.3s ease-in-out;
}

input[type="text"]:focus,
textarea:focus {
  -webkit-box-shadow: 0 0 5px rgba(48, 139, 131, 1);
  -moz-box-shadow: 0 0 5px rgba(48, 139, 131, 1);
  box-shadow: 0 0 5px rgba(48, 139, 131, 1);
  border: 1px solid #27727a;
}

.LV_invalid_field {
  -webkit-box-shadow: 0 0 2px rgba(255, 0, 0, 1) !important;
  -moz-box-shadow: 0 0 2px rgba(255, 0, 0, 1) !important;
  box-shadow: 0 0 2px rgba(255, 0, 0, 1) !important;
  border: 1px solid #6d3749 !important;
  transition: all 0.3s ease-in;
}

.LV_valid_field {
  -webkit-box-shadow: 0 0 0 rgba(48, 139, 131, 1) !important;
  -moz-box-shadow: 0 0 0 rgba(48, 139, 131, 1) !important;
  box-shadow: 0 0 0 rgba(48, 139, 131, 1) !important;
  border: 1px solid #4abd4c !important;
  transition: all 0.3s ease-in;
}

#submit {
  display: inline-block;
  background: url(../images/bg2.png);
  border: 1px solid #27727a;
  font-size: 20px;
  width: 435px;
  font-family: georgia;
  font-weight: 400 !important;
  font-size: 20px;
  padding: 7px 0;
  transition: all 0.3s ease-in-out;
}

#submit:hover {
  cursor: pointer;
  background: #27727a;
  color: #fff;
  text-decoration: underline;
  -webkit-box-shadow: 0 0 5px rgba(48, 139, 131, 1);
  -moz-box-shadow: 0 0 5px rgba(48, 139, 131, 1);
  box-shadow: 0 0 5px rgba(48, 139, 131, 1);
}

#contact_form {
  width: 425px;
  margin: 0 auto;
}

#mobile_menu_icon img {
  width: 30px;
  position: absolute;
  top: 13px;
  right: 13px;
  cursor: pointer;
}

#contactContainer {
  margin-top: 15px;
  min-height: 200px;
}

/* honeypot input */
input#other {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

#toggle-view {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  color: #000;
}

#toggle-view li {
  border-bottom: dotted 1px #463e32;
  position: relative;
  cursor: pointer;
}

div.panel p {
  margin: 0;
  padding: 0;
}

#toggle-view h3 {
  font-family: NeutonExtraLight, serif;
  font-size: 18px;
  margin-bottom: 0px;
  padding-bottom: 12px;
  padding-top: 2px;
  color: #221e16;
  margin-left: 25px;
}

#toggle-view h3:hover {
  background: url(IMAGES/highlightBack.png);
  color: #221e16;
}

#toggle-view span {
  position: absolute;
  left: 5px;
  top: 5px;
  color: #ccc;
  font-size: 13px;
}

#toggle-view span img {
  vertical-align: middle;
}

#toggle-view .panel {
  margin: 0;
  display: none;
  padding-bottom: 10px;
}

.highlighted h3 {
  background: url(IMAGES/highlightBack.png);
  color: #221e16 !important;
}

div.information h3 {
  margin: 30px 0px -10px 0px;
  font-variant: small-caps;
  color: #6d3749;
}

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

a:hover {
  text-decoration: underline;
}
