/* Editing text should have gray outline, not standard focus ring */
.kLine {
    outline: rgba(127,127,127,0) solid 1px;
    -webkit-transition: outline-color 0.1s linear;
}

.kLine[contenteditable=true]:hover {
    outline-color: rgba(127,127,127,1);
}

.kLine:focus {
    outline-color: rgba(127,127,127,1);
    -webkit-transition: none;
}

/* Sidebar should be a min-height so content can be dropped in it
 */
#sidebar { min-height: 190px; }


img { -webkit-user-select:none; }

/*  By default, graphics & callouts in article aren't selectable… */
[contenteditable] .graphic-container,
[contenteditable] .graphic-container *,
[contenteditable] .callout-container,
[contenteditable] .callout-container * {
    -webkit-user-select: none;
}

.article [contenteditable] span.HTMLElement {
    -webkit-user-select: text;
}

/*  Flickr (and potentially other code) uses an offscreen invisible image. This can ruin dragging */
img[width="0"], img[height="0"] { display:none; }


/* Give inline graphics a min height so they can be selected and maniuplated */
/*.graphic { min-height:16px; }   #91772*/


iframe.svx-placeholder
{
    width: 100%;
    height: 250px;
    border: none;
}

/* When inside a size-bound element, adjust to fill it */
.svx-size-bound > iframe.svx-placeholder
{
    height: 100%;
}

/* Little badge to indicate invisible content */
.svx-invisibadge
{
	background:rgb(0,127,255);
	-webkit-border-radius:3px;
	padding:2px 5px;
	color:white;
	font-size:80%;
}

.svx-warning
{
	background:rgb(205,0,0) !important;
}


/* Vector (and potentially other designs) makes paragraphs relatively positioned, we believe for IE compatibility. That messes with hit testing for selecting floated images though */
.article p, .no-callouts p { position: static; }