/* GENERAL STYLES
=================================*/
body {
  background: #E7E7E8;
}
.container {
  /* SET A GENERAL FONT STYLE AND COLOUR TO USE ACROSS THE SITE HERE */
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #000000;
  font-size: 16px;
  line-height: 22px;
}

  /* SET GENERIC STYLES PREFIXED BY THE CONTAINER ID */
  .container h1,
  .container h1 a,
  .container h2,
  .container h2 a,
  .container h3,
  .container h3 a {
    color: #17458F;
    font-family: "Open Sans Condensed", Tahoma, Geneva, sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0px;
    padding: 0px 0px 12px 0px;
    text-decoration: none;
  }
  .container h1 {
    font-size: 36px;
    line-height: 42px;
    padding-bottom: 20px;
  }
  .container h2 {
    color: #005DAA;
    font-size: 34px;
    line-height: 38px;
    font-weight: 600;
    padding-top: 10px;
  }
  .container h3 {
    color: #005DAA;
    font-size: 24px;
    line-height: 27px;
    padding-top: 8px;
    font-weight: 600;
  }

  .container p {
    font-size: 16px;
    line-height: 24px;
    margin: 0px;
    padding: 0px 0px 20px 0px;
  }
  .container a { color: #2172C3; }
  .container a:hover { text-decoration: none; }
  .container a img { border: 0px; }
  .container ul,
  .container ol {
    margin: 0px;
    padding: 0px 0px 12px 30px;
  }
  .container li {
    list-style: none;
    background-image: url(/themes/defaulttheme/images/icon_list_item.png);
    background-position: 0px 6px;
    background-repeat: no-repeat;
    padding: 0px 0px 4px 15px;
  }

  .container ::selection {
    /* This sets the colours when someone highlights some text */
    background: #17458F;
    color: #FFFFFF;
    text-shadow: none;
  }

/* HEADER AREA SPECIFIC STYLES
================================ */
#header {
  background-color: #FFFFFF;
}
#header .logo {
  float: left;
}
#header .logo a {
  display: block;
}
#header .logo img {
  margin: 20px 0px 25px 0px;
}

#header_contact {
  float: left;
  width: 100%;
  margin: 44px 0px 0px 0px;
  width:200px\8;
 
  border:1px solid red\8;
   
}
#header_contact .phone {
  float: right;
  padding-right: 25px;
  text-align: right;
   display:none\8;
}
#header_contact .phone span {
  float: right;
  display:block;
  width:100%;
  text-align: right;
  font-family: "Open Sans", Tahoma, Geneva, sans-serif;
  color: #005DAA;
  font-size: 30px;
  line-height: 40px;
  font-weight: 300;
}
#header_contact .phone a {
  float: right;
  text-align: right;
  font-family: "Open Sans", Tahoma, Geneva, sans-serif;
  color: #17458F;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  text-decoration: none;
  padding-left: 34px;
  background-image: url(/themes/defaulttheme/images/header_icon_phone.png);
  background-position: 0px 9px;
  background-repeat: no-repeat;
}

/* NAVIGATION AREA SPECIFIC STYLES
================================ */
#navigation {
  background-color: #2172C3;
}
.toggleMenu {
  /* This is actually for the responsive menu, but to prevent a minor browser display anomaly, the CSS goes here */
  display: none;
  width: 100%;
  padding: 12px 0px 12px 0px;
  text-align: right;
  text-decoration: none;
}
.toggleMenu span {
  padding: 0px 40px 0px 0px;
  font-family: "Open Sans", Tahoma, Geneva, sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 21px;
  text-decoration: none;
  background-image: url(/themes/defaulttheme/images/icon_menu_toggle.png);
  background-position: right 0px;
  background-repeat: no-repeat;
}

#navigation ul {
  border-left: solid 1px #2A92D4;
}
#navigation ul.nav li {
  /* The style of a standard button, which applies to all levels */
  background-image: none;
  padding: 0px;
}
#navigation ul.nav li.nav-selected {
  /* Styles for the active page */
}
#navigation ul.nav li:hover {
}
#navigation ul.nav li a {
  /* Set backgrounds on the li.  Only set font stuff and padding in here */
  display: block;
  padding: 17px 18px 15px 18px;
  background-color: #2172C3;
  border-right: solid 1px #2A92D4;
  color: #FFFFFF;
  font-family: "Open Sans Condensed", Tahoma, Geneva, sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
#navigation ul.nav li a:hover {
  /* only change the font colour in here */
   color: #F7A81B !important;
   background:#2172C3 !important;
}

