/**
 * @file
 * Layout Styling (DIV Positioning)
 *
 * Define CSS classes to create a table-free, 3-column, 2-column, or single
 * column layout depending on whether blocks are enabled in the left or right
 * columns.
 *
 * This layout is based on the Zen Columns layout method.
 *   http://drupal.org/node/201428
 *
 * Only CSS that affects the layout (positioning) of major elements should be
 * listed here.  Such as:
 *   display, position, float, clear, width, height, min-width, min-height
 *   margin, border, padding, overflow
 */


/*
 * Body
 */
@import url(http://fonts.googleapis.com/css?family=Allura|Covered+By+Your+Grace);
/*
font-family: 'Allura', cursive;
font-family: 'Covered By Your Grace', cursive;
*/ 
 
body {
  /*background: url("../../images/bg.png") repeat-x scroll 0 0 #F3F5F4;*/
  font-size: 100%; /* Fixes exaggerated text resizing in IE6 and IE7 */
  color: #4C5951;
}

.body_footer {
	background: url("../../images/bg_footer.png") repeat-x scroll 0 0 transparent;
	height:79px;
	width:100%;
	float:left;
	position:relative;
}

.body_top {
	background: url("../../images/bg_header.png") no-repeat scroll 0 0 transparent;
	height:14px;
	width:960px;
	float:left;
	position:relative;
}

#skip-link,
#page {
  /*
   * To use a 12px font size on the page, delete the 14px declarations.
   * to use a 14px font size on the page, delete the 12px declarations.
   */

  /* Use a 12px base font size with a 16px line height */
  font-size: 0.75em; /* 16px x .75 = 12px */
  line-height: 1.333em; /* 12px x 1.333 = 16px */

  /* Use a 14px base font size with a 18px line height */
  font-size: 1em; /* 16px x .875 = 14px */
  line-height: 1.4em; /* 14px x 1.286 = 18px */
}

body,
caption,
th,
td,
input,
textarea,
select,
option,
legend,
fieldset {
  /* The following font family declarations are based on the Microsoft core web
   * fonts which are common fonts available on most computer systems. The DejaVu
   * fonts are commonly available on Linux systems where the MS fonts are less
   * common. Tahoma and Helvetica are also widely available.
   *
   * A user's web browser will look at the comma-separated list and will
   * attempt to use each font in turn until it finds one that is available
   * on the user's computer. The final "generic" font (sans-serif or serif)
   * hints at what type of font to use if the web browser doesn't find any
   * of the fonts in the list.

  font-family: "Times New Roman", Times, Georgia, "DejaVu Serif", serif;
  font-family: Times, "Times New Roman", Georgia, "DejaVu Serif", serif;
  font-family: Georgia, "Times New Roman", "DejaVu Serif", serif;

  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-family: Tahoma, Verdana, "DejaVu Sans", sans-serif;
  font-family: Helvetica, Arial, "Nimbus Sans L", sans-serif;
  font-family: Arial, Helvetica, "Nimbus Sans L", sans-serif;

  font-family: "Courier New", "DejaVu Sans Mono", monospace;

   */

  font-family: 'Abel', sans-serif;
}

pre,
code {
  font-size: 1.1em; /* Monospace fonts can be hard to read */
  font-family: "Courier New", "DejaVu Sans Mono", monospace;
}

/*
 * Headings
 */
h1 {
	background: none repeat scroll 0 0 #F3F5F4;
    color: #006DB7;
    font-family: 'Dosis',sans-serif;
    font-size: 2em;
    font-weight: normal;
    height: 62px;
    left: -20px;
    line-height: 57px;
    margin-bottom: 0.5em;
    margin-top: 0;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    width: 918px;
}

h2 {
	font-family:'Dosis', sans-serif;
	color: #006DB7;
    font-size: 1.5em;
    font-weight: normal;
    line-height: 1.3em;
    margin-bottom: 0.667em;
    margin-top: 0.667em;
}

h3 {
	font-family:'Dosis', sans-serif;
	color: #000000;
    font-size: 1.3em;
    font-weight: normal;
    line-height: 1.3em;
    margin-bottom: 0.769em;
    margin-top: 0.769em;
}

h4,
h5,
h6 {
  font-family:'Dosis', sans-serif;
  ont-size: 1.1em;
  line-height: 1.3em;
  margin-top: 0.909em; /* Equivalent to 1em in the page's base font: 1 / 1.1 = 0.909 */
  margin-bottom: 0.909em;
}

/*
 * Block-level elements
 */
p,
ul,
ol,
dl,
pre,
table,
fieldset {
  margin: 1em 0;
}

blockquote {
  margin: 1em 2em;
}

/*
 * Lists
 *
 * We need to standardize the list item indentation.
 */
ul,
ol {
  margin-left: 0;
  padding-left: 2em; /* LTR */
}

.block ul,
.item-list ul /* Drupal overrides */ {
  margin: 1em 0;
  padding: 0 0 0 2em; /* LTR */
}

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;
}

li {
  margin: 0;
  padding: 0;
}

.item-list ul li /* Drupal override */ {
  margin: 0;
  padding: 0;
  list-style: inherit;
}

ul.menu li,
li.expanded,
li.collapsed,
li.leaf /* Drupal override */ {
  margin: 0;
  padding: 0;
}

ul          { list-style-type: disc; }
ul ul       { list-style-type: circle; }
ul ul ul    { list-style-type: square; }
ul ul ul ul { list-style-type: circle; }
ol          { list-style-type: decimal; }
ol ol       { list-style-type: lower-alpha; }
ol ol ol    { list-style-type: decimal; }

dt {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0 0 0 2em;
  padding: 0;
}

/*
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
a:link {
	color: #4C5951;
    text-decoration: none;
}

a:visited {
	color: #4C5951;
    text-decoration: none;
}

a:hover,
a:focus {
	text-decoration:underline;
	color:#006DB7;
}

a:active {
}

/*
 * Tables
 *
 * Drupal provides table styling which is only useful for its admin section
 * forms, so we override this default CSS. (We set it back in forms.css.)
 */
table {
  border-collapse: collapse;
  /* width: 100%; */ /* Prevent cramped-looking tables */
}

th,
thead th,
tbody th {
  text-align: left; /* LTR */
  padding: 0;
  border-bottom: none;
}

tbody {
  border-top: none;
}

/*
 * Abbreviations
 */
abbr {
  border-bottom: 1px dotted #666;
  cursor: help;
  white-space: nowrap;
}

abbr.created /* Date-based "abbreviations" show computer-friendly timestamps which are not human-friendly. */ {
  border: none;
  cursor: auto;
  white-space: normal;
}

/*
 * Images
 */
img {
  border: 0;
}

/*
 * Horizontal rules
 */
hr {
  height: 1px;
  border: 1px solid #666;
}

/*
 * Forms
 */
form {
  margin: 0;
  padding: 0;
}

fieldset {
  margin: 1em 0;
  padding: 0.5em;
}

/* wireframes.css */

/**
 * @file
 * Wireframes Styling
 *
 * Add wireframes to the basic layout elements.
 */


.with-wireframes #header .section,
.with-wireframes #content .section,
.with-wireframes #navigation .section,
.with-wireframes .region-sidebar-first .section,
.with-wireframes .region-sidebar-second .section,
.with-wireframes #footer .section {
  margin: 1px;
  padding: 2px;
  border: 1px solid #ccc;
}

.with-wireframes .region-page-closure {
  margin-top: 1px;
  padding: 2px;
  border: 1px solid #ccc;
}

/* layout-fixed.css */

/**
 * @file
 * Layout Styling (DIV Positioning)
 *
 * Define CSS classes to create a table-free, 3-column, 2-column, or single
 * column layout depending on whether blocks are enabled in the left or right
 * columns.
 *
 * This layout is based on the Zen Columns layout method.
 *   http://drupal.org/node/201428
 *
 * Only CSS that affects the layout (positioning) of major elements should be
 * listed here.  Such as:
 *   display, position, float, clear, width, height, min-width, min-height
 *   margin, border, padding, overflow
 */


