/******************************************************************
Site Name: Mentor Training Event Toolkit for Mobile Use (MOBILE FIRST!)

Description: Developed for the Alberta Mentoring Partnership Hosting a Mentor Forum Event Toolkit.
Author: Corey Dodge
Author URI: http://www.cdodge.ca
Version: 1.0

------------------------------------------------------------------
******************************************************************/

/**********************
Containers & Wraps
**********************/

.article-wrap{

	width:100%;
	margin: 0 auto;
	
	position:relative;
	display:block;

	background-color:white;	

}

#container{
	width: 100%;
	background-color:white;


}

.wrap {
	width:100%;
	margin: 0 auto;
	
	position:relative;
	display:block;

}
.header-wrap{
	min-height:inherit;
}


#full-wrap {
	width:95%;
	
	
	min-height:100%;
	margin: 0 auto;
	background:white;
	-webkit-border-radius: 10px 0px 0px 0px;
	border-radius: 10px 0px 0px 0px;

	padding:0px 1% 0px 1%;
}

/**********************
Navigation
**********************/

/*DO NOT show mainnavigation anymore in Mobile Mode */
.showing-main-nav{
	display:none;
}
.back-to-menu:after{
	content: "\2261";
}


/*START OF THE FULL MENU STYLING */
.full-horizontal-container{ /*contains all of the colour menu peices below  */
	display:block;
	text-align:center;	
	font-size:1.0em;
	z-index:;
	position:inherit;
}
.full-horizontal-container a:link, .full-horizontal-container a:visited{
	color:#ffffff;
	}
.full-horizontal-container a:hover{

color:#000000;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;

}

	/*FULL MENU HORIZONTAL COLOURING */
		.full-horizontal-green{
			background:RGB(98,175,80);
			padding:10px;
			}
			.full-horizontal-green:hover{
				opacity:0.5;
			}
		.full-horizontal-blue{
			background:RGB(11,116,178);
			padding:10px;
			}
			.full-horizontal-blue:hover{
				opacity:0.5;
			}	
		.full-horizontal-orange{
			background:RGB(232,137,56);
			padding:10px;
			}
			.full-horizontal-orange:hover{
				opacity:0.5;
			}	
		.full-horizontal-red{
			background:RGB(199,61,39);
			padding:10px;
			}
			.full-horizontal-red:hover{
				opacity:0.5;
			}	
			
/*START OF THE FULL MENU STYLING FOR FOOTER */
.full-horizontal-container-footer{ /*contains all of the colour menu peices below  */
	display:block;
	text-align:center;	
	font-size:1.0em;
	z-index:;
	position:inherit;
}
.full-horizontal-container-footer a:link, .full-horizontal-container-footer a:visited{
	color:#ffffff;
	}
.full-horizontal-container-footer a:hover{

color:#000000;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;

}	

/*********************
TITLES & FONTS & LINKS
*********************/
.sitetitle-h1 a:link, .sitetitle-h1 a:visited{
	font-family: 'Permanent Marker', cursive;
	
	font-size:100%;
	text-align:center;
	
	
	color:RGB(11,116,178);
	position:inherit;
	
	
}
.sitetitle-h1{
	text-align:center;
}
.sitetitle-h1 a:hover{

color:RGB(98,179,80);

-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
z-index:auto;
}


h1, h2, h3, h4, h5{
	font-family: 'Permanent Marker', cursive;
	color:#222;
}
	h1, .h1 {
		font-size: 1.5em;
		line-height: 1.333em;
	}
	
	h2, .h2 {
		font-size: 1.25em;
		line-height: 1.4em;
		margin-bottom: 0.375em;
	}
	
	h3, .h3 {
		font-size: 1.0em;
	}
	
	h4, .h4 {
		font-size: 0.9em;
		font-weight: 700;
	}
	
	h5, .h5 {
		font-size: 0.6em;
		line-height: 2.09em;
		text-transform: uppercase;
		letter-spacing: 2px;
	}
	



a:link, a:visited{
	font-family: 'Permanent Marker', cursive;
	color:RGB(11,116,178);	
	font-weight: bold;
	text-decoration: none;
}

a:hover{

color:RGB(98,179,80);
text-decoration: none;

-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-ms-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;

}

/*
ICONS sets for different links - PDF New Window - Excel etc
*/

/*  ._blank NEW WINDOW */
	a[target="_blank"] { /*All links that open in a new window will include this icon */
	
	display:inline-block;
	
	line-height:30px; /* check your icon height */
	background:url("../img/linkicons/newwindow.png")  center right no-repeat;
	padding-right:20px;
	
	}
