@charset "utf-8";
@import url("../webfonts/solomon_sans_light/stylesheet.css");
@import url("../webfonts/solomon_sans_bold/stylesheet.css");
@import url("../webfonts/solomon_sans_bold/stylesheet.css");
@import url("../webfonts/solomon_sans_bold/stylesheet.css");
@import url("../webfonts/solomon_sans_book/stylesheet.css");
@import url("../webfonts/solomon_sans_book/stylesheet.css");


body {
	background-color: #FFFFFF;
	margin: 0;
	padding: 0;
	color: #333;
	font-family: "solomon sans book", sans-serif, Verdana;
	font-size: 1em;
	line-height: 1.4;
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
}
img {
	max-width: 100%;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #82a9bc;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #82a9bc;
	text-decoration: none;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	color: #0796f3;
}
/* ~~ The header sits above the container and on top of everything on the site. It will extend the full width of your layout. ~~ */
header {
	background-color: #FFF;
	height: 150px;
	width: 100%;
	z-index: 5;
	position: absolute;
}
#contactNumber {
	top: 30%;
	right: 12.5%;
	float: right;
	position: relative;
	width: auto;
	text-indent:-15px;
}

#logo_image {
	position: relative;
	top: 30%;
	float: left;
	left: 12.5%;
}
/* ~~ The menu is within the header to the right of the page and on top of everything on the site. It will extend the full width of your layout. ~~ */

#cssmenu {
	position: relative;
	height: 44px;
	width: auto;
	background-color: #FFF;
	float: right;
	right: 5%;
	top: 70%;
}
#cssmenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1;
}
#cssmenu > ul {
	position: relative;
	display: block;
	height: 32px;
	width: 100%;
	z-index: 500;
	background-color: #FFFFFF;
}
#cssmenu > ul > li {
  display: block;
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
}
#cssmenu > ul > #menu-button {
  display: none;
}
#cssmenu ul li a {
	display: block;
	font-family: "solomon sans book", sans-serif, Verdana;
	text-decoration: none;
	font-size: 1em;
}
#cssmenu > ul > li > a {
	font-size: 1em;
	padding: 15px 20px;
	color: #0c0e2c;
	text-transform: lowercase;
	-webkit-transition: color 0.25s ease-out;
	-moz-transition: color 0.25s ease-out;
	-ms-transition: color 0.25s ease-out;
	-o-transition: color 0.25s ease-out;
	transition: color 0.25s ease-out;
}
#cssmenu > ul > li.has-sub > a {
  padding-right: 32px;
}
#cssmenu > ul > li:hover > a {
	color: #82a9bc;
}
#cssmenu li.has-sub::after {
  display: block;
  content: '';
  position: absolute;
  width: 0;
  height: 0;
}
#cssmenu > ul > li.has-sub::after {
	right: 10px;
	top: 20px;
	border: 5px solid transparent;
	border-top-color: #0c0e2c;
}
#cssmenu > ul > li:hover::after {
	border-top-color: #a7c2d2;
}
#indicatorContainer {
	position: absolute;
	height: 12px;
	width: 100%;
	bottom: 0px;
	overflow: hidden;
	z-index: -1;
	
}
#pIndicator {
	position: absolute;
	height: 0;
	width: 100%;
	border: 12px solid transparent;
	border-top-color: #a7c2d2;
	z-index: -2;
	-webkit-transition: left .25s ease;
	-moz-transition: left .25s ease;
	-ms-transition: left .25s ease;
	-o-transition: left .25s ease;
	transition: left .25s ease;
}
#cIndicator {
	position: absolute;
	height: 0;
	width: 100%;
	border: 12px solid transparent;
	border-top-color: #a7c2d2;
	top: -12px;
	right: 100%;
	z-index: -2;
}
#cssmenu ul ul {
  position: absolute;
  left: -9999px;
  top: 70px;
  opacity: 0;
  -webkit-transition: opacity .3s ease, top .25s ease;
  -moz-transition: opacity .3s ease, top .25s ease;
  -ms-transition: opacity .3s ease, top .25s ease;
  -o-transition: opacity .3s ease, top .25s ease;
  transition: opacity .3s ease, top .25s ease;
  z-index: 1000;
}
#cssmenu ul ul ul {
  top: 37px;
  padding-left: 5px;
}
#cssmenu > ul > li:hover > ul {
  left: auto;
  top: 44px;
  opacity: 1;
}
#cssmenu ul ul li {
	position: relative;
	background-color: #a7c2d2;
}
#cssmenu ul ul li:hover > ul {
  left: 170px;
  top: 0;
  opacity: 1;
}
#cssmenu ul ul li a {
	width: 130px;
	padding: 10px 20px;
	font-size: 1em;
	color: #FFF;
	-webkit-transition: all .35s ease;
	-moz-transition: all .35s ease;
	-ms-transition: all .35s ease;
	-o-transition: all .35s ease;
	transition: all .35s ease;
}
#cssmenu ul ul li:hover > a {
	color: #fff;
	background-color: #c3d6e0;
}
#cssmenu ul ul li:last-child > a,
#cssmenu ul ul li.last > a {
  border-bottom: 0;
}
.submenuArrow {
	border: 6px solid transparent;
	width: 0;
	height: 0px;
	border-bottom-color: #a7c2d2;
	position: absolute;
	top: -12px;
}
#cssmenu ul ul li.has-sub::after {
	border: 4px solid transparent;
	border-left-color: #a7c2d2;
	right: 10px;
	top: 12px;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
	-webkit-transition: -webkit-transform 0.2s ease, right 0.2s ease;
}
#cssmenu ul ul li.has-sub:hover::after {
	border-left-color: #c3d6e0;
	right: -5px;
	-webkit-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