/*
 * Body
 */
body {
}

#page-wrapper,
.region-page-closure {
  /*
   * If you want to make the page a fixed width and centered in the viewport,
   * this is the standards-compliant way to do that. See also the ie6.css file
   * for the necessary IE5/IE6quirks hack to center a div.
   */
  margin-left: auto;
  margin-right: auto;
  width: 960px;
}

#page {
}

/*
 * Header
 */
#header {
}

#header .section {
}

#search-box {
}

.region-header {
   /* Clear the logo */
}

/*
 * Main (container for everything else)
 */
#main-wrapper {
  position: relative;
}

#main {
}

/*
 * Content
 */
#content,
.no-sidebars #content {
	clear: both;
    float: left;
    margin-left: 0;
    padding: 0;
    position: relative;
    width: 960px;
}

.sidebar-first #content {
  width: 760px;
  margin-left: 200px; /* LTR */ /* The width of .region-sidebar-first. */
  margin-right: -960px; /* LTR */ /* Negative value of #content's width + left margin. */
}

.front #main-wrapper #main #content{
    background: none repeat scroll 0 0 transparent;
    border: 0 none;
    clear: both;
    float: left;
    margin-left: 20px;
    margin-right: -760px;
    padding: 0;
    position: relative;
    width: 650px;
	margin-top: 0;
}

.sidebar-second #content {
	background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid #E9E9E9;
    clear: both;
    float: left;
    margin-left: 20px;
    margin-right: -760px;
    margin-top: 60px;
    padding: 20px;
    position: relative;
    width: 608px;
}



.two-sidebars #content {
  margin-left: 0;
    margin-right: 0;
    padding: 0;
    width: 960px;
}

#content .section {
  margin: 0;
  padding: 0;
}

/*
 * Navigation
 */
#navigation {
  clear: both;
    float: left;
    margin-left: 0;
    margin-right: -100%;
    padding: 0;
    width: 960px;
}

.with-navigation #content,
.with-navigation .region-sidebar-first,
.with-navigation .region-sidebar-second {
  margin-top: 81px; /* Set this to the same value as the navigation height above. */
}

#navigation .section {
}

#navigation ul /* Primary and secondary links */ {
  margin: 0;
  padding: 0;
  text-align: left; /* LTR */
}

#navigation li /* A simple method to get navigation links to appear in one line. */ {
  float: left; /* LTR */
  padding: 0 10px 0 0; /* LTR */
}

/*
 * First sidebar
 */
.region-sidebar-first {
  float: left; /* LTR */
  width: 200px;
  margin-left: 0; /* LTR */
  margin-right: -200px; /* LTR */ /* Negative value of .region-sidebar-first's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-first .section. */
}

.region-sidebar-first .section {
  margin: 0 20px 0 0; /* LTR */
  padding: 0;
}

/*
 * Second sidebar
 */
.region-sidebar-second {
  
    float: left;
    margin-left: 705px;
    margin-right: -960px;
    padding: 0;
    width: 230px;
}

.region-sidebar-second .section {
  margin: 0; /* LTR */
  padding: 0;
}

/*
 * Footer
 */
#footer {
}

#footer .section {
}

/*
 * Closure
 */
.region-page-closure /* See also the #page-wrapper declaration above that this div shares. */ {
}

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

#navigation {
  /* May need to be removed if using a dynamic drop-down menu */
}

/*
 * If a div.clearfix doesn't have any content after it and its bottom edge
 * touches the bottom of the viewport, Firefox and Safari will mistakenly
 * place several pixels worth of space between the bottom of the div and the
 * bottom of the viewport. Uncomment this CSS property to fix this.
 * Note: with some over-large content, this property might cause scrollbars
 * to appear on the #page-wrapper div.
 */
/*
#page-wrapper {
  overflow-y: hidden;
}
*/

/* page-backgrounds.css */

/**
 * @file
 * Page Background Styling
 *
 * The default layout method of Zen doesn't give themers equal-height columns.
 * However, equal-height columns are difficult to achieve and totally
 * unnecessary. Instead, use the Faux Columns method described in the following
 * ALA article:
 *   http://www.alistapart.com/articles/fauxcolumns/
 */


body {
}

#page-wrapper {
}

#page {
}

#header {
}

#header .section {
}

#main-wrapper {
}

#main {
}

#footer {
}

#footer .section {
}

/* tabs.css */

/**
 * @file
 * Tabs Styling
 *
 * Adds styles for the primary and secondary tabs.
 *
 * Compare this with default CSS found in the system module's stylesheet (a copy
 * of which is in drupal6-reference.css, line 510.)
 */


div.tabs {
  clear: both;
    float: left;
    margin: 0 0 5px;
    position: relative;
    width: 960px;
    z-index: 9;
}

ul.primary {
  margin: 0;
  padding: 0 0 0 10px; /* LTR */
  border-width: 0;
  list-style: none;
  white-space: nowrap;
  line-height: normal;
  background: url(../images/tab-bar.png) repeat-x left bottom;
}

ul.primary li {
  float: left; /* LTR */
  margin: 0;
  padding: 0;
}

ul.primary li a {
  display: block;
  height: 24px;
  margin: 0;
  padding: 0 0 0 5px; /* width of tab-left.png */
  border-width: 0;
  font-weight: bold;
  text-decoration: none;
  color: #777;
  background-color: transparent;
  background: url(../images/tab-left.png) no-repeat left -38px;
}

ul.primary li a .tab {
  display: block;
  height: 20px; /* 24px (parent) - 4px (padding) */
  margin: 0;
  padding: 4px 13px 0 6px;
  border-width: 0;
  line-height: 20px;
  background: url(../images/tab-right.png) no-repeat right -38px;
}

ul.primary li a:hover,
ul.primary li a:focus {
  border-width: 0;
  background-color: transparent;
  background: url(../images/tab-left.png) no-repeat left -76px;
}

ul.primary li a:hover .tab,
ul.primary li a:focus .tab {
  background: url(../images/tab-right.png) no-repeat right -76px;
}

ul.primary li.active a,
ul.primary li.active a:hover,
ul.primary li.active a:focus {
  border-width: 0;
  color: #000;
  background-color: transparent;
  background: url(../images/tab-left.png) no-repeat left 0;
}

ul.primary li.active a .tab,
ul.primary li.active a:hover .tab,
ul.primary li.active a:focus .tab {
  background: url(../images/tab-right.png) no-repeat right 0;
}

ul.secondary {
  margin: 0;
  padding: 0 0 0 5px; /* LTR */
  border-bottom: 1px solid #c0c0c0;
  list-style: none;
  white-space: nowrap;
  background: url(../images/tab-secondary-bg.png) repeat-x left bottom;
}

ul.secondary li {
  float: left; /* LTR */
  margin: 0 5px 0 0;
  padding: 5px 0;
  border-right: none; /* LTR */
}

ul.secondary a {
  display: block;
  height: 24px;
  margin: 0;
  padding: 0;
  border: 1px solid #c0c0c0;
  text-decoration: none;
  color: #777;
  background: url(../images/tab-secondary.png) repeat-x left -56px;
}

ul.secondary a .tab {
  display: block;
  height: 18px; /* 24px (parent) - 6px (padding) */
  margin: 0;
  padding: 3px 8px;
  line-height: 18px;
}

ul.secondary a:hover,
ul.secondary a:focus {
  background: url(../images/tab-secondary.png) repeat-x left bottom;
}

ul.secondary a.active,
ul.secondary a.active:hover,
ul.secondary a.active:focus {
  border: 1px solid #c0c0c0;
  color: #000;
  background: url(../images/tab-secondary.png) repeat-x left top;
}

/* messages.css */

/**
 * @file
 * Message Styling
 *
 * Sensible styling for Drupal's error/warning/status messages.
 */


div.messages,
div.status,
div.warning,
div.error /* Important messages (status, warning, and error) for the user */ {
  min-height: 21px;
  margin: 0 1em 5px 1em;
  border: 2px solid #ff7;
  padding: 5px 5px 5px 35px; /* LTR */
  color: #000;
  background-color: #ffc;
  background-image: url(../images/messages-status.png);
  background-repeat: no-repeat;
  background-position: 5px 5px; /* LTR */
}

