@charset "utf-8";
/* CSS Document */

/*		This rudimentary style sheet is for the default template.
		You don't have to use it if you have your own branded styles.

		* Just note that left menu buttons are styled ul/li elements, and these 
		  SHOULD be defined in your style sheets.
*/


#k-publisher-header, #k-publisher-breadcrumbs, #k-publisher-wrapper, #k-publisher-footer {
	max-width:960px;
	margin-left: auto;
	margin-right: auto;
}

#k-publisher-header, #k-publisher-breadcrumbs, #k-publisher-footer {
	padding: 12px 12px 12px 12px;
}

#k-publisher-breadcrumbs {
   font-size: 0.875em;
   list-style-type: none;
   margin: 0;
   padding: 0;
}

#k-publisher-breadcrumbs > li > span.k-publisher-selected-breadcrumb {
 
}

#k-publisher-breadcrumbs > li {
   display: inline;
   margin: 0;
   padding: 0;
   line-height: 10px;   /* Should not be dimensionless so that the increased size of the >> mark doesn't add vertical space. */
}

#k-publisher-breadcrumbs > li > span {
   /* font-size: 130%; */
   margin: 0 5px;
}

#k-publisher-breadcrumbs, .ksu-horiz-menu{
	display:none}
	@media (min-width:768px), print{
		.k-publisher-menu{
			max-width:950px;
			padding:6px 15px 10px;
			margin:0 auto;
			position:relative;
			z-index:20
		}
		
		.k-publisher-menu>h2{
			margin:13px 0 8px
		}
		
		.k-publisher-menu .k-publisher-menu-link{
			display:none
		}
		
		#k-publisher-breadcrumbs{
			display:block;
			font-size:9px;
			font-size:.5625rem;
			list-style-type:none;
			margin:0;padding:0
		}
		
		#k-publisher-breadcrumbs>li{
			display:inline;margin:0;padding:0;line-height:10px
		}
		
		#k-publisher-breadcrumbs>li>span{
			/* font-size:130%; */
			margin:0 5px
		}
		
		#k-publisher-breadcrumbs>li>a{
			color:#333;
			text-decoration:none
		}
		
		#k-publisher-breadcrumbs>li a:active, #k-publisher-breadcrumbs>li a:hover{
			text-decoration:underline
		}
}



/*
 * The Unit Menu.
 *
 * Probably there will only ever be one menu on a page, but styling is done via classes
 * so there could be several menus on the page.
 */
/*
 * Normally the unit menu has rounded corners.  However, not if the page also has a horizontal menu.
 * The HTML wraps the menu in a wrapper with class ksu-round-top if rounding is needed.
 *
 * First, round all four corners of the menu (UL) element itself.
 */
