@charset "UTF-8";

/* SpryTabbedPanels.css - version 0.6 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* Horizontal Tabbed Panels
 *
 * The default style for a TabbedPanels widget places all tab buttons
 * (left aligned) above the content panel.
 */

/* This is the selector for the main TabbedPanels container. For our
 * default style, this container does not contribute anything visually,
 * but it is floated left to make sure that any floating or clearing done
 * with any of its child elements are contained completely within the
 * TabbedPanels container, to minimize any impact or undesireable
 * interaction with other floated elements on the page that may be used
 * for layout.
 *
 * If you want to constrain the width of the TabbedPanels widget, set a
 * width on the TabbedPanels container. By default, the TabbedPanels widget
 * expands horizontally to fill up available space.
 *
 * The name of the class ("TabbedPanels") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabbedPanels container.
 */
.TabbedPanels {
	overflow: hidden;
	margin: 0px;
	padding: 0px;
	clear: none;
	width: 100%; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
}

/* This is the selector for the TabGroup. The TabGroup container houses
 * all of the tab buttons for each tabbed panel in the widget. This container
 * does not contribute anything visually to the look of the widget for our
 * default style.
 *
 * The name of the class ("TabbedPanelsTabGroup") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabGroup container.
 */
.TabbedPanelsTabGroup {
	margin: 0px;
	padding: 0px;
}

/* This is the selector for the TabbedPanelsTab. This container houses
 * the title for the panel. This is also the tab "button" that the user clicks
 * on to activate the corresponding content panel so that it appears on top
 * of the other tabbed panels contained in the widget.
 *
 * For our default style, each tab is positioned relatively 1 pixel down from
 * where it wold normally render. This allows each tab to overlap the content
 * panel that renders below it. Each tab is rendered with a 1 pixel bottom
 * border that has a color that matches the top border of the current content
 * panel. This gives the appearance that the tab is being drawn behind the
 * content panel.
 *
 * The name of the class ("TabbedPanelsTab") used in this selector is not
 * necessary to make the widget function. You can use any class name you want
 * to style this tab container.
 */
.TabbedPanelsTab {
	/* [disabled]position: relative; */
	/* [disabled]top: 1px; */
	float: left;
	/* [disabled]font: bold 0.7em sans-serif; */
	/* [disabled]background-color: #DDD; */
	list-style: none;
	/* [disabled]border-left: solid 1px #CCC; */
	/* [disabled]border-bottom: solid 1px #999; */
	/* [disabled]border-top: solid 1px #999; */
	/* [disabled]border-right: solid 1px #999; */
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	background-image: url(../images/bg-vertical-tab.png);
	background-repeat: no-repeat;
	background-position: right top;
	height: 40px;
	margin-top: 0px;
	margin-right: 1px;
	margin-bottom: 0px;
	margin-left: 0px;
	/* [disabled]padding-top: 4px; */
	padding-right: 10px;
	/* [disabled]padding-bottom: 4px; */
	/* [disabled]padding-left: 10px; */
	text-align: right;
}

/* This selector is an example of how to change the appearnce of a tab button
 * container as the mouse enters it. The class "TabbedPanelsTabHover" is
 * programatically added and removed from the tab element as the mouse enters
 * and exits the container.
 */
.TabbedPanelsTabHover {
	/* [disabled]background-color: #CCC; */
	background-image: url(../images/bg-vertical-tab3.png);
	/* [disabled]background-repeat: no-repeat; */
	/* [disabled]color: #3F0; */
}

/* This selector is an example of how to change the appearance of a tab button
 * container after the user has clicked on it to activate a content panel.
 * The class "TabbedPanelsTabSelected" is programatically added and removed
 * from the tab element as the user clicks on the tab button containers in
 * the widget.
 *
 * As mentioned above, for our default style, tab buttons are positioned
 * 1 pixel down from where it would normally render. When the tab button is
 * selected, we change its bottom border to match the background color of the
 * content panel so that it looks like the tab is part of the content panel.
 */
.TabbedPanelsTabSelected {
	/* [disabled]background-color: #EEE; */
	/* [disabled]border-bottom: 1px solid #EEE; */
	background-image: url(../images/bg-vertical-tab2.png);
	background-repeat: no-repeat;
	background-position: right top;
	position: relative;
	right: -20px;
}
.TabbedPanelsTabSelected a {
	;
	color: #FFF !important;
	/* [disabled]font-weight: bold; */
	padding-right: 10px;
	/* [disabled]text-shadow: -1px -1px 0px #FFFFFF !important; */
}