div.status /* Normal priority messages */ {
}

div.warning /* Medium priority messages */ {
  border-color: #fc0;
  background-image: url(../images/messages-warning.png);
}

div.warning,
tr.warning {
  color: #000; /* Drupal core uses #220 */
  background-color: #ffc;
}

div.error /* High priority messages. See also the .error declaration in pages.css. */ {
  /* border: 1px solid #d77; */ /* Drupal core uses: 1px solid #d77 */
  border-color: #c00;
  background-image: url(../images/messages-error.png);
}

div.error,
tr.error {
  color: #900; /* Drupal core uses #200 */
  background-color: #fee;
}

div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}

/* pages.css */

/**
 * @file
 * Page Styling
 *
 * Style the markup found in page.tpl.php. Also includes some styling of
 * miscellaneous Drupal elements that appear in the $content variable, such as
 * ul.links, .pager, .more-link, etc.
 */


/*
 * Body
 */
body {
  margin: 0;
  padding: 0;
}

#page-wrapper {
	
}

#page {
}


/*
 * The skip navigation link will be completely hidden until a user tabs to the
 * link. See http://www.webaim.org/techniques/skipnav/
 */
#skip-link a,
#skip-link a:visited {
  position: absolute;
  display: block;
  left: 0;
  top: -500px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  text-align: center;
  background-color: #666;
  color: #fff;
}

#skip-link a:hover,
#skip-link a:active,
#skip-link a:focus {
  position: static;
  width: 100%;
  height: auto;
  padding: 2px 0 3px 0;
}

/*
 * Header
 */
#header {
    clear: both;
    float: none;
    height: 121px;
    position: relative;
    width: 960px;
}

#header .section {
}

#logo {
    visibility:hidden;
	display:none;
}

#logo img {
  vertical-align: bottom;
}

#name-and-slogan /* Wrapper for website name and slogan */ {
}

h1#site-name,
div#site-name /* The name of the website */ {
  margin: 0;
  font-size: 2em;
  line-height: 1.3em;
}

#site-name a:link,
#site-name a:visited {
  color: #000;
  text-decoration: none;
}

#site-name a:hover,
#site-name a:focus {
  text-decoration: underline;
}

#site-slogan /* The slogan (or tagline) of a website */ {
}

.region-header /* Wrapper for any blocks placed in the header region */ {
	float: right;
    position: relative;
    width: 300px;
}

/*
 * Main (container for everything else)
 */
#main-wrapper {
	padding-bottom: 30px;
	
	float: left;
    left: 0;
    position: relative;
    top: 0;
    width: 960px;
}

#main-wrapper_bottom {
	 background: url("../../images/footerTopShadow.png") repeat-x scroll 0 bottom transparent;
    float: left;
    height: 54px;
    left: 0;
    margin: 0 auto 15px;
    position: relative;
    top: 0;
    width: 960px;
}

.front #main-wrapper {
    padding-bottom: 30px;
	background-color: #FFFFFF;
    border-left: 1px solid #E3E0DF;
    border-right: 1px solid #E3E0DF;
}

#main {
}

/*
 * Content
 */
#content {
}

#content .section {
}

#mission /* The mission statement of the site (displayed on homepage) */ {
}

.region-content-top /* Wrapper for any blocks placed in the "content top" region */ {
}

.bread {	
	float: left;
    font-size: 0.9em;
    font-style: italic;
    height: 34px;
    left: 0;
    padding: 0 20px;
    position: relative;
    top: 8px;
    width: 920px;
	height: 20px;
	line-height: 18px;
}

.breadcrumb /* The path to the current page in the form of a list of links */ {
  
}

.breadcrumb a:link,
.breadcrumb a:visited {
	color: #5E6E66;
    float: left;
    font-family: 'Abel',sans-serif;
    margin-right: 8px;
    position: relative;
    text-align: left;
    
}

.breadcrumb a:hover {
	color:#000;
	text-decoration:underline;
}

.breadcrumb

h1.title, /* The title of the page */
h2.title, /* Block title or the title of a piece of content when it is given in a list of content */
h3.title /* Comment title */ {
  margin: 0;
}

tr.even /* Some tables have rows marked even or odd. */ {
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

tr.odd {
  /* background-color: #eee; */ /* Drupal core uses a #eee background */
}

div.messages /* Important messages (status, warning, and error) for the user. See also the declarations in messages.css. */ {
}

div.status /* Normal priority messages */ {
}

div.warning,
tr.warning /* Medium priority messages */ {
  /* border: 1px solid #f0c020; */ /* Drupal core uses: 1px solid #f0c020 */
}

div.error,
tr.error /* High priority messages. See also the .error declaration below. */ {
}

.error /* Errors that are separate from div.messages status messages. */ {
  /* color: #e55; */ /* Drupal core uses a #e55 background */
}

.warning /* Warnings that are separate from div.messages status messages. */ {
  /* color: #e09010; */ /* Drupal core uses a #e09010 background */
}

div.tabs /* See also the tabs.css file. */ {
}

.help /* Help text on a page */ {
  margin: 1em 0;
}

.more-help-link /* Link to more help */ {
  font-size: 0.85em;
  text-align: right;
}

.not-front #content-area /* Wrapper for the actual page content */ {
	color: #6C6C6C;
    float: left;
    position: relative;
    width: 960px;
}

ul.links /* List of links */ {
  margin: 1em 0;
  padding: 0;
}

ul.links.inline {
  margin: 0;
  display: inline;
}

ul.links li {
  display: inline;
  list-style-type: none;
  padding: 0 0.5em;
}

.pager /* A list of page numbers when more than 1 page of content is available */ {
  clear: both;
  margin: 1em 0;
  text-align: center;
}

.pager a,
.pager strong.pager-current /* Each page number in the pager list */ {
  padding: 0.5em;
}

.feed-icons /* The links to the RSS or Atom feeds for the current list of content */ {
  margin: 1em 0;
}

.more-link /* Aggregator, blog, and forum more link */ {
  text-align: right; /* LTR */
}

.region-content-bottom /* Wrapper for any blocks placed in the "content bottom" region */ {
}

/*
 * First sidebar (on left in LTR languages, on right in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-first
 * (see the layout.css file.)
 */
.region-sidebar-first {
}

.region-sidebar-first .section {
}

/*
 * Second sidebar (on right in LTR languages, on left in RTL)
 *
 * Remember to NOT add padding or margin to your .region-sidebar-second
 * (see the layout.css file.)
 */
.region-sidebar-second {
}

.region-sidebar-second .block {
	background:#FFF;
}

.region-sidebar-second .section {
}

/*
 * Footer
 */
#footer {
}

#footer .section {
}

#footer-message /* Wrapper for the footer message from Drupal's "Site information"
                   and for any blocks placed in the footer region */ {
}

.region-footer {
}

/*
 * Closure
 */
.region-page-closure /* Wrapper for any blocks placed in the closure region */ {
}

/*
 * Drupal boxes
 *
 * Wrapper for Comment form, Comment viewing options, Menu admin, and
 * Search results.
 */
.box /* Wrapper for box */ {
}

.box h2 /* Box title */ {
}

.box .content /* Box's content wrapper */ {
}

/*
 * Markup free clearing (See: http://www.positioniseverything.net/easyclearing.html )
 */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be a collapsible fieldset that will be expanded with a click
 * from a user. The effect of this class can be toggled with the jQuery show()
 * and hide() functions.
 */
.element-hidden {
  display: none;
}

/**
 * Hide elements visually, but keep them available for screen-readers.
 *
 * Used for information required for screen-reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user. Must
 * not be used for focusable elements (such as links and form elements) as this
 * causes issues for keyboard only or voice recognition users. "!important" is
 * used to prevent unintentional overrides.
 */
.element-invisible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

/* block-editing.css */

/**
 * @file
 * Zen's rollover edit links for blocks.
 */


div.block.with-block-editing {
  position: relative;
}