.ksu-round-top > .k-publisher-menu {
  position: relative;
  /* Needed only for PIE, see http://css3pie.com/documentation/known-issues/#z-index */
  border-radius: 8px 8px 8px 8px;
  /* Next, round the top-most corners. of the menu item (LI) if they contribute their own colors. */
}
.ksu-round-top > .k-publisher-menu > li:first-child > a:hover,
.ksu-round-top > .k-publisher-menu > li:first-child > a.k-publisher-active {
  position: relative;
  /* Needed only for PIE, see http://css3pie.com/documentation/known-issues/#z-index */
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.ksu-with-horiz-menu .k-publisher-menu {
  margin: 0;
}

.k-publisher-menu {
  padding: 0;
  margin: 0;
  width: 175px;
  font-size: 11px;
  font-size: 0.6875rem;
  list-style: none;
  background-color: #e2e0d6;
  margin: 5px 0;
  position: relative;
  /* Needed only for PIE, see http://css3pie.com/documentation/known-issues/#z-index */
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  /*
   * Set styles for all levels of the menu.
   */
  /*
   * Set styles for only the first level of the menu.
   */
  /* The background of the active menu items is highlighted in a light color... */
  /* ...except for the top-most item, and all items on hover, which have a darker background. */
  /*
   * Hide all menu items after the top-level.
   */
  /*
   * JavaScript sets a class of ksu-last-item on the last item *visible* in the menu, even if the
   * item isn't the last item structurally, i.e., isn't the last LI in the whole structure.
   *
   * The bottom-right corner of the last item is always rounded...
   */
  /*
   * ...and the bottom-left corner is rounded if the menu item is at the top level.
   */
  /* After the top-level menu, submenus have a ligher background color.  Note that although this
   * selector applies only to the second level (not third, fourth, etc.), the default background color
   * for subsequent levels is "transparent", so the background of the secodn level UL element is visible.
   */
  /*
   * Second-level and following menu items.
   */
  /*
   * Third-level menu items.
   */
  /*
   * Fourth-level menu items.
   */
  /*
   * Submenu items are hidden by default.  However, they are displayed
   * if the parent menu item (LI) is open (has class ksu-active), or the menu itself
   * (UL) has been forced open (has class ksu-force-open).
   */
}
.k-publisher-menu ul {
  margin: 0;
  padding: 0;
}
.k-publisher-menu a {
  display: block;
  color: #333 !important;
}
.k-publisher-menu > li > a {
  padding: 7px 10px;
  font-weight: bold;
  line-height: 16px;
  border-top: solid 1px #FFF;
}
.k-publisher-menu > li:first-child > a {
  border-top: none;
}
.k-publisher-menu .k-publisher-active > a {
  background-color: #f8e7b9;
}
.k-publisher-menu > li > .k-publisher-active,
.k-publisher-menu a:hover {
  background-color: #ecd391;
}
.k-publisher-menu li > ul li {
  display: none;
}
.k-publisher-menu a.ksu-last-item {
  position: relative;
  /* Needed only for PIE, see http://css3pie.com/documentation/known-issues/#z-index */
  border-bottom-right-radius: 8px;
}
.k-publisher-menu > li > a.ksu-last-item {
  position: relative;
  /* Needed only for PIE, see http://css3pie.com/documentation/known-issues/#z-index */
  border-bottom-left-radius: 8px;
}
.k-publisher-menu > li > ul {
  background-color: #eeede8;
  position: relative;
  /* Needed only for PIE, see http://css3pie.com/documentation/known-issues/#z-index */
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.k-publisher-menu > li > ul > li a {
  padding: 5px 10px;

  margin-left: 10px;
  font-size: 95%;
}
.k-publisher-menu > li > ul > li > ul > li > a {
  margin-left: 20px;
  font-size: 90.25%;
}
.k-publisher-menu > li > ul > li > ul > li > ul > li > a {
  margin-left: 30px;
  font-size: 85.7375%;
}
.k-publisher-menu .k-publisher-active > ul > li,
.k-publisher-menu .ksu-force-open > li {
  display: block;
}

	/* OTHER FIXES */

#ksu-sidebar ul {
    list-style: none;
}

	/* Override bullet indentation and spacing */

.ksu-main-content ul {
	padding: 0px 0px 0px 20px;
}

.ksu-main-content ul li {
	margin-bottom: 12px;
}


	/* Override link behavior */
	
.ksu-main-content a.no-decoration {
	border-bottom:none;	
}


	/* Override table styles for the CMS */
	
.ksu-main-content table {
	border-spacing:1px;
	border-collapse:separate;
	border:#FFFFFF solid 1px;
}

table {
	border-spacing:1px;
	border-collapse:separate;	
}


.ksu-main-content table {
	border-spacing:1px;	
}

.row1 {
	background-color:#bcd6ef;
}

.row2 {
	background-color:#deeaf6;
}


	/* Form styles */
	
textarea {
	font-family:inherit;
	font-size:inherit;	
}
	
	/* RSS styles */
	
.rssFeedList {
	margin-left:34px;	
}

.rssFeedList li {
	background-image:url(https://www.k-state.edu/k-publisher/_config-resources/images/icon-rss.gif);
	background-repeat:no-repeat;
	padding-left:21px;
	list-style:none;
	margin-bottom:9px;
}


	/* Home Page styles */
	
.image-copyright {
	font-size:9px; 
	line-height:1.5; 
	text-align:right; 
	margin-top:0px; 
	margin-bottom:12px;
}

.image-caption {
	text-align:center; 
	font-style:italic;	
}

	/* Archive styles */

.centered {
	text-align:center;	
}

.archive-feature-img {
	width:300px;
}

.announcementDateBlock, .videoBlock {
	margin-bottom:24px;
	margin-left:18px;
}

.announcementDateBlock h5 {
	margin-top:8px;
}

.announcementDateBlock p {
	margin-top:4px;
	margin-bottom:0px;
}

#ksu-inner-wrapper .announcementDateBlock ul {
	list-style:disc;
	margin: 4px 0px 0px 0px;
	padding: 0px 0px 0px 24px;
}

#ksu-inner-wrapper .announcementDateBlock ul li {
	margin-bottom:13px;	
}

.k-publisher-archiveMenu {
	width:500px;
	margin-left:18px;
}

.k-publisher-archiveMenu h5 {
	float:left;
	margin-top:0px;
	margin-right:18px;
}

#ksu-inner-wrapper .k-publisher-archiveMenu ul {
  margin:0px 19px 0px 0px;
  padding: 0px 0px 18px 0px;
  list-style:none;
}

#ksu-inner-wrapper .k-publisher-archiveMenu li {
  width:30px;
  margin-bottom:6px;
  font-size:11px;
  float:left;
  list-style-type:none;		
}