/* ._blank NEW WINDOW Not on Images! */	
	.amplogo a[target="_blank"]{ /*Get rid of icon image for images */
	background:none;
	}
/* .PDF */
	a[href$='.pdf'] {
	
	display:inline-block;
	
	line-height:20px; /* check your icon height */
	
	padding-right:30px;
	
	background: transparent url("../img/linkicons/pdficon.png")  center right no-repeat;
	
	} 
/* .xlsx Excel File */	
	a[href$='.xlsx'] {
	
	display:inline-block;
	
	line-height:20px; /* check your icon height */
	
	padding-right:30px;
	
	background: transparent url("../img/linkicons/excelicon.png")  center right no-repeat;
	
	} 
/*  POWER POINT .pptx */
	a[href$='.pptx'] { /*All links that open in a new window will include this icon */
	
	display:inline-block;
	
	line-height:30px; /* check your icon height */
	background:url("../img/linkicons/powerpoint.png")  center right no-repeat;
	padding-right:35px;
	
	}

/**********************
HEADER Stuff
**********************/


.amplogo{ /*no need to display amp logo in mobiel view */
	
	display:none;
}




/**********************
FOOTER Stuff
**********************/

.back-to-top{
	width:100%;
	height:25px;
	background:black;
	color:white;
	text-align:center;
	margin:10px 0px 20px 0px;

}

.footer{
	margin-top:20px;
	padding-top:5px;
	padding-bottom:10px;
	border-top:1px solid black;
	text-align:center;
	

}

/*********************
IMAGES
*********************/

a img {
	border: 0;
	text-decoration: none;
}

img{
	
}

.box-quote{

background: RGB(98,179,80);
-webkit-border-radius: 10px;
border-radius: 10px;

-webkit-box-shadow: 2px 2px 10px 0px #000000;
box-shadow: 2px 2px 10px 0px #000000;

float: right; 
margin: 10px;
padding:10px 10px 10px 10px;

font-size: smaller;
width:95%

transition:width 1s;
-moz-transition:width 1s; /* Firefox 4 */
-webkit-transition:width 1s; /* Safari and Chrome */
-o-transition:width 1s; /* Opera */


}
.box-quote:hover{

	-webkit-box-shadow:inset 2px 2px 5px 0px #000000;
	box-shadow: inset 2px 2px 5px 0px #000000;
}


/*******Left Side of Menu Rainbow********/
.nav-left{
height:300px;
width:63px;
background-image: url("../img/left-menu.png");
background-repeat: no-repeat; 
display:block;	
float:left;	
position:relative;
top:0px;
left:-11px;
margin: 0 auto;

-webkit-border-radius: 10px 0px 0px 10px;
border-radius: 10px 0px 0px 10px;

}


/*******Step1********/
.nav-step1{
height:36px;
width:113px;
background-image: url("../img/step1-icon.png");
background-repeat: no-repeat; 
display:block;	
float:left;	
position:relative;
right:40px;
top:264px;	


}
.nav-step1:hover{
			background-image: url("../img/step1-icon.png");
			background-repeat: no-repeat; 
			opacity:0.5;
			-webkit-transition: all 0.5s ease;
			-moz-transition: all 0.5s ease;
			-ms-transition: all 0.5s ease;
			-o-transition: all 0.5s ease;
			transition: all 0.5s ease;				
			
}





/*******Step2********/
.nav-step2{
height:36px;
width:131px;
background-image: url("../img/step2-icon.png");
background-repeat: no-repeat; 
display:block;
float:left;	
position:relative;
right:45px;
top:264px;
		
}
.nav-step2:hover{
			background-image: url("../img/step2-icon.png");
			background-repeat: no-repeat; 
			opacity:0.5;
			-webkit-transition: all 0.5s ease;
			-moz-transition: all 0.5s ease;
			-ms-transition: all 0.5s ease;
			-o-transition: all 0.5s ease;
			transition: all 0.5s ease;	
}


/*******Step3********/
.nav-step3{
height:36px;
width:131px;
background-image: url("../img/step3-icon.png");
background-repeat: no-repeat; 
display:block;
float:left;	
position:relative;
right:56px;	
top:264px;		
}
.nav-step3:hover{
			background-image: url("../img/step3-icon.png");
			background-repeat: no-repeat; 
			opacity:0.5;
			-webkit-transition: all 0.5s ease;
			-moz-transition: all 0.5s ease;
			-ms-transition: all 0.5s ease;
			-o-transition: all 0.5s ease;
			transition: all 0.5s ease;	
}


