<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * styles/rightSidebar.css
 *
 * Copyright (c) 2013-2014 Simon Fraser University Library
 * Copyright (c) 2003-2014 John Willinsky
 * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
 *
 * Site-wide shared elements for pages including a right-hand sidebar.
 *
 */

/**
 * Common HTML elements
 */


#headerTitle {
	text-align: center;
	width: 100%;
}

#body {
	width: 100%;
}


#rightSidebar {
	padding: 1em 0em 1em 0em;
	font-size: 0.65em;
	position: relative;
	z-index: 3;
	width: 220px;
	background-color: white;
	margin-top: 15px;
        -webkit-box-shadow: 0px 0px 15px #004F8A;
        -moz-box-shadow: 0px 0px 15px #004F8A;
        -o-box-shadow: 0px 0px 15px #004F8A;
	border-radius: 5px;
        float: right;
        padding: 1em 0em 1em 0em;
        font-size: 0.65em;
      	margin-right: 10px;
	padding-bottom: 32767px;
  	margin-bottom: -32767px;
			     		
}

* html #rightSidebar { margin-right: 5%; }
#main {
	padding: 0.5em 0em 2em 0em;
	position: relative;
         background-color: white;
	 margin-top: 15px;
	 min-height: 400px;
         width: 760px;
         margin-left: 10px;
         float: left;
         z-index: 3;
         -webkit-box-shadow: 0px 1px 15px #888888;
         -moz-box-shadow: 0px 1px 15px #888888;
         -o-box-shadow: 0px 1px 15px #888888;
         overflow: hidden;
	padding-bottom: 32767px;
  	margin-bottom: -32767px;
}
</pre></body></html>