﻿/* ================================
    Default styles FOR ALL IPC Portals
   ================================
*/ 

/* ------------------------------------------------------- */

.modalBackground
{
	background-color: #777;
	filter: alpha(opacity=70);
	opacity: 0.7;
}

.modal
{
	background-color: #fff;
	width: 500px;	
	border: solid 1px #000;
}

.modalTitleBar 
{
    cursor: move;
    padding: 4px;
    color: #fff;
    font-size: 105%;
    font-weight: bold;
    background-color: #c0c0c0;
}
.modalTitleBar a
{
    float:right;
    color: #fff;
    font-size: 90%;
}

.modalInner
{
    padding: 10px;
}
.clearLeft { clear:left; }


.completionList 
{
    background-color: White;   
    border: 1px solid gray;
    margin-top: 0;
    visibility: hidden;
}
.completionList li
{
    background-image: none;
    padding: 0;    
    margin: 1px;
    border-bottom: 1px dotted gray;
    list-style-image: none;
}

/*AutoComplete flyout */

.autocomplete_completionListElement 
{  
	visibility : hidden;
	margin : 0px!important;
	background-color : inherit;
	color : windowtext;
	border : buttonshadow;
	border-width : 1px;
	border-style : solid;
	cursor : 'default';
	overflow : auto;
    text-align : left; 
    list-style-type : none;
}

/* AutoComplete highlighted item */

.autocomplete_highlightedListItem
{
	background-color: #ffff99;
	color: black;
	padding: 1px;
}

/* AutoComplete item */

.autocomplete_listItem 
{
	background-color : window;
	color : windowtext;
	padding : 1px;
}