/*
--------------------------------------
GLOBAL RESET
--------------------------------------
 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption, th, td {
    text-align: left;
    font-weight: 300;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: "";
}

blockquote, q {
    quotes: "" "";
}

strong { font-weight: 500; }

/*
--------------------------------------
GLOBAL TYPE SIZES
--------------------------------------
 */

/*
    Default browser types size is 16px (assuming the user has not customized their settings).
    Assuming this default, we set the body to a font size of 62.5%, which effectively
    resets our default type size to 10px. From here, we can think of font-size in terms of
    pixels, but set font-size in ems. For example, 1em = 10px, 0.9em = 9px, 1.2em = 12px.
*/

body { font-size: 62.5%; line-height: 1.5; } /* 10px */

h1, h2, h3, h4, h5, h6 {font-weight:normal;line-height:1;}
#content p  {font-size: 1.4em; font-weight: 300; margin-bottom: .5em; line-height: 1.3em}
#content li, dt, dd  {font-size: 1.3em; font-weight: 300;}
blockquote {font-size: 1.4em; font-weight: 300;margin-bottom: .5em; line-height: 1.3em}
h1 {font-size:3em;line-height:1;margin-bottom:0.5em;}
h2 {font-weight:100;font-size:2.5em;margin-bottom:0.7em;}
h3 {font-size:1.8em;font-weight: 500;margin-bottom:.3em;}
h4 {font-size:1.5em;font-weight: 500;margin-bottom:.3em;}
h5 {font-size:1.3em;margin-bottom:1.5em;}
h6 {font-size:1em;}

/*
--------------------------------------
basics
--------------------------------------
*/

body {
/*     background: #23abcd; */
    font-family: "Helvetica Neue", Helvetica, Geneva, Arial, sans-serif;
    color: #333;
    margin: 0px;
    padding:0px;
    border-top: 6px solid #f88426;
}
#inner-body-wrapper {
    border-top: 1px solid #B36526;
}
#inner-body {
    background: #fff;
/*     border-color: #71d4ec; 
    border-style: solid;
    border-width: 0px 1px 1px 1px; */
	padding: 10px 20px;
	width: 960px;
	margin:0 auto 20px;
}

/*
--------------------------------------------------
links
--------------------------------------------------
*/
a:link {
    color: #23abcd;
    text-decoration: none;
    cursor: pointer;
}
a:visited {
    color: #548f9d;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
a.more {
	background-color: #ebfaff;
	padding:.2em .6em;
	font-size:1.1em;
	font-weight: 500;
	clear:both;
}
a.resume-link {	font-weight: 500;}
.more-note {
	font-weight: 300;
	font-size: .9em;
}


/*
--------------------------------------
GLOBAL CLASSES
--------------------------------------
 */

/* Generic class for self-clearing */
.clear:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clear {
    min-height: 1%;
    _height: 1%; /* IE 6 hack. TODO move to conditional comments */
}

.hide {
    display: none !important;
}

/* used when we want an object to occupy space but not actually be shown */
.invisible {
    visibility: hidden !important;
}


/*
--------------------------------------
HEADER
--------------------------------------
 */
#header {
	position:relative;
	border-bottom: 1px solid #58C1E5;
}
 
#logo {
	margin:0;
	color: #000;
}
#logo img {
	float:left;
	margin-right:5px;
}
#logo h1 {
	font-size: 3em;
	margin-bottom: 0px;
	padding-top:20px;
	font-weight: 900;
}
#logo h5 {
	font-size: 2em;
	font-weight: 900;
	margin-bottom: 10px;
}

#nav {
	font-weight: 100;
	float:right;
	padding:0;
}
.nav-list {
	padding: 0px;	
	list-style: none;
}

.nav-link {
	float:left;	
	padding:  0;
}
.nav-link-first {
}
.nav-link-last {
	padding-right:0;
}
#nav a {
	color:#000;
	font-size: 1.8em;
	text-decoration: none;
	padding: 12px 20px;
	-webkit-border-bottom-left-radius: 7px;
	-moz-border-radius-bottomleft: 7px;
	border-bottom-left-radius: 7px;
	-webkit-border-bottom-right-radius: 7px;
	-moz-border-radius-bottomright: 7px;
	border-bottom-right-radius: 7px;
}
#nav a:hover {
	background-color: #fdffd6;
	margin: 0px;
}
#nav a.selected {
	background-position: 5px center;
	background-repeat: no-repeat;
	background-color: #f88426;
	border-left: 1px solid #B36526;
	border-bottom: 1px solid #B36526;
	border-right: 1px solid #B36526;
	color: #fff;
	text-shadow: #B36526 2px 2px 0px;
	padding: 14px 20px 10px;
	margin-top: -2px;	
}


/*
--------------------------------------
CONTENT
--------------------------------------
 */
#content {
	clear:both;
	margin-top: 20px;
	padding-bottom: 50px;
}

#content h1 {
	border-bottom: 1px solid #90e9ff;
	padding-bottom: .3em;
}
#content h2 {
	color: #f88426;
	margin-top: 1em;
}

h3 em {
	font-weight: 300;
}

#content ul {
	margin-left:20px;
	margin-bottom: 1.5em;
}

