@charset "utf-8";
/*
/* 
 * HTML5 ✰ Boilerplate
 *
 * What follows is the result of much research on cross-browser styling. 
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 *
 * Detailed information about this CSS: h5bp.com/css
 * 
 * Dreamweaver modifications:
 * 1. Commented out selection highlight
 * 2. Removed media queries section (we add our own in a separate file)
 *
 * ==|== normalize ==========================================================
 */


/* =============================================================================
   HTML5 display definitions
   ========================================================================== */

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
audio:not([controls]) { display: none; }
[hidden] { display: none; }

/* =============================================================================
   Base
   ========================================================================== */

/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 * 2. Force vertical scrollbar in non-IE
 * 3. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
 */

html { font-size: 100%; overflow-y: scroll; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }

body {
	margin: 0;
	font-size: 13px;
	background: #FCFDFD;
}

body, button, input, select, textarea { font-family: 'Raleway', sans-serif;; color: #222; }

h1,h2,h3,h4,h5 {
	color:#666;
	font-weight:400;
}

/* 
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate
 * Also: hot pink! (or customize the background color to match your design)
 */

/* Dreamweaver: uncomment these if you do want to customize the selection highlight
 *::-moz-selection { background: #fe57a1; color: #fff; text-shadow: none; }
 *::selection { background: #fe57a1; color: #fff; text-shadow: none; }
 */

/* =============================================================================
   Links
   ========================================================================== */

a { color: #00e; }
a:visited { color: #551a8b; }
a:hover { color: #06e; }
a:focus { outline: thin dotted; }

/* Improve readability when focused and hovered in all browsers: h5bp.com/h */
a:hover, a:active { outline: 0; }


/* =============================================================================
   Typography
   ========================================================================== */

abbr[title] { border-bottom: 1px dotted; }

b, strong { font-weight: bold; }

blockquote { margin: 1em 40px; }

dfn { font-style: italic; }

hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }

ins { background: #ff9; color: #000; text-decoration: none; }

mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }

/* Redeclare monospace font family: h5bp.com/j */
pre, code, kbd, samp { font-family: monospace, monospace; _font-family: 'courier new', monospace; font-size: 1em; }

/* Improve readability of pre-formatted text in all browsers */
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }

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

small { font-size: 85%; }

/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }


/* =============================================================================
   Lists
   ========================================================================== */

ul, ol { margin: 1em 0; padding: 0 0 0 40px; }
dd { margin: 0 0 0 40px; }
nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }


/* =============================================================================
   Embedded content
   ========================================================================== */

/*
 * 1. Improve image quality when scaled in IE7: h5bp.com/d
 * 2. Remove the gap between images and borders on image containers: h5bp.com/e 
 */

img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }

/*
 * Correct overflow not hidden in IE9 
 */

svg:not(:root) { overflow: hidden; }


/* =============================================================================
   Figures
   ========================================================================== */

figure { margin: 0; }


/* =============================================================================
   Forms
   ========================================================================== */

form { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; }

/* Indicate that 'label' will shift focus to the associated form element */
label { cursor: pointer; }

/* 
 * 1. Correct color not inheriting in IE6/7/8/9 
 * 2. Correct alignment displayed oddly in IE6/7 
 */

legend { border: 0; *margin-left: -7px; padding: 0; }

/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */

button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }

/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 * 2. Correct inner spacing displayed oddly in IE6/7
 */

button, input { line-height: normal; *overflow: visible; }

/*
 * Reintroduce inner spacing in 'table' to avoid overlap and whitespace issues in IE6/7
 */

table button, table input { *overflow: auto; }

/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 */

button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; }

/*
 * Consistent box sizing and appearance
 */

input[type="checkbox"], input[type="radio"] { box-sizing: border-box; }
input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }

/* 
 * Remove inner padding and border in FF3/4: h5bp.com/l 
 */

button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }

/* 
 * 1. Remove default vertical scrollbar in IE6/7/8/9 
 * 2. Allow only vertical resizing
 */