#navigation ul.nav li.nav-selected a,
#navigation ul.nav li.nav-path-selected a,
#navigation ul.nav li.nav-selected.nav-path-selected a {
  background-color: #17458F;
  color: #F7A81B;
}

/* SECOND (AND THIRD) LEVEL SPECIFIC MENU STYLES */
#navigation ul.nav ul {
  z-index: 200;
  border-left: 0px;
}
#navigation ul.nav ul li.nav-selected.nav-path-selected a,
#navigation ul.nav ul li.nav-selected a,
#navigation ul.nav ul li.nav-path-selected a {
  background-color: #17458F;
  color: #F7A81B;
}
#navigation ul.nav ul li a {
  color: #FFFFFF !important;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 18px 10px 18px !important;
  border-right: 0px;
  border-top: solid 1px #2A92D4;
}
#navigation ul.nav ul li:hover a {
  background-color: #17458F;
}


/* BANNER AREA SPECIFIC STYLES
================================ */
#banner {
  background-color: #9EA6B4; /* This is only seen as the banner loads and in the responsive view */
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: solid 4px #F7A81B;
}
#banner_wrapper_home {
  float: left;
  position: relative;
  width: 940px;
  height: 400px;
  overflow: hidden;
}
#banner_wrapper {
  float: left;
  position: relative;
  width: 940px;
  height: 160px;
  overflow: hidden;
}


/* STANDARD PAGE SPECIFIC STYLES
================================ */
#content {
  background-color: #FFFFFF;
  padding-top: 25px;
  padding-bottom: 40px;
}

#side_content {
  position: relative;
  margin-top: -25px;
  padding-top: 12px;
  padding-bottom: 30px;
}
#side_content .yellow_triangle {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 31px;
  background-image: url(/themes/defaulttheme/images/icon_triangle_yellow.png);
  background-position: 50% 0px;
  background-repeat: no-repeat;
  z-index: 99;
}

#enquiry_form {
  margin-bottom: 20px;
}
#enquiry_form h2 {
  color: #FFFFFF;
  background: #1A5595;
  padding: 10px 0px 10px 0px;
  font-size: 19px;
  line-height: 24px;
  margin: 0px;
  text-align: center;
}


/* FOOTER AREA SPECIFIC STYLES
================================ */
#pre_footer {
  background-color: #17458F;
}
#pre_footer p {
  padding: 0px;
  margin: 0px;
}
#pre_footer p a {
  float: left;
  display: block;
  width: 100%;
  padding-top: 45px;
  padding-bottom: 40px;
  text-align: center;
  color: #FFFFFF;
  font-family: "Open Sans Condensed", Tahoma, Geneva, sans-serif;
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #17458F;
  background-image: url(/themes/defaulttheme/images/icon_triangle.png);
  background-position: 50% 0px;
  background-repeat: no-repeat;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
#pre_footer p a:hover {
  background-color: #2172C3;
}

#footer {
  background-color: #E7E7E8;
  padding-top: 25px;
  padding-bottom: 25px;
}
#footer_sitemap ul {
  float: left;
  width: 100%;
  padding: 0px;
  margin: 0px;
}
#footer_sitemap ul li {
  float: left;
  width: 50%;
  background-image: none;
  padding: 0px;
  margin: 0px;
}
#footer_sitemap ul li a {
  font-family: "Open Sans Condensed", Tahoma, Geneva, sans-serif;
  color: #58585A;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding-left: 30px;
  background-image: url(/themes/defaulttheme/images/icon_list_item_footer.png);
  background-position: 15px 9px;
  background-repeat: no-repeat;
}
#footer_sitemap ul li a:hover {
  color: #2172C3;
}
#meeting_location_time ul {
  float: left;
  width: 100%;
  padding: 0px;
  margin: 0px;
}
#meeting_location_time ul li {
  float: left;
  width: 45%;
  background-image: none;
  padding: 0px 0px 0px 5%;
  margin: 0px;
  font-family: "Open Sans Condensed", Tahoma, Geneva, sans-serif;
  color: #58585A;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.responsivity_toggle div {
  margin-top: 12px;
  margin-bottom: 20px;
  text-align: center;
}
.responsivity_toggle a {
  display: block;
  width: 100%;
  text-align: center;
  color: #FFFFFF !important;
  font-family: "Open Sans", Tahoma, Geneva, sans-serif;
  background: #687D90;
  padding: 5px 0px 5px 0px;
  text-decoration: none;
}
.responsivity_toggle a:hover {
  background: #2172C3;
}


