/* by Alexander Endresen and mark and Nuno */
#menu_vert {
/* no margin/padding so it fills the whole div */
	margin: 0;
	padding: 0;
}
.clearb {
/* needed for some browsers */
	clear: both;
}
#menuwrapper {
/* set the background color for the menu here 
	background-color: #243135;*/
/* IE6 Hack */
	height: 1%;
	width: 870px; /* auto */
/* one border at the top 
	border-top: 1px solid #3F565C;*/
	margin: auto; /* 0 */
	padding: 0;
}
ul#primary-nav, ul#primary-nav ul {
/* remove any default bullets */
	list-style-type: none;
	margin: 0;
	padding: 0;
}
ul#primary-nav {
/* pushes the menu div up to give room above for background color to show */
	padding-top: 5px; /* 10 */	
/* keeps the first menu item off the left side */
	padding-left: 30px;
}
ul#primary-nav ul {
/* make the ul stay in place so when we hover it lets the drops go over the content below else it will push everything below out of the way */
	position: absolute;
/* top being the bottom of the li it comes out of */
	top: auto;
/* keeps it hidden till hover event */
	display: none;
/* same size but different color for each border 
	border-top: 1px solid #C8D3D7;
	border-right: 1px solid #C8D3D7;
	border-bottom: 1px solid #ADC0C7;
	border-left: 1px solid #A5B9C0; */
/* added start */
	border-top: 1px solid #000000;
	border-right: 1px solid #000000;
	border-bottom: 1px solid #000000;
	border-left: 1px solid #000000;
 background-color: #94c74c;
/* added end */

}
ul#primary-nav ul ul {
/* now we move the next level ul down from the top a little for distinction */
	margin-top: 1px;
/* pull it in on the left, helps us not lose the hover effect when going to next level */
	margin-left: -1px;
/* keeps the left side of this ul on the right side of the one it came out of */
	left: 100%;
/* sets the top of it inline with the li it came out of */
	top: 0px;
}
ul#primary-nav li {
/* floating left will set menu items to line up left to right else they will stack top to bottom */
	float: left;

/* no margin/padding keeps them next to each other, the padding will be in the "a" */
	margin: 0px;
	padding: 0px;
}

ul#primary-nav li.menuparent {
/* added start
 background:  url(/uploads/UIPRSG/design/sub-menu-2.png) no-repeat 98% center;
added start */
}

#primary-nav li li {
/* Set the width of the menu elements at second level. Leaving first level flexible. */
	width: 300px; /* 220px */
/* removes any left margin it may have picked up from the first li */
	margin-left: 0px;
/* keeps them tight to the one above, no missed hovers */
	margin-top: -1px;
/* removes the left float set in first li so these will stack from top down */
	float: none;
/* relative to the ul they are in */
	position: relative;
}
/* set the "a" link look here */
ul#primary-nav li a {
/* specific font size, this could be larger or smaller than default font size */
	font-size: 1em;
/* make sure we keep the font normal */
	font-weight: normal;
/* set default link colors 
	color: #fff;*/
/* pushes out from the text, sort of like making links a certain size, if you give them a set width and/or height you may limit you ability to have as much text as you need */
	padding: 12px  12px 12px 12px; /* 12px 15px 15px */
	/*display: block;*/
/* sets no underline on links */
	text-decoration: none;
 /* added
 background: url(/uploads/UIPRSG/design/nav-separator.png) repeat-y 100% 2px;*/
}
ul#primary-nav ul li a {
 background: none;
}
ul#primary-nav li a:hover {
/* kind of obvious */
	background-color: transparent;
}
ul#primary-nav li li a:hover {
/* this is set to #000, black, below so hover will be white text 
	color: #FFF;*/
}
ul#primary-nav li a.menuactive {
	color: #000;
/* bold to set it off from non active */
	font-weight: bold;
/* set your image here 
	background:  url(http://hostaluniversitario.com/uploads/ngrey/nav.png) repeat-x left 0px;*/
}
ul#primary-nav li a.menuactive:hover {
/*	color: #000;*/
/* keep it the same */
	font-weight: bold;
}
#primary-nav li li a.menuparent span {
/* makes it hold a shape */
	display: block;
/* set your image here, right arrow, 98% over from the left, 100% or 'right' puts it to far 
	background:  url(http://hostaluniversitario.com/uploads/ngrey/parent.png) no-repeat 98% center; */
}
/* gif for IE6, as it can't handle transparent png */
* html #primary-nav li li a.menuparent span {
/* set your image here, right arrow, 98% over from the left, 100% or 'right' puts it to far 
	background:  url(http://hostaluniversitario.com/uploads/ngrey/parent.gif) no-repeat 98% center;*/
}
ul#primary-nav li ul a {
/* insures alignment */
	text-align: left;
	margin: 0px;