textarea { overflow: auto; vertical-align: top; resize: vertical; }

/* Colors for form validity */
input:valid, textarea:valid {  }
input:invalid, textarea:invalid { background-color: #f0dddd; }


/* =============================================================================
   Tables
   ========================================================================== */

table { border-collapse: collapse; border-spacing: 0; }
td { vertical-align: top; }


/* ==|== primary styles =====================================================
   Author: 
   ========================================================================== */
#sideBar img {
	margin: 10px auto;
	max-width: 200px;
}

#sideBar a {
	text-decoration:none;
}


#social {
	text-align:left;
}

#social img{
	width:20%;
	max-width:35px;
	max-height:35px;
	margin:10px 0 0 5px;
}


#pageHeader {
	background-color:rgba(255,102,0,1);
	background: -moz-linear-gradient(top,  #ef7b28 23%, #ed5b17 65%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(23%,#ef7b28), color-stop(65%,#ed5b17));
	background: -webkit-linear-gradient(top,  #ef7b28 23%,#ed5b17 65%);
	background: -o-linear-gradient(top,  #ef7b28 23%,#ed5b17 65%);
	background: -ms-linear-gradient(top,  #ef7b28 23%,#ed5b17 65%);
	background: linear-gradient(to bottom,  #ef7b28 23%,#ed5b17 65%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ef7b28', endColorstr='#ed5b17',GradientType=0 );
	text-shadow:1px 1px 2px rgba(0,0,0,0.6);
	color:#FFF;
	padding-bottom:20px;
}

#pageHeader  a {
	text-decoration:none;
}
#pageHeader header img 
{
margin: 0 5px 0 30px;	
}
#pageHeader header h1 {
	margin:0;
	padding-top:15px;
	font-weight:600;
	color:#FFF;
}
#pageHeader header h2 {
	margin:0;
	font-weight:600;
	color:#FFF;
}



/* FOR BLOG */

.nav {
	text-align:right;
}

.nav a {
	padding:5px;
	text-align:center;
	background-color:#f90;
	color:#FFF;
	text-decoration:none;
	border:2px solid #FFF;
	display:inline-block;
	box-shadow:0px 0px 5px 1px rgba(0,0,0,0.3);
}

/* Convenios Boxes & News Boxes */

.bloglistDiv a, .convenioDiv {
	display:block;
	color:#333;
	text-decoration:none;
	padding:5px 1% 10px 1%;
	background-color:#FFF;
	width:80%;
	margin:5px auto 15px auto;
	clear:both;
	float:none;
	overflow:auto;
	border-bottom:1px solid #F93;
	box-shadow:0px 0px 8px 2px rgba(0,0,0,0.1);
}


.convenioDiv {
	width:100%;
	margin:5px auto 15px auto;
}
.convenioDiv h2, .convenioDiv a{
	color:#F60;
}

.convenioDiv .summary {
	display:block;
}

.convenioDiv .fulltext {
	display:none;
	color:#000;
}

.bloglistDiv a:hover {
	color:#000;
	background-color:#FFF;
	box-shadow:0px 0px 10px 5px rgba(0,0,0,0.2);
}

.bloglistDiv h3 {
	margin:5px 0;
	padding-bottom:4px;
	display:block;
	border-bottom:1px solid #EEE;
	color: #f90;
	font-weight:400;
	font-size:120%;
}

.bloglistDiv h4 {
	margin:5px 0;
	padding-bottom:15px;
	display:block;
	text-align:right;
	color: #999;
	font-weight:400;
	font-size:110%;
}

.bloglistDiv img {
	float:left;
	margin: 0 10px 5px 0;
	padding:1px;
	background-color:#FFF;
	border:1px solid #F93;
	max-width:120px;
}


/* News main page: */

.blogDiv #ficha_desc {
	min-height:350px;
	margin-right:1%;
	text-align:left;
	text-align:justify;
}


.blogDiv img {
	float:right;
	margin: 15px;
	padding:3px;
	background-color:#FFF;
	border:1px solid #F93;
	max-width:300px;
}

