/*
Item Name : CSS3 Mega Drop Down Menu
Author URI : http://themeforest.net/user/Keliah
Item URI : http://codecanyon.net/item/css3-mega-drop-down-menu/126387
Version : 2.2
*/

/*

TABLE OF CONTENTS

01 MENU BAR
02 DROP DOWN MENU
03 CONTENT STYLINGS
04 CONTACT FORM
05 DARK DROP DOWN

*/



/*  _______________________________________

	01 MENU BAR
    _______________________________________  */

/* ~~this fixed width container surrounds the other divs~~ */
/* note that sidebar.width + content.width must = container.width */
.container { margin: 0px ; padding: 0px; width: 100vw;  z-index: -999;
 	min-height: 100vh;
 	border: 0px solid #cbcbcb; 
 	-moz-border-radius: 0px;
  	-webkit-border-radius:0px;
   	background:#ffffff; 
   }

.containersmall { margin: 5px ; padding: 5px; width:65%; height:2%; border: 0px solid #cbcbcb; -moz-border-radius: 10px; -webkit-border-radius:0px; background:#ffffff; }
/* .containersmall { margin: 10px ; padding: 15px; width:75%; height:3%; border: 0px solid #cbcbcb; -moz-border-radius: 10px; -webkit-border-radius:0px; background:#ffffff; }
*/
.content {
	padding: 10px 20px 10px 10px;
	width: 100%;
	float: none;		
}
.content h3 { 	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: bold;
	color: #59700d;
}
.containersmall p { 	
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	color: #59700d;
}
.error_message { display: block; height: 22px; line-height: 22px; background: #FBE3E4 url(../../wft/css/assets/error.gif) no-repeat 10px center; padding: 3px 10px 3px 35px; margin: 3px 0; color:#8a1f11;border: 1px solid #FBC2C4; -moz-border-radius: 5px; -webkit-border-radius:5px; }



.menu {
	list-style:none;
	width:75%;  /* this is the length of the green menu bar */
	margin:1px 0px 0px opx;  /* was 	margin:10px auto 0px auto; */
	height:30px;		/* was 30oc */
	padding:0px 10px 0px 10px

	/* CSS 3 Stylings */
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 2px;
	/* Colors */
	background: #3e5718;
	border: 1px solid #52711f;
	/*border-top: 1px solid #8bc135;
	/* CSS 3 Stylings */
	background: -moz-linear-gradient(top, #658c26, #354914);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#658c26), to(#354914));
}

::webkit-scrollbar{
	display:none;

}
.menu li {
	float:left;
	position:relative;
	padding: 2px 0px 2px 0px; /* rlb changed from 4 10 4 10*/
	margin-right:1%; /* rlb changed from 20 */
	margin-top:7px
	border:none;
	width:18%; /*rlb changed from 70 */


/*white-space:nowrap;/**/
}
.menu li:hover {
	z-index:2;
	background:#F4F4F4;
	border:1px solid #aaaaaa;
	border-bottom:none;
	padding: 4px 9px 4px 9px;
	
	/* CSS 3 Stylings */
	
	background: -moz-linear-gradient(top, #FfFfFf, #ffffff); /* rlb 06.27 was f4f4f4 eeeeee */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#Ffffff), to(#ffffff));
	
	-moz-border-radius: 5px 5px 0px 0px;
    -webkit-border-radius: 5px 5px 0px 0px;
    -khtml-border-radius: 5px 5px 0px 0px;
    border-radius: 1px 1px 0px 0px;	
	

}
.menu li a {	/* light gray */
	color:#161616; 	
	outline:0;
	text-decoration:none;
	text-shadow: 0px 0px 0px #161516;
	font-size:12px; /* 08.10.2022 added....note the default for css font-size is 16px */
	
}
.menu li:hover a { 	/* dark shade of gray */
	color:#161616;
	text-shadow: none;
}
.menu li:hover div a {  /* darker green for scholarship name */
	color:#52711f; 
}
.menu li:hover div a:hover { /* lighter green for scholarship name */
	color:#8bc135;
}
.menu li ul li a:hover {/* lighter green for scholarship name */
	color:#8bc135;
}

/* Right aligned menu item */

.menu .right {
	float:right;
	margin-right:0;
}



/*  _______________________________________

	02 DROP DOWN MENU
    _______________________________________  */



/* Left & right aligned common styles */

.menu .dropdown_1column, 
.menu .dropdown_2columns, 
.menu .dropdown_3columns, 
.menu .dropdown_4columns,
.menu .dropdown_5columns,
.menu #dropdown_fullwidth_first,
.menu #dropdown_fullwidth_item2,
.menu #dropdown_fullwidth_item3,
.menu #dropdown_fullwidth_item4,
.menu #dropdown_fullwidth_item5,
.menu #dropdown_fullwidth_item6,
.menu #dropdown_fullwidth_item_right {
	margin:4px auto;
	left:-999em;
	position:absolute;
	background:#fff; /* rlb was f4f4f4 06/27 */
	border:1px solid #aaaaaa;
	border-top:none;
	padding:10px;
	text-align:left;

	/* CSS 3 Stylings */

-moz-border-radius: 0px 5px 5px 5px;
    -webkit-border-radius: 0px 5px 5px 5px;
    -khtml-border-radius: 0px 5px 5px 5px;
    border-radius: 0px 0px 0px 0px;
	/* this one controls the drop down!!!! *U****** RLB 06/27....hoover*/
	background: -moz-linear-gradient(top, #ffffff, #f1f1f1); /* rlb was eeeeee bbbbb */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffffff), to(#f1f1f1));
				  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
overflow-y:auto;
overflow-x:auto;
	
	
}
.menu #dropdown_fullwidth_first,
.menu #dropdown_fullwidth_item2,
.menu #dropdown_fullwidth_item3,
.menu #dropdown_fullwidth_item4,
.menu #dropdown_fullwidth_item5,
.menu #dropdown_fullwidth_item6,
.menu #dropdown_fullwidth_item_right {
	width: 87vw; /* rlb changed from 920 - t25his is the width of the full drop down box  was 765 7.28*  695% for 08.10.2022/
	/* Rounded corners */
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 1px;
}

/* Drop Downs Sizes */

.menu .dropdown_1column {width: 145px;}
.menu .dropdown_2columns {width: 300px;}
.menu .dropdown_3columns {width: 455px;}
.menu .dropdown_4columns {width: 610px;}
.menu .dropdown_5columns {width: 770px;} /* rlb 6.28 was 765 */



/* Showing Drop Down on Mouse H0over - Left aligned */

.menu li:hover .dropdown_1column, 
.menu li:hover .dropdown_2columns, 
.menu li:hover .dropdown_3columns,
.menu li:hover .dropdown_4columns,
.menu li:hover .dropdown_5columns {
	left:-1px;
	top:25px;
}

.menu li:hover #dropdown_fullwidth_first {
	left:-1px;
	top:25px;
	/* Removing Top left rounded corner, use it for the left menu item */
	-moz-border-radius: 0px 5px 5px 5px;
    -webkit-border-radius: 0px 5px 5px 5px;
    -khtml-border-radius: 0px 5px 5px 5px;
    border-radius: 0px 0px 0px 0px;
}
/* determines left position of drop down */
.menu li:hover #dropdown_fullwidth_item2 {left:-17%; top:25px;}  /* rlb changed from 111 - About*/
.menu li:hover #dropdown_fullwidth_item3 {left:-116%; top:25px;}  /* rlb changed from 221 Payment Form*/
.menu li:hover #dropdown_fullwidth_item4 {left:-213%; top:25px;}  /* rlb changed from 331 Scholarships*/
.menu li:hover #dropdown_fullwidth_item5 {left:-310%; top:25px;}  /* rlb changed from 441 Contact Us*/
.menu li:hover #dropdown_fullwidth_item6 {left:-453%; }	/* {left:-551px; top:25px;} */  /* 652px */
.menu li:hover #dropdown_fullwidth_item_right {
	right:-1px;
	top:75%	;
	left:auto;
	/* Removing Top right rounded corner, use it fr the right aligned and last item */
	-moz-border-radius: 5px 0px 5px 5px;
    -webkit-border-radius: 5px 0px 5px 5px;
    -khtml-border-radius: 5px 0px 5px 5px;
    border-radius: 5px 0px 5px 5px;
}

/* Columns Sizes */

.menu .col_1,
.menu .col_2,
.menu .col_3,
.menu .col_4,
.menu .col_5,
.menu .col_6 {
	display:inline;
	float: left;
	position: relative;
	margin-left: 10px;
	margin-right:5
}
.menu .col_1 {width:500px;} /* rlb changed from 145 *//* changed from 260 to 250 on 8.10.2022 */
.menu .col_2 {width:500px;} /* rlb changed from 300 then 365 on 7/27*//* changed from 365 to 250 on 8.10.2022 */
.menu .col_3 {width:455px;}
.menu .col_4 {width:740px;} /* rlb changed from 610 */
.menu .col_5 {width:1250px;} /* 6.28 was 770  this is the word area...are where the text is displayed*/ /* was 740 on 8.10.2022 */
.menu .col_6 {width:920px;}

/* IMPORTANT */

/* Use the firstcolumn class for the items that stick to the left edge of the dropdown */
.menu .firstcolumn {
	margin-left: 0; /* Clearing margin & left */
	clear: left;
}

/********************* Notes  *******/
/* the col_2 about along with the greybox below impact the size and display of the greybox */

/*  _______________________________________

	03 CONTENT STYLINGS
    _______________________________________  */



.menu p,
.menu ul,
.menu li,
.menu h2,
.menu h3 {
	font-size:12px; 
	font-family:"Trebuchet MS",Arial, Helvetica, sans-serif;
	line-height:21px;
	text-align:left;color:#3e5718;
}
.menu p {
	line-height:18px;
	margin-bottom:10px;
	text-shadow: 1px 1px 1px #FFFFFF;

	
}
.menu .strong {
	font-weight:bold;
}
.menu .italic {
	font-style:italic;
}
.menu h2 {
	font-family:"Trebuchet MS",Arial, Helvetica, sans-serif;
	font-weight:400;
	letter-spacing:-1px;
	font-size:21px;
	line-height:21px;
	margin-top:7px;
	margin-bottom:14px;
	padding-bottom:14px;
	text-shadow: 1px 1px 1px #FFFFFF;
	border-bottom:1px solid #666666;
}

.menu h3 {
	font-family:"Trebuchet MS",Arial, Helvetica, sans-serif;
	font-weight:600;
	font-size:14px;
	line-height:21px;
	margin-top:7px;
	margin-bottom:14px;
	padding-bottom:7px;
	text-shadow: 1px 1px 1px #FFFFFF;
	border-bottom:1px solid #888888;
}
.menu .pusher { /* Use this pucher if you want to give more vertical spacing between your rows of content */
	margin-top:18px;
}

/* Icon paragraphs */

.menu .help,
.menu .favorite,
.menu .mail,
.menu .print {
	padding-left:36px;
	margin-bottom:18px;
}
.menu .help {background:url("../../wft/css/img/help.png") no-repeat 0px 2px;}
.menu .favorite {background:url("../../wft/css/img/favorite.png") no-repeat 0px 2px;}
.menu .mail {background:url("../../wft/css/img/mail.png") no-repeat 0px 2px;}
.menu .print {background:url("../../wft/css/img/print.png") no-repeat 0px 2px;}

/* Images styles */

.menu .imgshadow_dark{ /* Better style on dark background */
	background:#FFFFFF;
	padding:4px;
	border:1px solid ##59700d;
	margin-top:5px;
	-moz-box-shadow:0px 0px 5px #000000;
	-webkit-box-shadow:0px 0px 5px #000000;
	box-shadow:0px 0px 5px #000000;
}
.menu .imgshadow_light { /* Better style on light background */
	background:#FFFFFF;
	padding:4px;
	border:1px solid #777777;
	margin-top:5px;
	-moz-box-shadow:0px 0px 5px #666666;
	-webkit-box-shadow:0px 0px 5px #666666;
	box-shadow:0px 0px 5px #666666;
}
.menu .img_left { /* Image sticks to the left */
	width:auto;
	float:left;
	margin:2px 15px 5px 0px;
}
.menu .img_right { /* Image sticks to the right */
	width:auto;
	float:right;
	margin:2px 0px 5px 15px;
}

/* Box styles */

.menu li .black_box {
	background-color:#333333;
	color: #eeeeee;
	text-shadow: 1px 1px 1px #000;
	padding:4px 6px 4px 6px;

	/* CSS 3 Stylings */
	
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
	
	-webkit-box-shadow:inset 0 0 3px #000000;
	-moz-box-shadow:inset 0 0 3px #000000;
	box-shadow:inset 0 0 3px #000000;
}

.menu li .dark_grey_box {
	background-color:#555555;
	color: #eeeeee;
	text-shadow: 1px 1px 1px #000;
	padding:4px 6px 4px 6px;

	/* CSS 3 Stylings */
	
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
	
	-webkit-box-shadow:inset 0 0 3px #111111;
	-moz-box-shadow:inset 0 0 3px #111111;
	box-shadow:inset 0 0 3px #111111;
}

/* Standard lists styles */

.menu li ul {
	list-style:none;
	padding:0;
	margin:0 0 12px 0;
}
.menu li ul li {
	font-size:12px; /* 08.10.2022 changed from 12 to 24  - only impacts bottom line of greybox*/
	line-height:24px;
	position:relative;
	text-shadow: 1px 1px 1px #ffffff;
	padding:0;
	margin:0;
	float:left;
	text-align:left;
	width:145px;
}
.menu li ul li:hover {
	background:none;
	background: #F4F4F4\9;
	border:none;
	padding:0;
	margin:0;
}

.menu li .greybox li {
	background:#f4f4f4; /* f4f4f4 */
	border:1px solid #bbbbbb;
	margin:0px 10px 4px 10px;
	padding:4px 6px 4px 6px;
	width:275px;  /* rlb change from 131 *//* changed from 355 to 275 8.10.2022-impacts size of greybox */
 	/* CSS 3 Stylings */
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
}
.menu li .greybox li:hover {
	background:#ffffff; /* background color when you hover over a greybox */
	border:1px solid #aaaaaa;
	padding:4px 6px 4px 6px;
	margin:0px 0px 4px 0px;
}
/* Greybox lists styles */
.menu li .greyboxs li {
	background:#f4f4f4; /* f4f4f4 */
	border:1px solid #bbbbbb;
	margin:0px 2px 4px 2px;
	padding:4px 6px 4px 6px;
	width:275px;  /* rlb change from 131 *//* changed from 355 to 275 8.10.2022-impacts size of greybox */
 	/* CSS 3 Stylings */
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
}
.menu li .greyboxs li:hover {
	background:#ffffff; /* background color when you hover over a greybox */
	border:1px solid #aaaaaa;
	padding:4px 6px 4px 6px;
	margin:0px 0px 4px 0px;
}

/* Other lists styles */

.menu li .plus li {
	background: url("../../wft/css/img/plus.png") left 6px no-repeat;
	margin:0px 0px 4px 0px;
	padding:0px 0px 0px 21px;
	width:109px;
}
.menu li .plus li:hover {
	background: url("../../wft/css/img/plus.png") left 6px no-repeat;
	padding:0px 0px 0px 21px;
	margin:0px 0px 4px 0px;
}



/*  _______________________________________

	04 CONTACT FORM
    _______________________________________  */



.menu form {
	margin:0 0 12px 0;
	padding:0px;
}

/* Labels & fieldsets stylings */

.menu fieldset {
	margin:0;
	border:none;
}		
.menu form p {
	margin:10px 0;
	overflow:hidden;
	width:270px;
}

.menu label {
	float:left;
	display:block;
	text-align:left;
	width:50px;
}	
.menu input,
.menu textarea {	
	margin:0;	
	width:170px;
	float:right;
	color:#59700d;	/* was #eeeeee 08.24.22 *//
	background-color:#ffffff; /* was # 333333 */
	border:1px solid #59700d;
	padding:3px 5px 3px 5px;

	/* CSS 3 Stylings */
	
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    outline: none;
 }
	
}		
.menu textarea {
	height:100px;
	overflow:auto;
}					

