body {
    margin: 0 auto;
    padding: 0;
}

div#header-wrapper {
    position: relative;
    width: 100%;
    height: 93px;
    margin: 0 auto;
    
    /*BEGIN Background Gradient*/
	background: rgb(29,64,100); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(29,64,100,1) 0%, rgba(3,20,38,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(29,64,100,1)), color-stop(100%,rgba(3,20,38,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(29,64,100,1) 0%,rgba(3,20,38,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(29,64,100,1) 0%,rgba(3,20,38,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(29,64,100,1) 0%,rgba(3,20,38,1) 100%); /* IE10+ */
	background: linear-gradient(top,  rgba(29,64,100,1) 0%,rgba(3,20,38,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1d4064', endColorstr='#031426',GradientType=0 ); /* IE6-9 */
	/*END Background Gradient*/
}

div#header-content {
    width: 960px;
    height: 100%;
}

div#header-logo {
    position: relative;
    float: left;
    z-index: 4;
}

div#header-text-block {
    position: relative;
}

div#header-text-block h1 {
    border: none;
    margin: 0;
    padding: 10px 0 0;
    color: white;
    text-shadow: black 2px 2px 5px;
    font-family: cambria normal;
    font-size: 45px;
}

div#header-text-block p {
    color: a8b4c2;
    text-shadow: black 1px 1px 5px;
    font-style: italic;
    font-size: 12px;
}

div#nav-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 35px;
    
    /*BEGIN Background Gradient*/
	background: #c9c6b8; /* Old browsers */
	background: -moz-linear-gradient(top,  #c9c6b8 0%, #ede9d9 40%, #ede9d9 60%, #c9c6b8 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c9c6b8), color-stop(40%,#ede9d9), color-stop(60%,#ede9d9), color-stop(100%,#c9c6b8)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #c9c6b8 0%,#ede9d9 40%,#ede9d9 60%,#c9c6b8 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #c9c6b8 0%,#ede9d9 40%,#ede9d9 60%,#c9c6b8 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #c9c6b8 0%,#ede9d9 40%,#ede9d9 60%,#c9c6b8 100%); /* IE10+ */
	background: linear-gradient(top,  #c9c6b8 0%,#ede9d9 40%,#ede9d9 60%,#c9c6b8 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c9c6b8', endColorstr='#c9c6b8',GradientType=0 ); /* IE6-9 */
	/*END Background Gradient*/
}

div#nav-content {
	position: relative;
    width: 960px;
    height: 100%;
    
}

div#nav-content ul{
	height: 100%;
	margin: 0;
}

div#nav-content ul li {
	background: url(images/nav-line.gif) no-repeat right;
    position: relative;
    list-style-type: none;
    display: inline-block;
    z-index: 5;
    padding: 5px 0;
}

div#nav-content ul li a {
	color: #333;
	display: block;
	font-family: Georgia,Times,serif;
	font-size: 13px;
	text-decoration: none;
	padding: 0 9px;
}

div#nav-content ul li a:hover {
	color: #D80E0E;
}

div#nav-left {
    position: absolute;
    left: 115px;
    height: 100%;
}

div#nav-right {
    float: right;
    position: relative;
    height: 100%;
    /*BEGIN Background Gradient*/
    background: #C8C5B7;
	background: -moz-linear-gradient(top,rgba(200, 197, 183, 1) 0%,rgba(222, 218, 203, 1) 40%,rgba(222, 218, 203, 1) 60%,rgba(200, 197, 183, 1) 100%);
	background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(200, 197, 183, 1)),color-stop(40%,rgba(222, 218, 203, 1)),color-stop(60%,rgba(222, 218, 203, 1)),color-stop(100%,rgba(200, 197, 183, 1)));
	background: -webkit-linear-gradient(top,rgba(200, 197, 183, 1) 0%,rgba(222, 218, 203, 1) 40%,rgba(222, 218, 203, 1) 60%,rgba(200, 197, 183, 1) 100%);
	background: -o-linear-gradient(top,rgba(200, 197, 183, 1) 0%,rgba(222, 218, 203, 1) 40%,rgba(222, 218, 203, 1) 60%,rgba(200, 197, 183, 1) 100%);
	background: -ms-linear-gradient(top,rgba(200, 197, 183, 1) 0%,rgba(222, 218, 203, 1) 40%,rgba(222, 218, 203, 1) 60%,rgba(200, 197, 183, 1) 100%);
	background: linear-gradient(top,rgba(200, 197, 183, 1) 0%,rgba(222, 218, 203, 1) 40%,rgba(222, 218, 203, 1) 60%,rgba(200, 197, 183, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c8c5b7',endColorstr='#c8c5b7',GradientType=0);
    /*END Background Gradient*/
    
;
    left: -3px;
}


div#p-logo {
	display:none;
}

