/**
 * global.base.css
 * This is basically a big reset for html elements to set up global defaults.
 */

/*
 * Fonts
 *
 * By default there is no global font size reset. A common
 * method is to reset it to 62.5%, or 10px. This makes it very
 * easy to calculate the required font sizes in em, for example:
 *
 * 1.6em = 16px
 * 2.4em = 24px
 *
 * In Adaptivetheme this should be applied to the HTML element,
 * so it will play nicely with the theme settings. If you use
 * the body element or #page wrapper you will get unpredictable
 * font scaling issues.
 *
 * Font size chart from http://pxtoem.com/
 *
 * 6px	 0.6em	 60%	 5pt
 * 7px	 0.7em	 70%	 5pt
 * 8px	 0.8em	 80%	 6pt
 * 9px	 0.9em	 90%	 7pt
 * 10px	 1em	   100%	 8pt
 * 11px	 1.1em	 110%	 8pt
 * 12px	 1.2em	 120%	 9pt
 * 13px	 1.3em	 130%	 10pt
 * 14px	 1.4em	 140%	 11pt
 * 15px	 1.5em	 150%	 11pt
 * 16px	 1.6em	 160%	 12pt
 * 17px	 1.7em	 170%	 13pt
 * 18px	 1.8em	 180%	 14pt
 * 19px	 1.9em	 190%	 14pt
 * 20px	 2em	   200%	 15pt
 * 21px	 2.1em	 210%	 16pt
 * 22px	 2.2em	 220%	 17pt
 * 23px	 2.3em	 230%	 17pt
 * 24px	 2.4em	 240%	 18pt
 *
 *
 * Font Theme Settings
 *
 * Adaptivetheme includes powerful theme settings for adding
 * webfonts and setting font sizes - you can enable these
 * under "Site Tweaks", simply enable the Fonts setting and
 * start using them. You can choose from standard websafe font
 * stacks, Google fonts, add your own custom stacks, and if you
 * have @font-your-face module installed just set the font to
 * "-- add selector in theme CSS --" and the font will automatically
 * be available to you in theme settings.
 * @see http://drupal.org/project/fontyourface
 *
 *
 * Font Stacks
 *
 * These are the font stacks that used for the websafe fonts
 * in theme settings (if you enabled the Fonts feature). They are
 * included here for easy reference if you prefer to set your fonts
 * in CSS.
 *
 * font-family: 'Trebuchet MS', 'Helvetica Neue', Arial, Helvetica, sans-serif;
 * font-family: Verdana, Geneva, 'DejaVu Sans', Arial, Helvetica, sans-serif;
 * font-family: Arial, Helvetica, sans-serif;
 * font-family: Calibri, Candara, Arial, Helvetica, sans-serif;
 * font-family: 'Segoe UI', 'Myriad Pro', Myriad, Arial, Helvetica, sans-serif;
 * font-family: 'Lucida Sans Unicode', 'Lucida Sans', 'Lucida Grande', Verdana, Geneva, sans-serif;
 * font-family: Impact, Haettenschweiler, 'Franklin Gothic Bold', Charcoal, 'Helvetica Inserat', 'Bitstream Vera Sans Bold', 'Arial Black', sans-serif;
 * font-family: Garamond, Perpetua, 'Times New Roman', serif;
 * font-family: Georgia, Baskerville, Palatino, 'Palatino Linotype', 'Book Antiqua', 'Times New Roman', serif;
 * font-family: Consolas, Monaco, 'Courier New', Courier, monospace, sans-serif;
 */


html /* Always apply your global font size the the HTML element, not body or #page */ {
  line-height: 1.5; /* Unitless line-heights scale */
  height: 100%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: "Open Sans",Helvetica,Arial,sans-serif;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  font-size: 100%; 
}


h1,h2,h3,h4,h5,h6,
h1 img,h2 img,h3 img,h4 img,h5 img,h6 img,
em,dfn,del,ins,
a,
tbody,tfoot,thead,tr,
ul,li,
label,legend,
figure,figcaption {
  margin: 0;
  padding: 0;
}

/* Reset HTML5 elements */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

img,
a img {
  border: 0;
}
p {
  margin: 0 0 1.5em;
  padding: 0;
}

em,
dfn {
  font-style: italic;
}

ins {
  border-bottom: none;
  text-decoration: none;
}

pre,
code,
tt,
samp,
kbd,
var {
  font-size: 1em;
  font-family: Consolas, "Lucida Console", Menlo, Monaco, "DejaVu Sans Mono", monospace, sans-serif; /* sans-serif Safari hack */
}

blockquote,
q {
  font-style: italic;
  quotes: "" "";
}

