/*=====[ January 2005 . Author John Oxton (joshuaink.com) ]=====*/


/* Kill margin and padding on all elements - because different browsers have different defaults */
*{
	margin:0;
	padding:0;
}

html{
/* Fixes background nastiness when a sidebar is open in Firefox */
	width:100%;
}

body{
/* Use backgound image as opposed to colour so that site is still functional if images are off */
	background:white url(../images_web/candy/background.png) 0 0 repeat;
/* Shove all content to the center of the screen for Internet Explorer 5 */
	text-align:center;
}

/*=====[ Set up container divs and add background tiles ]=====*/

#pageheadContainer,
#contentContainer,
#footContainer{
/* 100% so we can create the fullscreen width backgrounds */
	width:100%;
}

#pageheadContainer{
	/*background:transparent url(../candy/pageheadBackground.png) 0 100% repeat-x;*/
	height: 300px;
	background-image: url(../images_web/candy/pageheadBackground.png);
	background-position: center;
	background-repeat: no-repeat;
	padding-top: 20px;
}

#contentContainer{
	background:#F7F7F7 url(../images_web/candy/contentBackground2.png) 50% 100% repeat-y;
	/* Float left to prevent floated child divs(#article & #subContent) overflowing . aka the FnE method http://www.orderedlist.com/articles/clearing_floats_fne */
	float:right;
}

#footContainer{
	background:transparent url(../images_web/candy/footBackground.png) 0 0 repeat-x;
	clear:both;
}

#pagehead,
#content,
#foot{
	/* Set widths for "sub" container divs and center on the screen . fluid you say? I think not sir, you are quite mad! */
	width:800px;
	margin:0 auto;
	/* Position relative so we can position children absolutley but keep them relative to their parents and not the document root - confused? Me too! */
	position:relative;
	/* Shove the content back where it should be now we have convinced IE5 that center aligned websites are, infact, groovy (see body{}) */
	text-align:left;
}

#pagehead{
	height:300px;
}

#foot{
	height:150px;
}

/* More backgounds, we need more backgrounds! */
/*#pagehead{
	background:transparent url(../candy/pageheadBackground2.png) 0 100% no-repeat;
}*/

#content{
	background-color: transparent;
	background-image: url(../images_web/candy/contentBackground.png);
	background-repeat: no-repeat;
	background-position: 0 0;/* Ensure this background tile is never cut short, min-height for Firefox and pals, _height 'hack' for Internet Exploiter */
	min-height:300px; 	
	_height:300px; 
}

#foot{
	background:transparent url(../images_web/candy/footBackground2.png) 100% 0 repeat-x;
}

/*=====[ Set up two column layout for articles and subcontent ]=====*/

#article{
	width:480px;
	float:left;
	padding:25px 0 20px 0;
	margin-left:30px;
}

#subContent{
	/* Fix double margin bug in IE on floats using display:inline */
	display:inline;
	width:241px;
	float:left;
	padding:40px 0 20px 0;
	margin-left:20px;
	color:#8B725A;
	font-size:0.9em;
}

/*=====[ Navigations ]=====*/

#pagehead h1 a{
/* Create blank hit area for logo/signature - PNG here would have been nice but hey, this is IE land we live in!  */
	display:block;
	text-indent:-9999px;
	width:230px;
	height:82px;
	text-decoration:none;
/* Float to make hit area work in... yup, you gussed it ayyyeee 5! */
	float:left;
}

#pagehead a:hover{
/* prevent background colour used on site wide anchors */
	background:transparent;
}

#pagehead h1{
	/* Position blank hit area over background logo/signature */
	position:absolute;
	top:0px;
	left:4px;
	width: 230px;
	height: 82px;
	background-image: url(../images_web/candy/logoprincess.gif);
	background-repeat: no-repeat;
}
#pagehead h2{
	/* Position blank hit area over background logo/signature */
	position:absolute;
	top:0px;
	left:546px;
	width: 253px;
	height: 27px;	/*background-image: url(../candy/logoprincess.gif);*/
}

/* Main navigation list */

#pagehead ul{
	display:block;
	position:absolute;
	top:279px;
	left:215px;
	width: 587px;
}

#pagehead li{
	display:block;
	float:left;
	width:80px;
	margin-left:3px;
}

#pagehead li a{
	display:block;
	height:20px;
	text-align:center;
	color:#FFFFFF;
	font-size:1.2em;
	font-weight:bold;
	/* Line height same as height, which puts the text vertically centered, hoorah! */
	line-height:20px;
	text-decoration:none;
	text-transform:lowercase;
}


#pagehead li.odd a{
	background:#6699FF;
}

#pagehead li.even a{
	background:#257EB7;
}

#pagehead a:hover{
	color:#0099FF;
}

