/**************************************
 * THEME NAME: scem-theme
 *
 * Files included in this sheet:
 *
 *   scem-theme/gradients.css
 *   scem-theme/header.css
 *   scem-theme/tooltip.css
 *   scem-theme/global.css
 **************************************/

/***** scem-theme/gradients.css start *****/

/**
  *  Adds all the nice finish to the standard theme
  *
  */

th.header,
td.header,
h1.header,
h2.header,
h3.header,
div.header {     
    background-image:url(gradient.jpg);     
    background-position:top;    
    background-repeat:repeat-x;     
}

.navbar {
    background-image:url(gradient.jpg);     
    background-position:top;    
    background-repeat:repeat-x;     
}
/***** scem-theme/gradients.css end *****/

/***** scem-theme/header.css start *****/

/**
 * Make sure the header isn't visible, but still there in case Google comes by.
 */
h1.headermain {
	display: none;
}
/***** scem-theme/header.css end *****/

/***** scem-theme/tooltip.css start *****/

/***** scem-theme/tooltip.css end *****/

/***** scem-theme/global.css start *****/

/**
 * Global CSS file, for definitions that don't belong to one specific component
 * of the site.
 *
 * @author Berry Langerak
 */
body {
	background-color: #fff;
}

/**
 * Hide the Moodle button on the frontpage.
 */
div.sitelink > a > img {
	display: none;
}

/**
 * All links that haven't yet been visited, should be red, so as to maintain
 * the "feeling" of SCEM.
 */
a.link, a.link:hover, a:link, a:hover {
	color: #F00028;
}

/**
 * Use a slightly different colour to differentiate between visited and
 * non-visited links.
 */
a.link:visited, a:visited {
	color: #FF3300;
}

/**
 * Change the global font, so that it becomes more readable.
 */
body, table, td, th, li {
	font-family: Verdana, sans-serif;
	line-height: 20px;
}

td.right > a > img {
}

/**
 * Remove the -moz-border-radius, as it seems to clutter the simplicity of the
 * current layout.
 */
.coursebox, .sideblock, .content {
	-moz-border-radius: 0px;
}


/**
 * Make sure the content of each book is on the left, instead of the default
 * value, right.
 */
div.book_content {
	text-align: left;
}

/**
 * Mark all FAQ links as invisible: we've got our own helpfunctions.
 */
tr.tocandchapter div.faq {
	display: none;
}

/**
 * Make sure that words that have a definition stand out from the other words.
 */
span.definition {
	border-bottom: 1px dotted red;
}

/**
 * The Table of Contents for books isn't very readable by default. Use some
 * spacing to make it better.
 */
div.book_toc_bullets > ul > li > strong {
	margin-bottom: 10px;
}

/**
 * The Table of Contents for books isn't very readable by default. Use some
 * spacing to make it better.
 */
div.book_toc_bullets > ul > li > ul > li {
	margin-bottom: 10px;
}

/**
 * Also make sure the contents of the book can not be printed or exported, or,
 * at least not visible. It only adds clutter.
 */
div.bookexport {
	display: none;
}

/**
 * Justifying the text to fill out the page makes it easier to read it, and by
 * adding spacing, it becomes even easier.
 */
div.book_content {
	text-align: justify;
	line-height: 20px;
}

/**
 * Don't justify inside lists and list items. That should make it easier to read,
 * which is important with this much information.
 */
div.book_content ul > li,
div.book_content ol > li {
	text-align: left;
}

/**
 * Somehow, attempting a quiz results in a weird position of the logo. It seems
 * two class override the text-align. That's okay, but not in the headers.
 * Fixing that.
 */
#mod-quiz-attempt #page #header {
	text-align: left;
}
/***** scem-theme/global.css end *****/

