  /*
================================================================================
	Reset default styles to "level the browser playing field."
	Based on the work of Eric Meyer: http://meyerweb.com/eric/tools/css/reset/
	v2.0 | 20110126 License: none (public domain)
================================================================================ */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* 	Specify handling of HTML5 tags for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* 	Later on we'll set up some bulleted and numbered list styles,
but let's start by defaulting to no decoration. */
ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Begin custom styles. */

/*
========================================================================

	TYPOGRAPHY

	Following are the Open Sans webfonts we may use in this design.
	Keep in mind the fall-back to Arial, and mind your weights!

	'OpenSansLight'
	'OpenSansLightItalic'
	'OpenSansRegular'
	'OpenSansItalic'
	'OpenSansSemibold'
	'OpenSansSemiboldItalic'
	'OpenSansBold'
	'OpenSansBoldItalic'
	'OpenSansExtrabold'
	'OpenSansExtraboldItalic'

======================================================================== */

html {
  font-size: 10px; /* We can vary this value in the media queries, so that all rem-unit-based text scales proportionally. Setting the default size at 10 makes it easy to translate pixel-units to rem-units without a calculator. */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: Arial, Helvetica, sans-serif; /* Override with Open Sans for users who have font-smoothing enabled. */
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  background: #3e525b;
}

/* 	Using javascript, we add a class to the html tag
	according to the browser's support for font smoothing. */

html.hasFontSmoothing-true {
  font-family: "OpenSansRegular", Arial, Helvetica, sans-serif;
}

/*	Let's set the vertical rhythm at 21 pixels. Font-size x line-height = vertical rhythm. */

figcaption {
  font-size: 14px;
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.5;
  color: #777;
  font-style: italic;
}

figure {
  margin-bottom: 21px;
  margin-bottom: 2.1rem;
}

figcaption {
  background: #ffffff;
}

h1 {
  color: #3e525b;
  font-weight: normal;
}

h2,
h3,
h4,
h5,
h6 {
  color: #4b5a5f;
  font-weight: bold;
}

html.hasFontSmoothing-true h1 {
  font-weight: normal;
  font-family: "OpenSansLight", Arial, sans-serif;
}

html.hasFontSmoothing-true h2 {
  font-weight: normal;
  font-family: "OpenSansSemibold", Arial, sans-serif;
}

html.hasFontSmoothing-true h3,
html.hasFontSmoothing-true h4,
html.hasFontSmoothing-true h5,
html.hasFontSmoothing-true h6 {
  font-weight: normal;
  font-family: "OpenSansBold", Arial, sans-serif;
}

p,
ul,
ol,
div.bodyCopyIntro {
  font-size: 14px; /* Fall-back value for browsers that don't understand the rem unit */
  font-size: 1.4rem; /* Override for modern browsers. */
  line-height: 1.5;
  margin-bottom: 21px;
  margin-bottom: 2.1rem;
  color: #4a5e67;
}

.introductory-text p,
.introductory-text ul,
.introductory-text ol {
  font-size: 17px; /* Fall-back value for browsers that don't understand the rem unit */
  font-size: 1.7rem; /* Override for modern browsers. */
  line-height: 1.5;
  margin-bottom: 21px;
  margin-bottom: 2.1rem;
}

h1 {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.4; /* vertical rhythm / font size , and in this case, let's multiply it by 2 so the ascenders and descenders don't crash... 21 / 30 x 2 = 1.4 */
  margin-top: 32px;
  margin-top: 3.15rem; /* vertical rhythm x 1.5 */
  margin-bottom: 9px;
  margin-bottom: 1.05rem; /* vertical rhythm x 0.5 */
}

.headingcontainer h1 {
  font-size: 42px;
  font-size: 4.2rem;
  line-height: 1.4; /* vertical rhythm / font size , and in this case, let's multiply it by 2 so the ascenders and descenders don't crash... 21 / 30 x 2 = 1.4 */
  margin-top: 0;
  margin-bottom: 9px;
  margin-bottom: 1.05rem; /* vertical rhythm x 0.5 */
}

.withoutbreadcrumbs h1 {
  margin-bottom: 0;
}

.introductory-text h1,
.introductory-text h2 {
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1.4; /* vertical rhythm / font size , and in this case, let's multiply it by 2 so the ascenders and descenders don't crash... 21 / 30 x 2 = 1.4 */
  margin-top: 32px;
  margin-top: 3.15rem; /* vertical rhythm x 1.5 */
  margin-bottom: 9px;
  margin-bottom: 1.05rem; /* vertical rhythm x 0.5 */
}

h2,
h3 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.1666667;
  margin-top: 32px;
  margin-top: 3.15rem;
  margin-bottom: 9px;
  margin-bottom: 1.05rem;
}