/* End of menu */
#gallerywrapper {/* Wrapper that contains all images, galleries and map */
	position: relative;
	top: 144px;
	width: 100%;
	height: 460px;
	background-color:#FFF;
}
#imagewrapper {/* Wrapper that contains all images, galleries and map */
	position: relative;
	top: 144px;
	width: 100%;
	height: 460px;
	background-color:#FFF;
}
#blueblock {
	background: #003; 
	height: 6em;
	width: 100%;
	z-index: -1;
	padding-right: 12.5%;
	padding-left: 12.5%;
	padding-top: 0.5em;
}
#smile {
	margin-right: 12.5%;
	margin-left: 48%;
}
#smile h1 {
	font-size: 3.5em;
	line-height: 1;
	text-align: right;
	color: #82a9bc;
}
#smile h2 {
	font-family: "solomon sans book", sans-serif, Verdana;
	font-size: 1.5em;
	line-height: 1;
	text-align: right;
}
.pikachoose {
	width: 40%;
	margin-left: 12.5%;
	padding-top: 15px;
	padding-bottom: 15px;
	top: 0px;
	position: absolute;
}
.profilepic {
	width: 30%;
	margin-left: 18%;
	padding-top: 15px;
	padding-bottom: 15px;
	position: absolute;
	top: 0px;
}	
.teamImages {
	width: 75%;
	margin-right: auto;
	margin-left: 12.5%;
	padding-top: 15px;
	padding-bottom: 15px;
	top: 50px;
	position: absolute;
}
#map {
	margin-right: 12.5%;
	margin-left: 12.5%;
	margin-bottom:5em;
	padding-top: 15px;
	padding-bottom: 15px;
	width: 75%;
	border-radius: 6px;
}

.teamImages li {
	float: left;
	list-style-type: none;
	width: 14%;
	display: block;
	margin-right: 2.4%;
	margin-left: 2.4%;
	border-radius: 6px;
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	width: 75%;
	background-color: #FFFFFF;
	margin-top: 8em;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	position:relative;
}
.content {
	width: 87.5%;
	float: left;
	padding-top: 10px;
	padding-right: 6.25%;
	padding-bottom: 10px;
	padding-left: 6.25%;
}