div#mw-head {
    top: 128px;
    left: 0;
    min-width: 723px;
}

div.vectorTabs {
    height: 1.5em;
    position: relative;
    margin: 10px 0;
}

div.vectorTabs, div.vectorTabs ul, div.vectorTabs span, div.vectorTabs ul li a {
    background-image: none;
    padding: 2px 4px;
}

div.vectorTabs ul li {
    background: white;
    position: relative;
    border: solid 1px #b1d6e8;
    border-width: 1px 1px 0;
    -moz-border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    margin: 0 4px;
}

div.vectorTabs ul li:hover {
    top: -6px;
    height: 30px;
}

div.vectorTabs ul li.selected:hover {
    top: 0;
    height: 1.52em;
}

div.vectorTabs ul li.selected {
    -moz-box-shadow: 0 0 0 1px #FFF;
    -webkit-box-shadow: 0 0 0 1px #FFF;
    box-shadow: 0 0 0 1px #FFF;
}

div.vectorTabs ul li.selected:before, div.vectorTabs ul li.selected:after {
    border: 1px solid #b1d6e8;
    position: absolute;
    bottom: 0;
    width: 5px;
    height: 5px;
    content: " ";
}

div.vectorTabs ul li.selected:before {
    left: -6px;
    border-width: 0 1px 1px 0;
    box-shadow: 2px 2px 0 #FFF;
    -moz-border-radius: 0 0 5px 0;
    -webkit-border-radius: 0 0 5px 0;
    border-radius: 0 0 5px 0;
}

div.vectorTabs ul li.selected:after {
    right: -6px;
    border-width: 0 0 1px 1px;
    box-shadow: -2px 2px 0 #FFF;
    -moz-border-radius: 0 0 0 5px;
    -webkit-border-radius: 0 0 0 5px;
    border-radius: 0 0 0 5px;
}

div#footer-wrapper {
    width: 100%;
    margin: 10px auto 0;
    padding: 40px 0;
    /*padding: 25px 0; */
    height: 300px;
    
    /*BEGIN Background Gradient*/
	background: bottom right no-repeat, rgb(107,135,159); /* Old browsers */
	background: bottom right no-repeat, -moz-linear-gradient(top,  rgba(107,135,159,1) 0%, rgba(71,83,105,1) 100%); /* FF3.6+ */
	background: bottom right no-repeat, -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(107,135,159,1)), color-stop(100%,rgba(71,83,105,1))); /* Chrome,Safari4+ */
	background: bottom right no-repeat, -webkit-linear-gradient(top,  rgba(107,135,159,1) 0%,rgba(71,83,105,1) 100%); /* Chrome10+,Safari5.1+ */
	background: bottom right no-repeat, -o-linear-gradient(top,  rgba(107,135,159,1) 0%,rgba(71,83,105,1) 100%); /* Opera 11.10+ */
	background: bottom right no-repeat, -ms-linear-gradient(top,  rgba(107,135,159,1) 0%,rgba(71,83,105,1) 100%); /* IE10+ */
	background: bottom right no-repeat, linear-gradient(top,  rgba(107,135,159,1) 0%,rgba(71,83,105,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b879f', endColorstr='#475369',GradientType=0 ); /* IE6-9 */
	/*END Background Gradient*/
}

div#footer {
	width: 960px;
	height: 100%;
	background-image: url(http://bastiat.mises.org/wp-content/uploads/2012/05/bf_mises.png);
	background-position: bottom right;
	background-repeat: no-repeat;
	position: relative;
}

div#footer #footer-icons {
	position: absolute;
	top: 10px;
	right: 0;
}

div#footer-contact:before {
    height: 80px;
    width: 60px;
    background: url(http://images.mises.org/Theme/images/bf_shield.png) no-repeat;
    display: inline-block;
    float: left;
    content: "";
}

div#footer-contact {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
}

div#footer-contact h1 {
    background: url(http://images.mises.org/Theme/images/bf_lvmi.png) no-repeat;
    border: none;
    margin: 0 0 5px;
}

div#footer-contact p {
    color: white;
    display: inline;
    font-family: 'Trebuchet MS', Arial, sans-serif;
    font-size: 12px;
    line-height: 15px;
    text-align: left;
}

div#footer-contact p a {
    color: white;
    display: inline;
    font-family: 'Trebuchet MS', Arial, sans-serif;
    font-size: 12px;
    line-height: 15px;
    text-align: left;
}