div.block.with-block-editing div.edit {
  display: none;
  position: absolute;
  right: 0; /* LTR */
  top: 0;
  z-index: 40;
  border: 1px solid #eee;
  padding: 0 2px;
  font-size: 0.75em;
  background-color: #fff;
}

div.block.with-block-editing:hover div.edit {
  display: block;
}

/* blocks.css */

/**
 * @file
 * Block Styling
 */


.block /* Block wrapper */ {
	color: #6C6C6C;
    float: left;
    margin-bottom: 1em;
    position: relative;

}

.block.first /* The first block in the region */ {
}

.block.last /* The last block in the region */ {
}

.block.region-odd /* Zebra striping for each block in the region */ {
}

.block.region-even /* Zebra striping for each block in the region */ {
}

.block.odd /* Zebra striping independent of each region */ {
}

.block.even /* Zebra striping independent of each region */ {
}

.region-count-1 /* Incremental count for each block in the region */ {
}

.count-1 /* Incremental count independent of each region */ {
}

.block h2.title /* Block title */ {
	background: url("../../images/bg_block_tittle.png") repeat-x scroll 0 0 transparent;
    color: #303030;
    font-family: 'Droid Serif',serif;
    font-size: 1.3em;
    font-weight: normal;
    height: 51px;
    line-height: 51px;
    margin-bottom: 5px;
    padding: 0 10px;
    width: 210px;
}

#block-block-6 h2.title {
	width:590px;
}

.block .content /* Block's content wrapper */ {
}

#block-af_core-0 .content  {
	padding:10px;
}

#block-af_core-0 h3 {
	color: #303030;
    font-family: 'Droid Sans',serif;
    font-size: 1em;
    font-weight: normal;
    clear:both;
    padding: 0 10px;
    width: 210px;
	position:relative;
	float:left;
	margin:15px 0 0;
}

#block-af_core-0 .fecha {
	background: url("../../images/bg_cifras_fecha.png") no-repeat scroll 0 0 transparent;
    color: #006DB7;
    float: left;
    font-weight: bold;
    height: 28px;
    padding-left: 11px;
    padding-top: 16px;
    position: relative;
    width: 195px;	
}

#block-af_core-0 .item {
    background: url("../../images/bullet.png") no-repeat scroll 0 4px transparent;
    color: #898888;
    float: left;
    font-size: 0.9em;
    font-style: italic;
    font-weight: bold;
    margin-bottom: 0;
    margin-left: 12px;
    margin-top: 5px;
    padding: 0 0 0 18px;
    position: relative;
    width: 180px;
}

#block-af_core-0  .mas {
	float: left;
    margin-left: 13px;
    margin-top: 13px;
    position: relative;
}

#block-af_core-0 .item span {
	font-weight: normal;
	font-style:normal;
	margin-right:5px;
}

#block-af_core-0 {
	border-left: 1px solid #E9E9E9;
	border-right: 1px solid #E9E9E9;
	border-bottom: 1px solid #E9E9E9;
	float: left;
    padding-bottom: 20px;
    position: relative;
    width: 230px;
}

#block-block-5 {
	background: url("../../images/bg_rentabilidad.png") no-repeat scroll 0 4px transparent;
    float: left;
    height: 100px;
    margin-bottom: 20px;
    position: relative;
    width: 230px;
}

#block-block-5 .cifras {
	float:left;
	position:relative;
}

#block-block-5 .rent {
	float: left;
    font-family: 'Droid Sans',serif;
    margin-left: 14px;
    margin-top: 15px;
    position: relative;
    width: 95px;
}

#block-block-5 .boton {
	 clear: both;
    float: left;
    margin-left: 14px;
    margin-top: 10px;
    position: relative;
}

#block-af_core-1 {
	border-left: 1px solid #E9E9E9;
	border-right: 1px solid #E9E9E9;
	border-bottom: 1px solid #E9E9E9;
	float: left;
    padding-bottom: 20px;
    position: relative;
    width: 230px;
}

#block-af_core-1 .content  {
	padding:10px;
}

#block-af_core-1 .cifras {
	float:left;
	position:relative;
}

#block-af_core-1 ul.indicadores {
	float: left;
    margin: 15px 0 0 5px;
    padding: 0;
    position: relative;
    width: 190px;
}

#block-af_core-1 ul.indicadores li {
	border-bottom: 1px solid #CCCCCC;
    clear: both;
    float: left;
    font-size: 0.9em;
    list-style: none outside none;
    margin: 0 0 5px;
    padding: 0 0 5px;
    position: relative;
    width: 190px;
}

#block-af_core-1 ul.indicadores li .indice {
	float:left;
	position:relative;
	color:#000000;
	
}

#block-af_core-1 ul.indicadores li .valor {
	float:right;
	position:relative;
	color:#666666;
}

#block-af_core-1 .date {
	background: url("../../images/bg_cifras_fecha.png") no-repeat scroll 0 0 transparent;
    color: #006DB7;
    float: left;
    font-weight: bold;
    height: 28px;
    padding-left: 11px;
    padding-top: 16px;
    position: relative;
    width: 195px;	
}



#block-aggregator-category-1 /* Block for the latest news items in the first category */ {
}

#block-aggregator-feed-1 /* Block for the latest news items in the first feed */ {
}

#block-block-1 /* First administrator-defined block */ {
	float: right;
    font-size: 0.8em;
    line-height: 1.4em;
    margin-right: 30px;
    margin-top: 11px;
}

#block-blog-0 /* "Recent blog posts" block */ {
}

#block-book-0 /* "Book navigation" block for the current book's table of contents */ {
}

#block-comment-0 /* "Recent comments" block */ {
}

#block-forum-0 /* "Active forum topics" block */ {
}

#block-forum-1 /* "New forum topics" block */ {
}

#block-menu-primary-links /* "Primary links" block */ {
}

#block-menu-secondary-links /* "Secondary links" block */ {
}

#block-node-0 /* "Syndicate" block for primary RSS feed */ {
}

#block-poll-0 /* "Most recent poll" block */ {
}

#block-profile-0 /* "Author information" block for the profile of the page's author */ {
}

#block-search-0 /* "Search form" block */ {
    background: url("../../images/bg_search.png") no-repeat scroll 0 0 transparent;
	float: right;
    height: 29px;
    margin-right: 32px;
    margin-top: 36px;
    position: relative;
	width:230px;
}

#block-search-0 input {
	background: none repeat scroll 0 0 transparent;
    border: medium none;
    padding: 7px;
    width: 156px;
}

#block-search-0 input.form-submit {
	font-family: 'Covered By Your Grace', cursive;
	background: none repeat scroll 0 0 transparent;
    border: medium none;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 0.7em;
    font-weight: bold;
    margin-left: 4px;
    margin-top: 8px;
    padding: 0;
    position: absolute;
    text-transform: uppercase;
    width: 53px;
}

#block-statistics-0 /* "Popular content" block */ {
}

#block-user-0 /* "User login form" block */ {
}

#block-user-1 /* "Navigation" block for Drupal navigation menu */ {
}

#block-user-2 /* "Who's new" block for a list of the newest users */ {
}

#block-user-3 /* "Who's online" block for a list of the online users */ {
}

/* navigation.css */

/**
 * @file
 * Navigation Styling
 *
 * Default menu styling (ul.menu) is defined in system-menus.css.
 */


/*
 * The active item in a Drupal menu
 */
li a.active {
  color: #000;
}

/*
 * Navigation bar
 */
#navigation {
}

.region-navigation {
}

/*
 * Primary and Secondary menu links
 */
#main-menu {
}






/* fin menu footer*/

/* footer 2 */
#block-block-2 {
	background: url("../../images/bg_f1.png") repeat-x scroll 0 0 transparent;
    float: left;
    font-size: 0.8em;
    height: 40px;
    margin-bottom: 20px;
    margin-top: 0;
    position: relative;
    text-align: right;
    width: 960px;
}

#block-block-2 p {
	color: #FFFFFF;
    float: right;
    margin: 13px 20px 0 0;
    padding: 0;
    position: relative;
}