/* Banner */
.banner_slide {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 940px !important;
  height: 400px;
  overflow: hidden;
  z-index: 1;
}

.slide_content {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 250px;
  height: 300px;
  background-repeat: no-repeat;
  z-index: 2;
}
.slide_content.left  {
  padding: 50px 650px 50px 40px;
  background-position: bottom left;
}
.slide_content.right {
  padding: 50px 40px 50px 650px;
  background-position: bottom right;
}

.slide_content.left.orange { background-image: url(/themes/defaulttheme/images/banner_overlay_left_orange.png); }
.slide_content.left.green  { background-image: url(/themes/defaulttheme/images/banner_overlay_left_green.png); }
.slide_content.left.pink   { background-image: url(/themes/defaulttheme/images/banner_overlay_left_pink.png); }
.slide_content.left.purple { background-image: url(/themes/defaulttheme/images/banner_overlay_left_purple.png); }

.slide_content.right.orange { background-image: url(/themes/defaulttheme/images/banner_overlay_right_orange.png); }
.slide_content.right.green  { background-image: url(/themes/defaulttheme/images/banner_overlay_right_green.png); }
.slide_content.right.pink   { background-image: url(/themes/defaulttheme/images/banner_overlay_right_pink.png); }
.slide_content.right.purple { background-image: url(/themes/defaulttheme/images/banner_overlay_right_purple.png); }

.slide_text h2 {
  color: #FFFFFF;
  font-family: "Open Sans Condensed", Tahoma, Geneva, sans-serif;
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  text-transform: none;
}
.slide_text span {
  color: #FFFFFF;
  font-family: "Open Sans Condensed", Tahoma, Geneva, sans-serif;
  font-size: 22px;
  line-height: 30px;
  font-weight: 300;
  text-transform: none;
}
.slide_content.left .slide_text  { text-align: left; }
.slide_content.right .slide_text { text-align: right; }

.banner_slide img {
  width: 660px;
  height: 440px;
}
.banner_slide.left img  { float: right; }
.banner_slide.right img { float: left; }

@media only screen
and (min-width: 1254px) { /* STYLES FOR A WIDESCREEN DESKTOP */

  .banner_slide { width: 1194px !important; }
  .slide_content.left  { padding: 50px 904px 50px 40px !important; }
  .slide_content.right { padding: 50px 40px 50px 904px !important; }
  .banner_slide img {
    width: 900px !important;
    height: 600px !important;
  }

}

/* RESPONSIVE DESIGN STYLES
================================ */
@media (max-width: 640px) { /* MOBILE PHONES */

  .slide_content { display: none !important; }
  .banner_slide { width: 100% !important; }
  .banner_slide img {
    width: 100% !important;
    height: auto !important;
  }

}