blockquote {
  margin: 0 0 1.5em;
  padding: 0 0 0 40px;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote p {
  margin: 0;
}

strong,
dfn,
caption,
th {
  font-weight: 700;
}

ul,
ol {
  margin: 0 0 1.5em 40px;
  padding: 0;
}

.item-list ul,
.item-list ol {
  margin: 0 0 0 15px;
  padding: 0;
}

.item-list ul li {
  margin: 0;
  padding: 0;
}
ul ul,
ul ol,
ol ol,
ol ul,
.block ul ul,
.block ul ol,
.block ol ol,
.block ol ul,
.item-list ul ul,
.item-list ul ol,
.item-list ol ol,
.item-list ol ul {
  margin-bottom: 0;
}

ul {
  list-style-type: disc;
}

ul ul ul {
  list-style-type: square;
}

ol {
  list-style-type: decimal;
}

ol ol {
  list-style-type: lower-alpha;
}

ol ol ol {
  list-style-type: lower-roman;
}

ul ul,
ul ul ul ul {
  list-style-type: circle;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 0 1.5em 40px;
}


/**
 * Flexible Media and Cross browser improvements
 * - This can cause issues in table cells where no width is set on the column,
 *   only in some versions of webkit and IE 7/8.
 * - declaring the width attribute on image elements and using max-width causes
 *   the "dissappering images" bug in IE8.
 * - Google maps break also, see below for fixes.
 */

img {
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

/* /ht Ethan Marcotte - http://front.ie/l8rJaA */
embed,
object,
video {
  max-width: 100%;
}

/* Disable flexiblity for IE8 and below */
.lt-ie9 img,
.lt-ie9 object,
.lt-ie9 embed,
.lt-ie9 video {
  max-width: none;
}

/* Override max-width 100% for map displays, as much as possible anyway... */
#map img,
.gmap img,
.view-gmap img,
.openlayers-map img,
#getlocations_map_canvas img,
#locationmap_map img,
.geofieldMap img {
  max-width: none !important;
}

/* Improve IE's resizing of images */
svg:not(:root) {
  overflow: hidden;
}

/* Corrects inline-block display not defined in IE6/7/8/9 & FF3 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/* Prevents modern browsers from displaying 'audio' without controls */
audio:not([controls]) {
  display: none;
}

/* Prevent overflowing content */
header[role=banner],
.content-inner,
.nav,
.region-sidebar-first,
.region-sidebar-second,
.region-featured-content,
.region-secondary-content,
.region-tertiary-content,
.region-footer {
  overflow: visible;
  word-wrap: break-word;
}

/* Helpful classes for hiding content */
.element-invisible {
  border: 0;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
}

.element-invisible.element-focusable:active,
.element-invisible.element-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static !important;
  width: auto;
}

.offscreen {
  position: absolute;
  top: -99999em;
  width: 1px;
  height: 1px;
  overflow: hidden;
  outline: 0;
}

.element-hidden {
  display: none;
}


body,
div#page
div#page-wrapper {
  padding: 0;
  margin: 0;
}

/* If gutters are set in theme settings they will override these
   values: see Extensions > Modify Output > Design */
#main-content,
.block-inner,
.pane-inner,
.menu-wrapper,
.branding-elements,
.breadcrumb-wrapper,
.attribution,
.at-panel .rounded-corner,
div.messages {
  margin-left: 10px;
  margin-right: 10px;
}


/* Panel pages need negative margin equal to the gutter width applied to #content,
  this is taken care of in theme settings as per above for normal gutters */
.page-panels #content {
  margin-left: -10px;
  margin-right: -10px;
}


.region-highlighted {
  margin-bottom: 15px;
}

#featured-content-wrapper div.container {
  background: url(images/transparent-overlay-33.png) repeat 0 0;
  background: rgba(255,255,255,0.33);
  padding: 15px 0;
}

#featured-content-wrapper,
#featured-content-wrapper .image-overlay {
  min-height: 30px;
}

#columns {
  margin-bottom: 20px;
}

.region-content-aside {
  margin-bottom: 20px;
}

#tertiary-content-wrapper {
  clear: both;
}

#content > .block > .block-inner {
  margin: 0;
}

/* Gpanel margins */
#tri-panel {
  padding: 10px 0 0;
}

#tri-panel .block-title,
#tri-panel .block-content, {
  padding: 10px;
}

#tri-panel-2 {
 margin-top: 25px;
}

#bi-panel {
  padding-bottom: 15px;
}

#quad-panel {
  margin: 20px 0 15px;
}

/* Region adjustments */
#header-wrapper .container {
  padding-bottom: 10px;
}
.region-secondary-content {
  margin: 0;
  padding: 15px 0;
}
.region-tertiary-content {
  margin: 0;
  padding: 10px 0;
}

/* Skip Navigation */
#skip-link {
  left: 50%;
  margin-left: -6.5em;
  margin-top: 0;
  padding: 0 0.5em;
  position: absolute;
  width: 12em;
  z-index: 50;
}
#skip-link a,
#skip-link a:link,
#skip-link a:visited {
  background: #444 !important;
  color: #fff;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
  -khtml-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-left-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  border-radius: 0 0 10px 10px;
}
#skip-link a:hover,
#skip-link a:active,
#skip-link a:focus {
  outline: 0;
}

/* HTML elements */


