diff --git a/unl_theme/scripts/JS/actionNotice.js b/unl_theme/scripts/JS/actionNotice.js
index 832ca3acdb79783219da01c4a79df95da2839d78..5d272439521a151c8ed9a3b3082786048a75a6c7 100644
--- a/unl_theme/scripts/JS/actionNotice.js
+++ b/unl_theme/scripts/JS/actionNotice.js
@@ -1,3 +1,3 @@
 $(document).ready(function(){
-   $("a#loginLink").colorbox({width:"50%", inline:true, href:"#login"});
+   $("a#loginLink").colorbox({width:"55%", inline:true, href:"#login", height:"300px"});
 });
\ No newline at end of file
diff --git a/unl_theme/views/default/css.php b/unl_theme/views/default/css.php
index 8ed35d1aa22446c9e04c8c8fdad1b8aaef957a5c..b9309936b6c215fb8f4f9eb1fdd511e9e5fca5fe 100644
--- a/unl_theme/views/default/css.php
+++ b/unl_theme/views/default/css.php
@@ -36,7 +36,7 @@
      if (!isloggedin()) { //The styles for the information box to be displayed if a non-authenticated user has arrived.
 ?>
 	/* ***************************************
-    Action Notice Box displayed to help users either register or login
+    Action Notice Box and Login Colorbox displayed to help users either register or login
 	*************************************** */
 	#maincontent .wdn_notice {
 		background: url('<?php echo $vars['url']; ?>mod/unl_theme/views/default/images/wdn_notice_BG.png') repeat-x;
@@ -58,20 +58,21 @@
 		float:left;
 		padding-top:20px;
 	}
-	#maincontent .wdn_notice div.message .message_action {
+	#maincontent .wdn_notice div.message .message_action, #colorbox #login a.wdn_loginLink {
 		float:left;
 		margin-left:60px;
 		font-size:1.8em;
 		padding-top:33px;
+		text-decoration:none;
 	}
-	#maincontent .wdn_notice div.message .message_action span {
+	#maincontent .wdn_notice div.message .message_action span, #colorbox #login span {
 		background: url('<?php echo $vars['url']; ?>mod/unl_theme/views/default/images/wdn_notice_ActionBG.png') no-repeat;
 		width:167px;
 		height:45px;
 		display:inline;
 		padding:9px 50px 15px 25px;
 	}
-	#maincontent .wdn_notice div.message .message_action a span {
+	#maincontent .wdn_notice div.message .message_action a span, #colorbox #login a span {
 		color:white !important;
 	}
 	#maincontent .wdn_notice div.message .message_action a strong {
@@ -80,7 +81,14 @@
 	
 	/* End Action Notification Box*/
 	
-<?php } //end if not logge in ?>
+	/* Start Colorbox */
+	
+	#colorbox .sec_main {
+		border-left:3px solid #83b750;
+	}
+	
+	/* End colorbox */
+<?php } //end if not logged in ?>
 /*UNL Overrides*/
 #wdn_navigation_bar {display:none; visibility:hidden;}
 #titlegraphic, .nav_collapsed #titlegraphic  {margin-top:10px;margin-bottom:20px;}
diff --git a/unl_theme/views/default/page_elements/unl_nav.php b/unl_theme/views/default/page_elements/unl_nav.php
index e2ea73aea69d93167780375bc31511fb3365f0c3..23fadc8e35297f971443498808934f8bbc4cd07e 100644
--- a/unl_theme/views/default/page_elements/unl_nav.php
+++ b/unl_theme/views/default/page_elements/unl_nav.php
@@ -35,12 +35,14 @@
 <?php //This is the login details hidden with CSS and displayed in the colorbox.?>
 <div class="hidden">
 	<div id="login">
-		<div class="col left">
-			<a href="<?php echo $CONFIG->url ?>?loginwith=UNLlogin">Sign on with CAS</a>.
+		<div class="two_col left">
+			<h2 class="sec_main">Students, Faculty, Staff</h2>
+			<p>Use your my.UNL Single Sign-on account to begin.</p>
+			<a href="<?php echo $CONFIG->url ?>?loginwith=UNLlogin" class="wdn_loginLink"><span>UNL Login</span></a>
+			<p style="margin-top:85px"><a href="https://login.unl.edu/faq/account-resetpw.shtml" title="Find your my.UNL password">Lost your my.UNL password?</a></p>
 		</div>
-		<div class="col right">
-			<div id="login-box">
-				<h2>Huskers Worldwide</h2>
+		<div class="two_col right">
+				<h2  class="sec_main">Huskers Worldwide</h2>
 				<?php 
 					$form_body = "<p class=\"login-box\"><label>" . elgg_echo('username') . "<br />" . elgg_view('input/text', array('internalname' => 'username', 'class' => 'login-textarea')) . "</label><br />";
 					$form_body .= "<label>" . elgg_echo('password') . "<br />" . elgg_view('input/password', array('internalname' => 'password', 'class' => 'login-textarea')) . "</label><br />";
@@ -48,7 +50,6 @@
 					$form_body .= "<p><a href=\"". $vars['url'] ."account/register.php\">" . elgg_echo('register') . "</a> | <a href=\"". $vars['url'] ."account/forgotten_password.php\">" . elgg_echo('user:password:lost') . "</a></p>";
 					echo elgg_view('input/form', array('body' => $form_body, 'action' => "". $vars['url'] ."action/login"));
 				?>
-			</div>
 		</div>
 	</div>
 </div>