/*******Step4********/
.nav-step4{
height:36px;
width:131px;
background-image: url("../img/step4-icon.png");
background-repeat: no-repeat; 
display:block;
float:left;	
position:relative;
right:67px;	
top:264px;		
}
.nav-step4:hover{
			background-image: url("../img/step4-icon.png");
			background-repeat: no-repeat; 
			opacity:0.5;
			-webkit-transition: all 0.5s ease;
			-moz-transition: all 0.5s ease;
			-ms-transition: all 0.5s ease;
			-o-transition: all 0.5s ease;
			transition: all 0.5s ease;	
}


/*******Step5********/
.nav-step5{
height:36px;
width:131px;
background-image: url("../img/step5-icon.png");
background-repeat: no-repeat; 
display:block;
float:left;	
position:relative;
right:77px;	
top:264px;
z-index:5;			
}
.nav-step5:hover{
			background-image: url("../img/step5-icon.png");
			background-repeat: no-repeat; 
			opacity:0.5;
			-webkit-transition: all 0.5s ease;
			-moz-transition: all 0.5s ease;
			-ms-transition: all 0.5s ease;
			-o-transition: all 0.5s ease;
			transition: all 0.5s ease;	
}


/*******Step6********/
.nav-step6{
height:36px;
width:131px;
background-image: url("../img/step6-icon.png");
background-repeat: no-repeat; 
display:block;
float:left;	
position:relative;
right:82px;	
top:264px;	
z-index:6;		
}
.nav-step6:hover{
			background-image: url("../img/step6-icon.png");
			background-repeat: no-repeat; 
			opacity:0.5;
			-webkit-transition: all 0.5s ease;
			-moz-transition: all 0.5s ease;
			-ms-transition: all 0.5s ease;
			-o-transition: all 0.5s ease;
			transition: all 0.5s ease;	
}


/*******Step7********/
.nav-step7{
height:36px;
width:131px;
background-image: url("../img/step7-icon.png");
background-repeat: no-repeat; 
display:block;
float:left;	
position:relative;
right:94px;	
top:264px;	
z-index:7;	

}
.nav-step7:hover{
			background-image: url("../img/step7-icon.png");
			background-repeat: no-repeat; 
			opacity:0.5;
			-webkit-transition: all 0.5s ease;
			-moz-transition: all 0.5s ease;
			-ms-transition: all 0.5s ease;
			-o-transition: all 0.5s ease;
			transition: all 0.5s ease;	
}


/*******Resources********/
.nav-resources{
height:36px;
width:131px;
background-image: url("../img/resources-icon.png");
background-repeat: no-repeat; 
display:block;
float:left;	
position:relative;
left:794px;
top:228px;
z-index:8;		
}
.nav-resources:hover{
			background-image: url("../img/resources-icon.png");
			background-repeat: no-repeat; 
			opacity:0.5;
			-webkit-transition: all 0.5s ease;
			-moz-transition: all 0.5s ease;
			-ms-transition: all 0.5s ease;
			-o-transition: all 0.5s ease;
			transition: all 0.5s ease;	
}


/*STEPS LINK AREAS*/

		.nav-links{
			font-size:0.70em;
		}

		/*LINKING COLOURS - The colours of each navigational menu*/
		
		.green-nav a:link, .green-nav a:visited{
		
			font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
			color:RGB(98,179,80);
			font-weight: bold;
		}

		.blue-nav a:link, .blue-nav a:visited{
		
			font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
			color:RGB(11,116,178);
			font-weight: bold;
		}
	
		.orange-nav a:link, .orange-nav a:visited{
		
			font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
			color:RGB(232,137,56);
			font-weight: bold;
		}
	
		.red-nav a:link, .red-nav a:visited{
		
			font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
			color:RGB(199,61,39);
			font-weight: bold;
		}
		
				.green-nav a:hover, .blue-nav a:hover, .orange-nav a:hover, .red-nav a:hover{
					opacity: 0.5;
					
					
				}
				
	

/*Step 1 Links*/
.step1{


	background-repeat: no-repeat; 
	color:RGB(98,179,80);
	font-weight: bold;

	width:230px;
	height:135px;
	
	
	
	position:absolute;
	top:130px;
	left:45px;
	padding-left:10px;

}