/* This selector is an example of how to make a link inside of a tab button
 * look like normal text. Users may want to use links inside of a tab button
 * so that when it gets focus, the text *inside* the tab button gets a focus
 * ring around it, instead of the focus ring around the entire tab.
 */
.TabbedPanelsTab a {
	color: #D3E6F5;
	text-decoration: none;
	line-height: 33px;
	text-shadow: 1px 2px 1px #000000;
	/* [disabled]font-weight: bold; */
}
.TabbedPanelsTab a:hover {
	color: #FFF;
	/* [disabled]font-weight: bold; */
}

/* This is the selector for the ContentGroup. The ContentGroup container houses
 * all of the content panels for each tabbed panel in the widget. For our
 * default style, this container provides the background color and borders that
 * surround the content.
 *
 * The name of the class ("TabbedPanelsContentGroup") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the ContentGroup container.
 */
.TabbedPanelsContentGroup {
	clear: both;
	/* [disabled]border-left: solid 1px #CCC; */
	/* [disabled]border-bottom: solid 1px #CCC; */
	/* [disabled]border-top: solid 1px #999; */
	/* [disabled]border-right: solid 1px #999; */
	/* [disabled]background-color: #EEE; */
	background-image: url(../images/bg-servicios2.png);
	background-repeat: repeat-y;
	padding-top: 10px;
}

/* This is the selector for the Content panel. The Content panel holds the
 * content for a single tabbed panel. For our default style, this container
 * provides some padding, so that the content is not pushed up against the
 * widget borders.
 *
 * The name of the class ("TabbedPanelsContent") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the Content container.
 */
.TabbedPanelsContent {
	overflow: hidden;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 35px;
}

/* This selector is an example of how to change the appearnce of the currently
 * active container panel. The class "TabbedPanelsContentVisible" is
 * programatically added and removed from the content element as the panel
 * is activated/deactivated.
 */
.TabbedPanelsContentVisible {
}

/* Vertical Tabbed Panels
 *
 * The following rules override some of the default rules above so that the
 * TabbedPanels widget renders with its tab buttons along the left side of
 * the currently active content panel.
 *
 * With the rules defined below, the only change that will have to be made
 * to switch a horizontal tabbed panels widget to a vertical tabbed panels
 * widget, is to use the "VTabbedPanels" class on the top-level widget
 * container element, instead of "TabbedPanels".
 */

.VTabbedPanels {
	overflow: hidden;
	zoom: 1;
}

/* This selector floats the TabGroup so that the tab buttons it contains
 * render to the left of the active content panel. A border is drawn around
 * the group container to make it look like a list container.
 */
.VTabbedPanels .TabbedPanelsTabGroup {
	float: left;
	width: 190px;
	/* [disabled]height: 20em; */
	/* [disabled]background-color: #EEE; */
	position: relative;
	/* [disabled]border-top: solid 1px #999; */
	/* [disabled]border-right: solid 1px #999; */
	/* [disabled]border-left: solid 1px #CCC; */
	/* [disabled]border-bottom: solid 1px #CCC; */
	padding-top: 15px;
}

/* This selector disables the float property that is placed on each tab button
 * by the default TabbedPanelsTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.VTabbedPanels .TabbedPanelsTab {
	float: none;
	margin: 0px;
	border-top: none;
	border-left: none;
	border-right: none;
}

/* This selector disables the float property that is placed on each tab button
 * by the default TabbedPanelsTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.VTabbedPanels .TabbedPanelsTabSelected {
	/* [disabled]background-color: #EEE; */
	/* [disabled]border-bottom: solid 1px #999; */
}

/* This selector floats the content panels for the widget so that they
 * render to the right of the tabbed buttons.
 */
