﻿
/*Increases size during mouse-over*/
.grow { transition: all .2s ease-in-out; }
.grow:hover { transform: scale(1.2);  }


/*Slide Caption*/
.SlideCaption {
	background-color:transparent;
	font-family: 'Segoe UI Light', 'Segoe UI','Helvetica Neue', 'Lucida Grande', Arial, Helvetica, Verdana, sans-serif;
	font-size:28px;
	font-weight:300;

	color:#3A4F63;

	padding:20px 0px 20px 0px;
}
/*Slide Description*/
.SlideDesc {
	background-color:transparent;
	font-family:  'Segoe UI Light','Segoe UI','Helvetica Neue', 'Lucida Grande', Arial, Helvetica, Verdana, sans-serif;
	font-size:18px;
	font-weight:300;
	text-align:left;

	color:#3A4F63;
}


/*Buttons for add del and mod*/
.ActionButton {

    color:#3A4F63;
    /*transform: scale(1.5,1.5);*/
    position: relative;
    /*width: 15px;
    height: 15px;*/
    border: 1px solid transparent;

    transition: transform .3s ease-in-out;
    float:left;


}
.ActionButton:hover, .ActionButton:focus {
    color:indianred; 
    transform: scale(2,2);
    transition: transform .3s ease-in-out;
     cursor:pointer; 

}
.ActionButton:active {
    color:red;
    /*transform: scale(1.5,1.5);*/
     transition: transform .3s ease-in-out;


}