.selectedMonth {
	color:#888888;	
}



.ksu-constrained-width {
	width:520px;
}

#socialLikesDiv {
	width:522px;
	margin-top:33px;
	margin-bottom:-28px;
}

#socialLikesDiv a:link {
	text-decoration:none;
	border-bottom:none;
}

#socialLikesDiv a:visited {
	text-decoration:none;
	border-bottom:none;
}
	
#socialLikesDiv a:hover {
	text-decoration:none;
	border-bottom:none;
}

.k-publisher-announcementDiv {
	margin-bottom:4px;
	margin-left:20px;
	float:left;
}

.thumbnailPhoto {
	width:78px;
	float:left;
	margin:4px 12px 4px 0px;
	display:block;
}

.leadPhoto {
	width:200px;
	float:right;
	margin:4px 0px 4px 20px;
	display:block;
}

.grayText {
	color:#222222;
	margin-top:6px;
	margin-bottom:16px;
	margin-left:20px;
}

#ksu-inner-wrapper h4 {
	width:100%;
	margin:0px 0px 0px 0px;
	padding:12px 0px 0px 0px;
}

#ksu-inner-wrapper h5 {
	width:100%;
	margin:0px 0px 0px 0px;
	padding:10px 0px 0px 0px;
}

#ksu-inner-wrapper h5 a:link {
	color:#000000;
	text-decoration:none;
	border-bottom:none;
}

#ksu-inner-wrapper h5 a:visited {
	color:#000000;
	text-decoration:none;
	border-bottom:none;
}
	
#ksu-inner-wrapper h5 a:hover {
	color:#000000;
	text-decoration:underline;
	border-bottom:none;
}

#ksu-inner-wrapper .grayText span.goldText {
	color:#000000;
}

#ksu-inner-wrapper .grayText a.goldText:link {
	color:#512888;
	text-decoration:none;
	border-bottom:1px solid;
}

#ksu-inner-wrapper .grayText a.goldText:visited {
	color:#512888;
	text-decoration:none;
	border-bottom:1px solid;
}
	
#ksu-inner-wrapper .grayText a.goldText:hover {
	color:#512888;
	text-decoration:none;	
	border-bottom:2px solid;
}

	/* Sidebar styles */

address {
	line-height:1.4;	
}

#ksu-sidebar h4 {
    color: #512888;
    font-size: 13px;
    font-weight: bold;
    margin: 0 0 0.4em;
}

.ksu-widget h5 {
	margin: 7px 0px 4px 0px;	
}

.ksu-widget ul {
	padding: 0px 0px 0px 0px;	
	margin: 0px 0px 7px 0px;
}

.ksu-widget {
	font-size:112%;	
	line-height:1.44;
}

#ksu-inner-wrapper .ksu-widget li {
	margin-bottom:7px;
	list-style:none;
}
#ksu-inner-wrapper 
#ksu-inner-wrapper .ksu-widget ul.ksu-select-links li {
	padding-left:7px;
}

#ksu-inner-wrapper .ksu-widget ul.ksu-select-links .ksu-active {
	background-image:url(https://www.k-state.edu/k-publisher/_config-resources/images/icon-selectedLink.png);
	background-repeat:no-repeat;
	background-position:0px 5px;
	padding-left:7px;	
}

	/* Event Calendar styles */
	

#ksu-inner-wrapper .ksu-sidebar-note ul li, #ksu-sidebar-secondary .ksu-widget ul li {
	font-size:11px;
	line-height:1.4;
	margin-bottom:7px;
}

.event-upcoming {
	list-style:none;	
}

.event-title {
	font-weight:bold;
}

.event-time {
	font-style:italic;
}

.event-location {
	font-style:italic;
}

#ksu-inner-wrapper #ksu-sidebar-secondary .ksu-widget h5 {
	margin-top:16px;
	margin-bottom:8px;
}

	/* Fixes for videoIcon hyperlinks */
	
#ksu-inner-wrapper a.videoIcon:link, #ksu-inner-wrapper a.videoIcon:hover, #ksu-inner-wrapper a.videoIcon:visited {
	text-decoration:none;
	border:none;
}

	/* Fix positioning on right sidebar videoIcon (center it) */

.ksu-widget .videoIcon-container {
	left:18px;	
}

	/* Fix offset positioning of playlist videos and announcement headlines */

.videoBlock ul {
	margin-left:0px;
	padding:0px 0px 0px 0px;
	list-style-type:none;
}

.videoBlock li {
	padding:0px 0px 0px 0px;	
}

	/* Fix positioning of h4 in sidebar note */
	
#ksu-inner-wrapper .ksu-sidebar-note h4 {
	margin-bottom: 8px;
}