a img {
  border:none;
}
em,
dfn {
  font-style:italic;
}
ins {
  border-bottom:none;
  text-decoration:none;
}
pre,
code,
tt,
samp,
kbd,
var {
  font:1em "Lucida Console",Monaco,"DejaVu Sans Mono",monospace;
}
blockquote,q {
  font-style:italic;
  quotes:"" "";
}
blockquote {
  margin:0 0 1.5em;
  padding:0 0 0 3em;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content:"";
}
blockquote p {
  margin:0;
}
strong,
dfn,
caption,
th {
  font-weight:700;
}
img {
  line-height: 0;
}

/* Books */
.book-navigation .menu {
  margin: 0;
}
.node-book .book-navigation ul.menu,
.node-book .book-navigation .page-links {
  padding-top: 10px;
  padding-bottom: 12px;
}

/* Lists */
ul,
ol {
  margin:0 0 1.5em 1.667em;
  padding:0;
}
ul ul,
ul ol,
ol ol,
ol ul,
.block ul ul,
.block ul ol,
.block ol ol,
.block ol ul,
.item-list ul ul,
.item-list ul ol,
.item-list ol ol,
.item-list ol ul {
  margin:0 0 0 1em;
}
ul {
  list-style-type:disc;
}
ul ul ul {
  list-style-type:square;
}
ol {
  list-style-type:decimal;
}
ol ol {
  list-style-type:lower-alpha;
}
ol ol ol {
  list-style-type:lower-roman;
}
ul ul,
ul ul ul ul {
  list-style-type:circle;
}
dt {
  font-weight:700;
}
dd {
  margin:0 0 1.5em 1.667em;
}
.item-list ul,
.item-list ol {
  margin:0 0 0 1.667em;
  padding:0;
}
.block .menu li {
  margin: 0;
}
.block .menu li.content {
  padding: 0; /* extra class can equal a standard class, nasty... */
}
.article ol {
}
.article ul {
}
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.4em;
}
/*
h1 {
  font-size: 1.416em;
}
h2 {
  font-size: 1.25em;
}
h3 {
  font-size: 1.167em;
}
h4, h5, h6 {
  font-size: 1em;
}
*/
p {
  margin-top: 0.4em;
  margin-bottom: 0.8em;
  padding:0;
}
em {
  text-decoration: none;
  font-weight: 400;
}
fieldset legend,
.form-item label {
/*   font-size: 1em; */
  font-weight: 700;
}
blockquote {
  margin: 0.3em 10px 0.75em;
  padding: 10px 15px 10px 30px;
}
abbr, acronym {
  border-bottom: none;
}
.article .article-content,
.comment .comment-content {
  line-height: 1.5em;
}
/* h1 */#page-title {
  padding: 0;
  margin: 0.175em 0 0.5em;
/*   font-size: 1.667em; */
/*   text-transform: uppercase; */
}

/* Links */
a:hover,
a.active:hover,
a:focus,
a.active:focus,
#site-name a,
#block-menu-menu-utility-links a,
.menu-block-wrapper a,
.nav a,
.flex-caption a,
#umass-footer a,
h1 a,h2 a,h3 a,h4 a,h5 a,h6 a
{
    text-decoration: none;
}


/* Header */
#header-wrapper > header {
  padding: 10px 0;
}
#branding {
  float: left;
  padding: 0;
}
#logo {
  display: block;
  float: left;
  margin: 0 10px 0 0;
  overflow: hidden;
  padding: 10px 0 0 10px;
  outline: 0;
}
#branding a {
  outline: 0;
}
#head-elements {
  _height: 88px;
  min-height: 88px;
  margin: 0 0 0 15px;
  padding: 0;
}
#branding {
/*   text-transform: uppercase; */
}
#site-name {
/*   font-size: 2em; */
  line-height: 1.3em;
  margin: 0;
  overflow: hidden;
  padding: 25px 0 0;
}
.logo-site-name a:hover,
.logo-site-name a:focus {
  text-decoration: none;
}
#site-slogan {
/*   font-size: 1.25em; */
  line-height: 1em;
  text-align: left;
  margin-bottom: 15px;
}

/* Special casing for the search block in the header region */
.region-header #block-search-form {
  margin: 0;
  padding: 18px 0 0 10px;
}
.region-header .block-content {
  background: transparent;
}
.region-header #block-search-form .block-content {
  padding: 0;
}
.region-header #block-search-form .block-inner {
  background: none;
}
.region-header #block-search-form input.form-text {
  width: 160px;
}
.region-help .block-title,
.region-help .block-content,
.region-help .block-content-inner {
  background: #eeeeee;
}

/* Top menu bar */
#menu-top-wrapper {
  background: url("images/top-menu-tile.png") repeat-x scroll 0 0 transparent;
  min-height: 2.5em;
  line-height: 2em;
}
.region-menu-bar-top .block {
  margin: 3px 0 0 0;
  padding: 0;
}
.region-menu-bar-top .block-menu .block-title {
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  background: none;
}
.region-menu-bar-top .block-menu .block-content,
.region-menu-bar-top .block-menu .block-content-inner {
  background: transparent;
  padding: 0;
}
.region-menu-bar-top .block-menu .menu,
.region-menu-bar-top .block-menu .menu li {
  list-style: none;
  list-style-image: none;
  display: inline;
  float: right;
  padding: 0;
  margin: 0;
}
.region-menu-bar-top .block-menu .menu li a {
  padding: 0 0 0 10px;
  color: #fff !important;
}