/* CONTACT INFORMATION */
.contact_telephone,
.contact_fax,
.contact_email,
.contact_postal_address,
.contact_physical_address {
  float: left;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  padding: 8px 0px 16px 38px;
  background-repeat: no-repeat;
  background-position: 5px 11px;
}
.contact_telephone {
  font-size: 28px;
  background-image: url(/themes/defaulttheme//images/icon_telephone.png);
}
.contact_fax {
  background-image: url(/themes/defaulttheme//images/icon_fax.png);
}
.contact_email {
  background-image: url(/themes/defaulttheme//images/icon_email.png);
}
.contact_postal_address {
  background-image: url(/themes/defaulttheme//images/icon_postal_address.png);
}
.contact_physical_address {
  background-image: url(/themes/defaulttheme//images/icon_location.png);
}

@media (max-width: 640px) { /* MOBILE PHONES */

  .contact_fax,
  .contact_email,
  .contact_postal_address,
  .contact_physical_address {
    font-size: 14px !important;
  }
}

/* EVENT DETAILS */
.event_item {
  float: left;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: solid 2px #999999;
  margin-bottom: 20px;
}
.event_item h3 {
  padding-top: 0px;
  padding-bottom: 2px;
}
.event_date,
.event_location {
  float: left;
  width: 100%;
  font-family: "Open Sans", Tahoma, Geneva, sans-serif;
  color: #2172C3;
  font-size: 16px;
  margin-top: 2px;
}
.event_description {
  float: left;
  width: 100%;
  padding-top: 10px;
}
.event_description li {
  margin-bottom: 4px !important;
}
.event_description p:last-child {
  padding-bottom: 6px !important;
}
.event_description img {
  float: right;
  max-width: 300px;
  max-height: 300px;
  width: auto;
  height: auto;
  margin: 0px 0px 10px 20px;
}
.event_link {
  float: left;
  width: 100%;
  text-align: right;
}
.event_link a {
  font-family: "Open Sans Condensed", Tahoma, Geneva, sans-serif;
  font-weight: 600;
  text-decoration: none !important;
  text-transform: uppercase;
  margin-left: 12px;
}
.event_link a:hover {
  color: #222222 !important;
  text-decoration: none !important;
}

@media (max-width: 640px) { /* MOBILE PHONES */

  .event_description img {
    float: left !important;
    width: 70% !important;
    height: auto !important;
    max-width: 70% !important;
    max-height: 70% !important;
    margin: 0px 15% 10px 15% !important;
  }

  .event_date,
  .event_location { font-size: 14px !important; }

}

/* IMAGE LINK */
.image_link {
  float: left;
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.image_link img {
  float: left;
  width: 100%;
  height: auto;
  border: 0px;
  z-index: 1;
}
.image_link span.triangle_overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 31px;
  background-image: url(/themes/defaulttheme/images/icon_triangle.png);
  background-position: 50% 0px;
  background-repeat: no-repeat;
  z-index: 2;
}
.image_link span.link_title {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding: 6px 0px 8px 0px;
  color: #FFFFFF;
  font-family: "Open Sans Condensed", Tahoma, Geneva, sans-serif;
  font-size: 24px;
  line-height: 29px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  background: #687D90;
  text-align: center;
  z-index: 3;
}

/* MEMBER PROFILE */
.member_profile {
  float: left;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: solid 2px #999999;
  margin-bottom: 10px;
}
  .member_profile h3 { padding-top: 0px; }

.member_details {
  float: left;
  width: 30%;
}
  .member_photo {
    float: left;
    width: 90%;
    margin-right: 10%;
    margin-bottom: 10px;
  }
  .member_photo img {
    width: 100%;
    height: auto;
  }

.member_bio {
  float: left;
  width: 70%;
}
  .member_bio_item {
    float: left;
    width: 100%;
    margin-bottom: 10px;
  }
  .member_bio_item span {
    color: #17458F;
    font-family: "Open Sans Condensed", Tahoma, Geneva, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    padding-right: 10px;
  }


@media (max-width: 640px) { /* MOBILE PHONES */

  .member_profile,
  .member_details,
  .member_photo,
  .member_bio,
  .member_bio_item {
    float: none !important;
  }
  .member_details {
    width: 80% !important;
    margin: 0px 10% 0px 10% !important;
  }
  .member_photo {
    width: 100% !important;
    margin-right: 0px !important;
  }
  .member_photo.no_photo { display: none; }
  .member_bio { width: 100% !important; }
  
  .ccm-layout-col img {
    display:block;
	width:100%;
	float:left;
	height:auto;
}

}


/* MULTIPLE IMAGE BANNER PANEL */
.banner_multislide {
  float: left;
  position: relative;
  width: 100% !important;
  height: 160px;
}

.banner_multislide img {
  float: left;
  width: 235px !important;
  height: 160px !important;
}
.banner_multislide span {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 165px;
  height: 160px;
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.banner_multislide span.orange { background-image: url(/themes/defaulttheme/images/overlay_orange.png); }
.banner_multislide span.green  { background-image: url(/themes/defaulttheme/images/overlay_green.png); }
.banner_multislide span.pink   { background-image: url(/themes/defaulttheme/images/overlay_pink.png); }
.banner_multislide span.purple { background-image: url(/themes/defaulttheme/images/overlay_purple.png); }


@media only screen
and (min-width: 1254px) { /* STYLES FOR A WIDESCREEN DESKTOP */

  .banner_multislide { height: 198px !important; }
  .banner_multislide img {
    width: 298px !important;
    height: 198px !important;
  }
  .banner_multislide span {
    width: 204px;
    height: 198px;
  }

}

/* NEWS ITEM */
.news_item {
  float: left;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: solid 2px #999999;
  margin-bottom: 20px;
}
.news_item h3 {
  padding-top: 0px;
  padding-bottom: 2px;
}
.news_date {
  float: left;
  width: 100%;
  font-family: "Open Sans", Tahoma, Geneva, sans-serif;
  color: #666666;
  font-size: 11px;
}
.news_description {
  float: left;
  width: 100%;
  padding-top: 10px;
}
.news_description li {
  margin-bottom: 4px !important;
}
.news_description p:last-child {
  padding-bottom: 6px !important;
}
.news_description img {
  float: right;
  max-width: 300px;
  max-height: 300px;
  width: auto;
  height: auto;
  margin: 0px 0px 10px 20px;
}
.news_link {
  float: left;
  width: 100%;
  text-align: right;
}
.news_link a {
  font-family: "Open Sans Condensed", Tahoma, Geneva, sans-serif;
  font-weight: 600;
  text-decoration: none !important;
  text-transform: uppercase;
  margin-left: 12px;
}
.news_link a:hover {
  color: #222222 !important;
  text-decoration: none !important;
}

@media (max-width: 640px) { /* MOBILE PHONES */

  .news_description img {
    float: left !important;
    width: 70% !important;
    height: auto !important;
    max-width: 70% !important;
    max-height: 70% !important;
    margin: 0px 15% 10px 15% !important;
  }

}

/*PAGE LIST - ARTICLES */
.news_articles_list {
  float: left;
  width: 100%;
  margin-top: 20px;
  border-top: solid 2px #999999;
  padding-top: 10px;
  margin-bottom: 20px;
}
.nalist_item {
  float: left;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: solid 2px #999999;
  margin-bottom: 10px;
}
.nalist_description {
  float: left;
  width: 100%;
}
.nalist_description li {
  margin-bottom: 4px !important;
}
.nalist_description p:last-child {
  margin-bottom: 6px !important;
}
.nalist_description img {
  float: right;
  margin: 0px 0px 10px 20px;
}
.nalist_date {
  float: left;
  width: 50%;
  font-size: 11px;
  color: #666666;
}
.nalist_link {
  float: left;
  width: 50%;
  font-weight: 600;
  text-align: right;
  text-decoration: none !important;
}
.nalist_link:hover a {
  color: #222222 !important;
  text-decoration: none !important;
}

#pagination {
  float: left;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 10px;
}


@media (max-width: 640px) { /* MOBILE PHONES */

  .nalist_description img {
    float: left !important;
    width: 100% !important;
    height: auto !important;
    margin: 0px 0px 10px 0px !important;
  }
  .nalist_date {
    width: 50% !important;
  }
  .nalist_link {
    width: 50% !important;
    padding: 0px !important;
    background-image: none !important;
  }


}

/* PHOTO GALLERY */
.gallery_container {
  float: left;
  width: 100%;
  margin: 0px 0px 20px 0px;
}

.projectGalleryImage {
  float: left;
  width: 215px;
  margin: 0px 10px 20px 10px;
}
.projectGalleryImage a { display: block; }
.projectGalleryImage img {
  width: 100%;
  height: auto;
}
.projectGalleryImage img:hover { 
	cursor: pointer !important; 
	opacity: 0.8; 
	-moz-opacity: 0.8; 
	filter: alpha(opacity = 80); 
}

@media only screen
and (min-width: 1254px) { /* STYLES FOR A WIDESCREEN DESKTOP */

  .projectGalleryImage {
    width: 278px !important;
  }

}

@media (max-width: 640px) {

  #projectGalleryLarge { display: none; }
  .projectGalleryImage img,
  .projectGalleryImage img.active { border-bottom: 0px !important; }
  .projectGalleryImage,
  .projectGalleryImage img {
    width: 100% !important;
    height: auto !important;
  }
  .projectGalleryImage img:hover {
    cursor: default !important;
  }

}

/* PROJECT Overview */
.project_item {
  float: left;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: solid 2px #999999;
  margin-bottom: 10px;
}
.project_description {
  float: left;
  width: 100%;
}
.project_description li {
  margin-bottom: 4px !important;
}
.project_description p:last-child {
  padding-bottom: 6px !important;
}
.project_description img {
  float: right;
  max-width: 300px;
  max-height: 300px;
  width: auto;
  height: auto;
  margin: 0px 0px 10px 20px;
}
.project_link {
  float: left;
  width: 100%;
  text-align: right;
}
.project_link a {
  font-family: "Open Sans Condensed", Tahoma, Geneva, sans-serif;
  font-weight: 600;
  text-decoration: none !important;
  text-transform: uppercase;
}
.project_link a:hover {
  color: #222222 !important;
  text-decoration: none !important;
}

@media (max-width: 640px) { /* MOBILE PHONES */

  .project_description img {
    float: left !important;
    width: 70% !important;
    height: auto !important;
    max-width: 70% !important;
    max-height: 70% !important;
    margin: 0px 15% 10px 15% !important;
  }

}



