@charset "UTF-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
#sideBox1 img {
	border-radius: 10px 10px 0px 0px;
}
#sideBox2 img {
	border-radius: 10px 10px 0px 0px;
}
#mainContent img {
	border-radius: 10px 10px 0px 0px;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		4;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	15;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

.fluid {
	clear: both;
	margin-left: 0;
	width: 100%;
	float: left;
	display: block;
}

.fluidList {
    list-style:none;
    list-style-image:none;
    margin:0;
    padding:0;        
}

/* Mobile Layout: 480px and below. */
  
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 88.0326%;
	padding-left: 1.4836%;
	padding-right: 1.4836%;
	clear: none;
	float: none;
}
#header {
}
#aptBox {
width: 100%;
margin-left: 0;
clear: both;
}
#biographyBox {
width: 100%;
}
#footer {
}
#sportspsychologyBox {
width: 100%;
margin-left: 0;
clear: both;
}
#header h1 {
	color: #5F8D8E;
	font-weight: 400;
	font-variant: normal;
	font-style: normal;
	font-size: 1.7em;
	font-family: abel;
	padding-top: 27px;
	text-align: left;
}

/* Navbar Menu Component */

.menu {
  width: 300px;
  height: 100%;
  background: #333;
  position: fixed;
  top: 0;
  right: -300px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: scroll;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transform: translateX(0) translateZ(0);
  transform: translateX(0) translateZ(0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.3s cubic-bezier(0.32, 1.25, 0.375, 1.15);
  transition: all 0.3s cubic-bezier(0.32, 1.25, 0.375, 1.15);
  z-index: 10;
}

.menu.show-nav {
  -webkit-transform: translateX(-300px);
  -ms-transform: translateX(-300px);
  transform: translateX(-300px);
  -webkit-transform: translateX(-300px) tranlateZ(0);
  -ms-transform: translateX(-300px) tranlateZ(0);
  transform: translateX(-300px) tranlateZ(0);
  -webkit-transform: translate3d(-300px, 0, 0);
  transform: translate3d(-300px, 0, 0);
}

.menu ul {
  margin: 0;
  padding: 0;
}

.menu ul li {
  position: relative;
  list-style: none;
  width: 60%;
  margin: 0 auto;
  padding: 20px 10px;
  text-align: left;
  border-top: 1px solid #333;
  box-shadow: 0 -1px 1px -1px #746559;
}

.menu ul li:first-child {
  margin-top: 20px;
  border: 0;
  box-shadow: none;
}

.menu ul li a {
  position: relative;
  font-weight: 340;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.7);
  color: white;
  text-decoration: none;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.menu ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #f38b00;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s cubic-bezier(0.32, 1.25, 0.375, 1.15);
  transition: all 0.3s cubic-bezier(0.32, 1.25, 0.375, 1.15);
}

.no-touch .menu ul li a:hover:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  visibility: visible;
}

.menu p {
  color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 86%;
  left: 20px;
  font-size: 0.875em;
  text-align: center;
}

