/**
 * rightSidebar.css
 *
 * Copyright (c) 2003-2009 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.
 *
 * $Id: rightSidebar.css,v 1.7.2.2 2009/04/14 23:09:40 asmecher Exp $
 */

/**
 * Common HTML elements
 */


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

#body {
	width: 100%;
}

#rightSidebar {
    background: none repeat scroll 0 0 #ffefcb;
    border-radius: 15px 15px 15px 15px;
	float: right;
	/*border: solid 1px;*/
    font-size: 0.65em;
    height: 100%;
    margin-left: 5px;
    margin-right: 0px;
    margin-top: 3%;
	/*padding: 1em 0;*/
	width: 190px
	
}

* html #rightSidebar { margin-right: 5%; }

#main {
    display: inline;
    float: left;
    margin: 1%;
    /*overflow: auto;*/
    width: 800px;
}