/* Menu-bar */
#nav-wrapper {
  position: relative;
  z-index: 400;
}
#menu-bar .block-content-inner {
  background: transparent;
  padding: 0;
}
.nav {
  clear: both;
  min-height: 2.462em;
  line-height: 2.462em;
/*   text-transform: uppercase; */
}
.ie6 .nav {
  height: 2.462em;
}
.nav ul {
  padding: 0;
}
.nav ul,
.nav ul li,
#menu-bar ul,
#menu-bar ul li {
  margin: 0 1px;
  padding: 0;
  list-style: none;
  list-style-image: none;
}
#menu-bar ul li * {
  margin: 0;
}
.nav ul li {
  float: left;
}
.nav ul li a {
  display: block;
  padding: 0 10px;
}
.nav .block,
.nav .block-inner,
.nav .block-inner .block-content  {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
}
/**
 * Hide additional menu levels for normal menu blocks - I can't think of a better
 * way of handling these - you should really use http://drupal.org/project/menu_block
 */
.nav .block-menu ul ul {
  display: none;
}

/* Forms */
form {
  margin:0 0 1.5em;
  padding:0;
}
.form-item label {
  font-weight: 400;
}
input {
  margin: .5em 0;
}
input.title {
/*   font-size: 1.5em; */
}
input.text,
input.title,
textarea,
select {
  border: 1px solid #ccc;
  margin: .5em 0;
  padding: 2px;
}
input.text,
input.title {
  padding: .5em;
}
input.form-text,
textarea {
  border: 1px solid #CCC;
  height: auto;
  padding: 2px;
}
/*
textarea,
input {
  font: 1em normal Arial, Helvetica, sans-serif;
}
*/
div.form-item {
}
.form-item textarea.error {
  padding: 2px;
}
.form-item .description,
fieldset .description,
.fieldset-layout-settings dd {
/*   font-size: .9em; */
}
span.form-required,
span.marker {}
#article-admin-filter ul {
  padding: .5em 0;
}
#edit-operation-wrapper select {
  margin: .5em;
}
div.resizable-textarea textarea {
  margin-top: 0;
}

/* Fieldsets */
fieldset {
  background: transparent;
  border: 1px solid #dadada;
  margin: 1.5em 0;
  padding: .75em;
}
*:first-child+html fieldset {
  background-color:transparent;
  background-position: 0 .75em;
  padding: 0 1em .75em;
}
*:first-child+html fieldset > .description,
*:first-child+html fieldset .fieldset-wrapper .description {
  padding-top: 1.5em;
}
fieldset legend {
  display:block;
  font-weight: 400;
  padding: 0 1em 0 0;
}
*:first-child+html fieldset legend,
*:first-child+html fieldset.collapsed legend {
  display: inline;
}
html.js fieldset.collapsed {
  background: transparent;
  padding-top: .25em;
}

/* Search */
#search-block-form {}
#search-block-form > div {}
#search-block-form .container-inline{}
#edit-search-block-form-1-wrapper {}
#search-block-form label {}
#search-block-form input {}
#search-block-form .form-submit {}
#search-block-form .form-text {
  width: 119px; /* Adjust this to suit */
}

/* Advanced search form */
fieldset#edit-advanced fieldset {
  float: left;
  margin: 0 10px 10px 0;
}
fieldset#edit-advanced fieldset .fieldset-legend {
  background: none;
  padding-left: 1em;
}
.advanced-search-submit {
  clear: both;
}
.search-advanced .criterion {
  float: none;
  margin: 0 5px;
}
#edit-keywords-fieldset .form-item:first-child {
  margin-top: 0.4em;
}
#search-form {
  margin: 1em 0;
}
#search-form .form-submit {
  margin-right: 0;
}

/* User login */
#user-login-form ul {
  margin: 0;
  padding: 0;
}
#user-login-form li.openid-link,
#user-login-form li.user-link {
}
#user-login ul {
  margin: 0 0 5px;
}
#user-login ul li {
  margin: 0;
}
#user-login-form .item-list li {
  list-style: none;
  margin: 0;
}
#user-login-form li.openid-link,
#user-login li.openid-link {
  background: none;
}
.hide-label label {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}
#user-admin-filter ul li,
#article-admin-filter ul li {
  list-style: none;
}
.description {
  color: #555;
}
/* Tips overrides */
.field-type-text-with-summary fieldset {
  padding: 1em 0;
}
.field-type-text-with-summary fieldset .form-item {
  margin: 0;
}
.field-type-text-with-summary fieldset .filter-help {
  padding: .5em 1.5em;
}

/* Buttons */
.form-submit {
  margin-bottom: 1px;
  cursor: pointer;
  padding: 2px 10px;
  color: #666;
  font-weight: normal;
/*   font-size: 1em; */
  border: solid 1px #dcdcdc;
  background: #eaeaea;
  margin-right: 8px;
}
.form-submit:hover {
  background: #f8f8f8;
}

