/******************************************************************
Site Name:
Author:

Stylesheet: IE Stylesheet

So instead of using the respond.js file to add media query support
to IE, we're going to use SASS to create an easily readable css file.
Here, we import all the styles the standard stylesheet gets, only
without the media queries. No need to worry about editing anything!

******************************************************************/
/******************************************************************
IMPORTS & DEPENDENCIES
Remember, all the BASE styles are called already since IE can
read those. Below, we need to import only the stuff IE can't
understand (what's inside the media queries). We also need to
import the mixins file so SASS can understand the variables.
******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/******************************************************************
Site Name:
Author:

Stylesheet: IE Grid Styles

Since the example grid is based on media queries, so rather than
setup some js library that would make IE8 and below understand
media queries, let's just add some styles that serves a fixed grid.

Again, if you want to roll your own, just remove this junk and put
whatever you use in here.

******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: 481px and Up Stylesheet

This stylesheet is loaded for larger devices. It's set to
481px because at 480px it would load on a landscaped iPhone.
This isn't ideal because then you would be loading all those
extra styles on that same mobile connection.

A word of warning. This size COULD be a larger mobile device,
so you still want to keep it pretty light and simply expand
upon your base.scss styles.

******************************************************************/
/*
IMPORTANT NOTE ABOUT SASS 3.3 & UP
You can't use @extend within media queries
anymore, so just be aware that if you drop
them in here, they won't work.
*/
/*********************
NAVIGATION STYLES
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet

Here's where you can start getting into the good stuff.
This size will work on iPads, other tablets, and desktops.
So you can start working with more styles, background images,
and other resources. You'll also notice the grid starts to
come into play. Have fun!

******************************************************************/
/*********************
GENERAL STYLES
*********************/
/*
you can call the larger styles if you want, but there's really no need
*/
/******************************************************************
ADDITIONAL IE FIXES
These fixes are now ONLY seen by IE, so you don't have to worry
about using prefixes, although it's best practice. For more info
on using Modernizr classes, check out this link:
http://www.modernizr.com/docs/
******************************************************************/
/*
For example, you can use something like:

.no-textshadow .class { ... }

You can also target specific versions by using the classes applied to
the html element. These can sometimes change, so take a look inside the
header.php file to see what they are:


.lt-ie8 .class { ... }

*/
/******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet

Here's where you can start getting into the good stuff.
This size will work on iPads, other tablets, and desktops.
So you can start working with more styles, background images,
and other resources. You'll also notice the grid starts to
come into play. Have fun!

******************************************************************/
/*********************
GENERAL STYLES
*********************/
p {
  font-size: 15px;
}
.nav {
  /* .menu is clearfixed inside mixins.scss */
}
.menu {
  /* end .menu */
  /*********************
POSTS & CONTENT STYLES
*********************/
  /* entry content */
}
.menu ul {
  /* end .menu ul */
}
.menu ul li {
  /* end .menu ul li */
  /* highlight current page */
}
.menu ul li:last-child {
  /*
				plan your menus and drop-downs wisely.
				*/
}
.menu ul li.current-menu-item, .menu ul li.current_page_item, .menu ul li.current_page_ancestor {
  /* end current highlighters */
}
.entry-content {
  /* end .entry-content */
  /*********************
FOOTER STYLES
*********************/
  /*
check your menus here. do they look good?
do they need tweaking?
*/
}
.entry-content .alignleft, .entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
.entry-content .alignright, .entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
.entry-content .aligncenter, .entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}
.footer-links {
  /* end .footer-links */
}
body {
  /*********************
LAYOUT & GRID STYLES
*********************/
}
.wrap {
  width: 100%;
  padding: 0 0px 0 10px;
  /*********************
HEADER STYLES
*********************/
}
.header_right {
  padding-right: 10px;
  float: left;
  width: 45% !important;
}
.header_right .phone {
  max-width: 700px !important;
  float: left;
  padding-right: 0px;
}
.header_right .phone p {
  font-family: 'Cabin', sans-serif !important;
  font-size: 26px !important;
  color: #507cbd;
  float: right;
  margin-top: 80px !important;
  margin-bottom: 10px;
  padding: 0px !important;
}
.header_right .phone p a:hover {
  text-decoration: none;
}
.header_right .phone p span {
  font-weight: 700;
}
.header_right .social-links {
  float: right;
  width: 300px;
  padding-top: 0px;
  padding-right: 0px;
}
.header_right .social-links ul {
  float: right;
  padding-bottom: 0px !important;
  margin-bottom: 0px;
}
.header_right .social-links ul li {
  display: inline;
  padding-left: 13px;
}
.header_left {
  float: left;
  width: 55% !important;
  padding: 0px 0 0 0px !important;
}
.header_left ul {
  margin-top: 40px;
}
.head-line {
  border-bottom: 1px solid #d0cccc;
  float: right;
  margin-right: 0px;
  width: 40.3%;
}
.header_right_search {
  padding-right: 0px;
  float: right;
  margin-left: 0px;
  margin-right: 0px;
  width: 35% !important;
  margin-top: 4px;
}
.header_left_nav {
  float: left;
  width: 65% !important;
  padding: 0px 0 0 0px !important;
  margin-top: 4px;
  background-color: #fff;
  z-index: 99;
  margin-bottom: -1px;
  border-bottom: 1px solid #d0cccc;
}
.header_left_nav ul {
  margin-top: 40px;
}
#logo {
  margin: 30px 0 0px;
}
#logo img {
  width: 340px;
}
.entry-content {
  padding: 1.5em 0 !important;
  /*********************
NAVIGATION STYLES
*********************/
}
.entry-content p {
  margin: 0 0 1.5em;
}
.tinynav {
  display: none;
}
#menu-main-menu {
  display: inline;
}
.nav {
  border: 0;
  /* end .nav */
  /*********************
Homepage
*********************/
}
.nav ul {
  background: #323944;
  margin-top: 0;
  /* highlight current page */
}
.nav li.current-menu-item, .nav li.current_page_item, .nav li.current_page_ancestor {
  /* end current highlighters */
}
.nav li.current-menu-item a, .nav li.current_page_item a, .nav li.current_page_ancestor a {
  background-color: #507cbd;
  color: #fff;
}
.nav li {
  float: left;
  position: relative;
  width: 25%;
  min-height: 53px;
  /* end .menu ul li */
}
.nav li a {
  border-bottom: 0px;
  border-right: 1px solid #d0cccc;
  border-top: 0px solid #ccc;
  text-align: center;
  /*
			you can use hover styles here even though this size
			has the possibility of being a mobile device.
			*/
}
.nav li a:hover, .nav li a:focus {
  text-decoration: none;
}
.nav li:first-child {
  border-left: 0px solid #d0cccc;
}
.nav li:last-child a {
  /*
		plan your menus and drop-downs wisely.
		*/
}
.nav li ul.sub-menu, .nav li ul.children {
  margin-top: 0;
  border: 0px solid #d0cccc;
  border-top: 0;
  position: absolute;
  visibility: hidden;
  z-index: 99999 !important;
  background-color: #fff !important;
  box-shadow: 2px 2px 2px #888;
  margin-bottom: 0px !important;
  /* showing sub-menus */
}
.nav li ul.sub-menu li, .nav li ul.children li {
  min-width: 100px;
  text-align: left;
  background-color: #fff !important;
  /* highlight sub-menu current page */
}
.nav li ul.sub-menu li a, .nav li ul.children li a {
  padding-left: 10px;
  border-right: 0;
  border-left: 0;
  display: block;
  width: 180px;
  border-bottom: 1px solid #d0cccc;
  text-align: left;
  background-color: #fff !important;
  color: #507cbd !important;
}
.nav li ul.sub-menu li a:hover, .nav li ul.children li a:hover, .nav li ul.sub-menu li a:focus, .nav li ul.children li a:focus {
  background-color: #507cbd !important;
  color: #fff !important;
}
.nav li ul.sub-menu li:last-child, .nav li ul.children li:last-child {
  /*
				if you need to go deeper, go nuts
				just remember deeper menus suck
				for usability. k, bai.
				*/
}
.nav li ul.sub-menu li:last-child a, .nav li ul.children li:last-child a {
  border-bottom: 0;
}
.nav li ul.sub-menu li ul, .nav li ul.children li ul {
  top: 0;
  left: 100%;
}
.nav li:hover > ul {
  top: auto;
  visibility: visible;
}
.home_slider {
  margin-left: -10px;
  margin-right: 0px;
}
.website-images {
  width: 101.3%;
  margin-left: -10px;
}
.website-images img {
  width: 102%;
}
.website-images .website-images-l, .website-images .website-images-m, .website-images .website-images-r {
  float: left;
  height: 182px;
  background-repeat: no-repeat;
  line-height: 15px;
  background-size: cover;
  background-position: center top;
}
.website-images .website-images-l a, .website-images .website-images-m a, .website-images .website-images-r a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  text-align: center;
}
.website-images .website-images-l p, .website-images .website-images-m p, .website-images .website-images-r p {
  padding-bottom: 100px;
  padding-top: 11px;
}
.website-images .website-images-l {
  background-image: url("../images/Catering.png");
  width: 33.3333%;
}
.website-images .website-images-m {
  background-image: url("../images/Conference.png");
  width: 33.3333%;
}
.website-images .website-images-r {
  background-image: url("../images/Entertainment.png");
  width: 33.3333%;
}
.welcome-section, .supporters-section, .message-section, .supporters-carousel {
  width: 100%;
  padding: 20px 60px 40px;
}
.welcome-section h2, .supporters-section h2, .message-section h2, .supporters-carousel h2 {
  margin-top: 14px;
}
.welcome-section {
  padding-top: 40px;
}
.about-banner {
  margin-left: -10px;
}
.about-banner img {
  width: 100%;
}
.about-page-text {
  padding: 0 60px;
}
.bx-wrapper {
  max-width: 980px !important;
  /*********************
Contact Page
*********************/
}
.page-contact {
  padding: 0 0px;
}
.contact-l, .contact-r {
  width: 50%;
  float: left;
  padding-top: 25px;
}
.contact-r {
  padding-left: 70px;
  padding-right: 50px;
}
#map {
  width: 100%;
  height: 360px;
}
#map-container {
  width: 100%;
  padding-top: 20px;
  /*********************
SIDEBARS & ASIDES
*********************/
}
.sidebar {
  margin-top: 72px;
  border-left: 1px solid #dadada;
  width: 27%;
  padding-left: 20px;
  margin-left: 20px;
  display: inherit;
}
a:hover, a:visited:hover, a:focus, a:visited:focus, a {
  color: #9a9a9a;
}
.widgettitle {
  border-bottom: 0px solid #444;
  margin-bottom: 0.75em;
}
.widget {
  padding: 0 10px;
  margin: 0;
  /* links widget */
}
.widget ul li a {
  /* deep nesting */
}
.widget ul li ul {
  margin-top: 0.75em;
  padding-left: 1em;
}
.widget_links ul li a {
  /* meta widget */
}
.widget_meta ul li a {
  /* pages widget */
}
.widget_pages ul li a {
  /* recent-posts widget */
}
.widget_recent_entries ul li a {
  /* archives widget */
}
.widget_archive option {
  /* tag-cloud widget */
}
.widget_tag_cloud a:before {
  /* calendar widget */
}
#wp-calendar #prev a {
  /* category widget */
}
.widget_categories .level-3 {
  /* recent-comments widget */
}
.widget_recent_comments {
  /* search widget */
}
.head-search {
  width: 90%;
  height: 53px;
  margin-top: 0px;
  margin-bottom: 0px;
  float: right;
}
.head-search #searchform {
  background-color: #507cbd;
  width: 100%;
  height: 54px;
  padding: 12px 13px;
}
.head-search #searchform input {
  width: 90%;
  margin-bottom: -32px;
  background-color: #fff;
  height: 32px;
  border-radius: 3px 0 0 3px;
  -moz-box-shadow: 0px 0px #d0cccc;
  -webkit-box-shadow: 0px 0px #d0cccc;
  box-shadow: 0px 0px #d0cccc;
  border: 0px solid #d0cccc;
}
.head-search #searchform #searchsubmit {
  margin-right: -3px;
  float: right;
  border: 0px;
  background-color: #9cf;
  height: 32px;
  padding: 0px !important;
}
.widget_search input {
  width: 90%;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
.widget_search #searchsubmit {
  margin-right: -28px !important;
  float: right;
  border-width: 1px 1px 1px 0px;
  border-style: solid solid solid solid;
  border-color: #d0cccc;
  -moz-border-top-colors: none;
  -moz-border-right-colors: none;
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  border-image: none;
  margin-top: -40px;
  background-color: #fff;
  padding: 4px 4px 0px;
  z-index: 99;
  height: 32px;
  -moz-box-shadow: 1px 1px #d0cccc;
  -webkit-box-shadow: 1px 1px #d0cccc;
  box-shadow: 1px 1px #d0cccc;
}
.screen-reader-text {
  display: none;
  /* text widget */
}
.textwidget p {
  /*********************
FOOTER STYLES
*********************/
  /*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
}
.pre-footer {
  width: 100%;
  margin: auto;
}
.pre-footer .testimonials-l {
  width: 33%;
  background-color: #507cbd;
  height: auto;
  float: left;
}
.pre-footer .testimonials-l img {
  margin-top: 50px;
  margin-bottom: 0px;
  padding-left: 20px;
}
.pre-footer .testimonials-r {
  width: 67%;
  background-color: #507cbd;
  height: auto;
  float: left;
}
.pre-footer .testimonials-r .testimonial-author {
  padding: 0 20px;
}
.pre-footer .testimonials-r p {
  padding: 20px 20px 0;
  line-height: 29px;
}
.pre-footer .testimonials-r p img {
  margin-left: -25px;
  margin-top: -5px;
}
.pre-footer .testimonials-r p span img {
  margin-left: 0px;
}
.pre-footer .testimonials-r .testimonial-a {
  width: auto;
  margin: auto;
}
.pre-footer .testimonials-r .testimonial-a a {
  background-color: #fff;
  padding: 4px 15px 3px;
  color: #507cbd;
  float: right;
  text-decoration: none;
  border-radius: 3px;
  margin-right: 40px;
  margin-top: 20px;
  width: auto;
  text-align: center;
}
.pre-footer .footer-site-links {
  height: 85px;
}
.pre-footer .footer-site-links p {
  text-align: center;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.pre-footer .footer-site-links a {
  color: #707070;
  text-decoration: none;
  padding: 5px 10px 3px;
  background-color: #fff;
  text-align: center;
  border-radius: 3px;
  font-size: 16px;
}
.pre-footer .footer-site-links .links-l {
  width: 33%;
  height: 100%;
  background-color: #507cbd;
  float: left;
}
.pre-footer .footer-site-links .links-m {
  width: 34%;
  height: 100%;
  background-color: #7b7161;
  float: left;
}
.pre-footer .footer-site-links .links-r {
  width: 33%;
  height: 100%;
  background-color: #a7cfee;
  float: left;
}
.pre-footer .footer-text-areas {
  background-color: #dcdad6;
  height: auto;
  color: #666;
}
.pre-footer .footer-text-areas p {
  font-size: 14px;
  line-height: 19px;
}
.pre-footer .footer-text-areas h2 {
  font-size: 22px !important;
  color: #666 !important;
}
.pre-footer .footer-text-areas .area-l {
  width: 33%;
  float: left;
  padding: 20px 20px 0 20px;
}
.pre-footer .footer-text-areas .area-l span p {
  min-height: 150px;
}
.pre-footer .footer-text-areas .area-m {
  width: 34%;
  float: left;
  padding: 20px 10px 0 5px;
}
.pre-footer .footer-text-areas .area-r {
  width: 33%;
  float: left;
  padding: 20px 20px 0 5px;
}
.pre-footer .footer-text-areas .area-r .text-3 {
  height: auto;
}
.pre-footer .footer-text-areas .area-r .text-3-1 {
  height: 110px;
  padding-top: 10px;
}
.pre-footer .footer-text-areas .area-r li {
  font-size: 14px;
  padding-top: 10px;
}
.pre-footer .footer-text-areas .area-r li span {
  padding-left: 10px;
}
.pre-footer .footer-text-areas .area-r li img {
  margin-bottom: -3px;
  max-height: 23px;
}
.footer-social-links {
  margin: auto;
  width: auto;
}
.footer-social-links ul li {
  display: inline;
  padding-left: 13px;
}
#inner-footer .nav {
  margin-top: 6px;
}
.footer-links {
  float: right;
  width: auto;
  margin-right: 0;
  /* end .footer-links */
}
.footer-links ul li {
  border: 0;
  width: auto;
  height: auto;
  padding: 0px 15px;
}
.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  border: 0;
  padding: 15px 0px 0;
}
.footer-links ul li a:hover {
  text-decoration: none;
  color: #fff;
}
.footer-links ul li a:focus {
  color: #fff;
  /*
			be careful with the depth of your menus.
			it's very rare to have multi-depth menus in
			the footer.
			*/
}
.footer-links ul li:first-child {
  border-left: 0px solid #d0cccc;
}
.break-line {
  width: 95%;
  border-top: 1px solid #dadada;
  padding: 10px 0;
  margin-left: 0;
}
#sidebar1 {
  margin-top: 72px;
  display: inherit;
  min-height: 950px;
}
.page-testimonials .break-line {
  width: 100%;
  border-top: 1px solid #dadada;
  padding: 10px 0;
  margin: auto;
  margin-top: 40px;
}
.page-testimonials .page-testimonials-text {
  width: 60%;
  float: left;
}
.page-testimonials .page-testimonials-text p {
  padding: 0 20px;
}
.page-testimonials .page-testimonials-text p img {
  margin-left: -25px;
}
.page-testimonials .page-testimonials-text p span img {
  margin-left: 0px;
}
.page-testimonials .page-testimonials-text .page-testimonials-author {
  padding: 0 20px;
}
.page-testimonials .page-testimonials-image {
  width: 40%;
  float: left;
  margin-top: 20px;
}
.page-testimonials .page-testimonials-image img {
  width: 70%;
  margin: 20px 30px 0px;
  padding: 0px;
}
.page-testimonial-title {
  padding: 40px 0 20px;
}
.tp-rightarrow.default {
  z-index: 100;
  cursor: pointer;
  position: relative;
  width: 50px;
  height: 50px;
  background-size: cover;
  background-position: center center;
  right: 0px !important;
  display: inherit;
}
.tp-leftarrow.default {
  z-index: 100;
  cursor: pointer;
  position: relative;
  width: 50px;
  height: 50px;
  background-size: cover;
  background-position: center center;
  left: 0px !important;
  display: inherit;
}
body {
  /*********************
LAYOUT & GRID STYLES
*********************/
}
.wrap {
  width: 1020px;
  padding: 0 40px;
  /*********************
HEADER STYLES
*********************/
}
.header {
  width: 1020px;
  margin: auto;
}
.header_right {
  padding-right: 0px;
  float: left;
  width: 45% !important;
}
.header_right .phone {
  max-width: 500px !important;
  width: 100%;
  padding-right: 0px !important;
  margin-bottom: 20px;
}
.header_right .phone p {
  font-family: 'Cabin', sans-serif !important;
  font-size: 30px !important;
  color: #507cbd;
  float: right;
  margin-top: 80px;
  margin-bottom: 10px;
}
.header_right .phone p span {
  font-weight: 700;
}
.header_right .social-links {
  float: right;
  width: 300px;
  padding-right: 0px !important;
}
.header_right .social-links ul {
  float: right;
  padding-bottom: 0px !important;
  margin-bottom: 0px;
}
.header_right .social-links ul li {
  display: inline;
  padding-left: 13px;
}
.header_left {
  float: left;
  width: 55% !important;
  margin-bottom: 20px;
}
.header_left ul {
  margin-top: 40px;
}
.head-line {
  border-bottom: 1px solid #d0cccc;
  float: right;
  margin-right: -40px;
  width: 40.3%;
}
.header_right_search {
  padding-right: 0px;
  float: left;
  margin-left: 40px;
  margin-right: -40px;
  width: 36% !important;
  margin-top: -11px;
}
.header_left_nav {
  float: left;
  width: 64% !important;
  margin-top: 0px;
  background-color: #fff;
  z-index: 99;
  margin-bottom: -1px;
  border-bottom: 1px solid #d0cccc;
}
.header_left_nav ul {
  margin-top: 40px;
}
#logo img {
  width: 340px;
}
.entry-content {
  padding: 1.5em 0 !important;
  /*********************
NAVIGATION STYLES
*********************/
}
.entry-content p {
  margin: 0 0 1.5em;
}
.nav {
  border: 0;
  /* end .nav */
  /*********************
Homepage
*********************/
}
.nav ul {
  background: #323944;
  margin-top: 0;
}
.nav li.current-menu-item, .nav li.current_page_item, .nav li.current_page_ancestor {
  /* end current highlighters */
}
.nav li.current-menu-item a, .nav li.current_page_item a, .nav li.current_page_ancestor a {
  background-color: #507cbd;
  color: #fff;
}
.nav li {
  float: left;
  position: relative;
  width: 23.5%;
  /* end .menu ul li */
  /* highlight current page */
}
.nav li a {
  border-bottom: 0px;
  border-right: 1px solid #d0cccc;
  border-top: 0px solid #ccc;
  text-align: center;
  /*
			you can use hover styles here even though this size
			has the possibility of being a mobile device.
			*/
}
.nav li a:hover, .nav li a:focus {
  text-decoration: none;
}
.nav li:first-child {
  border-left: 0px solid #d0cccc;
}
.nav li:last-child a {
  /*
		plan your menus and drop-downs wisely.
		*/
}
.nav li ul.sub-menu, .nav li ul.children {
  margin-top: 0;
  border: 0px solid #d0cccc;
  border-top: 0;
  position: absolute;
  visibility: hidden;
  z-index: 99999 !important;
  margin-bottom: 0px !important;
  /* showing sub-menus */
}
.nav li ul.sub-menu li, .nav li ul.children li {
  /* highlight sub-menu current page */
}
.nav li ul.sub-menu li:last-child, .nav li ul.children li:last-child {
  /*
				if you need to go deeper, go nuts
				just remember deeper menus suck
				for usability. k, bai.
				*/
}
.nav li ul.sub-menu li:last-child a, .nav li ul.children li:last-child a {
  border-bottom: 0;
}
.nav li ul.sub-menu li ul, .nav li ul.children li ul {
  top: 0;
  left: 100%;
}
.nav li:hover > ul {
  top: auto;
  visibility: visible;
}
.home_slider {
  margin-left: -40px;
  margin-right: -40px;
}
.website-images {
  width: 1020px;
  margin-left: -40px;
}
.website-images .website-images-l, .website-images .website-images-m, .website-images .website-images-r {
  float: left;
  width: 33.33333%;
  height: 182px;
  background-repeat: no-repeat;
  line-height: 15px;
}
.website-images .website-images-l a, .website-images .website-images-m a, .website-images .website-images-r a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  text-align: center;
}
.website-images .website-images-l p, .website-images .website-images-m p, .website-images .website-images-r p {
  padding-bottom: 100px;
  padding-top: 11px;
}
.website-images .website-images-l {
  background-image: url("../images/Catering.png");
}
.website-images .website-images-m {
  background-image: url("../images/Conference.png");
}
.website-images .website-images-r {
  background-image: url("../images/Entertainment.png");
}
.supporters-section {
  width: 70% !important;
  padding: 0px 0 30px 0 !important;
}
.message-section {
  width: 70% !important;
  padding: 0px 0 0px 0 !important;
}
.welcome-section {
  width: 70% !important;
  padding: 40px 0 30px 0;
}
.supporters-carousel {
  width: 100%;
  padding: 0px 0 30px 0 !important;
}
.about-banner {
  margin-left: -40px;
}
.about-banner img {
  width: 1020px;
}
.about-page-text {
  padding: 0 0px;
}
.bx-wrapper {
  max-width: 980px !important;
  /*********************
Contact Page
*********************/
}
.contact-l, .contact-r {
  width: 50%;
  float: left;
  padding-top: 25px;
}
.contact-r {
  padding-left: 100px;
  padding-right: 0px;
}
#map {
  width: 100%;
  height: 360px;
}
#map-container {
  width: 460px;
  padding-top: 20px;
  /*********************
SIDEBARS & ASIDES
*********************/
}
.sidebar {
  margin-top: 72px;
  border-left: 1px solid #dadada;
  width: 240px;
  padding-left: 20px;
  margin-left: 20px;
}
.sidebar1 {
  margin-top: 72px;
  display: inherit;
}
a:hover, a:visited:hover, a:focus, a:visited:focus, a {
  color: #9a9a9a;
}
.widgettitle {
  border-bottom: 0px solid #444;
  margin-bottom: 0.75em;
}
.widget {
  padding: 0 10px;
  margin: 0;
  /* links widget */
}
.widget ul li a {
  /* deep nesting */
}
.widget ul li ul {
  margin-top: 0.75em;
  padding-left: 1em;
}
.widget_links ul li a {
  /* meta widget */
}
.widget_meta ul li a {
  /* pages widget */
}
.widget_pages ul li a {
  /* recent-posts widget */
}
.widget_recent_entries ul li a {
  /* archives widget */
}
.widget_archive option {
  /* tag-cloud widget */
}
.widget_tag_cloud a:before {
  /* calendar widget */
}
#wp-calendar #prev a {
  /* category widget */
}
.widget_categories .level-3 {
  /* recent-comments widget */
}
.widget_recent_comments {
  /* search widget */
}
.head-search {
  width: 100%;
  height: 53px;
  margin-top: 10px;
  margin-bottom: 1px;
}
.head-search #searchform {
  background-color: #507cbd;
  width: 100%;
}
.head-search #searchform input {
  width: 78%;
  margin-bottom: -32px;
  background-color: #fff;
  height: 32px;
  border-radius: 3px 0 0 3px;
  -moz-box-shadow: 0px 0px #d0cccc;
  -webkit-box-shadow: 0px 0px #d0cccc;
  box-shadow: 0px 0px #d0cccc;
}
.head-search #searchform #searchsubmit {
  margin-right: 25px;
  float: right;
  border: 0px;
  background-color: #9cf;
  height: 32px;
  padding: 0px !important;
}
.screen-reader-text {
  display: none;
  /* text widget */
}
.textwidget p {
  /*********************
FOOTER STYLES
*********************/
  /*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
}
.pre-footer {
  width: 1020px;
  margin: auto;
}
.pre-footer .testimonials-l {
  width: 33%;
  background-color: #507cbd;
  height: auto;
  float: left;
}
.pre-footer .testimonials-l img {
  margin-top: 90px;
  margin-bottom: -7px;
  padding: 0 0 0 20px;
}
.pre-footer .testimonials-r {
  width: 67%;
  background-color: #507cbd;
  height: auto;
  float: left;
}
.pre-footer .testimonials-r .testimonial-author {
  padding: 0 20px;
}
.pre-footer .testimonials-r p {
  padding: 20px 20px 0;
  line-height: 30px;
  font-size: 20px;
}
.pre-footer .testimonials-r p img {
  margin-left: -25px;
  margin-top: -5px;
}
.pre-footer .testimonials-r p span img {
  margin-left: 0px;
}
.pre-footer .testimonials-r .testimonial-a a {
  margin-right: 40px;
  padding: 4px 15px 2px;
}
.pre-footer .footer-site-links {
  height: 85px;
}
.pre-footer .footer-site-links p {
  text-align: center;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.pre-footer .footer-site-links a {
  color: #707070;
  text-decoration: none;
  padding: 5px 10px 3px;
  background-color: #fff;
  text-align: center;
  border-radius: 3px;
  font-size: 16px;
}
.pre-footer .footer-site-links .links-l {
  width: 33%;
  height: 100%;
  background-color: #507cbd;
  float: left;
}
.pre-footer .footer-site-links .links-m {
  width: 34%;
  height: 100%;
  background-color: #7b7161;
  float: left;
}
.pre-footer .footer-site-links .links-r {
  width: 33%;
  height: 100%;
  background-color: #a7cfee;
  float: left;
}
.pre-footer .footer-text-areas {
  background-color: #dcdad6;
  min-height: 430px;
  color: #666;
}
.pre-footer .footer-text-areas p {
  font-size: 14px;
  line-height: 19px;
}
.pre-footer .footer-text-areas h2 {
  font-size: 22px !important;
  color: #666 !important;
}
.pre-footer .footer-text-areas .area-l {
  width: 33%;
  float: left;
  padding: 20px 20px 0 40px;
}
.pre-footer .footer-text-areas .area-l span p {
  min-height: 150px;
}
.pre-footer .footer-text-areas .area-m {
  width: 34%;
  float: left;
  padding: 20px 20px 0 20px;
}
.pre-footer .footer-text-areas .area-r {
  width: 33%;
  float: left;
  padding: 20px 20px 0 20px;
}
.pre-footer .footer-text-areas .area-r .text-3 {
  height: auto;
}
.pre-footer .footer-text-areas .area-r .text-3-1 {
  height: 110px;
  padding-top: 10px;
}
.pre-footer .footer-text-areas .area-r li {
  font-size: 14px;
  padding-top: 10px;
}
.pre-footer .footer-text-areas .area-r li span {
  padding-left: 10px;
}
.pre-footer .footer-text-areas .area-r li img {
  margin-bottom: -3px;
  max-height: 23px;
}
.footer-social-links {
  padding-top: 4px;
}
.footer-social-links ul li {
  display: inline;
  padding-left: 13px;
}
.footer-links {
  float: right;
  width: 50%;
  margin-right: -80px;
  /* end .footer-links */
}
.footer-links ul li {
  border: 0;
}
.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  border: 0;
  /*
			be careful with the depth of your menus.
			it's very rare to have multi-depth menus in
			the footer.
			*/
}
.footer-links ul li a:hover {
  text-decoration: none;
  color: #fff;
}
.break-line {
  width: 100%;
  border-top: 1px solid #dadada;
  padding: 10px;
  margin: auto;
}
.tp-rightarrow.default {
  z-index: 100;
  cursor: pointer;
  position: relative;
  width: 50px;
  height: 50px;
  background-size: cover;
  background-position: center center;
  right: 0px !important;
  display: inherit;
}
.tp-leftarrow.default {
  z-index: 100;
  cursor: pointer;
  position: relative;
  width: 50px;
  height: 50px;
  background-size: cover;
  background-position: center center;
  left: 0px !important;
  display: inherit;
}
.page-testimonials .break-line {
  width: 100%;
  border-top: 1px solid #dadada;
  padding: 10px 0;
  margin: auto;
  margin-top: 40px;
}
.page-testimonials .page-testimonials-text {
  width: 60%;
  float: left;
}
.page-testimonials .page-testimonials-text p {
  padding: 0 20px;
}
.page-testimonials .page-testimonials-text p img {
  margin-left: -25px;
}
.page-testimonials .page-testimonials-text p span img {
  margin-left: 0px;
}
.page-testimonials .page-testimonials-text .page-testimonials-author {
  padding: 0 20px;
}
.page-testimonials .page-testimonials-image {
  width: 40%;
  float: left;
  margin-top: 20px;
}
.page-testimonials .page-testimonials-image img {
  width: 240px;
  margin: 20px 90px 0px;
  padding: 0px;
}
.page-testimonial-title {
  padding: 40px 0 20px;
}
