/**
 * Stylesheet holding the colors of "extension" section.
 *
 * Use this classes to add section-dependant color schemes to your stylesheets.
 *
 * To add this stylesheet to your layout, put this in the <head> section:
 *
 *   <?php if (isset($section)): ?>
 *     <link rel="stylesheet" type="text/css" media="all" href="<?php echo url_for('@section_css?name='.$section->getName() ?>
" />
 *   <?php endif; ?>
 *
 */

/* Background and foreground colors */
.section-color-bg { background-color: #13c2a2; }
.section-color-fg { color: #13c2a2; }

/* Border colors */
.section-color-border-all { border-color: #13c2a2; }
.section-color-border-t { border-top-color: #13c2a2; }
.section-color-border-r { border-right-color: #13c2a2; }
.section-color-border-b { border-bottom-color: #13c2a2; }
.section-color-border-l { border-left-color: #13c2a2; }

/* On hover colors */
.section-color-bg-hover:hover { background-color: #13c2a2; }
.section-color-fg-hover:hover { color: #13c2a2; }
.section-color-border-all-hover:hover { border-color: #13c2a2; }
.section-color-border-t-hover:hover { border-top-color: #13c2a2; }
.section-color-border-r-hover:hover { border-right-color: #13c2a2; }
.section-color-border-b-hover:hover { border-bottom-color: #13c2a2; }
.section-color-border-l-hover:hover { border-left-color: #13c2a2; }



/**
 * Use this file for further customization of the stylesheets generated using
 * the current section's color.
 *
 * Here you can define your own CSS rules, using:
 *
 *   #13c2a2        => The color of the section (#000000 for example)
 *   rgba(19, 194, 162, 0.75)         => The color of the section in RGBA (rgba(0, 0, 0, .75) for example)
 *   extension         => The name of the section
 *   &nbsp;&nbsp;Extensión      => (Advanced) The Section object itself
 *
 * You can see apps/frontend/modules/section/stylesheetSuccess.php for a simple
 * example.
 *
 * Put this file in your flavor:
 *
 * <flavor>/modules/section/templates/_extra_stylesheet.php
 * 
 */

.front-title-only a{	
  background-color: #13c2a2;
}

.text-only-container {
background-color: #13c2a2;
}

.photo-summary-content{
background-color: #13c2a2;
}