#ficha_fin {
	clear:both;
	float:none;
}

.resumen {
	color: #999;
	font: italic 120% "Times New Roman", Times, serif;
	padding:10px;
	border-top:1px solid #999;
	border-bottom:1px solid #999;
	margin-bottom:15px;
}

.resumen img {
	display:none;
}


.blogDiv .ficha_head {
	text-align:right;
	margin: 15px 5px 5px 5px;
	padding-bottom:10px;
}
.blogDiv .ficha_head h1 {
	color: #F60;
	margin: 0px;
	line-height: 1.2em;
	text-shadow: 400;
	letter-spacing: 0.05em;
	font-weight: 400;
}
.blogDiv .ficha_head h3 {
	margin: 0px;
	font-weight:lighter;
}
.blogDiv .ficha_head h2 {
	margin: 0px;
	font-weight:400;
}

#categorias {
	width:65%;
	margin;
	float:left;
	cursor:pointer;
}

#categorias div {
	column-count:2;
	column-gap:5px;
	column-rule:1px outset #FFF;
	
	-moz-column-count:2; 
	-moz-column-gap:5px; 
	-moz-column-rule:1px outset #FFF; 
	
	-webkit-column-count:2; 
	-webkit-column-gap:5px; 
	-webkit-column-rule:1px outset #FFF;
}

#businesses {
	width:35%;
	float:right;
	cursor:pointer;
	color:#000;
}

#businesses h2 {
	color:#f90;
}

#businesses li {
	font-size:110%;
	text-shadow: -1px -1px 1px #FFF;
}


#negociodat {
	overflow:auto;
}

#negociodat .maplhs {
	width:45%;
	float:left;
}

#negociodat .maprhs {
	width:55%;
	float:right;
}

#ficha_map {
	height:300px;
	width:100%;
}

#negociodat .nomap {
	color:#333;
	text-decoration:none;
	padding:5px 1% 10px 1%;
	background-color:#FFF;
	width:95%;
	margin:10px auto 15px auto;
	clear:both;
	float:none;
	overflow:auto;
	border-bottom:1px solid #F93;
	background-color:#FFF;
	box-shadow:0px 0px 6px 2px rgba(0,0,0,0.3);
	
}

#negociodat table {
	font-size:90%;
	
}

#negociodat .logo {
	max-width:200px;
	max-height:200px;
	padding:10px;
	
}


#negociodat table tr th {
	color:#FFF;
	background-color:#f93;
	padding:4px;
	text-align:left;
	border-bottom:1px solid #FFF;
}


#negociodat table tr td{
	text-align:left;
	padding:4px;
}




/* SOCIO PAGES: */

.socioForm {
	margin:0;
	padding:0;
}

.socioForm table {
	border-collapse:separate;
	border-spacing:2px 5px;
}
	
.socioForm tr th {
	text-align:left;
	padding:4px 10px;
	border-right:1px solid #F93;
	background-color: #e3e3e3;
}
.socioForm tr td {
	text-align:left;
	padding:4px 10px;
}

.socioForm select {
	border:1px solid #f90;
	padding:5px;
	margin:10px 0;
	font-size:120%;
}

.socioForm textarea, .socioForm input {
	border:2px solid #f90;
	padding:5px;
	margin:10px 0;
}
.socioForm label {
	margin:10px 0;
}


.listElem {
	width:90%;
	margin:10px auto 15px auto;
	padding:5px 2% 10px 2%;
	overflow:auto;
	border-bottom: 1px solid #ccc;
}

.listElem h2, .listElem h3, .listElem p{
	padding:0 0 5px 0;
	margin:0;
}



.listElem a {
	color:#F90;
}

.listElem table {
	border-collapse:collapse;
}

.listElem table tr td, .listElem table tr th {
	border:1px solid #FFF;
	padding:2px;
}



.listElem table tr th{
	background-color:#F90;
	color:#FFF;
	text-align:left;
	font-weight:lighter;
	
}


#soc_mainMenu a {
	text-decoration:none;
}


