/*
 Copyright 2013 Adobe Systems Incorporated.  All rights reserved.
 
 Purpose:
Css for text formatting HUD 
*/

/* container for whole text HUD*/
html,body
{
  height: 100%;
  width:100%;
  padding: 0px;
  margin: 0px;
}

body
{
    background-color:transparent;
    pointer-events:none;
}
#container
{
    position:absolute;
	height:20px;
	border:1px #BBBBBB;
	border-style:solid solid solid none ;
    pointer-events:auto;
    display:block;
}

/*  Each of the formatting image bold italics link.*/
img
{
	width:20px;
	height:20px ;
	float:left;
	border:1px #BBBBBB;
	border-style:solid ;
	-webkit-user-select: none ;
	user-select: none ;
}
img:hover
{
    background-color:#FFFFFF !important;
    border:1px #727272;
    border-style:solid;
}
img.normal
{
    background-color:#D6D5D6 ;
}
img.selected
{
    background-color:#AEAEAE !important;
    border:1px #727272;
    border-style:solid;
}

/* Wrapper element containing link and browse image icon*/
#linkContainer
{
    float:left;
	height: 20px;
	background-color: #FFFFFF;
}
/* input for entering link*/
input[type="text"]
{
    float:left;
    width:110px ;
	height:16px ;
    margin:2px;
	font-size:11px ;
	padding-left:2px;
	font-family:tahoma ;
}
input[type="image"]
{
    width:20px;
    height:20px;
    float:left;
}
/* For Folder Icon*/
input.folderIcon:focus {
	outline:1px orange;
	outline-style:solid !important;
}