.headingcontainer.withoutbreadcrumbs h2 {
  font-size: 25px;
  font-size: 2.5rem;
  color: #3d4e56;
  margin-top: 21px;
  margin-top: 2.1rem;
}

.headingcontainer.withoutbreadcrumbs h3 {
  font-size: 16px;
  font-size: 1.6rem;
  color: #3d4e56;
}

h4,
h5,
h6,
#footercontainer h3 {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 32px;
  margin-top: 3.15rem;
  margin-bottom: 9px;
  margin-bottom: 1.05rem;
}

em,
i {
  font-style: italic;
  font-weight: normal;
}

strong,
b {
  font-style: normal;
  font-weight: bold;
}

html.hasFontSmoothing-true strong,
html.hasFontSmoothing-true b {
  font-weight: normal;
  font-family: "OpenSansBold", Arial, sans-serif;
}

em strong,
strong em {
  font-style: italic;
  font-weight: bold;
}

html.hasFontSmoothing-true em strong,
html.hasFontSmoothing-true strong em {
  font-weight: normal;
  font-style: italic;
  font-family: "OpenSansBold", Arial, sans-serif;
}

hr {
  color: transparent;
  height: 0px;
  border-bottom: 1px solid #cccccc;
}

/*
========================================================================
	LINKS
======================================================================== */

a {
  cursor: pointer;
}

a:link {
  color: #1999d8;
  text-decoration: none;
}

a:visited {
  color: #2491cc;
}

a:hover {
  color: #495b65;
  text-decoration: underline;
}

a:active {
  color: #3e525b;
}

a:focus {
  color: #3e525b;
}

.wcm-homepage a:link,
.wcm-homepage a:visited {
  color: #465c67;
}

.wcm-homepage a:hover,
.wcm-homepage a:active {
  color: #319fec;
}

/* =========== CUSTOM TEXT SELECTION COLORS =========== */

::-moz-selection {
  color: #ffffff;
  background: #1997d4;
  text-shadow: none !important;
}

::selection {
  color: #ffffff;
  background: #1997d4;
  text-shadow: none !important;
}

small {
  font-size: 100%;
}

/*
========================================================================
	STYLES FOR FORMS
======================================================================== */

form {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 21px;
  margin-bottom: 2.1rem;
  color: #3e525b;
}

fieldset {
  padding: 0;
  font-size: 12px;
  font-size: 1.2rem;
}

legend {
  margin: 0;
  padding: 10px 5px 10px 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.55px;
  letter-spacing: 0.055rem;
  display: block;
  width: 96%;
  margin-left: -1px;
  margin-right: -1px;
}

html.hasFontSmoothing-true legend {
  font-weight: normal;
  font-family: "OpenSansBold", Arial, sans-serif;
}

form em,
form .required {
  /* Use for asterisks on required fields. */
  font-weight: bold;
  font-style: normal;
  color: #f00;
}

input, /* You might want to specify "types" here. */
textarea {
  padding: 0.4em;
  border-radius: 3px;
  border: 1px solid #dbdbdb;
  background: #fafafa;
  font-family: Verdana, Helvetica, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #557;
}

input[type="text"],
input[type="password"] {
  width: 96%;
}

input[type="checkbox"] {
  border: none;
}

textarea {
  width: 96%;
}

input[type="submit"],
input.downloadButton,
a.btn,
button.btn {
  padding: 5px 10px;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
  background: #8e979c;
  border: none;
  display: inline-block;
  width: auto;
  font-size: 12px;
  font-size: 1.2rem;
  webkit-box-shadow: none;
  box-shadow: none;
  text-align: center;
  margin-bottom: 1px;
}

html.hasFontSmoothing-true input[type="submit"],
html.hasFontSmoothing-true input.downloadButton,
html.hasFontSmoothing-true a.btn,
html.hasFontSmoothing-true button.btn {
  font-weight: normal;
  font-family: "OpenSansBold", Arial, Helvetica, sans-serif;
}

input[type="submit"]:hover,
input.downloadButton:hover,
a.btn:hover,
button.btn:hover {
  background: #1a96d4;
}

input:focus,
textarea:focus,
select:focus {
  background: #ffffff;
}

input[type="submit"]:focus,
input.downloadButton:focus,
a.btn:active,
button.btn:active,
a.btn:focus,
button.btn:focus {
  background: #495b65;
}

input[type="radio"],
input[type="checkbox"] {
  padding: none;
  background: none;
}

input[type="radio"],
input[type="checkbox"],
input[type="submit"],
select,
button {
  cursor: pointer;
}

input,
select {
  vertical-align: middle; /* Revisit */
}

.form_block {
  margin-bottom: 15px;
}

html {
  background: #ffffff;
}

/* Calendar date picker styles. */