/* keeps it relative to it's container */
	position: relative;
/* less padding than first level no need for large links here */
	padding: 6px 3px 6px 15px;
/* if first level is set to bold this will reset this level */
	font-weight: normal;
/* first level is #FFF/white, we need black to contrast with light background */
/*	color: #000;*/
	border-top: 0 none;
	border-right: 0 none;
	border-left: 0 none;
}
ul#primary-nav li ul {
/* very lite grey color, by now you should know what the rest mean */
/*	background: #F3F5F5;*/
	margin: 0px;
	padding: 0px;
	position: absolute;
	width: auto;
	height: auto;
	display: none;
	position: absolute;
	z-index: 999;
/* 	border-top: 1px solid #FFFFFF; 
	border-bottom: 1px solid #374B51; */
/*Info: The opacity property is  CSS3, however, will be valid just in CSS 3.1) http://jigsaw.w3.org/css-validator2) More Options chose CSS3 3) is full validate;)*/
	opacity: 0.95;
/* CSS 3 */
}
ul#primary-nav li ul ul {
/*Info: The opacity property is  CSS3, however, will be valid just in CSS 3.1) http://jigsaw.w3.org/css-validator2) More Options chose CSS3 3) is full validate;)*/
	opacity: 95;
/* CSS 3 */
}
/* Styling the appearance of menu items on hover */
#primary-nav li:hover,
#primary-nav li.menuh,
#primary-nav li.menuparenth,
#primary-nav li.menuactiveh {
/* set your image here, dark grey image 
	background:  url(http://hostaluniversitario.com/uploads/ngrey/darknav.png) repeat-x left center;
	color: #000*/
}
/* The magic - set to work for up to a 3 level menu, but can be increased unlimited, for fourth level add
#primary-nav li:hover ul ul ul,
#primary-nav li.menuparenth ul ul ul,
*/
#primary-nav ul,
#primary-nav li:hover ul,
#primary-nav li:hover ul ul,
#primary-nav li.menuparenth ul,
#primary-nav li.menuparenth ul ul {
	display: none;
}
/* for fourth level add
#primary-nav ul ul ul li:hover ul,
#primary-nav ul ul ul li.menuparenth ul,
*/
#primary-nav li:hover ul,
#primary-nav ul li:hover ul,
#primary-nav ul ul li:hover ul,
#primary-nav li.menuparenth ul,
#primary-nav ul li.menuparenth ul,
#primary-nav ul ul li.menuparenth ul {
	display: block;
}
/* IE6 Hacks */
#primary-nav li li {
	float: left;
	clear: both;
}
#primary-nav li li a {
	height: 1%;
}

BLOCKQUOTE, BODY, BUTTON, CODE, DD, DIV, DL, DT, FIELDSET, FORM, H1, H2, H3, H4, H5, H6, IMG, LEGEND, LI, OL, P, PRE, TD, TH, UL
{
 margin: 0;
 padding: 0 0 0px;
 border: 0;
 /*vertical-align: baseline;*/
}
ADDRESS, BLOCKQUOTE, DL, FIELDSET, FORM, H1, H2, H3, H4, H5, H6, OL, P, TABLE, UL
{
 margin: 15px 0;
}
BODY
{
 padding: 0px;
 background: 0 0;
 font: 0.8em/1.5 'arial';
}
H1
{
 font-size: 300%;
}
H2
{
 font-size: 130%;
 background: #AFD77A;
 padding: 8px;
 width: 198px;
}
H3
{
 font-size: 160%;
}
H4, H5, H6
{
}
FORM UL
{
 list-style: none;
}
FORM LI
{
 display: block;
 padding-bottom: 7px;
}
FORM LI LABEL
{
 display: block;
 padding-bottom: 3px;
}
INPUT, SELECT, TEXTAREA
{
 font-size: 100%;
 font-family: arial, sans-serif;
}
TABLE.table
{
 border-collapse: collapse;
 border-spacing: 0;
}
TABLE.table TH, TABLE.table TD
{
 padding: 7px 10px;
}
TABLE.table TH
{
 font-weight: bold;
}
UL.ul
{
 margin-left: 20px;
 list-style: none;
}
UL.ul LI
{
 padding-left: 15px;
 background: url("/uploads/UIPRSG/design/ul.gif") no-repeat 0 5px;
}
UL.ul UL
{
 margin: 0 0 0 20px;
 list-style: none;
}
IMG.f-left
{
 margin-right: 15px;
}
IMG.f-right
{
 margin-left: 15px;
}