.content h3 {
	font-family: "solomon sans book", sans-serif, Verdana ;
	font-size: 1.2em;
	color: #82a9bc;
	letter-spacing: 0.1em;
}
.content h1 {
	font-family: "solomon sans book", sans-serif, Verdana;
	font-size: 1.7em;
	color: #333;
	letter-spacing: 0.1em;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The footer ~~ */
footer {
	
	position: relative;/* this gives IE6 hasLayout to properly clear */	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	background-color: #0c0e2c;
	width:100%;
	height: 30px;
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 30px;
	padding-left: 0;
	color: #FFF;
	text-align: center;
}
/* ~~ Miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty block element as the final element following the last floated block (within the .container) if the footer is removed or taken out of the .container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, article, figure {
	display: block;
}
.r-tabs {
	position: relative;
	width:100%;
}

.r-tabs .r-tabs-nav {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #003;
}

.r-tabs .r-tabs-nav .r-tabs-tab {
	position: relative;
	top: 3px;
}

.r-tabs .r-tabs-nav .r-tabs-anchor {
	background: linear-gradient(#a7c1d2, #fff);
	margin-bottom: 3px;
	padding: 10px 12px;
	display: inline-block;
	text-decoration: none;
	color: #003;
	font-family: "solomon sans book", sans-serif, Verdana;
	font-size: 0.8em;
	border-radius: 6px 6px 0px 0px;
	border-top: solid #fff 1px;
	border-right: solid #fff 1px;
	border-left: solid #666 1px;
	}
.r-tabs .r-tabs-nav .r-tabs-anchor:hover {
	background: linear-gradient(#ffffff, #0796f3);
}
	

.r-tabs .r-tabs-nav .r-tabs-state-active {
	background: linear-gradient(#0796f3, #fff);
	margin-bottom: -1px;
	border-radius: 6px 6px 0px 0px;
}

.r-tabs .r-tabs-nav .r-tabs-state-disabled {
	opacity: 0.5;
}

.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
	color: #fff;
	background: linear-gradient(#ffffff, #003);
	border-radius: 6px 6px 0px 0px;
}

.r-tabs .r-tabs-panel {
	margin-bottom: 3px;
	background-color: #FFF;
	border-radius: 0px 0px 6px 6px;
	color: #003;
	box-shadow: 1px 1px 4px 2px #CCC;
}
.r-tabs .r-tabs-panel h1 {
	font-size: 1.3em;
	margin-bottom: 0px;
}
.r-tabs .r-tabs-panel h2 {
	font-size: 1em;
	color: #82a9bc;
	letter-spacing: 0.3em;
}

.r-tabs .r-tabs-accordion-title .r-tabs-anchor {
	display: block;
	padding: 10px;
	background: linear-gradient(#fff, #a7c1d2);
	color: #003;
	text-decoration: none;
	margin-bottom: 3px;
}

.r-tabs .r-tabs-accordion-title.r-tabs-state-disabled {
	opacity: 0.5;
}

.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
	background: linear-gradient(#ffffff, #003);
	color: #fff;
	border-top: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-left: 1px solid #ccc;
	margin-bottom: 0;
}

.pika-stage {
	position: relative;
	width: 75%;
	height: 450px;
	margin-right: auto;
	margin-left: auto;
	overflow: hidden;
}

	.pika-stage .pika-aniwrap, .pika-stage .main-image {
	position: absolute;
	top: 0;
	left: 0;
}
	.pika-stage .pika-aniwrap{width:100%;}
	.pika-stage .pika-ani {position:relative;display: none;z-index:2;margin:0 auto;}
	.pika-stage img {
	border: 0;
	max-width: 100%;
	max-height: 100%;
}

.pika-stage .caption {
	padding: 10px;
	display: none;
	visibility: hidden;
}
	.pika-stage .caption p {padding: 0; margin: 0; line-height: 14px;}
.pika-textnav, .pika-imgnav {display:none;}
.pika-counter{
	display: none;
}

#pikame{display:none;}

@media all and (max-width: 800px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {

#contactNumber {
	top: 5px;
	right: 5px;
	float: right;
	position: relative;
	width: auto;
}
#logo_image {
	position: relative;
	top: 5px;
	float: none;
	left: 5px;
}
header {
	height: 120px;
	background-color:#FFF;
}
  #cssmenu {
    width: auto;
	position: relative;
	top: 10px;
	left:5px;
	float: none;
  }
  #cssmenu ul {
    width: auto;
  }
  #cssmenu .submenuArrow,
  #cssmenu #indicatorContainer {
    display: none;
  }
  #cssmenu > ul {
    height: auto;
    background-color: #0c0e2c;

  }
  #cssmenu > ul > li {
    float: none;
  }
  #cssmenu li,
  #cssmenu > ul > li {
    display: none;
  }
  #cssmenu ul ul,
  #cssmenu ul ul ul,
  #cssmenu ul > li:hover > ul,
  #cssmenu ul ul > li:hover > ul {
    position: relative;
    left: auto;
    top: auto;
    opacity: 1;
    padding-left: 0;
  }
  #cssmenu ul .has-sub::after {
    display: none;
  }
  #cssmenu ul li a {
    padding: 12px 20px;
	color:#82a9bc;
  }
  #cssmenu > ul > li:hover > a {
	color: #fff;
  }
  #cssmenu ul ul li a {
    border: 0;
    background: #82a9bc;
    width: auto;
    padding: 8px 35px;
  }
  #cssmenu ul ul li:hover > a {
    background: #c3d6e0;
    color: #fff;
  }
  #cssmenu ul ul ul a {
    padding: 8px 50px;
  }
  #cssmenu ul ul ul ul a {
    padding: 8px 65px;
  }
  #cssmenu ul ul ul ul ul a {
    padding: 8px 80px;
  }
  #cssmenu ul ul ul ul ul ul a {
    padding: 8px 95px;
  }
  #cssmenu > ul > #menu-button {
    display: block;
    cursor: pointer;
  }
  #cssmenu #menu-button > a {
    padding: 14px 20px;
  }
  #cssmenu ul.open li,
  #cssmenu > ul.open > li {
    display: block;
  }
  #cssmenu > ul.open > li#menu-button > a {
    color: #82a9bc;
    border-bottom: 1px solid rgba(150, 150, 150, 0.1);
  }
  #cssmenu #menu-button::after {
    display: block;
    content: '';
    position: absolute;
    height: 3px;
    width: 22px;
    border-top: 2px solid #a7c2d2;
    border-bottom: 2px solid #a7c2d2;
    right: 20px;
    top: 15px;
  }
  #cssmenu #menu-button::before {
    display: block;
    content: '';
    position: absolute;
    height: 3px;
    width: 22px;
    border-top: 2px solid #a7c2d2;
    right: 20px;
    top: 25px;
  }
  #cssmenu ul.open #menu-button::after,
  #cssmenu ul.open #menu-button::before {
    border-color: #fff;
  }
#gallerywrapper {/* Wrapper that contains all images, galleries and map */
	position: relative;
	top: 140;
	height: 350px;
}
#imagewrapper {
	position: relative;
	top: 140;
	height: 130px;
}
#smile {
	width:100%;
	margin-right: auto;
	margin-left: auto;
}
#smile h1 {
	font-size: 1.5em;
	text-align:left;
}
#smile h2 {
	font-size: 1em;
	text-align:left;
}
#blueblock {
	background: none; 
	height: 0;
	visibility:hidden;
}
.pikachoose {
	width: 95%;
	margin-left: auto;
	margin-right:auto;
	padding-top: 5px;
	padding-bottom: 5px;
	position:relative;
}
.profilepic {
	width: 90%;
	margin-left: auto;
	margin-right:auto;
	padding-top: 5px;
	padding-bottom: 5px;
	position: relative;
	top: 0px;
}	
.teamImages {
	visibility:hidden;
	top: 0px;
	height:0;
	position: relative;
}
#map {
	margin-right: auto;
	margin-left: auto;
	padding-top: 5px;
	padding-bottom: 5px;
	width: 100%;
	}
.container {
	width: 100%;
	margin-top: 1.5em;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	position:relative;
}
.content {
	width: 95%;
	float: none;
	padding-top: 10px;
	padding-right: 2.5%;
	padding-bottom: 10px;
	padding-left: 2.5%;
}

footer {
	width:auto;
	background-color: #0c0e2c;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; 
	height: 40px;
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 30px;
	padding-left: 0;
	color: #FFF;
	text-align: center;
}
}
