/*
 *  This file is part of WebSiCo: online Web Site Composer, http://websico.net
 *  Copyright (c) 2005-2010 Olivier Seston, http://seston.net
 *	All rights reserved.
 *  --------------------------------------------------------------------------
 *  CORE CLASSES CSS
 *  ---------------------------------------
 */

/*  Basic containers
 *  ----------------*/
.wssystemcontainer, .wscontainer {
	border-collapse: collapse;
	/* For height adjustment when floating contents, it works for height but causes 
	aberrations in some cases and we get a scrollbar..
	overflow: auto;
	width: 100%; */
}
.wssystemcontainer {
	width: 100%;
/* Not satisfying in some cases, even with FF; recomputed at load time by jglobal.js
	height: 100%;
*/
}
td {
	padding: 0;
}

/*	Basic components
 *	----------------*/
.inline-block {     /* Cross browser inline-block, for future use */
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;    /* For IE haslayout see http://foohack.com/2007/11/cross-browser-support-for-inline-block-styling/*/
    *display: inline;
}
.wsrawtext {	/* We keep an internal margin to be able to pick it with mouse */
	padding: 5px;
}
.ws_img_caption {
	margin-top: 0.2em;
}
.ws_selection {
	float: left;
}

/*  Errors
 *  ------*/
.ws_error, .ws_info {
	color: #d00;
	background: #ffe180;
	border: solid 5px;
	padding: 0.5em;
	text-align: center;
	font-size: 150%;
}
.ws_info {
	color: #080;
}
