/* Start of CMSMS style sheet 'Golf : Left sidebar + 1 column' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 11px;
}

/********************
imagenes de hojas de los costados
*********************/
.backizq {
   width: 119px;
   height:auto;
   float:left;
   marging: 0;
   padding: 0;
}

.backder {
    width: 119px;
    height:auto;
    float:left;
    marging: 0;
    padding: 0;
}


/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 11px;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #FE6E33; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
   color: #FE6E33;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: #FFF6DC;
   color: #FE6E33;
}



/*****************
basic layout 
*****************/
body {
   background-image:url(uploads/images/armadositio/background.jpg);
   background-repeat:repeat-y;
   background-position:top center;
   background-color: #FFF6DC;
   color: #727272;
   margin:0; /*padding:0 gives some air for the pagewrapper */
}

/* center wrapper, min max width */


/*******************************/

#contenedor {
  width:955px;
  height:auto;
  padding:0;
  margin:0 auto;
  
}

div#pagewrapper {
   width:717px;   /* IE wont understand these, so we will use javascript magick */
   height:auto;
   background-image:url(uploads/images/armadositio/back-page.jpg);
   background-position:bottom left;
   background-repeat:repeat-x;
   background-color: #FFFFFF;
   float:left;  
   padding: 0;
   margin: 0 auto; /*0-auto  this centers wrapper */
}



/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#header {
   with:717px;
   height: 150px;    /* adjust according your image size */
   background-image: url(uploads/images/armadositio/fondo_top.jpg);
   padding:0;
   margin:0;
}

div#header h1 a {
/* you can set your own image here */
   background: #035D23 /*url(uploads/Golf/Banner.gif) no-repeat 0px 0px*/; 
   display: block;
   height: 150px;             /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

.logo {
   border:none;
   padding:0;
   margin:15px 0 0 0;
}
      


/* position for the search box */
div#search {
   float: right;
   width: 23em;    /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
}

div.breadcrumbs {
   padding: 1em 0 1.2em 10px; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 11px;        /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   background-color: #FDF8F4;
   margin: 0;        /* css shorthand rule will be opened to be "0 1em 0 1em" */
   
}

div#content {
   margin: 1.5em auto 2em 0;   /* some air above and under menu and content */
   color: #494949;
}


div#main {
   margin-left: 20%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 2%; /* and some air on the right */
}

div#sidebar {
   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 18%;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   border-right:1px solid #F60;
   margin-left: 1%;
   background-color: #FFFFFF; /* same bg color as in header */
}

div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #fff;
   height:69px;
}

div#footer p {
   font-size: 11px;
   padding:0;       /* some air%2*/
}

.pie-left-right {
	width:35px;
	height:69px;
	background-color:#EFA170;
	float:left;
	padding:0;
	margin:0;
}

.pie-center {
	width:647px;
	height:69px;
	background-color:#EFA170;
	float:left;
	padding:0;
	margin:0;
}

.pie-center p {
        padding:10px 5px;
        margin:10px 5px;
}

.pie-center p a, .pie-center p a:link, .pie-center p a:active, .pie-center p a:visited, .pie-center p a:focus {
       color:#F60;
       padding:0;
       margin:0;
}

.pie-center p a:hover {color:#EEE;}


/****** COMIENZO CLASES NEWS *****/

#contenedor-news {
      width:200px;
      height:auto;
      float:right;
      padding:0;
      margin:0;
}

.news_right {
float:right;
clear:both;
width:200px;
margin:0 0 5px 10px;
padding:0 10px 0 10px;
color:#494949;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
}

.news p {
margin: 5px 5px 5px 25px;
}

.news_cnr_top {
background:url(images/cnr_tr.gif) no-repeat top right;
margin:5px 5px 5px 25px;
}

.news_cnr_bottom {
background:url(images/cnr_br.gif) no-repeat top right;
margin:5px 5px 5px 25px;
}

/****** FIN CLASES NEWS *****/
/* End of 'Golf : Left sidebar + 1 column' */