/* Buttons stylings */

.menu button {
	float:right;
	width:80px;
	margin:0px;
	margin-right:30px;
	border:none;
	padding: 2px 7px 2px 7px;
	color:#eeeeee;	
	background-color:#333333;
	text-shadow: 1px 1px 1px #000;

	/* CSS 3 Stylings */
	
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
}

/* Messages when sending email */

.error, .sent {
	font-size:12px;
	line-height:18px;
	padding:5px;
	margin-bottom:10px;

	/* CSS 3 Stylings */
	
	-moz-border-radius: 5px; 
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.error {
	background:#f3afa6;
	border:#ef9588 solid 1px;
	color:#992213;
}
.sent {
	background:#bef08f;
	border:#adec71 solid 1px;
	color:#37620d;
}
/*****************************************************************/
/*																 */
/*  New Scholarship Menu 										 */
/*																 */
/*****************************************************************/

.menuscholarship {
	list-style:none;
	width:75%;  /* this is the length of the green menu bar */
	margin:1px 0px 0px opx;  /* was 	margin:10px auto 0px auto; */
	height:30px;		/* was 30oc */
	padding:0px 10px 0px 10px

	/* CSS 3 Stylings */
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 2px;
	/* Colors */
	background: #3e5718;
	border: 1px solid #52711f;
	/*border-top: 1px solid #8bc135;
	/* CSS 3 Stylings */
	background: -moz-linear-gradient(top, #658c26, #354914);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#658c26), to(#354914));
}

::webkit-scrollbar{
	display:none;
}
.menuscholarship li {
	float:left;
	position:relative;1
	padding: 2px 0px 2px 0px; /* rlb changed from 4 10 4 10*/
	margin-right:1%; /* rlb changed from 20 */
	margin-top:7px
	border:none;
	width:100%; /*rlb changed from 70 */
}
/*.menuscholarship li:hover {
	z-index:2;
	background:#F4F4F4;
	border:1px solid #aaaaaa;
	border-bottom:1px solid #aaaaaa;
	padding: 4px 9px 300px 100px;
	/* CSS 3 Stylings */
/*	background: -moz-linear-gradient(top, #FfFfFf, #ffffff); /* rlb 06.27 was f4f4f4 eeeeee */
/*	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#Ffffff), to(#ffffff));
	
	-moz-border-radius: 5px 5px 0px 0px;
    -webkit-border-radius: 5px 5px 0px 0px;
    -khtml-border-radius: 5px 5px 0px 0px;
    border-radius: 1px 1px 0px 0px;	
}
*/
.menuscholarship li a {	/* light gray */
	color:#52711f; 	
	outline:0;
	text-decoration:none;
	text-shadow: 0px 0px 0px #161516;
	font-size:12px; /* 08.10.2022 added....note the default for css font-size is 16px */
	
}
.menuscholarship li:hover a { 	/* dark shade of gray */
	color:#161616;
	text-shadow: none;
}
.menuscholarship li:hover div a {  /* darker green for scholarship name */
	color:#52711f; 
}
.menuscholarship li:hover div a:hover { /* lighter green for scholarship name */
	color:#8bc135;
}
.menuscholarship li ul li a:hover {/* lighter green for scholarship name */
	color:#8bc135;
}

/* Right aligned menu item */

.menuscholarship .right {
	float:right;
	margin-right:0;
}



/*  _______________________________________

	02 DROP DOWN MENU
    _______________________________________  */



/* Left & right aligned common styles */

.menuscholarship .dropdown_1column, 
.menuscholarship .dropdown_2columns, 
.menuscholarship .dropdown_3columns, 
.menuscholarship .dropdown_4columns,
.menuscholarship .dropdown_5columns,
.menuscholarship #dropdown_fullwidth_first,
.menuscholarship #dropdown_fullwidth_item2,
.menuscholarship #dropdown_fullwidth_item3,
.menuscholarship #dropdown_fullwidth_item4,
.menuscholarship #dropdown_fullwidth_item5,
.menuscholarship #dropdown_fullwidth_item6,
.menuscholarship #dropdown_fullwidth_item_right {
	margin:4px auto;
	left:-999em;
	position:absolute;
	background:#fff; /* rlb was f4f4f4 06/27 */
	border:1px solid #aaaaaa;
	border-top:none;
	padding:10px;
	text-align:left;

	/* CSS 3 Stylings */

-moz-border-radius: 0px 5px 5px 5px;
    -webkit-border-radius: 0px 5px 5px 5px;
    -khtml-border-radius: 0px 5px 5px 5px;
    border-radius: 0px 0px 0px 0px;
	/* this one controls the drop down!!!! *U****** RLB 06/27....hoover*/
	background: -moz-linear-gradient(top, #ffffff, #f1f1f1); /* rlb was eeeeee bbbbb */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffffff), to(#f1f1f1));
				  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
overflow-y:auto;
overflow-x:auto;
	
	
}
.menuscholarship #dropdown_fullwidth_first,
.menuscholarship #dropdown_fullwidth_item2,
.menuscholarship #dropdown_fullwidth_item3,
.menuscholarship #dropdown_fullwidth_item4,
.menuscholarship #dropdown_fullwidth_item5,
.menuscholarship #dropdown_fullwidth_item6,
.menuscholarship #dropdown_fullwidth_item_right {
	width: 87vw; /* rlb changed from 920 - t25his is the width of the full drop down box  was 765 7.28*  695% for 08.10.2022/
	/* Rounded corners */
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 1px;
}

/* Drop Downs Sizes */

.menuscholarship .dropdown_1column {width: 145px;}
.menuscholarship .dropdown_2columns {width: 300px;}
.menuscholarship .dropdown_3columns {width: 455px;}
.menuscholarship .dropdown_4columns {width: 610px;}
.menuscholarship .dropdown_5columns {width: 770px;} /* rlb 6.28 was 765 */



/* Showing Drop Down on Mouse H0over - Left aligned */

.menuscholarship li:hover .dropdown_1column, 
.menuscholarship li:hover .dropdown_2columns, 
.menuscholarship li:hover .dropdown_3columns,
.menuscholarship li:hover .dropdown_4columns,
.menuscholarship li:hover .dropdown_5columns {
	left:-1px;
	top:25px;
}

.menuscholarship li:hover #dropdown_fullwidth_first {
	left:-1px;
	top:25px;
	/* Removing Top left rounded corner, use it for the left menu item */
	-moz-border-radius: 0px 5px 5px 5px;
    -webkit-border-radius: 0px 5px 5px 5px;
    -khtml-border-radius: 0px 5px 5px 5px;
    border-radius: 0px 0px 0px 0px;
}
/* determines left position of drop down */
.menuscholarship li:hover #dropdown_fullwidth_item2 {left:-17%; top:25px;}  /* rlb changed from 111 - About*/
.menuscholarship li:hover #dropdown_fullwidth_item3 {left:-116%; top:25px;}  /* rlb changed from 221 Payment Form*/
.menuscholarship li:hover #dropdown_fullwidth_item4 {left:-213%; top:25px;}  /* rlb changed from 331 Scholarships*/
.menuscholarship li:hover #dropdown_fullwidth_item5 {left:-310%; top:25px;}  /* rlb changed from 441 Contact Us*/
.menuscholarship li:hover #dropdown_fullwidth_item6 {left:-453%; }	/* {left:-551px; top:25px;} */  /* 652px */
.menuscholarship li:hover #dropdown_fullwidth_item_right {
	right:-1px;
	top:75%	;
	left:auto;
	/* Removing Top right rounded corner, use it fr the right aligned and last item */
	-moz-border-radius: 5px 0px 5px 5px;
    -webkit-border-radius: 5px 0px 5px 5px;
    -khtml-border-radius: 5px 0px 5px 5px;
    border-radius: 5px 0px 5px 5px;
}

