/* reset */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/* base fonts */

body {
    font-size: 62.5%;
    font-family: 'Times New Roman', serif;
}

select, input, textarea, button {
	font: 99% 'Times New Roman', serif;
}

pre, code, kbd, samp, tt {
	font-family: monospace;
	line-height: 100%;
}

h1 {
	font-size: 1.6em;
}

h2 {
	font-size: 1.4em; 
}

h3 {
	font-size: 1.2em;
}

h1, h2, h3 {
	margin: 1em 0;
}

h1, h2, h3, h4, h5, h6, strong {
	font-weight: bold; 
}


/* base styling */

abbr, acronym {
	border-bottom: 1px dotted #000;
	cursor: help;
} 

em {
	font-style: italic;
}

blockquote, ul, ol, dl {
	margin: 1em;
}

ol, ul, dl {
	margin-left: 2em;
}

ol li {
	list-style: decimal outside;	
}

ul li {
	list-style: disc outside;
}

dl dd {
	margin-left: 1em;
}

th, td {
	border: 1px solid #000;
	padding: .5em;
}

th {
	font-weight: bold;
	text-align: center;
}

caption {
	margin-bottom: .5em;
	text-align: center;
}

p, fieldset, table {
	margin-bottom: 1em;
}

/* keep consistent line spacing with sub and sup */
sup, sub {
   vertical-align: baseline;
   position: relative;
   top: -0.4em;
}
sub { top: 0.4em; }


/* site styling */

#site {
    font-family: "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif;
    font-size: 1.6em;
    line-height: 1.4em;
    color: #433;
    max-width: 980px;
    margin: 0 auto;
    clear: both;
}

#content {
    float: left;
    width: 65%;
}

#sidebar {
    float: right;
    width: 30%;
}

#header {
    /*padding-left: 20px;*/
}

#footer {
    clear: both;
}

/* index splash */

#index_nav {
    width: 50%;
    position: absolute;
    top: 20%;
    left: 25%;
}

#index_nav ul li {
    display: block;
    padding-left: 20px;
}

#index_nav ul li a {

}

#index_nav ul li:hover {
    background: #abc;
    -webkit-border-radius:10px;
	-moz-border-radius:10px;
	border-radius:10px;
}

#index_nav ul li span.triangle-border {
    display: none;
}

#index_nav ul li:hover span.triangle-border {
    display: block;
    position: absolute;
    left: 50%;
}

.triangle-border {
	position:relative;
	padding:15px;
	margin:1em 0 3em;
	border:5px solid #abc;
	color:#333;
	background:#fff;
	/* css3 */
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	border-radius:10px;
}

.triangle-border.left {
    margin-top: -2.5em;
	margin-left:30px;
}

.triangle-border:before {
	content:"";
	position:absolute;
	bottom:-20px; /* value = - border-top-width - border-bottom-width */
	left:40px; /* controls horizontal position */
    border-width:20px 20px 0;
	border-style:solid;
    border-color:#abc transparent;
    /* reduce the damage in FF3.0 */
    display:block; 
    width:0;
}

/* creates the smaller  triangle */
.triangle-border:after {
	content:"";
	position:absolute;
	bottom:-13px; /* value = - border-top-width - border-bottom-width */
	left:47px; /* value = (:before left) + (:before border-left) - (:after border-left) */
	border-width:13px 13px 0;
	border-style:solid;
	border-color:#fff transparent;
    /* reduce the damage in FF3.0 */
    display:block; 
    width:0;
}

/* creates the larger triangle */
.triangle-border.left:before {
	top:10px; /* controls vertical position */
	bottom:auto;
	left:-30px; /* value = - border-left-width - border-right-width */
	border-width:15px 30px 15px 0;
	border-color:transparent #abc;
}

/* creates the smaller  triangle */
.triangle-border.left:after {
	top:16px; /* value = (:before top) + (:before border-top) - (:after border-top) */
	bottom:auto;
	left:-21px; /* value = - border-left-width - border-right-width */
	border-width:9px 21px 9px 0;
	border-color:transparent #fff;
}



/* blog styling */

#site.blog #header {
    padding-left: 20px;
}

#site.blog #content {
    padding-left: 20px;
}


#site.blog p {
    font-family: Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
}

#site.blog p.entry_nav {
    font-size: 0.8em;
    color: #888;
}

#site.blog #header a, #site.blog #footer a {
    text-decoration: none;
    color: #433;
}

#site.blog #header a:hover, #site.blog #footer a:hover {
    color: #933;
    text-shadow: 1px 1px 1px #abc;
}


#site.blog #footer {
    padding: 20px;
    background: #ededec;
    border-top: 2px solid #a05577;
}

#site.blog #footer h1 {
    font-size: 1em;
}

#site.blog #footer h2 {
    font-size: 0.8em;
    font-style: italic;
    margin-top: 0.4em;
}
