#main
{
 width: 920px;
 margin: 0 auto;
}
.logo
{
 width: 920px;
 height:100px;
 margin: 0 auto 10px;
}
#nav
{
 position: relative;
 height: 43px;
 padding-top: 12px;
 background: url("/uploads/UIPRSG/design/nav.png") no-repeat 0 0;
 font-size: 110%;
}
#twitter
{
 position: absolute;
 bottom: -15px;
 right: 35px;
 margin: 0;
 z-index: 999;
}
#content
{
 text-align: inherit;
}
#content .padding
{
 padding: 20px;
}
.col-left IMG
{
 width: 157px;
 border: 1px solid #007B63;
}
#footer
{
 padding: 20px 35px 0 8px;
 /*background: url("/uploads/UIPRSG/design/footer.png") no-repeat 0 0;*/
 color: #007B63;
}
#footer P
{
 margin: 0;
}

.intro
{
 position: relative;
 width: 920px;
 height: 380px;
 overflow: hidden;
 background: url("/uploads/UIPRSG/design/intro.png") repeat-x 0 0;
}
.intro #bannerf
{
 width: 920px;
 height: 380px;
 background: url("/uploads/UIPRSG/design/laptop.png") no-repeat 100% 25px;
}
.intro #logo
{
 position: absolute;
 top: 35px;
 left: 35px;
 margin: 0;
}
.intro #slogan
{
 position: absolute;
 bottom: 115px;
 left: 35px;
 width: 450px;
 margin: 0;
 font-size: 270%;
 line-height: 1.1;
}
.intro #button
{
 position: absolute;
 top: 330px;
 left: 35px;
 margin: 0;
}
.intro #button A
{
 margin-right: 4px;
 padding: 8px 12px;
 border-radius: 5px;
 -webkit-border-radius: 5px;
 -moz-border-radius: 5px;
 text-decoration: none;
 font-weight: bold;
}
.intro #screenshot
{
 position: absolute;
 top: 40px;
 right: 0;
 margin: 0;
}
.intro #screenshot IMG
{
 display: block;
 width: 375px;
 height: 276px;
}
.cols4
{
 margin: 0;
 list-style: none;
}
.cols4 LI
{
 display: block;
 float: left;
 width: 190px;
 margin-right: 33px;
}
.box LI
{
}
.cols4 LI.last
{
 margin: 0;
}
.cols4 LI .thumb
{
 margin: 15px 0;
}
.cols4 LI .thumb IMG
{
 display: block;
 width: 196px;
 border: 4px solid #FDD963;
 margin: -9px 0 0;
}
.cols4 LI .mapa IMG
{
 display: block;
 width: 100px;
 border: 4px solid #FDD963;
 margin: -9px 0 0;
}
.cols4 LI H2
{
 margin: 0;
 line-height: 1;
}
.cols4 LI P
{
 margin: 0;
}
.gradient
{
 padding: 30px 35px 35px;
 background: url("/uploads/UIPRSG/design/gradient.png") repeat-x 0 0;
}
.gradient P, .gradient H3
{
 margin: 0;
}
.gradient H3
{
 margin-bottom: 15px;
}
.gradient .col-left
{
 float: left;
 width: 172px;
}
.gradient .col-right
{
 float: right;
 width: 474px;
}
.gradient .col-right UL
{
 margin: 0;
 list-style-type: square;
 list-style-position: inside;
}

.title
{
 position: relative;
 padding: 35px;
 background: url("/uploads/UIPRSG/design/gradient-02.png") repeat-x 0 100%;
}
.title #logo
{
 position: absolute;
 top: 48px;
 right: 35px;
 margin: 0;
}
.title H1
{
 margin: 0;
}
.col-content
{
 float: right;
 width: 610px;
 padding: 20px 35px 35px;
}
.col-aside
{
 float: right;
 width: 200px;
 padding-right: 0px;
}
.gallery LI
{
 display: block;
 float: left;
 margin-right: 10px;
}
.gallery LI.last
{
 margin: 0;
}
.menu
{
 list-style: none;
}
.menu LI
{
 display: inline;
}
.menu LI A
{
 display: block;
 padding: 5px 0;
}
.menu LI.current A
{
 font-weight: bold;
 text-decoration: none;
}
.sponsors
{
 margin: 0;
 list-style: none;
}
.sponsors LI
{
 padding: 5px 0;
}