.VTabbedPanels .TabbedPanelsContentGroup {
	clear: none;
	float: left;
	width: 570px;
	/* [disabled]height: 20em; */
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

/* Styles for Printing */
@media print {
.TabbedPanels {
	overflow: visible !important;
}
.TabbedPanelsContentGroup {
	display: block !important;
	overflow: visible !important;
	height: auto !important;
}
.TabbedPanelsContent {
	overflow: visible !important;
	display: block !important;
	clear:both !important;
}
.TabbedPanelsTab {
	 overflow: visible !important;
	 display: block !important;
	 clear:both !important;
}
}

/*#wrap-content-down  {
	background-image: url(images/bg-separator.png);
	background-repeat: repeat-x;
	height: 570px;
	width: 100%;
	background-color: #005580;
}
#wrap-content-down #content-down h2 {
	clear: both;
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	color: #FFF;
	font-size: 12px;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 35px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}

#wrap-content-down #content-down #UIS {
	clear: both;
	width: 960px;
	margin-right: auto;
	margin-left: auto;
}
#wrap-content-down #content-down #UIS ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
#wrap-content-down #content-down #UIS ul li {
	float: left;
	margin-right: 10px;
}
#wrap-content-down #media {
	width: 960px;
	margin-right: auto;
	margin-left: auto;
}
#wrap-content-down #media #fotos h2 {
	clear: both;
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	color: #FFF;
	font-size: 12px;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 35px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;

}

#wrap-content-down #media #fotos {
	width: 440px;
	float: left;
}
#wrap-content-down #media #fotos ul {
	list-style-type: none;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#wrap-content-down #media #fotos ul li {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 10px;
	float: left;
}
#wrap-content-down #media #videos {
	float: right;
	width: 500px;
}
#wrap-content-down #media #videos h2 {
	clear: both;
	width: 560px;
	margin-right: auto;
	margin-left: auto;
	color: #FFF;
	font-size: 12px;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 35px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;

}
#wrap-content-down #media #videos #utube {
	background-color: #FFF;
	height: 225px;
	width: 350px;
	float: left;
}
#wrap-content-down #media #videos #masvideos {
	width: 150px;
	float: right;
}
#wrap-content-down #media #videos ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
#wrap-content-down #media #videos ul li {
}
#wrap-content-down #media #videos ul li a {
	color: #FFF;
	text-decoration: none;
	display: block;
	font-size: 90%;
	border: 1px solid #9DE1F7;
	height: 58px;
	margin-bottom: 15px;
	padding-top: 5px;
	padding-left: 10px;
}
#wrap-top-footer {
	width: 100%;
	background-image: url(images/bg-wrap-top-footer.png);
	background-repeat: repeat-x;
	background-color: #00537C;

	background-position: center -17px;
}
#wrap-top-footer #guajira {
	height: 80px;
	background-image: url(images/bg-guajira.png);
	background-repeat: repeat-x;
	width: 960px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-color: #C9D4D7;
	border-bottom-color: #C9D4D7;
	border-left-color: #C9D4D7;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	top: 10px;
}
#wrap-top-footer #guajira #comollegar {
	background-image: url(images/bg-guajira2.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	height: 105px;
	position: relative;
	top: -20px;
	padding-left: 130px;
	float: left;
}
#wrap-top-footer #guajira #comollegar ul {
	list-style-type: none;
	margin: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

#wrap-top-footer #guajira #comollegar h3 {
	font-size: 18px;
	font-family: 'Yanone Kaffeesatz', "Arial Narrow", sans-serif;
	margin: 0px;
	padding-top: 30px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	color: #767367;
	font-weight: normal;
	letter-spacing: 1px;
}
#wrap-top-footer #guajira #enlaces {
	float: left;
	width: 540px;
	padding-left: 80px;
	padding-top: 10px;
}
#wrap-top-footer #guajira #enlaces ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
#wrap-top-footer #guajira #enlaces ul li {
	float: left;
	margin: 0px;
	padding-top: 40px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 0px;
}

.comollegar-encarro {
	background-color: #E4E3E2;
	background-image: url(images/ico-comollegar-carro.png);
	background-repeat: no-repeat;
	background-position: center center;
	display: block;
	height: 28px;
	width: 35px;
	font-size: 1px;
	color: #E4E3E2;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FFF;
	border-right-color: #F2F2E8;
	border-bottom-color: #E3E1C4;
	border-left-color: #F2F2E8;
	float: left;
}
.comollegar-enbus {
	background-color: #E4E3E2;
	background-image: url(images/ico-comollegar-carro.png);
	background-repeat: no-repeat;
	background-position: center center;
	display: block;
	height: 28px;
	width: 35px;
	font-size: 1px;
	color: #E4E3E2;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FFF;
	border-right-color: #F2F2E8;
	border-bottom-color: #E3E1C4;
	border-left-color: #F2F2E8;
	float: left;
}


#wrap-top-footer #footer-up {
	width: 960px;
	clear: both;
	margin-right: auto;
	margin-left: auto;
}
#wrap-top-footer #footer-up #footer-katz h3  {
	font-family: 'Lato', sans-serif;
	color: #F1EBC5;
	font-weight: bold;
	margin: 0px;
	padding-bottom: 10px;
	font-size: 16px;
}
#wrap-top-footer #footer-up #footer-katz ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
#wrap-top-footer #guajira #footer-up #footer-katz table tr td ul li a {
	text-decoration: none;
	color: #CDDDE3;
}



#wrap-top-footer #footer-up #twitter {
	float: left;
	width: 320px;
	height: 200px;
	background-image: url(images/bg-twitter.png);
	background-repeat: no-repeat;
	background-position: left 5px;
}
#wrap-top-footer #guajira #footer-up #twitter h3 {
	font-family: 'Lato', sans-serif;
	color: #F1EBC5;
	font-weight: bold;
	margin: 0px;
	padding-bottom: 10px;
	font-size: 16px;
	padding-left: 32px;
}
#wrap-top-footer #guajira #footer-up #twitter p {
	margin: 0px;
	padding-top: 10px;
	padding-right: 50px;
	padding-left: 35px;
	color: #F2F2E8;
}
#wrap-top-footer #guajira #footer-up #twitter ul {
	list-style-type: none;
	margin-top: 0px;
	margin-right: 50px;
	margin-bottom: 0px;
	margin-left: 35px;
	height: 50px;
	line-height: 50px;
	padding: 0px;
}
#wrap-top-footer #guajira #footer-up #twitter ul li {
	float: left;
}
#wrap-top-footer #guajira #footer-up #twitter ul li a {
	color: #B1E3F3;
	text-decoration: none;
	margin-right: 10px;
}








#wrap-top-footer #footer-up #footer-katz {
	width: 600px;
	float: right;
}
#wrap-top-footer #footer-down {
	clear: both;
	width: 960px;
	margin-right: auto;
	margin-left: auto;
}
#wrap-top-footer #footer-down #ubiquenos {
	float: left;
	width: 285px;
	margin-left: 35px;
	font-size: 110%;
}
#wrap-top-footer #footer-down h3   {
	font-family: 'Lato', sans-serif;
	color: #F1EBC5;
	font-weight: bold;
	margin: 0px;
	padding-bottom: 10px;
	font-size: 16px;
}
#wrap-top-footer #guajira #footer-down #ubiquenos address {
	font-style: normal;
	color: #D6E2E9;
}

#wrap-top-footer #footer-down #footer-logos {
	float: right;
	width: 600px;
	margin-bottom: 30px;
}
#wrap-top-footer #footer-down #footer-logos ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
#wrap-top-footer #footer-down #footer-logos ul li {
	float: left;
	margin-right: 20px;
}
#wrap-bottom-footer  {
	clear: both;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	height: 50px;
	background-image: url(images/bg-volver-arriba2.png);
	padding-bottom: 50px;
}
#wrap-bottom-footer #bottom-footer {
	width: 960px;
	margin-right: auto;
	margin-left: auto;
}

#wrap-bottom-footer #hacia-arriba  {
	float: left;
	text-align: center;
	display: block;
}
#wrap-bottom-footer #hacia-arriba a  {
	display: block;
	width: 150px;
	height: 50px;
	background-image: url(images/bg-volver-arriba.png);
	color: #FFF;
	text-decoration: none;
	font-weight: bold;
	font-size: 100%;
	line-height: 50px;
}
#wrap-bottom-footer #copyrights  {
	clear: none;
	float: right;
	margin-top: 15px;
	color: #7997A2;
}.breadcrumbs-location {
	font-family: 'Yanone Kaffeesatz', "Arial Narrow", sans-serif;
	color: #00853C;
	background-repeat: no-repeat;
	background-position: center 15px;
	background-image: url(images/breadcrumb-location-bg.png);
	margin-left: 0px;
	display: block;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 15px;
	padding-left: 5px;
	font-size: 14px;
}
.breadcrumbs-path {
	font-family: 'Yanone Kaffeesatz', "Arial Narrow", sans-serif;
	color: #565485;
	margin-left: 0px;
	background-image: url(images/breadcrumb-path.png);
	background-repeat: no-repeat;
	background-position: 0px center;
	padding-left: 15px;
	font-size: 14px;
}*/
.dos-lineas  {
	font-size: 90%;
	color: #E4E4E4;
	background-image: url(images/ico-vignete-educacion.png);
	display: block;
	background-repeat: repeat;
	background-position: 25px center;
}
#wrap-content-up #content-up #servicios p {
	/* [disabled]color: #666666; */
	/* [disabled]line-height: 16px; */
	/* [disabled]font-size: 11px; */
	/* [disabled]float: left; */
	/* [disabled]display: inline; */
	/* [disabled]margin-top: 0px; */
	/* [disabled]margin-right: 0px; */
	/* [disabled]margin-bottom: 10px; */
	/* [disabled]margin-left: 45px; */
	/* [disabled]width: 170px; */
	/* [disabled]padding: 0px; */
}
/*#wrap-content-up #content-up #servicios h2  {
	font-family: 'Lato', sans-serif;
	color: #637281;
	font-size: 10px;
	padding: 0px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}*/