/* fin footer 2*/

ul.nice-menu-down li {
    border-top: 0;
}

#secondary-menu {
}

/*
 * Menu blocks
 */
.block-menu {
}

/*
 * "Menu block" blocks. See http://drupal.org/project/menu_block
 */
.block-menu_block {
}

/* views-styles.css */

/**
 * @file
 * Views Styling
 */



/* nodes.css */

/**
 * @file
 * Node Styling
 *
 * Style anything that isn't in the $content variable.
 */


.node /* Node wrapper */ {
}

.node-sticky /* A sticky node (displayed before others in a list) */ {
}

.node-unpublished /* Unpublished nodes */ {
  /* background-color: #fff4f4; */ /* Drupal core uses a #fff4f4 background */
}

.node-unpublished div.unpublished,
.comment-unpublished div.unpublished /* The word "Unpublished" displayed underneath the content. */ {
  height: 0;
  overflow: visible;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  word-wrap: break-word; /* A very nice CSS3 property */
}

.node-by-viewer /* A node created by the current user */ {
}

.node-teaser /* A node displayed as teaser */ {
}

/* All nodes are given a node-type-FOO class that describes the type of
 * content that it is. If you create a new content type called
 * "my-custom-type", it will receive a "node-type-my-custom-type" class.
 */
.node-type-page /* Page content node */ {
}

.node-type-story /* Story content node */ {
}

.node h2.title /* Node title */ {
}

.marker /* "New" or "Updated" marker for content that is new or updated for the current user */ {
  color: #c00;
}

.node .picture /* The picture of the node author */ {
}

.node.node-unpublished .picture,
.comment.comment-unpublished .picture {
  position: relative; /* Otherwise floated pictures will appear below the "Unpublished" text. */
}

.node .meta /* Wrapper for submitted and terms data */ {
}

.node .submitted /* The "posted by" information */ {
}

.node .terms /* Node terms (taxonomy) */ {
}

.node .content /* Node's content wrapper */ {
}

.node ul.links /* Node links. See also the ul.links declaration in the pages.css. */ {
}

.preview .node /* Preview of the content before submitting new or updated content */ {
  /* background-color: #ffffea; */ /* Drupal core uses a #ffffea background */
}

/* comments.css */

/**
 * @file
 * Comment Styling
 */


#comments /* Wrapper for the list of comments and its title */ {
  margin: 1em 0;
}

#comments h2.title /* Heading for the list of comments */ {
}

.comment /* Wrapper for a single comment */ {
}

.comment-preview /* Preview of the comment before submitting new or updated comment */ {
}

.comment.new /* A new comment since the user last viewed the page. */ {
}

.comment.first /* The first comment in the list of comments */ {
}

.comment.last /* The last comment in the list of comments */ {
}

.comment.odd /* An odd-numbered comment in the list of comments */ {
}

.comment.even /* An even-numbered comment in the list of comments */ {
}

.comment-unpublished /* Unpublished comments */ {
  /* background-color: #fff4f4; */ /* Drupal core uses a #fff4f4 background */
}

.comment-unpublished div.unpublished /* The word "Unpublished" displayed underneath the content. See also the div.unpublished declaration in the nodes.css. */ {
}

.comment-by-anonymous /* A comment created by an anonymous user */ {
}

.comment-by-node-author /* A comment created by the node's author */ {
}

.comment-by-viewer /* A comment created by the current user */ {
}

.comment h3.title /* Comment title */ {
}

.new /* "New" marker for comments that are new for the current user */ {
  color: #c00;
}

.comment .picture /* The picture of the comment author */ {
}

.comment .submitted /* The "posted by" information */ {
}

.comment .content /* Comment's content wrapper */ {
}

.comment .user-signature /* The user's signature */ {
}

.comment ul.links /* Comment links. See also the ul.links declaration in the pages.css. */ {
}

.indented /* Nested comments are indented */ {
  /* margin-left: 25px; */ /* Drupal core uses a 25px left margin */
}

.preview .comment /* Preview of the comment before submitting new or updated comment */ {
  /* background-color: #ffffea; */ /* Drupal core uses a #ffffea background */
}

/* forms.css */

/**
 * @file
 * Form Styling
 */


.form-item,
.form-checkboxes,
.form-radios /* Wrapper for a form element (or group of form elements) and its label */ {
  margin: 1em 0;
}

.form-item input.error,
.form-item textarea.error,
.form-item select.error /* Highlight the form elements that caused a form submission error */ {
  border: 2px solid #c00;
}

.form-item label /* The label for a form element */ {
  display: block;
  font-weight: bold;
}

.form-item label.option /* The label for a radio button or checkbox */ {
  display: inline;
  font-weight: normal;
}

.form-required /* The part of the label that indicates a required field */ {
  color: #c00;
}

.form-item .description /* The descriptive help text (separate from the label) */ {
  font-size: 0.85em;
}

.form-checkboxes .form-item,
.form-radios .form-item /* Pack groups of checkboxes and radio buttons closer together */ {
  margin: 0.4em 0;
}

.form-submit /* The submit button */ {
}

.container-inline div,
.container-inline label /* Inline labels and form divs */ {
  display: inline;
}

.tips /* Tips for Drupal's input formats */ {
}


/*
 * Search (search-theme-form.tpl.php)
 */
#search-box /* Wrapper for the search form */ {
}

#edit-search-theme-form-1-wrapper label /* Label that says "Search this site:" */ {
  display: none;
}


/*
 * Search (search-block-form.tpl.php)
 */
#search-block-form /* Wrapper for the search form */ {
}

#edit-search-block-form-1-wrapper label /* Label that says "Search this site:" */ {
  display: none;
}


/*
 * Drupal's default login form block
 */
#user-login-form {
  text-align: left; /* LTR */
}


/*
 * OpenID
 *
 * The default styling for the OpenID login link seems to assume Garland's
 * styling of list items.
 */

#user-login-form ul /* OpenID creates a new ul above the login form's links. */ {
  margin-bottom: 0; /* Position OpenID's ul next to the rest of the links. */
}

#user-login-form li.openid-link /* The "Log in using OpenID" link. */ {
  margin-top: 1em;
  margin-left: -20px; /* LTR */ /* Un-do some of the padding on the ul list. */
}

#user-login-form li.user-link /* The "Cancel OpenID login" link. */ {
  margin-top: 1em;
}

#user-login ul {
  margin: 1em 0;
}

#user-login li.openid-link,
#user-login li.user-link /* The OpenID links on the /user form. */ {
  margin-left: -2em; /* LTR */ /* Un-do all of the padding on the ul list. */
}


/*
 * Drupal admin tables
 *
 * We overrode these styles in html-elements.css, but restore them for the admin
 * section of the site.
 */

form tbody {
  border-top: 1px solid #ccc;
}

form th,
form thead th {
  text-align: left; /* LTR */
  padding-right: 1em; /* LTR */
  border-bottom: 3px solid #ccc;
}

form tbody th {
  border-bottom: 1px solid #ccc;
}

/* fields.css */

/**
 * @file
 * Field Styling
 */


/*
 * Field types
 */

.field /* Wrapper for any CCK field. */ {
}

.field-type-datetime /* Always use "datetime" when creating new CCK date fields. "date" and "datestamp" are legacy types. */ {
}

.field-type-filefield /* Field from filefield module */ {
}

.field-type-nodereference {
}

.field-type-number-decimal {
}

.field-type-number-float {
}

.field-type-number-integer {
}

.field-type-text {
}

.field-type-userreference {
}


/*
 * Named fields
 */

.field-field-FIELDNAME /* Underscores in field name are replaced with dashes. */ {
}

/*
 * Slider del home
 */
#slide{
	position:relative;
	float:left;
	width:650px;
}

#slide ul{
	height: 410px;
    overflow: hidden;
    width: 650px;
    margin: 0;
    padding: 0;
}

#slide ul li {
    float: left;
    margin: 0;
    padding: 0;
    position: relative;
    width: 650px;
}

#slide .buttons {
    bottom: 114px;
    position: absolute;
    right: 30px;
}