/*This will center anything of unknown width and height - create a div with this class and surround what you want to be centered*/
.CenterPosition {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
/*This will center anything of unknown width and height (but uses position: relative; - create a div with this class and surround what you want to be centered*/
.CenterPositionRelative {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
/*Buttons with routating circle*/
.wrap {
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    padding: 0;
    resize: both;
}
.wrapLarge {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    padding: 0;
    resize: both;
}
.clicker {
    background-color: white;
    outline:none;
    font-weight: 600;
    position: absolute;
    cursor: pointer;
    padding: 0;
    border: none;
    height: 32px;
    width: 32px;
    left: 4px;
    top: 4px;
    border-radius: 50px;
    z-index: 2;  
    text-decoration:none;
}
.clickerLarge {
    background-color: white;
    outline: none;
    font-weight: 600;
    position: absolute;
    cursor: pointer;
    padding: 0;
    border: none;
    height: 64px;
    width: 64px;
    left: 8px;
    top: 8px;
    border-radius: 100px;
    z-index: 2;

    text-decoration:none;

}
    .clickerLarge:focus{
        outline:none;
    }    .clicker:active {
        transform: translate(0, 1px);
        height: 32px;
        box-shadow: 0 2px 0 0 rgb(190,190,190) inset; /*rgb(190,190,190) inset;*/

    }


/* This gets rid of firefox's dotted line around a focused button */
input::-moz-focus-inner { 
  border: 0; 
}




.circle {
    outline:none; 
    position: relative;
    border-radius: 20px;
    width: 40px;
    height: 40px;
    z-index: 1;
}
.circleLarge {
    position: relative;
    border-radius: 40px;
    width: 80px;
    height: 80px;
    z-index: 1;
}

/*.clicker:hover + .circle, .clicker:active + .circle {
    animation: rotator linear .8s infinite;
    background-image: linear-gradient(0deg, 
        white 0%, 
        lightgray 30%, 
        darkseagreen 30%, 
        darkseagreen 70%,
        lightgray 70%, 
        white 100%);

}*/

@keyframes rotator {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.angled {
        background-image:none;
    /*background-image: linear-gradient(0deg, 
        white 0%, 
        white 30%, 
        gray 30%, 
        gray 70%,
        white 70%, 
        white 100%);*/


}
.green + .circle, .red + .circle, .blue + .circle {
    background-image: linear-gradient(0deg, 
        white 0%, 
        lightgray 50%, 
        white 100%);


}

.green:hover +.circle, .green:active +.circle{
    animation: rotator linear .8s infinite;
    background-image: linear-gradient(0deg, 
        white 0%, 
        lightgray 30%, 
        darkseagreen 30%, 
        darkseagreen 70%,
        lightgray 70%, 
        white 100%);
        /*white 0%, 
        lightgray 30%, 
        rgba(51, 153, 102, 0.27) 60%, 
        rgba(51, 153, 102, 0.57) 70%,
        lightgray 90%, 
        white 100%);*/


}
.red:hover +.circle, .red:active +.circle{
    animation: rotator linear .8s infinite;
    background-image: linear-gradient(0deg, 

        white 0%, 
        lightgray 30%, 
        #ff3300 40%, 
        #ff3300  70%,
        lightgray 80%, 
        white 100%);

}
.blue:hover +.circle, .blue:active +.circle{
    animation: rotator linear .8s infinite;
    background-image: linear-gradient(0deg, 
            white 0%, 
        lightgray 30%, 
        rgba(51, 102, 153, 0.66) 50%,
        rgba(51, 102, 153, 0.86) 70%,
        lightgray 90%, 
        white 100%);
        /*white 0%, 
        lightgray 30%, 
        rgba(51, 102, 153, 0.66) 30%, 
        rgba(51, 102, 153, 0.66) 70%, 
        lightgray 70%, 
        white 100%);*/        
    
}
.blue:hover +.circleLarge, .blue:active +.circleLarge{
    animation: rotator linear .8s infinite;
    background-image: linear-gradient(0deg, 
        white 0%, 
        lightgray 30%, 
        rgba(51, 102, 153, 0.66) 50%,
        rgba(51, 102, 153, 0.86) 70%,
        lightgray 90%, 
        white 100%);

}
/*End Buttons*/

/*Start of page fadein fadeout*/
.fadeIn {
        opacity:0;
        -webkit-animation:fadeIn ease-in 1;
        -moz-animation:fadeIn ease-in 1;
        -o-animation:fadeIn ease-in 1;
        animation:fadeIn ease-in 1;
        -webkit-animation-fill-mode:forwards;
        -moz-animation-fill-mode:forwards;
        -o-animation-fill-mode:forwards;
        animation-fill-mode:forwards;
}

/* Animation Times - Time for image to fade in
---------------------------------------------------- */
.fadeIn-1_3s {
        -webkit-animation-duration:1s;
        -moz-animation-duration:1s;
        -o-animation-duration:1s;
        animation-duration:1s;
}

.fadeIn-1_5s {
        -webkit-animation-duration:1s;
        -moz-animation-duration:1s;
        -o-animation-duration:1s;
        animation-duration:1s;
}

/* Animation Delay - Time for image to be delayed
---------------------------------------------------- */
.fadeIn-Delay-0s {
        -webkit-animation-delay:0s;
        -moz-animation-delay:0s;
        -o-animation-delay:0s;
        animation-delay:0s;
}
.fadeIn-Delay-1s {
        -webkit-animation-delay:1s;
        -moz-animation-delay:1s;
        -o-animation-delay:1s;
        animation-delay:1s;
}
.fadeIn-Delay-2s {
        -webkit-animation-delay:2s;
        -moz-animation-delay:2s;
        -o-animation-delay:2s;
        animation-delay:2s;
}


/* Key Frames
---------------------------------------------------- */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-o-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }


/*End of page fadein fadeout*/

/* DEFAULTS
----------------------------------------------------------*/

/*This gets rid of the white border lines between cells in all tables*/
/*.NoBorderTable table {
    border-collapse:collapse;
}
.NoBorderTable td {
    padding:0;
    border:none;
}*/

/*Start For Rotating buttons/////////////////////*/
.RotateAction {
  border-radius: 10%;
  -webkit-transition: -webkit-transform .7s ease-in-out;
  transition: transform .7s ease-in-out;
}
.RotateAction:hover {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
/*End/////////////////////*/

.TableBorders table, .TableBorders th, .TableBorders td {
    border: 1px dotted red;
	/*border-style:dotted;*/
}

/*h1 is used for the tall thin font from google*/
h1{ 
	font-family: 'Segoe UI Light', 'Segoe UI',  'Lucida Grande', 'Helvetica Neue','Arial', 'Helvetica', 'Verdana', 'sans-serif';
	font-weight:300; 
	font-size:28px;
	text-align:left;
}
h2{ /*just like h1 but centering*/ 
	font-family: 'Segoe UI Light', 'Segoe UI',  'Lucida Grande', 'Helvetica Neue','Arial', 'Helvetica', 'Verdana', 'sans-serif';
	font-weight: 300; 
	font-size: 28px;
	text-align:center;

    /*position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);*/
}

/**********************************************************************************************/

      .GridViewStyling th {
            background-color: White;
			color:gray;
            font-size: 12px;
			text-decoration:none;
        }

    .GridViewStyling td {
                background-color: White;
                font-size: 12px;
            }

    .GridViewStyling tr {
                background-color: White;
                font-size: 12px;
            }

/**********************************************************************************************/
a.conferences:link
	{

	float: right; text-align: center;
	color:Gray; 
	text-decoration:none;
	background-color: white;

	
	}

a.conferences:visited
	{
	float: right; height: 345px; text-align: center;
	color:Gray; 
	text-decoration:none;
	background-color: white;

	}
		
a.conferences:hover
	{
	color:lightcoral;/*#d10000 */      /*black;*/
	background-color: white;
	}


/*Advertisement*/
a.advertisement:link
	{


	float: left; 
	/*width: 180px;*/ 
	height: auto; 
	/*padding: 10px 10px 10px 10px;*/ 
	/*margin: 15px 7px 0px 15px;*/ 
	border: 4px #7E8D99 solid; 
	background-color:#3A4F63; 


	/*text*/
	color: lightgray; 
	text-align: center; 
	font-size: medium; 
	text-decoration: none; 
	font-weight: normal;

	
	}

a.advertisement:visited
	{
	float: left; 
	/*width: 180px;*/ 
	height: auto; 
	/*padding: 10px 10px 10px 10px;*/ 
	/*margin: 15px 7px 0px 15px;*/ 
	border: 4px #7E8D99 solid; 
	background-color:#3A4F63;



	color: lightgray; 
	text-align: center; 
	font-size: medium; 
	text-decoration: none; 
	font-weight: normal;
	}
		
a.advertisement:hover
	{
	color: white;
	/*background-color: #7E8D99;*/
	}

/*---------------------------------------------------------------------------*/
/*FOR SKYPE*/
.skype_pnh_container {display:none !important;}
.skype_pnh_print_container, span[class^="skype_pnh_print_container"] {display:inline !important;} 


/*This is for Hypertext that is on a light background*/
a.DarkHyperLink:link
	{
	color:#0000FF;
	}

a.DarkHyperLink:visited
	{
	color:#0000FF; /*#800080 ;*/
	}
a.DarkHyperLink:hover
	{
    color: red;
	}
a.DarkHyperLink:active
	{
    color: #FF0000;
	}
/*This is for Hypertext that is on a dark background*/
a.WhiteHyperLink:link
	{
	color: white;
	text-decoration:none;
	}

a.WhiteHyperLink:visited
	{
	color: white;
	}
a.WhiteHyperLink:hover
	{
	color:white;
	text-decoration:underline;
	/*font-weight:bold;*/
	}

.modalBackground
{
	background-color: Gray;
	filter: alpha(opacity=50);
	opacity: 0.5;
}

.modalPopup
{
	background-color: #ffffff;
	padding: 3px;
	width: 200px;
	height: auto;
}

/*.OverridedsHelp {
width:200px;
}*/


/***********************************************************************************************************************************************************************************/
.SlideSelector {
cursor:pointer; 
}
.SlideSelector:hover {
 cursor:pointer; 
}

/***********************************************************************************************************************************************************************************/
.DateTimeText {
}
.DateTimeText:hover {
color:skyblue;
 cursor:pointer; 
}
/***********************************************************************************************************************************************************************************/
.FieldSetLegendExpand {
font-family: Arial; font-weight: bold; color: #3A4F63; font-variant: normal; font-size: 17px; 
height: 12px; /*line-height: 12px;*/
}
.FieldSetLegendExpand:hover {
color:skyblue;
 cursor:pointer; 
}
/***********************************************************************************************************************************************************************************/
.HorizontalDivExpand {
font-family: Arial; font-weight: bold; color: white; font-variant: normal; font-size: 13px; /*height:50px; line-height:50px;*/  background-color:#3A4F63;
height:30px; line-height:30px; /*with one line of text will vertically align*/
margin-bottom:15px;


}
.HorizontalDivExpand:hover {
color:skyblue;
 cursor:pointer; 
}
/***********************************************************************************************************************************************************************************/

.FieldSet
{
	font-family: "Arial";
	font-variant: normal;
	font-weight: bold;
	width: auto;
	font-size: medium;
}

.duno
{
	float: left;
	display: block;
	width: 7em;
	margin-right: 2em;
}

.Watermark
{
	/*color: #b6b7bc;*/
	color:lightslategray;
}





.textbody
{
	margin-right: 15px;
}

body
{
	background: #b6b7bc;
	font-size: .80em;
	/*font-family:*/ 
	font-family:  "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
	/*font-family: msr300,HelveticaNeue,Helvetica,Arial,sans-serif;*/
	margin: 0px;
	padding: 0px;
	color: #696969;
}

a:link, a:visited
{
	color:red;
	/*color: #FFFFFF;*/
	/*font-size:medium;*/
}

a:hover
{
	color: #1d60ff;
}

a:active
{
	color: #034af3;
}

p
{
	margin-bottom: 10px;
	line-height: 1.6em;
}


/* HEADINGS   
----------------------------------------------------------*/



h3, h4, h5, h6
{
	font-size: 1.5em;
	color: #666666;
	font-variant: small-caps;
	text-transform: none;
	font-weight: 200;
	margin-bottom: 0px;
}

/*h1
{
	font-size: 1.6em;
	padding-bottom: 0px;
	margin-bottom: 0px;
	height: 64px;
}*/

/*h2
{
	font-family: "Segoe UI Light", "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
	font-variant:normal;
	font-size: 1.7em;
	font-weight:bold;

}*/

h3
{
	font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
	font-variant:normal;
	font-size: 1.2em;
	font-weight:bold;
}

h4
{
	font-size: 1.1em;
}

h5, h6
{
	font-size: 1em;
}

/* this rule styles <h1> and <h2> tags that are the 
first child of the left and right table columns */
/*.rightColumn > h1, .rightColumn > h2, .leftColumn > h1, .leftColumn > h2
{
	margin-top: 0px;
}*/


/* PRIMARY LAYOUT ELEMENTS   
----------------------------------------------------------*/

.page
{
	width: 960px;
	background-color: White;
	margin: 0px auto 0px auto;
}

.header
{
	position: relative;
	margin: 0px;
	padding: 0px;
	background: #3A4F63;
	width: 100%;
	top: 0px;
	left: 0px;
	height: 63px;
}

	/*.header h1
	{
		border-style: none;
		border-color: inherit;
		border-width: medium;
		font-weight: 700;
		margin: 0px;
		padding: 0px 0px 0px 20px;
		color: #f9f9f9;
		line-height: 2em;
		font-size: 2em;
		height: 62px;
		width: 169px;
	}*/

.main
{
	clear: both;
	float: left;
	margin: 12px 8px 8px 0px;
	min-height: 500px;
	width: 937px;
}

.leftCol
{
	padding: 6px 0px;
	margin: 12px 8px 8px 8px;
	width: 200px;
	min-height: 200px;
}

.footer
{
	color: #4e5766;
	padding: 8px 0px 0px 0px;
	margin: 0px auto;
	text-align: center;
	line-height: normal;
}

/* Fix for extra space above menu in Chrome and Safari */
img[alt='Skip Navigation Links']
{
	display: none;
}
/* TAB MENU   
----------------------------------------------------------*/

.hideSkiplink
{
	background-color: #3a4f63;
	width: 53%;
}

div.menu
{
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}

	div.menu ul
	{
		list-style: none;
		margin: 0px;
		width: auto;
	}

		div.menu ul li a, div.menu ul li a:visited
		{
			background-color: #465c71;
			border: 1px #4e667d solid;
			color: #dde4ec;
			display: block;
			line-height: 1.35em;
			padding: 4px 15px;
			text-decoration: none;
			white-space: nowrap;
		}

			div.menu ul li a:hover
			{
				background-color: #bfcbd6;
				color: #465c71;
				text-decoration: none;
			}

			div.menu ul li a:active
			{
				background-color: #465c71;
				color: #cfdbe6;
				text-decoration: none;
			}

/* FORM ELEMENTS   
----------------------------------------------------------*/

fieldset
{
	padding: 3em;
	border: 1px solid #ccc;
	width: 320px;
	margin-left: 0px;
	margin-top: 1em;
	margin-bottom: 1em;
}

	fieldset p
	{
		margin: 2px 12px 10px 10px;
	}

	.login label, .register label, .changePassword label
	{
		display: block;
	}

	fieldset .inline
	{
		display: inline;
	}

legend
{
	font-size: medium;
	font-weight: 600;
	padding: 2px 4px 8px 4px;
}

.textEntry
{
	width: 100%;
	font-size:medium;
	padding: 7px;
	border: 1px solid #ccc;
}

.passwordEntry
{
	width: 100%;
	font-size:medium;
	padding: 7px;
	border: 1px solid #ccc;
}

.accountInfo
{
	width: 380px;
}

/* MISC  
----------------------------------------------------------*/

.clear
{
	clear: both;
}

.title
{
	display: block;
	float: left;
	text-align: left;
	width: auto;
}

.loginDisplay
{
	font-size: 1.1em;
	display: block;
	padding: 10px;
	color: White;
}

	.loginDisplay a:link
	{
		color: white;
	}

	.loginDisplay a:visited
	{
		color: white;
	}

	.loginDisplay a:hover
	{
		color: white;
	}

.failureNotification
{
	font-size: 1.2em;
	color: Red;
	margin-right: 0px;
}

.bold
{
	font-weight: bold;
}

.submitButton
{
	text-align: right;
	padding-right: 10px;
}