/* Fix autocomplete drop lists */
#autocomplete {
  background: #fff;
  border: 1px solid #ccc;
  line-height: 1.2;
}
#autocomplete li {
  padding: 2px;
}
#autocomplete li,
#autocomplete div {
  float: none;
  display: block;
}
.filter-guidelines ul.tips {
  margin: 0;
}

/* Tables */
table {
  border-spacing: 0;
  border-color: #eee;
  margin: 1em 0;
  padding: 0;
  width: 100%;
/*   font-size: 1em; */
}
table,
tr,
td,
thead,
tbody {
  border: none;
}
table,
td,
th {
  vertical-align:middle;
}
caption,
th,
td {
  text-align:left;
}
thead th {
  border-width:0 0 1px;
  border-bottom-style: solid;
  border-bottom-color:#eee;
  color:#494949;
  font-weight:700;
}
td,
th {
  border-bottom:none;
  margin:0;
  padding:.375em .5em;
}
tr.even,
tr.odd {
  border-bottom:none;
}
tr.odd td,
tr.info td{
  background-color:#f5f5f5;
}
tbody tr:nth-child(2n+1) td {
  background-color:#f5f5f5;
}
tr.even {
  background-color:#fff;
}
tr.drag {
  background-color:#fffff0;
}
tr.drag-previous {
  background-color:#ffd;
}
tr.odd td.active {
  background-color:#eee;
}
tr.even td.active {
  background-color:#f7f7f7;
}
td.region,
td.module,
td.container td.category {
  background-color:#eee;
  border-bottom:1px solid #ccc;
  border-top:1.5em solid #fff;
  color:#222;
  font-weight:700;
}
tr:first-child td.region,
tr:first-child td.module,
tr:first-child td.container {
  border-top-width:0;
}
table caption {
  text-align: center;
  text-decoration: underline;
  font-style: italic;
}

/* Forum */
#forum {
  margin: 15px 0;
  overflow: hidden;
}
.block-forum h3 {
  margin-bottom: 0.5em;
}
div.forum-topic-navigation a.topic-next {
  text-align: right;
}
div.forum-topic-navigation a.topic-previous {
  text-align: left;
}
#forum .description {
/*   font-size: 0.92em; */
  margin: 5px 0;
}
#forum div.indent {
  margin-left: .5em;
}

/* Articles */
.article {
  margin: 0 0 15px;
  padding: 10px;
}
.article section.field {
  margin-bottom: 0.75em;
}
.region-secondary-content .view .article {
  margin-bottom: 0;
}
.node-teaser .article-inner {
  padding: 10px;
}
.node-teaser .article-footer .article-inner {
  padding: 5px 10px;
}
.node-full .node-title,
.article h1.node-title {
  margin: 0;
  padding-top: 0;
  padding-bottom: 2px;
}
.article h1.node-title {
/*   font-size: 1.5em; */
}
.article h1.article-title a:hover {
  text-decoration: none;
}
.article .user-picture {
  border: none;
  float: left;
  line-height: 0;
  margin-right: 10px;
}
.article .submitted {
  margin: 0.3em 0 1em;
  padding: 0;
  overflow: hidden; /* Clearfix */
}
.with-user-picture .author-datetime {
  margin-top: 12px;
}
.article .submitted  {}
.article .submitted img {
  height: 30px;
  border: 7px solid #f5f5f5;
}
.article .article-content {
  clear: both;
  margin: 0.5em 0;
  overflow: hidden;
}
.article .field-type-taxonomy-term-refernce {
/*   font-size: 0.9em; */
}
.article .taxonomy {
  margin: 0;
  padding: 0;
}
.article .taxonomy li {
  padding: 1px 5px;
}
.article ul.links li {
  margin: 1px 2px 1px 0;
  float: left;
  white-space: nowrap;
}
.article .article-footer {

}
.article h2.field-label {
/*   font-size: 1em; */
  border-bottom: none;
}

/* Comments */
#comments h2 {
  border-bottom: none;
}
#comments h2.comment-form {
  margin-top: 20px;
}
.comment {
  border:none;
  margin:0 0 10px;
  padding:10px;
}
.comment .comment-title a {
/*   font-size: 1.2em; */
  font-weight: 700;
}
.comment .new {
  padding-right: 10px;
  text-align: right;
  font-weight: 700;
/*   font-size: 0.8em; */
  float: right;
  color: red;
}
.comment .user-picture img {
  height: 30px;
  border: 5px solid #f5f5f5;
}
.comment .user-picture {
  border: none;
  float: left;
  margin: 2px 10px 0 0;
}
.comment footer {
/*   font-size: 0.92em; */
}
.comment .with-picture .author-datetime {
  margin-top: 10px;
}
.comment .comment-id {
/*   font-size: 1.167em; */
  font-weight: 700;
  padding-right: 10px;
}
.comment ul.links {
  float: right;
}

/* Blocks */
.block {
  margin-bottom: 15px;
}
.block-title {
/*   font-size: 1.1em; */
  margin: 0;
  padding: 5px 10px 4px;
}
.block h3 {
    font-size: 1.2em;
    font-weight: normal;
    padding: 0;
}
.block-content-inner {
  padding: 10px;
}
.block-superfish .block-content-inner {
}
#tertiary-content-wrapper .block {
  padding-top: 15px;
  padding-bottom: 15px;
}
#tertiary-content-wrapper .block-title {
  padding: 0 10px;