#slide .buttons a:link,
#slide .buttons a:visited {
	color: #666666;
    font-size: 0.9em;
    font-weight: normal;
    text-decoration: none;
}

#slide .buttons a:hover {
	text-decoration:none;
}

#slide .buttons .active a {
	color:#000;
	font-weight:normal;
}


#slide .button-page{
	margin:1px;
	padding:5px 10px;
	background-color:#FFF;
	float:left;
}
#slide .active{
	opacity:0.8;
	filter:alpha(opacity=80); /* For IE8 and earlier */
}


#slide .info-img {
    background: url("../../images/bg_texto.png") repeat scroll 0 0 transparent;
    color: #6C6C6C;
    height: 95px;
    margin: -119px 0 0;
    
    overflow: hidden;
    padding: 10px;
    position: relative;
    width: 630px;
}

#slide .info-img h3 {
	color: #000000;
    margin: 5px 0;
    padding: 0;
}

#slide .info-img h3 a:link,
#slide .info-img h3 a:visited {
	color: #000000;
    font-family: 'Covered By Your Grace', cursive;
    font-size: 1.3em;
    font-weight: normal;
    text-decoration: none;
	
	
}

#slide .info-img h3 a:hover {

}

#slide .info-img .desc {
	float: left;
    font-size: 0.9em;
    position: relative;
    width: 450px;
}

#slide .info-img .desc p {
	margin:0;
}

#slide .info-img .see-more {
    background: url("../../images/bg_buttom.png") repeat-x scroll 0 0 transparent;
    float: right;
    height: 29px;
    line-height: 24px;
    margin-right: 22px;
    margin-top: 5px;
    padding: 3px 0 0;
    position: relative;
    text-align: center;
    width: 85px;
	font-weight:bold;
}

#slide .info-img .see-more a:link,
#slide .info-img .see-more a:visited {
	color:#fff;
	text-decoration:none;
}


#slide .info-img .see-more a:hover {
	color:#fff;
	cursor:pointer;
}

#slide .emvideo{
	position:absolute;
	top:30px;
	left:30px;
}

.logos_afp {
	float: left;
    position: relative;
}

.logos_afp ul { 
	float: left;
    margin: 0;
    padding: 0;
    width: 608px;
}

.logos_afp ul li {
	border: 1px dotted #CCCCCC;
    float: left;
    font-size: 0.9em;
    height: 145px;
    list-style: none outside none;
    margin: 0 30px 20px;
    padding: 15px;
    position: relative;
    text-align: center;
    width: 210px;
}

.personaje {
	float:left;
	position:relative;
	margin-top:10px;
	padding-top:10px;
	border-top: 1px dotted #CCCCCC;
}

.personaje h3 {
	margin:0;
}

/* publicaciones */
.publicados {
	float: left;
    position: relative;
}

.publicados ul { 
	margin:0 0 0 30px;
	padding:0;
}

.publicados ul li {
	clear: both;
    color: #FF9900;
    float: left;
    list-style: square outside none;
    position: relative;
}

.publicados ul li p {
	color: #6C6C6C;
    font-size: 0.9em;
}

.publicados label {
	clear: both;
    float: left;
    font-size: 0.9em;
    font-weight: bold;
    margin-bottom: 5px;
    margin-left: 17px;
    position: relative;
}

.publicados select {
	border: 1px solid #CCCCCC;
    float: left;
    margin-bottom: 20px;
    margin-left: 17px;
    padding: 5px;
    position: relative;
}

.publicados input.form-submit {
    background: url("../../images/bg_buttom.png") repeat-x scroll 0 0 transparent;
    border: medium none;
    color: #FFFFFF;
    float: left;
    font-weight: bold;
    height: 29px;
    line-height: 19px;
    margin-left: 0;
    margin-top: 23px !important;
    padding: 0;
    position: relative;
    text-align: center;
    width: 85px;
	cursor:pointer;
}

.publicados ul li h2 {
	margin:0;
	padding:0;
	font-size:1.2em;
}

.publicados ul li a:link,
.publicados ul li a:visited {
	color:#004499;
	text-decoration:none;
}

.publicados ul li a:hover {
	text-decoration:underline;
}
/* fin publicaciones */

.ver_video {
    background: url("../../images/bg_buttom.png") repeat-x scroll 0 0 transparent;
    float: left;
    font-weight: bold;
    height: 29px;
    line-height: 24px;
    margin-right: 22px;
    margin-top: 5px;
    padding: 3px 0 0;
    position: relative;
    text-align: center;
    width: 85px;
}

.ver_video a:link, 
.ver_video a:visited {
    color: #FFFFFF;
    text-decoration: none;
}

.ver_video a:hover { text-decoration:none; }

/* preguntas frecuentes FAQ */

.faq h2 {
	font-size:1em;
}

/* fin preguntas frecuentes */

.node-type-eventos .field-type-date {
    border: 1px dotted #CCCCCC;
    float: left;
    font-weight: bold;
    margin-bottom: 20px;
    margin-right: 15px;
    margin-top: 17px;
    padding: 12px;
    text-align: center;
    width: 583px;
}

/* bloques bottom */
.bottom_bloques{
	clear: both;
    float: left;
    margin-bottom: 18px;
    margin-top: 20px;
    padding: 0 30px;
    position: relative;
    width: 900px;
}

.bottom_bloques .b1 {
	float:left;
	position:relative;
	width:288px;
	border: 1px solid #F0F0F0;
	border-top:0;
	min-height: 270px;
}
.bottom_bloques .b2 {
	float:left;
	position:relative;
	width:288px;
	border: 1px solid #F0F0F0;
	border-top:0;
	margin:0 15px;
	min-height: 270px;
}
.bottom_bloques .b3 {
	float:left;
	position:relative;
	width:288px;
	border: 1px solid #F0F0F0;
	border-top:0;
	min-height: 270px;
}

.bottom_bloques h2.title {
    background: url("../../images/bg_block_content_tittle.png") repeat-x scroll 0 0 transparent;
    color: #004890;
    font-family: 'Droid Serif',serif;
    font-size: 1.2em;
    font-weight: normal;
    height: 51px;
    line-height: 51px;
    margin-bottom: 5px;
    padding: 0 10px;
    width: 268px;
}

.bottom_bloques .content {
	float: left;
    font-size: 0.9em;
    padding: 0 10px;
    position: relative;
    text-align: justify;
    width: 268px;
}

/* fin bloques bottom*/

.content_bloques {
	float: left;
    margin-top: 12px;
    min-height: 215px;
    position: relative;
    width: 650px;
}

.content_bloques h2.title {
    background: url("../../images/bg_block_tittle.png") repeat-x scroll 0 0 transparent;
    color: #000;
    font-family: 'Droid Serif',serif;
    font-size: 1.2em;
    font-weight: normal;
    height: 51px;
    line-height: 51px;
    margin-bottom: 5px;
    padding: 0 10px;
    width: 295px;
}

.content_bloques .content {
	float: left;
    font-size: 0.9em;
    padding: 0 10px;
    position: relative;
    width: 295px;
}

#block-block-7 .content .text { font-size: 0.9em; }

#block-block-7 .content .text a { font-size: 1.2em; }

.content_bloques .views-field-title {
	float: left;
    height: 75px;
    position: relative;
}

.content_bloques .views-field-title a:link,
.content_bloques .views-field-title a:visited {
	color:#004990;
}

.content_bloques .views-field-title a:hover {
	color:#FF9900;
}

.content_bloques .b1 {
	float: left;
    position: relative;
    width: 315px;
	border: 1px solid #F0F0F0;
	border-top:0;
	min-height: 410px;
}

.content_bloques .b2 {
	float: right;
    position: relative;
    width: 315px;
	border: 1px solid #F0F0F0;
	border-top:0;
	min-height: 430px;
}

.eventos-home {

}

.eventos-home .jcarousel-skin-default .jcarousel-container-horizontal {
    float: left;
    margin: auto;
    min-height: 360px;
    padding: 0;
    width: 295px;
}

