/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }	<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/

/* WARNING --- DO NOT ALTER THIS FILE*/
/* WARNING --- DO NOT ALTER THIS FILE*/
/* WARNING --- DO NOT ALTER THIS FILE*/


body.custom {
    background: #8db6b6 url('images/space-bgrnd.jpg') 50% 0 repeat;
}

.custom #container {
    margin-top: -.5em;
    margin-bottom: 2em;

}

.custom #page {
    background: black url('images/space-b  grnd.jpg') 50% 0 repeat;

}


.custom #page ul.menu{
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;

}

.custom #content_box {
background: #fff;
border: 0px solid #fff;

}

.custom #header {
margin: 1em 0 0 0;
border: 1px solid #fff;
border-bottom: 0px solid #fff;
}

.custom #menu {background: black;}

.custom #page ul.menu li.rss  a{
margin: 0 0 0 0;
border: 2px solid red; color: #ffffff;
}

/* BEGIN Moves the content of the main content area and left sidebar down a touch from the header. */
.custom #column_wrap{margin: 2em 0 0 0;}
/* END Moves the content of the main content area and left sidebar down a touch from the header. */

/* BEGIN Moves the right sidebar down a touch from the header. */
.custom #sidebars{margin: 2em 0 0 0;}
/* END Moves the right sidebar down a touch from the header. */


/* BEGIN aligns left column text widget as long as the image is hotlinked*/
.custom #column_wrap #sidebar_1 ul li a img {
border: 0px solid red;
margin: 0 0 0 2em;
}
/* END aligns left column text widget as long as the image is hotlinked*/


/* left column text widget */
.custom #column_wrap #sidebar_1 ul li {
border: 0px solid red;

}

.custom #multimedia_box {
    background-color: #ffffff;
}


/*BEGIN footer styles*/
.custom #footer{background-color: #ffffff;}
/*END*/

/*BEGIN style menu list item margins when menu becomes more than one row*/
.custom #page .menu-andrew-chaikin-container ul li{margin: 0 0 1px 0;}
.custom #page .menu-andrew-chaikin-container ul li ul li{margin: 0 0 0px 0;}
/*END*/

.powerpoint iframe{
	border: 5px solid #666666;
	width: 100%;margin: 0em 0 0 0;
	}