/* Columns Sizes */

.menuscholarship .col_1,
.menuscholarship .col_2,
.menuscholarship .col_3,
.menuscholarship .col_4,
.menuscholarship .col_5,
.menuscholarship .col_6 {
	display:inline;
	float: left;
	position: relative;
	margin-left: 10px;
	margin-right:5
}

.menuscholarship .col_6 {width:920px;}  /* 920*/

/* IMPORTANT */

/* Use the firstcolumn class for the items that stick to the left edge of the dropdown */
.menuscholarship .firstcolumn {
	margin-left: 0; /* Clearing margin & left */
	clear: left;
}

/********************* Notes  *******/
/* the col_2 about along with the greybox below impact the size and display of the greybox */

/*  _______________________________________

	03 CONTENT STYLINGS
    _______________________________________  */



.menuscholarship p,
.menuscholarship ul,
.menuscholarship li,
.menuscholarship h2,
.menuscholarship h3 {
	font-size:12px; 
	font-family:"Trebuchet MS",Arial, Helvetica, sans-serif;
	line-height:21px;
	text-align:left;color:#3e5718;
}
.menuscholarship p {
	line-height:18px;
	margin-bottom:10px;
	text-shadow: 1px 1px 1px #FFFFFF;

	
}
.menuscholarship .strong {
	font-weight:bold;
}


