/*
The overall canvas: provides a canvas works space to be able to place controls
outside of image, and also one of: container-inactive container-active
*/

.ia-canvas {
 position: relative;
 border: 0px solid #ddd;
 text-align: left !important; /* Protect from IE centering effect */
}

/*
The overall container: always has class="ia-container", and also one of:
container-inactive container-active
*/

.ia-container {
 position: absolute;
}

.ia-container img {
 border-width: 0;
}

.ia-view-image-link {
	display: block;
	margin-top: 10px;
	text-align: left;
}

#ia-modaldialog {
	position: absolute;
	top: 10px;
	right: 10px;
	height: auto;
	width: 180px;
	overflow: auto;
	padding:3px;
}

#ia-modaldialog h2 {
	margin-left: 25px !important;
	color: white !important;
}

#ia-modaldialog p {
	padding: 0px 0px 0px 18px !important;
	padding-right: 10px;
	font-weight:bold;
	background-image: url("http://culiacan.quetevalga.com/images/ajaxblack.gif");
	background-repeat: no-repeat;
	background-position: left top;
	margin: 0px;
	text-align:left;
	vertical-align:text-top;
}

.ia-modaldialog-bad  { background-color:#333; color: #fff;}
.ia-modaldialog-good { background-color: #333; color: #fff;}
.ia-modaldialog-ok   { background-color: #333; color: #fff;}

#ia-modaldialog-close {
	display: block;
	width: 16px;
	float: right;
	text-align: center;
	font-size: 8px;
	font-weight: bold;
	cursor: pointer;
	color:#FFF;
}


/* Note areas - a separate class is applied to those being edited. */

.ia-area {
 position: absolute;
 background: url(../img/transparent.gif);
 border: 0px solid #222;
/* cursor: crosshair; */
 /* Need to define font size to protect from other CSS (*cough* ImageFrames)
  * reducing it to an unreadable size */
 font-size: 10px;
}

.ia-area-new {
 border: 1px solid #ff0;
}

.ia-container-active .ia-area {
 visibility: inherit;
}

.ia-container-inactive .ia-area {
 visibility: hidden;
}

.ia-area-editing {
 position: absolute;
 visibility: visible;
 background: url(../img/transparent.gif);
 border: 1px solid #FFFFFF;
 cursor: crosshair;
}

.ia-area-highlight {
 position: absolute;
 visibility: visible;
 background: url(../img/translucent.gif);
 border: 1px solid #FFFFFF;
 cursor: crosshair;
}


.ia-area-innerborder-left {
 position: absolute;
 top: 0xp;
 left: 0px;
 border-left:1px solid #fff;
 width: 0px;
 height: 100%;

}

.ia-area-innerborder-leftmin {
 position: absolute;
 top: 0xp;
 left: 0px;
 border-left:0px solid #fff;
 width: 0px;
 height: 100%;

}

.ia-area-innerborder-top {
 position: absolute;
 top: 0xp;
 left: 0px;
 border-top: 1px solid #fff;
 width: 100%;
 height: 1px;
}

.ia-area-innerborder-topmin {
 position: absolute;
 top: 0xp;
 left: 0px;
 border-top: 0px solid #fff;
 width: 100%;
 height: 1px;
}

.ia-area-innerborder-right {
 position: absolute;
 top: 0xp;
 right: 0px;
 border-right:1px solid #fff;
 width: 0px;
 height: 100%;
}

.ia-area-innerborder-rightmin {
 position: absolute;
 top: 0xp;
 right: 0px;
 border-right:0px solid #fff;
 width: 0px;
 height: 100%;
}

.ia-area-innerborder-bottom {
 position: absolute;
 top: 0xp;
 bottom: 0px;
 border-bottom: 1px solid #fff;
 width: 100%;
}

.ia-area-innerborder-bottommin {
 position: absolute;
 top: 0xp;
 bottom: 0px;
 border-bottom: 0px solid #fff;
 width: 100%;
}


/* Notes themselves. */

.ia-note {
	background-color: #282828;
	white-space: nowrap;
	color: #ffffff;
	font-weight:bold;
	font-family: "Lucida Grande", sans-serif;
	padding-left: 5px;
	padding-right: 5px;
	position:absolute;
	top: 100%;
	visibility: hidden;
	cursor:pointer;
}
#id-note-link{
	color:#FFF;
	text-decoration:none;
	outline:none;
	font-weight:bold;
}
.ia-note span {
 display: block;
 margin-top: 2px;
 text-align: left;
 line-height: 1em;
 font-weight:bold;
}
.ia-note-title {
 margin-bottom: 1px;
 font-size: 110%;
 font-weight: bold;
 color: #666633;
}
.ia-note-content {
 color: #000000;
 font-weight:bold;
}
.ia-note-author {
 font-size: 80%;
 font-style: italic;
 text-align: right !important;
 color: #333300;
}


/* Note drag/resize UI */

.dragresize {
 position: absolute;
 width: 5px;
 height: 5px;
 font-size: 1px;
 background: white;
 border: 1px solid black;
}

.dragresize-tl {
 top: -8px;
 left: -8px;
 cursor: nw-resize;
}
.dragresize-tm {
 top: -8px;
 left: 50%;
 margin-left: -4px;
 cursor: n-resize;
}
.dragresize-tr {
 top: -8px;
 right: -8px;
 cursor: ne-resize;
}

.dragresize-ml {
 top: 50%;
 margin-top: -4px;
 left: -8px;
 cursor: w-resize;
}
.dragresize-mr {
 top: 50%;
 margin-top: -4px;
 right: -8px;
 cursor: e-resize;
}

.dragresize-bl {
 bottom: -8px;
 left: -8px;
 cursor: sw-resize;
 z-index: 200;
}
.dragresize-bm {
 bottom: -8px;
 left: 50%;
 margin-left: -4px;
 cursor: s-resize;
 z-index: 200;
}
.dragresize-br {
 bottom: -8px;
 right: -8px;
 cursor: se-resize;
 z-index: 200;
}

/* Editing UI */

.ia-editbar {
	position: absolute;
	z-index: 100;
	width: 200px;
	color:#000;
	padding: 5px;
	font-size: 12px;
	border: 1px solid black;
	background-color: 333;
	margin:2px;
}

.ia-editbar-inactive {
	visibility: hidden;
	background:#333;	
}

.ia-editbar-active {
	visibility: inherit;
		background:#333;
}

.ia-editbar select {
	font-family: "Lucida Grande",sans-serif;
}

.ia-editbar input, .ia-editbar textarea {
	margin: 0px;
	padding: 0px;
	font-weight: normal;
	font-family: "Lucida Grande",arial, helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	padding-left: 5px;
	background-color:#FFF;
}

.ia-editbar span {
	position: absolute;
	visibility: visible;
	top: 2px;
	height: 11px;
	font-size: 1px;
	line-height: 1px;
	cursor: pointer;
}

.ia-editbar-active span {
 visibility: inherit;
}

.ia-editbar li{
	list-style:none;
	cursor:pointer;
	padding-left: 3px;
}

.ia-editbar li:hover{
	list-style:none;
	cursor:pointer;
	padding-left: 3px;
}

span.ia-editbar-ok {
 right: 70px;
 width: 28px;
 height: 18px;
 border: 1px solid #bbb;
 visibility: inherit;
 padding: 0px;
 outline:none;
}

input.ia-editbar-ok{
	width: 80px;
	outline:none;
	margin-left: 2px;
	margin-bottom: 2px;
	font-family:Tahoma, Geneva, sans-serif;
	font-size:10px;
}

span.ia-editbar-cancel {
 right: 6px;
 width: 55px;
 height: 18px;
 border: 1px solid #bbb; 
 visibility: inherit;
 outline:none;
}

input.ia-editbar-cancel{
	width: 80px;
	outline:none;
	font-family:Tahoma, Geneva, sans-serif;
	font-size:10px;
}

/* Admin page CSS */
.ia-activerow {
	color: green;
	font-weight: bold;
}
#capaListaAmigos {
    /*width:20em;*/ /* set width here or else widget will expand to fit its container */
    /*padding-bottom:20em;*/ /* allow enough real estate for the container */
	background:#333;
	color:#FFF;
	text-decoration:none;
	font-weight:bold;
	padding: 2px;
}
#capaListaAmigos a{
    color:#FFF;
	text-decoration:none;
	font-weight:bold;
}
#contenedorListaAmigos { /* set scrolling */
    max-height:18em;overflow:auto;overflow-x:hidden; /* set scrolling */
    _height:18em; /* ie6 */
}
.yui-ac{font-family:"Lucida Grande",sans-serif;font-size:100%; background:#333 #FFF; font-weight:normal; height:auto; }

.yui-ac-input{width:90%;}

.yui-ac-container{width:99%;}

.yui-ac-content{padding-top: 2px;width:96%;border:1px solid #808080;background:#fff;overflow:hidden;z-index:9050; padding:2px; color:#000; height:auto;}

.yui-ac-shadow{margin:.3em;width:100%;background:#000;-moz-opacity:0.10;opacity:.10;filter:alpha(opacity=10);z-index:9049;}

.yui-ac iframe{opacity:0;filter:alpha(opacity=0);padding-right:.3em;padding-bottom:.3em;}
.yui-ac-content ul{margin:0;padding:0;width:100%;}

.yui-ac-content li{font-weight:normal; font: "Lucida Grande",sans-serif;margin:0;padding:2px 5px;cursor:pointer;white-space:nowrap;font-size:10px;}

.yui-ac-content li.yui-ac-prehighlight{background:#B3D4FF;}

.yui-ac-content li.yui-ac-highlight{background:#426FD9;color:#FFF;}

.note_link{
	color: #ffffff;
	text-decoration: none;
	font-weight:bold;
	outline-color: -moz-use-text-color;
	outline-style: none;
	outline-width: medium;	
}