#wrap-content-up #content-up #servicios h3 {
	/* [disabled]font-weight: normal; */
	/* [disabled]font-size: 13px; */
	line-height: 16px;
	/* [disabled]border-bottom-width: 1px; */
	/* [disabled]border-bottom-style: dashed; */
	/* [disabled]border-bottom-color: #C4CED2; */
	/* [disabled]text-indent: 15px; */
	margin: 0px;
	/* [disabled]padding: 0px;*/
}

/*#wrap-content-up #content-up #servicios em {
	font-family: 'Yanone Kaffeesatz', "Arial Narrow", sans-serif;
	font-style: normal;
	color: #7997A2;
	float: left;
	height: 10px;
}*/


#wrap-content-up #content-up #servicios #carrusel {
	margin-top: 20px;
	margin-bottom: 20px;

}
#wrap-content-up #content-up #servicios #carrusel img{
	/* [disabled]height: 100px;*/
	/* [disabled]width: 150px;*/
	margin-right: 15px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#wrap-content-up #content-up #servicios #portafolio {
	float: left;
	width: 230px;
}
#wrap-content-up #content-up #servicios #portafolio h2    {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	/* [disabled]font-size: 13px; */
}
#wrap-content-up #content-up #servicios #portafolio h2 a    {
	font-family: 'Lato', sans-serif;
	color: #005580;
	/* [disabled]margin: 0px; */
	/* [disabled]padding-bottom: 10px; */
	font-size: 11.5px;
	/* [disabled]font-weight: bold; */
	text-shadow: 1px 1px 1px #FFFFFF;
	text-decoration: none;
	background-image: url(../images/ico-arrow.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 15px;
	text-transform: uppercase;
}
#wrap-content-up #content-up #servicios #portafolio h2 a:hover    {
	text-decoration: underline;
}