.box
{
 min-height: 1px;
 -height: 1%;
}
.box:after
{
 display: block;
 visibility: hidden;
 clear: both;
 line-height: 0;
 font-size: 0;
 content: ".";
}
.fix
{
 float: none;
 clear: both;
 width: 0;
 height: 0;
 margin: 0;
 padding: 0;
 border: 0;
 line-height: 0;
 font-size: 0;
}
.f-left
{
 float: left !important;
}
.f-right
{
 float: right !important;
}
.t-left
{
 text-align: left !important;
}
.t-center
{
 text-align: center !important;
}
.t-right
{
 text-align: right !important;
}
.t-justify
{
 text-align: justify !important;
}
.va-top
{
 vertical-align: top !important;
}
.va-middle
{
 vertical-align: middle !important;
}
.va-bottom
{
 vertical-align: bottom !important;
}
.nom
{
 margin: 0 !important;
}
.nomt
{
 margin-top: 0 !important;
}
.nomb
{
 margin-bottom: 0 !important;
}
.hidden
{
 position: absolute;
 left: -1000em;
 top: auto;
 width: 1px;
 height: 1px;
 overflow: hidden;
}
.noscreen
{
 display: none;
}
.smaller
{
 font-size: 85%;
}
.input-text
{
 padding: 5px;
}
.input-submit
{
 padding: 3px;
}



BODY
{
 background-color:#4B4B4B;;
 color: black;
}
A
{
 color: white;
text-decoration: none;
}
A:hover, A:active, A:focus
{
 color: grey;
}
H1
{
 color: #007B63;
}
H2, H3
{
 color: white;
}
TABLE.table
{
 border: 1px solid #CCC;
}
TABLE.table TH, TABLE.table TD
{
 border: 1px solid #007A62;
}
TABLE.table TH
{
 border-bottom: 3px solid #007B63;
 color: #007B63;
}
TABLE.table TR.even TD
{
 background-color: #FDD861;
}

#nav UL LI A
{
 color: #007B63;
}
#nav UL LI.current A, #nav UL LI A:hover
{
 color: #FFF;
}
#content
{
 background-color: #FFF;
}
#footer A
{
 color: #007B63;
}

{
 background-color: #FFF;
}
.intro #button A
{
 background-color: #FFF;
}
.intro #button A:hover
{
 background-color: #FDD450;
 color: #FFF;
}

.title
{
 background-color: #FFF;
}
.menu
{
 border-top: 1px dotted #CCC;
}
.menu LI A
{
 border-bottom: 1px dotted #CCC;
}
.menu LI.current A
{
 color: #000;
}
.sponsors
{
 border-top: 1px dotted #CCC;
}
.sponsors LI
{
 border-bottom: 1px dotted #CCC;
}

.input-text
{
 border: 1px solid #CCC;
 border-right: 1px solid #EEE;
 border-bottom: 1px solid #EEE;
 color: #888;
}

/* nav hostal*/

#hostal-nav
{
 position: relative;
 height: 43px;
 padding-top: 12px;
 background: url("/uploads/UIPRSG/Hostal-SG/images/nav.png") no-repeat 0 0;
 font-size: 110%;
}
#hostal-nav{
 z-index:999999; 
 height: 30px;
 padding-top: 0px;
} 
#hostal-nav A{
color:white;
/*background:URL("/uploads/UIPRSG/Hostal-SG/images/nav.png");*/
}
#hostal-nav A:hover{
color:black;
}
#hostal-bg{
background-color:#4B4B4B;
padding: 0px;
}
.Hostal-box
{
 padding: 1px 35px 0px;
 background: url("/uploads/UIPRSG/Hostal-SG/images/gradient.png") repeat-x 0 0;
}

a.Hostal-box
{
color:black;
}
#hostal-footer a, #hostal-footer h3{
color:black;
}
#hostal-footer a:hover{
color:grey;
}
#hostal-footer-2{
/*background: url("/uploads/UIPRSG/design/footer.png") no-repeat 0 0;*/
}
#hostal-footer-2 p,#hostal-footer-2 a{
color:white;
}
#hostal-footer-2 a:hover{
color:grey;
}
.full-content-hostal
{
 padding: 20px 20px 20px;
/*background-color:#776855;*/
background-color:#2C2B2B;
}
div.full-content-hostal h1, div.full-content-hostal p
{
 color:white;
}


/* Stylesheet: UIPRSG-Hostal-Page-css Modified On 2022-06-29 07:29:24 */
