/**
 * rightSidebar.css
 *
 * Copyright (c) 2003-2012 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$
 */

/**
 * Common HTML elements
 */


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

#body {
	width: 100%;
}

#rightSidebar {
	float: right;
	width: 14%;
	padding: 1em 0em 1em 0em;
	font-size: 0.65em;
	height: 100%;
	margin-right: 10%;
	margin-left: 2%;
}

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

#main {
	float: left;
	width: 63%;
	margin-left: 10%;
	display: inline;
	overflow: hidden;
}

/* ==== Custom Call for Papers Block ==== */
.customblock {
  background-color: #800000;   /* maroon */
  border: 2px solid #FFD700;  /* yellow border */
  border-radius: 8px;
  padding: 10px;
  color: #fff;
  text-align: center;
}

.customblock h3 {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 8px;
  color: #FFD700; /* yellow title */
}

.customblock marquee {
  font-size: 0.95em;
  color: #fff;
  font-weight: bold;
  margin-bottom: 8px;
}

.customblock img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid #FFD700;
}