/* Foot navigation and FIR */

#foot ul{
	position:absolute;
	top:45px;
	left: 0px;
}

#foot li{
	/* hide bullets */
	list-style-type:none;
	position: absolute;
	top: 107px;
}

#foot #foot1{
	/* width to solve odd problem with Opera 7.5 */
	width:515px;
	position:absolute;
	left:1px;
	top: 10px;
}

#foot #foot2{
	/* width to solve odd problem with Opera 7.5 */
	width:175px;
	position:absolute;
	left:625px;
	top: 10px;
}
#foot #valid{
	/* width to solve odd problem with Opera 7.5 */
	width:92px;
	position:absolute;
	left:803px;
	top: 235px;
	height: 35px;
}

/* This is the anchor top button at bottom of page */
#foot #pageTop{
	position:absolute;
	/* This position worked out using a highly technical formula: left a bit, right a bit, no left a bit... bingo! */
	left:517px;
	top:-34px;
}

#foot #pageTop a{
	display:block;
	width:26px;
	height:26px;
	text-indent:-9999px;
	text-decoration:none;
	background:transparent url(../images_web/candy/pageTop.png) 0 0 no-repeat;
/* Float to make hit area work in... yup, you gussed it again Internot Exploder 5 */
	float:left;
}

/*=====[ General params and typography ]=====*/

body{
/* relative font sizing to allowing scaling in Internet Exfoliator - http://www.clagnut.com/blog/348/*/
	font:normal 62.5%/1.8em Arial, Helvetica, sans-serif;
}

/* #content ul used to prevent main navigation, within #pagehead, list breaking */
#content ul{
	margin:0.8em 0 0.6em 1em;
	padding-left:1em;
	list-style-type:square;
}

ol{
	margin:0.8em 0 0.6em 2em;
	padding-left:1em;
	list-style-type:lower-roman;
}

blockquote{
	margin:0.8em 0 0.6em 1em;
	padding-left:1em;
	font-style:italic;
	border-left:4px solid #C0CAE1;
}

/* Frame images */
img{
	padding:1px;
	border:1px solid #C0CAE1;
}

/*Set font size for content area */
#content{
	font-size:1.25em;
}

p{
	margin:0.3em 0 0.6em 0;
}

a{
	color:#9D6141;
	font-weight:bold;
	text-decoration:none;
}

a:hover{
	background:#9D6141;
	color:#FFE;
}

#article{
	line-height:1.7em;
	color:#635141;
}

h1,
h2,
h3,
h4{
 font-family:Georgia, Times New Roman, Times, serif;
 color:#0066FF
 }

h2{
	color:#0099FF;
	margin-bottom:0.5em;
	line-height:1.7em;
	font-size:1.7em;
}

h3{
	margin:0.8em 0 0.6em 0;
	font-size:1.3em;
}

h4{
	margin:0.8em 0 0.6em 0;
	font-size:1.1em;
}

/* Sub Content */

#subContent h2{
	font-size:1.3em;
}

#subContent h3{
	font-size:1.1em;
}
#menu {
	width: 241px;
	margin-top: 0px;
	list-style-type: none;
	}
	
#menu li a {
	text-decoration: none;
	height: 32px;
  	height: 24px;
	}
	
#menu li a:link, #menu li a:visited {
	color: #FFFFFF;
	display: block;
	background: url(../images_web/candy/menu.gif);
	padding: 8px 0 0 20px;
	}
	
#menu li a:hover {
	color: #FF9900;
	background: url(../images_web/candy/menu.gif) 0 -32px;
	padding: 8px 0 0 25px;
	}
	
#menu li a:active {
	color: #CCCCCC;
	background: url(../images_web/candy/menu.gif) 0 -64px;
	padding: 8px 0 0 25px;
	}
	
#menu ul {
    list-style-type:none;
	list-style:none
}

.Estilo2 {
	font-size: 14px;
	color: #172A61;
}

.Estilo5 {
	font-size: 10px
}

.STfrm_Titulo {
	color: #0099FF;
	font-family: Georgia, "Times New Roman", Times, serif;
	text-align: center;
	font-size: 24px;
}

.STfrm_td {
	font-size: 11px;
	font-family: Arial, Helvetica, sans-serif;
}

.STfrm_select, .STfrm_select select {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 11px;
}

.STfrm_boton {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 12px;
	background: #F69805;
	color: #ffffff;
	border: none;
	height: 24px;
	line-height: 24px;
}
#sublinks {
	background-color: #FFFFFF;
	text-align: left;
}
.Estilo6 {color: #4861A4}
.share {
	background-color: #EDEDED;
	text-decoration: none;
	border: 1px solid #CCCCCC;
	padding: 2px;
	clear: both;
	height: auto;
	width: auto;
}