.contact {
	float:right;
	font-size:1.2em;
	margin-left: 30px;
	padding-left: .8em;
	border-left: 1px solid #90e9ff;
}
.contact .fn {
	font-weight: 500;
}


#content .vcalendar li {font-size: 1em;}
#content ul.vcalendar {
	list-style: none;
	margin-left: 0px;
	margin-bottom: 0px;
}
#content .vcalendar li.vevent li {
	font-size: 1.3em;
	list-style-type: disc;
}



/*
_________________________________
HOMEPAGE
_________________________________
*/


.side-bar {
	float:right;
	margin-left: 30px;
	padding: 0px 30px;
}

.home-footer {
	clear:both;
	margin-top: 60px;
	padding: 20px 0px;
}

.home-nav a{
	height:223px;
	width:223px;
	background-image: url(../images/illustrated-links.png);
	background-repeat: no-repeat;
	display: block;
	float:left;
	margin-right: 20px;
}
.home-nav .link-text {
	visibility: hidden;
	margin:auto;
	display: block;
	text-align: center;
	width: 165px;
	margin-top: 50px;
	font-size: 2em;
	font-weight: 500;
	color: #fff;
}

.home-nav a:hover{
	text-decoration: none;
}
.home-nav a:hover .link-text {
	visibility: visible;
}
.resume-link {
	background-position: 0 0;
}
.interaction-link {
	background-position: -350px 0px;
}
.illustration-link {
	background-position: -660px 0px;
}
.resume-link:hover {
	background-position: 0 -250px;
}
.interaction-link:hover {
	background-position: -350px -250px;
}
.illustration-link:hover {
	background-position: -660px -250px;
}

.home-footer .contact {
	background-color: #fdffd6;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	border-width: 0px;
	float:left;
	width: 223px;
	height: 223px;
	margin: 0px;
	padding: 0px;
	font-size: 1em;
}

.home-footer h2 {
	font-size: 2em;
	margin: 25px 10px 8px 15px;
}

.home-footer .contact dl {
	color:#666;
	margin: 0 50px 10px 15px;
}
.home-footer dt {
	font-weight: 500;
	margin: 8px 0px 0px;
}
.home-footer dd {
	line-height: 1em;
}

.home-footer .contact a {
	font-size: .85em;
}


/*
_________________________________
ACCORDION
_________________________________
*/

.accordion-header {
	padding: .7em;
	margin: 4px 0;
	border-bottom: 1px solid #dff3f8;
	clear:both;
}
.accordion-header a {
	text-decoration: none;
	color:#333;
	padding-left: 25px;
	display: block;
}
.accordion-header .summary {
	font-weight: 300;
	font-size:.8em;
	color: #666;
	display: block;
	line-height: 1em;
	margin-top: .3em;
}
.accordion-thumbs {
	float: right;
	margin-right: 30px;
/*	padding: 7px 9px;
	background-color: #f7fdff;
	border: 1px solid #dff3f8;
	margin-top: -5px;*/
}
.ui-state-hover {
	background-color: #fdffd6;
	border-bottom: 1px solid #ffd900;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}
.ui-state-active {
	background-color: #ebfaff;
	border-bottom: 1px solid #90e9ff;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
.accordion-content {
	padding: 1em 25px;
	border-top: 1px solid #c1d6db;
	border-bottom: 1px solid #c7eaf2;
	/*border-left: 1px solid #dff3f8;
	border-right: 1px solid #dff3f8;
	background-color: #f7fdff; */
	margin-top: -4px;
}
.accordion-content img {
	float:right;
	margin-left: 10px;
	margin-top: .5em;
}

 .ui-icon {
	position:absolute;
	height:16px;
	width:16px;
	background-image: url(../images/accordion-icons.png);
	background-repeat: no-repeat;
}

.collapsed {
	background-position: 0 0;
}
.ui-state-hover .collapsed {
	background-position: 0 -100px;
}

.ui-state-hover .collapsed:hover {
	background-position: 0 -200px;
}
.open {
	background-position: 0 -300px;
}
.ui-state-hover .open {
	background-position: 0 -400px;
}

.ui-state-hover .open:hover {
	background-position: 0 -500px;
}

img.thumb-med {
	padding: 2px 10px 10px 10px;

}
img.thumb-med:hover {
	border: 1px solid #ffd900;
	background: url(../images/yellow-gradient.png) #fff repeat-x bottom;
	padding: 1px 9px 9px 9px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;

}

/*content thumb stuff*/
#content ul.more-content {
	list-style: none;
	margin: 0px;
	padding: .5em;
	/*background-color: #f7fdff; */
}
.more-content li {
	float:left;
	margin-right: 10px;
	text-align: center;	
	padding: 4px 10px;
	border: 1px solid #fff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;

}
.more-content li:hover {
	border: 1px solid #ffd900;
	background: url(../images/yellow-gradient.png) #fff repeat-x bottom;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
img.thumb {
	float:none;
	margin: 0;
	border-bottom: 1px solid #c9c9c9;
	border-right: 1px solid #c9c9c9;
}
a .thumb-title {
	display:block;
	font-size: .85em;
}
