/* 
    Document   : decorateur
    Created on : 17 nov. 2009, 18:06:07
    Author     : Anthony Nivet <anivet@connectikup.com>
    Description:
        Style pour le contenu d'un bloc
*/

/*
  Style par défaut

  Couleurs: (default = bleu)
   - bleu     #d6e3f2
   - vert     #d3eecb
   - rose     #eac3d8
   - rouge    #eecbcb
   - orange   #f4dbbd
   - jaune    #fee79d
*/

/*
  Section du contenu du bloc (sous le titre)
  Couleur cadre : #939598 (gris)
*/
.portail_content_bloc {
  border: 1px solid #939598;
  border-top: none;
  margin: 0;
  padding: 5px 0px;
}

/* Default */
.portail_default .portail_content_bloc {
  background-color: #d6e3f2;
}

/*
  Styles applicatifs
*/

/* Bleu (Messagerie, recherche, tâches) */
.portail_bloc_messaging .portail_content_bloc,
.portail_bloc_search .portail_content_bloc,
.portail_bloc_task .portail_content_bloc {
  background-color: #d6e3f2;
}
/* Vert (Agenda, Agenda CMS) */
.portail_bloc_calendar .portail_content_bloc,
.portail_bloc_calendar_cms .portail_content_bloc {
  background-color: #d3eecb;
}
/* Rose (Météo) */
.portail_bloc_weather .portail_content_bloc {
  background-color: #eac3d8;
}
/* Rouge (A valider) */
.portail_bloc_calendar_validate .portail_content_bloc {
  background-color: #eecbcb;
}
/* Orange (CMS) */
.portail_bloc_cms .portail_content_bloc {
  background-color: #f4dbbd;
}
/* Jaune (RSS) */
.portail_bloc_rss .portail_content_bloc {
  background-color: #fee79d;
}

/*
  Les nuances
*/

/* Bleu */
.portail_bleu .portail_content_bloc {
  background-color: #d6e3f2;
}
/* Vert */
.portail_vert .portail_content_bloc {
  background-color: #d3eecb;
}
/* Rose */
.portail_rose .portail_content_bloc {
  background-color: #eac3d8;
}
/* Rouge */
.portail_rouge .portail_content_bloc {
  background-color: #eecbcb;
}
/* Orange */
.portail_orange .portail_content_bloc {
  background-color: #f4dbbd;
}
/* Jaune */
.portail_jaune .portail_content_bloc {
  background-color: #fee79d;
}