#wrap-content-up #content-up #servicios #portafolio ul {
	list-style-type: none;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
}
#wrap-content-up #content-up #servicios #portafolio ul li {
	/* [disabled]margin-bottom: 1px; */
	width: 200px;
}
#wrap-content-up #content-up #servicios #portafolio ul li a {
	height: 30px;
	text-decoration: none;
	display: block;
	line-height: 30px;
	padding-left: 15px;
	/* [disabled]margin-bottom: 2px; */
	font-size: 11px;
	background-image: url(../images/bg-vertical-tab-portfolio.png);
	background-repeat: no-repeat;
	/* [disabled]font-weight: bold; */
	/* [disabled]text-shadow: 1px 1px 0px #41555C; */
	background-position: left top;
}
#wrap-content-up #content-up #servicios #portafolio ul li a:hover {
	background-image: url(../images/bg-vertical-tab-portfolio.png);
	background-repeat: no-repeat;
	background-position: left bottom;
	color: #FFF;
}
#wrap-content-up #content-up #servicios #noticias {
	float: right;
	width: 245px;
	/* [disabled]background-position: 0px 100px; */
	margin-bottom: 10px;
}
#wrap-content-up #content-up #servicios #noticias p{
	/* [disabled]color: #666666; */
	/* [disabled]line-height: 16px; */
	font-size: 11px;
	/* [disabled]float: left; */
	/* [disabled]margin-top: 10px; */
	/* [disabled]margin-right: 0px; */
	/* [disabled]margin-bottom: 10px; */
	/* [disabled]margin-left: 0px; */
	/* [disabled]width: 170px; */
}
#wrap-content-up #content-up   #servicios #noticias em{
	/* [disabled]margin-left: 20px; */
	font-family: 'Yanone Kaffeesatz', "Arial Narrow", sans-serif;
	font-style: normal;
	color: #7997A2;
}	
#wrap-content-up #content-up #servicios #noticias img{
	/* [disabled]padding-right: 10px; */
	float:right;
}#wrap-content-up #content-up #servicios #noticias h3 a{
	font-weight: normal;
	/* [disabled]padding-top: 10px; */
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	font-size: 90%;
	/* [disabled]line-height: 16px; */
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #C4CED2;
	/* [disabled]text-indent: 15px; */
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	text-decoration: none;
	display: block;
}
#wrap-content-up #content-up #servicios #noticias a:hover{
	text-decoration: underline;
}