.menu p a {
  color: rgba(243, 139, 0, 0.6);
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu p a:hover {
  color: #f38b00;
  text-decoration: underline;
}

.nav-toggle {
  position: fixed;
  top: 25px;
  right: 25px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transform: translateX(0) translateZ(0);
  transform: translateX(0) translateZ(0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.4s cubic-bezier(0.32, 1.25, 0.375, 1.15);
  transition: all 0.4s cubic-bezier(0.32, 1.25, 0.375, 1.15);
  z-index: 11;
}

.nav-toggle span {
  color: #4c4c4c;
  color: rgba(0, 0, 0, 0.7);
  padding: 5px;
  font-size: 1.875em;
}

.no-touch .nav-toggle span:hover { color: black; }

.nav-toggle span.fa-times { color: #fff; }

.nav-toggle span.fa-times:hover { color: #fff; }

.nav-toggle.show-nav {
  top: 12px;
  right: 12px;
}

#navBar {
display: none;
}

#mainContent {
	margin-bottom: 10px;
	border-radius: 10px;
	background-color: #E7E7E7;
}

.image_full{
   display:none;
  }

  .image_mobile{
   display:block;
  }
#sideBox1 {
	width: 100%;
	margin-left: 0;
	clear: both;
	border-radius: 10px;
	background-color: #E7E7E7;
	margin-bottom: 10px;
}
#mainContent h1 {
	color: #5F8D8E;
	padding-left: 20px;
	padding-top: 0px;
	font-size: 2em;
	font-weight: normal;
	padding-right: 20px;
	margin-top: 20px;
}
#sideBox2 {
	width: 100%;
	margin-left: 0;
	clear: both;
	margin-bottom: 10px;
	border-radius: 10px;
	background-color: #E7E7E7;
}
#option1 {
}
.zeroMargin_mobile {
margin-left: 0;
}
.hide_mobile {
display: none;
}
xx {
	font-size: 1.1em;
	margin-bottom: 20px;
	margin-left: 20px;
	margin-right: 20px;
	margin-top: 15px;
	display: block;
}
.websiteButton {
	display: block;
	height: 46px;
	width: 120px;
	background: #3d7a80;
	background: -webkit-linear-gradient(top, #3d7a80, #2f5f63);
	background: -moz-linear-gradient(top, #3d7a80, #2f5f63);
	background: -o-linear-gradient(top, #3d7a80, #2f5f63);
	background: -ms-linear-gradient(top, #3d7a80, #2f5f63);
	background: linear-gradient(top, #3d7a80, #2f5f63);
	border-radius: 5px;
	margin-left: 20px;
	margin-bottom: 23px;
	color: #FFFFFF;
	font-family: abel;
	font-style: normal;
	font-weight: 400;
	text-decoration: none;
	font-size: 1.2em;
	text-align: center;
	line-height: 46px;
}
a.websiteButton:hover {
	background: #34696f;
	background: -webkit-linear-gradient(top, #34696f, #2f5f63);
    background: -moz-linear-gradient(top, #34696f, #2f5f63);
    background: -o-linear-gradient(top, #34696f, #2f5f63);
    background: -ms-linear-gradient(top, #34696f, #2f5f63);
    background: linear-gradient(top, #34696f, #2f5f63);
	color: #FFFFFF;
}
a.websiteButton:visited {
	color: #FFFFFF;
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {

#site-wrapper {
display: none;
}
.gridContainer {
	width: 91.4836%;
	padding-left: 0.7581%;
	padding-right: 0.7581%;
	clear: none;
	float: none;
	margin-left: auto;
}
#header {
}
#aptBox {
	width: 49.1712%;
	clear: none;
	margin-left: 1.6574%;
}
#biographyBox {
width: 49.1712%;
}
#footer {
}
.gallery {
	width: 47.5%;
	float: left;
}
#artwork div:nth-child(odd) {
	margin-right: 5%;	
}
#footer p a {
	display:inline !important;
	line-height: inherit !important;
}
#footer p a:first-child:before {
	content: '\A';
	white-space: pre;
}
#sportspsychologyBox {
	width: 49.1712%;
	clear: both;
	margin-left: 0;
}
#header h1 {
	font-size: 2.9em;
	padding-top: 34px;
}
#navBar {
display: block;
}
#mainContent {
	width: 100%;
	margin-bottom: 10px;
	border-radius: 10px;
	background-color: #E7E7E7;
}
#mainContent img {
}
.image_full{
   display:block;
  }

 .image_mobile{
  display:none;
 }
 #sideBox1 {
	width: 49.1712%;
	clear: both;
	margin-left: 0;
	border-radius: 10px;
	background-color: #E7E7E7;
}
#mainContent h1 {
	padding-left: 30px;
	font-size: 2.4em;
	padding-right: 30px;
}
 #sideBox2 {
	width: 49.1712%;
	clear: none;
	margin-left: 1.6574%;
	border-radius: 10px;
	background-color: #E7E7E7;
}
 #option1 {
}
 .hide_tablet {
display: none;
}
 .zeroMargin_tablet {
margin-left: 0;
}
xx {
	margin-bottom: 30px;
	margin-left: 30px;
	margin-right: 30px;
	margin-top: 15px;
}
.websiteButton {
	margin-left: 30px;
	margin-bottom: 30px;
}

}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
	
#site-wrapper {
display: none;
}
.gridContainer {
	width: 89.0217%;
	max-width: 1232px;
	padding-left: 0.4891%;
	padding-right: 0.4891%;
	margin: auto;
	clear: none;
	float: none;
	margin-left: auto;
}
#header {
}
#aptBox {
	width: 32.6007%;
	clear: none;
	margin-left: 1.0989%;
}
#biographyBox {
width: 32.6007%;
}
#footer {
}
#footer p a:first-child:before {
	content: '';
	white-space: normal;
}
#sportspsychologyBox {
	width: 32.6007%;
	clear: none;
	margin-left: 1.0989%;
}
#navBar {
display: block;
}
#mainContent {
	width: 66.3003%;
	border-radius: 10px;
	margin-bottom: 10px;
}
#sideBox1 {
	width: 32.6007%;
	clear: none;
	margin-left: 1.0989%;
	background-color: #E7E7E7;
	border-radius: 10px;
	margin-bottom: 10px;
}
#sideBox2 {
	width: 32.6007%;
	clear: none;
	margin-left: 1.0989%;
	background-color: #E7E7E7;
	margin-bottom: 10px;
	border-radius: 10px;
}
#option1 {
}
.zeroMargin_desktop {
margin-left: 0;
}
.hide_desktop {
display: none;
}

}