.eventos-home .jcarousel-skin-default .jcarousel-clip-horizontal {
    overflow: hidden;
    width: 295px;
}

.eventos-home .jcarousel-skin-default .jcarousel-item {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 0 solid #CCCCCC;
    min-height: 360px;
}



.eventos-home .jcarousel-skin-default .jcarousel-item-horizontal  {
    float: left;
    list-style: none outside none;
    margin: 0;
    width: 295px;
	text-align: left;
}

.eventos-home .jcarousel-skin-default .jcarousel-prev-horizontal {
    background-position: -65px 0;
    position: absolute;
    right: 40px;
    top: -47px;
	left: auto;
}

.eventos-home .jcarousel-skin-default .jcarousel-next-horizontal {
    background-position: -65px -32px;
    position: absolute;
    right: 0;
    top: -47px;
}

.content_bloques  .views-field-teaser {
	margin:10px 0;
}



#block-block-8 ul {
	float:left;
	padding:0;
	margin:0;
	position:relative;
}

#block-block-8 ul li {
    background: url("../../images/bullet.png") no-repeat scroll 0 4px transparent;
    color: #898888;
    float: left;
    font-size: 1em;
    font-style: normal;
    font-weight: normal;
    list-style: none outside none;
    margin-bottom: 5px;
    margin-top: 5px;
    padding: 0 0 0 18px;
    position: relative;
    width: 200px;
}

/* acordeon */
.accordion {
    display: block;
    margin: 10px 0;
}
.accordion .accordion-active {
    border: medium none;
}
.accordion h3.accordion-header {
    background: url("../../images/desplegar.png") no-repeat scroll right 7px transparent;
    border-bottom: medium none;
    border-top: 1px solid #CCCCCC;
    clear: both !important;
    color: #0B3C4E;
    cursor: pointer;
    display: block;
    font-size: 1.3em;
    font-weight: normal;
    margin: 0;
    min-height: 30px;
    padding: 10px 40px 5px 5px;
}
.accordion h3.accordion-header-active {
    background-position: right -183px;
}
.accordion h3.accordion-header-active:hover {
    background-position: right -183px !important;
}
.accordion h3.accordion-header:hover {
    background: url("../../images/desplegar.png") no-repeat scroll right 7px #f5f5f5;
}
.accordion .accordion-content {
    clear: both;
    margin: 0;
    padding-top: 10px;
}
.accordion h3 span strong {
    color: #30A9D6;
    font-size: 16px;
    font-weight: bold;
    margin-right: 10px;
}
.accordion h3 span {
    font-size: 13px;
    font-weight: normal;
}
.accordion h3 span.fecha {
    color: #7C949D;
    display: inline-block;
    float: right;
    font-size: 12px;
    min-height: 20px;
    padding-top: 2px;
}
/* fin acordeon */

.congreso1 {
	float:left;
	position:relative;
	margin-right:20px;
}

.congreso2 {
	float:left;
	position:relative;
}

.page-tercer-congreso-internacional .node-type-page ul,
.page-cuarto-congreso-internacional .node-type-page ul {
    float: left;
    margin: 0;
    padding: 0;
    position: relative;
}

.page-tercer-congreso-internacional .node-type-page ul li,
.page-cuarto-congreso-internacional .node-type-page ul li {
    background: url("../../images/bullet.png") no-repeat scroll 0 4px transparent;
    color: #898888;
    float: left;
    font-size: 1em;
    font-style: normal;
    font-weight: normal;
    list-style: none outside none;
    margin-bottom: 5px;
    margin-top: 5px;
    padding: 0 0 0 25px;
    position: relative;
    width: auto;
	clear:both;
}

p.search-info{
   display: none;
}


/* mi web */

#bg {
    height: 200%;
    left: -50%;
    position: fixed;
    top: -50%;
    width: 200%;
}
#bg img {
    bottom: 0;
    left: 0;
    margin: auto;
    min-height: 50%;
    min-width: 50%;
    position: absolute;
    right: 0;
    top: 0;
}



#panel_invitacion {
	background: url("../../images/bg_foto.png") no-repeat scroll 0 0 transparent;
	float:left;
	position:relative;
	width:960px;
	min-height:807px;
}

#panel_invitacion .inside {
	margin:0;
}

#panel_invitacion .panel-col-top {

	
    float: left;
    height: 74px;
    position: relative;
    width: 960px;
}

#panel_invitacion .panel-col-top h2,
#page h1 {
	background: url("../../images/bg_nombres.png") repeat-x scroll 0 0 transparent;
	color: #FFFFFF;
    float: left;
    font-family: 'Covered By Your Grace',cursive;
    font-size: 1.8em;
    margin-left: 80px;
    margin-top: 0;
    padding: 5px 25px;
    text-align: center;
    width: auto;
}

#panel_invitacion .panel-col-first {
	float:left;
	min-height: 537px;
	position:relative;
	width:228px;
}

#panel_invitacion .panel-col {
	float:left;
	min-height: 537px;
	position:relative;
	width:210px;
}

#panel_invitacion .panel-col-last {
	float: right;
    min-height: 537px;
    position: relative;
    width: 522px;
}

/*participacion*/
#panel_participacion {
	background: url("../../images/bg_foto.png") no-repeat scroll 0 0 transparent;
	float:left;
	position:relative;
	width:960px;
	min-height:807px;
}

#panel_participacion .inside {
	margin:0;
}

#panel_participacion .panel-col-top {

	
    float: left;
    height: 74px;
    position: relative;
    width: 960px;
}

#panel_participacion .panel-col-top h2 {
	background: url("../../images/bg_nombres.png") repeat-x scroll 0 0 transparent;
	color: #FFFFFF;
    float: left;
    font-family: 'Covered By Your Grace',cursive;
    font-size: 1.8em;
    margin-left: 80px;
    margin-top: 0;
    padding: 5px 25px;
    text-align: center;
    width: auto;
}

#panel_participacion .panel-col-first {
	float:left;
	min-height: 537px;
	position:relative;
	width:228px;
}

#panel_participacion .panel-col {
	float:left;
	min-height: 537px;
	position:relative;
	width:210px;
}

#panel_participacion .panel-col-last {
	float: right;
    min-height: 537px;
    position: relative;
    width: 522px;
}
/* fin participacion*/

.node-type-invitacion #content {
	
}

.nos_casamos {
	background: url("../../images/nos_casamos.png") no-repeat scroll 0 0 transparent;
    float: left;
    height: 196px;
    margin-left: 0;
    margin-top: 150px;
    position: relative;
    width: 127px;
}

.texto_invitacion {
	background: url("../../images/invitacion1306.png") no-repeat scroll 0 0 transparent;
	width:522px;
	height:510px;
	float:left;
	margin-top: 35px;
	position:relative;
}

.texto_participacion {
    background: url("../../images/participacion2306.png") no-repeat scroll 0 0 transparent;
    float: left;
    height: 510px;
    position: relative;
    width: 522px;
	margin-top: 35px;
}

.foto_home {
	background: url("../../images/laurayjuanma.com.png") no-repeat scroll 0 0 transparent;
    float: none;
    height: 521px;
    margin: 35px auto 0;
    position: relative;
    width: 698px;
}

.pane-nice-menus-1 {
	background: url("../../images/bg_menu.png") no-repeat scroll 0 0 transparent;
    float: left;
    height: 47px;
    margin-top: 50px;
    position: relative;
    width: 522px;
}

ul#nice-menu-1 {
	margin: 4px 0 0 92px;
    padding: 0;
    width: 357px;
}

ul#nice-menu-1  a:link,
ul#nice-menu-1  a:visited {
	color: #442F59;
    font-family: 'Covered By Your Grace',cursive;
    font-size: 1.6em;
    text-decoration: none;
}

ul#nice-menu-1  li a:hover,
ul#nice-menu-1  li a.active {
	color: #FFF; 
}

ul.nice-menu-down .menuparent a {
    padding-right: 0;
}

ul#nice-menu-1 li.first {
	
}

ul#nice-menu-1 li {
	border: medium none;
    float: left;
    line-height: 15px;
    margin: 0;
    padding: 0 8px;
    position: relative;
	background:none;
}