/*   font-size: 1.25em; */
}
#secondary-content-wrapper .block-content-inner,
#tertiary-content-wrapper .block-content-inner {
  padding: 10px;
}
#secondary-content-wrapper .block-title,
#tertiary-content-wrapper .block-title,
#secondary-content-wrapper .block-content,
#tertiary-content-wrapper .block-content {
  border: 0;
}
#secondary-content-wrapper .gpanel .block-title {
  padding: 5px 10px;
}
#menu-top-wrapper .block-title,
#menu-top-wrapper .block-content,
#header-wrapper .block-title,
#header-wrapper .block-content,
#nav-wrapper .block-title,
#nav-wrapper .block-content {
  border: 0;
  background: transparent;
}
#secondary-content-wrapper .block-title,
#secondary-content-wrapper .block-content {
  border: 0;
  background: #fff;
  background: rgba(255,255,255,0.8)
}
#tertiary-content-wrapper .block-title,
#tertiary-content-wrapper .block-content {
  border: 0;
  background: url(images/transparent-overlay.png) repeat 0 0;
  background: rgba(255,255,255,0.4)
}
#footer-wrapper .block-title,
#footer-wrapper .block-content {
  border: 0;
  background: transparent;
  background: rgba(255,255,255,0.03)
}
.region-secondary-content .block,
.region-tertiary-content .block {
  margin: 0;
}
#block-system-main .block-content {
  padding: 0;
}
#block-system-main .block-content-inner {
  padding: 0;
}
.block .item-list ul {
  margin-left:0.3em;
}
.block .item-list ul ul,
.block .item-list ul ul ul {
  margin-left:1em;
}
.block ul.links {
  margin:0;
  padding:0 0 5px;
}
.block ul.links li {
/*   font-size: .94em; */
}
.block-poll ul.links {
  text-align: center;
}
.block ul.links li {
  background: transparent;
  list-style: none;
}
/* Region header blocks. */

/* Region header block menus. */

/* User Login block in the header region */
.region-header #block-user-login {
  width: auto;
}
.region-header #block-user-login .block-title {
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
}
.region-header #block-user-login .content {
  margin-top: 2px;
}
.region-header #block-user-login .form-item {
  float: left; /* LTR */
  margin: 0;
  padding: 0;
}
.region-header #block-user-login div.item-list,
.region-header #block-user-login div.description {
/*   font-size: 0.916em; */
  margin: 0;
}
.region-header #block-user-login div.item-list {
  clear: both;
}
.region-header #block-user-login div.description {
  display: inline;
}
.region-header #block-user-login .item-list ul {
  padding: 0;
  line-height: 1;
}
.region-header #block-user-login .item-list li {
  list-style: none;
  float: left; /* LTR */
  padding: 3px 0 1px;
}
.region-header #block-user-login .item-list li.last {
  padding-left: 0.5em; /* LTR */
}
.region-header #block-user-login ul.openid-links li.last {
  padding-left: 0; /* LTR */
}
.region-header #user-login-form li.openid-link a,
.region-header #user-login li.openid-link a {
  padding-left: 20px; /* LTR */
}
.region-header #block-user-login .form-actions {
  margin: 4px 0 0;
  padding: 0;
  clear: both;
}
.region-header #block-user-login input.form-submit {
}
.region-header #block-user-login input.form-submit:hover,
.region-header #block-user-login input.form-submit:focus {
}

#footer-wrapper {
  min-height: 150px;
  padding: 20px 0;
}
#footer-wrapper .block-title,
#footer-wrapper a {
  font-weight: 400;
}
#footer-wrapper ul li {
  margin: 0;
  padding: 0;
}

/* Other block special cases */
#block-search-form form {
  margin: 0;
}
#block-search-form .block-content {
  padding: 0 10px 2px;
}
#block-system-main {
  margin-bottom: 15px;
}
#block-comment-recent li span {
/*   font-size: 0.8em; */
}
#block-comment-recent li span:before {
  content: "(";
}
#block-comment-recent li span:after {
  content: ")";
}

/* Search results */
.search-results {
  margin: 0;
}

/* Fields */
.field-type-taxonomy-term-reference .field-label {
/*   font-size: 1em; */
}
.field-type-taxonomy-term-reference ul {
  margin: 0;
  padding: 0;
}
.field-type-taxonomy-term-reference ul li {
  display: inline;
  list-style: none;
  padding: 0 0.75em 0 0; /* LTR */
}
.field-lable-inline .field-label {
  display: inline;
}
/* Float field-image images*/
article .field-type-image {
  float: right; /* LTR */
  margin: 0.5em 0 1em 1em; /* LTR */
}
article .field-type-image img {
  display: block;
  margin: 4px 0 10px;
}
article .field-type-image.field-label-above {
  margin-top: 0;
}
article .field-type-image .field-label {
  margin-bottom: 0.5em;
}
article .field-type-image.field-label-inline .field-label {
  margin-bottom: 0;
  line-height: 1;
}