.datePickerContainer {
  width: 164px; /* needed for proper user styling */
  font-size: 16px;
}

.calendarBodyContainer {
  width: 100%; /* needed for the explode effect (explain?) */
  background: #7591bc
    url(/struts2_static/dojo/src/widget/templates/images/dpBg.gif) top left
    repeat-x;
}

.calendarBodyContainer thead tr td {
  color: #293a4b;
  font: bold 0.75em Helvetica, Arial, Verdana, sans-serif;
  text-align: center;
  padding: 0.25em;
  background: url(/struts2_static/dojo/src/widget/templates/images/dpHorizLine.gif)
    bottom left repeat-x;
}

.calendarBodyContainer tbody tr td {
  color: #ffffff;
  font: bold 0.7em Helvetica, Arial, Verdana, sans-serif;
  text-align: center;
  padding: 0.4em;
  background: url(/struts2_static/dojo/src/widget/templates/images/dpVertLine.gif)
    top right repeat-y;
  cursor: pointer;
  cursor: hand;
}

.monthWrapper {
  padding-bottom: 2px;
  background: url(/struts2_static/dojo/src/widget/templates/images/dpHorizLine.gif)
    bottom left repeat-x;
}

.monthContainer {
  width: 100%;
}

.monthLabelContainer {
  text-align: center;
  font: bold 0.75em Helvetica, Arial, Verdana, sans-serif;
  background: url(/struts2_static/dojo/src/widget/templates/images/dpMonthBg.png)
    repeat-x top left !important;
  color: #293a4b;
  padding: 0.25em;
}

.monthCurve {
  width: 12px;
}

.monthCurveTL {
  background: url(/struts2_static/dojo/src/widget/templates/images/dpCurveTL.png)
    no-repeat top left !important;
}

.monthCurveTR {
  background: url(/struts2_static/dojo/src/widget/templates/images/dpCurveTR.png)
    no-repeat top right !important;
}

.yearWrapper {
  background: url(/struts2_static/dojo/src/widget/templates/images/dpHorizLineFoot.gif)
    top left repeat-x;
  padding-top: 2px;
}

.yearContainer {
  width: 100%;
}

.yearContainer td {
  background: url(/struts2_static/dojo/src/widget/templates/images/dpYearBg.png)
    top left repeat-x;
}

.yearContainer .yearLabel {
  margin: 0;
  padding: 0.45em 0 0.45em 0;
  color: #ffffff;
  font: bold 0.75em Helvetica, Arial, Verdana, sans-serif;
  text-align: center;
}

.curveBL {
  background: url(/struts2_static/dojo/src/widget/templates/images/dpCurveBL.png)
    bottom left no-repeat !important;
  width: 9px !important;
  padding: 0;
  margin: 0;
}

.curveBR {
  background: url(/struts2_static/dojo/src/widget/templates/images/dpCurveBR.png)
    bottom right no-repeat !important;
  width: 9px !important;
  padding: 0;
  margin: 0;
}

.previousMonth {
  background-color: #6782a8 !important;
}

.previousMonthDisabled {
  background-color: #a4a5a6 !important;
  cursor: default !important;
}

.currentMonthDisabled {
  background-color: #bbbbbc !important;
  cursor: default !important;
}

.nextMonth {
  background-color: #6782a8 !important;
}

.nextMonthDisabled {
  background-color: #a4a5a6 !important;
  cursor: default !important;
}

.currentDate {
  text-decoration: underline;
  font-style: italic;
}

.selectedDate {
  background-color: #ffffff !important;
  color: #6782a8 !important;
}

.yearLabel .selectedYear {
  padding: 0.2em;
  background-color: #9ec3fb !important;
}

.nextYear,
.previousYear {
  cursor: hand;
  padding: 0;
}

.nextYear {
  margin: 0 0 0 0.55em;
}

.previousYear {
  margin: 0 0.55em 0 0;
}

.incrementControl {
  cursor: hand;
  width: 1em;
}

.increase {
  float: right;
}

.decrease {
  float: left;
}

.lastColumn {
  background-image: none !important;
}

/* Font-sizing for old-school presentational "headings" */

div.title {
  font-size: 24px;
}

div.subtitle,
div.dzSubTitle,
#wcm_feeds .section-title,
#wcm_feeds .feeds-subscribe-header-row {
  font-size: 18px;
}

.smallSubtitle {
  font-size: 16px;
}

#wcm_feeds .section-content,
#wcm_feeds .section-content li a {
  font-size: 16px;
  margin-bottom: 15px;
}

.colapsecontrol {
  /* (sic) */
  font-size: 16px;
  margin-right: 3px;
}

#feeds-subscribe-table td {
  padding: 2px 4px;
  font-size: 16px !important;
}

/* ======= Hide all titles ======= */

#frame .title {
  display: none;
}