ul#nice-menu-1 li.last { border-right: none;} 

/* menu 2 */
.pane-nice-menus-2 {
	background: url("../../images/bg_menu.png") no-repeat scroll 0 0 transparent;
    float: left;
    height: 47px;
    margin-top: 50px;
    position: relative;
    width: 522px;
}

ul#nice-menu-2 {
	margin: 4px 0 0 92px;
    padding: 0;
    width: 357px;
}

ul#nice-menu-2  a:link,
ul#nice-menu-2  a:visited {
	color: #442F59;
    font-family: 'Covered By Your Grace',cursive;
    font-size: 1.6em;
    text-decoration: none;
}

ul#nice-menu-2  li a:hover,
ul#nice-menu-2  li a.active {
	color: #FFF; 
}

ul.nice-menu-down .menuparent a {
    padding-right: 0;
}

ul#nice-menu-2 li.first {
	
}

ul#nice-menu-2 li {
	border: medium none;
    float: left;
    line-height: 15px;
    margin: 0;
    padding: 0 8px;
    position: relative;
	background:none;
}

ul#nice-menu-2 li.last { 
border-right: none;
margin-left: 117px;} 
/* fin menu 2*/

/* carrusel interno */

.carrusel_interno {
    background: none repeat scroll 0 0 #FFFFFF;
    float: left;
    height: 165px;
    margin-left: -57px;
    margin-top: 191px;
    padding: 9px;
    position: relative;
    width: 210px;
}

.carrusel_interno a.nivo-prevNav {
    left: -33px;
}

.carrusel_interno a.nivo-nextNav { 
    right: -33px;
}

.carrusel_interno .nivo-directionNav a {

	top: 40%;
}

.carrusel_interno .nivo-directionNav a.nivo-prevNav {
    background: url("../../images/arrows.png") no-repeat scroll 0 0 transparent;
    height: 42px;
}

.carrusel_interno .nivo-directionNav a.nivo-nextNav  {
	background: url("../../images/arrows.png") no-repeat scroll right 0 transparent;
    height: 42px;
}

.carrusel_interno .nivo-caption {
	display:none;
	visibility:hidden;
}


.carrusel_interno .jcarousel-skin-default {
    height: 165px;
    /*overflow: hidden;*/
    text-align: center;
}

.carrusel_interno .jcarousel-skin-default .jcarousel-container-horizontal {
    height: 165px;
    margin: auto;
    padding: 0;
    width: 210px !important;
}

.carrusel_interno  .jcarousel-skin-default .jcarousel-item {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 0 none;
    height: 165px;
    list-style: none outside none;
    overflow: hidden;
    padding: 0;
    width: 210px !important;
}

.carrusel_interno  .jcarousel-skin-default .jcarousel-clip-horizontal {
    margin-left: -4px;
    overflow: hidden;
    width: 214px !important;
}

.carrusel_interno  .jcarousel-skin-default .jcarousel-prev-horizontal {
    left: -34px;
    position: absolute;
    top: 40%;
	background: url("../../images/arrows.png") no-repeat scroll 0 0 transparent;
    height: 42px;
}

.carrusel_interno  .jcarousel-skin-default .jcarousel-next-horizontal {
    right: -34px;
    position: absolute;
    top: 40%;
	background: url("../../images/arrows.png") no-repeat scroll right 0 transparent;
    height: 42px;
}

/* fin carrusel interno */

/*carrusel home */

.carrusel_home {
    background: none repeat scroll 0 0 #FFFFFF;
    float: left;
    height: 500px;
    margin: 50px 121px 0;
    padding: 9px;
    position: relative;
    width: 700px;
}

.carrusel_home a.nivo-prevNav {
    left: -33px;
}

.carrusel_home a.nivo-nextNav { 
    right: -33px;
}

.carrusel_home .nivo-directionNav a {

	top: 40%;
}

.carrusel_home .nivo-directionNav a.nivo-prevNav {
    background: url("../../images/arrows.png") no-repeat scroll 0 0 transparent;
    height: 42px;
}

.carrusel_home .nivo-directionNav a.nivo-nextNav  {
	background: url("../../images/arrows.png") no-repeat scroll right 0 transparent;
    height: 42px;
}

.carrusel_home .nivo-caption {
	display:none;
	visibility:hidden;
}


.carrusel_home .jcarousel-skin-default {
    height: 500px;
    /*overflow: hidden;*/
    text-align: center;
}

.carrusel_home .jcarousel-skin-default .jcarousel-container-horizontal {
    height: 500px;
    margin: auto;
    padding: 0;
    width: 700px !important;
}

.carrusel_home  .jcarousel-skin-default .jcarousel-item {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 0 none;
    height: 500px;
    list-style: none outside none;
    overflow: hidden;
    padding: 0;
    width: 700px !important;
}

.carrusel_home  .jcarousel-skin-default .jcarousel-clip-horizontal {
    margin-left: -4px;
    overflow: hidden;
    width: 705px !important;
}

.carrusel_home  .jcarousel-skin-default .jcarousel-prev-horizontal {
    left: -34px;
    position: absolute;
    top: 40%;
	background: url("../../images/arrows.png") no-repeat scroll 0 0 transparent;
    height: 42px;
}

.carrusel_home  .jcarousel-skin-default .jcarousel-next-horizontal {
    right: -34px;
    position: absolute;
    top: 40%;
	background: url("../../images/arrows.png") no-repeat scroll right 0 transparent;
    height: 42px;
}

/*fin carrusel home */

#principal {
	background: url("../../images/bg_carrusel.png") no-repeat scroll center 9px transparent;
    min-height: 620px;
}

.music,
.music2 {
	float:left;
	position:relative;
	clear:both;
	margin-top:20px;
}

div.jp-playlist {
    display: none;
    visibility: hidden;
    width: 418px;
}

div.jp-interface {
    background-color:none !important;
    border-style: solid solid none;
    border-width: 0;
    height: 80px;
    margin-left: 250px;
    position: relative;
    width: 418px;
}

.music2 div.jp-interface {
    border-style: solid solid none;
    border-width: 0;
    height: 80px;
    margin-left: 57px;
    position: relative;
    width: 418px;
}

#block-block-6 {
	float: right;
    height: 47px;
    margin-right: 35px;
    margin-top: 22px;
    position: relative;
    width: 188px;
}

.regresar {
	float: right;
    position: relative;
}

.regresar a:link, 
.regresar a:visited {
    color: #333333;
    font-family: 'Covered By Your Grace',cursive;
    font-size: 1.6em;
    text-decoration: none;
}

.regresar a:hover {
	color:#FFF;
}

.node-type-webform {

}

.node-type-webform input {
	border: 1px solid #CCCCCC;
    clear: both;
    float: left;
    font-size: 1.2em;
    margin-bottom: 20px;
    margin-left: 130px;
    padding: 5px;
    position: relative;
    width: 650px !important;
}

.node-type-webform textarea {
	border: 1px solid #CCCCCC;
    clear: both;
    float: left;
    font-size: 1.2em;
    margin-left: 130px;
    padding: 5px;
    position: relative;
    width: 650px !important;
}

.node-type-webform .resizable-textarea {
	float:left;
	position:relative;
	clear:both;
}

.node-type-webform .grippie {
	visibility:hidden;
	display:none;
}

.node-type-webform label {
	clear: both;
    color: #6D3C9B;
    float: left;
    font-family: 'Covered By Your Grace',cursive;
    font-size: 1.6em;
    font-weight: normal;
    margin-bottom: 15px;
    margin-left: 130px;
    position: relative;
}

.node-type-webform .form-submit {
	background: url("../../images/bg_nombres.png") repeat-x scroll 0 0 transparent;
    color: #FFFFFF;
    cursor: pointer;
    float: left;
    font-size: 1em;
    font-weight: bold;
    margin-top: 20px;
    padding: 5px;
    position: relative;
    width: auto !important;
}

.lightbox-processed #numberDisplay {
	display:none;
	visibility:hidden;
}