#wrap-content-up #content-up #servicios #noticias h2    {
	color: #005580;
	font-family: "Lato","sans serif";
	font-size: 18px;
	height: 30px;
	line-height: 30px;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 35px;
	background-image: url(../images/ico-vignete-ballon.png);
	background-repeat: no-repeat;
	background-position: left top;
}

#wrap-content-up #content-up #servicios #noticias h2 a {
	background-image: url(../images/ico-arrow.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 15px;
	font-family: 'Lato', sans-serif;
	color: #005580;
	margin: 0px;
	font-size: 11.5px;
	font-weight: bold;
	text-shadow: 1px 1px 1px #FFFFFF;
	text-decoration: none;
	text-transform: uppercase;

	}
	#wrap-content-up #content-up #servicios #noticias h2 a:hover    {
	text-decoration: underline;
}
.imagebox-80X80 {
	height: 80px;
	width: 80px;
}
#wrap-content-up #content-up #servicios #recientes {
	float: right;
	width: 245px;
	/* [disabled]background-position: 0px 100px; */
	margin-right: 0px;
	padding-right: 20px;
	margin-top: 20px;
}
#wrap-content-up #content-up #servicios #recientes p{
	/* [disabled]color: #666666; */
	/* [disabled]line-height: 16px; */
	font-size: 11px;
	color: #7997A2;/* [disabled]float: left; */
	/* [disabled]margin-top: 10px; */
	/* [disabled]margin-right: 0px; */
	/* [disabled]margin-bottom: 10px; */
	/* [disabled]margin-left: 0px; */
	/* [disabled]width: 170px; */
}
#wrap-content-up #content-up   #servicios #recientes em{
	/* [disabled]margin-left: 20px; */
	font-family: 'Yanone Kaffeesatz', "Arial Narrow", sans-serif;
	font-style: normal;
	color: #7997A2;
}	
#wrap-content-up #content-up #servicios #recientes img{
	/* [disabled]padding-right: 10px; */
	float:right;
}#wrap-content-up #content-up #servicios #recientes h3 a{
		font-family: "Lato","sans serif";
		font-weight: bold;
	/* [disabled]padding-top: 10px; */
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	font-size: 90%;
	/* [disabled]line-height: 16px; */
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #C4CED2;
	/* [disabled]text-indent: 15px; */
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	text-decoration: none;
	display: block;
}
#wrap-content-up #content-up #servicios #recientes a:hover{
	text-decoration: underline;
}
#wrap-content-up #content-up #servicios #recientes h2    {
	/* [disabled]color: #005580; */
	font-family: "Lato","sans serif";
	/* [disabled]font-size: 18px; */
	/* [disabled]height: 30px; */
	/* [disabled]line-height: 30px; */
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0px;
	/* [disabled]background-image: url(../images/ico-vignete-ballon.png); */
	/* [disabled]background-repeat: no-repeat; */
	/* [disabled]background-position: left top; */
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0px;
}
#wrap-content-up #content-up #servicios #recientes h2 a {
	background-image: url(../images/ico-arrow.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 15px;
	/* [disabled]font-family: 'Lato', sans-serif; */
	color: #005580;
	margin: 0px;
	font-size: 11.5px;
	font-weight: bold;
	text-shadow: 1px 1px 1px #FFFFFF;
	text-decoration: none;
	text-transform: uppercase;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	}
#wrap-content-up #content-up #servicios #recientes h2 a:hover    {
	text-decoration: underline;
}