#soc_mainMenu img {
	width: 22%;
	padding: 1%;
}




.navBtns {
	text-align:center;
}

.navBtns a{
	border:2px solid #FFF;
	background-color:#F90;
	color:#FFF;
	text-decoration:none;
	padding:5px 10px;
	box-shadow:2px 2px 4px rgba(0,0,0,0.2);
}


/* FOR CITA CALENDAR: */

/* CSS Document */


.leg0 {
	background-color: #FC9;
	cursor:pointer;
}
.leg1, .leg2, .leg3 {
	background-color: #FF3;
	cursor: pointer;
}
.leg4 {
	background-color: #6C3;
	cursor: pointer;
}

.calendarCell {
	width:30%;
	float:left;
	margin-right:1%;
	padding:0;
	height:170px;
	font-size:110%;
	margin-top:20px;
}


.calendarCell table {
	width:95%;
	text-align:center;
	border-collapse:collapse;
}



.calendarCell table caption{
	font-weight:bold;
	text-align:right;
}

.calendarCell table tr th {
	border:1px solid #000;
	padding:2px;
	margin:1px;
	background-color:#f90;
	color:#FFF;
	font-weight:lighter;
	font-size:90%;
}


.calendarCell table tr td.day {
	background-color:#EFEFEF;
	border:1px solid #FFF;
	
}

.calendarCell table tr td {
	padding:2px;
	margin:1px;
	border:1px solid #FFF;
}

/* END OF CITA CALENDAR */



.imgL {
	float:left;
	margin: 5px 15px 5px 5px;
	padding:3px;
	background-color:#FFF;
	border:1px solid #F93;
}

.imgR {
	float:right;
	margin: 5px 5px 5px 15px;
	padding:3px;
	background-color:#FFF;
	border:1px solid #F93;
}

footer img {
	max-width:600px;
}



/* FOR MUS DATOS */


.roomOrg {
	border-collapse: collapse-x;
	margin: 20px auto 30px auto;
	background: #FFF;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	border-bottom: 3px solid #000;
	border-left: 1px solid #000;
	box-shadow: 2px 2px 10px 3px rgba(0,0,0,0.2);
	width: 90%;
}

.roomOrg tr td {
	text-align: left;
	width: 30px;
	padding: 4px;
	border-bottom: 1px solid #CCC;
	word-wrap: break-word;
	-ms-word-break: break-all;
	 word-break: break-all;
	word-break: break-word;

	-webkit-hyphens:none;
  	 -moz-hyphens: none;
        hyphens: none;
}

.roomOrg tr:nth-child(odd) td {
	background-color: #EEE;
}

.roomOrg tr th {
	width: 170px;
	color: #FFF;
	background:#F60;
	text-align: left;
	padding: 4px;
	text-shadow:none;
}


.roomOrg tr td.Emitido {
	background-color:rgba(255,255,102,0.1);
	text-align:center;
	color:#FC0;
}
.roomOrg tr td.Pagado {
	background-color:rgba(102,255,102,0.1);
	text-align:center;
	color:#693;
}

.roomOrg tr td.Vencido {
	background-color:rgba(255,51,51,1);
	text-align:center;
	color:#FFF;
}






/* ==|== non-semantic helper classes ========================================
   Please define your styles before this section.
   ========================================================================== */

/* For image replacement */
.ir { display: block; border: 0; text-indent: -999em; overflow: hidden; background-color: transparent; background-repeat: no-repeat; text-align: left; direction: ltr; }
.ir br { display: none; }

/* Hide from both screenreaders and browsers: h5bp.com/u */
.hidden { display: none !important; visibility: hidden; }

/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }

/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* Contain floats: h5bp.com/q */ 
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }


/* ==|== print styles =======================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
 
 @media print {
  * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* Black prints faster: h5bp.com/s */
  a, a:visited { text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* Don't show links for images, or javascript/internal links */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* h5bp.com/t */
  tr, img { page-break-inside: avoid; }
  img { max-width: 100% !important; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3 { page-break-after: avoid; }
}