/*Step 2 Links*/
.step2{

	background-repeat: no-repeat; 
	color:RGB(11,116,178);
	font-weight: bold;

	width:230px;
	height:135px;
	position:absolute;
	top:292px;
	left:165px;
	padding-left:10px;
	padding-top:30px;
	
}
/*Step 3 Links*/
.step3{

	background-repeat: no-repeat; 
	color:RGB(232,137,56);
	font-weight: bold;

	width:230px;
	height:135px;
	position:absolute;
	top:130px;
	left:285px;
	padding-left:10px;

	
}
/*Step 4 Links*/
.step4{

	background-repeat: no-repeat; 
	color:RGB(199,61,39);
	font-weight: bold;

	width:230px;
	height:135px;
	position:absolute;
	top:292px;
	left:400px;
	padding-left:10px;
	padding-top:30px;
	
}
/*Step 5 Links*/
.step5{

	background-repeat: no-repeat; 
	color:RGB(98,179,80);
	font-weight: bold;

	width:230px;
	height:135px;
	position:absolute;
	top:130px;
	left:525px;
	padding-left:10px;
	
}
/*Step 6 Links*/
.step6{

	background-repeat: no-repeat; 
	color:RGB(11,116,178);
	font-weight: bold;

	width:230px;
	height:135px;
	position:absolute;
	top:292px;
	left:652px;
	padding-left:10px;
	padding-top:30px;
	
}
/*Step 7 Links*/
.step7{

	background-repeat: no-repeat; 
	color:RGB(232,137,56);
	font-weight: bold;

	width:230px;
	height:135px;
	position:absolute;
	top:130px;
	left:770px;
	padding-left:10px;
	
}
/*Resources Links*/
.resources{

	background-repeat: no-repeat; 
	color:RGB(199,61,39);
	font-weight: bold;

	width:230px;
	height:135px;
	position:absolute;
	top:292px;
	left:880px;
	padding-left:10px;
	padding-top:30px;
	
}


/* ==========================================================================
   IMAGE stylings
   ========================================================================== */
   
/* ==========================================================================
   DOWNLOADS BOX (on bottom of page)
========================================================================== */
   
   /*This floats and positions all thumbails in the downloads section*/
   
   /* Colours for download boxes */	
.greendownload{
	background-color:RGB(98,179,80);
}
.orangedownload{
	background-color:RGB(232,137,56);
}
.bluedownload{
	background-color:RGB(11,116,178);
}
.reddownload{
	background-color:RGB(199,61,39);
}
   
/* Title ex: "Step 1 Downloads" */
.downloadstitle{	
	padding-bottom:40px;
	font-family: 'Permanent Marker', cursive;
	font-size:1.5em;
	color:#000000;
}
   
.floatleftthumbnail{
	float:left;
	margin:10px;
	width:113px;
	text-align:center;
}

/* Thumbnails for downloads */

.step8downloadsbox{

	display:block;			
	padding:10px;
	z-index:99999;
	overflow: hidden; /* To make sure everything fits */	
}


.downloadsbox{
	display:block;		
	padding:10px;
	min-height:100px;
	margin:10px 0px 10px 0px;
	overflow: hidden; /* To make sure everything fits */


}
.thumbnailone{
  height:auto;
  width:auto;   
}


.thumbnailcontainer{
  position:relative;
  
  margin:10px;

  height:150px;
  width:113px;
     -webkit-border-radius: 10px;
        border-radius: 10px;   
        -webkit-box-shadow: 2px 2px 10px 0px #000000;
        box-shadow: 2px 2px 10px 0px #000000; 

}
.thumbnailcontainer img{
   position:absolute;
   top:0px;
  left:0;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
    
    height:150px;
	width:113px;
     -webkit-border-radius: 10px;
        border-radius: 10px; 
}

.thumbnailcontainer img.thumbnailone:hover {
  opacity:0;
    
    height:150px;
	width:113px;
     -webkit-border-radius: 10px;
        border-radius: 10px; 
}
/*Show the second image for desktop use */
.thumbnailtwo{
  display:block;

}

/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html,
button,
input,
select,
textarea {
    color: #333;

}
} 
body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1em;
    line-height: 1.5; /*this is for best readability - line height to 150% */
    color:blue;

   
}


/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between images and the bottom of their containers: h5bp.com/i/440
 */

img {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */

.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}



/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 100%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   Theses examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
       only screen and (min-resolution: 144dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow:none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