/* Lists */
ul {
  margin: 0;
  padding: 0 0 0 1.35em;
}
li a,
li a:visited,
li a:active,
li a:hover {
  font-weight: 400;
}
.item-list ul {
}
.item-list ul li {
  margin-left: 1em;
}
.item-list .title {
/*   font-size: 1em; */
}
#main-content ul.links li {
  margin: 0;
  font-weight: 400;
  padding: 0 10px 0 0;
}
.comment .links {
  margin-bottom: 0;
}
.submitted {
/*   font-size: 0.9em; */
}
.links a {
  font-weight: 400;
}
ul.menu {
  margin-left: 18px;
  padding: 0;
}
ul.menu li {
  margin: 2px 0;
  padding: 0;
}

/* Aggregator */
#aggregator .feed-source {
  padding: 1em;
  margin: 1em 0;
}
#aggregator .feed-item-title {
  margin-bottom: 0;
/*   font-size: 1.25em; */
}
#aggregator .feed-item-meta {
  margin-bottom: 0;
}
#aggregator .feed-item-body {
  margin-bottom: 0.8em;
}

/* Profile */
#profile .profile {
  clear: both;
  padding: .5em;
  margin: 1em 0em;
}
#profile .profile .name {
  padding-bottom: 0.5em;
}
.block-forum h3 {
  margin-bottom: .5em;
}

/* Footer, Feed icon */
#footer {
/*   font-size: 0.92em; */
  text-align: center;
  border: none;
}
#footer .item-list ul {
  margin: 0;
  list-style: none;
}
#footer .item-list ul li {
  border-bottom: 1px solid rgba(255,255,255,0.03);
  padding: 3px 0 5px;
}
#footer .item-list ul li.last {
  border-bottom: 0;
}
#footer-inner {
  _height: 90px;
  min-height: 90px;
  background-size: 100%; /* CSS3 - one day browsers will support this */
}
#footer a {
  text-decoration: none;
  font-weight: 400;
}
#footer .block {
  padding: 10px 0 0;
}
#footer .region-footer .block {
  padding: 0;
}
#footer .block-title {
  text-align: left;
  padding: 5px 0 0 10px;
  color: #999;
  border-bottom: 0;
}
#footer .hs-ts .block-title {
  text-shadow: 0 1px 0 #000000;
}
#footer .block .block-content > ul.menu,
#footer .block .block-content-inner > ul.menu {
  padding: 0;
}
#footer ul.menu li {
}
#footer .region-footer .block-inner {
  padding: 10px 0;
}
#footer .four-4x25 {
  text-align: left;
}
.feed-icon {
  display: block;
  clear: both;
  margin: 15px 10px 5px;
  text-align: right;
}
#block-node-syndicate .block-title {
  padding: 5px 10px 4px 5px;
}
#block-node-syndicate .feed-icon {
  clear: none;
  float: left;
  height: 1em;
  margin: 1px 8px 0 0;
  text-align: left;
}
#block-node-syndicate .feed-icon img {
  height: 13px;
  width: 13px;
}
#umass-footer a:hover, #umass-footer a:focus {
    color: #c0c0c0;
}

/* Prevent overflowing content */
#content,
.nav,
#sidebar-first,
#sidebar-second,
#footer {
  overflow: visible;
  word-wrap: break-word; /* A very nice CSS3 property */
}

/* Pager */
ul.pager {
  padding: 15px 0 5px;
  margin: 0;
}
div.item-list ul.pager li {
  padding: 3px 8px;
  margin: 0 2px;
}
div.item-list ul.pager li,
div.item-list ul.pager li a {
  font-weight: 700;
  text-decoration: none;
}

/* Admin */
div.messages {
  margin-bottom: 10px;
  margin-top: 20px;
}
div.admin-panel h3 a {
/*   font-size: 1.33em; */
  color: #fff;
}
div.admin-panel {
  border: 0 none;
}
div.admin-panel a {
  font-weight: 400;
}
div.admin-panel .description {
  margin:0 0 3px;
  padding:2px 0 3px 10px;
}
div.admin-panel .body dl .description {
  margin:0 0 3px;
  padding:2px 0 3px;
}
#block-system-help {
  background: none;
  border: 0;
  margin: 5px 0;
  padding: 0;
}
#block-system-help .block-inner {
  padding: 0;
  margin: 0;
}
#block-system-help .block-content {
  padding: 4px 10px 8px;
}
ul.action-links li {
  list-style: none;
}
#palette .form-item {
  width: 24em;
}
.color-form label {
  width: 12em;
}

/* Image Galleries (deprecated?) */
ul.galleries li {
  border: solid 1px #aaa;
  background: #fff;
}
ul.galleries li h3 a {
/*   font-size: 1.1em; */
  font-weight: 700;
}
ul.images {
  border: solid 1px #aaa;
  overflow: hidden;
}
ul.images li {
  text-align: center;
}