.menuscholarship .pusher { /* Use this pucher if you want to give more vertical spacing between your rows of content */
	margin-top:18px;
}


.menuscholarship .imgshadow_dark{ /* Better style on dark background */
	background:#FFFFFF;
	padding:4px;
	border:1px solid ##59700d;
	margin-top:5px;
	-moz-box-shadow:0px 0px 5px #000000;
	-webkit-box-shadow:0px 0px 5px #000000;
	box-shadow:0px 0px 5px #000000;
}
.menuscholarship .imgshadow_light { /* Better style on light background */
	background:#FFFFFF;
	padding:4px;
	border:1px solid #777777;
	margin-top:5px;
	-moz-box-shadow:0px 0px 5px #666666;
	-webkit-box-shadow:0px 0px 5px #666666;
	box-shadow:0px 0px 5px #666666;
}
.menuscholarship .img_left { /* Image sticks to the left */
	width:auto;
	float:left;
	margin:2px 15px 5px 0px;
}
.menuscholarship .img_right { /* Image sticks to the right */
	width:auto;
	float:right;
	margin:2px 0px 5px 15px;
}

/* Box styles */

.menuscholarship li .dark_grey_box {
	background-color:#555555;
	color: #eeeeee;
	text-shadow: 1px 1px 1px #000;
	padding:4px 6px 4px 6px;

	/* CSS 3 Stylings */
	
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
	
	-webkit-box-shadow:inset 0 0 3px #111111;
	-moz-box-shadow:inset 0 0 3px #111111;
	box-shadow:inset 0 0 3px #111111;
}

