﻿/********************************
 Created by		Olivia Tharp
 Last updated	Nov 2013 by Olivia Tharp
 Written for	http://www.uwsp.edu/rmgt/ 
 
 Copyright 2013 UWSP - Risk Management and Olivia Tharp
 This code may be edited and/or shared
 
 customStyles.css
 ********************************/
 
 
/********************************
 Web Part Header				
 
 Overrides the default CSS for web parts showing titles. These Chrome types include "Title Only" and "Title and Border"
 ********************************/
h3.ms-standardheader.ms-WPTitle 
{
    color: #3E0075;
    font-size: 1.4em;
}

/********************************
 Header Font

 ms-rteFontFace-7:	Font Face Impact 
 ms-rteFontSize-6:	Font Size 36pt 
 
 Overrides unpleasant default styles from the master styling sheet pertaining to using Impact font
 The Communication Standards Manual as of Nov 2013 requires Major heads and Titles to use Impact (p. 63)
 ********************************/
.ms-rteFontFace-7
{
	line-height: 110%;
}

P.ms-rteFontFace-7.ms-rteFontSize-6,
span.ms-rteFontFace-7.ms-rteFontSize-6
{
	margin: 20px 0 10px 0 !important;
}

/********************************
 Navigation
 
 Changes background color to nav links on hover
 Emphasizes "Emergency Procedures" nav link - nth-child must be changed if tabs change
 Reference Communication Standards Manual (Nov 2012) page 65-67 for allowed colors
 ********************************/

#siteNav li:hover
{
    background: #623f99 !important;
}

#heading6 > a:nth-child(2) > li:nth-child(1)
{
	background: #ffc222;
	color: #000000;
	font-weight: bold;
}

#sideNav .downarrow {background-image: url('/SiteAssets/images/v5/arrows/white-down-arrow.png');}
#sideNav .uparrow {background-image: url('/SiteAssets/images/v5/arrows/white-up-arrow.png');}
#sideNav ul li ul li a:hover {color: #FFF !important;background-color: #623f99;}
#sideNav ul.dfwp-list li:nth-child(6) ul li:nth-child(2) a {
	background-color: #ffc222; color: #000; font-weight: bold;
}