/* Local task tabs */
ul.primary {
  border: 0;
  margin: 0 0 15px;
  padding: 0;
  float: right;
  line-height: 2.1em;
}
ul.primary li {
  white-space: normal;
  float: left;
  margin: 0 3px 0 0;
}
ul.primary li a {
  padding: 0.25em 0.6em 0.3em;
  margin-right: 0;
  white-space: nowrap;
}
ul.primary li a.active:hover,
ul.primary li a.active:focus {
  text-decoration: none;
}
ul.secondary {
  border-bottom: 0;
  margin: 5px 0;
  padding: 0.5em 0;
}
ul.secondary li {
  border-right: 0;
  padding: 0 1em 0 0; /* LTR */
}

/* Breadcrumb */
/* If the label is set to show in theme settings the label class is added */
#breadcrumb .breadcrumb-label {
/*   font-size: 1em; */
  display: inline;
}
#breadcrumb .breadcrumb-label:after {
  content: ":";
}
#breadcrumb .with-breadcrumb-label ol {
  display: inline;
}
#breadcrumb {
  margin-top: 15px;
  padding: 0;
}
#breadcrumb .breadcrumb-wrapper {
  padding: 3px 10px;
}
ol#crumbs {
  margin: 0;
  padding: 5px 0;
  overflow: hidden;
}
ol#crumbs li {
  list-style: none;
  display: inline;
  background: url(images/bcs.png) no-repeat right center;
  padding: 5px 15px 5px 10px;
}

ol#crumbs li span.crumb-sepreator {
  display: none;
}
ol#crumbs li.crumb-last {
  background-image: none;
}

/* Action links */
ul.action-links {
  clear: both;
  list-style: none;
  margin: 0;
  padding: 10px 0;
}
ul.action-links li a {
  background: url(images/add.png) no-repeat 2px center transparent;
  color: #444;
  font-weight: 700;
  padding: 2px 10px 3px 20px;
/*   font-size:1.1em; */
}
ul.action-links li a:hover,
ul.action-links li a:focus {
  color: #333;
}

/* Admin section */
div.admin-panel {
  border:1px solid #DDD;
  margin:0 0 .75em;
  padding:0;
}
div.admin .left,
div.admin .right {
  margin-left:0;
  margin-right:0;
  width:49%;
}
.admin-panel h3 {
  background:#EEE;
  color:#222;
  padding:0 0 0 .5em;
/*   font-size: 0.9em; */
  font-weight: 700;
}
.admin-panel .body {
  padding:0 1em;
}
.admin-panel p {
  margin:0;
  padding:1em 0 0;
}
.admin-panel ul,
.admin-panel ul.menu,
.admin-panel .item-list ul {
  padding:0 0 1em;
}
.admin-panel ul li {
  color:#555;
}
.admin-panel dl {
  margin:0;
  padding:1em 0;
}
.admin-panel dd {
  color:#555;
/*   font-size:.94em; */
  margin-left:0;
}
.admin .compact-link {
  margin:0 0 1em;
}
.page-admin-by-module .admin-panel .body p {
  color:#555;
/*   font-size:.94em; */
}
.more-help-link {
/*   font-size:.94em; */
  line-height:1.667em;
}
#permissions td.permission {
  padding-left:.5em;
}
#permissions td.module {
  background:#EEE;
  color:#222;
  font-weight:700;
}
tr .block {
  border:0;
}
.admin-panel dt {
  font-weight:400;
}
.admin-dependencies,
.admin-required,
.admin-enabled,
.admin-disabled,
.admin-missing {
  font-weight:700;
}
.admin-panel .item-list ul,
.page-admin-by-module .admin-panel .body {
  margin:0;
}

/* at-panels */
.at-panel {
}

#content-wrapper > .container {
  margin-top: 20px;
	padding-top: 20px;
}

section.breadcrumb,
#secondary-content-wrapper .block > .block-inner,
#breadcrumb-wrapper .block > .block-inner,
#content-wrapper .block > .block-inner,
#quadpanel-wrapper .block > .block-inner,
#tertiary-content-wrapper .block > .block-inner {
  background: transparent;
  -webkit-box-shadow: 0 3px 3px 3px rgba(0, 0, 0, 0.01);
  -moz-box-shadow: 0 3px 3px 3px rgba(0, 0, 0, 0.01);
  box-shadow: 0 3px 3px 3px rgba(0, 0, 0, 0.01);
}

.block-quicktabs .block-inner .block-inner,
.sidebar .block-quicktabs .block-inner .block-inner,
#block-system-main .block-inner {
  background: transparent !important;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
  -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}

.quicktabs-wrapper .block {
  margin-bottom: 0;
}

/* Social networking block */
.view-social-network ul {
  padding: 0;
  margin: 0;
}
.view-social-network ul li {
  list-style: none;
  display: inline;
}

/* Flexslider */
.flexslider {
  border: 0;
}

/* Nodes in blocks */
.block-nodeblock .field-type-image img {
  border: 0;
}

/* Panels */
.pane-block .node-teaser,
.pane-node .node-teaser {
  border: 0;
}
#menu-bar nav.block-nice-menus ul li {
	padding:5px 0;
	background:#dddddd;
}