/* Standard lists styles */

.menuscholarship li ul {
	list-style:none;
	padding:0;
	margin:0 0 12px 0;
}
.menuscholarship li ul li {
	font-size:12px; /* 08.10.2022 changed from 12 to 24  - only impacts bottom line of greybox*/
	line-height:24px;
	position:relative;
	text-shadow: 1px 1px 1px #ffffff;
	padding:0;
	margin:0;
	float:left;
	text-align:left;
	width:145px;
}
.menuscholarship li ul li:hover {
	background:none;
	background: #F4F4F4\9;
	border:none;
	padding:0;
	margin:0;
}

.menuscholarship li .greybox li {
	background:#f4f4f4; /* f4f4f4 */
	border:1px solid #bbbbbb;
	margin:0px 10px 4px 10px;
	padding:4px 6px 4px 6px;
	width:275px;  /* rlb change from 131 *//* changed from 355 to 275 8.10.2022-impacts size of greybox */
 	/* CSS 3 Stylings */
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
}
.menuscholarship li .greybox li:hover {
	background:#ffffff; /* background color when you hover over a greybox */
	border:1px solid #aaaaaa;
	padding:4px 6px 4px 6px;
	margin:0px 0px 4px 0px;
}
/* Greybox lists styles */
.menuscholarship li .greyboxs li {
	background:#f4f4f4; /* f4f4f4 */
	border:1px solid #bbbbbb;
	margin:0px 2px 4px 2px;
	padding:4px 6px 4px 6px;
	width:275px;  /* rlb change from 131 *//* changed from 355 to 275 8.10.2022-impacts size of greybox */
 	/* CSS 3 Stylings */
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
}
.menuscholarship li .greyboxs li:hover {
	background:#ffffff; /* background color when you hover over a greybox */
	border:1px solid #aaaaaa;
	padding:4px 6px 4px 6px;
	margin:0px 0px 4px 0px;
}



/*  _______________________________________

	04 CONTACT FORM
    _______________________________________  */



.menuscholarship form {
	margin:0 0 12px 0;
	padding:0px;
}

/* Labels & fieldsets stylings */

	
.menuscholarship form p {
	margin:10px 0;
	overflow:hidden;
	width:270px;
}

.menuscholarship label {
	float:left;
	display:block;
	text-align:left;
	width:50px;
}	
.menuscholarship input,
.menuscholarship textarea {	
	margin:0;	
	width:170px;
	float:right;
	color:#59700d;	/* was #eeeeee 08.24.22 *//
	background-color:#ffffff; /* was # 333333 */
	border:1px solid #59700d;
	padding:3px 5px 3px 5px;

	/* CSS 3 Stylings */
	
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    outline: none;
 }
	
}		
.menuscholarship textarea {
	height:100px;
	overflow:auto;
}					

.hide {
  display: none;
}
.myDIV:hover + .hide {
  display: block;
  color: red;
}
