MMCT TEAM
Server IP : 103.53.40.154  /  Your IP : 3.145.109.244
Web Server : Apache
System : Linux md-in-35.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
User : ppcad7no ( 715)
PHP Version : 8.2.25
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON
Directory (0755) :  /home2/ppcad7no/tmp/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home2/ppcad7no/tmp/Cpanel_Form_file.upload.904d3c85
admin/0000755000352000025440000000000014642202703012313 5ustar  thediannthediannadmin/manage_seo.php0000644000352000025440000003540414373672676015155 0ustar  thediannthediann<?php 
ob_start();
require_once("../includes/dbsmain.inc.php"); 
if(isset($_POST['FeatureSubmit'])){
@extract($_POST);
if($admin_is_meta_fb_id!='Yes'){
    $admin_meta_fb_id='';
  }
if($admin_is_meta_alexa_id!='Yes'){
    $admin_meta_alexa_id='';
  }
  if($admin_is_meta_msvalidate_id!='Yes'){
    $admin_meta_msvalidate_id='';
  }
  
  
    if(is_uploaded_file($_FILES['site_map_xml']['tmp_name'])){
if($_FILES['site_map_xml']['name']=="sitemap.xml" && $_FILES['site_map_xml']['type']=="text/xml"){
     
      $site_map_xml=$_FILES['site_map_xml']['name'];
       $temp=$_FILES['site_map_xml']['tmp_name'];
       $cur="../".$site_map_xml;
       move_uploaded_file($temp,$cur);
  }else{?>
     <script>alert("Please upload correct sitemap.xml file");</script>
<?php }
}

if(is_uploaded_file($_FILES['robots_txt']['tmp_name'])){
if($_FILES['robots_txt']['name']=="robots.txt" && $_FILES['robots_txt']['type']=="text/plain"){
   
$robots_txt=$_FILES['robots_txt']['name'];
$temp2=$_FILES['robots_txt']['tmp_name'];
$cur2="../".$robots_txt;
move_uploaded_file($temp2,$cur2);
}else{?>
<script>alert("Please upload correct robots.txt file");</script>
<?php    
}
}




if(is_uploaded_file($_FILES['favicon']['tmp_name'])){
 
   
   if(preg_match("/\.(gif|png|jpg|jpeg)$/",$_FILES['favicon']['name']) && $_FILES['favicon']['name']=="favicon.gif" || $_FILES['favicon']['name']=="favicon.png" || $_FILES['favicon']['name']=="favicon.jpg" || $_FILES['favicon']['name']=="favicon.jpeg"){
     $old_file=db_scalar("select admin_favicon from tbl_admin where admin_user_type='Admin'");
   @unlink("../$old_file");
   $favicon=$_FILES['favicon']['name'];
   $temp3=$_FILES['favicon']['tmp_name'];
   $cur3="../".$favicon;
   move_uploaded_file($temp3,$cur3);
     db_query("update tbl_admin set admin_favicon='$favicon' where admin_user_type='Admin'");
   }else{?>
<script>alert("Please upload correct image");</script>
<?php    
}

 
}
  
  
  $sql="update tbl_admin set 
			admin_index_follow='$admin_index_follow',
			admin_is_meta_fb_id='$admin_is_meta_fb_id',
			admin_meta_fb_id='$admin_meta_fb_id',
			
			 admin_site_map_xml='$site_map_xml',
                admin_robots_txt='$robots_txt',
                
			admin_is_meta_alexa_id='$admin_is_meta_alexa_id',
			admin_meta_alexa_id='$admin_meta_alexa_id',
			admin_google_analytic_code='$admin_google_analytic_code',
			admin_site_verification_code='$admin_site_verification_code',
			admin_is_meta_msvalidate_id='$admin_is_meta_msvalidate_id',
			admin_meta_msvalidate_id='$admin_meta_msvalidate_id'
			where admin_user_type='Admin'";
            db_query($sql);
    $arr_error_msgs[] = "Features Added Successfully !";
}
  if(isset($_POST['FollowUsUpdate'])){
    @extract($_POST);
	db_query("update tbl_admin set 
	             admin_facebook_link='$admin_facebook_link',
	             admin_twitter_link='$admin_twitter_link',
	            
	             admin_linkedin_link='$admin_linkedin_link',
	              admin_instagram_link='$admin_instagram_link',
         admin_pinterest_link='$admin_pinterest_link',
         admin_live_chat_code='$admin_live_chat_code',
         admin_youtube_link='$admin_youtube_link'
				 where admin_user_type='Admin'");
				 $arr_error_msgs[]="Follow Us Link updated successfully !";
			}  

$found_del=mysqli_fetch_array(db_query("select * from tbl_admin where 1 and admin_user_type='Admin'"));

?>
<?php include ('top.inc.php'); ?>
<link href="styles.css" rel="stylesheet" type="text/css">
<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td id="pageHead" ><div id="txtPageHead">Manage SEO Setting </div></td></tr></table>
<div align="center"><b>
  <?php include('error_msgs.inc.php');?>
  </b></div>
<form name="form1" method="post" enctype="multipart/form-data">
  <table  border="0" width="42%"align="left" cellpadding="2" cellspacing="3" class="tableSearch" style="margin-left:20px; border:2px outset #fff; margin-bottom:20px; margin-top:15px;">
    <tr><td colspan='4' bgcolor="#004080" class='tdLabel' style="padding:10px;"><b style="color:#FFFFFF; font-size:14px;">Enable/Disable SEO Feature's</b></td></tr>
<tr><td class='tdLabel' style="font-size:12px; padding-top:15px;"><strong>1.</strong> <span style="margin-left:10px; font-weight:bold; color:#176C8C">Enable Index,Follow</span> </td>
      <td class='tdLabel' style=" padding-top:15px;"><input name="admin_index_follow" type="checkbox" value="Yes"  <?php if($found_del['admin_index_follow']=='Yes') {?> checked="checked" <?php }?>  />
      </td>
    </tr>
    <tr>
      <td class='tdLabel' style="font-size:12px; padding-top:10px;"><strong>2.</strong> <span style="margin-left:10px; font-weight:bold; color:#176C8C">FB Page Id</span> </td>
      <td class='tdLabel' style=" padding-top:10px;"><input name="admin_is_meta_fb_id" type="checkbox" value="Yes"  <?php if($found_del['admin_is_meta_fb_id']=='Yes') {?> checked="checked" <?php }?>  /></td>
    </tr>
    <tr>
      <td class='tdLabel' colspan="2" style="font-size:12px; padding-top:10px;"><span style="margin-left:35px; font-size:11px; font-weight:bold;">Enter Id</span> <span style="margin-left:10px;"><input name="admin_meta_fb_id" style="width:320px; height:23px; border:1px solid #DFDFDF; padding-left:5px;" type="text" value="<?=$found_del['admin_meta_fb_id']?>"  /></span></td>
    </tr>
    <tr>
     <td class='tdLabel' style="font-size:12px; padding-top:10px;"><strong>3.</strong> <span style="margin-left:10px; font-weight:bold; color:#176C8C">Alexa Verify Id</span> </td>
      <td class='tdLabel' style=" padding-top:15px;"><input name="admin_is_meta_alexa_id" type="checkbox" value="Yes"  <?php if($found_del['admin_is_meta_alexa_id']=='Yes') {?> checked="checked" <?php }?>  /></td>
    </tr>
    <tr>
      <td class='tdLabel' colspan="2" style="font-size:12px; padding-top:10px;"><span style="margin-left:35px; font-size:11px; font-weight:bold;">Enter Id</span> <span style="margin-left:10px;">
    <input name="admin_meta_alexa_id" style="width:320px; height:23px; border:1px solid #DFDFDF; padding-left:5px;" type="text" value="<?=$found_del['admin_meta_alexa_id']?>"  />
        </span> </td>
    </tr>
    <tr>
      <td class='tdLabel' style="font-size:12px; padding-top:10px;"><strong>4.</strong> <span style="margin-left:10px; font-weight:bold; color:#176C8C">MS Validate</span> </td>
      <td class='tdLabel' style=" padding-top:10px;"><input name="admin_is_meta_msvalidate_id" type="checkbox" value="Yes"  <?php if($found_del['admin_is_meta_msvalidate_id']=='Yes') {?> checked="checked" <?php }?>  /></td>
    </tr>
    <tr>
      <td class='tdLabel' colspan="2" style="font-size:12px;"><span style="margin-left:35px; font-size:11px; font-weight:bold;">Enter Id</span> <span style="margin-left:10px;">
        <input name="admin_meta_msvalidate_id" style="width:320px; height:23px; border:1px solid #DFDFDF; padding-left:5px;" type="text" value="<?=$found_del['admin_meta_msvalidate_id']?>"  />
        </span> </td>
    </tr>
    <tr>
      <td class='tdLabel' colspan="2" style="font-size:12px; padding-top:10px;"><strong>5.</strong> <span style="margin-left:10px; font-weight:bold; color:#176C8C">Site Verification Code</span> </td>
    </tr>
    <tr>
      <td class='tdLabel' colspan="2" style="font-size:12px;"><span style="margin-left:20px; font-size:11px; font-weight:bold;">Enter Code</span> <span style="margin-left:10px;">
        <input name="admin_site_verification_code" style="width:320px; height:23px; border:1px solid #DFDFDF; padding-left:5px;" type="text" value="<?=$found_del['admin_site_verification_code']?>" /></span><br />
<span style="font-size:9px; color:#FF0000; font-weight:bold; margin-left:97px;">( e.g. MIi7IWVh6w09Va41EiiYgMHxbPaG-1lOiyj8rc8t-2g )</span></td>
    </tr>
    <tr>
      <td class='tdLabel' colspan="2" style="font-size:12px; padding-top:10px;"><strong>6.</strong> <span style="margin-left:10px; font-weight:bold; color:#176C8C">Google Analytic Code</span> </td>
    </tr>
    <tr>
      <td class='tdLabel' colspan="2" style="font-size:11px; vertical-align:top;font-weight:bold;"><span style="margin-left:15px; vertical-align:top;">Enter Value</span> <span style="margin-left:10px;">
<textarea name="admin_google_analytic_code" style="width:322px; border:1px solid #DFDFDF; padding-left:5px;" rows="8"><?=$found_del['admin_google_analytic_code']?></textarea>
        </span> </td>
    </tr>
    
    <tr>
      <td class='tdLabel' style="font-size:12px; padding-top:10px;"><strong>7.</strong> <span style="margin-left:10px; font-weight:bold; color:#176C8C">Upload Sitemap XML</span> </td>
      <td class='tdLabel' style=" padding-top:10px;"></td>
    </tr>
    <tr>
      <td class='tdLabel' colspan="2" style="font-size:12px; padding-top:10px;"><span style="margin-left:35px; font-size:11px; font-weight:bold;">
    <input type="file" name="site_map_xml" id="site_map_xml"></span></td>
    </tr>
    <tr>
     <td class='tdLabel' style="font-size:12px; padding-top:10px;"><strong>8.</strong> <span style="margin-left:10px; font-weight:bold; color:#176C8C">Upload Robots.txt</span> </td>
      <td class='tdLabel' style=" padding-top:15px;"></td>
    </tr>
    <tr>
      <td class='tdLabel' colspan="2" style="font-size:12px; padding-top:10px;"><span style="margin-left:35px; font-size:11px; font-weight:bold;">
    <input type="file" name="robots_txt" id="robots_txt"> </span></td>
    </tr>
    
      <tr>
     <td class='tdLabel' style="font-size:12px; padding-top:10px;"><strong>9.</strong> <span style="margin-left:10px; font-weight:bold; color:#176C8C">Upload Favicon</span> </td>
      <td class='tdLabel' style=" padding-top:15px;"></td>
    </tr>
    <tr>
      <td class='tdLabel' colspan="2" style="font-size:12px; padding-top:10px;"><span style="margin-left:35px; font-size:11px; font-weight:bold;">
    <input type="file" name="favicon" id="favicon"> </span></td>
    </tr>
    <tr>
      <td align="center" colspan="4"><input type="submit" name="FeatureSubmit" class="button" style="font-size:14px; font-weight:bold; height:29px; background-color:#7F7F7F; border-radius:4px; cursor:pointer; width:100px; margin-bottom:20px;" ></td>
    </tr>
  </table>
</form>
<form name="form1" method="post" enctype="multipart/form-data">
  <table  border="0" width="48%"align="left" cellpadding="2" cellspacing="3" class="tableSearch" style="margin-left:20px; border:2px outset #fff; padding-bottom:133px; margin-top:15px;">
    <tr><td colspan='4' bgcolor="#004080" class='tdLabel' style="padding:10px;"><b style="color:#FFFFFF; font-size:14px;">Manage Follow Us Links</b></td></tr>
    <tr>
      <td class="tdLabel" style="padding:5px; padding-top:25px;"><b>Facebook</b>&nbsp;:</td>
      <td style="padding:5px; padding-top:25px;"><input type="text" name="admin_facebook_link" class="textfield" style="width:363px; height:28px; padding-left:4px; border:1px solid #CCCCCC; color:#5D5D5D" value="<?=$found_del['admin_facebook_link']?>">&nbsp;<img src="images/fac.gif" width="24" height="24" style="vertical-align:middle;"> </td>
    </tr>
    <tr>
      <td class="tdLabel" style="padding:5px;"><b>Twitter</b>&nbsp;:</td>
      <td style="padding:5px;"><input type="text" name="admin_twitter_link" class="textfield" style="width:363px; height:28px; padding-left:4px; border:1px solid #CCCCCC; color:#5D5D5D"  value="<?=$found_del['admin_twitter_link']?>">&nbsp;<img src="images/twi.gif" width="24" height="24" style="vertical-align:middle;"> </td>
    </tr>
  <!--  <tr>
      <td class="tdLabel" style="padding:5px;"><span style="font-weight: bold">Google Plus</span>&nbsp;:</td>
      <td style="padding:5px;"><input type="text" name="admin_gplus_link" class="textfield" style="width:363px; height:28px; padding-left:4px; border:1px solid #CCCCCC; color:#5D5D5D" value="<?=$found_del['admin_gplus_link']?>">&nbsp;<img src="images/g+.gif" width="24" height="24" style="vertical-align:middle;"></td>
    </tr>-->
    <tr>
      <td class="tdLabel" style="padding:5px;"><span style="font-weight: bold">Linkedin</span>&nbsp;:</td>
      <td style="padding:5px;"><input type="text" name="admin_linkedin_link" class="textfield" style="width:363px; height:28px; padding-left:4px; border:1px solid #CCCCCC; color:#5D5D5D" value="<?=$found_del['admin_linkedin_link']?>">&nbsp;<img src="images/in.gif" width="24" height="24" style="vertical-align:middle;"> </td>
    </tr>
    
      <tr>
      <td class="tdLabel" style="padding:5px;"><span style="font-weight: bold">Instagram</span>&nbsp;:</td>
      <td style="padding:5px;"><input type="text" name="admin_instagram_link" class="textfield" style="width:363px; height:28px; padding-left:4px; border:1px solid #CCCCCC; color:#5D5D5D" value="<?=$found_del['admin_instagram_link']?>">&nbsp;<img src="images/instagram.png" width="24" height="24" style="vertical-align:middle;"> </td>
    </tr>
  <tr>
      <td class="tdLabel" style="padding:5px;"><span style="font-weight: bold">Pinterest</span>&nbsp;:</td>
      <td style="padding:5px;"><input type="text" name="admin_pinterest_link" class="textfield" style="width:363px; height:28px; padding-left:4px; border:1px solid #CCCCCC; color:#5D5D5D" value="<?=$found_del['admin_pinterest_link']?>">&nbsp;<img src="images/pinterest.png" width="24" height="24" style="vertical-align:middle;"> </td>
    </tr>

<tr>
      <td class="tdLabel" style="padding:5px;"><span style="font-weight: bold">You Tube</span>&nbsp;:</td>
      <td style="padding:5px;"><input type="text" name="admin_youtube_link" class="textfield" style="width:363px; height:28px; padding-left:4px; border:1px solid #CCCCCC; color:#5D5D5D" value="<?=$found_del['admin_youtube_link']?>">&nbsp;<img src="images/youtube.gif" width="28" height="28" style="vertical-align:middle;"> </td>
    </tr>    
    
    
    <tr>
      <td class='tdLabel' colspan="2" style="font-size:12px; padding-top:10px;"><span style="margin-left:10px; font-weight:bold; color:#176C8C">Live Chat Link</span> </td>
    </tr>
    <tr>
      <td class='tdLabel' colspan="2" style="font-size:11px; vertical-align:top;font-weight:bold;">
          <span style="margin-left:15px; vertical-align:top;">Enter Link</span> <span style="margin-left:10px;">
              <input type="text" name="admin_live_chat_code" class="textfield" style="width:363px; height:28px; padding-left:4px; border:1px solid #CCCCCC; color:#5D5D5D" value="<?=$found_del['admin_live_chat_code']?>">
<!--<textarea name="admin_live_chat_code" style="width:322px; border:1px solid #DFDFDF; padding-left:5px;" rows="8"><?=$found_del['admin_live_chat_code']?></textarea>-->
        </span> </td>
    </tr>
    
    
    <tr>
      <td class="label">&nbsp;</td>
      <td align="center"><p style="margin-top:5px;"></p>
        <input type="submit" class="button" style="font-size:14px; font-weight:bold; height:31px; background-color:#7F7F7F; border-radius:4px; cursor:pointer; width:105px;" value="Submit" name="FollowUsUpdate" />
      </td>
    </tr>
	<tr><td class="label">&nbsp;</td><td align="center"><p style="margin-top:150px;"></p></td></tr>
  </table>
</form>
<?php include ('bottom.inc.php'); ?>admin/add_edit_rooms.php0000644000352000025440000002303614373666472016026 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
ob_start();
$room_id=$_REQUEST['room_id'];
if(is_post_back()) {
if(!empty($room_id)){
$category_url=ami_crete_url($room_name);	
	////////////****************** IMAGE RESIZING START HERE *****************************//
//********** Code Created By Amitabh Kumar Sinha : Web Developer : Webkey Network Pvt. Ltd. *****************//
//**********  DATE : 31:07:2014 *****************//
//------------FUNCTION TO GET IMAGE EXTENSION START---------------//
 function getExtension($str) {
         $i = strrpos($str,".");
         if (!$i) { return ""; }
         $l = strlen($str) - $i;
         $ext = substr($str,$i+1,$l);
         return $ext;
 }
 //------------FUNCTION TO GET IMAGE EXTENSION END---------------//
 if($_SERVER["REQUEST_METHOD"] == "POST")
 {
 	$image =$_FILES["file"]["name"];
	$uploadedfile = $_FILES['file']['tmp_name']; 
 	if ($image) { 	
	    $DelImage=db_scalar("select room_image_name from tbl_room where 1 and room_id = '$room_id'");
	    @unlink("../room_images/$DelImage");
 		$filename = stripslashes($_FILES['file']['name']); 	
  		$extension = getExtension($filename);
 		$extension = strtolower($extension);		
		$imgNAME = $category_url.".".$extension;

move_uploaded_file($_FILES['file']['tmp_name'],"../room_images/$imgNAME");
}else{
$imgNAME=db_scalar("select room_image_name from tbl_room where 1 and room_id = '$room_id'");
}
}

////////////****************** IMAGE RESIZING END HERE *****************************//
	
	
$editsql="update tbl_room set 
			room_name='$room_name',
			room_url='$category_url',
			room_image_name='$imgNAME',
			room_guest='$room_guest',
			room_sq_ft='$room_sq_ft',
			room_status='$room_status',
			room_description='$room_description',
			room_add_date=now()
			where room_id='$_REQUEST[room_id]'";
			db_query($editsql);
			set_session_msg("Room Updated Successfully !");
			header("location:manage_rooms.php");	
			exit;		
}else{
$category_url=ami_crete_url($room_name);
	////////////****************** IMAGE RESIZING START HERE *****************************//
//********** Code Created By Amitabh Kumar Sinha : Web Developer : Webkey Network Pvt. Ltd. *****************//
//**********  DATE : 31:07:2014 *****************//
//------------FUNCTION TO GET IMAGE EXTENSION START---------------//
 function getExtension($str) {
         $i = strrpos($str,".");
         if (!$i) { return ""; }
         $l = strlen($str) - $i;
         $ext = substr($str,$i+1,$l);
         return $ext;
 }
 //------------FUNCTION TO GET IMAGE EXTENSION END---------------//
 if($_SERVER["REQUEST_METHOD"] == "POST")
 {
 	$image =$_FILES["file"]["name"];
	$uploadedfile = $_FILES['file']['tmp_name']; 
 	if ($image) { 	
	    $DelImage=db_scalar("select room_image_name from tbl_room where 1 and room_id = '$room_id'");
	    @unlink("../room_images/$DelImage");
 		$filename = stripslashes($_FILES['file']['name']); 	
  		$extension = getExtension($filename);
 		$extension = strtolower($extension);		
		$imgNAME = $category_url.".".$extension;

move_uploaded_file($_FILES['file']['tmp_name'],"../room_images/$imgNAME");
}
}

////////////****************** IMAGE RESIZING END HERE *****************************//
$testsql="insert into tbl_room set 
			room_name='$room_name',
			room_url='$category_url',
			room_image_name='$imgNAME',
			room_guest='$room_guest',
			room_sq_ft='$room_sq_ft',
			room_status='$room_status',
			room_description='$room_description',
			room_add_date=now()";
			db_query($testsql);
			set_session_msg("Room Added Successfully !");
			header("location:manage_rooms.php");	
			exit;		
    }
}
if($room_id!='') {
	$result = db_query("select * from tbl_room where room_id = '$room_id'");
	if ($line_raw = mysqli_fetch_array($result)) {
	 @extract($line_raw);
	}
}
?>
<script src="ckeditor/ckeditor.js"></script>
<style>
p.fck {
    width: 90%;
	float:left;
    margin: 0 auto;
 }
</style>
<link href="styles.css" rel="stylesheet" type="text/css">
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead">Add/Edit Room</div></td>
              </tr>
            </table>
            <div align="right"><a href="manage_rooms.php" style="font-size:12px; font-weight:bold; margin-right:15px;">Back to Room List</a>&nbsp;</div>
            <form name="form1" method="post" enctype="multipart/form-data">
              <table width="95%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm">
                <tr>
                  <td width="20%" class="tdLabel">&nbsp;</td>
                  <td width="80%" class="tdData" style="padding-left:7px;"><strong><font color="red">
                    <?=display_sess_msg();?>
                    </font></strong></td>
                </tr>
                <tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Room Name:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><input name="room_name" style="width:350px; height:28px;" type="text" id="room_name"  value="<?=$room_name?>" class="textfield"  ></td>
                </tr>  
                <tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Guest:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><input name="room_guest" style="width:350px; height:28px;" type="text" id="room_guest"  value="<?=$room_guest?>" class="textfield"  ></td>
                </tr> 
                <tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Sq. Ft.:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><input name="room_sq_ft" style="width:350px; height:28px;" type="text" id="room_sq_ft"  value="<?=$room_sq_ft?>" class="textfield"  ></td>
                </tr> 

                
                 <?php if($room_image_name){ ?>
                <tr>
                  <td width="177" class="tdLabel" style="font-size:12px; padding:5px;">Current Image  :</td>
                  <td width="721" class="tdData" style="font-size:12px; padding:5px;"><img src="../room_images/<?=$room_image_name?>" height="70" width="70"  border="0"> </td>
                </tr>
                <? } ?>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:5px;">Image :</td>
                  <td class="tdData" style="font-size:12px; padding:5px;"><input type="file" name="file" id="file"></td>
                </tr>                             
                <?php /*?><tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Mobile No.:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><input name="test_phone" style="width:350px; height:28px;" type="text" id="test_phone"  value="<?=$test_phone?>" class="textfield"  ></td>
                </tr>
				
				<tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Country:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><input name="test_country" style="width:350px; height:28px;" type="text" id="test_country"  value="<?=$test_country?>" class="textfield"  ></td>
                </tr>
                
				<tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Title:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><input name="test_title" style="width:350px; height:28px;" type="text" id="test_title"  value="<?=$test_title?>" class="textfield"  ></td>
                </tr><?php */?>				
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Description:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><p class="fck">
                      <textarea cols="80" id="editor1" name="room_description" rows="10"><?=$room_description?>
</textarea>
                      <script>

			// Replace the <textarea id="editor"> with an CKEditor
			// instance, using default configurations.
			CKEDITOR.replace( 'editor1', {
				uiColor: '#ACACAC',
				toolbar: [
					[ 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],
					[ 'FontSize', 'TextColor', 'BGColor' ]
				]
			});

		</script>
                    </p></td>
                </tr>
                
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Status:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><select name="room_status" style="width:200px; height:26px;">
                      <option value="Active" <?php if($room_status=='Active'){ ?> selected="selected" <? } ?>>Active</option>
                      <option value="Inactive" <?php if($room_status=='Inactive'){ ?> selected="selected" <? } ?>>Inactive</option>
                    </select></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">&nbsp;</td>
                  <td class="tdData" style="font-size:12px; padding:7px;">
                    <input type="image" name="imageField" src="images/buttons/submit.gif" style="width:100px; margin-bottom:25px;" /></td>
                </tr>
              </table>
            </form>
            <?php include("bottom.inc.php");?>admin/manage_gallery.php0000644000352000025440000000737114373672137016020 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
$gallery_id=$_REQUEST['gallery_id'];
$DelImageId=$_REQUEST['DelID'];
 if(!empty($DelImageId)){ 
   $imageToDel=db_scalar("select gallery_image_name from tbl_gallery where 1 and gallery_id='$DelImageId'"); 
   @unlink('../gallery_images/'.$imageToDel);
   $sqldel="delete from tbl_gallery where 1 and gallery_id='$DelImageId'";
   db_query($sqldel);
   set_session_msg("Header flash Updated Successfully !");
   header("Location: manage_gallery.php");
   exit;
 }

if(is_post_back()) {
if (isset($_POST['submit'])) {
    for ($i = 0; $i < count($_FILES['file']['name']); $i++) {
	     $imgName=$_FILES['file']['name'][$i];
		 $gTitle=$_POST['title'][$i];
         if (move_uploaded_file($_FILES['file']['tmp_name'][$i],"../gallery_images/$imgName")) {
			
			    $sql = "insert into tbl_gallery set 
		                   gallery_status='Active',
						   gallery_image_name='$imgName',
						   gallery_image_title='$gTitle',	
						   gallery_add_date=now()";
						   db_query($sql);				
            } 
			       
        }
		set_session_msg("Image uploaded successfully !");
		header("Location: manage_gallery.php");
		exit;
    }
 }
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<link href="imgstyle.css" rel="stylesheet" type="text/css">
<script src="jquery.min.js"></script>
<script src="scriptami.js"></script>
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead"> Add/Edit Gallery Image</div></td>
              </tr>
            </table>
            <div><strong class="msg" style="margin-left:500px; margin-bottom:5px;">
              <?=display_sess_msg()?>
              </strong></div>
			  <div style="width:100%;">
			<?php			
			  $sql_fetch = db_query("select * from tbl_gallery where 1");
			  $cntDATA=mysqli_num_rows($sql_fetch);
			   if($cntDATA > 0){	
			    while($DATA = mysqli_fetch_array($sql_fetch)) {
		        @extract($DATA); 
             ?>
			 <div style="width:120px; height:170px; margin-top:10px;border:1px outset #fff; float:left; margin-left:8px;">
             <p align="center"><img src="../gallery_images/<?=$DATA['gallery_image_name']?>" width="90" height="90" /><br>
                <span style="font-weight:bold;"><?=$DATA['gallery_image_title']?></span></p>
				<p align="center"><a href="manage_gallery.php?DelID=<?=$DATA['gallery_id']?>"><img src="images/no.gif"></a></p>
          </div>
		  
			 <? }} ?>
			 <div class="cb"></div>
			 </div>
			  
			
            <table width="55%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm" style="border:1px outset #fff; margin-top:5px; margin-bottom:10px;">
              <tr>
                <td class="tdLabel" style="padding:8px;"><div id="maindiv">
                    <div id="formdiv">
                      <form enctype="multipart/form-data" action="" method="post">
                        <div id="filediv">
                          <input name="file[]" type="file" id="file" multiple /><span style="font-size:11px; color:#E60000; font-weight:bold; margin-left:5px;"><b style="color:#000000;">Image Size ></b> width :  200px, height : 200px</span>
                        </div>
                        <br/>
                        <input type="button" id="add_more" class="upload" value="Add More Files"/>
                        <input type="submit" value="Upload File" name="submit" id="upload" class="upload"/>
                      </form>
                      <br/>
                    </div>
                  </div></td>
              </tr>
            </table>
            <?php include("bottom.inc.php");?>
admin/contactus_map.php0000644000352000025440000000543214373670407015703 0ustar  thediannthediann<?php 
ob_start();
require_once("../includes/dbsmain.inc.php"); 
if(isset($_POST['MapSubmit'])){
@extract($_POST);
if($admin_contactus_map!='Yes'){
    $admin_contactus_map_link='';
  }
  $sql="update tbl_admin set 
			admin_contactus_map='$admin_contactus_map',
			admin_contactus_map_link='$admin_contactus_map_link'
			where admin_user_type='Admin'";
            db_query($sql);
    $arr_error_msgs[] = "Record Updated Successfully !";
}  
$found_del=mysqli_fetch_array(db_query("select admin_contactus_map,admin_contactus_map_link from tbl_admin where admin_user_type='Admin'"));
?>
<?php include ('top.inc.php'); ?>
            <link href="styles.css" rel="stylesheet" type="text/css">
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead" ><div id="txtPageHead">Manage Contact Us Map </div></td>
              </tr>
            </table>
            <div align="center"><b>
              <?php include('error_msgs.inc.php');?>
              </b></div>
            <form name="form1" method="post" enctype="multipart/form-data">
              <table  border="0" width="80%"align="center" cellpadding="0" cellspacing="0" class="tableSearch" style=" border:2px outset #fff; margin-bottom:20px; margin-top:15px;">
                <tr>
                  <td class='tdLabel' width="15%" style="font-size:12px; padding-top:25px; color:#003871" align="right"><strong>Contact Us Map : </strong> </td>
                  <td class='tdLabel' style="padding-top:25px;" align="left"><span>
                    <input name="admin_contactus_map" type="checkbox" value="Yes" <?php if($found_del['admin_contactus_map']=='Yes') {?> checked="checked" <?php }?> />
                    </span></td>
                </tr>
                <tr>
                  <td class='tdLabel' style="font-size:12px; padding-top:15px; color:#003871" align="right"><strong>Map Link : </strong> </td>
                  <td class='tdLabel' style="padding-top:15px;" align="left"><span>
                    <textarea name="admin_contactus_map_link" rows="11" cols="142"><?=$found_del['admin_contactus_map_link']?></textarea>
                    </span></td>
                </tr>
                <tr>
                  <td class='tdLabel'>&nbsp;</td>
                  <td class='tdLabel'>&nbsp;</td>
                </tr>
                
                <tr>
                  <td align="left" colspan="2"><input type="submit" name="MapSubmit" class="button" style="font-size:14px; font-weight:bold; height:29px; background-color:#7F7F7F; border-radius:4px; cursor:pointer; width:100px; margin-bottom:20px; margin-left:140px;" ></td>
                </tr>
              </table>
            </form>
            <?php include ('bottom.inc.php'); ?>
admin/static_page_f.php0000644000352000025440000003346414373673401015636 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
$site_pages_id = $_REQUEST['site_pages_id'];
if(is_post_back()) {
 if($site_pages_name=='Home'){
  $pg_url='index';
 }else{
$pg_url=ami_crete_url($site_pages_name);
}
$ordBY=db_scalar("select MAX(site_pages_order_by) from tbl_site_pages where 1");
$ordBY=$ordBY+1;
	if($site_pages_id!='') {
		////////////****************** IMAGE RESIZING START HERE *****************************//
//********** Code Created By Amitabh Kumar Sinha : Web Developer : Webkey Network Pvt. Ltd. *****************//
//**********  DATE : 31:07:2014 *****************//
//------------FUNCTION TO GET IMAGE EXTENSION START---------------//
 function getExtension($str) {
         $i = strrpos($str,".");
         if (!$i) { return ""; }
         $l = strlen($str) - $i;
         $ext = substr($str,$i+1,$l);
         return $ext;
 }
 //------------FUNCTION TO GET IMAGE EXTENSION END---------------//
 	$image =$_FILES["file"]["name"];
	$uploadedfile = $_FILES['file']['tmp_name']; 
 	if ($image) { 	
	    $DelImage=db_scalar("select site_pages_image_name from tbl_site_pages where 1 and site_pages_id = '$site_pages_id'");
	    @unlink("../static_files/$DelImage");
 		$filename = stripslashes($_FILES['file']['name']); 	
  		$extension = getExtension($filename);
 		$extension = strtolower($extension);		
		$imgNAME = $pg_url.".".$extension;

move_uploaded_file($_FILES['file']['tmp_name'],"../static_files/$imgNAME");
}else{
$imgNAME=db_scalar("select site_pages_image_name from tbl_site_pages where 1 and site_pages_id = '$site_pages_id'");
}

////////////****************** IMAGE RESIZING END HERE *****************************//
		$sqlupdate = "update tbl_site_pages set 
		                 site_pages_name='$site_pages_name', 
						 site_pages_url='$pg_url',
						 site_pages_image_name='$imgNAME',
						 site_pages_link='$site_pages_link',
						 site_pages_meta_title = '$site_pages_meta_title',
						 site_pages_meta_description='$site_pages_meta_description',
						 site_pages_meta_keyword='$site_pages_meta_keyword',
						 site_pages_description='$site_pages_description',
						 site_pages_show_in_header='$site_pages_show_in_header',
						 site_pages_show_in_footer='$site_pages_show_in_footer',
						 site_pages_status='$site_pages_status'  
						 where site_pages_id = '$site_pages_id' ";
		                 db_query($sqlupdate);
						 set_session_msg("Page Updated Successfully !");
	  }else{
		  //*************** INSERT NEW CATEGORY START ************************//
////////////****************** IMAGE RESIZING START HERE *****************************//
//********** Code Created By Amitabh Kumar Sinha : Web Developer : Webkey Network Pvt. Ltd. *****************//
//**********  DATE : 31:07:2014 *****************//
//------------FUNCTION TO GET IMAGE EXTENSION START---------------//
 function getExtension($str) {
         $i = strrpos($str,".");
         if (!$i) { return ""; }
         $l = strlen($str) - $i;
         $ext = substr($str,$i+1,$l);
         return $ext;
 }
 //------------FUNCTION TO GET IMAGE EXTENSION END---------------//
 	$image =$_FILES["file"]["name"];
	$uploadedfile = $_FILES['file']['tmp_name']; 
 	if ($image) { 	
 		$filename = stripslashes($_FILES['file']['name']); 	
  		$extension = getExtension($filename);
 		$extension = strtolower($extension);
		$imgNAME = $pg_url.".".$extension;		


move_uploaded_file($_FILES['file']['tmp_name'],"../static_files/$imgNAME");
}

////////////****************** IMAGE RESIZING END HERE *****************************//
	  $dupliDataCount=db_scalar("select count(*) from tbl_site_pages where 1 and site_pages_name='$site_pages_name'");
 if($dupliDataCount =='0'){
		 $sqlinsert = "insert into tbl_site_pages set 
		                  site_pages_name='$site_pages_name',
						  site_pages_image_name='$imgNAME',
						  site_pages_url='$pg_url',
						  site_pages_link='$site_pages_link',
						  site_pages_meta_title = '$site_pages_meta_title',
						  site_pages_meta_description='$site_pages_meta_description',
						  site_pages_meta_keyword='$site_pages_meta_keyword',
						  site_pages_description='$site_pages_description',
						  site_pages_show_in_header='$site_pages_show_in_header',
						  site_pages_show_in_footer='$site_pages_show_in_footer',
						  site_pages_order_by='$ordBY',
						  site_pages_status='$site_pages_status' ";
		                  db_query($sqlinsert);
						  set_session_msg("Page Added Successfully !");
		            }else{	 
	                      set_session_msg("Sorry! page name is already exist !");	
	}
  }
	header("Location: static_page_list.php");
	exit;
	
}
if($site_pages_id!=''){
	$result = db_query("select * from tbl_site_pages where site_pages_id = '$site_pages_id'");
	if ($line_raw = mysqli_fetch_array($result)) {
		$line = ms_form_value($line_raw);
		@extract($line);
	}
}
?>
<script type="text/javascript">
function formValidation(){
if(document.getElementById('site_pages_link').value==0){
	alert("Select page link !");
	document.getElementById('site_pages_link').focus();
	return false;
 }

}
</script>
<link href="styles.css" rel="stylesheet" type="text/css">
<script src="ckeditor/ckeditor.js"></script>
<style>
p.fck {
    width: 90%;
	float:left;
    margin: 0 auto;
 }
</style>
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead">Add/Edit Static Page Content</div></td>
              </tr>
            </table>
            <div align="right"><a href="static_page_list.php" style="font-size:12px; font-weight:bold; margin-right:15px;">Back to Static Pages List</a>&nbsp;</div>
            <form name="form1" method="post" onsubmit="return formValidation()" enctype="multipart/form-data">
              <table width="95%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm">
			  <tr>
                  <td width="20%" class="tdLabel">&nbsp;</td>
                  <td width="80%" class="tdData" style="padding-left:7px;"><strong><font color="red"><?=display_sess_msg();?></font></strong></td>
                </tr>
                <tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Page Name:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><input name="site_pages_name" style="width:350px; height:28px;" type="text" id="site_pages_name"  value="<?=$site_pages_name?>" class="textfield"  ></td>
                </tr>
				<tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Page Link:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;">
				  <select name="site_pages_link" id="site_pages_link" style="width:350px; height:28px;">
				  <option value="">Select Page Link</option>
				  <option value="index" <?php if($site_pages_link=='index'){ ?> selected="selected" <? } ?>>index.php</option>
				  <option value="about-us" <?php if($site_pages_link=='about-us'){ ?> selected="selected" <? } ?>>about-us.php</option>
				  <option value="contact-us" <?php if($site_pages_link=='contact-us'){ ?> selected="selected" <? } ?>>contact-us.php</option>
				  <option value="enquiry" <?php if($site_pages_link=='enquiry'){ ?> selected="selected" <? } ?>>enquiry.php</option>
				  <option value="products" <?php if($site_pages_link=='products'){ ?> selected="selected" <? } ?>>products.php</option>
                  
                    <option value="services" <?php if($site_pages_link=='services'){ ?> selected="selected" <? } ?>>services.php</option>
				  <option value="gallery" <?php if($site_pages_link=='gallery'){ ?> selected="selected" <? } ?>>gallery.php</option>
				  <option value="current-jobs" <?php if($site_pages_link=='current-jobs'){ ?> selected="selected" <? } ?>>current-jobs.php</option>
				  <option value="testimonial" <?php if($site_pages_link=='testimonial'){ ?> selected="selected" <? } ?>>testimonial.php</option>
				  <option value="press-release" <?php if($site_pages_link=='press-release'){ ?> selected="selected" <? } ?>>press-release.php</option>
				  <option value="site-map" <?php if($site_pages_link=='site-map'){ ?> selected="selected" <? } ?>>site-map.php</option>
				  <option value="video" <?php if($site_pages_link=='video'){ ?> selected="selected" <? } ?>>video.php</option>
				  <option value="certificates" <?php if($site_pages_link=='certificates'){ ?> selected="selected" <? } ?>>certificates.php</option>
				  <option value="client-logos" <?php if($site_pages_link=='client-logos'){ ?> selected="selected" <? } ?>>client-logos.php</option>
				  <option value="quality-assurance" <?php if($site_pages_link=='quality-assurance'){ ?> selected="selected" <? } ?>>quality-assurance.php</option>
				  <option value="download-catalog" <?php if($site_pages_link=='download-catalog'){ ?> selected="selected" <? } ?>>download-catalog.php</option>
				  <option value="menu" <?php if($site_pages_link=='menu'){ ?> selected="selected" <? } ?>>menu.php</option>
				  
				  </select>
				  </td>
                </tr>
				
                <?php if($_REQUEST['site_pages_id']=='2'){ ?>
                <?php if($site_pages_image_name){ ?>
                <tr>
                  <td width="177" class="tdLabel" style="font-size:12px; padding:5px;">Current Image  :</td>
                  <td width="721" class="tdData" style="font-size:12px; padding:5px;"><img src="../static_files/<?=$site_pages_image_name?>" height="70" width="70"  border="0"> </td>
                </tr>
                <? } ?>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:5px;">Upload Image :</td>
                  <td class="tdData" style="font-size:12px; padding:5px;"><input type="file" name="file" id="file"></td>
                </tr>
                <? } ?>
                
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Meta Title:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><input name="site_pages_meta_title" style="width:350px; height:28px;" type="text" id="site_pages_meta_title" emsg="Please Enter Meta Title"  value="<?=$site_pages_meta_title?>"  alt="blank" class="textfield" /></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Meta Keyword:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;">
				  <textarea rows="5" cols="66" name="site_pages_meta_keyword"><?=$site_pages_meta_keyword?></textarea></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Meta Description:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;">
				  <textarea rows="5" cols="66" name="site_pages_meta_description"><?=$site_pages_meta_description?></textarea></td>
                </tr>
                <tr>
                  <td width="141" class="tdLabel" style="font-size:12px; padding:7px;">Content:</td>
                  <td width="270" class="tdData" style="font-size:12px; padding:7px;">
				  <p class="fck" style="color:#ACACAC">
                      <textarea cols="80" id="editor1" name="site_pages_description" rows="10"><?=$site_pages_description?>
</textarea>
                      <script>

			// Replace the <textarea id="editor"> with an CKEditor
			// instance, using default configurations.
			CKEDITOR.replace( 'editor1', {
				uiColor: '#ACACAC',
				toolbar: [
					[ 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],
					[ 'FontSize', 'TextColor', 'BGColor' ]
				]
			});

		</script>
                    </p>
				  </td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Show In Header:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><select name="site_pages_show_in_header" style="width:200px; height:26px;">
                      <option value="Yes">Yes</option>
                      <option value="No" <?php if($site_pages_show_in_header=='No'){ ?> selected="selected" <? } ?>>No</option>
                    </select></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Show In Footer:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><select name="site_pages_show_in_footer" style="width:200px; height:26px;">
                      <option value="Yes">Yes</option>
                      <option value="No" <?php if($site_pages_show_in_footer=='No'){ ?> selected="selected" <? } ?>>No</option>
                    </select></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Status:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><select name="site_pages_status" style="width:200px; height:26px;">
                      <option value="Active">Active</option>
                      <option value="Inactive" <?php if($site_pages_status=='Inactive'){ ?> selected="selected" <? } ?>>Inactive</option>
                    </select></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">&nbsp;</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><input type="hidden" name="site_pages_id" value="<?=$site_pages_id?>" />
                    <input type="image" name="imageField" src="images/buttons/submit.gif" style="width:100px; margin-bottom:25px;" /></td>
                </tr>
              </table>
            </form>
            <? include("bottom.inc.php");?>
admin/contact_update.php0000644000352000025440000002370414373670364016044 0ustar  thediannthediann<?php 
require_once("../includes/dbsmain.inc.php"); 
if(isset($_POST['ContactUpdate'])){
    @extract($_POST);
	db_query("update tbl_admin set 
	             admin_company_name='$admin_company_name',
	             admin_name='$admin_name',
	             admin_email='$admin_email',
	             admin_alt_email='$admin_alt_email',
	             admin_mobile='$admin_mobile',
				 admin_phone='$admin_phone',
					 admin_fax='$admin_fax',
				 admin_address='$admin_address',
				 admin_city='$admin_city',
				 admin_state='$admin_state',
				 admin_country='$admin_country',
				 admin_zip_code='$admin_zip_code',
				  admin_whatsapp_number='$admin_whatsapp_number',
				 admin_call_now_number='$admin_call_now_number',
				
				 admin_website_url='$admin_website_url',
				 admin_catalog_url='$admin_catalog_url'
				 where admin_user_type='Admin'");
	             $msg="Contact details updated successfully !";
              }
 $sql="select * from tbl_admin where admin_user_type='Admin'";
 $result2=db_query($sql);
 $data_new=mysqli_fetch_array($result2);
?>
<?php include ('top.inc.php'); ?>
            <link href="styles.css" rel="stylesheet" type="text/css">
            <script type="text/javascript">
function nospaces(t){
if(t.value.match(/\s/g)){
alert('Sorry, you are not allowed to enter any spaces');
t.value=t.value.replace(/\s/g,'');
}
}
</script>
            <table width="100%" border="0" id="nab" cellpadding="0" cellspacing="0" class="tableForm">
              <tr>
                <td colspan="2" class="tdLabel" id="pageHead"><div id="txtPageHead" style="font-weight: bold">Contact Update </div></td>
              </tr>
              <?php if(!empty($msg)){ ?>
              <tr>
                <td width="13%" class="tdLabel">&nbsp;</td>
                <td width="87%" align="left" id="tab"><font color="#2F5E00" style="margin-left:205px; font-weight:bold;" size="2"> <?php echo $msg;?> </font> </td>
              </tr>
              <? } ?>
              <tr>
                <td colspan="2" align="center" id="tab"><form name="form1" method="post" enctype="multipart/form-data">
                    <table width="78%" border="0" cellpadding="0" cellspacing="0" class="tableForm" style="margin-left:80px;border:1px outset #fff; padding:15px;" >
                      <tr>
                        <td class="tdLabel" width="10%" style="padding:5px;"><span style="font-weight: bold">Company&nbsp;Name</span>&nbsp;:</td>
                        <td width="22%" style="padding:5px;"><input type="text" name="admin_company_name" class="textfield" style="width:263px; height:28px; padding-left:4px; border:1px solid #CCCCCC; color:#5D5D5D" value="<?=$data_new['admin_company_name']?>">
                        </td>
                        <td class="tdLabel" width="11%" style="padding:5px;"><span style="font-weight: bold">Contact&nbsp;Name</span>&nbsp;:</td>
                        <td style="padding:5px;" width="37%"><input type="text" name="admin_name" class="textfield" style="width:263px; height:28px; padding-left:4px; border:1px solid #CCCCCC; color:#5D5D5D" value="<?=$data_new['admin_name']?>">
                        </td>
                      </tr>
                      <tr>
                        <td class="tdLabel" style="padding:5px;"><b>Email Id</b>&nbsp;:</td>
                        <td style="padding:5px;"><input type="text" name="admin_email" class="textfield" style="width:263px; height:28px; padding-left:4px; border:1px solid #CCCCCC; color:#5D5D5D" value="<?=$data_new['admin_email']?>">
                        </td>
                        <td class="tdLabel" style="padding:5px;"><b>Alternate Email</b>&nbsp;:</td>
                        <td style="padding:5px;"><input type="text" name="admin_alt_email" class="textfield" style="width:263px; height:28px; padding-left:4px; border:1px solid #CCCCCC; color:#5D5D5D" value="<?=$data_new['admin_alt_email']?>">
                        </td>
                      </tr>
                      <tr>
                        <td class="tdLabel" style="padding:5px;"><b>Mobile</b>&nbsp;:</td>
                        <td style="padding:5px;"><input type="text" name="admin_mobile" class="textfield" style="width:263px; height:28px; padding-left:4px; border:1px solid #CCCCCC; color:#5D5D5D" value="<?=$data_new['admin_mobile']?>">
                        </td>
                        <td class="tdLabel" style="padding:5px;"><b>Phone</b>&nbsp;:</td>
                        <td style="padding:5px;"><input type="text" name="admin_phone" class="textfield" style="width:263px; height:28px; padding-left:4px; border:1px solid #CCCCCC; color:#5D5D5D" value="<?=$data_new['admin_phone']?>">
                        </td>
                      </tr>
                      <tr>
                        <td class="tdLabel" style="padding:5px;"><b>Fax</b>&nbsp;:</td>
                        <td style="padding:5px;"><input type="text" name="admin_fax" class="textfield" style="width:263px; height:28px; padding-left:4px; border:1px solid #CCCCCC; color:#5D5D5D" value="<?=$data_new['admin_fax']?>">
                        </td>
                        <td class="tdLabel" style="padding:5px;"><b>Address</b>&nbsp;:</td>
                        <td style="padding:5px;"><input type="text" name="admin_address" class="textfield" style="width:263px; height:28px; padding-left:4px; border:1px solid #CCCCCC; color:#5D5D5D"  value="<?=$data_new['admin_address']?>">
                        </td>
                      </tr>
                      <tr>
                        <td class="tdLabel" style="padding:5px;"><b>City</b>&nbsp;:</td>
                        <td style="padding:5px;"><input type="text" name="admin_city" class="textfield" style="width:263px; height:28px; padding-left:4px; border:1px solid #CCCCCC; color:#5D5D5D" value="<?=$data_new['admin_city']?>">
                        </td>
                        <td class="tdLabel" style="padding:5px;"><span style="font-weight: bold">State</span>.&nbsp;:</td>
                        <td style="padding:5px;"><input type="text" name="admin_state" class="textfield" style="width:263px; height:28px; padding-left:4px; border:1px solid #CCCCCC; color:#5D5D5D"  value="<?=$data_new['admin_state']?>">
                        </td>
                      </tr>
                      <tr>
                        <td class="tdLabel" style="padding:5px;"><span style="font-weight: bold">Country</span>&nbsp;:</td>
                        <td style="padding:5px;"><input type="text" name="admin_country" class="textfield" style="width:263px; height:28px; padding-left:4px; border:1px solid #CCCCCC; color:#5D5D5D" value="<?=$data_new['admin_country']?>">
                        </td>
                        <td class="tdLabel" style="padding:5px;"><b>Zip Code</b>&nbsp;:</td>
                        <td style="padding:5px;"><input type="text" name="admin_zip_code" class="textfield" style="width:263px; height:28px; padding-left:4px; border:1px solid #CCCCCC; color:#5D5D5D" value="<?=$data_new['admin_zip_code']?>">
                        </td>
                      </tr>
                      <tr>
                        <td class="tdLabel" style="padding:5px;"><span style="font-weight: bold">Website URL</span>&nbsp;:</td>
                        <td style="padding:5px;"><input type="text" name="admin_website_url" class="textfield" style="width:263px; height:28px; padding-left:4px; border:1px solid #CCCCCC; color:#5D5D5D" value="<?=$data_new['admin_website_url']?>">
                          <br />
                          [ <b style="color:#EA0000; font-size:10px;">http://tradekeyindia.in/tkinewsuperadmin/Industrial</b> ] </td>
                        <td class="tdLabel" style="padding:5px;"><span style="font-weight: bold">Calalog URL</span>&nbsp;:</td>
                        <td style="padding:5px;"><input type="text" name="admin_catalog_url" class="textfield" style="width:263px; height:28px; padding-left:4px; border:1px solid #CCCCCC; color:#5D5D5D" value="<?=$data_new['admin_catalog_url']?>">
                          <br />
                          [ <b style="color:#EA0000">http://www.tradekeyindia.com/abc</b> ] </td>
                      </tr>
                      
                        <tr>
                             <?php if($data_new['admin_whatsapp_option']=="Yes")
                      {?>
                        <td class="tdLabel" style="padding:5px;"><span style="font-weight: bold">WhatsApp Number</span>&nbsp;:</td>
                        <td style="padding:5px;"><input type="text" name="admin_whatsapp_number" class="textfield" style="width:263px; height:28px; padding-left:4px; border:1px solid #CCCCCC; color:#5D5D5D" value="<?=$data_new['admin_whatsapp_number']?>">
                        </td>
                         <?}?>
                           <?php if($data_new['admin_call_now_option']=="Yes")
                      {?>
                        <td class="tdLabel" style="padding:5px;"><span style="font-weight: bold">Call Now Number</span>&nbsp;:</td>
                        <td style="padding:5px;"><input type="text" name="admin_call_now_number" class="textfield" style="width:263px; height:28px; padding-left:4px; border:1px solid #CCCCCC; color:#5D5D5D" value="<?=$data_new['admin_call_now_number']?>">
                        </td>
                        <?}?>
                      </tr>
                      
                        
                      
                    
                      
                   
                      <tr>
                        <td class="tdLabel" style="padding:5px;" colspan="4" align="left"><input type="submit" class="button" style="font-size:14px; font-weight:bold; height:31px; margin-left:360px; background-color:#7F7F7F; border-radius:4px; cursor:pointer; width:105px;" value="Submit" name="ContactUpdate" /></td>
                      </tr>
                    </table>
                  </form></td>
              </tr>
              <tr>
                <td colspan="2" class="tdLabel">&nbsp;</td>
              </tr>
            </table>
            <?php include ('bottom.inc.php'); ?>
admin/manage_jobs.php0000644000352000025440000001545414373672263015317 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");

if(is_post_back()) {
	$arr_ids = $_REQUEST['arr_ids'];
	if(is_array($arr_ids)) {
		$str_ids = implode(',', $arr_ids); 
		if(isset($_REQUEST['Delete']) || isset($_REQUEST['Delete_x']) ) {
			db_query("delete from tbl_job_opening where job_opening_id in ($str_ids)");
			set_session_msg("Job Deleted Successfully !");
		} else if(isset($_REQUEST['Activate']) || isset($_REQUEST['Activate_x']) ) {
			db_query("update tbl_job_opening set job_opening_status = 'Active' where job_opening_id in ($str_ids)");
			set_session_msg("Job Activated Successfully !");
		} else if(isset($_REQUEST['Deactivate']) || isset($_REQUEST['Deactivate_x']) ) {
			db_query("update tbl_job_opening set job_opening_status = 'Inactive' where job_opening_id in ($str_ids)");
			set_session_msg("Job Deactivated Successfully !");
		}
	}
	header("Location: ".$_SERVER['HTTP_REFERER']);
	exit;
}

$start = intval($start);
$pagesize = intval($pagesize)==0?$pagesize=DEF_PAGE_SIZE:$pagesize;

$order_by == '' ? $order_by = 'job_opening_id' : true;
$order_by2 == '' ? $order_by2 = 'desc' : true;

$sql = "select * from tbl_job_opening   where  1";
$sql = apply_filter($sql, $job_opening_title, 'like','job_opening_title');
$sql .= " order by $order_by $order_by2 ";
$sql .= " limit $start, $pagesize ";

$pager = new midas_pager_sql($sql, $pagesize, $start);
if($pager->total_records) {
	$result = db_query($sql);
}
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<script language="JavaScript" type="text/javascript" src="../includes/general.js"></script>
<? include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead">Job list </div></td>
              </tr>
            </table>
			<strong class="msg" style="margin-left:500px;"><?=display_sess_msg()?></strong>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="content"><form method="get" name="form2" id="form2" onSubmit="return confirm_submit(this)">
                    <br />
                    <table  border="0" align="center" cellpadding="2" cellspacing="0" class="tableSearch" style="width:300px; height:90px;border:2px outset #fff;">
                      <tr align="center">
                        <th colspan="2">Search</th>
                      </tr>
                      <tr>
                        <td class="tdLabel">Job title</td>
                        <td><input name="job_opening_title" type="text" value="" style="width:200px; height:24px;" /></td>
                      </tr>
                      <tr>
                        <td>&nbsp;</td>
                        <td><input name="pagesize" type="hidden" id="pagesize" value="<?=$pagesize?>" />
                          <input type="image" name="imageField" src="images/buttons/search.gif" /></td>
                      </tr>
                    </table>
                  </form>
                  <br />
                  <div align="right"><a href="job_f.php" style="font-size:12px; font-weight:bold;">Add Job</a> </div>
                  <? if($pager->total_records==0) {?>
                  <div class="msg">Sorry, no records found.</div>
                  <? } else { ?>
                  <div align="right">
                    <? $pager->show_displaying()?>
                  </div>
                  <div>Records Per Page:
                    <?=pagesize_dropdown('pagesize', $pagesize);?>
                  </div>
                  <form method="post" name="form1" id="form1" onSubmit="confirm_submit(this)">
                    <table width="100%"  border="0" cellpadding="0" cellspacing="1" class="tableList">
                      <tr>
					   <th width="60%" nowrap="nowrap" style="font-size:12px; padding:9px;">Job Title</th>
					     <th width="12%" nowrap="nowrap" style="font-size:12px; padding:9px;">Posted Date</th>
                        <th width="14%" nowrap="nowrap" style="font-size:12px; padding:9px;">Status<?=sort_arrows('job_opening_status')?></th>
                        <th width="7%">&nbsp;</th>
                        <th width="7%"><input name="check_all" type="checkbox" id="check_all" value="1" onClick="checkall(this.form)" /></th>
                      </tr>
                      <?
while ($line_raw = mysqli_fetch_array($result)) {
	$line = ms_display_value($line_raw);
	@extract($line);
	$css = ($css=='trOdd')?'trEven':'trOdd';
 
?>
                      <tr class="<?=$css?>">
                        <td align="center"><?php echo $job_opening_title;?> </td>
                       	<td align="center"><?php echo $job_opening_add_date;?> </td>
						<td align="center"><b style="font-size:12px;"><?php echo $job_opening_status;?></b> </td>
                        <td align="center"><a href="job_f.php?job_opening_id=<?=$job_opening_id?>"><img src="images/icons/edit.png" alt="Edit" width="16" height="16" border="0" /></a></td>
                        <td align="center"><input name="arr_ids[]" type="checkbox" id="arr_ids[]" value="<?=$job_opening_id?>" /></td>
                      </tr>
                      <? } ?>
                    </table>
                    <table width="100%" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td align="right" style="padding:2px">
						<input type="submit" name="Activate" value="Activate" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#1F3E00; border-radius:4px; cursor:pointer; width:100px;"/>
                          <input type="submit" name="Deactivate" value="Deactivate" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#FF6F6F; border-radius:4px; cursor:pointer; width:100px;" />
                          <input type="submit" name="Delete" value="Delete" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#CA0000; border-radius:4px; cursor:pointer; width:100px;"/>
                        </td>
                      </tr>
                    </table>
                  </form>
                  <? $pager->show_pager();?>
                  <? } ?>
                </td>
              </tr>
            </table>
            <?php include("bottom.inc.php");?>
			<script language="javascript">
function select_chk(){
			var chks = document.getElementsByName('arr_ids[]');
			var hasChecked = false;
			for (var i = 0; i < chks.length; i++){
			if (chks[i].checked){
				hasChecked = true;
				break;
				}
			}
			if (hasChecked == false){
			alert("Please Select At Least One.");
			return false;
			}
}
</script>
admin/images/0000755000352000025440000000000014373776770013605 5ustar  thediannthediannadmin/images/no_image.gif0000644000352000025440000000771711560453570016047 0ustar  thediannthediannGIF89a}}�yyy��������������ҋ�������䦦���������ɯ�������������!�XMP DataXMP<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 4.2.2-c063 53.352624, 2008/07/30-18:12:18        ">
 <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
  <rdf:Description rdf:about=""
    xmlns:xmp="http://ns.adobe.com/xap/1.0/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/"
   xmp:CreatorTool="Adobe Photoshop CS4 Windows"
   xmp:CreateDate="2010-05-12T20:28+05:30"
   xmp:ModifyDate="2010-05-12T20:28+05:30"
   xmp:MetadataDate="2010-05-12T20:28+05:30"
   dc:format="application/vnd.adobe.photoshop"
   photoshop:ColorMode="3"
   photoshop:ICCProfile="sRGB IEC61966-2.1"/>
 </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                           
<?xpacket end="w"?>�������������������������������������������������������������������������������������������������������������������������������~}|{zyxwvutsrqponmlkjihgfedcba`_^]\[ZYXWVUTSRQPONMLKJIHGFEDCBA@?>=<;:9876543210/.-,+*)('&%$#"! 

	!�,}}� $�di�h��l��#�tm�x��|�3�#B,�Ȥr�l:��h�!�Z�ج�I���x�����n���|~���x�=���r��i���a���X���P���kU��O��������������������������|��x��t����������é�Ƭ�ɯ�̲�ϵ�Ҹ�ջ�ؾ^�����������������f�s��Q���`��\��Y��%	(���E"��o���H
hp$@#�x���DlDp���H��FP!�&�ZrI�i$�2(0� ���$���
pp�E#�`&�p �(`e��V����UF-���{$-N�`��<��,[p�8�6���Y#X�t�
��ȁ���5"A$#�������=�"�ˀH4����6��L�e��^� 0�صq�P7���r��G���F�9G)!-���{j7�X+x�G8 ��D���yQ�h�P���vR��%��f��@n�L�)�d�gjD,p�O�!�N�A�]	�T�D$a[[�ۅ�e�j�l�uD�%�w�҈RfaI{�Vċ4f�;V�L�E(QF-��FJ�Z]�Y�@jHU�b��u`ڦю}䥋2�C�E�F�I�w�g�B!Z��1����@����P:���`ڎ��pz�����ސ���ؠZ��Ұ���������:����ڋ���z���������� [���0����h��@�NkPE��&�m����C�~����ʶٚ[����+n?�ֲ����+/�6R,���'���/�;admin/images/buttons/0000755000352000025440000000000014373776770015303 5ustar  thediannthediannadmin/images/buttons/delete.gif0000644000352000025440000000111211560453630017205 0ustar  thediannthediannGIF89aR�������000�����������������������������������MMMBBB������uuu������������fff��݃����̺����ć��������iii!�,R���"(�Ȥr�l:�����	X�جv��z�^
e8���4wB��|N���|������t{}����o�
�������
��������������������������������������������������Τ����،�����������������������������

H��@"L�`�#J�ȁŋ3j�h��Ŏt)�dȓSndD��˗0c����TK7I��I���g�@YJ��ѣ?!Xʴ�ӧP�J�J�*�X�j�ʵ�ׯ`Êet��ٳhӪ]˶�۷{"�@��ݻx���˷�_0��෰�È�z�p!"O"K�LI��;admin/images/buttons/submit.gif0000644000352000025440000000111111560453632017247 0ustar  thediannthediannGIF89aR�BBBMMM������uuu������fff��ݻ�������̆��iii�����������Ń������������������������������������000������!�,R��� �)�Ȥr�l:����Y�جv��z�^aX���4�@���|N���������t{}����o�"�������!������������!�!����������������!����������������!���ʥ̥������Ȍ�����ݥ�!�����������������������
H0��"<Ȱ�†#FdT��ŋ3jQ�cE�;�	r�Ɠ'uXɲ�˗,��,�Af͕!pެ��Of�*
J��Q��4(]ʴ�ӧP�J�J�ц�X�j�ʵ�ׯ`�2�@��ٳhӪ]˶��="x�K��ݻx���˷o@�K����w
` B�'�#K���A;admin/images/buttons/deactivate.gif0000644000352000025440000000113711560453630020063 0ustar  thediannthediannGIF89aR�������000����������������������������������MMMBBB���������uuu���������iii���fff��݇����������ă�����!�,R���"(�Ȥr�l:�����	X�جv��z�^NeH���4�B��|N���|������t{}����o���������������������������������������������������¡��ɠ�������������������������������������������B�ӗ�=>
*\��@�&tq�ˆ-Z�X��G���I�$��'�T�R�ɕ-c��)eɛ"�ɳgO|}?A�Z �N��Z4iS�>��)��իX�j��(�ׯ`ÊK��ٳh)X˶�۷p�ʝK�.�x���˷�߿���ÀÈ+^̸��ǐ#_��!�Ș3k޼�DyB����H"t;admin/images/buttons/Thumbs.db0000644000352000025440000004600012460016476017035 0ustar  thediannthediann��ࡱ�>��	��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������
	
������������ !"#$��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Root Entry����������d k5�+1������������k2�����3������������2�	

���� !"#$%&'()*+,-./01����3456789:;<=>?@ABCDEFGHIJKL����NOPQRSTUVWXYZ[\]^_`abcdef����hijklmnopqrst����vwxyz{|}~�_���JFIF``��C




��C		

��R"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�[��߇�5�G�x����'�u��T�5MgL���y�%��I���gp+���x�G�D�_�O���~k�c����6�[I�^P���%�i���3��?�&
��~���W����m�xw����w���zE�ͼ�X�l��a����T������&��߉�|Ԟ(ՠMO��y k)n�Kaxd��m��ve	9_�<*�?�j��<+q�/�'^��.->^_�
��6�uY�����u+k�V�A�ƕ�鉾���_��Q}��:�~�`<����&�|�I��6���Ώ�\��<|#��a�'�?��|�okw�x��w�^<�Ե��V�N�����D}����.1mt�y�]�C'�'u/�#�^�%��Ƨ�t��K	���ϩ�<�4���[$����F
n�J�+��S$L=�O��a�-��>x	5+�e��ʹK!4�FѬ�*l�Tib�`n���������u�…��į��.����P�4�T��^Ӧg�]
���y�������$��1�b���e���V~&{�x�_�oe��$6�.�mi�^#�����a�i�Z���c�`K6��@>���x�G�D�_�O��C�;�# ��V>\�]�H�E\�������_���?+�,~��|S�4jVz���iv�{*�	�8�9�
�?
+�?i�8�?�4�W-����Y�_^��ψ�5K�_��v�4�TQ�o0��aWS$��0�1F	#����7�|K�����~�(���x��>%��[�?G�<K���	�/���(��%�o����m�����/�'Ŀ�o��袀�x�����_������ļ
�@���-����?��^��O����ӣ����YI�.� ���(�
���ſ��G���h��%W2k�d���}���3���f3�EP������JFIF``��C




��C		

��R"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�[��߇�5�G�x����'�u��T�5MgL���y�%��I���gp+���x�G�D�_�O���~k�c����6�[I�^P���%�i���3��?�&
��~���W�>��F�s�x���
�o���E���[�"��*�Td�X���I�z��R�վ��j�<:�v�h�&���8u�9��(R��F�m��|����_����V�ׇ|��_Ѯ�y���X\�˵�6�
�YNH�(�_����=o�ς��m"�mB���i<�"C$��",�U'
	8�_/��e�7�-tmk�rj��O��CW�1i�6�-֛��cq�Q��!4�K��N�6f������f�>�����][��G�YZZ�q��|9��{{UB��6�\(�1�(@(�g���L<�����������?i���]�=j�k�o�_Q��
^��E����rea{0~H#	Cm��#LeW�$��=T��x�G�D�_�O��C�;�# ��V>\�]�H�E\�������_���?+�,~��|S�4jVz���iv�{*�	�8�9�
�?
+�?i�8�?�4�W-����Y�_^��ψ�5K�_��v�4�TQ�o0��aWS$��0�1F	#����7�|K�����~�(���x��>%��[�?G�<K���	�/���(��%�o����m�����/�'Ŀ�o��袀�x�����_������ļ
�@���-����?��^��O����ӣ����YI�.� ���(�
���ſ��G���h��%W2k�d���}���3���f3�EP������JFIF``��C




��C		

��R"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�[��߇�5�G�x����'�u��T�5MgL���y�%��I���gp+���x�G�D�_�O���~k�c����6�[I�^P���%�i���?��f߉�m��;@�W�ϰ�W���{�}��y�R����v�t5��<|#��a�'�?��|��[�Z��o���t}wC���_Im=ֳ�ͦm��r�G`�y-���To��^FVX�>��]7�l�׼[��P����;�Ķ�AQ<�Mj/�]od���b���x[����>��0�W����n���5�쿰x#����j:ٴ�	>�j<�����:��z���?9��O���/�ě���A���ɬ,���x�}B2����(��H#�M�.K�5�6O���H�?��
xb�����xB�=A5��Li��I4'�yw+Y;Aq-���{���������x+�	�O�7U,�|�n/��>x
�{	���P�N���Q�&Q�r�N��`O�^:����麆�?��(|S�ϯ�5���w>��(l4�c��u=�e��Z��~	��w����/�u����+⏊-<?��\�]G�`6:,��e�h�K�6���Bb�ژ��c4�O�3��?�&
��~������±�Z���GЈ�+�?f�W\�|
}��kݹ�dm6�X��,%[o*,�K뛋�_;�;��>I�	>��	/�O@��?j���)��š�5+=B�o4�=��o�I��U�埴���?��uO�+���GW���/�/g���v�֯�k;}[�*(䷘[İ���Do�F����P���x��>%��[�?E�ļ
�@���-����%�o����m���P��7�|K�����~��x�����_�����Q@�<K���	�/���?��^��O�����E��/�'Ŀ�o�����C�,�����smm���Pm{�	��ߌz���J4]?���5ϲbf�>��m����3���(��Q���JFIF``��C




��C		

��R"��4����M]5������������gB6	����u�7�������������6	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�[��߇�5�G�x����'�u��T�5MgL���y�%��I���gp+���x�G�D�_�O���~k�c����6�[I�^P���%�i���3��?�&
��~����+?����F���i�	�?�4����3�N�s��y�]G�$��=xLj5������}?T��׵�I��Ϙ[E'�u�q]}�g��LЗ�m����T�W��$���nޯc�ʰT��*B�i(�맽�=>���n�=7^�)�W�:��j_
�m�i��]���qF�ݶ�D�('{
���Εcq{{��vvѴ��O�Y�q"����$���|��VO�>�������p6��x�Ih��-�,�q�BH6�x|��+���o��ķ>6�mSU���m��O쿰]-����Y��%�C ڜ��<9�^��񳻵7�w��s�a�X^X9��w'gk{�i��j��w��v������?i����x�G�D�_�O���j:���<5�x�L�c�_��Xj��O|g���w�E��m���	��	3��$��=vQ�궭ky�~*���.��s9_K4�ko}/��M��J/k������x+�	�O�7Hg�d�
�k��Z�B#ȫ�����K���I⟕�?j���)��š�5+=B�o4�=��o�I��U�埴���?��uO�+���GW���/�/g���v�֯�k;}[�*(䷘[İ���Do�F����P���x��>%��[�?E�ļ
�@���-����%�o����m���P��7�|K�����~��x�����_�����Q@�<K���	�/���?��^��O�����E��/�'Ŀ�o�����C�,�����smm���Pm{�	��ߌz���J4]?���5ϲbf�>��m����3���(��6���JFIF``��C




��C		

��"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?���M�K�x;_��O�3]�팟��m��J��M3,O$�I,��]�Tʠ
�o@��'யu�Xxc�V6� �>�e�hZ���X�qs,���شS�7�������	-|#���F����n�{kI|@���b]69U���?ݫ>̾�v��8�-u;�k�I�f��k��h���?R���P�I<�.����99b�������JFIF``��C




��C		

��>"�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�[��߇�5�G�x����'�u��T�5MgL���y�%��I���gp+��~|�t��OS�y�-;M���n�.�K(��$R�#� 
���Ā$���s��ù��i=?��R�[��W�W��gW[8f���m�[��{�n#��x��)ZF�x�i���Փp x/����#K�S�>��M�cm%拦���U�e�V�������>��0�W����n�J�%x��II�I��oAy~���Ն��*��5՞��qm��x�)%!��n��kĞ.��o�\\^x��^���}�G�jWk�Kn5+�͝�i6lר�����|r���U��<|#��a�'�?��exk����_i?|wk
�ޞ��7l����Ki�
?,�ȹ�v�'�/
oh�
>j��=*�íw�9lnuV�S[hl�9Oui�!\˨y��8��>�߂u�j�+�ki����=r���k�d�X��Qi#����b�4q�6�73������?i����ۢ�N��>h�,�]�i��.5��?k����R�,aCa�B	�ϭ}3�	/�O_(�L5?���G䝞)���i{��j���������T��-go�Kq�E��x�u2H���T`�9���/�'Ŀ�o��袀�x�����_������ļ
�@���-����?��^��O������7�|K�����~�(���x��>%��[�?S]kq�B|=7�<"��#J��[���#	��$(�"i3���$�F3�E��*���JFIF``��C




��C		

��R"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�[��߇�5�G�x����'�u��T�5MgL���y�%��I���gp+���x�G�D�_�O���~k�c����6�[I�^P���%�i���3��?�&
��~���-�x;�m�4�
kZ½�z���-��M����s~T.��s�U�X9��K��׆x����;�"�ʼn�j�Ɵ>��>�#h7�V������jI�`��t�d��|�vt��K��4�o�o�>
�����OI?��|�sq�	����Y�\��H����������u�w�<Q��ំu�?�W�xwB�!�MՃ�}���h�#���-�Y�F�$t|6���\��}ᛏ�k�h��5O%�ު�Oy���kw�'�cy���z$���C�P�Z��?�奦��Zm��>�ޑa͙��lV@[����sƽ]A��x�G�D�_�O���N��MC�ڗ��x���-���'�����[���!Ʌ�����B~@�����|3��~�,�jy����6��h����n�y��@?�>��0�W����n����#����=�@�R>�G�W?�%�i�����������_�e�M�����k7�]����ʷ�w�$�yª�Š���C�N��:����E}����z���s�;
R�W𵝾�-ƕr[�-�XU��"7�#AQ�H��ļ
�@���-����?��^��O������7�|K�����~�(���x��>%��[�?G�<K���	�/���(��%�o����m�����/�'Ŀ�o��袀�x�����_��������DE�|K��6���~�(�����o�=wQ�%.��	U̚��13yic6���o���QE��``,�C}f��activate.gif$�����back.gif0��f��deactivate.gif(ѹZv��delete.gif4Catalog��������������8����v�������������������������a�Y�heading_icon.gif(o3��Y�search.gif(��Z�submit.gif`���j^5�{A42CD7B6-E9B9-4D02-B7A6-288B71AD28BA}��C		

��``"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz����������������������������������������������������j���JFIF``��C




��C		

��``"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?��Ϗ-�=�0�6�t�}B�ʵ�2�V��|��NL|K��p������C��@<i�+�)M��#�JFJ���$@H�zt^i�"�̳<u\]NJ�
2�RW�-��Z���k%��4���͢}:��g	�="Ln���o4��5S�{���I��4��5]����Q��+��c�Ar�� s�����'>+i��h-�Ef�l��}gʞ��*���]�'�4'����O�i���]���ߕi�����q�Ї"�_�)��ȇ�%�����H��<?�>���L��?�<?�>���L���<��R���~U������/�H\������������I��M3��������I��M3����O����O������?���$������������I��M3����Ľ'Œ������$�	VVQ�Uxd�w�m$VƇ�}�*浻XO�<u娹k�bi�eWD�'�㩮�&}��f�jTR����o���}.'N���agf�����Cc�3���_�Ck[!��;�/��֎��V�& ��m�S�א+m�=����D���v_��Y��k�X�L购Rk[�3옪ԍ5�_�6�Ѿ�/�6^ִ]>���(X�Y��z�Z�X�fN�w����'�p����|yj����֊�l����\4}�dTFΠ'�v�0*:��|o�������!ٞ˾���WӾ!xv=oJ�o��Ie�
ݥ�L�7(Ysm�RG�����~��C�������}g[��k�IsN���`�qS>�B.nQ���#U�ݵ:��o�O�����w>'���k��V��;_.4��X�
�3}�$�s\||)�V:��|C�ۏ1�`�`�&���7
�@걖���U��]˕�T���u�w�ȃ�����^:��q=�X���Z�W�9cW� ��8���Q
�*�;Ʈ�C�����+c�;W�k��o2���X�$���v[\yJ l���F�q��������}b���Xl���?���Hnj����ŚE���x�[�����ȵM�1S�a�#�:U
R�����]\��W
s��9c���㭔��qiViޤ��x�HޕH��g�2}OL��=0�`�_g�B�ٿO�\�3ұ��^+f,|K���_�J��������E��6���W$�<V��vN��'��tιP�H��t_�<�Q�a��G6��xkP�8�$��ÆVDq�PZ�pGB:�+?����$6��ְȂ'�
*+ ۅ \`��8<|��+��<ʿ��2����ȏ�R����]�ahl5��m�;]�R�B䅹;UF}­'�|Aqqk����Z�q
��o�<n�\� ����gi�5�y�y�2����Ut~Q� XJi�/��_�^ �����t�md���#�ҞGO2V����A�s���+>�F�_	���*<.2�1$����p��&�+̣̥�1�TcWE���Sz��KO���-����h�d�7lu"�]͂9�:�t�n�9�’O)o��|�D�vF	��UڸQ��08�>ee_�Ù���?�T���8kx�J����\���a���Ax�A��Un��[�v����|9��qgp�i]��i�������Ve����!7��\�_�x�v'D���h�ۏd��S��Wٗ�����J/�"���mgH�|e��Q��֬y��c��e��Jg}8ޜ?¿$Y�}��}�<��|��7ޏ2�y��g�C�ni�\x��Z6���S��od��m:y%���Rٻc	�y8����Cʏ�Q�&�g��q����=�<O�A�F[x1�G�_Y��'�.������YB�������R|����jמ����I�r/5��B[DZ)O$"��ǙV��	�	?���2�҄�KV�Yv�>fx��M)~�O��`���6=v��-M��О+��~�u���dž�u�N�L[�A�#y\(#|
��ۑ���^��㯁�j�h�'���[���wf"́�0����+ľ8~�_|_�F��?��[a����Dz�/3��1�dp2O`k�{,��_�4�̟��o�H�.����rW���0��#Ԯv1�Y܊�_�������?�n��|��k�Zx��^�,%�o�f���i]��)���8 ���-�`+a%��+ua}[�Q��߅�R�js��2��C�z��6��
�%Y%��N����n�v��i�x�K��Jd���_c&��|A���$��B��t���v樾��Fvo��'�O����j�<�������N���Κ���R��*������6�
��4�Y$���$�&��������na��ɪ	�X����:g���;I��+���)2��>\�g�\ֵ��"f:���ޣ�m�)5��*H���Ao��NA`J�F5�k�k�+�y�t8�¢��]�S�#�>����o!�����S������Jǩ��խV���:%�km9�BA���
U���xoN[�ִ������Nx��Y㈐�{`�����=�Э�G�2-;J��k+����ʮNx͹5f�W��6ז�e��� �I#�e���2I����䎹�U��\���}�9\q�����^�=�"�K�3�Wc�b=�߿��oڇ��|W▱��|V��Y���8��ϑ�g1�2l��*���6��~�/į���x��=�:կ�����Q�6���L7�)�/��j|r�<+����ˍf����zg�4�n�[� ��T�YwF�da!XB��n3��?^|B�i�o
x�Z͗�<+-֛�\�C�46x�gP�(8��Z�i�ْ��]������k�x�e�&)jm��Ā��y��^��=�柇?��φ>���"�D�F�����nE���L�҅�Ǚ&v�x^5�fz�mE�����֧���M��Si*B�#�pwnb�bR
�?���$r�g��,_�l��'�Yb~
|xf�T4�>��{��5�?�6����b#?���/��������Ң{z�k��L�BG�<]�_����[�G��Gi��j��C�V��&��9m� M��(�0�D;�<0Ü�����П}��v�~�8�0xϮ�j��s�MBM4��i�c�p���^�V���ɷ7���3ſ�'��]����3ſ�'��]�����������Z��?��2m�ơ���o�	��g�����o�	��g���7����������	��:�/���?���x��%����U��#����%l�8��_
�^<�l�G�[��u���4i�E��xp"�$0���9�>���G��� �o����X�iY���y�����B��Mǚ���M_J�ńm��9�s|�yY�pT��z~�C4�
0��R�/�uW�������i���@>-���'��A����>-�?�ψ>'����^�J�Y�,L�Q~T�(�P}a&��D;dx�PU�O�m��zC���D���@�G�����jિ��T��?�?�#̿g_���_�:M��Z��ntڦ�g%�9K{���8���Q�^��y������2~�ٲ�&����!���Gĺ�͕�[\G������J��n��
w|�-�����L�6��+����ڼ*�#�ĸl
�p��տ�+�#��7�R-ޜ�RM���K	�³�(�����f��������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*5admin/images/buttons/activate.gif0000644000352000025440000000112211560453626017551 0ustar  thediannthediannGIF89aR�������000����������������������������������MMMBBB���uuu��������Ň�����iii��݃��������������������fff!�,R�@�"(�Ȥr�l:���p
X�جv��z�^�dX���4�B��|N���|������t{}����o��������������������������������������������������Ǣ����������Č����������������������������������܌
H� ?QT��B�F,H�b@F
2j�ȑ���?jـ�ɑ%Qf$ٱ�FFbʜI����7	0�)J��o�<w��)��Q�0�*]ʴ�ӧ�H�J��իX�j�ʕQ��`ÊK��ٳh�2:���۷p�ʝK���=,�˷�߿�L��2`(̸���C����'�3kތ$…A;admin/images/buttons/back.gif0000644000352000025440000000107111560453626016654 0ustar  thediannthediannGIF89aR������������������������������������������������������������Ļ�����������������������uuuiiifffMMMBBB000���!�#,R�@$*�Ȥr�l:����	X�جv��z��Eg���47B��|N���|������t{"}����o������������������������������������������������������ɤ�����Œ�����ܥ���������������������،	������������`���1R���Ç#h8q"Ê-Z�ȱcCFB�I��Io"Q2(�2�ɗ0G��I��͛8C2j����V�@�
J��QF�*]ʴ�ӧP�J���իX�j�ʵ�ׯ`��� ��ٳhӪ]˶�۷Bp�`�ݻx��AC�D�L�0�;admin/images/buttons/heading_icon.gif0000644000352000025440000000013011560453630020351 0ustar  thediannthediannGIF89a�fff���!�,/����\l�F���l!D=^䌩�N�Xnh��H��
��\�\"�;admin/images/buttons/search.gif0000644000352000025440000000103711560453630017216 0ustar  thediannthediannGIF89a>�BBBMMM������uuu������fff��ݻ�������̆��iii�����������Ń������������������������������������000������!�,>��� �)�Ȥr�l~!a!�Z�جv���a�K.����n���|No���~Ϗ�?y}��r"��������!�������!�!������������!������������!����������������ɛ�!��Ϛ����������қ�������ˆ����!������������R1�A��������:H�HQⷉ�0fAq#Ɗ 'FI��ɓ(
iXɲ�˗0cʜ��І�8s��ɳ��<�8
eJ��ѣH�*]J���J�J��իX�JM�AZÊ[�"q¶�[$�;admin/images/Copy of no_image.gif0000644000352000025440000000771711560453556017333 0ustar  thediannthediannGIF89a}}�yyy��������������ҋ�������䦦���������ɯ�������������!�XMP DataXMP<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 4.2.2-c063 53.352624, 2008/07/30-18:12:18        ">
 <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
  <rdf:Description rdf:about=""
    xmlns:xmp="http://ns.adobe.com/xap/1.0/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:photoshop="http://ns.adobe.com/photoshop/1.0/"
   xmp:CreatorTool="Adobe Photoshop CS4 Windows"
   xmp:CreateDate="2010-05-12T20:28+05:30"
   xmp:ModifyDate="2010-05-12T20:28+05:30"
   xmp:MetadataDate="2010-05-12T20:28+05:30"
   dc:format="application/vnd.adobe.photoshop"
   photoshop:ColorMode="3"
   photoshop:ICCProfile="sRGB IEC61966-2.1"/>
 </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                           
<?xpacket end="w"?>�������������������������������������������������������������������������������������������������������������������������������~}|{zyxwvutsrqponmlkjihgfedcba`_^]\[ZYXWVUTSRQPONMLKJIHGFEDCBA@?>=<;:9876543210/.-,+*)('&%$#"! 

	!�,}}� $�di�h��l��#�tm�x��|�3�#B,�Ȥr�l:��h�!�Z�ج�I���x�����n���|~���x�=���r��i���a���X���P���kU��O��������������������������|��x��t����������é�Ƭ�ɯ�̲�ϵ�Ҹ�ջ�ؾ^�����������������f�s��Q���`��\��Y��%	(���E"��o���H
hp$@#�x���DlDp���H��FP!�&�ZrI�i$�2(0� ���$���
pp�E#�`&�p �(`e��V����UF-���{$-N�`��<��,[p�8�6���Y#X�t�
��ȁ���5"A$#�������=�"�ˀH4����6��L�e��^� 0�صq�P7���r��G���F�9G)!-���{j7�X+x�G8 ��D���yQ�h�P���vR��%��f��@n�L�)�d�gjD,p�O�!�N�A�]	�T�D$a[[�ۅ�e�j�l�uD�%�w�҈RfaI{�Vċ4f�;V�L�E(QF-��FJ�Z]�Y�@jHU�b��u`ڦю}䥋2�C�E�F�I�w�g�B!Z��1����@����P:���`ڎ��pz�����ސ���ؠZ��Ұ���������:����ڋ���z���������� [���0����h��@�NkPE��&�m����C�~����ʶٚ[����+n?�ֲ����+/�6R,���'���/�;admin/images/add.jpg0000644000352000025440000000765711741744200015031 0ustar  thediannthediann���JFIF���	

&'/ #(),,,150*5&.,)	

)$$-)),/*)),,,,-),,,,),),),,,,,),),),)))))),),))),)),����"����?!"1r#2AQaq���Rs����B���3CSb�$Tct����,1!23AQ"aqB��#R����?���/ќ�Tjʝ��9(I��kN�:Y\�ҩSE�k�cV��g(�����4����փ��&�و����qi�c��o�<��ZjD����:d]��9f�N�wZ��Y��e�u,D:ۢ䗌nj���*�%�Y��< �?��S�$J���>eJsݜe�˩'�+����yW���OLZN.*���t�VU�G��"���'j�4=_�e�\tЖg���ʓ�{a�]��%%
�t�=�v��%�^d�ʐ���8�p{c%�����Ӻ��z�m�;�倜4іt�V[;!Sj��)c�cR�U�Y��]]�Z�YI2S��[}��f��i˟N�����W#�����pt�6.�Z_H��Y�\���ԍE�Sس�l���p���qU��B�����tr�%mXz�ҫC�H�s4�#�b�*�.9f�NO�֥?6����:�"�Td��7 �J�4wh6Y�E-0�^�W�
�s�]�?�+2a��7zR�㦸�r�P�5�OoG��N�O�'�C����Y_A�d�����}�j\���ȑ�޼|>�-��#����!��../�S�FPê��m�r��9�u(��u�j�Yn�ɒ�2 �1Ќ����m&��8]��+Ȳ��L�L�di�K�nBb�b�$x�2M����ʚq�ʩ��z�ay�܏�9��{���t�^d7#䎖��=���*Te�|~��G��"VY����^�wc�G����`<�����Nl�e��naQ��v^L�#A�ǹ�U�=l{��挩m��r�2�S`Ymd�,����1eY&qg�5ř\��s�{���t�O��r�s��T�u=,��ˆ�=(��~��W#��:b�6Zz�~���Q/.=x|>r!Qz�ݏ�,�Q���Fۋ����]�S7#]W�-�y1s�V[���I��z��Fw5Qz��.0dX`YkT�Yh���.��<��a�	2�x���W�W3�F�B��U��i1�|"�q\��|�OwS�Χ	��nCҎGU�u�Ezs�J��q:������6Qv�of��Q�Muo�+|�֙,&zt��
<�χ��2��Q3/�R��RԎ�}(�d���ʍ�G�1������j=Yn����j=Yn��r�^��F˚��U܌�0fX`�h�S�d�<�-�M]];Jmm�_B뗂Ӳ�OH%b�v���ڂ��ͼ�Cz_���6F�uV�t�KL�]��~��J+�����¨C��e�2��N�n�%�	C�:��o�Auˈd��)>k������C[]͡*��$���=��NE�!)�����٭^˼��[�$=�KjFQ�'n���xO��s�L.P��sgk�^�i�]��r�q�1V�N���/ڋ�d������%�U+FN�/f}���Z�Z6Z�4�kh�=�$�!|�>9��^�wc�D��R���R;���H�U�Fۋ��\X���5��e�b�5�ݗ������Wr3����]�s����3
+�]��y��.��/�I�"��$�["�Ċ��͊�K֗{Z���̕SX�(�_w\�Ň{ƐUC%P�Q��r���?#�ýH���5�Y(��J�k�A�\-E��O�c=�b����yǫ���q\i�媉a�;�J~G
�FK�D\��Ox�]CPS��d�X���k��jkd�j;��x�i�r�+l��kOӠ���ʙ�RoU���?	}$��R�4��3�0�ё�9��R���R;��Äϕ�����w#�G'ԗ��U�F님�\\����h�F^L��&+)���YA��ZL����
�5w/#
��'��;�K�&l!ck8ݮ���e��o���魳gv���f�V�]��U<w��N����3RQ�'�_O��rQ�80���]SN;g뫑j��e����F�?$a�S�!�#��&�W�2����,EU(ɹ��e�I�a�˒������C�G�6g��;z�W���>�'������<^o6�_k�}i��;4��Jf�"���؋�V��E�x�=�3��c��{ԗ�&8�KJ�_t��>"����*0�!�#�,7�_�E��O���F4�ZKM��/��\ �8�뤖j�������T�ƿg�!'�&�[�z>ˑ�\e(O�QM�Kc_;��w�uܰ�o�~yߩ����Μ^�,3�w����R;��Dž�����w��Q��%��ʍ�1�����g-I�񗩝:g-I�񗩚����+����K��N���+۶���m|d��$UQ���K
U�*��"��)ɨ����QЁ:�2*�D��K���إ�ȏ�o�����%S��t\���O�w
��_�K�ZSһQ�V��=�^�t�Irp܇��k�{F����&u�S��QJ�d�[d_�x��dMi�ƭ��TK��\�zH,���9���/�D���/����5J"�.__�?�&Y�g��8�(ʥ�Ӻ�̊�~Eh�i��F�K���Ο�&����7!l<w��/��NQ͡���>�'�o�vwjZ�GVQH
����>��#�J,�T�h|qW�z�܇��R_�����qs���r�z��&s�x��� VF�>+9[��J�"̮�ج�;J�֞�{5�2��X{>�=��м�V�?uN��J�L�N���IԠmU#Uj\��'�e�\�7!�Dz�9�O����Ԇ�=({i��yg�Y�}܍3�e��#Sq��S#!nAw%]JDJ��j��5�)$.�S^97�UK����}/�F�ѻ�:>d�r�mZ��o��$U�"k�T��G6(�y�����.K��j�YF��mI_Yu�9���Gҏ���_!g^�%i�v)v��s�q���3U���v��M;=
hw����Xђg3I�񗩝,^����:r�[��k>s�C8�;6����(	x=��^A�e(��#�����]����'�b�+"��)+���˝�-�>���Ͽm�\%Hs�(����a�RVhY7ܭ���lòƉGO*n�Nq�kL���y���<Df�	)%��Wzچ����N�A�J��\^�&�����L��J�l�K��J�Ѳ�B]:��.�*䊒���G6Z��۱��|�j�%��܋X���B$cqq��;>���7�ԍ��λ�Y����o?�h�(��U#<��x��m5��T�_��ݷ����U��3��d9]jnQ@h\
̭�cYgFѪ�z%�s��FP���R[S;�R�p�=\�-���	db��Q��oOg����$d:w�Ou���/:S͚�S��E��w�ї\_��a&�$�����l���sMФ���
�X�_#О�q�\u_И
�*\�Sk���pF�M��%%�2����y�JMlp����4w�^X��;~��߹�iOE��]�`��C���.��t���}t���k�J b2�I��S�A�Ʊye����G,��{!J>~r1�]ew7�b�%u�:L_ԓP�㜚֊�����-�d��(��%�V
��o�	F��9,�����K����`rz��K�.�jC����*=����X��]tu��y��F�8҅�`�����[߹;z�@��admin/images/instagram.png0000644000352000025440000002032114033162526016253 0ustar  thediannthediann�PNG


IHDR�{^�sRGB���gAMA���a	pHYs���+ fIDATx^�	�u��_�5=g�H&3����(�ʂ(�"�KT]EQ\0�����rɹ�.����%�\�+� �܇;'��dfz���>���^�kR�LO:��J�z�O���9]���?�J�z�C����(94�RĬ+�"`�3�yE	3Vj�V%lĹ
�,8�(J�QP���(!�J�1E	PE@Qˆm>U%�X��5�(a]�k4�(�F@QB�
���+���%lh@QBJ~E	1*�b���(J�@������E	1*�V��o������
�(���(aF@QB��z��%lh@QE	3*�b��B�(J����(*�fT%�X��j@Q†�EQP�0��(!�J�Oc�64�(�
���E	1Vj/�(J����(*�fT%�X��5�(aCc���(J�QP�������Gc�6Hj�]�e���?eԟ���|�ƹp^��lݨ�� F�~F�l�&*�O���M���y�����?�N���܂��'��Q�s��8�O�p��p]=�2�x���W�b���\��l�(3L�p�N(���*�T'9U��T���`�q�$�/�S�c�f�)
��ג�"g ����Ϗ���5$���v�I�8T*/c����d�JD)��D�{ϧ�.�Pb��d5�Q4	�OrJ��Q2!�o�x��	��N�f!�����
Q���
��)��R~�-ʾ���ఈF����&)�Je�P���a�(��vT����������5T8,�?<G�x�2O��;�)��HT��^�R�T(��].t�R����,5{����jԳ�ʹ8�	y�|L)���ۻ>1�E^G�3M}7��ҷ>,U�hk��veK�N�S��D��G��w��}�p�~��ب�1��D�`�]��O��k��(0���u#e�"ӧ���!?|ʖC��5�-
\~v��k���T{�n>�g0�R�/Qw�����8��3ޗEX�����o�R�#�{pW{����^y'E��݀%�A�"�P	D�\�S���f�]��4�͇aJU�R^�@%o�m�����g�i�?]M��Z��+J�li���`,�(;�s��s�=�����aʭ���^>N��L���a�!'�����[�;CY��/�KD�M���\M�4�RtZ=E�k(�PCVC=�絒�f??^��/b>��	��u���~�@X'��l� �k������J�1���5�y�e~�%z�U�6���`WK~E�+�B�7p��Q66��b��/�^��
y~|Ȃ04�R���Q�!���IQ����{���k~C�&9�,�b*��F�_�IMgK��|�5�v�_�Iݗ�N����K�>)y��
J]���Fbc���;��,���@��	�u�:����灦�؜T��|�	d�P])�9"w}�I�ȳ�Q��E@�
�z[
D�{(Ά2�+�<�ﳗ~v��.���Ě�T�N�l|ئ�z���Y�,�,�ݙ�Ķm4��g0�l���onY'-?�,�r�����L
��_=h����{㗏2�p�}%�Y��.Z�k�>���V�Lp)��(�G)�]��t��&)��L���;'^H�ǟ3���/���͠��{��(�c�P 0Xn���66���ٸ��>�}�~��,�N�}��Ҁ�
���%���dM�)Z[C��z�n.c2�
��T��vF�L�#}�\ZM�_L�j��|�
Ҷw3^@=� a�(t�Q�g>�K}�]���Wu����\���%>��/C��I��1;�2�ņ^s��TX�M�͑�b�jA�׻�I���?�csgR�R��.���D X����Ts�>�i����u�/��f)�%je���G����oS�'SՂ�)��,��ow�y�7�i�	T�JK�%2���_y��~��3*ݚ���͚��f]	��`��J�ߎ;�1y��o�F3��ski�ܨ8���5�~%��սv�&�,f�d��r4U�=��A��
u�磼)o����S{�B�0t��~qA5M}�����x�A}�4�y�	:ﰗ0�167��dC|��$�`�l�	��a{䍕�Z��$5|�^apL
�!��II���Q�4���Ki�O��w�����hk#E�ic�"��4M}�?5�S��yԇ�mc֍�4�Yu����א&��0�\�
�=�_�F>�~*���ux|��~y'�]�������u[\�L�s�7�VW�fH�D�^$�Ά�y�E�n���?��x���
@P���
=����E�
��e���H]��ń���0���SR�&�ލ����Z/=�f��b����4�+��9�+4��Sr���/� '���`�ke����Uϝ/�L��2uo�����^w����?�M��+�~m6j֜��;�q|�i�-�G�����+aX����W޼���è�}(�.v�䖬������!����ڋj	�t\=(t�P�9'P�i�ܺ?���k6b��(��r�&,�7�'�K�m���|?����{��:μ��Hs�s`�Q��І��Wb�1Ə�T����'�b��#	;����l�5U�r�4����G��� �2��/a���{&��lj���4���%.aw��#�NִZJ�t
��e7F0��}�4��[2hhto�d2,Ƹ=�3�oM�w��O��<���2��g#�����Q`w�����6_Φ���>~�}�*�v����P�@���o!�#� �/a���{�{2A͋O��^N��ˀ$4���8�Ǵ����KoSaU������hs��9��ȡ1��o�({>8&_� *A��2���ã�Iw�14�3M�Y6���vO�Z�D3�>�,B օc�JC�B���lg֑DP�u�~�F�$�9��]��I����s�wh�'Φ��^NC��W��p��8Ї����\Y��1�
(*���r@�'�O��!�����,'��ޅ�/:���z��	����<��C`��'�v&a�O�l��4۵^v&5~�pʿ�"���8����"�������h�m7�b�0��Pd�� �$͈��*��D�QQ/Sk1bh
k�R���^�%��'S�������z��7�2"���N�W�P����G�]1���`?T%���|��>��5��
���9��>F�
WULy~ ��2��>��6�O�2� �%�"�_@c~���;ֲ1H����h��z� a���;7ъ�Σ���Iˏ:��/:�?���i���7������܈��+Ϧ������`��p1��#�E��:	)�� ��#����a�]|V����1�f�h����ϣ���ܒU\�G)6s:�f͠XkY�����^y-=���f>��rD�:YTZ/?ӝz�r�"\ވ�ݷ�Z1�	�^K�*"��*��eC��c|"ds������ޫۏ�d��oҲ�Ϣ�{��X�4��'��<�c>���H�93)R��n�v�BW�k�^S@+{U{� 3�`80YcTm����(��׊^�R��������L&�7��0��}�����>J,�Y��x1V���
z�/&'����VwiރИ�ݍ�A>@l�v~�oR-��	.u���O�U����7n�G
׀����H���e�
,��iR���+[q���FpFF���+�2��,}��q�bH��oSF�>Y(b�3(�|5����|�0���Hu��G��~�D�������)7�e
Q��-CFr2wç�h�Q�_��y�i����\�bm-4��K���}n����q���@�>5a<J��k��W�J�+]�{�����)�p'	�	���gм� ��[8o���6�f�P���eQ�:M�b��)��\�./o\�"�G p��@Щ0,��X�!��lg2Ts�B^a<c��w��|���%����~�3#4�L2AU;�!����3�����-�i�R��L����LMoU��9�6s1��G�B��:��N~B�����:gxF::xh�����&3�`�P��
AZ��F�	6�|�m=Kq-�u0��d�_�d�w�q
�����O|��$/1���3�
�}��*A��g{�16�|AF� ��3�рr1�I�UUE��s xjeNm�sg2ڨ�1���z�^�o�L6*�X�^&?��튓o��6�N!6
�g��x���PrܱB�ܺ&<�@�`��J��`_|9qM��&��P&JZ�(��a�����tf@���I�"�఑�ݙ{A�I��,9tTιK���/��2e�T��~��l �r ���1�:�劗D)��HSE[ݼ��=������g���I��]�ύn��7Bn,�t�|��WX���yA7X��h�)�mL�9Yqv��!��ms��4�h0r�1���'��r?eC��h ���6>7��g��vc$�b/!��חp��xc��C���Eܱ��1�T�g��+��w!S�1ٿ�p[�ڿ8�*�q�|c�iʒ�	R�$��+a�p��3O���Ԍa�s�;�����o,J����J�G��yM���3#�{���(���±pl���%+��
@P�>K=�@k#�F���wG���gf��s������.g��x���{�����u��Ff��da���
D����W�� Ͼa��T.ݝ�!��Qw���c��S(�B o���X^��p��T��`���x�<N�d��0���c�>��\	�����J�ܗ~�-��x�1�HM����k(�x#�+&�R�M��vwڝm��u3Qh~�jJ�;��d1g28�Wz��嗯��G�q'�k����†HN�WH�i*�f�f!�q���|�02w�$�4�Q����_=l2]�t��jlv+͹��ϛI��;�k����,	Z)�l5�|��u����o��^s��2���� T8��n�2���̡W���S�0������o�ÍHۿ�jĈ��i�9���O=F��S��c���6�Ή��[���uu�z�W���sX��m�?�:�y�Ex�kn�rټ+�[J,pX�-(��\���6��b`0�rb��C����߼��C����5�k9�$��B0��S�j���f��1��	�x���ImW�Ms������1��5߾���5�K���x�6xS��t�hA��O�r��!�r�)����X}-��u&Ӏ��
0}ۃ���Rl�Yn	]&��.j��"j^�97�oO�\��ڴ�,�~�Fb?���
zl��s�E�y�U��hv�-�/��P�~{�
{
�tυW�/?�\w���y(Sƺ��*�>�6��7�5�u���(����{��3�7�ߔ�_�68_>^��۶��ˤ����s�_}����Kk�4�4AFa�s8,0&->�2��_;�\��E}��d��j���`%�ΚN=���^z��%���J[�3@6JX/y��{ޤ"�h���}����lt2�M¢hM���;-���e���D (�(���w�y�g�(����w�e76����{�}������U���0T��|�yHŠ>�}LG��g_�G/��?�>c}a)q�-�4�}���t�K���(�^e��~A%~��c��1��g���㎵�F�#M�t���Qύw�-p�F���ہ����+},y�`�E7Ҫ�.�חGg����+����� 9C�!Ű!gh��ď�zA�?���~w��H0/�v#��ß�q�R��8#-�2kP������Υ��~Aٷ��
7z�?n�u_���^���^/B�w��k�V~W߱@�#�wK��=zoG^����'S	��[�k+@ �]�LS�Ϥ��>�x��l|h%X����C���y�Q㽀v_���<��B����.�I� �:ɧgIb�B~�yu	
=��]�S�q��;�	F!,|U�Ӭ/0���,=7�M����^��MjQ6�@ (ؽ�K�|�Q�t։҃��M|�?��?�H�6v���4T.��h�!�KK��t">���ƋV<N������4š��Y��"�|�K;������cG����s����V�Ȃ3	�T�e]3 ~MS�O�]���c^�]s��d��$�u�MM0^io�u�aa�m;K���4���y��i�o�ȌF�VL��n˼�17'�XP��.�f~�
�6L�X��4�	�(A��>��斯�`���^4�Կ�<��Z.��o��"��%��&7�����ˣ�0̉V=�A`���;P�=;�<�ؙ�cv�
*���d�_��`�G���7�Q�53��	4�ptZ�u�;��m~W����5|��:�s�!�L�ebq���Ń;J>�|�7�x<�14�~<EgN';=8�l� ��K���J
G���J�����^��?>o����wk�����G��{���!Ӏe� 
�������y�%P�?�֒�1�����v�ٜ��;W?���i��W��R��35�X}E�2��C� [nu7�o{���G��
��'�^t�d���;޾@	Ϟ�ݹV���oQl��ܠZ��_��w���lNCeB�
�.���u���* ���ϧh}
嗮r���K@l��5�mIp~Tkp=Ơ��uPb��i�m�R�{w��"�6��ȫoS�XKM��L�M�J�����x��^r��tJ�췔��Q���a`A;}u�"(59��E�Slm�X
|cÀ���@��Lv�w��̠i'A
����.�8���V��ϔ{k����-J0H?����GU�\z��颙�?��>y�z�1
�����4��Ӕy�.aWQa�Z�"r�;,"!���~M8���;�c �֎l�
���"cO&�<M�T�%~�?������l��ƾ{�w]q�o��b2��%T�4lN6+���T�`�
�F��Ġ�Ct޿藙z��q�<���O��n��c�,��VUT�{F�n�V�=1~��#�1��%�?������D�6�����TQ���4�'�S�^����l9~`@ҳ��htR��A�6[�����L��������^CØU%�	��T���ˠ����ӿ�%j8Ҵ��N�)*��
d�J�����J��_=�H>�/�X�)���~���?��;�xk�F��0*����4S��R��/P�{/�"��eh���Q_�>���y��4���(��⊂OT��Q�4$�gS��W�v�G�����̻~�!)}��J�r�‹3l
�x (���hC��e�{��h��'%p(�h��"P�T����n��ղW��m�65��*���y�-��	�<��4[�p���M}�:8L��@s ��#Y�	X���)�m�L���n.��g�;mպ��*�3�t��d0b���pV�v�O&8������r+�Pn�ʾ��
�i�ri/3��v�8D��T�t�V�+/^��g"��FZ�{1y��0~ϥ��*�Mx;�`/�����~����������W,*[^�lDϥI������W�ϩ�I�ܢ'�ӻ�'/�z`�SP��	��\i����;L�#��$�IM�9`�8)��L4���ƿUa�>����
�EQP�0��(!�J}Bc�6�����E	1*�b���P���1EQT%̨(J��R�����
�(���(aF@QB��:Bc�64�(�
���E	1V�H�(J����(*�fT%�X�EP���1EQT%̨(J��RGi@Q†�EQP�0��(!�J�1E	PE@QŒ
���+u��%lh@QE	3*�RP��R�j@Q�b	����E	1*�bT%Ĩ(J�QP���(!F@QB�#���ǝ�X�ꀢ��(���z�':�h�d+����H:9��MM���1IEND�B`�admin/images/bg.gif0000644000352000025440000000451612450310612014637 0ustar  thediannthediannGIF89a�����������������������!!!�����������󻻻�����������������666���			���������





������������DDD444JJJ^^^���NNN������������������ZZZqqq%%%�����Ρ��������iii��ח����ʝ�����pppcccwww��ȩ�������������������***������222��������������������������ۦ�����������������)))�����������ꅅ���������褤���퍍�������888TTT>>>������~~~���������111���$$$���(((���,,,...GGGHHHLLLPPP:::]]]BBBEEEfffsssnnnOOOvvv���|||[[[�����Ɋ�����hhh���"""��⚚����```���aaa{{{tttyyyUUU���llldddKKKCCCkkkXXX&&&===000+++WWW;;;RRR���333###@@@---'''///���999???���}}}777SSSFFFYYY\\\���VVVxxx���uuu   ���555���rrr������ggg���zzz���ooo���mmmMMM___eeeIII�����Ɔ��������AAA���bbb<<<������������jjjQQQ��ī�����!�,���	����*���ÇqH�H�"��3j�(��Ǐ C�I��ɓ�R�\���˗0c��@��͛8]��ɓ'��@�
J��ѣG?(]ʴ��:P�J�Z��իX���ʵkW_`Ê���ٳg=�]˶�[>p�ʕ��ݻwO��˗o���,��ai+^̸�ǐ#G�E��e˃2k޼y��ϠA�M�ti`�S�V]���ׯ�ȞM���۸s�Ż�o߇�>����ȑ#Zμy�`УK�^�����i�Ν{���Ç��E��y�*ҫ_������,ȟO���c���ÿ���(�6b�"�˂6� ;F�-Vh��wd���� ��ˈ$�Xb:(���#,�袋��(�3�`�8�Ɏ<��c2@�L"Di���$��K���� �TR�ʕXf��"\v饗�)&81�i�gR��l��țp��<t�)O.x橧����'2v*蠃�b衈"�̢�6sˣ�F�,�Vj���d��29t�駟b"ꨤ��̩�.�Ȫ������*����jk8��뮻����ΰĮ�ı�&�l+�6묳�D+�8�Tk��f���t���ĸ�[n<�,�뮻��+��~c��L����Ϳws�\�'����4�5�D,���b��c��GS�� �r$�l��Ϥ��3�����/o#��ۘb��8�|��<�ܳ1@m�Dm��~$���KW����!��TSM��Xg�53\w�L`�-��k�m��g�����d��p�]��t���x�&|�����.�6sn��ǡ��3���G9:�W��g���Wt��s"�褓>��O#�ꬷ�:��.����n;9C������C���'�|�7���D/�7ETo��ׯ����s���>6䗏�觯������_#��׼a�������������T���%8���!&H�
V�� =��zЃZ�G8B&��(D�V����0��;A��Іgȡw��4��@b��H�"�HL�9��&:щl���8E0X�X�b���.v�`�;@�2��h����F6��plG�H�:ֱx̣���>���� IHB:ᐈLd"���F:ґ�$�1�JZ��d96��r�ᓠe(�@�R�Ҕ�H�*W�J"�򕰄%!fI�Z��̥.uI�^���0�ILb���Lf2��f:ә(��4�I�j��؄����nz�7�8�9N���D�
���v�S�<幇z��t�>���~�
�@ꅂ�5�B�P�����D':��Z���F7�Q��� 
iH9@Ғ��(�JW�R��0��LgZ����7̀Nw�Ӟ��@
�P�z����HM���Ԧ6UP��T�JU5X��XŪ��ծz���X�Jֲ��hMkZ+�ֶ���p=�\�J׺ڕxͫ^�������
�`'@�����e�b���:6���d'KYX���ͬf7+��z���
�FK�Қ��H�jW��ֺ���lgK��+>මͭnw;�����
�p�A�����M�r����:�܈�t�;admin/images/pinterest.png0000644000352000025440000001431714033162530016306 0ustar  thediannthediann�PNG


IHDR��F���sRGB���gAMA���a	pHYs���+dIDATx^�	x\�u�ϛM3�%�B��0`���bl��5���+��V�JJi��6��S�������	{ر��Ŗ,�ڗ�s�}w����X�3�}\�wߛ����,w�^��W<	�<�(Y��Ή�c�!�Y�.�;�$,��0�C��0�C��0�C��0�C��0�C��0�C��0�C��0�C�^�J>�;��|0�C��@��q ��` ~�za?Ɓ����0�C��B��q ��` ~�za?Ɓ����0����~��P ~�#r~�9?�`(ֻ�0�����@���r~�9?�`(��0�����@���r~�9���E��M.�W9"�6?�$�k\�}=�,K���Z�B|`�"���J�n5���-��O�X,nW�5�HD*�w>W\D���|>�K]4*W���և�#ޚ���#����'��j
̚M��$��)��,��� wQ�~��\<^e$b}}��`�&
n����i`�X�Z��S^�������~&A^��X�ɣ"��v��.�D��T���ϞI����c!���z?��Zy�z���}d�w�8;���?_�ܝK��{�e+��*O?��_p>�-8R_���xi)��|֮��>��>�jb�ku��@"��_�Om�>N}�}F����]�р#�W(���"H�C�-䩬�=.����}L��/`8wW�g����h����#
�@�=�05�~
r�୪"����yğg�����,����7h�m?f0N���P-�)�+E��۟�/�Sӿ�E��K���!�r�?_`�-�55Q�ܹ4}ɽT�W���D�"�$�<>��K��r�J"%�(ag���W"-��#���R
֭%��j�����/Q����.�͸�?�FD�F�J�|>5o1��!��3	��x,Ju߼�ڟ\J��Ӷ��(���."��A
��Ӕ��N��BUKh�V�:GOl�'+h������Q���b|_������ӧ��L*<��x	��H�l����%T0u���(#b���Q���f��S�g�'�y���6o����:��-�rX����g�����~I���;��8�d
�;W_�d2��u��k���_�_"����U���i��*O;ͮO'����5k���Sdz/P�
����\2�����j�p�P'B�D(���N��B*[|�y�uT<�P��$�#�\ݷ���{��S��0Q���-D�,�`s3�X�4�¿�'2�ꢦ�o��TCt=2"��b"<1��j� �Pk+Y����-M���Ȓ.�tFHH�h�V��W�%��J;j9ğ���6�Ŀ����y�ʛE|i��t.{�6^v���[3Qyyn�F�N�3%��˸��&��ً�<�(̬�hm��6��F��brɰ�/�>�+Cğ&~�@ii����T�WuN"�:��W�~E���`�4���s�,�u/~~���ڸ��8�D
�[o�S�g(���Ө�)�u�=q�����0�r[4��{T�ʕ����6�v5\��䫮&wi���)��ޚ�vtҪ3�V�*�O2D�$޺��k(0w.E�s2�2�S}Q(�-b�#�_W_y��V^U<h*q-|i�k����6�\�j'H��Dn�W���\?��V,�&���6\v�����d$ёA��WR�����%�E�eYˑ�g�j��u�ٱk����H>���k��S����N��p�"�mj���Cq��Q3�H�c#��C����z�*9z�J
v��?��?E;�T��W���/��s~������A�/
j57�@%Gn�CB�dD�\'��kN9S��s��p���8�O9�ʎ[L���%�uk�}%�4a{F$��hp�z����!������g�#Oe%ğp\F�
x��"^_��s?~_M���vJ�I믹��.Y��4�:d�O颣h�;濫�����|�m���Է�5#oLbd�!C��~�M*��@E8�):*�]G+;�<�e�a��_�3�l�+P-���X�m�(RE����
���8�Y�,����T�݋i���
	_�D����>�М�����Y�w�����@��s�C��C5zЁD��t��
â��-d�O�E�mW��%�OF���gw�p[���"�o�B��MS��R�t,JK7��O9#`�i�?����轰��=��/���8�[�a�x�?��7���v���,#�xݜ�W�x�]��u��������b��e1�e;Ii��o׉�E�����U=S��h�ϨU��h�q�
����"
���֕i��e��?CΟu�AW_6]Z��>��	-��&�.-��
��"���z�I�[�P͍�W��q|@2rN�W��������ia�9	��S���k� 8�:� ��4D���-��K�|#�YDDg�[4�0��s&����2r�o)װ���P`��<�<U%B)���C�[��!^��G�.̈~隌�s�s�?��d��}����c�����U���(~m���
=��@��F!�x�s�ĸ�� ��I����))�
�h��r�@؟��b(?�����"���Hc#�}^n'�C��D%_�у�qB���&{w~V�}G\$��m;�*(�;�e�q�قE �m]�I��:���кul���6
r_�Т�
�W|�6��7�!��E@F@<�s�_�?�����6���9��5��?�l�%k�'�w��&��C��zr�Y��Ќ�H���br�,��խ���w�]��Y�K�袙���q��=ԗh���<�m��ŗ8�١;���s�ш�}p���Ouh�m�P�G��c��x�l!ޗ�x���+������	��2��W�ă����W9����5� yƍ�b����p�V�����]ğETW_4H�m�tM
Z�^YKp6ɊE)��2t��GB�+>UK}��τx�� y�&�A��ى��65ؿ�3d`��o!��\��م��^&�H�cW�2 Q
�Z�w&�����i����" #�����ӧ�_ռ�t�GG0����>N��?�ED�
���r4�5?ILŇD��^嵓��ԁ���Gr��q"!��e����n>Y*,��#)vK���=X�2��g�����IE�Pv}�	�&�����ho_~޹���8y7��ڀ(jO�b�O�Uue��1!��y������tFG�E��M��۟@��D��Sd�
���a�t����:��f�)�I^��w��S�'˩�7T�cz hх6l��5k�1c"�话A��4�O�Kh�&
���w��s���.n+#D�~��X,�"b������o�E�ڇM�q{<�R��A>1��S��{�i�L5՗�G]�D�۩��S������/���r��1�4�/�9�x��KYD,jn��9s�ߠq�~G-�1�c���Uݥ��{�^�Uw*"8���r�cjx�ʚ����s�]�A����=ϼ@�2{�@�ن��(��U���W�*�Uq��&�s
̛�v�Q�?8��K{͡�9��5��_�S҆�O?#Wy�N{���C�T4>�����5T&H�;�_~Ym�\��("l_��zǝj��F;�����s)��Cn��"�˒\�����B�x��t�͞{L��1��4����}w��w>�8�:;���
�����ϟ� �<ڼ�.ҢAi�*�hZ��܁�Y�r����W�v�L�?�r%�.��6ZT�߶�
�v��y�]�n�?~�D���W�JU@N��
�yj�����h�n��D�Z�	/\�������Hw�ˬ��E���b�%���2�B"~��<T}ۭ�JEilH�}V����^'τ	Cu 7��s	�������˯��!����
���%3��6K�w�����Fx��).�yF�="��4��R��G��L
�	���'?e������ʀ���?NJ�����:~� m8�d\]ǵ|N���w/���\y|�,�Yt���t��D��}jh�֐p����Eշ��5L&!�g
|��>�;5���^���5T(m�����{��~$5}�2x�6�G��?o��K�Ϣ�ƾ�EG��f�u:8�@*=�8�46��2ŸihR�	S����W��ddtD����@G ��VaǞ�E�5��;���=�����75Q�;oP��v�I�fxsmXp,7o&��I�X��q>��@�7o����Д�����0��}������w��H�^S��>�OF�c��9A�~w/y��S�o�Kq%yݴhq��i�w/��_�4�@
ڑ�H���/ �����4�����yw*|���O?�u���|h`�-��WC�y���54P�I'Д�յ#$I�}x���~FM�����¿�~T��h*>�>.U��԰H��#��ʩ�B�vu�K�M����g�n
�7R�-7ӄ�㈀C~o��?�k�̋k$��UQ:�a�Մ6,>^�-�0�~#�G�_����^��ա��T��1��~~Ðz�J9�	_>'���/�~��'�cƺ�/إXk���,��7�i�}���u(���Ȼ�8`�-�/����O�ϩ��(���^E��y��i���'�A�
&C��K�x�Y�O	V����G��^�����_҆c��X{����>"avw7->�>A�"▐��44����X��(�&���Br�z9���{���&�?j5_}
Y�rUV:��Y0�/ъ��|��`-DY4s�O"_m-�ZZ���S��ƛ(�ѡ�+.��	��\�^�K�c�٫�pֹ�p����N�Lnن��'W��Q�CΟ_� e��@!�x�-rUT�Z�P���?�5^����{o{��P�"���*/����J�;�
��!Ϥ�U?�Xg���k�R��Sϳ/P�����^�K�x��Du�A�����Q}E����,�+�S��o_B=O>E�=�l�&��`�"�:(��G��j�N�S�(ۇɮ�2g ��A��-%t�A@��Rrn�S���?�<���*n���n���i����,f��a�N�#��R3�>zA=_#��H6�����Xܞ›r��(��hk���T�h�cȟ�~�mZ����|��9��{���rZ^[~���v��/���P�G�Ǻ!nt޷�U��M��C�͟�q!���T�@h�[���%</�5s{��*~�>7��Rੑ���HX��G~�D�#�S�{z(�r�Z.�f�8��<���tۂy��:�������Buk�r�����q����y�N������R�����<*����T�#bt@�ҧ�]YIV4�x/��|AD�ừ�D
�qD���,�Hs���o�ktS���	i�sy��tE�u�߹��%��c����	��^�ʤ(��>����
��6��ƣ�d9>��,�P(��놽��D��B�,l�������a�_�;���c|�}̭#��'<���j��!$`/��m��3Y��[��ğ/H�vS������v��\���7���o���@ΟGEf�Y���m|�讽�e�P�/E�I{��eg�?��i���K��� �{b=��v�D���=0
 �|��K��F}@�z��ii��8`� �ϧž��+P��]�.��'~K����l�J>��4��k�*��|������ j/�?ψ�)R����b��fbt#E����?$�n>=<>X�/_�K���?��`(Vr~�9?�`(V#�~�a?�`(V�~�a?�`(?�bmF��Q�t������@���9?F!��!��<���P�f���~a?�c� ��(�`(�0�C��"��(��`(�0�a?F��CA���Xm�0
��
�~��P ~��P ~��P ~��P ~��0,�?�u�^�x\ �?�ճ��8A����KQ�3��9�x
ZIEND�B`�admin/images/in.gif0000644000352000025440000000177212317670714014674 0ustar  thediannthediann�PNG


IHDR��
	pHYs�� cHRMz%������u0�`:�o�_�F�IDATxڜ��o�U�?���-m���R�hҐ�01h�7�\�ƅ�7.���1.�hↅ���QIH����(R
i������=��*aE�$gq���|g��9�8�����ni�w��y��c�כ�6��?��O?���Bw	��O��Z&Ƿ�����	�l���nr��e��X�Ba���zhL��2�Vkʇz!�FYz���YZ���!������t�	!�|�BH���Xm�ړS<�{���r���a�SQ%�DʂOY�)���k����`��=�Q�5u�05]U7+*JL�_`"�H�[���-sp��\�ҏ���#��i6i4J�o0�iS�&
!FRN����Zr�?��V.\[f�쮂����R�k++�ފA��2˾�H�@�f�,�,B̉�~`rK���g�9��K�x���9��6s7��1235����/t��
:�s"�`sbL���OO09>����n5ػc���	V`=����>���q���`E�����3kU�7��d�!��g�z�g�x�476"��fzk��������� *������J�w�'/��S�ty�Ս
�f���,B
3k�AU�9��{�X�S��e!�:3U�XS+T�	U�����7}�]z�d�4��z��Ծh��Z���I�Jk㠆�BE ���H�h�RK��	��Q�3��*^��WF�:\Y貼^�����4���R`Ty��l���
�j��o�����Wg���,e���/�
��j��
_�pD�@�Y`l}��Z�w�-�~E.
0ZoB�` J�7�W�*`�1��\�WUu}��3��<Ћm�e��q�.�u���.��Gۭ�n���u\]�s�vw��?N�o����IEND�B`�admin/images/bg-green.gif0000644000352000025440000000236212460001312015725 0ustar  thediannthediannGIF89a��F�:t�k��{�s�����m�d��{����"���d�Z��������)����������T�I��\�R��2�$�:�-L�A�����������=�1����6�)Q�E������X�NA�4.� &����`�V����������h�_�����������!�,����pH$��Ȥr�l:��$�4�r�جv��z��GL����z�n�7��@���~ϧ�
���4�����������4���������������0�������0��������0������������/�������/���������/������������(�����(��������(��������
X�C���XȰ�Ç�(1�"ŋ.2j�ȱ�Ǐ�Ir�I$Q�\ɲ�˗0cz0�&͛rҬ�sg��@�
J�C��G�]���ӧP�J�z!EիV�^�ʵ�ׯ`�^h1�l��hӪ]˶m�o����ݻx��ݛaF߿3L��a�
f$^�X���#K�L��e
0k����ϠC�}�s�Ө�^ͺ��װc�p���ڸܶ������N���Ǔ#_> y��͑;�N����سSG��;��Ã����ӫ_�=��ß~|����Ͽ�����~H@�<$��6��
&���R8�	d��v�a8�(��!��É(���,�h��0�(�4P��8ި��5���@)���P�$��L6餓2@�2Ti�Xf��p�%`�)�d�if�*0��*���p�)��Y�x��|���z������`衈&�袋Z`���Z 餔Vj���馚v�i��*ꨤ���
ª���꫰�Z��J뭵V�뮼�����A�k,�$���6���b��Nk-�f���v��	�+�	�k�覫��'��n��: ���k��������l��
$���7���
����W���_|��w��� k,�
#�\2�$���,�������2�l��4nj3�;���#-�
Bm��H��L7���PC-��TWm��X�@��l���]�-��d�m��c��l���oO ��9�m��x�=w|�-w�~Oxn��#��7��G.��S���g���s���_�褗n����ꬷ���.���n������;admin/images/twi.gif0000644000352000025440000000613512317671002015056 0ustar  thediannthediann�PNG


IHDR�Z	pHYs��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*!	J�!��Q�EEȠ�����Q,�
��!��������{�kּ�����>�����H3Q5��B������.@�
$p�d!s�#�~<<+"��x��M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'������{[�!�� e�Dh;��V�EX0fK�9�-0IWfH�����0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4�������x����6��_-��"bb��ϫp@�t~�,/��;�m��%�h^�u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ	�b��G�����"�Ib�X*�Qq�D���2�"�B�)�%�d��,�>�5�j>{�-�]c�K'Xt���o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A�,����`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(��	A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2����G1���Q=��C��7�F��dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8,	�c˱"����V����cϱw�E�	6wB aAHXLXN�H� $4�	7	�Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w
��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ުU�U�T��^S}�FU3S�	Ԗ�U��P�SSg�;���g�oT?�~Y��Y�L�OC�Q��_�� c�x,!k
��u�5�&���|v*�����=���9C3J3W�R�f?�q��tN	�(���~���)�)�4L�1e\k����X�H�Q�G�6����E�Y��A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y��}/�T�m���GX�$��<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��=
���Z~s�r:V:ޚΜ�?}���/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z�������ۯ�6�i�ܟ�4�)�Y3s���C�Q��?��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�����!h�쐭!��Α�i�P~���a�a��~'���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl�������{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L
Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k�U
�}����]OX/Yߵa���>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n
�ڴ
�V��E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa�n��{��4���[���>ɾ�UUM�f�e�I���?�����m]�Nmq����#�׹���=TR��+�G�����w-
6
U����#pDy��	�
:�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7���y���՞9=ݽ�zo�����~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G�������C���ˆ
��8>99�?r��C�d�&����ˮ/~�����јѡ�򗓿m|�����������x31^�V��w�w��O�| (�h���SЧ�������c3-� cHRMz%������u0�`:�o�_�F�IDATx�̓�+DQƟ�ܣ�&�B�ˆ�,��'�B�����޿@Y)����B
+��j|��̝;�����pg��������V2�i)����U+P`� D��t�l	Q��-0,�����$�j�.�e�<��y��/��xghr��>˰�hi$>Ԭ��5�F�N�>W�DlWF���h�Lo8Q�MV�,խ+[i����&\8���T\-�^���,P��'���ɠ��#�R񲖄�D�
v�*g>�JӶ�-��9#u�Y��UF�̌�t1��#�yW�I{��yH��zSιS��:ϳGY�/B"�i�F��p��~�t7�Of/�Mͳ�	+I�T�>w��r��F�[��|_>��j$�
eJ���l�6����GSE�|�_p��$�wjIEND�B`�admin/images/icons/0000755000352000025440000000000014373776770014720 5ustar  thediannthediannadmin/images/icons/up_arrow.gif0000644000352000025440000000007011560453672017226 0ustar  thediannthediannGIF89a		�������!�,		��i�颊r.��e�;admin/images/icons/plus.gif0000644000352000025440000000012311560453664016353 0ustar  thediannthediannGIF89a		�


�����!�,		h�|�G=�+�RB�ve�@B�	;admin/images/icons/delete.gif0000644000352000025440000000051311560453634016632 0ustar  thediannthediannGIF89a��JRƵ��RB�!��c)ƭ�֌{Ƅ{�kRƽ��)��s�c!�!�{Z�kZ��{9��Z�)�kR�s1��s9����BB�ZB�J�{{ƭ���BƵ��ZR�RR�9�Jƽ����!�,h�L�`:O&�G��TƐ���,L�dq8��	��6P�4**	GM���
����i%%~GRt#w]tm$km&#�"wHKbGHA;admin/images/icons/add-Pro.png0000644000352000025440000000366211560453634016705 0ustar  thediannthediann�PNG


IHDR�&�pȵgAMA��7��tEXtSoftwareAdobe ImageReadyq�e<DIDATx��\}L�U?\q�A@����Eej���`K�MT��bSԆ�O8״զ���jњ��Q��R�,M�`�	d�)j��ԉV
�r�,:�s��ޗ��~�^Zq~�;�u�s��;��{�e7������Ζ����~e8$���<)�W_LJM�n�5z.@�<��߆�|g���.^O��;�,�O�0�T�Eˬуo�%O���)9o���>\�N	�Q�%{I�3������)/���+I	=}��3&E��k�p�N����%q$�^��I7�|�Y�\�L�n�0����營o�.��t�t��;�'�B�=_ׯl�GI�H�x�� �;}e�t���_��@�ݔ���/��ܼg���YzC�k�n��,�/˨#�C���7��6ߺ��׎��F�=[����u6��]>?�mȝͪNژ��C���C�Y��l6 �?�)
�DE����lV�h�c԰�t�n�}�	O�5����#��ZMm7� l�3q���-��I⹒�>��9��{��'X��F��&�F��Yq�Yzl�`M�xN����_+f��=��Q�kC��gݎìp�	��o,��~uqS'����`���ő��BD��N��h�a|lf�	|��_~5>'#^��Zr�m̝��	��bsx��@�[Z��
��t/��ء�^���rW�dլ����E�D�j{�y���Κ�.�Z���4�ɯ�mn�d/�:�(�B��,Ҏ�_��l�T�UGM�� MLd�h߬�
��;�S��C`<�A�m%Ǻ9���U�B��d�s%��Z�R�9����P�l��(��զ�7�}u*��^�G�%��aP�z�ж���B���(W���q�f�.\_`�k�q:�`ʏ�;����8LV84}���9�L�L"��c�c�sd�"����J�P��*w�9DP|�; ƅ��` �m��F:$���3�N,Ngi�%J��sI+�L#����$ɡ��.$r��8��J+��s�v���	@�oE'&��h�80٘t��'M<�AD�m���qTI��ȷ�y�,{�t$�^�_������µ�v����.����Zq��bl�(����N��ᩋ�޽�G��k��(�g�#j�5��w������k���Y����A���e�K���84{t{~#�L|F��]
�Q�V �Vw�&̨~H�_�콱�෴��l��$��C��zekәV0S��jD��E��Ըn�Bܯi��^�1E�ŏ�v��5ut�T�^���ȃA`�F�6��c�@8���s���#X�Δ�Ԁ�^�=S�6
���5�
�B8Ds'��o:v��i��D#����@t�E�M�eNю
���Oӑ�:����i�ի���ⷐl�OjS�'V3U+p4I+\~<jQ)�Ƀ�	!��2�Ug�Þ�;�9�Z��Vض�O�=(�a�uWڧ��^lg������B�4��Q�AC�Y�"�Z�Q�K}��	
��\�n׭��M'��*�:�
3Z	T%��l�� ��]�	��r8���ڤJ���'|5���s7��UNO�{��oØ͌:C�����]�y$|��-�6YB�[�7��qä'$�xcI�!=!�5���1����F~#�!�)���9(�cn��R�D�S�I{��<��ŗ��_�n�p�$'#��y&�ژ�|b�t��;��p�n�E!��)��g�{$�~�]��>�+��D�]�r�C����$�/��y�����޴h�$���?t�x�K������]���m�W~�ҍ�xW���⏩㇟)ݼ8'֓��S���6s�S������+�8Q�QC�)iӭ�{�0j�߉<DyiIEND�B`�admin/images/icons/help.jpeg0000644000352000025440000000140311560453636016501 0ustar  thediannthediann���JFIF��C		

	


 "" $(4,$&1'-=-157:::#+?D?8C49:7��C




7%%77777777777777777777777777777777777777777777777777��  "����0!1Aa$BR�23��"#Q�����#!1QqAa����?��;��ڡ�c�f�,O�L�2A6��f	>m��Px��
i\�����">��]S�,Y��B�Z���_u� Z�*�A�۟��=���ܤg[����-�%f�b�)H�+g�e�T�#o��(yS3?2Y�\�m�m�����O�7ռ�W�r�	�U5�u�O�;�v�j+WF��/G5��qtQ^���pϜfc��;��LB�UM�B��(+����u�ꄝ�a6L��fhE(�}�'�ay�M9�bǛr̉�Fڔ�nɰ�6�rC�_|K��W›����Y�:��8�*���C�N+���K��s?gx�ₚ�Mfs4��_X9,TY!���¡*l�����V:tר��٭]�k���玫j*��W�7g�&)'�&�"^;FE��O(ey���ٶ囁�m��\f�����Km��o�cq�I
�f���admin/images/icons/edit.png0000644000352000025440000000070311560453636016337 0ustar  thediannthediann�PNG


IHDR(-SgAMA��7��tEXtSoftwareAdobe ImageReadyq�e<xPLTEjj����t	�|��u]���2����V^>.��;)�����2��P)�`;�9%�)��4	�%�v	���~jkPӅў���Y����~~��������ⱎ�(tRNS�����������������������������������������.�IDATx�bPGĀ�UW d^)a	u�B��a ��2��;@��U�9dY���WUS�SW 8�QM
� 4�:@�`|u��L�p�:@A��|u��L���\0�$��-�w@1�3������!Ԯ�IEND�B`�admin/images/icons/keys.gif0000644000352000025440000000237111560453650016345 0ustar  thediannthediannGIF89a  ���������y��������q{{z���������������L������n��7��}�t��"����*��}т��Y��1��?sss������Q����ݡ@��i�畨m����=��P��P˕@�
ь��!��Ӽ���ϣq��ş�I��$����ޙf�yf��:����ٽ��̙3��c�A�0��r�K���ӯp��`��@�ǀ���ܢ<��)��_���Ϲ��+Ƴo�%�~\��W�������,�^ԓ$�ڕ���{:�������Я�s��̲�٦�͏fff‡ ~wjͪD��r������r$�߰��_л��҆�g'�����挌���������f��̙��!�,  ��{���}yywyaLV

B$h"���}wz?vxn6  e_=$,K/\���zz(�8%�^"H;;&0gJ.8��z	��@#b#9&|D.��xi�xZ="9H#���$�x�
E&9��S36�Ys�C� w:�e'�+#��G�O0�@��!2������H`	�ɇ�U���F6P��ǎ�<$�0�F�E��瀟��qg�BA��&@� A�p	�@�OS?0h��.����A��S�9
��!�o߳�a������T0��B�_�F-��y����ѭ�$���cO
24`��km8]ɒ�J[
2H���N�;	�����|��A`˅_X2(kS<*ة����č
\<x0a� ?�8��N,&��$Oy8�B
x���5X�["~��vlU��0D
 `0Ac�@(��?�!�}$pP�A	!l.�!v$��r�D���4��
��D��O�`�("do��u��|�.�&f��	z(�Gpz��XP�Cܐ�E]<~�G�z��\}�0�|,`�$J\��bg�dG'\�@4*xP�]�����(`����!w�!�
D �X��A���#!y �@�����2@�@	6�1�+���	 W
�)��h�OQ�<AH�D��T��	B�,p&�!$`��Aj�*Ȯy��'V
|8�B�������l�2ã||0�j��+�B��	�L�
���
-1�uM.�v"��
�
o�,ȳpj��%2��B�`I ;admin/images/icons/sponsor.jpg0000644000352000025440000000066211560453666017120 0ustar  thediannthediann���JFIFHH��C


		
%# , #&')*)-0-(0%()(��C



(((((((((((((((((((((((((((((((((((((((((((((((((((��"����!!Qaq�����!!13Qa���?�n.�/�Q���Lx�nc)-�tX�o���\Xq�V���ʓ]� ƍ%Hm��}��yj��E/4�%1>HsA�:
�%�އG��sM����!��>Fv����q���4idvy�Vd|��`*��admin/images/icons/photo.jpg0000644000352000025440000000754611560453650016547 0ustar  thediannthediann���JFIFdd��Ducky(��XICC_PROFILEHLinomntrRGB XYZ �	1acspMSFTIEC sRGB���-HP  cprtP3desc�lwtpt�bkptrXYZgXYZ,bXYZ@dmndTpdmdd��vuedL�view�$lumi�meas$tech0rTRC<gTRC<bTRC<textCopyright (c) 1998 Hewlett-Packard CompanydescsRGB IEC61966-2.1sRGB IEC61966-2.1XYZ �Q�XYZ XYZ o�8��XYZ b����XYZ $����descIEC http://www.iec.chIEC http://www.iec.chdesc.IEC 61966-2.1 Default RGB colour space - sRGB.IEC 61966-2.1 Default RGB colour space - sRGBdesc,Reference Viewing Condition in IEC61966-2.1,Reference Viewing Condition in IEC61966-2.1view��_.���\�XYZ L	VPW�meas�sig CRT curv
#(-27;@EJOTY^chmrw|�������������������������
%+28>ELRY`gnu|����������������&/8AKT]gqz������������!-8COZfr~���������� -;HUcq~���������
+:IXgw��������'7HYj{�������+=Oat�������2FZn�������		%	:	O	d	y	�	�	�	�	�	�

'
=
T
j
�
�
�
�
�
�"9Qi������*C\u�����


&
@
Z
t
�
�
�
�
�.Id����	%A^z����	&Ca~����1Om����&Ed����#Cc����'Ij����4Vx���&Il����Ae����@e���� Ek���*Qw���;c���*R{���Gp���@j���>i���  A l � � �!!H!u!�!�!�"'"U"�"�"�#
#8#f#�#�#�$$M$|$�$�%	%8%h%�%�%�&'&W&�&�&�''I'z'�'�(
(?(q(�(�))8)k)�)�**5*h*�*�++6+i+�+�,,9,n,�,�--A-v-�-�..L.�.�.�/$/Z/�/�/�050l0�0�11J1�1�1�2*2c2�2�3
3F33�3�4+4e4�4�55M5�5�5�676r6�6�7$7`7�7�88P8�8�99B99�9�:6:t:�:�;-;k;�;�<'<e<�<�="=a=�=�> >`>�>�?!?a?�?�@#@d@�@�A)AjA�A�B0BrB�B�C:C}C�DDGD�D�EEUE�E�F"FgF�F�G5G{G�HHKH�H�IIcI�I�J7J}J�KKSK�K�L*LrL�MMJM�M�N%NnN�OOIO�O�P'PqP�QQPQ�Q�R1R|R�SS_S�S�TBT�T�U(UuU�VV\V�V�WDW�W�X/X}X�YYiY�ZZVZ�Z�[E[�[�\5\�\�]']x]�^^l^�__a_�``W`�`�aOa�a�bIb�b�cCc�c�d@d�d�e=e�e�f=f�f�g=g�g�h?h�h�iCi�i�jHj�j�kOk�k�lWl�mm`m�nnkn�ooxo�p+p�p�q:q�q�rKr�ss]s�ttpt�u(u�u�v>v�v�wVw�xxnx�y*y�y�zFz�{{c{�|!|�|�}A}�~~b~�#��G���
�k�͂0����W�������G����r�ׇ;����i�Ή3�����d�ʋ0�����c�ʍ1�����f�Ώ6����n�֑?����z��M��� ����_�ɖ4���
�u��L���$�����h�՛B��������d�Ҟ@��������i�ءG���&����v��V�ǥ8��������n��R�ĩ7�������u��\�ЭD���-�������u��`�ֲK�³8���%�������y��h��Y�ѹJ�º;���.���!������
�����z���p��g���_���X���Q���K���F���Aǿ�=ȼ�:ɹ�8ʷ�6˶�5̵�5͵�6ζ�7ϸ�9к�<Ѿ�?��D���I���N���U���\���d���l���v�ۀ�܊�ݖ�ޢ�)߯�6��D���S���c���s���
����2��F���[���p�����(��@���X���r�����4��P��m��������8��W��w����)���K��m����Adobed����			
$$''$$53335;;;;;;;;;;


%% ## ((%%((22022;;;;;;;;;;��$#"��{!1A"Q2aq�b#3���BR$!AQaq"���?��p��u?���n;�H�"S��)V�T��p�f��;�D���p��7r��3)�Y�U�V������w��0����2 ��@N�4�n����@�0
�x��{��[��V�=�C�)9ǚ@m�G���z��;.�I��ۓR��*zy9`���Y��m1�Zlt�Zk�9�t�U�O�cET(�y�ܖ�'F$��-rۼ�U���ݵ�l������$+�Վ\,�����C*mB�R��÷J��ZK �;�7@�~�SN��c��s���ɐ��j:Hi��em��J:����{��1�FC����iIPRJ
�|������[e������R��dGµP6b�l%��0�b$���m���1Y����l�]��U���uEC�f���y��|�7+C"z���t}�kkp��E�F_R�r���Rr���(����admin/images/icons/Thumbs.db0000644000352000025440000005600012460016476016453 0ustar  thediannthediann��ࡱ�>��	��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
���� 
#����!+����"$����%&'()*,������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Root Entry��������`	� k5�71�������������Catalog������������J2����:����JFIF``��C




��C		

��``"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?��Ϗ-�=�0�6�t�}B�ʵ�2�V��|��NL|K��p������C��@<i�+�)M��#�JFJ���$@H�zu��y�Y��q�_���fy�aR���+�I^֋j�����*x%(_D�U~��~!�cw�X��y������L?������?�����[Y���#��")fbNI'�>��/��~/_�h�ڇ����k�KC-�.
�Q�ǖc1��,A�)U���6sŵ?���8Ifn_V�{z�'��⶛�����?�Vl6�h��qܩ��01�2��9
����Bx�}�������u�������-����=N!��mn�����F����Ǯ
t7`A U9g�+�O<�p��x��}�Rz���5F5*R����$�����'�
4�K�����'�
4�K�E��$��d�x�S����o�+ӄ8�qRU�g��f�
�����7������I��M3��������I��M3����>���o�(�y�O�<G�?c������ϿŞo�
	������g�%�I�O�zO�%�8[I1e�I<���,���"���H$ ����	��?¸�Y��=�u��E��Й������IǦ㎦��+9�W����Q��r��Kt�\���T�!f�{�W$�'�"��Zռ�^��/;S��<e����3� ���[o�|d?�)����4�C|U��٤�Nq��z��G,cZ���S:�V)?�[z#��(_�k��9��f��x�ZK�8+�����kG�oWu�e#�'�����q�[u����P@����
]m�;S��ep�Te�C�#���|;�v|=�&��ߌa����ym�=�<f�m�q)���Ϯ
z��a�_����?I��j���YI�:���#�^6:��m��e�Y.~�m�5X(�r�N�IW�c����{Z��{7����G<I
�E��.��DI�|�&�.6�}���aA��8�����'�
�,�Q�� �ճ�j�+�>.AzҢ�Ņ���cF��S�J�'ڵ�kҧ�T5�m?#����T��X��o�S����/��jC�XO���j��z/��[���+����G>6�x�����Eu]�p�g�^����+��� �&���J�݅Ws����c�~2���_�Ck\G����$<�rC.�7	�a��������E��6��~.i_��Q	�4�����nϠ�z��6�����?%����p�_�W����n5�dM�$X����oz�_���u���ῇvj�����p��g�Gu��F$1c����,=.f�5/v�>��k�3��ꯎ��G�~ �W���Ci�\i�k��S�D.m��jH'VR���pFGZ�0<����F{Y*�G��T�˪�g���~�m~x��2Ja�o�k3g�&)��,���c��c=�Ԛv��4�+%T���*k�v��:��I'��'�_	��]񞍭k�Ci�m+B�:Jd.�O� �
�Ps������2�׷��Ryt�5�gt���c����Y��j��G6p�5�U=W��l-��!V+��7�!�#�e�0��+���<�>>������סכ�
��~�������q�0���TOG��?�&Cj�w�<Yv��!\�8͕��x�����ե�/�.!�m�;WTIc_k�A'���[Y<��(>���$�k�/�x<.�e�]���9
���r��Z���,>s��*��I�k�>�9�p�|=:�������4~�DfG�@��6<٣�'|r�g���-�7h�\%����
����1�cξL��Y񶺐Mwur��#*Opd�F>�����'��_-"G"������z�r1�`���M�z_�����5�7R���ؿ����I�tZԍ�K��Q�B��<q�{��U�{�g�C8�1�9�>��Α�Mc��0����YI+
Ӡ�#������
��>i���KyX���+Ԩ��>��t�Ѹ����O��8��+*U��M�~�7^�u|+
���Z	��S ��nǗ�q�f�?��v����B��o?�n��=J.�h�D��_[��}�+���Y��Q���k��P��w��R��}��ԟ�#��n+�cg��B��o?�n�~ܗg�e?�`��v?mO|���τZ֕��x��B�������WOk��2���KmF��<W�D��ϥt}^�/�#��I*ۆ�̡���7^��k��s��Ћs�N�fۄfK�ۜ�8�s������/��1���Æ�	��2O�6�_��N�
�����{���%V��&tM��ŮN�P���ھo����5(ݿ�m��:�V�2������O7�~,�8ߨ¿���|��ɴψ��!��[y�"��u��X���g���_�)På���(�<���w��v�M�-�̊:�_�W���}/q�a�L�J�7Q�…��s�z��+�k�;+=Vi4v��{I��u�|�A���̱rx�zX��.��C�^��u�/�k$�A*�$���ߕw����o�\�w-��;	vĝ�T>��#ں�}��XFs�tm���/�>i�?��)�e�ƙ#(Rs�$]x�ֽ¿��jN����g�e�W��#�u��{�k�4����7��Yvn�<��W�2M#ĺw���o���~dI"~�(NRD<1�pyW�5h��a}���Wu�G���ƺ��<_���^Wگ?����<��$�"�Pa#AŒ�'�M~s��?E��T���~j��?���o�����o��'����9��uMO�71}�����#YlN���p2x�����~����+v:�ćS��j������|2���|7�߆��|�?�Q�i�n���h�&�o��#H��E_��1���}���Lٞ�_�]���L���uu?���f���b����ղ�
�2_�6�M�����^zl���OM�dr~�d��n��+��������Ң{r�k��L��[�_���U��)kX���ℷ���Y.`�fbL���6�G��A�h~#�|u��V:�ť��7����	�l1FQ���6b'�Fs���7��U:���!��eg����<t��N-֧5�RMZ�I&�z��pgyd3jTeh��EY�ݞ1�:�_j���[Β_������Oq�?�}=ƛ\�n���+���5�R���<L�Z�`���>+��Ğ*�8�_����5���g�3���b3�-i����U���U�Sp������_^�O�-�$x��X��.�<�㟜W��3�c�>d�K���Y�܃�f{ݪ����^�y�~�	3)B�����$`�{�[�^"�eՄ���+��#&��>2�<�zX�!�[*�R���o�`�rT�+U�_n�O	��e/�H��N0-��*���!���^��|Y�k������.d���f�7�lg�C8�Z������?�?�K�/�P�(FP�t������T�T��N;�<���_�>4�z�_��oU���|%�/���%��e�{���xY�^Bk�T`�^�����Ҿ"��M�_����ş�%�����?�?�K������S�U����^������i9o��X?���DOQ|09��X��K�����|W�>z���g��u�|�-?T�W�D�}���=���8g�X�r�
�����޿��|$p��jE�ӜRJIݹE#���+:���i{�z�l����.��������.���<o���s�!�Z��?��3������Z�OikT	

�������� !"#$%&'����)*+,-./0123456789:;<=����?@ABCDEFGH����JKLMNOPQRS����UVWmYZ[\]^_`abcdefghijkl�����opqrstuvwxyz����|}~�
```ҭj^5�{A42CD7B6-E9B9-4D02-B7A6-288B71AD28BA}(BZ[�
�.���JFIF``��C




��C		

��"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�?�_u���.�����)��6Y���Cd�*N#��������C�?��<w;iJ�+�-��6>Fv�RGl���|�g�rk�sk��F�rn	Ws2���$W#��.��_
���^j��\��0�@p:(��k�8j���I^/��]����=��fx��B�\kA��$}��ۯ��忑��w���JFIF``��C
3�������������4����U5����
����(P6������������>�



��C		

��		"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�S��(��I���JFIF``��C




��C		

��"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�G�5�=M���qok܂NI(%��P	$�$
�g���>6������,n���.���s�̚�'�"a��2�=�!̌�D�����>Ѵ��� Ѵ�s{u���F����R���-{��i "���o��
43[۱�ԮH{�JEė.3�2v���L�d�Y���qi�{8Ԝ'	�쬤���t��T�鿡���UVP��Z��?��D���JFIF``��C




��C		

��  "��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?������o_�?H��,Ze���5�e�E�<��n%��o����CŸ#��:4P�vr����nۻ4�e���7Oq��|��Ͻ�>�y+�f��cݗ�E���7�����Mv��:xjh���m6����6��Ile���+�S
N�#�>d�~�m-,�}�I����PU�䝥[����q������CE�7r���%ġH��H��w�E-��]���\�km����y��g%˗�
�c.r\m��a��F<�Ğ'��d��O3N���µ�s}�D�9Ĭ��aS�<�3]'�M�,��z��/a���=����B��R��}�¿=�ի��0�,��s�$�x�i��j�|Ϫt���j�1.��+n�i�6�؛�_�+=F��̚n��L��Zǻʻ���ABc�[�d�|���ڂ��T����Y�ib�Pm�R(�pE��,#�_N��籽�U����O�yf�̎��xāFK��'�ᯟ����;+y�뺼�iom�-�c�&λ���k���?>M�������4q�w�t�u;Y�CM�YY�I-�N{~�������Z�_^���Uկ�#�$2JT�|��V�w.�9�0h��G��>�j�M�����Pe`���\��'���W��k�׈��%��B��_6����Ы�@-�18R
ȯ�k�18>"t�n\��}b��[�t�l�8�u��j�G�qv��4�������JFIF``��C




��C		

��		"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�����<�<�_gg������|*�:��t��I�Y��O�{��Q-ߕ��u2�<f +�(�$��w���JFIF``��C




��C		

��		"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���7	����I�8������������X9����n*01��������{8w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�S��(��delete.gif0o�\�
�down_arrow.gif$o�\�
�edit.png$P�b�
�keys.gif$^�i�
�plus.gif,�;m�
�up_arrow.gif&P�b�
�photo.jp�N��5�P��ݛF�${8�>T^2:W�_��k��^�[Xx�G�xf��Z\��8`�I��#�
~�Zx�Ŗ�V��7��F#�51�gmxGƿ�cL�ۯo��W�UF�B�Z�8em��7�����_Ӽ9Ɣ��t��UcʒV�U�����x��Uf����|"��3�g_�iÛ�4�j��\g\�2�ks%�����Lw8�/�̚��u��)���d��Ҽ�)�A�!#@ϖ��;W��߳��]3l:w���k,xd�4i���
�c�����;���Q��5�트iu
>�u`T��������S�4�{�ѯwZik)�߽����0~�"����͎�'�g��\��M��=����Ye�a,��\�lw��d$|S��8���t��K�ܰ��t�h����y
��v�9<�}k/D�<C�x�K�/��kK;����n`�pxe�"�݉l� +s��Gfu3�^�ӛP��:�˙6۔R��\8:����JFIF``��C




��C		

��$#"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�Q5N{��ʋ'D�z�/��t/�z
ƭ�j#OӢ�[O�Y�e����|����:��-.�V��c�V����r�|��zSٿث�֨����w2�W�Ø���_�5���n"��Pԁ�%x��F��j摫Ҿx����4�j�6��D�%��~+�����~�/�4���xw�>!��&��_��m-$u��,�l�����]���[��I�K��G�<Gu�#M}��?ͻ1�7��c��Ϳ/����R���Bw����Yʥj�jW�X�"�(��O���Ohz��5����~��G��o>�S-s�
�xo��
�ˣ�k��p��jW��/�Xo�l�vɝ�k�|M�h�S��6⼉t7�xf�/^�G�M��}����[�o�.��C�g�|K��t]3��!�5]~H�4�,�`�o���yG��;|���x���;�?�o���t[-V��q]}�Q����I�wh�t�f�j�M3�E���y�\�U������V���Wz�e������;&�a�é_A�N�.�k�-���f���'���k���mVUj��S�^�4�;/#���V�b���2LpƱ����`e��sɢ��.V\�Q�v�Q��f(?E:X�+�������;~��[T	�b�(�QE��g*	��j�
�sponsor.jpg&
o�\�
����JFIF``��C




��C		

��"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?���?�%�Qo
�׷�n�ot�L�dl�mV��6ߛn�
K�_k�>)G���CT�����2Ɇl+��j����3��_u=E-e��u�o*xWp���FW����7��k����Ž��Ҵ@��<�3�Yc��O����8O�r�e����?"Y~a���/o�|������,���JFIF``��C




��C		

��  "��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdef*BZ[�
�add-Pro.png 
�;m�
�up.;���JFIF``��C




��C		

��"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?���G�{���C��s��D�_��[��i}����A�>�5��>+�Ѭ��_�]Kmg�lR�ec�L��p��H�����u4�?�+wؐ��r���К������Z��S�G�۶�|һ�ȉ���~��/�����_�����.X����⽵[H�Ҽo��	��ed�.�!���'��[�?�m�6����x��>���^3��\���Ƕ�o�=���k�?�Zk/�>�|cu�Ą�.e0�o���~�d���^i��E�?	�����8�i���?��:�</��߮\~UK6�����r�7�e?{�^gn����6�,�B���V�᥉����^��{�
��I����^k�4k����K�h�x�UG�{}6k��I���Ώ�g��W��	�>�*֠�π�-��kk٧����=Z�x��|+��xW�^&����3��hw�xl%��Wt��o4?>ϝ����l��?<,��7�/�ݏ���"���9��<G��<_w���ړ�iql�h�;�ΞN��D���
�τon���hs�|N�
�6����j��g�c���	�_��M�h6�.���;�^e��T�6�?�q4�?�?_y������O����6מ8���%����zh����������	N�7�������,�>s��11����������21��������������31
�����G����������������JFIF``��C




��C		

��`"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�0�����l�Uk�t�Id��U�“�J?��k�־#����iZ����ړZ�>��_���H��o(�;��q�'��Am{�A�����4�df��y�RFB�)�����j����=��Fּ/$~~�C�-��k7���2>�F�$�t��<'�7þ5�5M'K������).�ol.,�$��M�c�WC��o��� 7~W�c���OA��g���v�Q���#�GluX"e��	vx��H#qT�885����qj>=�ҭ��`ԭ!���d���T�h�%���z�{yw���3��†G*��P2N$���I�Ibu�7P��r���j�Op,�x��a��O*p���ν����7^����(�e��2�dKYf�Eͺ��B��(FA����w�W�����k*���r�7#a���axw�7�Ė�\��Vo2M#�ѺEI
 >b�nq��8�����it�Xt�*9���K}Y�&��v��� F�b@$px�R��O�V�Y��l4�V�R#I%Ȑ8����x�h����cP�!��v�Jj��[�qlI'A�,����Dž�o���J%����|�I&��w���bO�=��Ѐm����>�F[Vǚ�S��ݳ<����]���F�hod�������p��}M+P?�c�O��ZG<�w3��@$�"ِX�s��$�.�b��p��N�Vv%�C�p�<�G�?���"?	�i��YӼk�Iou&I���4�v�_�c2Y�y*��=I9,I�o�ȕ���赭��>�E��umGŞ#�^�Z|G\��EkD��[[«�ȡ�f0�<b��� �Y�SB�q,��"���u]ς1����
w:T��F�e�����p*�� ���`u��^��Z}LJ�D0�ZbĐ,6�<%c\mP�C����J(���kcusqE&���rwm������c�[k��w1K�\��(�h�>�9�����[4P
���1.��uҿ�y��-���VK�XBN��4iv8F(X���8�*����W���?�e�m���help.jpeg*o�\�
�example.png����JFIF``��C




��C		

��`"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?���S��־5�O��=Nh���5���.V9�|�3�7`H�A�;���v/4�Ė,I'��n�=�e��Oh^����V�;Tlp�������)R����#�3�:�'���-[9�+��	��{Z�����hv^ ��7�:��+a�I�%@�%RNFv�y�ֿ�)�_	xKF����-O�5�}6�U:��٬�d�)`��1���<W�i��]���#��v������Q^�H�Zv����
ׇƓw4�W�5�v�3lR�а�1^��Cx�Z%��������A�i�hv�E�JRy��;ؕ�6��zV�[o��7�����S?�ۚ��ߊ��m�^��C�՟��"iZV��U�h��eè�\j�#Ļ�,$�qom�� �Nk^�l�w��뫨��{�-�t�=4�[��1�@��]b3������v�pj~�J׳�<���8��R�����GǴW�W��>���wb�Qk-Cƺ����y
�0�Ў��sׯj�	�0|'�5t�u�z�TЮu��A��ƖZt�H�-�Y6�we���h<㎥+w���&)a*F��o�>}��b��sZ�)�?H��59��V�p���39h����9�U�'FA����t�#Ǻhz�ӥcʝʹd��E��ǜ��3��(�Ѳ�0 ��5��1�{Mi$B���g�~П	�
�]���bt��ᤴ��5��Ѻ���b�^gyq���qk<�����9VS�G"�U৚.�q�j�R���]F�.+��L���U_�_���]��/
�Z�k�������7V�IW3E���+��i#�8=�W��[�_\�qs���\B�dR�t�Ѿܤ���9��h�J��8n˺���kR������=̭!9<�z�MCu}s}q���Kq>�%r̀'�?
��,�]�6�"�m5V����!Ԙ�o#��S��ps����W���[mR��[�E��p��s����s�Y�Qʻ﹢�#բ�j���I�K���?����皅5k���/.��s[,�#c�W8&�QE�a]�o��CT���뛸mS˷�yY���~Q�+�����j����YD����w*�Vt��v�A�޼�V��z.�o�j�R���-F{�.[��D�(�� z^nc�xL4�Ak�gv
��׌$�?��w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�����׬�?��u�E�G�]BEӴ�4�.y�y���T��Ar��5���7�Ï����߈5�ۈ�#�O��=�bG��fu�<�E!-�K/̯���KT������������$�t����)۴#dW9�Z�S�F��kjw:SI�����__\iqAp���S
�n��rX�����8|�>q�5ʣ�Ӳ����o�����F2�%+�nչS�䕝��N��♴�Y/~�����V����R9�_��8�J*���<so���Ɛ&Q'�sY,��#>Q��_nv�<�g��+�j�	S��?�'�|��
?���g-�5��;O�Ek;{khDr\^�y�&H?�Q���aw���τZj�X��<M<WW_�Uk�� ���]�	
($�H���~˰��*�Z7j�]���v�GF?���F��n�[ms�h���4����gifadmin/images/icons/example.png0000644000352000025440000000350311560453636017046 0ustar  thediannthediann�PNG


IHDR0O�ք`PLTE���___���???������=27tRNS@��f�IDATh�͚�W�8��#[ʲ�U��P��t��@�e��dX�Ix,
��K�1��H���g��s �ϲ�Y���J���oYcqɖ5�
�(],�$��/Rr-�e�[<��q�$
�S��2�1JwV�V��M�P��N���ŒLfp���.�d2�S�^.��K��Tog�������P'�b�Ը���)�n�	�l�����`]�NO�u28�y�ʍ����"��M�:��<l����Y��N�Xc��q0��D	��^�~�L$�vn�֯o��2t0zhA8��;	���m�#��6}c]�+d(1H��x
��v}T�r%*Ⳣsy/;bz��}�FK�:0`$���t����lG&;�!r�a`p�kw��+��L�ӎ��6'X�Mu�X~wU�X=���?>w��?r�+�P�U{���z4;���ns�VD�U�+Vm�gC{�**`~�M��X|�u�W���u`p�kH|����:�6ة�,0�L�uQ����ۮS���C�#�e��ӫ���R^l(}i�Kq�Oڊ��o�~6�>k�I�Yю��&ؗ1�R䶝ǦT��K���,�N��;�3,��//�p�0��?1�������>��W�V�H�#�ۤeN+�06�����0*~{E#f��\�M��a�F�Lbe��Y�`m|Y`4-i��f����}���ٚ��V���a:<�|�R���;�]�M3�`FZ:쓈�}2R�x���?��g/c�Hև;Ï�%�L�km0=-�)x��=q'���	n��l^"
%ңo,Mr���6���hu�V�
�\>��}ճ1�jq��&��΀;V��3�bq��ALto�Q��ؽr+C�x������,�\f��څL���k%(�Ѡ�Um
mm��O�峥��i=܊PX�q���M;ң&�0�`�&�E�ll*;|�2Ŀ����*��V�p�#�1���m���I~��ų1�s��`�� ��]���k!�H�<ďxL�ll�@�d�l�<�+��[�z���_��q1�4U��I��xw����<�Oʢ�x6�ԁ�2"�10��*��\I~�10�fQ��I��󾽄�3Ѭ��t]?Qە����H���7��6\�WoZu������331��"(k
�q���,�Q�����t�JV���}��ſ�bb&��ee*�e�cW�40��Դ�5��Z�&}�`"��`���"̑�e8�,\uO��6��˱�LׯL��3����M����V���WwA�!�(��!uf��������^ف2��h����[[��ˁ.+`�8�b�둾|�$��[~�(�J�"��2�������c1x;����%��[]��_>���g�<1[Ә#2��"-"VF����V	J�C����i�t�}�ho��6V�PrO�"Q����w�n����F{��`����Y�Ko�4�'�j-�V���h�Kے�dV�i�P�*�Df���mm�'�(�`�*�O���C��\�Z�f�ou�+%�fW��55X�xo�Zkg'�ZkFBk��?�}��>�>?��`^`s5ZЏ���Nq.��`�9��ǎ'��ep�����iT{
�K���K�O��%n�8�N�ی`�fr�zM�=�pF�ƖM��s���)5VV�X�002�Ƃ�ʀA�ؑ�:`WpE�S���w���f�uu�:`}8Qj��n�b�D1��P�L��K����d��K����d�l�_�rG��׾IEND�B`�admin/images/icons/down_arrow.gif0000644000352000025440000000007011560453636017551 0ustar  thediannthediannGIF89a		�������!�,		�����z�P8Yl�;admin/images/icons/up.gif0000644000352000025440000000077411560453672016027 0ustar  thediannthediannGIF89a�?l������ث*���ӣ����5ܯ6����g��T�WW�����v�܁����l�Ғ�++��==߳=�����|���٣ߴ0��mm������DDΛ���…���������̆��ܳ���t�D�����؁��`��p������̙ϝ	���������!�?,���p(�^���(@��l[(KH�"-�?�$��$���9."����bC���GE#�P(|/_?	3)#0**-/�C	>�
		!��	������	7	��$&&=<8"��!$
&�"��!
�))<450�

�
/<?+���
(
<?<l`А�
*��@H�p�ȡ�	8l�!CȎ+��0'Y<�	rlX�2�xp1d&0@``���1�C�,:`�d�4�T�;admin/images/secure_login.gif0000644000352000025440000000235211560453570016735 0ustar  thediannthediannGIF89a�*�O��y�}�ꫪ�������=��yww������333%""GDD���XUU��伻����fff����������������������������!�,�*@����*�Ȥr�l:�ШtJ�Z����z;�j�K.���z�n���q-��H� qf
^�
�	����_��]������������sj������ƂZ���E�������\!������������������� c������ Dg>�H��?�<$د�Çht���/V'C1
�x�%!�D=��A�.�u�@%�B
��BJ����Xv�d�Y*-�t�e'�[��"���իE,,�ʵ�ׯ`ÊK��ٳh�Z�r�۷p���&�x�����\E�|�@��a"�8p��#�����!0_�c�˙3?.��)��k&9S�h�
(�܆��:s�S'��0	�pe�����\&ͦ9�PJ���<�4'��K
���v��s�J�SW����:+T/=A��U��+��B|(�	+���$y^�׆�Ga>����!E,��o�H� \`ي,��b@.�(�4�h�8��<���6h�֐Di�H&��uӖ�PFi�\CHi�^�����"c�a)&?~1�hޥf��9�Ԕ�E�i�L�i'n��'T����aL5(a&*��`e��0\��l_���5�Ƃǽ�b�i�b*n}�1,R�Uӓ� g���F
�(��	�T�+��Ԍ��J��L�I�����D]��VRH�4�($��I�bg��Z����E����B�P�gL/5'�s�n�H]��&N=W�IT+nw��["�B��E�'��i��@(�l�\L�F��K{W�r<�"^��	":�!�B`���Dc4�j�F�!�}E��00[մ:m�ERO�Z����d��b�h󃢊8����p�-��t︍�����z���~��N��'���7>�Z�()��Wn�Y��k�砇.�褗n�騧�:h�W�.���n��Qd!D;admin/images/bg-pink.gif0000644000352000025440000000212612460001260015566 0ustar  thediannthediannGIF89a���������Y����������m�����i�����|�����x�����������������������e�����u��q����������J��������������L���O������������������T����R��P��������b��^��\��W����������`����!�,����pH,�Ȥr�4��ШtJ�Z�U�v��z�ఘ$+���:�n���|�~��~��x9�������������������8�������7����������>�����6���������6��������������������������������������������������������,H����d���Ç#J��P�1^����Ǐ C�Id��'=�<ɲe��
^ʜI��͛8mbH�s'��=1J��ѣH�B���iS�L!H�J��իX�V��+׮`�VK��ٳhӚP��[�m��K��ݻx��0�/߾���
<���È+^�X�ǐ!?~,���˘3kޜ9�ϠA����ӨS�^�@װa�~
���۸s�ޭ�߾|���ȓ+_μ�r�K�=���سk�ν����>|���ӫ_Ͼ��
�˗?�������Ͽ��(����&��6蠂a�V8�f��v��=�(�$�hb
(���,���* �4�h�8��Î<���@� �Di�H&I$L6��PF)%�0Ti�Xf��\^�×`��d�i�h��fl���p�Yœt�i�x�y�
|��矀� �j衈��袌6�裐F*i
Tj饘f�馜^Jç��*
��j����ꪬ��*(�
k����­�Ɗ뮼�p¯�+��k�'���2k�	�>+��Vk�^�,��n���+��;¹覛sn�����+��~`�����,�<0'���7���Gq;��g���k��� �,��$�l��(����?����0�,��4�l��8���<����@-��3;admin/images/youtube.gif0000644000352000025440000056547714033162526015775 0ustar  thediannthediann	 �r��� (s`` ���{HH �TO@@ (B�d00 �%��   ��� �	O� h���PNG


IHDR\r�f	pHYs���o�d IDATx��}y�\U��VUz�J��J�D!HP��J�@���(�����*3:�<���@ߌc�FGTWFYĐ���!$��!I�����}t�ʯ~���ι�����s�U����o;�޺�Q�Q�Q�7D�5T*�Y�p$��f�0���(B�$����%p�y_�]�ǹ~�8���S\�\&�wM����w~���pp��g	���ċ�W�|H6%�[EQw�$���<��2��f�pP�J�2�YNp2��@��&�C���sp�m�D��,!rh�,Dz��d�恃o�4Ƕ�xi��sB��4_�
�}��d2�ax����_E�eI����C���3j���>�a�*�P�Lã��o\���;o9�Uap�9�0�*-�B�d����p�o���5	�J%�p�5�i�z:.�1,\�CK8|��_�!伖�}ˁ4�u��V�*
K�~�Ϣ�PBe����$In�L&S�
�`xU���7����>�	)�C��rΫeؖ\=MnK/V5ʇ�4ٛ���Ò%4@K���4ٸLi*Ɛ��w�fE�$�"�z��U�J��$I�EQM�oEU�9\�f���������}�4>}�[�m�
�%�|��J�C�£I>�l��i��r��N!�V1�<�>��@��@�P�Tޜ$�ף(:Ys>�ٝ1i&s�Ff9�D�ӐdO�I� ��4�����4ՋE��'�

h?�9T+��k�6 4V%IrU6�]��
dF
q�R��q�y�FQt2=��}j�@2p_����A�i��:���
0��ėeQ!�����t����vrhN��H�%9?\�����C�j�C�&՗&G��4���b�t2�g+�����##RT*����$�	\y�J�-}Y����������B�Z��f��j�r>ږLZ?���uH��#o�x49��‚�V������3��z/)�� ���E� ��C&C����$��&���s��pY�hWZ��P\�xʧ%��'�����
���,�d�͒34(结$�,���m2����Ϣ(�eEhi%m�M0/��w����2��%!7_�Hqh<�v��8���e�rh���i�2�]j�t�����Z����k
7��W�(s7!��_V*�?�*�ʗ�(�@����}��J�KB�<p#��O
<P���\����R���� 94�W�%�W�+�@ۭ�I�H��/h��R,<�y>��
���I�����Ĩ�q��8�
���v+�&ε�*A*�$C�*���B�C*X� �ˍ֗�y��$R@�G�^�|R%�[*�=HAIK*���?�*Ko�jB�Z��j}� �(���R�4${`0�8E��dM�,�AU%\i���h�X�XB����y���OV�Sˁ�s�aJ�%�5�h?����.�J<�q!S�J��@ç
�C�j��t<�~k6��a+���|�2z�4���8�h��J%u��2I�sh�I�@�.���J����3���~�L��'
�_)pP{LÛf�oC�3e`�9��^k"4`�K�r���(�>�NN��T*�µ�r�xkbҔd�6���+��x�X%<Z;���k2�t�Ѧs/��s�C��$Z������I��XcC�!M6�K~��jk�*����@�\>
���LgEP��7��9-HRZ<X}�@��M�����c�h��������q94<Z��O_?>��-x��n��n5;�V�I㏏�{{ǧ��y ��\.���N_���IY�*�w���G�c�����$<|����-�j�<����&�������~�i�i���$�-����
�4h�3��'��I��-��m7�f0�
�Qu��Y%1.
<+R<V�F��"pH%a7�A*�||i�i,0�!el�&e^��ӌ_���C�bM~_�h�|K����E�;O���V�8�t��9h����L&�u�<�*���?���tʤe �b�bC���J���Q�9�a9>�t��=���5��{!��$��ZhR��O)�DQdY�[V}
��� ez)@q���H�8/���oIW<��Y�4����>4�~zǩn
N��ry.�g�(ꐘ����i�PX�<t��[��li�HKk�tCpKmt~��q�j@�����G��Q��m��L7�%�h__Uȫ����$9f̘1�UEQ!��T*�$��?r�yԲe���BR��e#�:^㏏���<~��']��g��sQ�0nܸ`�(���F�	��P=D8��Ty�,�l4X��� �Y��H�6��'Z�i᥎��Wj� ��'���i.�{_Ș��)�˧%Ir�4���P�ה�iXc(-���8��?n���BT��\=���4�lذg.	۸=������Uχd+r�	
t�/�X:��Q~|4C�LH���Fj��թ}s�K|N��r���	��YrHwP�(��t�V��q�4F�L�6��Eq:F����&�y����c����r��{hՃ�4�Zz6|����Xɐ�aI�G��L��QS���sc��뎶�ɲEi�Ӧc�%m�?I��$3���u����7�J��$y�#&��-�=T�+X2$�l)�CR���UO�'�b�J|�(�#����SW�J�OV�ԇ�U5P���/93�o+9P��L�f]�~�����8��䘒=s�?թ4��y��[K����E��!��2�3.Ͱ$Дe)��#���j�鄓N�ĉ�ޣ������jp�2.�\�"��)S���Dٴ���OR��8>�е� ��n6���
�]���BŒ]�>ƪ��D���$���v�`����"�	�R�]�"�Vv�pJx}��q���4�����$I�A��1R���г�'��%�E��l���:��q͈C)w��1�o�.����J��.���/��d��5�X4��*�*��S"�P��%#������H�]�/)���Sz�!3���,_�{�i���`e*��d,Z֖�M�j�T3n�85�@�"Z�ၟ��7�9%�|A���c��K~$!h~��Aj(
��Ę�&����V��C��J���T*8n�"L��D��g���ݻU��4Y�Hަ�&���SE�k�J�kYصѽ��%���Z ���C�I�w@��lS��[�H��0i8�(UU|_��J�?�e�E��Z$�p8az{$?'��`�5���ኦL�J_|1��	�j�*թ(�|�?�X�w��=hjj';�9�݋TF9���Rç�-]i�}g��:�l���H�W��1�m�>�S�6�O6�eЗEP@�$�шD	�M
�����5��[�K�)n�/T�~�����
��x`y]�p���w�Go__�%��&���>K��0�0������[kx�/	�-�Y�X�Q!c8m_�`��Y�������2
����;2�̻4G���3`1/�Kc����HY��z�����}�QG�Moz�$�������A��$8�T�i�XJW['Z�*ސ�/U_�ݢ�]�AJX>�.%]HKV��a��L���'��d�����!�*�$Ih�D4$���K�H����J�?ʱ��/ڏ*���/��}�6�����\;�b`��w�'N�k��$j��JY�,�`�қ��$��OˀRNO�G$�|AT�O�IՊ�g)8K�)�?F��bI~m	p�Ĥ$$P�y��J�t8M���I��I��i�$8����w�5�}�}x�駃p���S버���4֧+�2)�aeJ˞���ͭ�O�'ޗ⑂��.ej�\6�:�lM�-��scɜ�.�������(��49p#�y?ڟ/k��ȕ �2|�)I�9�P,zǢ�e��Uu:��~�!��r�s�;W
��|h�Ūh�\/Z��>������Ъ
-�P�$=h�J��ޗ��rH
|s���5]H��>a�޽uL���˗g���B�k�
$�� EP�]���84��x���s�6W�^�|>_��oժUAx�̝��?��%=i�Uҽ��9X�L
��cK��u�s��s������~���Zp���Sz4^}J3��.|���f]X�hт(�Z,��� �4)ZE��JQ[kM�UrI����_p��,|�[(\��&f�B��:�k�����5V�m9�EG4C͘V�'��+��h��̴jâ�����z��*��~-�w�N�.<��GiBj�!��L'�:��]���S^�����멜.���$I0y�d�p�	H�j��p�pv�؁�k_�q�ҳ��r9];�G�U:OqP�-�ph;���5��8�E�$y%��495|��p�P�)ώ�'�N9p^�+\��K��z����G=��Q^|����;���*?�g�	��	���JW����7���[����Q{����8i����88�R��:����Z��˴|.��&ђdⴸ}h���q��޴%�N^�*4�#�?��$�$%��G}�_~�fp�{Nj�bf��ө@�/%&M#	�R�#�������r��s�;���:
�>�]]]�:uj
��������S�S
�R)'9��۷oǪ�+��3�`�M55�8i?�p,Z������\#7�:ڏ����=���S)!�EDҩS����I]F�b��݈!�� @���&���]�	�թ\TO�s�L�/ٙ�[H������s�,X0�T*e��\M���[����;%�h�6���Hʴ����i��6a/k�`�$AGG�s�b��_��Ã�V�}^X3��Տ ��9k�a$��9�I�`����nÃ����ֆ?��}����ܹs���-�:�ϗo���܁�N:	�l�q�]��/?��s�-���_\ǟ��rF
�~�8'����G�]�O��V���~�	't�r�-Y�P���8���I��O��r�����x%���r�Kʦ��7�p:<p�{޹u<J@��(†
�y�f���f��xq�V���Յ}��K/v~���ÿ}�{8��3��g���*�\���:	\�E��+��P;����R�O�1����d�Rґ�[\sP�o��p]p�:m�>^��
�R��:::�ZkB��*Q�`�0�P%Y<r��1I�ଳ�F[[+z{��>�|y��U+W�	'����V�q,��8^Z�����ܹӋW�|>��������+_�
Z���LSz�^���V�� W�*U���b3�ɪ �gm�,��������};v��J�R��5�����l�R�P�Ҥ*���EQ�y=�glMAZu����7hmm�Yg/��߹s'�>�|���
�s��8Qᥗ^��S��7��U��&��e|<����i�]��τ�h��y5i����[�%[��$������w./�+�"T*�̲e�j*~0[�T�4�����)��R[�!�F��d`\A\�քs�d`��[>X�K���/6u�$	z��Ǖ�_���]A8C��Z�_���tG�]�K�?>/bu�r)+s��*Hɶ5{�l���4V�0�**����}��rg@w�qG 3��
���]Su�)�ÒcSܹ�w~ݓ^��~�I�9=���ŋ��֎�{v�c�o�#I�y�Y�޽����c1���{��n�����r|��˰bŊ�ͪ g�TnU}#	�Ì�9�4��>���d#��9H�����7�ҳ,�iw�q ����`p#(�$I5�*-�ѱ��������Z���~�?k=F?S�kjj��g���c��P(`�ʕ޾p�ҳ�:a���?
�7T��_��

�ʠ|{
�x(m-�H6 ١���
hY�۷�][�r>5��t$�*)}�U�Ҡ�a'#��A�����)��a9���k#�OS.Ur�8���yK�|!��zh���3�8���).�7��
��rX�<�/�ͤ��5�����N����`>�Ax8h:���xP�6!��8�2������i#���S���q�6dGF���y$EX
��Y���Ď�ߚiS$t8,N�x�G��fϚ��,���On�\���ryʔ�����7nĖm�������D�X$��~tgм���w%l	�b�Ck��]G�Z��O��p��Y�T�h��P�h;�خk�o$�Ŭ�lRАJ7	/�F?�R|�O�I����p�gx��n���^���?n�Q�駟��={�������=�|����k�ԩ��s�ŧ��
��˗�F\W�t|���p+���.3�sRE�X(9��p8XAC�'$8.M���`E(njV2�1��7cp��N ��}Λl|K+s�q���8H�(���>H�~��q%I�Gy4ו����G�RA��#I|��`��Y^�7mž={��Y����V�4!T���e��Z� %i�-[�l_���w_�rc�i��v V�/J����j�Gs\.�VXQܷ$�8���);I,=g��O�����8q�VY�[2��֬	���]�8�Q.�k@�TB&��y�7�SO>Y�,9L�}��/{�L�k]J��6�ʋ~縩�I�"u-8�1ZФ���e��!�u�YSS�z���x�]R��|ͳ�$/�4�?OKKNz�IX�b�ɓ�Zz62�L��6����_7�(477c��P*����ro_t�lڴ�N�5s�l�qp=T��#�戂U�K�]��;�U���4^�- I<��e3
u��vN�:�)H����Rm�UnI�@�1�^z�x>
,Y����vvuyqM�>�ŗ$	:;;����u�.Cq�B3wb�y(p��9�nx��JK2���%^��]�~��)ᐖ(�%�/q��*�Y-JJ�r�	��%����?�st+2k����\�d�p*Xd3Y��t�('�E��vziM�1q�e��ɓ�x޺mkOOh�v��,o����(?�w��4\]��d�'Įi�<jY�/y�W·�q�������ZFϕ����f	_��FM�[�O<8H�H�й�b޼y��!�w����ֺ=I�B�~�`Ǡ�8��!��
]{F��#O9��}�L�L�%�S|R��d�hJ}8m���k��m
ī!m�倾�6�}�&Y�II�R�҈���/��Q<�Je�
H0�c�9爷(˼LW��RЏ�_çx�y&��+�L�e0�9^Eq>��5$�Hɑ'�*�J}-Y����G�/�|LI���l����C��T8ϔ>
W�t�5��iU*,^�D�;�<��:�	�Q�D�74{֡�؅|�
��AǍ���|��rl��4�ZV�_�@4�4�y�Ivī_�pF���8�8��!���]��Z�Lj�$8���D6!Vt��[�>3g�B�T#v�Ä8]�SH�)WDi˗�B�az�#�pެ�]�)�JJVR5�ٿ�v�Z��C�&�T
p�����ԏ�	�b4�Je�V�h���It8�����qq�-��8���q�qƙgV7�4=՜��$��㉢(���:
ă�y�Ha�E�k^$g�2�Tu�sZ��8$�Ӄ�<V`TgRE#��|D��
@z|6wB�Y�x^Bъ�ߧ��s���I�}Q��.�rZ.����C�?��9�\���q@gae����gt	���D�����၈��zz���|e3�����/�8�jϩ�?q�Ɔ<�]����e4C��J��,-es.�FK£�K��dt:z��ǧ*:�O�…k�YVE���;�((<{Wi��C�������9�2��+[J:��Z�e_�*AI	�V�h~����&�Y���]Sš��RT�|I8��J���q���l���l���RX�V]�^pQ�syS��@�mJ~4�x;ϊZF��h�̲��:��v�r�Y�Z��ۤ-�V�$f�(')Jz�.)2�v_F�<h�R�I笊��ɝl�رx�oF�o�9�Ʃe(n����㪩�B�:>PE��1Y�)Y�D@�|s��kU����.-G��*F.�&�F �����pm>f���U!
���H�J�J�&M�vm�^ IDAT�`����1J<�j*ó�B�.S������~�q��R�������!�]��RK���f�Vu Ϳ�Є��81��j�����6���4RfMk��%��^�TSbW����Z#kna���Q�$���*�!1����W�E�/��`y���v��&�8�)�s�����|�J
�&N�Ey��<>��8|<q��~1�:�C�B7�	!�A���m��$��ܜI��Hx$۠��ĤٱvN�G��cC�
Ɇ%���06%��Z�r�S%[��	�B��(+����S�yiSЍ�6k� ��DS&�%B8��<��O\�k��Z��it$ZU��
_u I�:G�%e�k��!�~V��L�k/����E�����6���g��^�50hY���+a�D�q�Ο$	�J ?�7�8_��f�u|�	�y�^>N���c-4,[��p8��[e���5A9���X�Go�e�[pyE���6�	�rY�[���W!.kx���R�$U��L�������}e��f���7��6�W�H�C���h���	�҈[AD��G��jΣ��"�dT6��!.���`���{(�����*�����ΒcI�L?Kٳ��=	�d#-�5g�2��%�%y(.
�
 T	Z����)բ�/-��q�(.)�h�מ�4ۀ��H�k�L���T�=�t��$��埃��C���y;=�Z��zQ��J�y��<k�U9Zp�lV�߁���Vtј��1��+���|e�5F�E�'EfP�Jc�>ܔo�>p���_���K�D^��.�1�M�m~�N�_K>+pqzV0�d����� �V�k}(c!���Aj�"��Ěh-�S�i�,iBC�Z��V&� d
>ksO�'�O �ê(5��*�Jt��/I������*Ԓ���l���9W�"0M��*?g�g>g��]�Z��ժ��J%M����G#<���!���7mp�`UO)�0y����C��%�	�0�A�R�Ҽ�s<�X������c +�p�)1K��2)�E�H�ZQ]���d�2��j��ˮik�I-�0ܜ���_�7	�IJ���DȐVP�l6�Z��Z­%.)�hv�st��x�dt�P���9�&��8-{�x��jAɊ�!�F�������/��K��n���/a��+t~�����ihYه;dǯ��7AJl^f���˰I"�u(���)� �CC|��jӔ��$�$[}���I�C�D�Z�d�k0���1CY>Ȩ�V�HvJ�;������e]�]�>%����A��ʔ�^h����>��4�������	�Ʒ5�5��t%�5a��cǡ���ě�j�HO��!���������C���^?�~,�CX��sF��V9J�%���!�����%�?�w��I��ݎK�ZJ��H�j|��VPp�}����O�$��I�!�L��ݺuKM��y�� '2�:�궊?P^�ܑ�ށ���s#ek�^B�,��_ޟ~N��(?�7)�[��}̾�o���I���sF%�4g��W����<J�@%M�6�Z)Wm<$���v0g�/ޭ۶a���&��?�|��ΙS�GM�(��;ڶjժ`<V%(�#����4��qIW�JE�'+���6�o�DC�k��MRȺ��X����RԤ��p��R	j
Dό�͟�� �,_^7����7���<d4�Н�;�~p��x��%{��Cʲ-YI��=Y�B�[��]2��y_
̗�V;��>���kec)+[��#I����q:ޭKSnhF���1�	½lٲ9(��[�����f�8���j�:�Nj�^�?����W�^�Bo�cP��y����Jr��B� �6�[�V%jU��#����E%�9i�����J.H|��>��hO���d��\�d'�xb�+W��n������ꪫP(��1�ַ�
mmm5<Z�`��w�]�E��2n��V\}��(�W����(4���Y��39�N�W-r��ڭīU�XZH2U�X�9W u>m����	��Z��A�N�T~��V@��`&j(I�`޼y8l�\����^�s�
��{p��磽��6nķ��-�ܹ�;�.]Z��q��C&M
���{�G��
K�,�֭[q�w`���A|Ԁ��oZ��U�G��I���/�hk�m�
(��E��Ui���Jo�����j��⤗�ܹ�/�}2�ϒ,*�
>x���>D㡇�C=���e���?�c�r����`y�ӟ�'?�ij^(8Z��,�*�Ь��h	���[��������T|=8/K$����p�s[�7J�/>�b*��W:j� 	<M_�����G0nܸp:C8.��2̚5K�q��3f�(�ά�T�[����.Ѥ�%g�sJik��G�.%*��ۯ��!���y�@(��x-sK�m������ӉҌE�
R���t����;::�/|!�N���m��g?�r�\'3�#�8b��,�=��T:��nN<�ٰRr��V�h�+��*NK�m�>J��iH%E��L]sr+3J��W�H���
��U�~>4^8�J%\}�ո��RR����0{���c˭�lΜ9��!�����6�?���1!k}^��yՒHH����x��}�
C�t|�5P���N+�93\�DҢ�V�H��x�L�6�'�ȗ:�2B*�8�H��C�6$��J��r���o�}�@ ���K_�.��"�J�:Ǘ�Y�$8g��!�jooǷ��m\t�E�C�f�@��Ui�Z��?�6�ε%�Gj�T��kte	�W:�l��$�Oh�ᥨ�M.o���4�0	=����x,�hoo�/~�\z�e�4����_��Wq�5� �c��e�*���������9sp�=�ࢋ.B�'`\(H�چv�,յK۬$D�szZ�`�,�EQ��$�}�64g���B��|�3�����V�Kx,cH� @��#I
�j��׾��S���O<+W�ć?�aT*��ެ27I,Z�����}��c�=��;q#�ϧҡ�|��AT��[�)%')�i��;?��]�ˮ$��e@�7�I/���]�+�4^ԪZ���kx�v'�…������\R��&�꣹�W\q.��R|���C勵������ş�����O�����/��>�r����ۿš��n�;v쨣��҂�K��3���=�X@�\�:��i�p�)��
�A�W�Z��J2���&�ci�a�m��ۦO>������`ġ��o|#�}���_�kڴio�v0p!��=d�B�$:��>�H`���ֆl6����W]��L��L&���������O>�$6l؀�۷�P(�C��ɓq�G�裏F.w �J��݁R���g[[2���2V�^��k�b˖-8�Cp�G��OFGGG�XD�X��3fZZZ�:���(�JjiN�ҡe�R��S�?�&}}5��F�EEضmۓ���?��?��K.��(��}$���W��*����Nj�Ma���)K١����ᒜ�R����cƌ��1c��d0a��z�^�8F�X����cUe�o?Z[[���p��'��O��e
�QkRV[���۲��֗�ւ�ģ\F_��P�N$��?�2C�$u��J1m������4G�&@:O�P(��GH@���p�R	�R	�l�\��8qj�I2p5�m�iN���$��\.�(��WT�U�8�եV�����f�J�R�1�G�ǁ�4ܐ�A�ڼ�q>�<�KU�4FK�.����)aI)���L�<=�)͢�M���]S�3�^$Z�)=+#S�㸚�C��YrJ-x�E�J�:ܚ�y`�x���x�eg.�%��.͏4J�i	M�I�Qr|	�ӒY�h1I�R��C�1){s�&õKt���*�,���6�������[:�9��������9�99-)Ps�H��� �LuH�G۵��:�"o��2��|U�/(s|Z`t�H:V�R���q$��RF��)�4<>'�2�/�p�C�_6�p�v-c��>�҂�V	IF(�+�����
qMo��6�nzβE�$_Ӳ=�gUY*���H?�N@n��+���Ċ��99
���%%�R6Ъ�֔
HZu"�/M��4�ʾR`I�ڥ
�CqS�i��H��\+�hrsX�I�-�h�Gsl�r��|����i�!��픟WΣ�Thh1D�KU?/���I*)�ֲ��.���8$�/��UR���.8p��szң�_)(YَW��\���^���uDy�zp���]	�����h�iW�����0�*4*Ie���
�9#W�$�����$�$�J+	B�����VZ�p�����/�jв��5:��Ƌ��}�R���/�S>��ڲ?
����V	ZI�ҵ�5b��D���>�P��y��BЪ������%Z&��y�%��Q2d�p8�\~�?)�[YV��>k�CC҃���xn+�>4C�C�EMNm~��&�J�����ւ����M�����:�*_s
�?�z��5|O�(4C�<���\V�u��)���~��$+��䴬+
XY\�m�)�����KI�W
Rud��>�������4q��-C�eD�6�<��Ɓ�,9�5����!�󯝣�����RC�Ӫ�xB�8-��\�3
�n�ۏUh 9��������OХ�/��*.I�TW�Ŋ�t��Xi��K�	j�JY͇���3��V�>-�4�ь��#�o�4���r�Zn�`�iS{ў!��&�.��~%��6�8}~S�$�Ф��`^��‘Z*�,��9o��B,ɿK�4��qNF^f�
�ij�/�][�W2d__�R0�� �
��HA��o����Tr>�?���h;�K���z�㤹r`�HJ�ɰ$��OS�%�FK2l���/���r�PZ>^(+Ki��9k���֭����@v�$d;:�sD�[N�e+
��[�Le��rXM��jIJ+hHc�@b�V5�C�$@�d�V���؜II)��մ��#p�D[ߩ\�~�o�WP��7l�P@��k���e�n��)n�8�@�ۋҮ]��qM��M�T�
c�OG���MS�"��R�C�C�mo?p~���6
����f�@��!I4ϝ�$I�moG�C��G��%�����o����_�]���sV ��J�Y��K:��TZ�� o�^��q�/�$�h�-�3�$��,ōE�[��R.8l>�rO�{���(vuU�@�{7ʽ����(����m���
#�\�ɴ�c̤I��Y4͜	�M��Ls3r�'#�ގL{;r�&
�uv"�҂1S��U!�u!`�iYђ�v[3�CJH��;�o�+<��jO��w�t���D%
��ﻹ��K%�%[��=�݇�ի���(vu���tl(�`�*�lM3f �ގ��C�Gb�)�����'3q�	C�4�9��������C�Υ����@}3P�I���qK�>�{8^~�������_��+��F�uq\�P��{~�+��_F���/�S����#�f��[�+%��	�K�V�� ��)�b�2Eۤ��m���m}.ED=��
�;�����Q��C��]�6֜z*^��Px�eӶX{	��Ӿ.��5��ᤁH�/�dJu+0eZ����k�H4x�B�k
��==Xw�X{�%ؿfͰ�=z��:v��Wx��������.c%g�߭�ۺ�+��s�.�?�Է*��M@�am���1�EUIپ�)�"�"^��R��F�Qx�@R(`��?�}�V�eː��m_������q|O �–6
��ģoYm��	1ݴ��Ve`EI-�`��c͙g�:�(Þ{�Ś�KQܱ���@3��@?K	���U��G�Y����H�;"�Z�S�J��J.	�r���^��\�x�^]+�0
�Y�.��5���ӂ���/ϩ�k>�3������?YKo���$(����I����0_U��ݍ���bĽ����r�x}��z
�>�ap�?(�.}�9�~-畂��'���"f 1E�����x�2�����U%PpJY��O��y��gF!��{/�������}U0=��i��
��J��jYڏ�`��2�	�Kz�����M�>�����/~�g���Ʊ�����B��O<Yi��z)�K]
"|�˓��4���h�1.e���j�Y��~�+��_w�kn4���#�����P�հ�+��T���V�ӖZ@r .���ݍ�.Gпڞ�CA������`t�
;����{�Z_jw�}ɗ��*�DG��%��
�4�3��2-��JMX:^�|ݵ�[���Q$q����Je�U�����y�p����hX��$�����
�W�V�&��C��pG��{W�x�K������$��|B�|��0-hHKJGr|��Pw'��Bi��H<2�
Fi�s��A���w/_�zʣ0
������]����״[vJ}HK�ԿxE��
2�����V`. k��+}�8>�Ǐ�L���ޱ���1f�xo���~��<X�u�o��<���?����P�������-{�|��Ht5��+m�M	a�'$}H�/xh��^~�[v�5����{z�<ܕ���W���>��/���O�98����1����&`�>cS[��mei�B����)
�G�*�ƈ���m�I8���QK҆�UH��_~Y��A�fC�od�è^��٘���V;m�.�q_��Ԥ
D�ہ��v#�u�A��:�p5�(����6s8X�p������W���ob�!�;�U�ViHt)��,�%'�AD��$���ǡ)���e�Q�F@~��:��@͡y��Y:�RB�1�M@m���8�-r��ڞ�$	�6��2��W�gއq���h�6
�n�V ����|�w��qƏ�8�{۴��jk-jJo�����y��
w��G���/
R;m����|J:��Im��ƛ�8")zH��#	�>k�C���7n�:��&^��=�4�_��U����Y`�紏Th���d���pP�c�P��FZ�~�a���^�����z.�(���֭bb�l۵[mt���)H{dZ���.���4�� !��h�[����r��o�����u��� ����J�k�����2շg�i(m�[kiC��
	����1ڕ^�����l$%Ho���@��{-�ki���Π�����ww��kV�3[�	�&&�G�R�m��kA��!�*��ĺd��ۭ�|��:�\<q�mx�ۂ��|�����6��#�ފ_�BP��&z&�Ն�=�p(�dU�w 즠�tc�$��{��HZR�&mw�|�vk�PR^<$�@��)�r�#AgJ�#�nF�ѡ�եV��D(9}�ҁ~v����kx��V�	aZZ���\!���F���yVz���G+�p(���JjV�t絥�/Y�jX���L_�
�fߥ��y�!��
�6�,<qW���g��(���^�ld�͝������%<��)�6�y���1��:/���S)�h�ŝ;G$+��FɌo9-(�څ�9sj��'#%?�;m��V�c}K���S��ƄT9hʠ�
�.�+�4�-[LG��N�J{��}%���mI���q�~�U�;P�����?tg������9�{z^s�xcAIx(��hN��z��!<hU��rP��}e�vYBb�Wc��|lE(��@"��H�p���Dq>�=�=f����w ��2l<!�&��g��1���ǔ�N��#�Ę	P޿���a�]wa��J��ş2�͘��wc�{ލqG����h�<�����7oBϚ5��
��bEC�v���mh��%T)��\]�8}P
R�R�k�9�VR�a=u�0B{i mP����y�f��
�k�:�g�����s��'�Z9���x���k���	꺏;�hL������}���_
����S��k�Ŝ+�/�% IDATi=�=�瞇7�էQ���e˰���Pܽ{�<���������2�����ƃo��X�R܊���^��x|U���g�Wz��
�Sj�P��<n�,y�1����8-��8��?ƌ��oX���*���8ⓟ�Ҥ0f��˿�Y�?�9�]6,��Ϥ+Y�G���x�k�i��$�2_�`tT*g8s�yf>�P�$A~�w�>��H�?�L^���Z��G<.��aѲeh�3'��r9�/���}����Ø	��;�›n�mT�eӎ�=3Z�[���-�<��@M	|�@��㷘��Vq�{K�h���x1N���u���a��u��迹!P�p��~�^qyjz�1���؛nJ͇������O�=K�����3�A�)�Z�6�)x
�$75�Gw�6�]Vs~����>K�����P�$)����(\
��~�8��;es�3x̼�R4M������3.�h���k���~p��o�	y���S����\�=zH��g�U��1�������:#V��P?]�-��Y�����L.����w܂x�g>3,z,��4O��z\~�&u�w�Ie���FqHٞW���j	��6��IX
�t9��7,2�����L�?�m�1���x��cYqLx�ۃz����#�ˎ��v���O
m4qLk/�Z��3�ܬ>�F���X�t�k)1ƅ����ˁ��{C�O
�v�$~/��FVztoڌ�+W�oOw�q�=�+W4{6f�A0�������S(���ͽ�Cȶ�͙�RO�蜒m[���������п�6ŧ���s�]N�)"i�h��/
�p@@�����oDߑ���~�3��/�g�A@%��ɟ�$ξ�Ơ�3gz��v�A�*�2��F<|�͈�4�����E����t.]��w�D�M<!�g�Є�
$�ҙ�s����pV����s�h�r�$D��+�o�N�P&4$l��m$*�2~�g��o}S����\�C�܂��N�|�'�xZ:���cӖ,��o�ֿ�;E@!�{�^������f���˽8����T�����Uľe��C�je}/�=��T�HX��}4希�#�TQ<�]�Fv���$)��m�D﷿�C��Z}%:�Gxছ��A�Zf�Pyٛ$����8��mǖ[nA��;K�E8����>����<>��Q[���,����I����p�������|�R����6:h�c�Oֺ�Q�T�Oci�7
����:���-�����֧�
�/H�L���	�8����Ꝡ����˽x���ԏ��6�%�4�=�ہtη�n�)H��>wPF���<�7@�G�j�}��F��x^�n�`Y=ak��O>�+�ܬ�i;� �O?m�3��'~��es��P�ògڟš�@�J���v�]�
(����u����
� �K�վu#�=��W�O����mQ����gh����1�Qػv���=6�j�1#��g��2��/k�6߆]�$5��}�7��g��2��r��]+�����t���4�R(���&���vM��H��O�@0|<h�ЊAgL�zS�3����<�D~�gA�˥�Cˑ�����ry���m�ko(����1�UR;eԺ���8�A�@P��0Pv�n�0��P:V���*=�̜�:��$%%+�架�geoT(~��KA��1a1��8�b��IL�J�F�[�M�;�}~���'��6�z�`܌��Qea�Eٰ�S���ݵ` 9�tޢ#��E���Xp�*�/ۻK�x��һ�B�c� M>
n�cV	��ӈ݄D��S�8�{�\�h���oH���_���?�<J�J
ʔT�H��F����xhT���Bg��N����b�w�>��`�3	�j�7c(L��J�����Ւ�;����|�/�Z�N@�6�0N}>v�b{�nE���*n_���|�xB+��σI�DŽc���4?��!��d�Z��>�%<�*<m����Z�T��m.H����>i�������SB�!M0�
a�Ax—^v���ű�K_
!�=s��/�C����%����[�e�e@��3L�{I(�D�hi��-�I��y�����i�8�ۗ����a@�[�)
�F�p(jKU�������)x�,m<Hkpi
�U|O@b��|tm�}8�
�k¡�4��w��h�0Z����1��{k�xk���g��Wڥ}0��z�.�� n�M|e��r_�nU�|MU��A*#L�~t%��g��4�<A ��eW�v�UI��	���-]�*B����A�=
'��`RT���PR�
��4�A���F@�������uyC������ #�Y��U��q����n�U-P��^B���~�������#E@Mq#�RL�H]�OT��iX��rR+��`	�v[g�s�rp�V@���q���}"�DV�"1N�����o�Zk��f	0�A��M��4�O�@��|# %�(�C2��;j��Ӭ�r��ڬ%��0�8M��wRDSքI�D�W!|,�R�`̄	#x ��Z���q�'\֐s!���ñ��g�o�s!������&F�ny_~N�ߒpht,���&$P��J�?`��W�;F��H�~�V�W-3$a��!��D�Ax�:�0��������C�#��LO�N!��!>����,v�}�ڼ��XU����zp�]*a�g
�R!dSB�/-32cǎ�}����d3���w��4�|���H��+
��0&��	��I��廔�}���s�6���*���*|э*�W!U�DG
"�@������P<^�b�d$q�0h�˙9i#��Iή݁�CA�-�业��|����D)�D�:�i*�����?ސl�'��ۓ�,!#
�3g�6���&RNCsl��J�O�{耐
=+kSf��~ڧ\.�c��߸�c�0rw66s7���Ah�VM�,���(�5��,��H�yM	�Ua�&���b��<����N�ELN3$�
���
��6b ��;C�~̸q3n�WaϞ�L4O�&V�!�a��Z�*Nm�@C�1�v���d2⮨UFEQ��C�
`���f�N
�Ӹ>�_�7���?r���Zo�'���~�� ���&թ}ٜ����
!���0����6Nė�8�h:��ҍ����?���!+�WO�
�5��0\�vf�8��8PpO�*_�L�q��F��� x	���ہ�<���Ai�뗚Cy�s$�TB�C�|�C�7
O-o$��pe�ٸ�a�ttNo.ٶ6�v�}�-���[	���9-����CAi�D�z��ԟ�5tC�'�p�4i҈��愴��7��V`�	ʸ���p~t�e��O�JP/�+|!�B��U����uh�>�0|Kg
�CA����=g��K��V=pܔ��ر"��׺]�7Oh����7�O�go�(�5ϗ��۴�������)�
����־��ې������d�o8C<�i"�М^G����ע�~n�ˌ��$~�!7�d��g��_�~�N�•�ک��ۺ-G��#���>c���dCx�|�!��7��ϒ�KI14�g>Է�mJX<�Ѿ�T����&Ny.$���@E��Zf�4�s������a����q�2�i�
�+/��}6�p�1�J�`���a����>Z;;���˫��/�I���k�ԇW}=8/8�ZϗRI#��x(����:mZ5z7�@R+��HKc�x�,^�co�|���L�đ�6
��_�&���l���1�3�7N�����O߶�s�2}����kܶ�u>ǣ%T�(m������v`����_��aHLZBо��/�Li�4=�0�c�ϯ;��s�蟾
��c��{�1�����{�2Xg�W^Qyi���G�8rc��ȿү�w�_�Rܻ��/5m�4	����r�N���w�YɖW�t�XPP��p��;gM�q4wv�H�4�Dp䧯Ev��[��1�wx�m�QSSc��3��I�~'�,>��=�qcq�_�_vi��m[L^����� \���?��/���7O��c��f�y�{�p�\�2x�Z�\ܙ|~������} �k`>�
����}w@����
���u�(�8��>cz�nU�$@�& R���M�0��}�,Y��y�}h�2y�Z0_P1p �cނw,�ą�];�:{V*���l3ϷG��{/J�~䚛��f]|!f]|!��� ���z��_����3DZz�ۭg�ܦ��i$ۗp��Aj ����Oǻ���5|���w��}֬�W��#�\����?�Ԅ�ɇ���uG�d��ep�-ͱ���L~"M=����
R�i�^�{����jY��9��3t�Ƈt5@��q)(hٛ3�(Z��<�yvˇ	F�N���͛��kP�c$�2��,��pyI�O?��s��o�
\p>�~�3T�ϛnFbdtm�\�S_�Jv�%2�*=/��/!��qr��T|�HD9!��2xTv}��	_���#�Ѐ�*c�z�ae�\�\�I����p�Z��w�S�J�����?�F2�v��n=���_`������ٳE;���ۨ��e��ԏ���zo���9\	�`�`R~4�u�Ii$@�T�t�fl�w�K�4q�������J�������?������w�T��'?Cq׮ =͈"���_�ۿ2dzڱ�����K5o�6{v���+Ux�nU��L��.%BT8}N��PԪ��e�2I����a�jB�ã�֯u�� �J�ݷ/�0
w��څ__q%����Bh�$	�֭ÿ]�'ؿ�+5���Xw���:0�C��b�?~95=����cx�#W#��K=o�s��&1�\�}i�v._�x�tRW>��LhA��זV������^�(HW�+o�G{ó��իq�E��?^����B	��I̍"�׮ſ^�~l���y��%<v�_��}�C[�PO���p燯¾m[����r	O,[�G>�亻S�Y���ӧ��W�h��/�^����@�	���v�t��Zb�Zi���:������}����(®���㫮�97߄���o/uн~#��ƞ���A���U(�>>����Q���.���c�%�����S���mێ՟�<*=��-�Zh�"`˃a�Y�`�%��qW~���r��u���|}�֮E[
�^�~8��a�*��s��̷f��_F�hKx��j��1�9�qK ��i�P��Ԅ�3����l�,;�Lo��ف���0'���O�_��B���p�����3�2n,z�lŮu���܏}�?�)�J�)���#�U��J�-�Bd�S*�L7-�06����w���;�X��O8;c;��O7�7nĆ�+��S��!9��1�Fz�E<�����:�93�6L=z�'OF����57���]�߳{7n���Ɩ+1���}��0o^�=���~��Kޟ
�GZJh<r�@�Mt�����Z?�c���HRR�\Ƅ#�ľ�Y���۽�"��t(84��o�>l�ѝx�Gw"lo�`\����бQ�֝;�t�U��Q�J���7�����X�+���~}wUc0pG�xSX�2E��������g�<�;�'7H�@t���q�a�MJ����(n�_�rAk����T`B2�����M)�r��8Ƹ�Gr���8��T��vq�4�#zX<f���i�"���Pa���ټQ��Ν{�P�:��O�r��ԫ�YXZ�6)_>��ʐ���"d�Q'����#aE��h�9nFa�0y��xfwmd����-�O
.�<�n%k
�xï-JNk	%�PJՁ5���\�$I0c�� �Ga�mS�b{���h�6y; _���/ut��M�1sPb�����9�M�Ҽͷ4�x��C�L��i�|'�?�ho�0
Åy]T� ٲ�X��ֆ��d�p[���H;��l´o3D:�i��"���
l
�0𖫮B�P0��!���F��sV�oU�VU�V�:��$��H���6�p�i_	��G�N�r>]�b���.�m#���Qx�¬w�,�^䥽f��
��)^ޗ�S�x_��A5pᤍ:��G�u��l��J~���R��P����ۂG�7�q��=z{{�rZ��������6�R�>K�Ӡ�2TY���ξ�����oBZ�HAA�������cÔ����(\~9������W�����%��_��h{g���y�T*1�	۶m�Iל�"γ��@�6F�X��`DE7�e���o"��^��1z����3���_���!����y9NA�L&#ڸD�J�<�l߾}'��ۙ��X,��1eZ���%��8iݣ)�*�$A���`ʱ�⌯|E7
�Q.����0f�X1h�U)�vi	�m��
R�.�J1��|>X�j�N��vLH�����>ii-�������i�T���q�UW���k�EF���t�2�<�tww��&Oz�V���>X��jm[�r�N(�w2T@?$}}}��`	��,���M��h�sx���r�Q4po}�XĒ[o�q�����(��Kn�>��P(�mZk�GmX�����6�i�h��4�x�$��o'.��>�|>���ٳ��2�g��S�菁8^ޗ*F�A[&�	ؽ{7�L��%�ފ��f��C%��_F�MX������?
����u�ZvM�ڿ������|j>9�ەB�P%V�z~�?��s��5z����O*4�G���\�~���r���
�8�;>�)\��_c�=8d^�0y������?J�v�����C�n�~!�)Nʇ�l����s�=�@���W�S�$o}��������y��om#E-i}$��ʥ$I0f�r�!��r(�ߏ��x��_F��A��ƅ���x�>�\K��"v�څ8��R�Z�JkH�i���p�6/���ϟ?�O����hڴi1��K/��IPm��]���*���Ź�Ҟ/w$��r���;w"�ϣ������7l�)�7�p��̌�i�1��gq�ڵ8��kiA___�j���t�����ФvN�;7�ϗд�k{饗��8s�̚'��h����;���w�oy�[�w�X�}@~�	���p�dw~^R�T��ڵ���7n�&O�I�_����;�}�;�}{^z	����+(�����S�(��`�h��y�0���0���0�S��+�
����F��m5�2�����J8�8+��
������O�o!�A�	�b� ��3�'e�բ�V�X\Y!�p�*�Jͯ�߿������@{{;2����-�򖷈x���Q)��oӦ���
�^��o�fT��۷��ϣ�ݍBw�hi�ܷi��D��Mh�<��f�wv"��a���:�z(`�����r;k29��.�J}}}طo_��o9�ځTp�d2u{R��8�%��AH�bЧ�R�f'�F;�B!���w�����mkkk�p&�u��Z��ik+���
��*�
zzz��Ӄ��V������E�ki���s������͛Q)����Fa���
���7���|w7
����@` �l�\�w0�lK:؏����y��L�0з����qc?7�_��wLG�&O��$A�P@?�|��'�����N�	���JzޗӒ��|+I��}��k��xj��Y��7�����9��N�„:��P_9�	ʕ��iQ�����jٗ�f���|EQ�l6[��п9#�p�T��ક���$�lX�wIDATIR��]��λ��R����uy+sӱ�_霏���[�|�3��ϛ7/~���xj,���'��﮻�z��s�=AZ�Hg��LR��Y[�8��C�%-7\;WV�(��f�B�ઇl6[���9''ms8��'���Vf�NK/��6���C8�e-w�r��Re���i���'�G>��>Qᮻ�z�>�A?p��9sfǖ-[�nnn^��O�����K�|��҈�	�KAZ2��
�#=x�~�.��v�T&׏�၄��.��NzT<u`���f�Y��k�2/<�k�|bC��1n����Pe���ݻw�q�w]�Px|޼yk֭[W�Æ��X,��-
=?��Ї>�D��Zi-�Ht������gzN{d��	�jB+�|xi�FS�#UA�R��$|��/���S���8�5���d�T�ےK��>k�-�G�R%|��w�V��Y
4�����?Q(z0��uO����8qb	���e˖��rG��8�͑4A�CHx��9N�|�P�AC2mr��>C�+�-kh���8I�<��OZ��>Z�k�$��@���e�б_\V�yE2�Ԗh��qeٲe���oڴi���/T���{�޸qc�=���ݩ�ܑ8s\RV�4�x�0�DhJ�pY��2F�CHՋd�VF�x����+m�5_\7��Z��֪"λu�M�V�	�~.��x��:��N��g��y��I�m�I����{�ڸqc���ƍ�}����J.��WSSS?n��[�$I�
ЌYcR�ʄZJCS�I
�jA���H|h����4.D&i��
]�x�gI7��2rʧ��q�Sry,g��IA�'��&7��� ���R�Tn����������������V���5k�l��{���h�iJ�"���yɁ�l"�&�����dT�\R��s��v)0i<iٍ���x����%���
ڟ��lLʰ�)�YAT�eޗv�9-Z���P�s�=�<�f͚�v�3q�D�bزeK��ܼ�N=7�x�}q�5%HFm�<��-)�+Ѧ�8-+xIQ�7����4�ڬL�yт��ͻ���
μ�ď�Ė#k�4�y�n� &ɩͩd�R�����q��o��g[[��k�־�t�W���������_~eٲe+��+Ep�d�"����H�9�I(^Σ��2
!�ײ�O	�f�TO�&o��J�Ӳ*�O�/M����i%
��$�8�ģ4�WpǗ��4�}���	���v�wٲe+^~��W0���Ə/����N����$I�$��V����袋����h��hYȁv�ri�/;��f|Vp��C�q��x?�?��:�ҕ�i��W1hN��>>5}��Ky�d��F��S:RP��;^���>��b�������M���y�j������
��q�b����y��5bԥ�$�����,A��m��/H}��'���2^�P�/$��:�9_@
�m��Z����7/�H�Ct��l(�
�i|�q\��G?��u��m����'�������V�1c�$I�T*�J�	�6m*O�81�ַ�u.eF�h�����սF�]�ߙ�G��Is�-�{��R��
��T"���E0��_|��W}�VZGҫ���j�x5���錓��1&3���3}��}�k�}&�#�,��X{��������r�7�����0p��-��&c���$+G�y�鮓䜔��?����I/����p�hE��2n^m��-3�ͭ�^G�&[��r %k�I�d�.\�s���A�+xOS�T>�L��7Q2��hjj�W���ܻw�yWW����6��
=��F�9�Ώ�,��4�R��kC�h_��l���D�WNO��1�8�O�$+׎�[�IF��T'�=h?�Nl�a�Tl>�?z�h���������x���Z,
���'C���Y���Ey�u�N�8����Դ�Άp���@����C���\?6�_�Tf���m�J������t�x��2�''{X/�ini�o2f�~(hpz�2r� �m�P_{��|�2Q`�d��Ar�B�0u����\ם�:�O$�b�h}� �J��x`:�Ͽ>|��%�u]��q��9'7�ę�,A�uV���H�9��D˩��Ch[)b�����E6���R%g�d�khsNN��!e�W��ɁuNnM%��r	иv��G��]>�
u����U�V�g�u����^cc��ʃ��G��䓋’C��.���+���4���6�R#�E;ɠ���fܸ_��D�M��F-	�9�"!�O�H�ܜ�߶���l��A��MG�){�|%}��B�����4888���ZZZ^�E�ğN�Bw�F�4�t.������ܽ{�/�@2��L��6��?:���m��ޗ��h���S�B�t���?��&�8Y����恮�M'�,z	�9�3���I_In�
q�FǏ"��|�O�>�w�����2��x<>�8Ne~���~X���#�Hx���Cei��?.NLLLvuumv'F�Ny}��c��Q��㾹��o)��Z��nQ��<h=��̓-˜�u���G%�A$=�����֌�#�����9E�Q�����3g�����0u�����ƙR�d<�SM���<���|�w��%��*<|�0���o��[��(`�d҂д���(.E?[Ē�L��
�2ڟC���l��mCی[x����&ܱ�X�6�^Ҝ���s:H�4G�~��=�ooܸ���K~P����r9R�R���}ߏ��.�\.����ڳg�ϛ���4	��m�QJ�*A>\ƥe\;N�(�����ɠ8��4/&�$�X�$���=����1=OD���j
����Y
,�y����ӹx��E����7�<���ICC�$��-�Et��Xl�Z��C�@����d�ڵk��m۶f�ڵ_HO�I�P=zp�zekq��L<�T�j��9�9�����8�㜀�ēs@�Q�y��I���9~�����8�1ͱ�ָ��̺��������妱���?�<��"g�%���Z�zP/
3�F�R��]�r�q2�tw���h�M���K�>�A�Н�㌟��3`I7ɠ)I F���u�b`&��e\W.9$&�m����{����ʛ"/�'
@s�%P���R�ӏ}�ϝ;���'O��T*̓8��8c�|߯��(�
@�$��ݻwG����;;;״���H��М�s����q���T_�B���_�e	�>�qu�\;�x6ݢD[)շmSl�I�p�R���P9m h�Q�G�DM�IA�����G�;������B��{`��ǩ,����ND��O
�b���L&�}�Tz�}����D"n�O�A�m�GC�/�ɒ!K���-�آ��=H�@�5�6��-�����<m�i?��i<�L'[�g�*�i+���T*��g��ԩS7GGGg�P��K{~�ǩT���k�>P�@��$�@ �y^u```<�����5�e˖5�X,�8�9��R1��m_M�7�n�ar���Mƪ���R]*7g�\��M:~�-�
�:����͘��bT_:_��m)�q=�[���kOOO�Ν;y��|��Z0���b/���\P�,�-�)���`-�UP�X�n]soo�8�������m�V�%�q����mm�a3$0����er̨uQ�Ӑ�WR�t�xr�י�M�Hv�8��Zy���=����ٵ�8(�˕�W�������|��~*�����g�y�)���{��
��*�:l�5��RP79��֖�����;7lذ0ﳢ:����%%_�ض�M<�4Y��ZǕ�C��N^�ZD�1
8Q��������EcJ6����<��j��l6;��df2��_�z冬�R��QY�f���FB�
�|`=�5Z��G����}�޽��۷�!��OzI�_��ߦ�X2|���$}9��8;��5S�d�zr�����
6�u�d�u�$9l�q��f�n޼��֭[�|�w�≾iϱ���+���N�)}()�Q�K( �
@{P��ƍ�w�ܹa�֭_�ڵk}GGG{2�L��zT���4"�zJ�D8Ӹ�>R��D��T�G��Q���O��k5��2�Z����l�<�ڛ��u]w||�e����������,}7��P'�~>�A���ޥ҇�p�$Թ�/������A�ۭG�7onٴi��W�^�N��R���s:���kO)*D�%�7E_I[9'�єIѾ�к��I>�ܦk� `j_k���
�R�TJ�R�P(�)O�X`��,�-�P��I�����u�R�@��g��
@3Ԗ�'��A���S���33P�(�/`��#?г���J��PWV�6�sM.!BB(c��9QU����x��4�?�	>SPY�<>���)�ʁr���
h�����1�O@���!��N+�½|�=(����Gf��n���ღ��'�A9w
j+Ј�#PAI(0�!�ی�T��D~𙇊�㗠}6�]	�<|�h��J�,B*KHh�q���i�Q���|�	�C��$�^��ʼn���i�R�
��+���S�^����IEND�B`�(� 			2HXcjlllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllljcXH2	2Uny~��������������������������������������������������������������������������������������~ynU26ax��RRR�xxx����ҥ��ݧ��ߨ��ߨ��ߨ��ߨ��ߨ��ߧ��ߨ��ߨ��ߧ��ߧ��ߧ��ߧ��ߧ��ߨ��ߧ��ߧ��ߨ��ߨ��ߨ��ߨ��ߨ��ߧ��ߨ��ߧ��ߨ��ߧ��ߧ��ߨ��ߨ��ߧ��ߧ��ߨ��ߨ��ߧ��ߨ��ߧ��ߨ��ߧ��ߧ��ߧ��ߧ��ߧ��ߨ��ߧ��ߨ��ߧ��ߧ��ߧ��ߨ��ߨ��ߧ��ߨ��ߨ��ߨ��ߧ��ߧ��ߨ��ߧ��ߨ��ߨ��ߨ��ߧ��ߨ��ߧ��ߧ��ߨ��ߧ��ߨ��ߨ��ߧ��ߧ��ߨ��ߨ��ߧ��ߨ��ߧ��ߧ��ߨ��ߨ��ߧ��ߨ��ߥ��ݚ���xxx�RRR���xa6$Xx�ttt��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ttt��xX$
8m~(((���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������(((�~m8
Ev


���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������


�vE
Jy111���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������111�yJ
	DyQQQ�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������QQQ�yC	5ueee�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������eee�u5 jSSS�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������SSS�j T666�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������666�T						/|��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������|/



Z�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Z



)///�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������///�)L�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������L			(((z������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������(((z'��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������			''''$$$;�������������������������������������������������������������������������������������������������������������������������������������������������������������������������~~�pp��pp��pp��pp��pp��pp��pp��pp��pp��pp��pp��||���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������;555...///d���������������������������������������������������������������������������������������������������vv��gg��WW��II��::��++������������������������������������������������������������������������������������������,,��;;��JJ��XX��gg��ww������������������������������������������������������������������������������������������������������///d===


,,,eee�������������������������������������������������������������������������������������++��������������������������������������������������������������������������������������������������������������������������������((������������������������������������������������������������������������������������������eee�888222����������������������������������������������������������������������������������::����������������������������������������������������������������������������������������������������������������������������������������CC��������������������������������������������������������������������������������������;;;///''';;;
���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������%%�����������������������������������������������������������������������������������CCC
BBB555CCC����������������������������������������������������������������������������))������������������������������������������������������������������������������������������������������������������������������������������������::���������������������������������������������������������������������������������IIIUUU@@@GGG�������������������������������������������������������������������������pp�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������MMMbbbGGGJJJ�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PPPjjjIIIKKK����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������PPPmmmIIIKKK����������������������������������������������������������������������AA��������������������������������������������������������������������������������������������������������������������������������������������������������WW���������������������������������������������������������������������������PPPmmmIIIKKK������������������������������������������������������������������������������������������		�������������������������}�:;��YZ��FG����������

�������������������������

������|�33��WX��MN������������������������
|�;<��TU��WY��CD��������������������11���������������������������������������������������������������������������PPPmmmIIILLL�������������������������������������������������������������������������������������������������������������������������		������������������rs����������������������������������������������11�����������������UV����������������|�~�������������������������  �����������������������������������������������������������������������������������������QQQmmmIIILLL������������������������������������������������������������������������������������������������������������������������^_���������������������������������������������������������������GH�����������������������**��������������������������������������������33���������������������������������������������������������������������������������������QQQmmmIIILLL���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������QQQmmmIIILLL����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������YZ��������������������������������������z|�������������������������������������������������������������������������������������QQQnnnIIILLL�������������������������������������������������������������������qq�������������������������������������������������������������������56��		��no�������������������������������������������������yz����������������������������������������|~������������������������������������������������������������������������������������������������������������QQQnnnIIILLL�������������������������������������������������������������������ZZ�������������������������������������������������������������������������ab�����������������������������������������������������������������������������������������������������������������������oo������������������������������������������������������������������������QQQnnnIIILLL�������������������������������������������������������������������FF�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������YY������������������������������������������������������������������������QQQnnnIIILLL�������������������������������������������������������������������44����������������������������������������������������������������������������������������������������������������������������������������������,,���������������������������������������,-����������FF������������������������������������������������������������������������QQQnnnIIILLL�������������������������������������������������������������������""����������������������������������������������������������������������������������������������������������������������������������������������;;���������������������������������������--����������55������������������������������������������������������������������������QQQnnnJJJLLL�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������;<��������������������������������������������&&������������������������������������������������������������������������QQQnnnJJJLLL�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<<��������������������������������������������������������������������������������������������������������������������QQQnnnJJJLLL����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<=��������������������������������������������������������������������������������������������������������������������RRRnnnJJJLLL���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������==��������������������������������������������))����������������������������������������������������������������������������������RRRnnnJJJLLL���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������  ������==��������������������������������������������./����������������������������������������������������������������������������������RRRnnnJJJMMM���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������  ������=>��������������������������������������������//����������������������������������������������������������������������������������RRRoooJJJMMM�����������������������������������������������������������������������������������������������������������������������������������������������������������������������  ������>>����������������//����������������������������������������������������������������������������������RRRoooJJJMMM��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������  ������>?���������������������  ��  ��  ��  ���������������������/0����������������������������������������������������������������������������������RRRoooJJJMMM��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������!!������??������������������������������������������������00����������������������������������������������������������������������������������RRRoooJJJMMM��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������!!������11������������������������������������������������((����������������������������������������������������������������������������������RRRoooJJJMMM��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������%%����������������������������������������������������������������������������������������������������������������������������������RRRoooJJJMMM������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������RRRpppKKKMMM����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������}}��������������������������������������������������������������������������������������������������������������RRRpppKKKMMM������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ss���������������������������������������������dd�����������������������������������������������������������������������������������SSSpppKKKMMM�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������

����������������������������������������������������������������������������������������������������������������������������������SSSpppKKKMMM���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������aa�����������������������������22������������-.���������������������������������������&&��������������&&������������������������������������������������������������������������SSSpppKKKMMM�������������������������������������������������������������������""�����������������������������������������������������������������������������������������������������������������������������DD�������������������gg��������������������������������������������������������������66������������������������������������������������������������������������SSSpppKKKNNN�������������������������������������������������������������������33����������������������������������������������������������""��""��""��  ����������  ��""��""��""��  �����������������������������������DD��ll�aa�������������������������PP�kk�ll�PP���������������������FF������������������������������������������������������������������������SSSpppKKKNNN�������������������������������������������������������������������EE�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������[[�����������������������������������������������������������������������SSSpppKKKNNN�������������������������������������������������������������������\\������������������������������������������������������������������������������������������������������������������������������������������������������������������������������pp�����������������������������������������������������������������������SSSqqqKKKNNN�������������������������������������������������������������������rr�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������SSSqqqKKKNNN�����������������������������������������������������������������������������==����������������������������������������������yy�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������SSSqqqKKKNNN�����������������������������������������������������������������������������AA���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������SSSqqqKKKNNN������������������������������������������������������������������������������AA���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������SSSqqqKKKNNN������������������������������������������������������������������������������AA���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������TTTqqqKKKNNN������������������������������������������������������������������������������AA������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������00���������������������������������������������������������������������������TTTqqqKKKNNN����������������������������������������������������������������������AA�����������������������������������������

��������������������������������������������������������������������������������������������������������������YY��������������������������������������������������������������������������TTTqqqLLLNNN����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������TTTqqqLLLNNN�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������TTTqqqLLLOOO�������������������������������������������������������������������������{{����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������TTTrrrLLLOOO����������������������������������������������������������������������������??�����������������������������������������������������������������������������������������������������������������������������������������������YY��������������������������������������������������������������������������������TTTrrrLLLOOO�������������������������������������������������������������������������������AA�������������������������������������������������������������������������������������������������������������������������������������������XX�����������������������������������������������������������������������������������TTTrrrLLLOOO����������������������������������������������������������������������������������||�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������TTTrrrLLLOOO������������������������������������������������������������������������������������������??��������������������������������������������������������������������������������������������������������������������������KK�����������������������������������������������������������������������������������������������TTTrrrLLLOOO�������������������������������������������������������������������������������������������������������������������������zz�nn�dd�ZZ�MM�EE�>>�//�,,�  ������

���������������������������������  �%%�//�77�>>�KK�TT�\\�kk�uu���������������������������������������������������������������������������������������������������������������������������������TTTrrrLLLOOO��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������UUUrrrLLLOOO��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������UUUsssLLLOOO��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������UUUsssMMMOOO��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������UUUsssMMMOOO��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������UUUsssMMMOOO��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������UUUsssMMMOOO������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������UUUsssMMMOOO�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������nnn�MMM�HHH�aaa�����������������������������������xxx�JJJ�VVV�����������������������������������������������������������������������������������������������������������������������������������������������������������UUUsssMMMPPP����������������������������������������������������������������������������������������������������������������������$$$�����nnn���������������������������222����������������������������������$$$��������������QQQ���������������������������������������������������������������������������������������������������������������������������������UUUsssMMMPPP����������������������������������������������������������������������������������������������������������������������%%%�����ooo���������������������������������������������������������������			�����TTT���������������������������������������������������������������������������������������������������������������������������������UUUsssMMMPPP����������������������������������������������������������������������������������������������������������������������%%&�����ooo����������������������0/0�����������


����������������hgh������������������������������������������������������������������������������������������������������������������������������������������UUUsssMMMPPP����������������������������������������������������������������������������������������������������������������������&&&�����oop��������������������������999�JJK�

�����^^_�������������OOP������KKK������������������������������������������������������������������������������������������������������������������������������������VVVtttNNNPPP��������������������������������������������������������������������������������������������������������������������������������'''�			�			�			�			�ppp�������������������������aaa�			�			�			�			�sst����������

�			�			�			��������������DDD�			�			�			�			������������222�			�			�			�			�			����������������������������������������������������������������������������������������������������������������������������������VVVtttNNNPPP��������������������������������������������������������������������������������������������������������������������������''(�		
�		
�		
�		
�qqq��������������������334�		
�		
�		
�		
��������������>>>�		
�		
�		
�		
�������������DDE�		
�		
�		
�		
��������������� �		
�		
�		
�		
����������������������������������������������������������������������������������������������������������������������������������VVVtttNNNPPP���������������������������������������������������������������������������������������������������������������������������(((�

�

�

�

�qqq�������������������

�

�

����������������iii�

�

�

�

��������������EDE�

�

�

�

��������������TTT�

�

�

�

��������������������������������������������������������������������������������������������������������������������������������VVVtttNNNPPP����������������������������������������������������������������������������������������������������������������������������������������������������������)()�����rrr�����������������������������)()�����������������rqr���������������������EEF��������������������TTU���������������������������������������������������������������������������������������������������������������������������������������������������������������VVVtttNNNPPP����������������������������������������������������������������������������������������������������������������������������������������������������������))*�����rrs�����������������������������))*�����������������rrs���������������������FFG��������������������UUV������������������������������������������������������������������������������������������������������������������������������������������������������������������������VVVtttNNNPPP����������������������������������������������������������������������������������������������������������������������������������������������������������**+�
�
�
�
�sss�������������������������
�
�
�
�**+�����������������srs�
�
�
�
�����������������GFG�
�
�
�
����������������VUV�
�
�
�
��������������������������������������������������������������������������������������������������������������������������������������������������������������������VVVtttNNNPPP����������������������������������������������������������������������������������������������������������������������������������������������������������+*+�

�

�

�

�sst�������������������������

�

�

�

�+*+�����������������sst�

�

�

�

�����������������GGH�

�

�

�

����������������VVW�

�

�

�

��������������������������������������������������������������������������������������������������������������������������������������������������������������������VVVtttNNNQQQ����������������������������������������������������������������������������������������������������������������������������������������������������������++,�����tst�����������������������������++,�����������������tst���������������������HHI��������������������WVW������������������������������������������������������������������������������������������������������������������������������������������������������������������������VVVtttNNNQQQ����������������������������������������������������������������������������������������������������������������������������������������������������������,,-�����utu�����������������������������,,-�����������������ttu���������������������HHI��������������������XXX������������������������������������������������������������������������������������������������������������������������������������������������������������������������VVVuuuNNNQQQ����������������������������������������������������������������������������������������������������������������������������������������������������������--.�����vvw�����������������������������--.�����������������uuu���������������������IIJ��������������������XXY������������������������������������������������������������������������������������������������������������������������������������������������������������������������WWWuuuNNNQQQ���������������������������������������������������������������������������������������������������������������������������������������������������������������SST�����������������������������--.�����������������uuv���������������������IIJ��������������������XXY������������������������������������������������������������������������������������������������������������������������������������������������������������������������WWWuuuNNNQQQ�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������../�����������������vvv���������������������JJK��������������������YYZ������������������������������������������������������������������������������������������������������������������������������������������������������������������������WWWuuuNNNQQQ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/.0�����������������vvw���������������������KKL��������������������ZY[������������������������������������������������������������������������������������������������������������������������������������������������������������������������WWWuuuNNNQQQ������������������������������������������������������������������������������������������������������������������������������������������������������WVX�������hhi�������������������������0/1�����������������wvx���������������������LKM��������������������[Z[������������������������������������������������������������������������������������������������������������������������������������������������������������������������WWWuuuNNNQQQ������������������������������������������������������������������������������������������������������������������������������������������������������������$#%�������������������������002�����������������xxy���������������������LLM��������������������[[\������������������������������������������������������������������������������������������������������������������������������������������������������������������������WWWvvvOOOQQQ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������'')���� �����������������ihj��������������������MLN��������������������[[]������������������������������������������������������������������������������������������������������������������������������������������������������������������������WWWvvvOOOQQQ��������������������������������������������������������������������������������������������������������������������������������������������������rrt���������{{}�����������������HHJ��������������������668�������������������MMO��������������������\\^������������������������������������������������������������������������������������������������������������������������������������������������������������������������WWWvvvOOOQQQ��������������������������������������������������������������������������������������������������������������������������������������������������,+.����0/2�����658�����������������~}�����ONP���������������435�����������������NNP��������������������]\^������������������������������������������������������������������������������������������������������������������������������������������������������������������������WWWvvvPPPRRR
�����������������������������������������������������������������������������������������������������������������������������������������������������xwy�EEF�������������������������������������������������������ONP��������������������]]_������������������������������������������������������������������������������������������������������������������������������������������������������������������������XXX
wwwTTTUUU
����������������������������������������������������������������������������������������������������������������������������������������������yyz�������������������������������������kjl�����������//1�������������������OOQ��������������������^^_������������������������������������������������������������������������������������������������������������������������������������������������������������������������ZZZ
}}}ZZZqqq����������������������������������������������������������������������������������������������������������������������������������������������/.1��������������KJM��������������������RQS���������((*������������������������POR��������������������^^`������������������������������������������������������������������������������������������������������������������������������������������������������������������������www���]]]������������������������������������������������������������������������������������������������������������������������������������������������������RQS�������� "�������������������������������'')������bac����������������������������QPR��������������������_^`�����������������������������������������������������������������������������������������������������������������������������������������������������������������������֖�����ddd����������������������������������������������������������������������������������������������������������������������������������������������tsu�����������������SRU����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ccc���������������������������������������������������������������������������������������������������������������������������������������������*),������������������������__a������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������VVV������q��������������������������������������������������������������������������������������������������������������������������������������������,+.��������������������#"%���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������q������YYY������7������������������������������������������������������������������������������������������������������������������������������������jik�����hhj�����������������)(+����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������7������999���������������������������������������������������������������������������������������������������������������������������������������&%(�������������������������bad�����srt���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������vvv������������������������������������������������������������������������������������������������������������������������������������������ � � � � ����������������������� � � � �003�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������KKK���������8����������������������������������������������������������������������������������������������������������������������������``b�!�!�!�!�CBE������������������������!�!�!�!�!���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������8������mmm��������������������������������������������������������������������������������������������������������������������������������#"&�!�!�!�!�����������������������������547�!�!�!�!������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������D������������������������������������������������������������������������������������������������������������������������"�"�"�"�"�����������������������������onq�"�"�"�"�CBE��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������D������^^^������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������^^^������������Q���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������P���������������������|�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������|���������///???����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������~~~^^^������������~���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������~������������nnn������������U�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������U������������___������������ ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ������������OOO���������������M�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������M������������~~~������������������D���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������D���������������???OOO������������������	���F�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������F���	���������������OOO������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������___(`� �� $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ /Qhty{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{ythQ/>j|�777�___�xxx�}}}�~~~�~~~�~~~�}}}�}}}�~~~�}}}�}}}�}}}�}}}�}}}�}}}�~~~�~~~�~~~�~~~�}}}�}}}�~~~�}}}�~~~�}}}�}}}�~~~�~~~�}}}�}}}�~~~�}}}�}}}�}}}�~~~�}}}�}}}�}}}�}}}�~~~�}}}�~~~�~~~�}}}�}}}�~~~�}}}�~~~�~~~�~~~�}}}�}}}�~~~�~~~�~~~�}}}�}}}�~~~�}}}�}}}�}}}�~~~�}}}�}}}�xxx�___�777��|j>*fAAA���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������AAA�f*@v===��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������===�v@H			��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������			HB���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������A.���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������.l�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������lD~~~�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������~~~�D


...�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������...�7�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������7***p������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������***p������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ ���������������������������������������������������������������������������������ww��ii��[[��LL��>>��11��$$������

��		����������������������������������

��

������''��33��??��NN��[[��jj��xx������������������������������������������������������������������������������������ ***:�������������������������������������������������������������..��������������������������������������������������������������������������������������������������������������������������������������������������������������������---:NNNY���������������������������������������������������������ee��������������������������������������������������������������������������������������������������������BB��������������������������������������������������������������PPPYjjjl������������������������������������������������������oo������������������������������������������������������������������������������������������������������������FF�����������������������������������������������������������kkkl|||w����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������}}}w}}}w���������������������������������������������������HH����������������������������������������������������������������������������������������������������������������""��������������������������������������������������������~~~w}}}w���������������������������������������������������

������������������������������������������������������������������������������������������������������������������������������������������������������������������������~~~w}}}w������������������������������������������������������������������?@��?@��?@��$%������������*+��op��no��00������<=��?@��?@��-.��������?@��?@��?@������*+��kl��qs��45����������������/0��ef��wy��jk��:;��������������������������������������������������������������������w~~~w����������������������������������������������������������������ef�����������yz����������$$������������������������������������67�����������[\��uv��������������RS��������������������������������������������ss�����������������������������������������������������w~~~w���������������������������������������������������������������fg�����������{|����������kl������������������������������������78���������������������������������������������������������������������������VV�����������������������������������������������������w~~~w������������������������������������������������dd����������������hi�����������}~������������������������������������������������89��������������������������������##������NO�����������������������������gh��������::�����������������������������������������������������w~~~w������������������������������������������������MM����������������ij�������������������������������������		��������������������9:�����������������������������<=�������������������#$����'(�������������������""�������������������������������������������������������ww������������������������������������������������77����������������kl�������������������������������������������������������::�����������]^������QR�����������IJ�����������������������������������������������������������������������������������������������ww������������������������������������������������$$����������������lm������������������������������������������������������;;�����������^_������II�����������PQ������������������������������������������������������������������������������������������������ww����������������������������������������������������������������nn������������������������������������������������������;<�����������_`������JJ�����������QQ�����������������������hi��������rr���������������������������������������������������������������ww����������������������������������������������������������������op������������������������������������������������������<<�����������`a������JK�����������RR��������������������������������������������������������������������������������������������ww����������������������������������������������������������������pq������������������������������������������������������==�����������ab������KL�����������SS�����������������&&��&&��&&��&&��&&��&&��""���������������������������������������������������������������ww����������������������������������������������������������������qq����������������������������������������������������==�����������bc������LL�����������ST����������������������������������������������������������������������������������������������������ww����������������������������������������������������������������rr����������������������������������������������������=>�����������cc������MM�����������TT����������������������������������������������������������������������������������������������������w���w����������������������������������������������������������������ss������������������������������������������>>�����dd�����MM�����UU��������������������������������������������������������������������������������������������w���w����������������������������������������������������������������tt�������������������������������������������������������������??��������������ee�����NN��������������VV����������������������������������������������������������������������������������������������������w���w����������������������������������������������������������������uu�������������������������������������������������������������@@��������������ff�����OO��������������VW����������������������������������������������������������������������������������������������������w���w����������������������������������������������������������������uv������������������������������������������������������������@@��������������ff�����YY��������������QQ���������������������������������������������������������������������������������������������������w���w����������������������������������������������������������������vv�����������������������������������������������������������@@������������������������������������EE�������������������""����**������������������������������������������������������������������������������w���w����������������������������������������������������������������vw������������������������������������������������������������@@���������������������������������������))������bb�������������������������������WX��������������������������������������������������������������w���w����������������������������������������������������������������ww�����������������������������������������������������������AA��������������������������������������������		��������������������������������������������������������������������������������������������������w���w����������������������������������������������������������������ww�����������������������������������������������������������AA��������������nn��������������������aa�����������������������������������������������������������������������������������������������������w���w������������������������������������������������$$����������������xx������������������������;;��XX�XX�TT�������TT�XX�XX�??������AA��������������hh���88��������@@����������������AA��~~�����AA���������������������������������������������������������������������w���w������������������������������������������������77����������������xx��������������������������������������������������AA��������������hh������������������������������������������������������������������������������������������������������w���w������������������������������������������������MM���������������xx��������������������������������������������������AA��������������hh�����������������������������������������������##�������������������������������������������������������w���w������������������������������������������������ff�������||�����������������������������������������������������������������AA��������������ii�����������������������������������������������<<�������������������������������������������������������w���w������������������������������������������������������������������������������������������������������������������������������������AA��������������ii�����������������������������������������������WW������������������������������������������������������w���w������������������������������������������������������������������������������������������������������������������������������������AA��������������ii�����������������������������������������������vv������������������������������������������������������w���w�����������������������������������������������������������������������������������������������������������������������������������AA��������������ii�������������������������������������������������������������������������������������������������������w���w���������������������������������������������������������

������������������������

��������������������������������������������������������������������������������������������������������������������������������������������w���w���������������������������������������������������JJ���������������������������������������������������������������������������������������������������������������&&���������������������������������������������������������w���w����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������w���w�����������������������������������������������������������������������������������������������������������������������������������������������������������������^^�����������������������������������������������������������w���w����������������������������������������������������������

������������������������������������������������������������������������������������������������������tt��������������������������������������������������������������w���w���������������������������������������������������������������oo�**�		������������������������������������������������������������������������������������������''�ee��������������������������������������������������������������������w���w�����������������������������������������������������������������������������������������������xx�oo�ee�^^�UU�NN�II�BB�>>�>>�;;�33�33�33�;;�>>�>>�CC�II�OO�UU�__�gg�pp�zz������������������������������������������������������������������������������������������������������w���w�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������w���w�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������w���w�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������w���w�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������w���w����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������w���w���������������������������������������������������������������������������������������zzz�zzz�zzz����������������������������kkk�???�:::�]]]��������������������������FFF�>>>������������zzz�zzz������������������������������������������������������������������������������������������������w���w����������������������������������������������������������������������������������������������������������������		
������XXY����������������			����   ����???���   ��������������������������������������������������������������������������������������������w���w������������������������������������������������������������������������������������������������������������			��������www������������������   ���!!!��������������������������������������������������������������������������������������������w���w����������������������������������������������������������������������������������������������������������<<<���			�XXX�kkk��������������vvv����KKK�\\\�����"""��������������������������������������������������������������������������������������������w���w��������������������������������������������������������������������������������������������			�			�			����������������

�			�			�NNN���������			�			�			����������ppp�			�			�			����������			�			�###���������������������������������������������������������������������������������������w���w������������������������������������������������������������������������������������������


�


�


�  !���������������


�


�


��������������


�


�


����������qpq�


�


�


�����������>=>�


�


�$$$������������������������������������������������������������������������������������������������w���w����������������������������������������������������������������������������������������������������������������������!!"���������������������������������������������������qqr���������������BBB���%$%����������������������������������������������������������������������������������������������������������������������������w���w�������������������������������������������������������������������������������������������������������������������
�
�
�""#������������������
�
�
����������������
�
�
�������������rrs�
�
�
�����������CCC�
�
�&%&����������������������������������������������������������������������������������������������������������������������������w���w�������������������������������������������������������������������������������������������������������������������
�

�
�#"$������������������
�

�
����������������

�
�
�������������srs�
�
�
�����������DCD�
�
�'&'����������������������������������������������������������������������������������������������������������������������������w���w����������������������������������������������������������������������������������������������������������������������$#%���������������������������������������������������sst��������������DDE���('(����������������������������������������������������������������������������������������������������������������������������w���w����������������������������������������������������������������������������������������������������������������������%%&���������������������������������������������������ttu��������������EEF���(()����������������������������������������������������������������������������������������������������������������������������w���w��������������������������������������������������������������������������������������������������������������������������������������������������������������������������utu��������������FFG���))*����������������������������������������������������������������������������������������������������������������������������w���w�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������uuv��������������GFH���**+����������������������������������������������������������������������������������������������������������������������������w���w����������������������������������������������������������������������������������������������������������������\\]�����mlm��������������������������������������������������vvw��������������HGH���++,����������������������������������������������������������������������������������������������������������������������������w���w��������������������������������������������������������������������������������������������������������������!!"�����(()��������������������������������������������������www��������������HHI���,,-����������������������������������������������������������������������������������������������������������������������������w���w����������������������������������������������������������������������������������������������������������������������������������������������������������������������wwx��������������IHJ���,,.����������������������������������������������������������������������������������������������������������������������������w���w������������������������������������������������������������������������������������������������������������yyz���������������������� ���CCE���������utv���������������xxy��������������JIK���-,/����������������������������������������������������������������������������������������������������������������������������w���w������������������������������������������������������������������������������������������������������������324���VVX�103���<;>�������������\[]����658�CCE����++-����������yxz��������������JJL���.-0����������������������������������������������������������������������������������������������������������������������������w���t������������������������������������������������������������������������������������������������������������������nnp������������������"!$������������������������yy{��������������KKM���/.1����������������������������������������������������������������������������������������������������������������������������t���k��������������������������������������������������������������������������������������������������������{{|���������������������������������002����� "���������������������zz{��������������LLN���0/2����������������������������������������������������������������������������������������������������������������������������k���V��������������������������������������������������������������������������������������������������������214���336�����������PPR���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������V���3����������������������������������������������������������������������������������������������������������poq���������A@C���!����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������2����������������������������������������������������������������������������������������������������ssu����������������||~�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������+*-��� #������������������eeg��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������g���������������������������������������������������������������������������������������������������JIL����������������#"&���'&*����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������g��������������������������������������������������������������������������������������������jil� � � ���������������������OOR� � � ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������*)-�!�!�!������������������������!�!�!�yx{�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������G�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������F���y���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������y������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������q�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������q������;�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������;������k���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������k���������K�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������J������������%���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���3���%�����������������?��������������������������������������������������������������������������������������?�?����������?�(H� `T'488888888888888888888888888888888888888888888884'
5bx


�###�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�&&&�###�


�xb5
)i&&&�{{{ļ�������������������������������������������������������������������������������������������������������������������������������������������������������������{{{�&&&�i)A����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������AEAAA���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������AAA�E4NNN�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������NNN�3444�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������444�O��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������O			


mmm�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������mmm�0��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������0EEEn��������������������������������������������������������������������������������{{��rr��jj��dd��__��__��__��__��__��``��hh��mm��tt��}}�����������������������������������������������������������������������������������FFFn!!!}}}����������������������������������������������pp��!!��

������������������������������������������������������������������

��CC��������������������������������������������������}}}�111333����������������������������������������������������������������������������������������������������������������������������������������������������������������������������FFFHHH�������������������������������������������  �������������������������������������������������������������������������������������������������������������������������������^^^RRR����������������������������������������}}������������������������������������������������������������������������������������&&���������������������������������������������iiiSSS����������������������������������������44���������������������������������������������������������������������������������������������������������������������������������jjjSSS�����������������������������������������������������������������������������������'(��HI����������,,����DE����������11��Z\��������WX����������MN������������vx�����������������������������������������������������kkkSSS�������������������������������������������������������������������JJ������������������������=>����`a�����������������������  ������jk��������������������������~~������������������������������������������kkkTTT������������������������������������������������������������������hj����������������������>?����bc�����������������������UV���������������}�����������WX������bb������������������������������������������kkkTTT������������������������������������������������������������������pq��������88�������������@@����dd��������JJ����OP��������kl����HI��������bc����55��������������KK������������������������������������������kkkTTT������������������������������������������������������������������rr��������23����kl��������AA����ef��������GG����77��������uv����ab��������DD����!!��������������77������������������������������������������lllTTT������������������������������������������������������������������st��������34����mn��������BB����gh��������HH����88��������wx���kk��������DE������`a��`a��AA������''������������������������������������������lllTTT�������������������������������������ss����������������������������uv��������44����oo��������CC����hi��������II����99��������yz���lm��������EF����������������������������������������������������������lllTTT�������������������������������������jj�����������������������������ww��������55����pq��������CD����jj��������JJ����9:��������z{���mn�����������������������������������������������������������������������lllTTT�������������������������������������ee�����������������������������xx��������55����qr��������DD����kk��������KK����::��������||���oo����������������������������

������������������������������������������lllUUU�������������������������������������^^�������������������������������yz���������66����rs���������EE����ll����������LL����;;����������}}���pp�������������__�kk��������������

������������������������������������������lllUUU�������������������������������������``�������������������������������{{���������77����tt���������FF����mn����������MM����<<�������������mm����������II���������������������������������������������������������������mmmUUU�������������������������������������gg������������������������������{|���������77����uu���������GG����nn����������MN����II����������zz���\\����������ZZ���&&�����������������������������������������������������������mmmUUU�������������������������������������mm������������������������������||���������88����uu���������GG����oo������������JJ�������������ii���++�������������II�������������``�����������������������������������������������mmmUUU�������������������������������������xx�����������������������������}}���������88����vv���������GH����oo���������������������������99�������������������������������������������������������������������������������mmmUUU�������������������������������������������������������������������yy���������66����ss���������FF����pp���������``����������������������������������������''��������++������������������������������������������mmmVVV���������������������������������������������������������������������������������������pp���������OO��� ��$$����������������..��������������==������������������������������������������nnnVVV���������������������������������������������������������������������������������������pp���������OO�����������������������������������SS�����������������������������������������nnnVVV��������������������������������������������66�������������������������������!!��������������������qq���������OO�����������������������������������ll�����������������������������������������nnnVVV��������������������������������������������EE��������������������������������������**��������������������qq���������OO������������������������������������������������������������������������������nnnVVV��������������������������������������������EE��������������������������������������**��������������������qq���������OO������������������������������������������������������������������������������oooVVV����������������������������������������CC��������������������������������������������������������������������������������������������������������������������������������oooWWW���������������������������������������������������������������������������������������������������������������������������DD��������������������������������������������oooWWW�������������������������������������������MM�������������������������������������������������������������������������������������������������������������������������������oooWWW����������������������������������������������gg���������������������������������������������������������������������������55��������������������������������������������������oooWWW������������������������������������������������������xx�jj�\\�OO�CC�66�++�!!�������		�����������������������������))�44�AA�MM�[[�hh�vv�����������������������������������������������������������pppWWW��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������pppWWW��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������pppXXX��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������pppXXX�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������pppXXX�������������������������������������������������������������������qqq�]]]�]]]�������������������]]]�...�777�zzz����������������???�666��������www�]]]�iii�����������������������������������������������������������������������qqqXXX�������������������������������������������������������������������&&&�����������������������222����������FFF����LLM�***�������������������������������������������������������������������������qqqXXX�������������������������������������������������������������������''(���������������;;<��	�JJK�//0�������������"""��


�QQQ���������������������������������������������������������������������������qqqXXX��������������������������������������������������������������������������(()�			�			��������������			�FFF�������

�			�GGG�������			�///��������			���������������������������������������������������������������������������qqqYYY��������������������������������������������������������������������������������*)*�

�

��������������

�

�ppq��������%%%�

�--.�������

�545���������434�

������������������������������������������������������������������������������������rrrYYY���������������������������������������������������������������������������������������+++�������������������ttt���������(()��,,,�����������666���������556�� ���������������������������������������������������������������������������������������������rrrYYY���������������������������������������������������������������������������������������,,-�

�

���������������

�

�uuu���������))*�

�--.��������� �

�778���������667�

�  !���������������������������������������������������������������������������������������������rrrYYY���������������������������������������������������������������������������������������--.�������������������vuv���������**+��../���������  !��889���������778��"!"���������������������������������������������������������������������������������������������rrrYYY���������������������������������������������������������������������������������������(()��������������������wvw���������,+-��//0���������"!#��99:���������889��#"$���������������������������������������������������������������������������������������������rrrYYY����������������������������������������������������������������������������������������������������������xwx���������--.��102���������##$��::<���������:9;��$$%���������������������������������������������������������������������������������������������sssYYY������������������������������������������������������������������������������������������;;<��������������yxy���������../��212���������$$%��<;<���������;:;��%%&���������������������������������������������������������������������������������������������sssZZZ�����������������������������������������������������������������������������������ccd�����������������oop���������%%&��=<>���������%$&��<<=���������;;=��&%'���������������������������������������������������������������������������������������������sssZZZ����������������������������������������������������������������������������������$#&��! #��������������"!$��/.0����������edf���������&%(��==?���������<<>��'&)���������������������������������������������������������������������������������������������sss]]]�������������������������������������������������������������������������������������������QPR���������uuw�������������������'')��>>@���������>=?��((*���������������������������������������������������������������������������������������������wwwxxx�������������������������������������������������������������������������������lkm������EDG������������[[]���������������������)(*��@?A���������?>A��*),��������������������������������������������������������������������������������������������Д����ټ���������������������������������������������������������������������������'&)��446����������������������������������������������������������������������������������������������������������������������������������������������������������������������������ټ��������������������������������������������������������������������������������qpr�����������gfh���������������������������������������������������������������������������������������������������������������������������������������������������������������������������V������������������������������������������������������������������������ddf��������������"!%��)(+������������������������������������������������������������������������������������������������������������������������������������������������������������������������V�����������������������������������������������������������������������$$'��  #�����������UTW����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� � �LKN����������������� � �{{}�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������[�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Z�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������x���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������x���A�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������A������]���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������]���������@���^���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���f���^���@��������������������������?����(@� B	5?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@?5	Gp�DDD�SSS�TTT�TTT�SSS�TTT�SSS�SSS�TTT�SSS�TTT�TTT�TTT�TTT�SSS�TTT�SSS�SSS�TTT�SSS�TTT�SSS�SSS�TTT�SSS�SSS�TTT�TTT�TTT�SSS�SSS�TTT�SSS�TTT�TTT�TTT�TTT�SSS�SSS�SSS�TTT�SSS�SSS�DDD��pG3


xeee��������������������������������������������������������������������������������������������������������������������������������������������������eee�


x3E@@@���������������������������������������������������������������������������������������������������������������������������������������������������������������@@@�E>eee�������������������������������������������������������������������������������������������������������������������������������������������������������������������eee�> YYY�������������������������������������������������������������������������������������������������������������������������������������������������������������������������YYY� '''t������������������������������������������������������������������������������������������������������������������������������������������������������������������������������'''t			�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������


000\������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������222\xxx������������������������������������������������������������||��oo��dd��XX��NN��FF��@@��99��99��99��99��99��<<��AA��II��QQ��[[��ee��qq��}}��������������������������������������������������������������xxx�!!!!!!������������������������������������������22������������������������������������������������������������������ww��������������������������������������������000666�������������������������������������������������������������������������������������������������������������QQ������������������������������������������IIIFFF�������������������������������������������������������������������������������������������������������������������������������������������������������ZZZJJJ��������������������������������������������������������������������������������������������������������������==���������������������������������������^^^JJJ����������������������������������xx����������$%��qs��qs��+,��������no������TU����no��qs��67����9:��qs��jl��

��op������OP����������VX����������`a��		���������������������������������������������___JJJ����������������������������������ZZ����������DE��������RS������>>���������������������fg����mn��������������������--��������������������������������������������������������������������___JJJ����������������������������������??����������FG��������TU������^_��������|}�����������ij����pq�������������������eg����AB�������������������RR�������������������������������������������___JJJ����������������������������������))����������HH��������VW������de������������������kl����rs������������������{|����xy������������������~������������������������������������������___KKK��������������������������������������������II��������XX������ff������������������mn����tu�����������������������������������������������������������������������������������```KKK��������������������������������������������JK��������YZ������gh������������������op����vw������������������������������������		���������������������������������������������```KKK��������������������������������������������KL��������Z[������ii������������������qq���xy������������������������������ij��ij��ij��ij��??������xx�����������������������������������```KKK��������������������������������������������LM��������\\������jk������������������rr���yz�����������������������������������������������pp�����������������������������������```KKK��������������������������������������������MM����������]]������ll������������������st���{{���������������������������������������������������oo�����������������������������������```KKK��������������������������������������������OO����������^^�����mm�����������������uu���}}��������������������������������������������������pp�����������������������������������```KKK��������������������������������������������OO����������__�����nn����������������vv���~~�������������������������������������������������qq�����������������������������������aaaLLL��������������������������������������������PP����������``�����oo����������������ww���~�����������������������tt���PP������������������������HH������zz�����������������������������������aaaLLL��������������������������������������������PP����������``�����oo����������������ww������������������������55����������������������������������������������������������������������aaaLLL��������������������������������������������PP����������``�����@@������������������DD���������������������__�������		��mm������mm����������������������������������������������aaaLLL����������������������������������))����������QQ����������aa�����������������������������������������������������������������������������������������������������bbbLLL����������������������������������AA������xx�xx���������������xx�xx�  ������������������������������������������������������������������������������������������������bbbLLL����������������������������������\\���""����������������������������������BB�����������������������������������������������������������������������������������������������bbbMMM����������������������������������||���""����������������������������������BB�����������������������������������������������������������������������������������������������bbbMMM����������������������������������������

��

��

��

��

��

��

��

����������������������

��

��������������������������������??��������������������������������������bbbMMM�������������������������������������##������������������������������������������������������������������������������������������������������������������cccMMM������������������������������������������������������������������������������������������������������������gg�����������������������������������������cccMMM�������������������������������������������\\���������������������������������������������������������������99�����������������������������������������������cccMMM������������������������������������������������������������������������������||�zz�vv�rr�tt�zz�zz������������������������������������������������������������������������������������cccNNN��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������dddNNN��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������dddNNN������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������dddNNN������������������������������������������������������������SSS�SSS����������������zzz�111�---�hhh�������������bbb�+++�kkk����lll�SSS������������������������������������������������������������������dddNNN���������������������������������������������������������������������������HGH�����***������������,,,���ggg��������������������������������������������������������������dddNNN������������������������������������������������������������	�	�������������	�	�jjj�����	�	����������	�	�����HHI�	�	�hhh��������������������������������������������������������������dddOOO������������������������������������������������������������
	
�
	
�������������
	
��������../�
	
�ggg���������
	
�
	
�������!!"�
	
�iii������������������������������������������������������������eeeOOO���������������������������������������������������������������������������������������������������������>>?��\\\�����������������000��jjk���������������������������������������������������������������������������������eeeOOO�����������������������������������������������������������������������������
�
�����������������
����������@?@�
�]]]���������
�
�������112�
�kkl���������������������������������������������������������������������������������eeeOOO���������������������������������������������������������������������������������������������������������AAB��^^_�����������������323��mlm���������������������������������������������������������������������������������eeeOOO���������������������������������������������������������������������������������������������������������BBC��__`�����������������435��nmn���������������������������������������������������������������������������������fffOOO�������������������������������������������������������������������������``a���qqr�������������� !���������CCD��``a�����������������556��ono���������������������������������������������������������������������������������fffPPP�������������������������������������������������������������������������&%&���,,-��������������!!"���������EDE��aab�����������������667��pop���������������������������������������������������������������������������������fffPPP����������������������������������������������������������������������������������������������102��tsu�����������������779��ppq���������������������������������������������������������������������������������fffPPP������������������������������������������������������������������������435�! #���������������XXZ�kkl�����������������������88:��qqr���������������������������������������������������������������������������������ggg]]]���������������������������������������������������������������������547��vuw�[Z\��AAC���������ppr�����NNP���������������������:9<��srt���������������������������������������������������������������������������������uuu���������������������������������������������������������������������������������������������������ffh�bbd�������������������������������������������������������������������������������������������������������������������������壣��������������������������������������������������������������������||~�� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������103��QPS���������0/2��WWY��������������������������������������������������������������������������������������������������������������������������������������������������������4�����������������������������������������������������������������������������kjm��! $��������������������������������������������������������������������������������������������������������������������������������������������������4�����������������������������������������������������������tsv�!�!����������������!�!����������������������������������������������������������������������������������������������������������������������������������������������������2������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������2���s�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������r�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Y���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Y����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������2���_���u���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���w���u���_���2������?����������������?��(0` $!@NPPPOPOPPOPPOPPOPPOPPOPPPOPPOPPN@!(r^^^����ӭ��ᯯ�㯯�㯯�㯯�㮮�㮮�㯯�㯯�㯯�㯯�㮮�㮮�㯯�㯯�㮮�㯯�㯯�㮮�㯯�㯯�㯯�㯯�㮮�㯯�㯯�㯯�㮮�㯯�㮮�㯯�㭭�ᕕ��^^^�r(Diii�������������������������������������������������������������������������������������������������������������������iii�D=�������������������������������������������������������������������������������������������������������������������������������=�������������������������������������������������������������������������������������������������������������������������������������777j������������������������������������������������������������������������������������������������������������������������������������999j���������������������������������������������������������������������������������������������������������������������������������������������������������������������������ee��PP��@@��22��##������������������������������$$��22��AA��PP��uu�����������������������������������%%%LLL1���������������������������qq������������������������������������������������������������������������������������YYY1jjj;��������������������������������������������������������������������������������--�����������������������������yyy;lll<������������������������ii����������!!��

������'(��()����  ��������!!����&'��*+��������

��89��**�����������������������������������|||<mmm<������������������������HH��������������>>����%%�������������������������������������GH����01���������������������������������������������}}}<mmm<������������������������--��������������@@����HH������������������������������������������ef��������EF�������������������������������}}}<nnn<��������������������������������������AB����LM�����oo������������������00��'(�����������������de�����de����uu��������������������������}}}<nnn<��������������������������������������CC����NN�����qq�����������������11��&&�������������������AA������ee��������������������������~~~<nnn<��������������������������������������DE����OP�����ss�����������������22��''����������������������??����ZZ��������������������������~~~<nnn<��������������������������������������EF����QQ�����uu�����������������33��''�����������������������mm���SS��������������������������~~~<ooo<���������������������������������������GG����RR������ww������������������44��((�������������������``������nn���TT��������������������������~~~<ooo<���������������������������������������HH����SS������xx�����������������??��@@�����������������

��||�����[[���WW��������������������������<ooo<��������������������������������������HH����TT������yy���������������������������������������������������``�������������������������<ppp<��������������������������������������II���::�����SS�����������������[[����������		����������77������oo���������������������������<ppp<������������������������##��������������II������������������������66�����������������������������������������������������<ppp<������������������������;;�����������������������``��������������������66�����������������������������������������������������<qqq<������������������������ZZ�������������������������qq��������������������66����������������������������������������������������<qqq<���������������������������������������������������������������������������������������������������������������<qqq<���������������������������$$������������������������������������������������������{{�����������������������������<rrr<������������������������������UU�����������������������������������������������$$�����������������������������������<rrr<�����������������������������������������������������������������������������������������������������������������������������������<rrr<�������������������������������������������������������������������������������������������������������������������������������������������<rrr<�������������������������������������������������������������������������������������������������������������������������������������������<sss<��������������������������������������������@@@��������������RRR�!!!�FFF����������@@@�222�����UUU�JJJ�����������������������������������������������<sss<������������������������������������������kkl������������???��445�


�&&&��������!!!�������������������������������������������������<ttt<���������������������������������������������mmm�		
�����������
�;:;����WWW�		
��������		
�rrr���������������������������������������������������<ttt<��������������������������������������������������������nno��������������QQR�����llm�����������uuv�����''(�����������������������������������������������������������������<ttt<��������������������������������������������������������pop�

������������

�SRS�����nnn�

���������

�www�����)(*�����������������������������������������������������������������<uuu<��������������������������������������������������������nno��������������TTU�����oop�����������xxy�����+*,�����������������������������������������������������������������<uuu<��������������������������������������������������������EEF��PPR���������VUW�����qpq�����������zyz�����-,.�����������������������������������������������������������������<uuu<�����������������������������������������������������������������SST�����nno����������{{|�����..0�  "����������������������������������������������������������������<vvv;���������������������������������������������������������.-0����������*)+�!!#�����.-0���������}|~�����002�"!$����������������������������������������������������������������;���7����������������������������������������������������]\^�������hgi��������� ����������������~}�����214�$#&����������������������������������������������������������������7���"��������������������������������������������������� "�658����$$&�)(+�����������������������������������������������������������������������������������������������������������"������������������������������������������������������tsu�����[Z]�����������������������������������������������������������������������������������������������������������������������������������������������������������������������WVY� ������������� �~~�����������������������������������������������������������������������������������������������������������������111���$��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������$HHH������n���������������������������������������������������������������������������������������������������������������������������������������������������������������������������n���������}�������������������������������������������������������������������������������������������������������������������������������������������������������������������}���!!!������F���������������������������������������������������������������������������������������������������������������������������������������������������������F���%%%xxx������9���x�����������������������������������������������������������������������������������������������������������������������������������x���9������( @ I&&&r***w)))w)))w)))w***w***w***w)))w***w)))w)))w)))w***w)))w***w***w***w)))w)))w***w&&&rIG��������������������������������������������������������������������������������GB��������������������������������������������������������������������������������������B�������������������������������������������������������������������������������������������222@������������������������������������������������������������������������������������������777@uuuq������������������??����������������������������������ll��������������������~~~q���}���������������jj����������������������������������������������������������}���}���������������55��������� !�������qr�����((��|~��~������UV����su�����z|����tt�������������������}���}�������������������$%�����+,��12�����VW�����66��������������/0�����II�����55��YY�������������������}���}�������������������&&�����--��44����������88�����no��gg�����II�������qr��%%��FF�������������������}���}�������������������''�����..��66����������9:�����qr�jj�����LL����������55��;;�������������������}���}�������������������((������00��77���������;;�����tu�mm����MM�����FG�����JJ��99�������������������}���}�������������������))������11��89������������<<�������������77����PP������33��<<�������������������}���}���������������		����))������11��--����������00����������de������������HH�������������������}���}�����������������$$��[[�����bb�''�������������xx���������������\\������������������}���}���������������77�������������������������������yy���������������xx������������������}���}���������������nn���������������������������������������������������������}���}������������������QQ�����������������������������������������������������}���}�������������������������������������������������������������������������������������}���}�������������������������������������������������������������������������������������������}���}���������������������������eee�ttt�������...�)))��������&&'�aaa�999���������������������������������}���}���������������������������KKL�^^^����WWW�\\\�kkl�DDD����			��������������������������������������}���}������������������������������������NMN�```�����FFG���������445����
������������������������������������������������}���}������������������������������������OOP�``a�����IIJ���������768��������!!"��������������������������������������������}���}������������������������������������+*,�002�����KKL���������99;��������$#%��������������������������������������������}���}����������������������������������������ddf�]]_�kkl�RRT��������'&)��������������������������������������������}���w������������������������������������WVX�IHJ��������OOQ�JJL�������MLN����ZZ\�������������������������������������������w���S��������������������������������98;���������KJL����������������������������������������������������������������������������S���
�����������������������������!�������"����������������������������������������������������������������������ﲲ�
555���h�������������������������������������������������������������������������������������������������������������������hBBBuuu���v�����������������������������������������������������������������������������������������������������������v���VVV���&���������������������������������������������������������������������������������������������������&aaa(0 `	'<<<zWWW�WWW�WWW�WWW�WWW�WWW�WWW�WWW�WWW�WWW�WWW�WWW�WWW�WWW�WWW�WWW�<<<z'(((V�������������������������������������������������������������)))V �������������������������������������������������������������������� gggw������������������������zz��rr��oo��oo��ss��{{���������������������������kkkw������������������������������������������@@����������������������������������./��PQ��

�����^_��66��ef��hi��RS��

��y{��gh������������������������������������TU�����&&��������ab�����ZZ�����`a��������++������������������������������uu���XX�����((�����tu�ff�����,,�����st�����]]��������������������������������oo���[[�����**�����xy�ij����-.�����ww�������88������������������������������tt���]]����++�����{{�ll���������[[�����������������������������������������^^������@@��++��&&�����PP�44����RR�::����������������������������������ee���������������������������������������������������������������������������������������##������������������������������������{{�ll�``�VV�OO�LL�LL�QQ�YY�cc�pp���������������������������������������������������������������������������������������������������������������������\\\����]]]�)))�����{{{�GGG�000��������������������������������������������������������JIJ����(()�����ggg�___����������������������������������������������������������������������LKM����112�����ffg�bab�����""#�����������������������������������������������������������������##$����334�����jjk�ede�����&&'�������������������������������������������������������������KKM�>>@�����DDF�>=?�����ggh�����)(+�������������������������������Ĝ��҄�����������������������88;�����~~�������������������������������������������������ބ���/�������������������������������nmp��������������������������������������������������������/���z�����������������������������������������������������������������������������������z���F�����������������������������������������������������������F����(  %%%Iyyy�����������������������������������������yyy�%%%I///G������������������������������������������000G������������ii��[[��QQ��KK��KK��QQ��[[��kk������������������������((��11��

��HI��34��?@��AB����LM��HH����������¾����������		�����/0�����������������fg��>>����������ľ���������������33��xy����������������==����������ƾ��¾�����������22��oo���������nn����//����������Ⱦ��ľ������BB��������������������66����������ɾ��ƾ������jj����������������������������˾��Ǿ��������������������������������������������;��ɾ������������``a�����HHH�����NNN�lll���������������ξ��˾����������������WWX�������������~~�hhi�������������������о��̾���������������$#%�����}|}���������mln�������������������Ҿ��۲����������������onp������������������������������������ⲳ��Y���������������������������������������������������������Y���e����������������������������������������e!!!admin/images/spacer.gif0000644000352000025440000000005311560453574015534 0ustar  thediannthediannGIF89a�!�,D;admin/images/Thumbs.db0000644000352000025440000011100012460017570015324 0ustar  thediannthediann��ࡱ�>��	��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	

"# !$48%&'()*+,-./01235>679����:;<=?E@ABCDF����G������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Root Entry��������мOsl5�@v1������������r2�����3������������1�	

���� !"#$%&'()*+,����./0M23456789:;����=>?@ABCDEFGHIJKL����N|PQRSTUVWXYZ[\]^_`abcde����ghijklmnop����rstuvwxyz{����}~Ef���JFIF``��C




��C		

��`"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?����7�LW+��(��7?/��uh�z�ۡ�x�淔�bs�/s�QEp�r��]N�(ݖ,��u}�H˿�!O�z֫��~i��}��O��#.���R�#�W�Eڻ��M�za��k7���i�Kt�džV�>P�$Z��	�:}��ķsc�*BѲ�.�c98�I�Q@�<7-���:��V��������c5���Y�Y*Z�$X�q�㌓E4	�y�M92H���<�c�"�v��(�#������JFIF``��C




��C		

��%`"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?��?��7��X��-P�ٴ��ߗ��F<"��I�5�K���G�ЭN~�`����o���_x����o�xR�¯���YUe�	�3H'(�
w{k���
�������T�o2��'��7.N98`Ab�֞W
����w���+u��>bx�T������N�7=��?t�x��7�@t��fD�g�ʏ��?�u �9�J�Ώ|[�<-�Yi֍��M����VV*19��v$z����M��n�j"X�-�� 9�7��77�>��R*ї��V�5;��w�Ԡ���Es���t��-.�+(�"
�(�@=�dFbح���[ɫ�d�ES-z������2M�F��W-s�:�Í���`�2���žH�1���G~�oB�$~%�yt��K����2�ux���N8 ��
�*��w����Hk@�'I�'S}��>`�v��s���4���?j_�,�6S���^]=�ߺUض}22A�WQw㫟h���خ���)#���U�K�CMX&C��������M�Q5ic��-���`:cҸ�|!�E���hPY��4�c���>��}�|Ɔa�Tj˖V�j�����0xz�f>8�SU"���f�;^G�G�şh����\O	g��,�|g�����->�=6����#X�z*��_�~/ӵ߆���>$�o�
{��۽���I���f��G+��@�п��)�a�G�|A�ɩ27��w�>��;o\1�k�f��g&������?D��Y~���V�N��-���^[�i�M1</���|O�����.�
��Ѝ�" ��Y[+��T0���7Uо'���m.����o|��s�dL�n���DU#�'r�1���(��<J�^,>!��Κpա��58̪��-l~yp�e�x	�܂�����O�YuH�O�h��Q���9�Q�]�K�ͪ���`)9�k��<oR�n�	k�*hW�Z���Y��4r�p����>F���T�2�t�"����\]�.��^��by�
��|��J2�8��^�ExUƋ�J+9%ӟR�ɩF�Q��D}�ЄY6�q"�!�n��E�o��O��o}ql�]�
yw$9���! O#���oOS��8?�Z_��ɏ�Ə�Z_��ɏ�Ɗ(������tX�"?�,���R�ĸ����(�*"M�P:6�(��ߠ��Z_��ɏ�Ə�Z_��ɏ�Ɗ(���g�L�4���g�L�4Q@�-/����cG�-/����cE���g�L�4���g�L�4Q@�٨g�L�4���g�L�4Q``,7�?�
�abstract.jpg67�?�
�control_panel.gif0d A�
�heading_bg.gif*d A�
�log_out.gif4�E�
�secure_login.gif����JFIF``��C




��C		

��("��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�E�ȇ��~c�(��PEP�5������袊�����JFIF``��C




��C		

��`"��	
���}!1A4����<"5������������O�6����f�7������������q�Qa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�B�U������gw����~ϴ����b�&v���Nq^��;���.���o�'���h/V�;H��i��ˀp�ӊ(�W[�F��QӢ�Vx�v�Ӭ�������/��<�������3�^xj�	t����յ���v`�Q�t!^r�\2���o�����Eφ�����Kf�.���"^��'X9�>�AEyG�v������4.�e�D���A�E�ݑ�8f���y������2Fry����[�]E�}펯�i�
�֩uctg�ps��LF@w�w�˵O8(����$|C�Mk᫛JM6��d����cV�U�K;���B
�7�\�tz���=N����f�󶡦��We��u�
���T�UɌt�2Q@���H�мce~n
�m1sw"��4��%Y�B1�x�ҺZ(��(���,}��(��(���y>�7�!r�ۛ���2+(rGH�
�spacer.gif(��Q�
�top_bg.gif<7�?�
�Copy of no_image����JFIF``��C




��C		

��`"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�B����*KۃqD��Y8U�\���"�T��a�9�"�s9�(���8����:D>'���%�[��#,xܙF{��
�,��Q�uf�� H�El$�����DS�����F��'RV}[1�Z�pt��߼۵�����Ad�ϵb�>.м=�h:6�w����,:t�3�q��"��3�s[~j|~u�x����������	-���)Z���M���N�P�q\��:��G��CS����F��Ӯ���su#��#,@ph�W �犽�|M�n����m�
-���Kf�E�g
���'2:�����֯��-�B����?c�$��ϴr|�I�ٱ�~�>	���wi>�d��`Yn��Z/���o<Y[����I��M���]J��J����S�G�]D}�M�lU�S&�� �A��j�.x�S�\3~/")F�Ydl�t��A%��oX�����&�6�skq���f���e�Y���$��H�*Fk��G쑦��?���o5w���Y��PZ��2[JPl�]�V�C�(��+@�eqg�Y�wi$V���)�`�"��Â�Sy1�q*��t��cK�4�q���kn%}�#Q���f�����ty1�q*��;yYTU$:T�j}:��T�$�0���ڀ9}B�[k�b������_�F�z�QE�7��B�����!Eh��C�
?�n?��P��q�=�(�Ѹ����Q@����?���F�z�QE�7��B������8�}��c����Ѹ����h��C�
(��F�z�Q��q�=w���JFIF``��C




��C		

��"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�S��(������JFIF``��C




��C		

��B"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?���(��?���}��k�=Ei�EQE�o�&�!��������TQE��.gif,	�E�
�no_image.gif4
S�
�upload_photo.gif`�
.J=��{A42CD7B6-E9B9-4D02-B7A6-288B71AD28BA},7�?�
�abstract.gif"
Catalog������������-8
������9��������������01	���������������������������������������������������������������������������������������������������������������������������������������������p���JFIF``��C




��C		

����JFIF``��C




��C		

��``"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�,�φty�7�I&�d�ֱ33[�$�$ⴿ��?�a���xS�E}#����j�W�"�'�,?�?�E4O�X�2�j�@_�h�����d�
?��?�a����Ee�)��"���(��SD��E��'�V������@��O�M�����Z�PW�"�'�,?�?³|M�
�G�Y#������;8����W�"���^s��
ȯ�ל?��Z���G�y��
ՠ�(��(��(��(���W�"���^s��k+��+���7��h��G�y��
լ�
ȯ�ל?��Z(�:��m�?5���t���ax���BF�Nq�W���|}���6���L�P���	%�ZB�#)�$�㎴�TW;�O�k0�v�����\����>[����<����:dן��&��x��ַ��)�krOu,Q�x�w�#
K�����Q^_m�j�Ʒ3[@t�*5}8"���%�wpw:|��sO�����]B���5���	�w$��YX�N3@�Ep����A�}�]�h���a=�6�м2�nUx�V.�w:sM���|L�t�x�B����f�����U%A 1����ʀ;���_�����y��լ��ȯ��ל��Ÿ�+�����+V��)�"���^p���h�վC�Gⅸ�*ڴ�\[��K9c�UNy!�ޕWÿ
���o����N�O�k�rb�T$��
�Y��5�4P�|5��mz�\�������n��@*�P�=p��؉dup�E�ŧCp�ᣚ9��0��q�ֽZ��{�����1	.�}k=�E�9m�M�Nzec��թ�YG�jRiҦ�iu�k�෈�.JN��A\s���(�u_���#��}`�Z�AYY��4���K��1[��|A����7Wzl�v�$�o"H�T(9.@��]5VW���W���o�֭ex��E}_����
��_H��8�Z���O���@�@Q@Q@Q@Q@ex��E}_����
j�W���W���o���O���@�\dž|M���*95[$u��YZ�`�#5��	^��A{�	O�
Z++��������G�%z'��?�%?ƀ5h���J�O���J���������բ���+�?�/a��)�4�W��^�S�hV����D��������	^��A{�	O�
Z��_�����y��?�+�?�/a��)�5��oh�xoU�=V�ݭeUU�BI�p�������JFIF``��C




��C		

��``"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�,�φty�7�I&�d�ֱ33[�$�$ⴿ��?�a���xS�E}#����j�W�"�'�,?�?�E4O�X�2�j�@_�h�����d�
?��?�a����Ee�)��"���(��SD��E��'�V������@��O�M�����Z�PW�"�'�,?�?³|M�
�G�Y#������;8����W�"���^s��
ȯ�ל?��Z���G�y��
ՠ�(��(��(��(���W�"���^s��k+��+���7��h��G�y��
լ�
ȯ�ל?��Z(�:��m�?5���t���ax���BF�Nq�W���|}���6���L�P���	%�ZB�#)�$�㎴�TW;�O�k0�v�����\����>[����<����:dן��&��x��ַ��)�krOu,Q�x�w�#
K�����Q^_m�j�Ʒ3[@t�*5}8"���%�wpw:|��sO�����]B���5���	�w$��YX�N3@�Ep����A�}�]�h���a=�6�м2�nUx�V.�w:sM���|L�t�x�B����f�����U%A 1����ʀ;���_�����y��լ��ȯ��ל��Ÿ�+�����+V��)�"���^p���h�վC�Gⅸ�*ڴ�\[��K9c�UNy!�ޕWÿ
���o����N�O�k�rb�T$��
�Y��5�4P�|5��mz�\�������n��@*�P�=p��؉dup�E�ŧCp�ᣚ9��0��q�ֽZ��{�����1	.�}k=�E�9m�M�Nzec��թ�YG�jRiҦ�iu�k�෈�.JN��A\s���(�u_���#��}`�Z�AYY��4���K��1[��|A����7Wzl�v�$�o"H�T(9.@��]5VW���W���o�֭ex��E}_����
��_H��8�Z���O���@�@Q@Q@Q@Q@ex��E}_����
j�W���W���o���O���@�\dž|M���*95[$u��YZ�`�#5��	^��A{�	O�
Z++��������G�%z'��?�%?ƀ5h���J�O���J���������բ���+�?�/a��)�4�W��^�S�hV����D��������	^��A{�	O�
Z��_�����y��?�+�?�/a��)�5��oh�xoU�=V�ݭeUU�BI�p�����`"������JFIF``��C




��C		

��`"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�kD��c�/�����_��툻�� ���`��+���>�{my4:�E���e�1
N6��8I�G|g��E����^7:����mz�('Rw�=��ֵo�S�)yoao=�o�I?�EL<ú0���d�3��>&J��[��k���:��̱�M���t������ǣi�4)���!/v�F1�acv�ⴠ�u�4�:���[^(���Y�����H8��$�k��#������{�E��I":J�S��#�@�V����jf�k]i�P���l��H3����q$�T+��I�W��m
�r�����I��L����-gN���m4�f�dUI��F
6��T�H�޵�={\��O�h���b��Ǻ[����L�/�#5��>�t�
�~�Q�-����ܘddy�B�!�J��
�|Qq�����NI���$p�#�71�K�����5�<O���o�_�T�/��ߎ��
˯�Zn�}7�t�K����M��|�cyl)b;
}��-��,�	mlm-�f�[�s�<X��VT'���;a�W�+�_Ħq�2��"�y�~��*�.J�_�c���A�f&��
;T��l%��l,��p�F�;h�Q�RU�!�`�R�U<B���_�ߧ�T������o��;
�Z���}GKѴ���'�Y	�b��6�hy���ӊt�(�ᱽ��Úlkif����c�]�
��!��qӭp�?��C�i�&�c~��M���v�G�K�7r�´c2y�in|[si}Ěu���K6�Uv��,^b�3@Kdt8�Jq\�����!��W?5�����|I��]�{]7@�f���W��VI�`���$��W9⿋��M.MCN����`K�/��i�r�#6+��A��N�����?:Kl�d��v'��Qj�a�a��2I��s�k?T�^��o�pXCk����YF˒�1��Ԑ�W%�2Me[z/��o=��"g^�������M��}si�Hcv�d�?�ֿ����Q_8~�S�a��k�>�߱G�u���C�~�Pf�ֿ����gZ�ϴ?��QE�ֿ����gZ�ϴ?��QE�ֿ����gZ�ϴ?��QE�ֿ����-���RnH#F�T�E��$��	
���}!1A6
���JFIF``��C




��C		

11�����B
21�����|31����;
41
����H	

F���� !"#$%&'()*+,-./0123456789:;<=>?@ABCD����iG����IJKLMNOPQRSTUVWX����Z[\]^_`abcdefgh�����klmnopqrstuvw����yz{|}~���``"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?��Ϗ-�=�0�6�t�}B�ʵ�2�V��|��NL|K��p������G�Y@�8�}эM��P�H�*+B@���u��A�=o�v�
��緺�63D��z��:u�_�b�fX��ӯ��	8n�Ѵ��]����Kݤ�SQ���m'Ӫ^L�a���I��b_��ƪo�Ot_�)0��f��ƫ���<�I�x���������u_��v0+a3��:����l)�zҷ��'>+i��h-�Ef�l��}gʞ��*���]�'�4'����O�i���^��,���#�B#��[4H��6@'��W�K
�8ZO��w�M��G;���֟�o�#ο�<?�>���L��?�<?�>���L���<��R���~U�of�����5��ϿŜW�4'����O�i���G�4'����O�i���]��}G�G�}G�G��i�?��� ��ϿŜW�4'����O�i���]'�>%�>,�(�
m$Ŗ$�J������$���i ��B�4<��W5���|q໯-E�_�H(�� P	8�M�Mua3���4�R��e(Ů[|M-��q:t'�;7��W-h
����^�!���2�g�X�?�T�c�~,���H�+�5��Q��џիI[�����H蠯^�_�8x�|=��B�)��=��
���߿ҷV�o�<8�ywě���39����4=jsS���|��Q尹>��2�x�Mj��F6�J�}�Sݼ
�1hޯ/��z۹��_���*C�{�е5F��V���,I=FI�
z���s�4�ȲE$E���0# ��>��7M=c?T��U�Z��{��6�7ד����i��3�޵�I�M��C�2YN�g�W��=+��gm��qt<�Ȍ�1�
��c�g#���לխ��y�
_�z_�����^P�@�b�iR����� �9`1�
�;N�⥟Ǹ�$�8��<�y�
&<֏a$p�R�?Ã�j�U�[����ky?��-���6|]�	M��75���w��6����c2a8�޿x�}k���ν��8ԌM��7T����}�qQ%\.+�-�H�q;����8�z���f���񿊇�E��+J�>,�y>6u��E��=uzKcǞ)���H�k/��o�K��t��,��SZ(���'r���׎3ҽ�Q�^�64�ګ'����q�Z���+�G���on�_2�Q� �?���]���-$�����-�RI�@��|��sR�?5o���@���9R|�@�6'���z������;u ���_iP�'��T��~5Ӏ�V��Rp�ZN�]w��>w7�:��֧i%�]U��>
���O�\4���
j'�B�{_�y}{�/@�Q����L���,�?�е�[�/�5�6�u��酉���a1n;����8��z�J��:,,�Z��yQF�Up+�)ћuqJ..��}ny�J5!Ԓ�����xwJ����%s�b�MG���?���W��<����[I���<���Q��WF?������]�|!����G�O����>����k�E�Eto���|�]���F�P�*������ef\��x/����m��9���M��C�K��p��FnKݖ�Ʉ���-�pJjp��V���[u�<��O��-#m��Db��+Z��WMl~'	��F��S�=��ΥBi��_�_�6�B�j�khC���q��ǫ������y��|��{}eJγ����_�:�Kn��?��l�(�����+�RB��>���R�����]gf	I;��E��MŴR��o�������?�?��������Z���EZ���dl�BR��K��z��U��R���$��!����H���C���EEo��e���&�������#���H���B���!y���aݻ�Ԯ8�qgr+�k˵&�������%�|�o��0���Õ�������l��֩V59��~L�t�|i��E��V�7�U/�6���"��+j~�z�,{�m��9��L�
1�(�?�,y�y�[}.�ṷ!c̣̪���EÔ�] �J�?�?�VꞍΑc�\#��E\��7�)�/�*��B�(��0�*�l�Q������\תד]��T�����������p_���TOc/W�o�ɔuBG�<]�_����[�G��Gi��j��C�V��&��9m� M��(�0�D;�<0Ü�����П}��v�~�8�0xϮ�j��s�MBM4��i�c�p���^�V���ɷ7���3ſ�'��]����3ſ�'��]�����������Z��?��2m�ơ���o�	��g�����o�	��g���7����������	��':5��{����\
���Ygeoo�
�����=��Vc8�<ڛ�O��=�?�gg��+���Q�e
�I˪���|UL,��N;�<��(��O��=�?�gg��(�����Ou�����[��?�U_�@��T�����W�\��X��������K�	������3��㕁��^"�<}����5���Qa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?eI~c�+�ݟ�ks��F�2[��G���F
�O�=�=kK]��6Q���R���\}2�h��yM�����F)�#��Ѯn.����&�DӼ7�y�J�9�)b��u)ҽ��<-8��k�y泫��X"@xV\q4��4Q^�b�D�\��vt�7��r�(<�������K�����+�����{�C��Rt�h�Ix�۳"/ޖW�	<��9������NЕ���H���0*	����8$���}L���[�?��Ix�/
���JFIF``��C




��C		

��``"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�R=+��~%>���oq�0�jL$a�z�5�W�j>�|�)b<��|�u����'K�w��CF�Ԏ��֒f����6���WSǚA̝��ekΧ�<�^�O�7_%�����Uo���`���fl��(���t?N�|�8�����zo.�-i��k�M.��?�p�δ"��q��I�05���Us�ڃN�8�hϱ�?*���kߧ�3em|2=�4dW���\B�ʼ����X��ڶ�m-�_4�g�eEe|�dg�ףO�p���G4�����z*8$Ʈ:0T���XQEW����|?�?�ת���:��\���3_Ċ�i���2�g"ǚ+������e��&��ȟζ<�\�ĩ���笑�ů��W2L��+h�/���C]?�%��=��tɊ^C��ȯc�g&�<��3��Ш��цP2
G�I�.��ɿ���&�3��5)�]w�\_���k��6P�5�Ub�i���o�\�U���l|#�(��b����jv��3^�^
�������?����&�i���r��H��8�W+�\�J��bֿ�\��9⓻�z/����.揤���=��"�z�{O�%�d�
�&�^�p�HĀ��סí"Gr*���'޽��4���b1��T��|��d���2��v��i.��%D.��r�\��7-��a������'�-���.>�qҾ�
�P�����c��q5��i$u��t����
�C��=zWF�eNA�+�I�NC��k�?�B��;=B\ڹ�vo����BR䞇�O;H�*)��%@�rCN�`�B�w֦���U���k�sҾi��NJun�f�7��O՞�Y�ȳ��7�
o��n�G/�����לx�[��U�O/��F;������E�+A9r�����Tc��#�~�j�7<��I8�������8l������U��~�5�,^?,^lc�����׬�^��~_�U�#1��K��_|D��GU����c?־ŏ�#�K�l<h�&3��k���h?�5ҭ�����)�q����W�`0�sޢ��E��<.T9�����OY^�y�C���g���'#��k���	cЇ��^+�H��4/�l�h��e�go�_?��OBU�Q;t_��[
:�G4�}�?�ݼ]��g�qf�K��O�+��|�������w,�j�
}\:W��՞#	���pu=�́�_.�cŚ���o�k�#Ҿc��x�Pk�8����u$�5�q��Ih��kJ�E7=J�I�]s�1��"�~+�|l���M��7㏺;�������zjr�ޒu?5W%5��%fD;kk��иXu��5��v��y8l�Q�+��R�n���]?h�PZ5foi�
e?����I���,���_��EQ�s�j��cX�I��a���ч7� l���˔h�|�Q��i�_�8]W�J�����<�&��+���|CgJ��i>
��%����ٕ��W�O�x�0n�P�՞{��K�+Vz��94?	�^��{.��a����b��?�[�M����
�*��5��K���i*4��+7^�,|E��i���}A�kJ��p���%t��qwG�>7���n��X9>]��z��]j]J4�H�T�V��o�ZKos���2
`x;��~
k�j�$wSy�8�W�?�|�)XLg���4���jcj<���t��Z��waJ�;�>Y���o~�vZ�1��d��1��J��0�~U��␨5�V��������9#^�U���O�~<�s�庞7�!���u�"'����6�{�l(�k���7Z}�ꕸ�9��E?Z�Y(�Q�תL�8y;�s��}��<c�I�i�c�l�`���ӓ����<�K?�,p��/!��]B[� J��Z4#Ei��Nw���b��+���L����add.jpg ���3P�g+.gif �n�70I�<2�DnĶe�����ڷ��|$p��jE�ӜRJI�ܢ��a!�xVu%b����������JFIF``��C




��C		

��"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�t_����V�h<Iz��v���(�5h̍<�6W%������W_��;���Ԓ�|7��^��P���If`�ʡ��Inˏhc�;O`x[��^�|kuy}5��s �E��˂�y�\���X�	��2r;����H�Γ��K���M%��O�m�k<E�7�G󍾀c����
7qM�6�������~Ү7�T��s�e�t��˵��&�k][s�-�����g�:�zN��\}����ţI���r<tstW��&�v>��^��o�J��;�W��ǀ5]g�u�w:���+-R�ؔ��$�ʬ@��[^�.��k���n�Ryp�kP�I�h"䓅d�(�9��7К)$��.f�vW��Y�3�cB���9�-J{�����UU����4QEz�i��M�%��֎"q��W�������JFIF``��C




��C		

��"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���51������������Y�61����jM71������������xW81�����[w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?��X��4��W�"��2�+�#Q�^}I�~`���,9'$���5�6�cݾ�8��5]�霧ힵ�����X|"��o{got�m��Gs"+�Drd <����+�K~��Aj�	�5�
��1<�#�c��
CK�HBp��s��F�6�
��i�%��(�S��
X�0�*��zw��K[�KYl�G�S|I�4��j�K��w��f��0�U0	�Q��Ҋ�k���J(d\�����+R��6�㊅z��R��Γ������rI
��Ѽ��Q�q��gsڹ��+�|�:�{�WE9K�k����*���Ϣ�~����yu-J�R���-�l�UR�Q�w#��~�qEW�bj�V�����pti:n+n��z��3P�in.gif"9�4P�twi.gif"A���JFIF``��C




��C		

��"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?��|/����P�L���l"�,s$d�vޤy�J��?��-���Ŗ��ɤ���=���!!��*G\�?ٯ�#�_⺚����xZ���a	*� �p1��^�E~О��W����Z�T��s1���37L�$���8��1���I5&�6�%����k���NQ����f8��2���M��k�V�[�|�EW���Q@Q@�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������K���JFIF``��C




��C		

��"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�8-给 ��K��X�K;��I>�����>x'��m@�
ߌ�( �k�Sz�s$g���j�p�5�据_xcW���˃i�XL�6Ө�"��`��+��(7�u���B���K�ң�f�(�5�ܞfq�푆3�zW�X�U��E�.���1���)-U��9b}褢�c��G�*���M�x��>����n�L-{;JbO��p=�VvWLw{�QEh#��
C�3P�fac.gif 
Y�p��no.gif*O���JFIF``��C




��C		

��"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?������W����xo�O{�H�Cy0A���� �J��t$��-����߀��5Q�-n����;��R�~�6	���9�7�<}��Cs���+-�D��ܴ�ɋ��0x�+�a�`��c#�W�����Vj馴G��s���g{���Z�4��~��������iw��ُh�Q��9���I0`g�J�'�$�<�ɩx��cQ��{�hn@`�'���?��N7}m^�s�*��>?�0�\.c:Zn
6M;��_[=-�}��G�5�_����.����:M��8n"�[(DŽ�9��Tg���K��V�#�$<�4z������Ɯ	�9n_��.>���`�N��(ݱ��|�����W�wV�{پ���ﺲ><��?d_�:�Ԟ+��vS�$66Zm��,��0��;S��`.�:(��aᆇ%=�?5ͱY�'�X������%�~g������JFIF``��C




��C		

��`"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���91����������02��������������12��������������22��������������w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�߲�+��TW������Ο�/ڊ�?�?٢�W�G��N�$t�]��O�4W�s�����H�袻/��E|?���]�����g�h���ߙ���U�Q_=��W���T�r[5�bg-blue.gif,�C\[5�bg-g����JFIF``��C




��C		

��`"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?��=��_�{ʊ�F�G�7>��Et`�������}X��Et�`>�W�T��'����ڊ�ϫa�S�����/�AE}?�ϭ����QVh�k��"?��reen.gif*��L[5�bg-pink.gif(����JFIF``��C




��C		

��`"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�+O��W�ǵ?�}���Oj+w�~�W��Ϟ����/j+����X>W�F�ؽ���{Q_7�ϒ�ѻ�/aEn��ڊ��n|��
?+�⊱Ey<��y�������JFIF``��C




��C		

��`"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�/�Q[��Ɗ�O��O�����0�tQ]w�_�4W�쏈����d{Q]��O�4W���?�<��'ڊ����h�g��hy�w�W�4Wa��=(�_��}}�:��E\��c����v>[5�bg-red.gif ݯ86#�bg.gi����JFIF``��C




��C		

��`"��	
���}!1A32��������������������������������������������������Qa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�������h����Ew���P��a��^������_��W�b�Ew���Wm�����f�Q]���fadmin/images/heading_bg.gif0000644000352000025440000000006711560453560016326 0ustar  thediannthediannGIF89a(�������!�,(���˝*;admin/images/abstract.jpg0000644000352000025440000001234211560453556016101 0ustar  thediannthediann���JFIFdd��Ducky<��Adobed����		





��=���
!1AQa"q��2�Bb#��R����r���S���3C��$4d1!QAqa��?���<� ���AH)ATAE%AD(�H��	T�UU�S
(�%4V�t�ܵ+8�TUQP@⁌��#����H�r@Opp�A�r��)$n�D{+�@��H��ׅ�b8Y��{��Y!y��^?��<hT���l���<�H���N��,f��'�:�VQ>6w��)\�Xq�h2���W	@�~o��
����nN<��NY#Lr1ůc�8AЎI��ϊ���^�v��Ɩ_K��=�!����	���H.�D�l}�9�I��|vp��3�]Ƞ�]ߴ��9�1��,x�H�B�1YcPd� \m�����Vi1���Z�cT�6��nـ��u��״�X����gw��H�,��N�\l�#]1��DX�����@�;k
Pv�x�`��z�n�Mӏ�A� �����O�/�����˸H	h�ۏ�*+o�1��v��x��*E�S����H������m�33�~�R	?rȍ�ٻ��d�1�;?p te����5�'��_M��Q�|8(�����f�¤V�P.E"GT��K�U!9�"��7*������AB>h6�%�D�"
AH!AH"�Q��DB
���!%AH��5PQ�U51UWEU5J�y)������SLM�R�.�R��UQUAU�l��P5��j
qk� Ó�Z�.�Q�k�Z����E¨�GP�.��A�2&�psC���ہm���X������
��ܻl����[$r7|����{�����2>���3�;�f>C�)��)\l%�y��Wp+�|k�=0�����K%��ůk�k��(U�}~*w����m�6��0���8R�#i����n�܆T
��	p@ز��`�0��A�Pq;�m��(�9Z�ծ� �V�iPgw�}�� �K��
�0N�$pU�=?a�sl��c�1�J ��;\悃�>����l�Khj����
���Ӓ��O��	�P��=�a3{�r��?�{TW�2��ʨ�����0��R����h�[�?1Aҋ�ȆNYy��clJ��T�`����:x�-�"�G�N7������g�D��Tg�UbR
�S�g{�*�O��h!��@�8�#'T��@+Tj�
�(J��"�
AD �TU�)�HAE ��QTTQ@B�hƀMU[�������SH:���s�ҜY�C���z��,�e7*�T:��5��
�׊Pc����"\w����|�@��ʳ^#��	������@�L��	��~ݸm��<۫�f�4*+r�saMӐ�H�n�'e�3`���PlS
i����3�;�n>C���(إ'�(c���b���}�;'#c���7m|nA��+5��Kw6eF���Q�/o9��kj��1��>a�A�q�߉8�3V�����yP�D�ׇy��Pd`��fg���z
��@.!e�*5@��huA��e��VےVd
a����L�V�(8�0PWF�ȭ�
PBIA��8��4҂�()��zr�pוt�;s0-�����=�*��Lx��\�-�yW���P�G�r�	�j� 2�����5�+F�A���x��@Ce�@̸�6��b���Go�����
q�֖Q[#����G�)"���R��O(3�i���/
�Nh���j�L�E⁍��E�[R�.� �(�((���E""���PUP(!mP	i@ �J(J�J���sVlYJsJ͍h	!E��r�����bnU�L�D�4�4��kC���$[�3b��k8��PA�נ`}P9�(�O�zj�;q��0P����Q�Ɉy �.+�����<l��9�s�{�\o$ub��f�4(�˵υ(d��G#C�����<�
��Aс�����wv�r	��kE��@,םt<
#�#*hs��A'c�lA �Y�>�ˌ�m���c�%��XZcq�B���8����aL7y�6p���A�{�<s⃍�{}d`��?!pq ����(���$��YX��E-X߀���ӑ�mi��#�:���2��w^�g�$m��m_�A�ž����^���tA�g��R��v�N��=���>� �Ǽ�B
Rb�q-i��f�V���w�Q^s��7���N6�C���<^VT��^l�<H��+�� �G��W�g���<n�\�k��t�o��Z�jP1�s�Ek���r��I@��k+�I]$`��Kɯ��.<UB�M�@����a�Ta�G8�L����9�hQJs��PH%UPQ@(*��DQAH"� ���-��@A�PB��nb-(�"������*����5fƥ)�+5)D��Jޞɉ�kSz����n����i��i.k�ōJ
�$��-Θ�A�H6�T1��9��G-,n�v�F��b�_�y�8&�F��ހ��k���Ñ�N�����Z��H��X+$"�X�����#B�gm�v�!l�=���參�y[MA�A�Vs�49u3"-Z��h��@h�<P}��Y�e�3�~�*Ǘ�u�9��':&�L?3驉�7��K
�$�F��Wh�R��*77����&,�aCZ��X��H8Nk��� �R08QK����Z$+�~��:8��ު�_�z8pA���ߘ�kFٿ΃��S}1sF���?����g�H�[R�70��}3�Ap���=2��}��[��C�I\�_MN~ˋ"9� 
��;"\x����fX|�&��h�2Ób��q���>}�r�^Ik-t��A̒1ʜ�h��{� �ߍ�D��Y�>;M~;\<LJ�c&�� r5��I�W���|�,�brլ����#���d�QYd}O�Z��C���$�FF?BvFQ?�Te�<� �-�h�����i��uD$5��Ah*�E]P	(�J�K�J
AQADAJ��P	Dj	��A@.b9�樥��(
�J*�@$�@�
�K�o-JK�B�ynR�!eU����޵+8�E��z�J�[�1yS��~
�t���bƥV�tX!*�:b�"�'2Tk�@�H[Q�M�N�j7���� lnsn

���4��A�l�H�]�<�mp;hP4�27`��{�����X�f���B���7�I�ge�$d��?ouA�Dw�GLw����>��`��|R�>)ZX�sk�ڦ.�6z��Kٻ�N#�ȞCO6���98��v��Wܓ>f�!�y�*A8U��Pp�Q%��9�c�ʂ!̢kI(:8&IZ��"�>��#^lid0��u�����ӏ��)o����N��$^�Nj�U�w���dxy�)�b��|��/l1acL����*�;@=�)����aΠ8�n���u�������r;�G��fh	�Z<y�^yķZ�nQ���
4�UB��`�vFO��b�����J>����A�%�1��bu(9�@�`��cv�GXEƨḔ#NJ 7k��TxN��
�Ѽ��:0Dʊk�
SY��8��*�s��M�.�,�C��(����`�c.FS[Pϊa�t����T1��\��� �r@�����+��D�
����T-�5�nAUAJ��"� �(��"	T

s8�� �B��	|h�9�,�ieF�TP	E*uR��Vo++;�B�yt��HXUu�=Sz����V�L�L4���]gnw�:&�U��
�~�!�sM�,ƵA�+:Kl�r�a��u�ZY(!m��7����a��sA�'�[��� ���9��j���1�.��{�P̅��E�&���B����v\d�=��3.�#?y���A�n��İ��A�ݮ��a����,�3��~B}�A�C�|��؂2g�[����%�lia��i_!j�3�$=
�d�I��@�do"���rr�;�v� ��r5� ������* ���,voJ��Wl�=��m��c3�j�Ԭ[�
ɇA.V�f��%t^pn>UQ�w��7��sO��6�ݲ�ֵ�8��@���<�kY��S�J�1y�5g��?��aŠ��
�Gd?O�<Pgȉ��xh���0��y�ڃ�$ W�T�2�$�QS���U�LFE�q�'������
�R�� SϽ D�Q�.jy L&l��F����
��~FK�h4�2:)n�	����^��$ы� WԷF��[�s�I� Q}l5A,.u@����]9: �u(*�*�-A(�QADAEAETX�
�1T�lD�� �2u8�C� ��U�:�
�EQT@��R�x(�w��l\�75����H]�)���q~u��p����X�}��J:�r�2KҾ�B�s����SԪ�5��1��if�(���c4��,����t��t�6�)j�9?KƵ����g�u~�O���e􌺂A5�q�7�F���=G���h��¶�
���O�]l~����•㺔A��덺p�$S�ٻ�Q�p�� �m;�Z^� ���T}~����:xW��A�".1�pc]�i.g�pi@���wӿú�Н�����w>��&?K�����}<��E|j*u��W.|�_�6��]\�-v
�n�]x �aS���U����G�[����wp�A��?[�n��kziT%:m�קK>5A��}��	�_=�>(=C�t�(9�Q#�栗��l�����v~U6�;�Q���n?J��6]Ե(��Ȍy?UC�r[��Oͭ8�gѷ��ƫ7�L�l��R������m=脿��H3�֥��j��[zP�s�����V�(4
��� �o�
���/�Wͧ���
Ah,QYA.��X�PR��admin/images/bg-blue.gif0000644000352000025440000000225712460001360015562 0ustar  thediannthediannGIF89a�����s��J��k�Z�������*u����d��4{�C��|��d�������������a��������h����%q�=���������Q��Z���\���������������9~���U��m���� n����^����������������h�[���x��_��/w����!�,����pH,�Ȥ�k:�ШT:�Z�جv˽ƾ�xL.��fJL�^�)m6|N���~_oP���
����������9
�������9���������9�����������������/��/��������������������������������>��>������������>
�����
�����
�@���*\�p�#B����ŋ3j���
C�	R��(S�\ɲ�˗(, ��͙4s��ɳ���@s��9T@ѡH�"�T�R�P�J�J�*U �j�ʕ�ׯ`ÊK��hў]K��۷p�ʝ��x{��˷�߿��&L���È#Ɛ���Ɛ1H�L���˘/��̹��ϠC���E�ӧM�����װc˞횇�۸s���{7��3N����ȓ������УK�����سk�ν;v0��@�����ӫOo@����ۘO�������@��?���! �h�J���J��F(�V��f��v�!����h�(�������0�(�4�h�8�#2��#@)�Did�@�d�J6��M �TVi�XP��\r��5�)�d�if����l���$p�$�i�x橧�+���+*蠄jh���袋*�h�F*餔Vj�`�i����駠�*ꨤ������z�)��꫰�*k��j뭸檫�8��믿� �	�k����	�.�l�F+��Vk�X����f��ކ+���`�覫�������+o�K��ޫ��{��A�lp�$���7���
� ��Wl1
c,q�w�q����"��B�(����,�l�/�l��0�<3�2߬��<��s�%�\��C�Lt�F}��L7���PG�	TWm��V���\w��&�-�d�m��h����l���?����f�m7�v��|��߀.��n��'���A;admin/images/g+.gif0000644000352000025440000000126212317670640014557 0ustar  thediannthediann�PNG


IHDR��
tEXtSoftwareAdobe ImageReadyq�e<TIDATx�b��e���0�%(ρ8�h�3*7��0f!��tViYvuFv��Kg^�2����W�z�ិ%�vI&d���̔�?o]exV���(>�����`��+�3��C����Ƒ��b���gx��"�*%� ;k�߿�x3����2ts)� ��ÿ�ᆁ��gO~޻����&����e�f,^f@��?XD�XD�Q�y�B�{K0VP�r`'0�3��2)FV����������3�����llb%
�֎?��b�~���	ß�O^Oh#!�("��u��׃#�A�а?D%D&l����q��FVV��L ��(Y��U�-���pB��&t9������ ҅�H�)g�l����;�w�f0<Jbx^����S.s�*���-��X����������A�k��"ÃP�߿v!�w�o`l����y�fp82���eFff1	f!�-!L�/��}M����'b��VyD��x�x��^�6����tȡc�z0����O;60|\�$O��j�/@^N1�`����QS��rIEND�B`�admin/images/bg-red.gif0000644000352000025440000000236612460001230015402 0ustar  thediannthediannGIF89a������++�CC�33�����������������������������������������������������������������������������yy�tt�II��qq�mm�ii�ee�==�aa�99����]]�		�YY��

��UU��NN��}}�����QQ���%%�!!���!�,��@�pH,�ȤI�5�O�3
%Y�جv��z�.R8,.��f�z�n���s��=�������16�����6���������06�����0���������40�����4���������8��4���8�����������=��������<=�����<�������������<����������������� ��*\Ȱ�� B�HQ�ň+2j�ȱ�G�)V�9R��(S�\ɲ�K(a��	�f��r��ɳ���@��!�(ѢH�*-:��ӧP�J�:�FS�U�^�Z�kׯ`ÊKV�ٳhӪ]�v��pgȝK��ݻw_����߿�<��È[(^̸��ǏU��LY��˘3k޼�
ϠQ�M���ӧO�P���װc˞=��	۸M��ͻ��߿K�N����ȓ+_.����УK��yu!�gǮ�{���Ë��F��ϫG�������q��}����Ͽ� (�h�&��0�F(�VX!`�!v�� �(b�hb(���,���0�(�4Ҹ7��<���@��C���H&��L2yAOFy��TVi�XbY�[vY��`�)�d�Y_����yf�p�)�t��wމ�yj�矀*蠂J����J�袌6�裏. ���.`饘f�馜F����~**��jꩨ��*���꫰�*���ڪ��檫����l
k�������6���F���R;m��R����v���+n��k�覫���
X��
�+���ko�;o���;��,�\�2���7���;�Pl��W���w�1 �,��$�lr���2)���/�3�2�l��8�s��s�@�\��Dm��H'����t�NG��TWm��Xc���Vo�5�^�-��d�m6�>����l����-��t�m��x����{��7r��߄n��'^x�3�w�C�w�Wn��3N��w�砇.�褗n����z窷�y��.���n������/��A;admin/images/top_bg.gif0000644000352000025440000000006711560453614015531 0ustar  thediannthediannGIF89aB����������!�,B����#+;admin/images/no.gif0000644000352000025440000000223012416022554014661 0ustar  thediannthediannGIF89a�����
���� � !�(*�*+�*+�+-�+,�,-�+,�.0�-.�/0�./�12�,-�12�67�9:�=>�CD�IJ�JL�\]�[\�_a�`a�de�ac�ab�ce�df�de�ef�fg�gi�fg�hi�ij�lm�jk�kl�pq�np�mo�mn�no�pq�����������������������ʀxЗ�Ҟ�ա�ݷ�ݽ��kdӘ�ա�գ�گ�������QK�b]�mg�qk�vq�xt΁|�~yЅ�˄�Е�Ԛ�И�ӛ�פ������ڬ�����'#�/+�+&�,'�3.�@;�GB�B=�D@�JD�PJ�TQ�TP�\Y�`[�fb�li�jg�sp�ro�rn�tp�rn�{w�~{��������������"�"�%#�'%�''�,+�++�,+�10�0/�0.�65�43�33�53�11�65�75�<:�86�52�99�;;�>=�==�>=�??�@>�BA�A@�DC�BA�A@�DC�CB�BB�FE�CA�ED�DC�GF�GG�HG�KK�JI�II�KH�NM�LK�JI�KK�II�EB�LL�KK�SR�ON�NM�MM�FD�QQ�TS�QN�SS�US�ZY�WW�VU�WU�RP�YX�WV�][�ZY�ZY�[[�[Z�\Z�^\�^\�\\�ca�VT�__�__�gf�cc�ee�mm�ll�rr���!��,��	H����*\�p lE"q�F��!����Q0˲^���@G���h]��ر�j��a��(d�F���H8!�8�m؆4�\J6-�
pޚ�hb
̊��r� �?��y0�
܋,h��f�٭<v�B![�+d������i�4Ix�P���8A"����<YDS.iӪQ�&�Y2HS:iU̘�dɌ	�����U�x�����/\�P�Yx%��T�\����US�:�IH�)�>�*5�(O,m�$�`�09u�d�£A�,X��Q�Hs���@�u�"���
(���$Q�$�laE8;‡
2P��AH����,P�.	�z`Qc IL��
���@;admin/images/control_panel.gif0000644000352000025440000000576711560453556017137 0ustar  thediannthediannGIF89a�B��Zf���r��s��-h���������������觹����S�7s����Ey��t{sssSz���ٕ��� V�ɪ��x��g�օ������SSS��쁛�U��J�םb���K���������������x��`��w��f�̦�䁲ܖ�����Tjs���Jn��;J`%$�m�����fff[�[��G������Ï�ک��g}�Y��b��ο��$,[�������չ��@�҇H^��ܯ���֕�#e��VF���c}�ޭ���%���Z[v3��%,em�{�����_�ѡ��:g��De����u����gA;���???���OaduNE�q�����?1���E����������<{Ż��__[evps^h���333������!�,�B@��~������������������	'bR/N��BB.-
b
I�������[,9{gf**'ABNAA��'*,�B-4
�����<R
$4/~F!H*'E$!!$

�R��>xpH������z4�'��p zH��EU4����8�a����x��f��#5|�(*��� |v���3��:u� �
��6#ĉ�!h5dH���|:���&h�~��`@�>@�����W�yX��;�@l�@�H�|0��҄̆
S~��Q�ƍ1^@H�2�7�Ĉq�C0
BS8���
R(MZ�
n@�`B��KX�ͻw��0�gGddC0RƷ��УK�N��u�	�|��r(Q�`���\�p�
l�r�>e[��$�*f
E�FAP
u\��E�c��H �-A<���u(��@i8��{�=�@Ce(�AP��a���<LЃ�J�H��K�DP�!0l�J�nIbT��XE��JZ�A\�$��>�s8`d�KK,��^�q�`�	T���%����P�ȕR����i	� CM� F0GNU���A��X��$�6�U�!�"�1�0�/d�+�ڂ
/xƬ��O��aG�f��+K�)�p@E
7.�@I(�y� �ܲ�rP@�&#,VƦ����:�UH�`81@����$oĠ�'����@ų)����.P��
0�C����� ����Ҙ�zY,�iP���,S�2���B�b� F����	���@{���-dP'\����i���L D)��i��n���|P����pEA�	H�A��c�
��߀.��n��'�����?�p�W��
�@
0$�{*�q@�X ��=@v �@7�L@l#@�SN�B�Pz��G�P(6\Z`ϗ��#`E��yJ�{`	@` `]���?L��Yꊦ�*:�5��B]vy�H+�/�pjY�aB��@ z0A]w84�HR�T��)D�8	X��}���!���djSG�	�<�J"����H/P��004ȦG���84�^��pW�x;PRΒGa�(n1ґh‡�w�c�X�"�߭O�X,:�1�xi��B��yQ�HA�\��Эj$1�d��y�
"�~�+�@aX^����|@jRK���
�a�pF�B��&�Mn�M
�,+D�]�L43˗u�$���0mqK2`�
���
���a%\�J�!Y�H� �!�ف6ѐ��@a�#`f3��i�as0�����<�I�zb'	Nx��&�"��	J��=���k�B0�a��^	�@��(�<x0@!a
k�.��	�yUp�D)z�7  !0�P�,��X��@�\��=Dx����T:1�, �O`P@'V�S���*�0�j��:���%hL�H�`�2c���Xu(�f&����	���
��kȂx�fA=m]F��hH�	��^y�����H@�Z����@��4
�*�kPX�2I���d�
��!v��/H�*�܁P�Ga$z���%��@��t�K��Z���ͮv����z�����Չ�0ج�P�	x�)�=BP�{(!���a1),`����H��)`	Kx�87�/x�G$ل�|4!<%\�0@x0$[D"��v��	����m�'@�����z��d[#E`x}�A�xS�!P
R��!G
y�$��
hfV�	N@�+� �I滼�q�� hb�X\�|m� �R%Y������͍��_�Ї+e(� ��.���6F��G�q}���d Pq>��Q�҇�qPo@�BC��S��t�|��E���&D��XACLC
qH�""�``��P�l�R7�OXA�q�z#�ĥ�E9
'���:�E�ΰ�T���<�QG��Bu�A �w�ߗ@0 1�@L�@� P���:�B�����=��dA��������=�r"����Q���(�RH�	�mp�ރ@����~8��0^p�&8f5�A�X�
4�wG6:�>u�J(�X@��܄�-���h]k�8*�,
]��B
�o���9%�H��Sia�r���c0�F��&��0B\�p�T�H8��=l�L�EL`8,�@g 8@ q�I15��a�p��3�2�B`p���~F�Q4< ���8��l��C���6�a�8�Ҝ��\������*�9���W$ ����
!̊�9�iP� �&0 ���y}Vn_�~eb�R� ��a����KZ�]�Mk���7͡�I�
��
`0��&���C���-���!�b.70��2M -6(-pT�}�K;��ԃ�4�z���9q0���6�s�_�F�.�$0�O `ePU�b8�dX��^h��j��l؆n���;admin/images/abstract.gif0000644000352000025440000004204111560453556016065 0ustar  thediannthediannGIF89a=���+��3��z��k��t�����������C��I��N��A������u�D��Q��=��a��]��n��\��T����Z��L�����>��Z��`��d������Y��b����V��d��d��R����E��B����<��\��g��I��L��q��f��J��Q��3��s�ׯ�U��E��<��W��H��]��R����}��i��Q��@���e�����F��~��X��C����f��t��3����t��X�����T��Q������^��9����L��H��A����g��m��@����t����X����I��'��N��]��R��;��*��)��(��!�,=@��r��������������q����p����������hX7���q����<
>_++_�2��l���_>�,

<έ����p�EKS-`��p��������q��џ��oo���MM��"[�c`�
*Dx��Z���kСb�v�6a��Ǐ ;���m+���}b���9��Ѡɬ
D
��� �Ċ�Mz�C$0��S(T�z�B<\�p�L0��DY+����
ȝQ`����=�7D��
L�@�2	T$X�X���
������3k9RR�p&e��9“�Ȑ���@��%J��X�!�/	0�x0^���[v���(צL�" \�H�8��\Iѡ�zã�Y[�s��a���&4d��jթ��P�V���`�{��
����|A�?M��K�E�
8�H�ن>2��|^k$F�LP��x��O>���X@�)�FP��A,�F|QA��S$��[H�5:i0Pp�	�]�W'��5zU#]w�@_~�Pؚ�e��
9ęCc�ə@������gw�|�Nh��D^y?@`�4*A���B�'�,��1�3A��m�D?��0�	'����|w\r�4��8d�۰ȨF��g"$
��)7�8�Y6��@{0��Du��OB9�c�`�\�v;�5NI%� @%�/��*��(L1 ď2��ʅp��뾎\�ʈ�
�DA��r��OπRދ=ޓ0?��,�u���,�Y�XSZ)`�H�0�K�@�a��p�;��M:	�[4<IK�)�]g�����e���P/�����p��8�5���Xev�����:�J(����
<��pu��c�Jpo��
�"�^o�������KUA����A<�Ġ�D]��~��8��D�)�Ԕ^o��P�SyY�t]�����]vɥ3��Z�n:`� .Nj��6��-������2�0������$8��0��q��+��EP�t��!�Dl�����J:����$� h0(�Bƀ���Z��
�%��	΢�
��h�M����&���0$[ծ�5�І[��a�ð��l!@��ا�
n1E�B�`�\���	�&Y9B�z��n+(@��� ���"Dz$!pI0 ���)La]r
U4  W	c���*��n"a�T�:Tk����t�
4pZ����b&�x�4�&tI*/�	ܐ	0@2P��%^�^��w��!E.R���#�Q�b�"}(Np��8�*+�J���L�*�OU������U����$l�x?��^� 3n�=L�J�gʧ>��R"P�H�$xR���$U@)`��0��A0	�!��8��׺�5���0�ZnxC�i���[ch�3���0Ռ:u=]�C/���#H��@���	�%@�^�\�1ڢ�����ӆ�&!R�A��U��`
�W��~�*�s�/<%���_!���hP�,�Iw&S��k�z�M
�L��(p<�@���c+}+Z�#V�T"
�t3��N�L�W���<6I��Xh8j�@*	9����CҒ��qQ��ֵ��-0y�]z���
�`@�az O��v@���d}��B��ݢr@ �B`�2xT1��@�,����FSj���פ#%)IM:QzT�\S����:X$HL���B��!	�xS��H1��|��A�#
\0���Xh~@3h�������rY6HA
��ٞH6�*���?. ��E�!D@�(��BBP0/p!
1��/�7�G�B	�8{-�M+g���{��2�����4e����e�yHJ<��!r0[�+a�T��dT}�����4A���,�F�rOy�e4���w�$�,knaP\q�K�T��]S}�T-�1 GO6FD�����%4YAo�S/%PIP9hV`@�3�Ei�+�>�3$���šF�+R��ۤ�o������*h�0��~+����Y|��)HA��dp60�@,S�?�`��0�!�a¸~"��	�Mnvc�c�O}�CN��2@�N�E�E��
fF�'x~�1��\(ք�3��¯�ˊ`��rK�{�0q!�g�S%�سY6E�V�f9��~��{*)m(�j�e$nv�cC�>j%y>�4��ژj�U��b*��9	JP*��Je^�b��U�[Sz�A�g�]����5{"�E�H�gչ���`����2���`�����?|��l���J�`�-m�>#�ڶ5G����
#N�0�
��Y���`O2}Kb�gהR1ˉ(aS�������_�Y�A	���t
�)v�R��~dl��'�hX���>�#sO�?D2�f/�Z��v�"i�g/��L��w�p��
�H`�$�!�%3CT�`��F�2�3�4@�J"SLD�%_B�&��Iޖ&L�&m�^�`�5d#-p{r�'x՗	G�H(16�e��(5Pu~qS�dp"
`F�s�iɴLáJF&n`k�>�ou
\0 G���6��h��K��	+�
u'#��8�aX���A�U-��[�[��$�@�.����V��NQ�6!r���&���!�=4(."0���7��&~$1Ǣ��`B�X/�C�_�,�Rmmъtx�6%$�b5s.�q�@�U���x�����kB5*�5s�5p"'�q'�q���׌��+8�����7
`�2����U�3��,{'N�9DO�TU@�@�Z�S�M0�h��hD"lLp�}�H'�h��Tmo�;�&�H�u��-U��Fl��]���PΦh$8
����t!���)@Q1��Z��� ~	+�O�	���p
�8C�1�'p-�9r8J01i�:`I,�AQ!9�j�B[��P��k�X.��X�Q�D&%L�tr�O��`6�`�Q����(�6ٔ�����"�7���V�
@I��NkK���`~�C*)�,ktj��[��@N�P��Gp|�k�E���Wt�"%�2,�Fi��t
�tg�Fς[��IY���X�DyP\L�%��<�FY����ψKj�Ʃ#�lF"Le2Ӏ�%U��i2
jFFd|G�d���6
l�0��&�S�3��N}91�w��%��4MSG�2>Pm����G.c6pf�P'do'ip_9�C-R��54ě%uR,�+�5�'4P���}�L�Ђ��TVEPS���	`��@b)B,�8!�@d�烊��LltH@�6t6"3�ɞʃ9����9��v���H}%0׈r��iEXJ(&�&kZ�|1���uT�@��U��t��z�RֱK~z����I
��&�0��/�2: F���"�Q�Er�-����[���PVTq��X��\��>)�E�\鲈N��J+���6P�`&��'p9‘^�^�Eo0�&�f|>$�R"o�n-{`+te3�6S�.0��IE�$�FA"b)��47f�
0+h�D@fj]`Q�Gе]fB�=7��$0=�`�Gp�K�T0D0q`eG GpK0d�Q�O�6m(��I�CO%����e��f-W�;|�X~V\�T.�s|Th�en��(qW��v<K)����f##�����큈��w�rO�-��n�[�������[�-%%�X4@��<��wb7vDZVP�T�f��(��Ay�\�I�gЅx"��	`A�{�Vo�n3+�͇5o��]c��S���#5@���8�EkQ:�)
�
-�L=�0+�q!�u85X?rr)�ˆ~A�L�R�B6��*e��8�)<�T�s?t��[`e@f
pf�;�HL��Cf�$OpԱ�"��;<]yk�XP��ؕ#�+#x:�	��+Zq�Y���"G\>�aF� U2�Z�"����z��jN�@|3��:k�ìͪ:P��c#?����zPz]:��e��a=M 6@��agy�@�Pp�I3@�� `�n+;��K|��s��Vo�|Zc�P/0�CԿ��W?�h�% 1f)�h0��[�;���qSpO����(��>b2'���"K���? ��liI�H"d@e��.0wj�G f�e
p��I�Ln�Đ#X��g�•]���u.��= ���84��������s/��"�Ⱥ�c�{�3
B~gd��,�ej���J�[�'�VH\��[ȅ��ӓ��XE%7��_��E��CY��� ��Mg��6��Tg�A��1��+0��$��#�{�_&����*�4�0�Q0+|Ap-U��h��o�W��d ��0����H�ߙ,���V� �I/j�H��!b�a��c�x�b�)HZIJt�r�g�T�s�S�|ɗ1�N2�3�?��̑٭������C}oΡ�tJU�߼+%�#Q$P0pH?a����w��S��U��Zٽ������$Obk��u�E��a��Q�16b�Qs"��1<�a�ˆ��y�Si!2�M)�Fvw>�C8�]*���^,܋�(��R�+GI��a�$����(���K����E -=[,m D �is�~��̝v�M���:�$b,@�"�r�*Z�pr5��B��)ii����؊��FG;%'pL�J�0d[�@9�X�+���4�߆1�q��56x���i���01Ω��_��)�0|�a'8O�pf�RU�3*�4�Nv^L���\ 'Ƹv��]�i�X��!1��6U D�q�H�ʞ���ؤ��ҋ��"��l��*���/�(,��E,Ld}�Kc���WP#4��=���(;j���79��$l\3�1M��R�Ȟoq<�x{�{�繩RaC'
)69��^����>�N>;@B�_�5@��|�JWa����B� 6�d8N��6���.���&�
��n�"R"Mw��îU��S$J���8P�fű2c�TO�GЈ���%s�nH���(n��*w&�"D�0	��-b?w��=2�xr3�� G;�#��MW�A����Kx��7ݱ�������菮�ā�z�&S�4�A�}��sj���!5���fiB�����+`��2�$@fa�p�)�8�&dK�Զ�M��*BF�Ǡ#0e��&��ƨ���i��nwGd�I]0ñU��‹u�B�:�$�j.�T���d�����s?��*�qqr���p���������o<�
�M+��>>���M���+����M,,���������MD4&2_�

�_W$'�$� '$00� : ��0�0 $$44 � 433�	�E2$HP�a��!f��@E���� C^<�#d�� IJ�˗0cʜI��M�q�TĨ��F�"���^hl���!h�aU�M�&R�P�b���6|1�����0��B�	
p5\�P��]
����GW~��"�A���U:
�FPF;��I9� ɗym��MJ��`����H�7�_��bD@����ڲ�~�.�=oy=h0�#��6��T)��U
JݑO��&W�ν栗�Xf�	�g��G"�
R+B������������߬W��2��
>p�)�,�D0���X���6�S�j���5՜��;��„�<�Oo���<�P���X�@Zh�BY�T�E?�4Red�Em�Ax�C�H �G*�t��e��Z��y桗��t��@�F| 
�,FTM��F
jD��ȩ�W���ܞ�I�n����u�!=�ΓM]H�GT��1�-��	�^$�a����ey��W	3u��������;�Pl��vƯ���@n�A�o���_&`���.��I���ԙ��x�v�ݶ���z�BBI%��e�Y`�Y���kü��k(��ܼk�e�����i���Wn�3�@�&l��'�*�\!�ע�^�`�&P@C�+��=�h�$`�gd�IF民�R^��R:�D#e�Q	K6�dH*�4%IU��V�mu���
�O���
$Q,��Q�dC2VlH��3l0���5�IY�n@�:``�[�EO7�sTX�"X����ql(�\)�L��y�h����ԓ$�
@	+pr�mc��[����8��f���~�@��/H�Z2��,˘�Xאp�ӶWG/S�k��jO�J�EP�~��
�m��n�m�� \\p)�\�>�}��>q��+�
ja�u����aB�b�v��}x�G^.��4J��@0�@/X
;F(��dc8����hA@	�֤��hK	F��$�hDi=���zV���@zHL"x��5��iy��A��`
G��#xЁD#cYA4� ��*�6����\,���a	I�  �kh��;
qR@�R�n���O���x';��$��.>-k�\*`
�À��]�tg�K�� 5P7<�@
����-2�<�����]�<���%&0�5"�>��W�e����-�;�\,�
ХQ���]�yGyӛ�ˢ�g� 6|X���I�
��*��>h��n`���l@0�8RF����
p����F�2	�P��4%��I?�hτ4D)%�h�.W*��4щ�k���+\��Bь,��?�U���[�g�Ԅ�`R-l���z��@�ip�����c��F^�)���O�‚d*��T�O�\z��ܠts��7����jp�+�k�g��FX�y$������Ҩ���
�qeiK��D�{�k�A���eo�b�3+�r�~�R	��ك5��-8�a$tC��@8v5��4A�DP��T������M(S�>��z���m�s����D�-a�4�(�*4�Ft�MZH������f�-�J҉����<�*�Y�=]AX����*.v�M]���\5�N�r��=d!:��IP�#� gX����1�
@�A
v�ZƔTo�Ld���a�t��DW�u�Z	�6��a�u���&7��;R9)�R-�e�jY��`3�!0/��~{��'S�>�/^�DT�ԧ(�@��݌ ���[��E��̰�J��%�nmdJ㞠=�n�h�(�(���AΦ�TTŠˋ��5nK�
�	 ����	;r_�P�;����_j�O�q�!�X�r�vw�d�g?8C���39rS�3p�`!H�]�(? B �o���%��,���	�+��\�4!������	��o!A����G|�'@��B��G`.p!
�k�y��D0�{=���|�|(in	��U�����	̻�MW9x��2Ś�d8sK��ږ��żӽ���c��d�@�-}�_\���m(����Z�iKW:��4eЅN;bY�����tP0J�ˡ�y��L�Z�`A$`�DPD������� 6�q�D!
`0Cdߋ�����!HU��e�GS�hDU�H긷I����4	���÷�1_��ذ�0�\0��p�`<�?����]s`q"�^�aZpE	�I���Ö�	���8��50���HL�&��C�H�^�\�j�B f�$�y��KF1��0si�&@U�q��2�w\wr�2�tɒ\ZA<�g7��brs�*�W5�bg�-�ru��`1+��uWO�3G�"g�
�@k��sf�Q��;avi3@�@\�qw$H�/n!uHá�-iu~��t��xp��,��!�� ��e���H�@zez��̦_�CpJ#_��l�F{f`38��L�'	��@`N m n�3^P@�0��f��j�\�#0a XEG�DڥW���'[�.�x��q0^��<�%'��X�q��A�rH0�r(��
��=g�'k�W��
��v<f!8,@wi+�[�#<��@�@Y/Iuf*-g��kqua�=�=Y>zcZ1>�v�'vDx�M��G��sK�e��e�D"�;��NT����s\$�\���eE��rj���p-<�2�~�p�)&��s�d 	L0�ņ4=�l�X���$*�	0���z!u0$0��x�q���%���2�1�h0:�K0��Po^�C`a 0Ջ[D~��A9	��~
4 �a<�'�e2��* ��<@qG�c0^�j�
Q�a(n��!ҁلN(��x�J��J/0� Y�|��fv�KOg��.Mv�زT�a�m�.��	Ѵ(��MfG	V��]�P8"ٞ�yc8,�8���2٠,&pnA?whāVE�VБF�!oq�HUi
1r�#J	1�TKpg`�^S����zX�F��wz;�zA ���.q���t[Sg����-���jE
�7 2�F��Ù�cˉ?����g !P(�2��2��#��m���8('�bͨf��@:�-k����l:�oڦf�	9YL��fm���90�m��%T�`��x��)�(�>�6����U�1�V��eB��x�2��Dv����iʅ�J�%�"'�e��+�4a5v�;��/VB�6�X�
�2�t-�m�C���(w�*�j2��F�.-
d<ɰ���G��S�TP3���z�8!u6�{�����G��Т~Ȉ��h���2�@�i �P
v�<<iK��Ŋ{�rJ�`���¤��dK
yu��� ����J~䓌�(��(x�
��(#B"-�A@�M���%"'@;�v�A�������&"Q4�c@5K�NJ�ɪ���B'�a�c�d>ىL��/�bE��b���V�S�$���Z��-�õbB~�c
���į���W�Zq������i���;:ٶn��D�Q�Drե=j�0��)wgw�`d�T2`#�6����]]�r�o88�)���s,��Q�����t
�Ux���eQ�F[c�CL'ec!�+���7��Z��	;�q# 	����`pEA'_@ �b������'ۺ@7Y�EԡG�`Q�v�YJ�����aL��^�.��`GO��fq�G����/Ǩ�iE�y�H,��ػK�j��빟�
(LI�gM�[P@�����M�k�x�[
��v#�J�\�[(��
��?��뙼6�����@�#'A�0#�I�U{�A�BP
���� &�C��
�@��Fq������F:��� W�Y�#��]�KL�<�aMUZ�\O�)���(w�M��pf�BF��.���xF���._�*q&P�&�����L�j�<��  H�"�Ķ&�,�=�-A�yk��:քO�R��
��f���+�RSL�A@�3��7�4�g�ű�Y�K�5�5pN+�<o�j��Q�,��t-��TEZ���FH��\�W������S0KP*��,g%�ܶ��J
mt�|ӟ��pb8S8�y�:VdG��J���| �b�-�|���ȅ�Y��rҤ���A�5���ʰT�@p7����<0&�Î�v"Bk�l�L�DO�G�5�(�M���̋�#�QY�3C3�z�EM*�cLƐ@&��xӋ�Z�L�E>y�.{R0Z�L(9��~u���ɩ����kE Ў`=t�,5Ҋ ��u�{�q��������;��i��U�eӧ1��#/~�0Ρt���ځ]q��*�䇩T�����8�9,Z�AŤ+@{:`iƂ�{�"7�b��D8�-���40)u���
�)i;�\�G��~�
c�fB4ϋ�G�ӭ��L��k؏�
���tX�i,&t,7AU	t�ƃѰ\����T��?�/t�fǓ���B�����`�f91y�+���
�eb�U���!K�$�)�2�{,4�G-��C�];��Q��A�;԰��9���m����{�ms�`7��K�y�y�F����4�,8ޛ +��J9�Ў�
Մ+�UH^hg���Y&��i�>���[ܼH"Q�@m}�P+�sf���cZ	 �C<P�I�]BdWq�jN+�F���R�p�M�����1b����ȣ
�H֥�bҴ��|��C����v�`��U�f�j�"0=>1k�f�S����Pn��}[�������ô4��l����d� ���B`�a��j�?փ�X���i@mp=�� �689G��WH��|����8��O�lA%L3$3��]�V��K���-��
j`H�0[�Fpؕu�);@'v�LP
�
m��cO�9s�(�S�)��
�`��}:w�Dҩ5�M�ͮ�P՟t��:��X�N(�ŋJbn�4]�#���	���=0�t~j�$���;��q
���s:�v��댢bM�����Ќ�0���:T>�Z'����G/�x[�p>�����3�N�������E���CI�>$[�P�Y3��+�i@�<%�<<�<M1n5J_122MM+��6&&//����/U&)�OSR85
�����p���q�r����������q���7ƃ�,�J�n&�$$ 0���������٣G4HP�K�Q�*�X@ч��X�hРCo��$ƭ$2fٜY[ɲ�˗Ӳ-Kfr�MDs�����/�m�0i�$�?��X��+0i��RR%��rJ��jT�R�D0A`�����%���V(� �ċv$N�P�j!
 hē��+6L�(;��c`�hw�<P81���3-Zm ��ӧM�^��L��s8p�m�>���9T$����ȓ+_���̙&�G�Y��C�@�EP
�+�%R,�+ԓ%�xF2W	]
:��R�����\�Y=�S�Ad��5�!<P'HI3��L)9�L7��9�0����
��3�=����	DPd4���`��	�D�'E��u`'a1�)�a6�4�<�
�L)ݑ��\�PUNPC�'f}F��^%DMĔV1h�^QiT�t~�O+`=���a�	Fr�g���	8�u�`�����@��f=F�d
U�(�pf�g!�FZ���
����
dP�i�Q�mA��*j����p�qܓ�[�����$ݕGr�
7�|FD�!䄞z+��޸_��S9f�'�}���__x-���b�R8�6lД+iH��Q�R��B�t�C���{�cbe)Z��g��x�����>��]��=� �
UFou���L�Q&�3KQbC��%�\y��gV�9f
cF�K(RW-��h�9QS\��
�B&�BQTr��	���5�B��BY`]fC�X� j�7Ƨ�xQ���:���f@�9�
���C�+l��@[m%�����p�0�Ϥ�n
�/[����;<A�x�p�# N<m��#��`�?-uN(��rJ*�.
�ۊ.�΁�q�)@sW��:�:�ͱ�.���BFO�k�:�$���,���g ��.�#�5:CԲ�ef��v��E�g*1]� ���-}��H�$	qa- ����Q�"�HH�f�0����Рgb�#�ЇDxǼR& T8*/��$�K��,~˔<��I�@���>B0ʙ�����8���r����6�Uy.8h��$HGӡn�+Z�n&��PBw�`-,@8i�d �
`$�ُ|����'O��'�`R0a?r��eF���K
��>���B{2�V��n1�&���$���&�Р\B�<#�!)�X����d�h���2
P���[lv�N�`dR�
dȄh4��r¥���i�
E
NH��랥0!>ۅ��$/�'�QDd8	�-�'����5H�Bm��W�* P"JRڀE6��
,�o~��H������@��Ts� s�{�=���J������V��8���)�3����\��7`��D�"T��r0�HtX"(	�&�I���[�����Xʜ�����š&pY}b�MA�HI�咐�3_r�:�܉�ǀQ��=�g�~4���H�v2�,Ě.�dEvC�}"Q3;>��R&��/�	��l�'L�'�@8
�$/?���~PQ�����%��p����
�\\�G<S%�s�͸����).��
�b�
f��"5C�`�[�
|�8���U�t�R��
�9�U�97S�& X'p��/�
���a�� �.L`R�@B2�. �#���#iS��9Ё&|R�^��+I���	"h�DT6�=�rCI�	�8�V>8L�u�P(����}^<4V�탙����A2�Ff^*k�V��%wD�jSX�Zh�N�9��|eu"-�b� E�"&��s��E,�S/V0��`�4�sD���s/ �36
���A��}�᎔U!�:6@�&��$�cNV݅�n���U�8��Ʀ�ow�Fc���7U��t��U������MX'K ٳ���	(� ��E�o�`�b�y��n�S�s�J�c���2��R)d���/����kJ�^y2l��Mia��r��X��$\�HZ�L]�y��MsȞ�ِF�/�@B��:��u$�ٲ�!���^c���PaFq��<�җ�2&y�S���p%��V��?X�yD���Dᖾ�x�ͱX��/�.��	P�Q������̑[��<�QyH� ��(�0*�d`��>�J�x�W�K�o��iS���\��6��#��I0hA��ق>�#��Y�ܰ��%{��B�"��>Ѥ���o��/0��pP�!%��vW��I^�hـ�:Y����N�s�h�@�V�Bc�=yeь��� �RDY̫`:ODH��GN�,�3�Ga�:�a[�!S���5SSO�T�&i�Ci�(������da&x��)��
$6�c��WOc�#�`}�TB��(�MP$�;U�Q�1'S#6BQ�p@l	``�V�x��`�sF��S�m�6m��*��x6p�fx
��qdtjpb�0�#k�,p6���w4�=!|� 
�dMuJdc�<��z�jqs
y5
Y�QM>����w��#q~q���=Qs#�"(�"Τ?�%.w|�2wj6GK�HF�0���w�ʱ0xT~thp�4X�h�!P��O6�o��
U7��t��4�ߘ1�u��<��kf�YՅ2��`1�&w�ǃ/�#(�^+�9��/ЂS�$u
:�`ㄑ�*��c`��x	Vm±_Ɩx��`��`��`ycX��x����5�00(��H� �M�)p^>`3�s���Iƣo��P�G�W{Rf�P�P�P2	aj�R	qqg �@|fϡ!R���n֑t"�?a�$��r+g��Y&����p@���(~�3%��9h(�q��U>AVBO�[�Pc�\�Pu:��B�utS��芃��!�'ވ1fv0s7P6��=��FZ�I�Ps��I�p(y�ne#�Q
 Є��*Y�y-0@`9�x0S9@+iS�w`\�`�9��x�06p��w�����H��#@�����^:��x&F'o�!��>2�[��BR�_A��"����yP*����q�q  z;�O�X�d�}N�s�S�x���DKCO?s3���1"��#�?ф����rj1�RaPz6b�ZUA��~�
'�G��t���85�cO�U\����{�V'��AYm
E3�k��?gAR��[ �.q�L�c�	�g<�_@w�<%x�36�Ä�E��:`Wp`�x�*���9�miy�+ߩx�I0�A��ߦ���p�C�}Z��w�;R{՟աXP� B�\���I�g�T�����J�7B�(@ҊT���Gp- 00(0#0�z" `�j}�O~B�"���@	��?��1m:�<�>��!QD�v�WL&>9�e��/1h�ժ�%�cC3��t��p����oe���"PT�6ۦq:��B�b�m��_j1qsR0D�l�	����^�BJҳ#�5*��8���Q� �ҙS�W��Iy�S�9��	����۶��*J��hPg�B���;�=9~��jUI?�H`-�N #l�I(�+��( �+wRW�&W�꺮f"J^��:��'Jq
â��G槥C��'7�)!�ˣ�T2
����l�#�� �L
�J��DZi����	�X�:c�0��i��au�TJ�jrfѦ�A�:j��8k2)��fW]P ��=hD��P($II����1PwѲ�����8�!�?fp7��/���VF	���`e�`k�xmk)��0:��0+`��#�;�c���`>�����@�@@��q	2�5�baAa&f����O�27�.:� D&?"K=��E0��j�+�\`ml�J��*�F!|<zh	c�D	6�<�U'ྔuf	�f��	aW+sjͫ}��8���g@��=�s����%���e<�=NW�a*���<�c���%�6�f�&Sm&6@��hȰ vX�5H�wgĀU�Š]7��U"��?!P�#c'P��p	�)��Y�7u��c`^�`$L��-`&�ɮ5�4\1pR08�;�r�jQW�!�/@��LLPiH�� S�eE���-!�Q�M�A�F�tGw'B1�pL��$(�,
�#PI�j!Q`�(��7]qH�1><EY�
_*b4[�"#�<Mv%k�P�N1$EB���K�4�sр��Dz�		!O�RO�tO_�
9��x��.۾&g�;�f,w�Q
_�X��Y-�B�i�P�}P9��������]-K�/�'��ffL�Š`T��y9䌶�zbty���$��\���$�4�%�& N�Wpԃ�}*f&��zm��h`
�&�cS�C0E��Ib�2�!����Cq�"�B���k�+�qB"0��@.`^�x\[�\P( �>Mq8�[rI�I�^Fr��ȍ�pJ#y���3I�@F��:%k�s���,�qZz.�����Pw\��X˥�u���,£*W������y���O�V��2G�)(<)�<��$���ō�a|��7f6`�ZP�
��̝�b���"i��+ז�`��]Gq���e+��Ah��2p(/@x@?@Olh�F�M�Ta���b`��!̨A��@�hl5���Q�	I\)Lƴ� �=D��͟7`F03@�&����{��>����&?�T�6;O}��@�qZG�  �sիKy�K�XʀC�~r�	X
$ăh�O����c'?���[?��r՜�׶�w��wyv�A��<k�(57	A0!�.��<Yn$ ��'��Q��Z<�p�ҙ�b��Ay���2Β���<�$��|^b,� *0���7�6���mo`��mCP��G�{���bޥ.'��v\�r�=_ѕ�M?ԭ����^�p;z̟��q���,7�5?P4���'�FV�0TgRK�z-�q�K~�����3�4Mg�P���ű�us-�z��N?f������2�|�R���a�s�7��8ki�	5�M�����<�(za�P�H �r `P`��&ª-mP��������I4�3%�۹=��S�J����>n���^��T"S-PEF\����77��<��
M,�>>++__�11����_��M�,,
��<���\F^BX`���#BBO`<���+J126&/' 0���������0'H/L)��dŬ��Z�
Ƒ����3j�ȱ�Ǐ+�tg$I�S�D��&P�dl`@��	)��4���Om۶�Z�HI=�
 hЀ!n��3έsw�k~�-��mA��׮gܽS��ܽ{�� �
�|n�pah?:\���A�
:LX�c�M=��#�*�ߔR��ኌo �@���� J�V�� �a����� $�P�L�8<��ر@#;admin/images/bulllets/0000755000352000025440000000000014373776770015433 5ustar  thediannthediannadmin/images/bulllets/heading.gif0000644000352000025440000000013011560453622017472 0ustar  thediannthediannGIF89a�fff���!�,/����\l�F���l!D=^䌩�N�Xnh��H��
��\�\"�;admin/images/bulllets/Thumbs.db0000644000352000025440000001500012460016476017161 0ustar  thediannthediann��ࡱ�>��	����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������	
������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Root Entry����������L k5�@1�������������Catalog������������3�2����5B	

 !"#$%&'()*+,-./012D4C6789:;<=>?@AB������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������JFIF``��C




��C		

��``"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?��Ϗ-�=�0�6�t�}B�ʵ�2�V��|��NL|K��p������G�7�a���[Kxe�4�,�4�Y~M6�@���s�3��?�ߌ�/��;e��^���w�˟������a�+Gj�Ϊͳ\Mia��Fq��F��}t���{1����1�.�O�U��e���&7|E�~������=�������//��	o��~�D��M>/���@�u��H���*?�8�������8w�?/�D���[M��@�n��+6d�{�8�T�h�Ў�W����i?�<?�>���L���~�I���|V���IЙtVա]<~�.XM"�8���}���cg�@$9?�u����^�4��I��ȇW
'�?�ߒG���Bx�}�������t�Bx�}�������u�y����O������?���$kˇ���8��hO�ϴ��4�?�.��hO�ϴ��4�?�.�_4��ʏ4��ʏ������Aˇ���8��hO�ϴ��4�?�.�O
|K�|Y,Q��I�,"I�eeeW�Ip6�A 1�lhy���k[����w^Z����&�Qet@>�q���:���gُ�iF�E(�Q�\���[���t�N-Fvo{�r����?���M0W���}o�����kI����Ö����^����ig�AP�q��H�>����x?�@ ��{���`�)d8U�g?	:)�aPz�����r��?���r���#�d��zj?ír�8�[H��>e���yO%bLl^���u�(����O��=��9.�&x-��l�#&`H�8��xo��z7�-g���?_G��kR�<O�f�R���b=�j�d+�;��H88��f�v�@������?U���-�������R	��\4N�2�K('�����|8]7[���g��0C�y�j�c�۷oݜ��^��~۾�V��x~�J�w���v��Ŵ5i ,Dā��?C[���o|0�u����J��U���hc�tf��$VQNq�+��a������s]�7��׎�<��I��H�*��Uҹ��������_}�2�2�����}A�Ry�\9K�Xl���?���HnkS̬mQ�x�_���Hnk�
�ڨ���q)GIzK�g#�<��'�nۛ{�}?�UZ������v��r_�ɪֽ��K��#h��.>�����u�nۑ�n�23�^k�~�/�Ν��|j��Ȃ���h���Iګt�1'�&�J�?������ҙnjVT�¿$^��Y�ǰ"(���s��{\��G�(G�C�x�‘�C+$�
���R�\Is�ٕ���K���铎W�7�|`�/��
�wگ�`��m�P������Y<�q�ʲ��$d��U���l�37����>�Wמq�|F��|G�/���/�N/a�WRMTyp�Bш<��Q�ٷ�<�+�4RG�����?�'6�u�>�y��x��m�_	�t:���ǯ�^�}��c��o�֠6����-~���@{��_���	�|O�'�"��#���o���ee~s�9;ǭg�V�(�(�r|�zɾl��c��3��]�+2�x����H�k�������\A�ї��&\ox�E�d��`L�+Z��w,A1@H�|��k��������1��X�+��?���#Bn)Ԟ��f��*Ӄ����$y��������x�ź޷w%��zF������!c�
]��$��y50�/u���Z�9��������)m���(�)�_�n���/���P��"����Դ��G��3��L��P��TՅ�>tm�%Y>�#�3^��R���2�q�N.������K>i��5[���=�ǹ��Y�
oj��K�{�p�,����[��?��\T�eTFώ|�_���u��^��S���L�js��&2������H��o2�_�<m��E��V���8���_�s�ҙ�F7����E�2�2�o��\76�,y�y�[��r�|�<ʭ�ޗ~{�qr<�<ʯ��Ѿ�����Ukw����~��H�)w�Z�ų������Gq]x'�ه�����U��T��&7T$x������[Q�տxo�v�.֮�t9ukMBh�c���و"��	$C�1�#9�@���o�	��g���0��>�]�i�m5	4ӓi�����G��"�]We�M�Ѽ�?ٞ-��>�����ٞ-��>�����p}O�@�?�\������������o4n5�g��O����?�?G�g��O����?�?G���S����h���K�ɷ7���3ſ�'��]����3ſ�'��]����x�����A�h���K�ɷ7���3ſ�'��]����3ſ�'��]����x�����B��?���%�dۍ3Ml�����?���S?�<[�B}���������:%�6�k�K-��sq���Q�wf@ya[�����4���p�I)&�```��j^5�{A42CD7B6-E9B9-4D02-B7A6-288B71AD28BA}*r�(��6���JFIF``��C




��C		

��"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?���M�K�x;_��O�3]�팟��m��J��M3,O$�I,��]�Tʠ
�o@��'யu�Xxc�V6� �>�e�hZ���X�qs,���شS�7�������	-|#���F����n�{kI|@���b]69U���?ݫ>̾�v��8�-u;�k�I�f��k��h���?R���P�I<�.����99b���heading.gifm[c��*5-R/�}Wg���admin/images/log_out.gif0000644000352000025440000000102311560453560015720 0ustar  thediannthediannGIF89a�����^^^���333���>>>���3~�R�����G����ꙙ�K��e��fff���t��@��A�د��NNNN��#b����}}}���!�,�@�`'�Ռh��l�p,�o���`ɲ�h…C�9�N��n����IgA}�bG��Y���+1�@&x��qZ96#`NH[[�(Xf��Hk�D�A�A�r�)
��|/�*�-�.��-���	�
�
*\�"���"��؀X��"_#��"������7>���R�C;t�XP�֋
�eK�(6D�(#�
B���S�d�x���8�H�2��D�����:�!�-XĈPL�9��)��
Q�xDNȽw�d�H�l��0 FD�b�
@,í�o�]�*�`�$ܲ�I����	��� *�3X@Y�
= +lrQ3d�=<r��!;admin/images/upload_photo.gif0000644000352000025440000001465111560453616016762 0ustar  thediannthediannGIF89a4��ښb�U�ߦ��>�9R�N)�%���p�lm�j@�<v�rb�^&�"���-�)�ٖ�䲓א��I�D��E�A�V�P:�6���2�-��������U�Q���A�<g�c��1�,���9�5}�z���q�m���{�ܞ5�0�ݢ)�$��Ų㰫ݩ���������!���%� O�K�ܜ������ޝᛢ䠭����ݎ�짫��衘�t�㙄��V�S������ٌ�ޔ�ڌ�����!�`�[�ݔ�օ����Y�U�Մs�p��ӈ�Ղ��#�9�5|�y�ݓ�Ԋu�rj�gi�fE�A^�Z�҆m�jL�Hy�u=�9�ژw�t8�3}�zH�Dk�h�|N�J\�W-�)o�k'�%1�-e�a��a�]�ؔy�ui�e<�7��ڎ,�){�w�фF�D|�xr�o�ׇk�g���7�4q�n��̦ޤ��}&�"�ޒK�G��œĒ)�%�̡t�s~�{�ߘ��}�Ӊ�����J�E5�2e�c5�1��~��s�o��ۏz�w�ձ�؉p�l�夕ؒ���{����<�9a�^�Ս�Ռh�da�]�؅����������䞴�g�c�с�䚤؈��ۋc�_��l�h��{�颢ݠ#���D�@��b�]c�_:�5�������諨ޥ��j�f�ݜ�w������d�a��փ��ڍ��ڢ��w�]��l�ל\�X�����x�u�ۛ��������S�P8�4�ΉZ�W��8�-��������!�,4�5����(\Xx!�!Ԅ @�B�:t�Ȉ!�D� C�I��ɓ(SR�8�H�\��Ȱ�͛8s��ɳ�ϟ@�.�"��
Ȗ
\�,F=~\ H硇
 :t�P�Cz^�ѫA��r~��¶-[�n��v-]/s�捻���&��
,�-`
)^̸��Ǎ;�,�2�Œ'c�̹��ϠC3.�ɏ,WSs���5��%e���Oٍ�7&S�N�80/Lp�X�|y��͟Cw�|z�ӱC�n�;su�O��M�����ӫ_Ͼ�����C�TCS�(��Ϳ�q�#q�M�n&x`�
2ؠ��-��R��v����� �(�$�h�(�8��C�2Ȕ��?�h�8��͎����@)�Di�H&��L69�� �L4X3�VXf��\v��`�)�d�i�h���jΰ�6H����i�x��vf���{���y���wf�h��>�蠊F*餔V��$�f�香F����Z*꣎��(��Z��yn�D����8��j뭸��Į���+�R�
���K���"����J�l�����Vk���.k��t��\K,�ۖ[n�榫���+&�`�2½��/�(��/,�T�Ap�\��+�����L1�F���� �,��G�0(���0&O���0��q�-�L��8�<��<�����,2�Ʋ,ڀpC-,����2�P��+�0��Xg}�\��]{�u�_�=v�e�}6�ۄ-��۴�u�q���w��7�]O��$/.��/��UOMu�z��8ސG~����㒛���Q�\�
�h�_�����3�� ���.���n;��~{��{���{�;q�A���|��C0}��W���_���/H �������3/��:⣿���s�=���{�����?��}��>�v�lh#h�'(���v��.raP�� a��D��`Aa�\�B(�bC\���daq��
r�@"�IH�/���$��/�*$�	�h��P�"�"��E ��?b	QHFV���m(�)�0�F��
��:B�",bY(�9���Hb^gA	6 �h��&&��`A':A:,⒕�$"��N.����C'X�S#�O|�)>A�J������*#ɂZڲ�����:|�*��P�S����e'���N.S��l�([�IhF󖒜�-?�MnJR��'(��~!�NL�1��L^Zr��d&���K�S��l'/��LfV����)ϙ�0�����E38����"�
��Cڰ�=dT��iH�ARGp*H�'�y�7P��EiJSAӚZ�8��Fw��4���&�j�
�)3v�T�:��ŨL/zT�Fu�7��Mk�U�nԩ�h�R{��O����<�KS���6�a�(O;J׎�T�<ݨ]1�Ѽ~��G�jU�.�0�9�Y�x
-�,'K�MR4>Ȭ2p�Ch���)4KZd����g3{{��ՐF4{i�(���-fI�e����ͬ*j�=�t/E�n�{�la
�mp}�R�`�.k/�U|�ʐnf3P�jD7���r��R��AkU�\����%�j]�Ҷ���P�-�b����.��7�U�w}0�K`���l�=��
��)
�X�6�{����p�3��	@�|��C	臍�a����;V�׸�����H�J8��9�l!y�����%�a[�1��!�~p� � ��A���?�r?����ȡ�l�1��Ŏ
��-�X	�̀��,���cVB��|�C���h�ad<���:��?x|gD�P��|�-@�ˈ�DJ�
A��K��>��Yw�gN3��.t�
�A���
��	��2��]��ԓ>r���7 ۣ6���\>��˛8D�M�EY	���=�L�!k�v���GSZ��v��
����t(�`Ny	
�w�k�5�[�5��ā�c+0���΃�#}���ݤ����)�n<`�Ƥ8�&�Me<����À� �5P`y,��9�"������xy)L���]��((`�Vȹ0�ƹ	7|�`޵�M�rN���}��?|w � 쁆5)F�m�ߘ�7���v�s�b�t?�P�>��K��˕�CSZ| $�^�X`00GM���l���ߝ��!wބ�3�zm�B�|�¹E1{M����E������8���	Ȼx���m,{ gB���&4��ś�G���kl�˭h�,ps%�}�JX�C�~�7���7����۸��x�Z�{��	��q���	��5V
}�p5&
�`k��	�7Ё70z&��.0��pPj�z��~�~w�	+xdb�Gi�`
p�|�n}0
@�Q�n38jxhE�xH=hc�|6v}p0�c
�g|z������Y���b(v�w~�[�I(���[�]�kZЄ�8�U�G�9��C�؇0PjU�xlx�����׈���z�@�7f�@�����/{����H�K�wg���Ѐ��yp��)�n�@��xU`
�H����xh��q�׉�NJ�����z�(w����	�Їt�e��H��H���.��熇�Ȋ�h��8hc�Njcp�;V[���!ЊH���H��~�xdU0
�uGfy���p�
gcK`��H�8ic��		s`|ю�Wtxc��|��c@&�
�����V	���|
���0���(t}8�4I�0����׸�6�5�	$��
�����q��荫����X	���H�Z���s�@�d�
.���vh�������Z0vW	0_�e��;��� �X�����H�'	�x9j&�n�P��7�0��5)t������8��:�cW�v�Y�eY�`yhA9>��P�s��g��o�v{yy|�V�z�wx�$@�5F���fyh��jycl9���8H��&�֘�ey��i�'�	�P�@�	b ��	B'�ک�˙�{ؙ�
|���ب�����iw@�$@�̹�Н�&��IiJ
.@�_)pJP	.��;fyć����ٟ��ٜ��
b`����|i��I�hy��	|���	���X���$ʙꝂ	�r����':�{�	\y�鄚`���*�q,��\V
z`�hyn@�.
�	�Yc�@*�ʐ��N���oz֞���by�)���鞮�d�K �Q��$j	�`	C��p��s����>PzP��8�~Z��V�������)�~��w�y���tJ}ui�}:H��0�������8�AI�z���ِ���@|����x���該��P�����s�c`	�`	�����
�U��7�	$�
����)�9f�w��x������f���
9�\f�s�r�7�	y��
������9�غ�Ȫ�"ɮ�WjwƀwXɊ�꫖p��{�(����	��f��S
	�P����rsG�> wJ��8�[�����qU��h
Kjc��))g�����:��{#k|���Z�z���	�x���6��xg��r5�~�{�H�np�X��Wv�	u�eT�uس�kz���V����W�c��`�C�=ˉ�vgx��izv�pK��s��t{|�9w�ǵ맷d;���cFe�;�!�}~���u�@vn�wXK��7��'on����@Fp��x�hxu���ːZ�6	� �e�eP���|�xйap�vg��}.h���`�{��`�5���>����Z{�&7��K�4�x�7��/h���/��Q�	��o�{��7��v�����}��g�v�F
Z�0G��q��� sv7�5F����&@��r�ӗqyw�&��}@�5vw��g��vW;�[g�sg�&���ׂ«�+g�����@�ç��	K@���g\���[@����PŀpK�t�Fd|0�|pj}xPy��6�
�:���@�w`���
`n�f<��`s:��0�g��jpvL�`��b<ƻ�K	���{��NJPg�Fm��}}�pǶ�rh��`�i}e|ƒ<x����Ȅ|Ōl�Y� ol�Ǝ<ƜLPu�5���
}�lb��x�u���oV��ʼ��,o�dJ�o[PjP�J��u�͗�k��ޜ:��٬u@�V�v���ń|	��ǻ���\�j��W�o��q�tVp	���l��Y6�bL��� �V�e`����Η��՜�:0n�\��v��}	V����:�:�����]���leg��k�l�h�h���<n]�=�M���<x��`<'����
N��P
c	`v�o����MЀ@
���K��b�dM��[
hm���[��,��6nm^�K�ih����K��J�{}���o}���_�Y��%��j��h�ؒ��Y��%��J����{��b�̀��e�ؖ��\}���ת�ھUٖ�ڥ�[J�TmPM���b��b-fl�cT�f̬�T]�іQ-m�6ܚ��i0�����Lݟ��a]�čܑ�����R��Q��Җ�֭ݘV���x���<��f�=�����
��L����M޶=����½̛=���ܵ}�
���-����l�nۑ�-v+&�`�@'�� �d0�
���Ɩ��v�-����}��4�*��5��M�3��4����;n���%~�/��*��L~�2>��m�)��T~�*��7~�U��8^�+^�Fn�I��M�X��*��_����,v�9��RN�K^�#�@[`��~��}N�N	wp!~�x�^�N	���~#��^�d閞�G~�w~�.�N���^�N陎�P賀��!>�>�.���w`��蹮�~�������^�^��N�N	���`	� ��
�~��n퍰퍀��������^������~��`������^��~�n����>�������\�n���>����^����������~� ���
"?�$?�p�Q��Q�,�*��0�-�?�4_�6�8?�*�<��0��(��9��1/�Co�E�G��@�/��/��)_�I_�2O�J��O�%�
��
�@�f�h��hl�W��pl_t_�v�x��v��|��l���s�~�����t�ep��O�������_����o�i����p
������_�����������������?��_����o��� �
�@BpAP���ȟ�ʿ��������?��_���؟��B��ѐ�/� �0
Cp���������?��_����������Ӛ	I&�7T����LH�cӦ�X��E�5n����G�!E�$Y��I�%X��`�.�E���fߐ�����O�A�%Z��Q�I�.e���ӟ߾
�E� �"2�;��%��n
![��Y�iծe���[�q�Υ[��]�g�&+x�ב`EP���*�h��\�I��cȑ%O�\��e̙5o����gСEO�%+��h�R�L���`΢��e�v�ܹu����o�'^�q�ɕ/g�۶1_�R[��z�)b;;��w��ŏ'_�y��կg��{���;sF}u���Y�*��p@4�@TpAt�A#p��*��B3�pC;��CCqDK4Ѻ�;admin/images/fac.gif0000644000352000025440000000104212317670512015001 0ustar  thediannthediann�PNG


IHDR�W�?tEXtSoftwareAdobe ImageReadyq�e<�PLTE-V����0Y�)S�Yx�3\����+T�(R�!M�~��0X����v��'R�������/X����s��.W�*T����Im�#N�7^���֞��a�Lo����<b�:`�)T�1Y�0Y����Ei�2Y����>d�w��3[�+T����Rs�2[�?e�}�����u�� K�'Q�&P�~�����+U���拡�F����J�,V����������*S�4[�4\����3[�/W�nKGa�IDATx�\�g[A���� v{/t����L���!s��i��>�N&�q��"�A�w����U�N�Bp�Ok��.�A����-��� q蔟*�y9n'��J�� �a?wK�����<9��m������j��9���
|�3�����?J���B��k9���@�^���s�]�+�}Ic��2�Y�O�6�6SO���u�O���u5�ʓ5E��
0�tb��q�IEND�B`�admin/testimonial_f.php0000644000352000025440000002227714373673646015716 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
ob_start();
$test_id=$_REQUEST['test_id'];
if(is_post_back()) {
if(!empty($test_id)){
$category_url=ami_crete_url($test_given_by);	
	////////////****************** IMAGE RESIZING START HERE *****************************//
//********** Code Created By Amitabh Kumar Sinha : Web Developer : Webkey Network Pvt. Ltd. *****************//
//**********  DATE : 31:07:2014 *****************//
//------------FUNCTION TO GET IMAGE EXTENSION START---------------//
 function getExtension($str) {
         $i = strrpos($str,".");
         if (!$i) { return ""; }
         $l = strlen($str) - $i;
         $ext = substr($str,$i+1,$l);
         return $ext;
 }
 //------------FUNCTION TO GET IMAGE EXTENSION END---------------//
 if($_SERVER["REQUEST_METHOD"] == "POST")
 {
 	$image =$_FILES["file"]["name"];
	$uploadedfile = $_FILES['file']['tmp_name']; 
 	if ($image) { 	
	    $DelImage=db_scalar("select test_image_name from tbl_testimonial where 1 and test_id = '$test_id'");
	    @unlink("../test_images/$DelImage");
 		$filename = stripslashes($_FILES['file']['name']); 	
  		$extension = getExtension($filename);
 		$extension = strtolower($extension);		
		$imgNAME = $category_url.".".$extension;

move_uploaded_file($_FILES['file']['tmp_name'],"../test_images/$imgNAME");
}else{
$imgNAME=db_scalar("select test_image_name from tbl_testimonial where 1 and test_id = '$test_id'");
}
}

////////////****************** IMAGE RESIZING END HERE *****************************//
	
	
$editsql="update tbl_testimonial set 
			test_given_by='$test_given_by',
			test_image_name='$imgNAME',
			test_comp_name='$test_comp_name',
			test_status='$test_status',
			test_description='$test_description',
			test_add_date=now()
			where test_id='$_REQUEST[test_id]'";
			db_query($editsql);
			set_session_msg("Testmonial Updated Successfully !");
			header("location:manage_testimonials.php");	
			exit;		
}else{
$category_url=ami_crete_url($test_given_by);
	////////////****************** IMAGE RESIZING START HERE *****************************//
//********** Code Created By Amitabh Kumar Sinha : Web Developer : Webkey Network Pvt. Ltd. *****************//
//**********  DATE : 31:07:2014 *****************//
//------------FUNCTION TO GET IMAGE EXTENSION START---------------//
 function getExtension($str) {
         $i = strrpos($str,".");
         if (!$i) { return ""; }
         $l = strlen($str) - $i;
         $ext = substr($str,$i+1,$l);
         return $ext;
 }
 //------------FUNCTION TO GET IMAGE EXTENSION END---------------//
 if($_SERVER["REQUEST_METHOD"] == "POST")
 {
 	$image =$_FILES["file"]["name"];
	$uploadedfile = $_FILES['file']['tmp_name']; 
 	if ($image) { 	
	    $DelImage=db_scalar("select test_image_name from tbl_testimonial where 1 and test_id = '$test_id'");
	    @unlink("../test_images/$DelImage");
 		$filename = stripslashes($_FILES['file']['name']); 	
  		$extension = getExtension($filename);
 		$extension = strtolower($extension);		
		$imgNAME = $category_url.".".$extension;

move_uploaded_file($_FILES['file']['tmp_name'],"../test_images/$imgNAME");
}
}

////////////****************** IMAGE RESIZING END HERE *****************************//
$testsql="insert into tbl_testimonial set 
			test_given_by='$test_given_by',
			test_image_name='$imgNAME',
			test_comp_name='$test_comp_name',
			test_status='$test_status',
			test_description='$test_description',
			test_add_date=now()";
			db_query($testsql);
			set_session_msg("Testmonial Added Successfully !");
			header("location:manage_testimonials.php");	
			exit;		
    }
}
if($test_id!='') {
	$result = db_query("select * from tbl_testimonial where test_id = '$test_id'");
	if ($line_raw = mysqli_fetch_array($result)) {
	 @extract($line_raw);
	}
}
?>
<script src="ckeditor/ckeditor.js"></script>
<style>
p.fck {
    width: 90%;
	float:left;
    margin: 0 auto;
 }
</style>
<link href="styles.css" rel="stylesheet" type="text/css">
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead">Add/Edit Testimonials</div></td>
              </tr>
            </table>
            <div align="right"><a href="manage_testimonials.php" style="font-size:12px; font-weight:bold; margin-right:15px;">Back to Testimonials List</a>&nbsp;</div>
            <form name="form1" method="post" enctype="multipart/form-data">
              <table width="95%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm">
                <tr>
                  <td width="20%" class="tdLabel">&nbsp;</td>
                  <td width="80%" class="tdData" style="padding-left:7px;"><strong><font color="red">
                    <?=display_sess_msg();?>
                    </font></strong></td>
                </tr>
                <tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Posted By:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><input name="test_given_by" style="width:350px; height:28px;" type="text" id="test_given_by"  value="<?=$test_given_by?>" class="textfield"  ></td>
                </tr>  
                <tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Company Name:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><input name="test_comp_name" style="width:350px; height:28px;" type="text" id="test_comp_name"  value="<?=$test_comp_name?>" class="textfield"  ></td>
                </tr>  
                 <?php if($test_image_name){ ?>
                <tr>
                  <td width="177" class="tdLabel" style="font-size:12px; padding:5px;">Current Image  :</td>
                  <td width="721" class="tdData" style="font-size:12px; padding:5px;"><img src="../test_images/<?=$test_image_name?>" height="70" width="70"  border="0"> </td>
                </tr>
                <? } ?>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:5px;">Image :</td>
                  <td class="tdData" style="font-size:12px; padding:5px;"><input type="file" name="file" id="file"></td>
                </tr>                             
                <?php /*?><tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Mobile No.:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><input name="test_phone" style="width:350px; height:28px;" type="text" id="test_phone"  value="<?=$test_phone?>" class="textfield"  ></td>
                </tr>
				
				<tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Country:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><input name="test_country" style="width:350px; height:28px;" type="text" id="test_country"  value="<?=$test_country?>" class="textfield"  ></td>
                </tr>
                
				<tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Title:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><input name="test_title" style="width:350px; height:28px;" type="text" id="test_title"  value="<?=$test_title?>" class="textfield"  ></td>
                </tr><?php */?>				
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Description:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><p class="fck">
                      <textarea cols="80" id="editor1" name="test_description" rows="10"><?=$test_description?>
</textarea>
                      <script>

			// Replace the <textarea id="editor"> with an CKEditor
			// instance, using default configurations.
			CKEDITOR.replace( 'editor1', {
				uiColor: '#ACACAC',
				toolbar: [
					[ 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],
					[ 'FontSize', 'TextColor', 'BGColor' ]
				]
			});

		</script>
                    </p></td>
                </tr>
                
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Status:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><select name="test_status" style="width:200px; height:26px;">
                      <option value="Active" <?php if($test_status=='Active'){ ?> selected="selected" <? } ?>>Active</option>
                      <option value="Inactive" <?php if($test_status=='Inactive'){ ?> selected="selected" <? } ?>>Inactive</option>
                    </select></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">&nbsp;</td>
                  <td class="tdData" style="font-size:12px; padding:7px;">
                    <input type="image" name="imageField" src="images/buttons/submit.gif" style="width:100px; margin-bottom:25px;" /></td>
                </tr>
              </table>
            </form>
            <?php include("bottom.inc.php");?>admin/header.inc.php0000644000352000025440000000210512451527672015035 0ustar  thediannthediann<link href="styles.css" rel="stylesheet" type="text/css">
<div id="header">
<table width="100%"  border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td width="50%" bgcolor="#295D9C" class="main_header"><a href="index.php"><?php echo SITE_NAME ?></a></td>
    <td width="50%" height="61" background="images/abstract.jpg"></td>
  </tr>
  <tr>
    <td height="1" colspan="2"></td>
  </tr>
  <tr bgcolor="#92B2D6">
    <td height="6" colspan="2"></td>
  </tr>
  <tr>
    <td height="1" colspan="2"></td>
  </tr>
  <tr>
    <td height="66" background="images/top_bg.gif"><img src="images/control_panel.gif" alt="Control Panel" hspace="20" /></td>
    <td height="66" valign="top" background="images/top_bg.gif"><table width="100%"  border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td height="25" align="right"><a href="logout.php"><img src="images/log_out.gif" alt="Administrator Logout!" hspace="10" border="0" /></a></td>
      </tr>
      <tr>
        <td height="41" align="right">&nbsp; </td>
      </tr>
    </table></td>
  </tr>
</table>
</div>admin/manage-inner-header-flash.php0000644000352000025440000001073614373671703017730 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
$header_flash_id=$_REQUEST['header_flash_id'];
$DelImageId=$_REQUEST['DelID'];
 if(!empty($DelImageId)){ 
   $imageToDel=db_scalar("select header_flash_image_name from tbl_header_flash where 1 and header_flash_id='$DelImageId'"); 
   @unlink('../uploaded_files/'.$imageToDel);
   $sqldel="delete from tbl_header_flash where 1 and header_flash_id='$DelImageId'";
   db_query($sqldel);
   set_session_msg("Inner Header flash Updated Successfully !");
   header("Location:manage-inner-header-flash.php");
   exit;
 }

if(is_post_back()) {
if (isset($_POST['submit'])) {
    for ($i = 0; $i < count($_FILES['file']['name']); $i++) {
	     $imgName=$_FILES['file']['name'][$i];
		 
		   //**** Change Duplicate Image name Start Here****//
		 $ext = substr($imgName, strrpos($imgName, "."));		 
		 $imageDupli = db_scalar("select count(*) from tbl_header_flash where 1 and header_flash_image_name='$imgName'"); 
		 if($imageDupli > 0){
		  $imgName = basename($imgName, $ext);
		  $imgName = basename($imgName, $ext) . rand(1,1000) . $ext;
		 }else{
		  $imgName = $imgName;
		 }
		 //**** Change Duplicate Image name End Here****//
		 
         if (move_uploaded_file($_FILES['file']['tmp_name'][$i],"../uploaded_files/$imgName")) {
			
			    $sql = "insert into tbl_header_flash set 
		                   header_flash_status='Active',
						   header_flash_image_name='$imgName',
						   header_flash_type='Inner',	
						   header_flash_add_date=now()";
						   db_query($sql);				
            } 
			       
        }
		set_session_msg("Image uploaded successfully !");
		header("Location:manage-inner-header-flash.php");
		exit;
    }
 }
if($headerID!='') {
	$result = db_query("select * from tbl_header_flash where header_flash_id = '$header_flash_id'");
	if ($line_raw = mysqli_fetch_array($result)) {
		@extract($line_raw);
	}
}
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<link href="imgstyle.css" rel="stylesheet" type="text/css">
<script src="jquery.min.js"></script>
<script src="script.js"></script>
<? include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead"> Add/Edit Inner Header Flash Image</div></td>
              </tr>
            </table>
            <div><strong class="msg" style="margin-left:500px; margin-bottom:5px;">
              <?=display_sess_msg()?>
              </strong></div>
            <div style="width:100%;">
              <?php			
			   $sql_fetch = db_query("select * from tbl_header_flash where 1 and header_flash_type='Inner'");
			  $cntDATA=mysqli_num_rows($sql_fetch);
			   if($cntDATA > 0){
			   while($DATA = mysqli_fetch_array($sql_fetch)) {
		          @extract($DATA);
             ?>
              <div style="width:120px; height:140px; margin-top:10px;border:1px outset #fff; float:left; margin-left:8px;">
                <p align="center"><img src="../uploaded_files/<?=$DATA['header_flash_image_name']?>" width="90" height="90" /></p>
                <p align="center"><a href="manage-inner-header-flash.php?DelID=<?=$DATA['header_flash_id']?>"><img src="images/no.gif"></a></p>
              </div>
              <? }} ?>
              <div class="cb"></div>
            </div>
            <table width="55%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm" style="border:1px outset #fff; margin-top:5px; margin-bottom:10px;">
              <tr>
                <td class="tdLabel" style="padding:8px;"><div id="maindiv">
                    <div id="formdiv">
                      <form enctype="multipart/form-data" action="" method="post">
                        <div id="filediv">
                          <input name="file[]" type="file" id="file" multiple />
                          <span style="font-size:11px; color:#E60000; font-weight:bold; margin-left:5px;"><b style="color:#000000;">Image Size ></b> width :  1000px, height : 400px</span></div>
                        <br/>
                        <input type="button" id="add_more" class="upload" value="Add More Files"/>
                        <input type="submit" value="Upload File" name="submit" id="upload" class="upload"/>
                      </form>
                      <br/>
                    </div>
                  </div></td>
              </tr>
            </table>
            <?php include("bottom.inc.php");?>
admin/job_f.php0000644000352000025440000001046412453330212014103 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
ob_start();
$job_opening_id=$_REQUEST['job_opening_id'];
if(is_post_back()) {
if(!empty($job_opening_id)){
$sql="update tbl_job_opening set 
				job_opening_title='$job_opening_title',
				job_opening_description='$job_opening_description',
				job_opening_status='$job_opening_status',
				job_opening_add_date=now()
				where job_opening_id='$_REQUEST[job_opening_id]'";
				db_query($sql);
				set_session_msg("Job Updated Successfully !");
				header("location:manage_jobs.php");	
				exit;		
}else{
$sql="insert into tbl_job_opening set 
				job_opening_title='$job_opening_title',
				job_opening_description='$job_opening_description',
				job_opening_status='$job_opening_status',
				job_opening_add_date=now()";
				db_query($sql);
				set_session_msg("Job Added Successfully !");
				header("location:manage_jobs.php");	
				exit;		
    }
}
if($job_opening_id!='') {
	$result = db_query("select * from tbl_job_opening where job_opening_id = '$job_opening_id'");
	if ($line_raw = mysql_fetch_array($result)) {
	 @extract($line_raw);
	}
}
?>
<script src="ckeditor/ckeditor.js"></script>
<style>
p.fck {
    width: 90%;
	float:left;
    margin: 0 auto;
 }
</style>
<link href="styles.css" rel="stylesheet" type="text/css">
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead">Add/Edit Job</div></td>
              </tr>
            </table>
            <div align="right"><a href="manage_jobs.php" style="font-size:12px; font-weight:bold; margin-right:15px;">Back to Job List</a>&nbsp;</div>
            <form name="form1" method="post" enctype="multipart/form-data">
              <table width="95%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm">
                <tr>
                  <td width="20%" class="tdLabel">&nbsp;</td>
                  <td width="80%" class="tdData" style="padding-left:7px;"><strong><font color="red">
                    <?=display_sess_msg();?>
                    </font></strong></td>
                </tr>
                <tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Job Title:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><input name="job_opening_title" style="width:350px; height:28px;" type="text" id="job_opening_title"  value="<?=$job_opening_title?>" class="textfield"  ></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Job Detail:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><p class="fck">
                      <textarea cols="80" id="editor1" name="job_opening_description" rows="10"><?=$job_opening_description?>
</textarea>
                      <script>

			// Replace the <textarea id="editor"> with an CKEditor
			// instance, using default configurations.
			CKEDITOR.replace( 'editor1', {
				uiColor: '#ACACAC',
				toolbar: [
					[ 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],
					[ 'FontSize', 'TextColor', 'BGColor' ]
				]
			});

		</script>
                    </p></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Status:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><select name="job_opening_status" style="width:200px; height:26px;">
                      <option value="Active" <?php if($job_opening_status=='Active'){ ?> selected="selected" <? } ?>>Active</option>
                      <option value="Inactive" <?php if($job_opening_status=='Inactive'){ ?> selected="selected" <? } ?>>Inactive</option>
                    </select></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">&nbsp;</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><input type="image" name="imageField" src="images/buttons/submit.gif" style="width:100px; margin-bottom:25px;" /></td>
                </tr>
              </table>
            </form>
            <?php include("bottom.inc.php");?>
admin/script.js0000644000352000025440000000126712453060416014164 0ustar  thediannthediannvar abc = 0; //Declaring and defining global increement variable

$(document).ready(function() {

//To add new input file field dynamically, on click of "Add More Files" button below function will be executed
    $('#add_more').click(function() {
        $(this).before($("<div/>", {id: 'filediv'}).fadeIn('slow').append(
                $("<input/>", {name: 'file[]', type: 'file', id: 'file'}),        
                $("<br/><br/>")
                ));
    });


    $('#upload').click(function(e) {
        var name = $(":file").val();
        if (!name)
        {
            alert("First Image Must Be Selected");
            e.preventDefault();
        }
    });
});admin/product_list.php0000644000352000025440000003412214373673351015555 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
$catid=$_REQUEST['category_id'];
$categoryPid=$_REQUEST['category_parent_id'];

if(isset($_REQUEST['Delete'])){
if(is_array($_REQUEST['arr_ids'])){

$check=$_REQUEST['arr_ids'];
$SUB=count($check);

function del_sub($CAT){
$select=mysqli_query("select * from tbl_category where category_parent_id='$CAT'");

while($SQL=mysqli_fetch_array($select)){
del_sub($SQL['category_id']);
$delete=mysqli_query("delete from tbl_category where category_parent_id='$SQL[category_id]'");
//DELETE SUB CATEGORY AND PRODUCTS MORE IMAGES START
$del_image=mysqli_query("delete from tbl_category_image where category_image_cat_id='$SQL[category_id]'");
//DELETE SUB CATEGORY AND PRODUCTS MORE IMAGES END
}
//DELETE ALL CATEGORY MORE IMAGES FROM FOLDER START
$img_selct=mysqli_query("select category_image_id,category_image_name from  tbl_category_image where 1 and category_image_cat_id='$CAT'");
while($sqlsel=mysqli_fetch_array($img_selct)){
$imgName = $sqlsel['category_image_name'];
@unlink("../category_more_images/$imgName");
}
//DELETE ALL CATEGORY MORE IMAGES FROM FOLDER END
//DELETE ALL CATEGORY IMAGES FROM FOLDER START
$ct_img = mysqli_fetch_array(mysqli_query("select category_image_name from tbl_category where category_id='$CAT'"));
@unlink("../uploaded_files/$ct_img[category_image_name]");
//DELETE ALL CATEGORY IMAGES FROM FOLDER END
$del=mysqli_query("delete from tbl_category where category_id='$CAT'");
$del_img=mysqli_query("delete from tbl_category_image where category_image_cat_id='$CAT'");

}
for($x=0;$x<$SUB;$x++){
del_sub($check[$x]);
}
}
}



if(is_post_back()) {
	$arr_ids = $_REQUEST['arr_ids'];
	if(is_array($arr_ids)) {
		$str_ids = implode(',', $arr_ids); 
		if(isset($_REQUEST['Activate']) || isset($_REQUEST['Activate_x']) ) {
			db_query("update tbl_category set category_status='Active' where category_id in ($str_ids)");
		} else if(isset($_REQUEST['Deactivate']) || isset($_REQUEST['Deactivate_x']) ) {
			db_query("update tbl_category set category_status='Inactive' where category_id in ($str_ids)");
		}else if(isset($_REQUEST['make_hot']) || isset($_REQUEST['make_hot_x']) ) {
			db_query("update tbl_category set category_is_hot='Yes' where category_id in ($str_ids)");
		}else if(isset($_REQUEST['remove_hot']) || isset($_REQUEST['remove_hot_x']) ) {
			db_query("update tbl_category set category_is_hot='No' where category_id in ($str_ids)");
		}else if(isset($_REQUEST['make_feature']) || isset($_REQUEST['make_feature_x']) ) {
			db_query("update tbl_category set category_is_featured='Yes' where category_id in ($str_ids)");
		}else if(isset($_REQUEST['remove_feature']) || isset($_REQUEST['remove_feature_x']) ) {
			db_query("update tbl_category set category_is_featured='No' where category_id in ($str_ids)");
		}else if(isset($_REQUEST['set_for_home_gallery']) || isset($_REQUEST['set_for_home_gallery']) ) {
			db_query("update tbl_category set category_for_gallery='Yes' where category_id in ($str_ids)");
		}else if(isset($_REQUEST['remove_for_home_gallery']) || isset($_REQUEST['remove_for_home_gallery_x']) ) {
			db_query("update tbl_category set category_for_gallery='No' where category_id in ($str_ids)");
		}else if(isset($_REQUEST['set_for_home_flash']) || isset($_REQUEST['set_for_home_flash_x']) ) {
			db_query("update tbl_category set category_for_falsh='Yes' where category_id in ($str_ids)");
		}else if(isset($_REQUEST['remove_for_home_flash']) || isset($_REQUEST['remove_for_home_flash_x']) ) {
			db_query("update tbl_category set category_for_falsh='No' where category_id in ($str_ids)");
		}
	}
	header("Location: ".$_SERVER['HTTP_REFERER']);
	exit;
}

$start = intval($start);
$pagesize = intval($pagesize)==0?$pagesize=DEF_PAGE_SIZE:$pagesize;

$order_by == '' ? $order_by = 'category_id' : true;
$order_by2 == '' ? $order_by2 = 'asc' : true;

$catgid=($_REQUEST[id]!=0) ? $_REQUEST[id] : 0;	 
$sql = "select * from tbl_category   where 1 and category_parent_id='$catid' ";
$sql = apply_filter($sql, $category_name, 'like','category_name');
//echo $sql;
$sql .= " order by $order_by $order_by2 ";
$sql .= " limit $start, $pagesize ";

$pager = new midas_pager_sql($sql, $pagesize, $start);
if($pager->total_records) {
	$result = db_query($sql);
}
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<script language="JavaScript" type="text/javascript" src="../includes/general.js"></script>
<? include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead"> Product list </div></td>
              </tr>
            </table>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="content"><?php /*?><form method="get" name="form2" id="form2" onSubmit="return confirm_submit(this)">
                    <br />
                    <table  border="0" align="center" cellpadding="2" cellspacing="0" class="tableSearch" style="width:300px; height:90px;">
                      <tr align="center">
                        <th colspan="2">Search</th>
                      </tr>
                      <tr>
                        <td class="tdLabel">Name</td>
                        <td><input name="subcategory_name" type="text" value="<?=$subcategory_name?>" style="width:200px; height:24px;" /></td>
                      </tr>
                      <tr>
                        <td>&nbsp;</td>
                        <td><input name="pagesize" type="hidden" id="pagesize" value="<?=$pagesize?>" />
                          <input type="image" name="imageField" src="images/buttons/search.gif" /><?php if($_REQUEST['subcategory_name']){ ?><a href="subcat_list.php?category_id=<?=$_REQUEST['category_id']?>"><span style="vertical-align:top; margin-left:5px; font-size:12px; color:#0000CC; font-weight:bold; font-family:Arial, Helvetica, sans-serif;">View All</span></a><? } ?></td>
                      </tr>
                    </table>
                  </form><?php */?>
                  <br />
				    <div align="right"> <a href="subcat_list.php?category_id=<?=$categoryPid?>" style="font-size:12px; font-weight:bold; color:#006633">Back To Category List</a> </div>
                  <div align="right" style="margin-top:5px;"> <a href="addedit-product.php?finalcat_id=0&category_parent_id=<?=$catid?>" style="font-size:12px; font-weight:bold;">Add New Product</a> </div>
                  <? if($pager->total_records==0) {?>
                  <div class="msg">Sorry, no records found.</div>
                  <? } else { ?>
                  <div align="right">
                    <? $pager->show_displaying()?>
                  </div>
                  <div>Records Per Page:
                    <?=pagesize_dropdown('pagesize', $pagesize);?>
                  </div>
                  <form method="post" name="form1" id="form1" onsubmit="confirm_submit(this)">
                  <table width="100%" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td align="right" style="padding:2px">
						<input type="submit" name="set_for_home_flash" value="Set For Home Flash" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#183232; border-radius:4px; cursor:pointer; width:155px;"/>
                          <input type="submit" name="remove_for_home_flash" value="Remove From Home Flash" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#CC0066; border-radius:4px; cursor:pointer; width:190px;"/>												
                        </td>
                      </tr>
                    </table>
                    <table width="100%"  border="0" cellpadding="0" cellspacing="1" class="tableList" style="border:1px outset #fff;">
                      <tr>
                        <th width="26%" nowrap="nowrap" style="font-size:12px; padding:9px;">Category Name
                          <?=sort_arrows('category_name')?></th>
                        <th width="9%" nowrap="nowrap">Category Image</th>
                        <th width="8%" nowrap="nowrap">Is Hot / Flash ?</th>
                        <th width="9%" nowrap="nowrap">Is Featured ?</th>
						<th width="9%" nowrap="nowrap">Home Gallery ?</th>
                        <th width="8%" nowrap="nowrap">&nbsp;</th>
                        <th width="9%" nowrap="nowrap">&nbsp;</th>
                        <th width="8%" nowrap="nowrap" style="font-size:12px; padding:9px;">Status
                          <?=sort_arrows('category_status')?></th>
						  
                        <th width="4%">&nbsp;</th>
                        <th width="4%"><input name="check_all" type="checkbox" id="check_all" value="1" onclick="checkall(this.form)" /></th>
                      </tr>
                      <?
							while ($line_raw = mysqli_fetch_array($result)) {
								$line = ms_display_value($line_raw);
								@extract($line);
								$css = ($css=='trOdd')?'trEven':'trOdd';
							?>
                      <tr class="<?=$css?>" align="center">
                        <td nowrap="nowrap" style="font-size:12px;"><?=$category_name?></td>
                        <td nowrap="nowrap" style="font-size:12px;"><img src="../uploaded_files/<?=$category_image_name?>" height="60" width="60"  border="0"></td>
                        <td nowrap="nowrap" style="font-size:12px;"><strong><?=$category_is_hot?> / <?=$category_for_falsh?></strong></td>
                        <td nowrap="nowrap" style="font-size:12px;"><?=$category_is_featured?></td>
						<td nowrap="nowrap" style="font-size:12px;"><?=$category_for_gallery?></td>
                        <td nowrap="nowrap" style="font-size:12px;"><?php if($category_is_product=='Yes'){ echo "Product";}else{ echo "Service";}?></td>
                        <td nowrap="nowrap" align="center" style="font-size:12px;">
<p><a href="category_image_list.php?cat_id=<?=$category_id?>" style="font-size:11px; font-weight:bold; color:#003871">Add Images</a></p>
</td>
                        <td nowrap="nowrap" style="font-size:12px;"><span style="font-weight:bold; <?php if($category_status=='Active'){ ?> color:#295300; <? }else{ ?> color:#EA0000; <? } ?>">
                          <?=$category_status?>
                          </span></td>
						  
                        <td align="center" style="font-size:12px;"><a href="addedit-product.php?finalcat_id=<?=$category_id?>&category_parent_id=<?=$catid?>"><img src="images/icons/edit.png" alt="Edit" width="16" height="16" border="0" /></a></td>
                        <td align="center"><input name="arr_ids[]" type="checkbox" id="arr_ids[]" value="<?=$category_id?>" /></td>
                      </tr>
                      <? } ?>
                    </table>
                    <table width="100%" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td align="right" style="padding:2px">
						<input type="submit" name="set_for_home_gallery" value="Set For Home Gallery" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#183232; border-radius:4px; cursor:pointer; width:140px;"/>
                          <input type="submit" name="remove_for_home_gallery" value="Remove From Home Gallery" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#CC0066; border-radius:4px; cursor:pointer; width:176px;"/>
						<input type="submit" name="make_hot" value="Make Hot" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#006BD7; border-radius:4px; cursor:pointer; width:110px;"/>
                          <input type="submit" name="remove_hot" value="Remove Hot" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#66B3FF; border-radius:4px; cursor:pointer; width:110px;"/>
                          <input type="submit" name="make_feature" value="Make Feature" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#5B5B00; border-radius:4px; cursor:pointer; width:120px;"/>
                          <input type="submit" name="remove_feature" value="Remove Feature" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#B9B900; border-radius:4px; cursor:pointer; width:120px;"/>
						  
                          <input type="submit" name="Activate" value="Activate" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#1F3E00; border-radius:4px; cursor:pointer; width:100px;"/>
                          <input type="submit" name="Deactivate" value="Deactivate" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#FF6F6F; border-radius:4px; cursor:pointer; width:100px;" />
                           <?php //if($_SESSION['sess_admin_type']=='Admin'){ ?>
                          <input type="submit" name="Delete" value="Delete" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#CA0000; border-radius:4px; cursor:pointer; width:100px;"/>
                          <? //} ?>
                        </td>
                      </tr>
                    </table>
                  </form>
                  <? $pager->show_pager();?>
                  <? } ?>
                </td>
              </tr>
            </table>
            <? include("bottom.inc.php");?>
<script language="javascript">
function select_chk(){
			var chks = document.getElementsByName('arr_ids[]');
			var hasChecked = false;
			for (var i = 0; i < chks.length; i++){
			if (chks[i].checked){
				hasChecked = true;
				break;
				}
			}
			if (hasChecked == false){
			alert("Please Select At Least One.");
			return false;
			}
}
</script>
admin/category_list.php0000644000352000025440000003475614373667565015741 0ustar  thediannthediann<?php
ob_start();
require_once("../includes/dbsmain.inc.php");


 if(isset($_REQUEST['Delete'])){
if(is_array($_REQUEST['arr_ids'])){

$check=$_REQUEST['arr_ids'];
$SUB=count($check);

function del_sub($CAT){
$select=mysqli_query("select * from tbl_category where category_parent_id='$CAT'");

while($SQL=mysqli_fetch_array($select)){
del_sub($SQL['category_id']);
$delete=mysqli_query("delete from tbl_category where category_parent_id='$SQL[category_id]'");
//DELETE SUB CATEGORY AND PRODUCTS MORE IMAGES START
$del_image=mysqli_query("delete from tbl_category_image where category_image_cat_id='$SQL[category_id]'");
//DELETE SUB CATEGORY AND PRODUCTS MORE IMAGES END
}
//DELETE ALL CATEGORY MORE IMAGES FROM FOLDER START
$img_selct=mysqli_query("select category_image_id,category_image_name from  tbl_category_image where 1 and category_image_cat_id='$CAT'");
while($sqlsel=mysqli_fetch_array($img_selct)){
$imgName = $sqlsel['category_image_name'];
@unlink("../category_more_images/$imgName");
}
//DELETE ALL CATEGORY MORE IMAGES FROM FOLDER END
//DELETE ALL CATEGORY IMAGES FROM FOLDER START
$ct_img = mysqli_fetch_array(mysqli_query("select category_image_name from tbl_category where category_id='$CAT'"));
@unlink("../uploaded_files/$ct_img[category_image_name]");
//DELETE ALL CATEGORY IMAGES FROM FOLDER END
$del=mysqli_query("delete from tbl_category where category_id='$CAT'");
$del_img=mysqli_query("delete from tbl_category_image where category_image_cat_id='$CAT'");

}
for($x=0;$x<$SUB;$x++){
del_sub($check[$x]);
}
}
}


if(is_post_back()) {
	$arr_ids = $_REQUEST['arr_ids'];
	if(is_array($arr_ids)) {
		$str_ids = implode(',', $arr_ids); 
		if(isset($_REQUEST['Activate']) || isset($_REQUEST['Activate_x']) ) {
			db_query("update tbl_category set category_status='Active' where category_id in ($str_ids)");
		} else if(isset($_REQUEST['Deactivate']) || isset($_REQUEST['Deactivate_x']) ) {
			db_query("update tbl_category set category_status='Inactive' where category_id in ($str_ids)");
		}else if(isset($_REQUEST['make_hot']) || isset($_REQUEST['make_hot_x']) ) {
			db_query("update tbl_category set category_is_hot='Yes' where category_id in ($str_ids)");
		}else if(isset($_REQUEST['remove_hot']) || isset($_REQUEST['remove_hot_x']) ) {
			db_query("update tbl_category set category_is_hot='No' where category_id in ($str_ids)");
		}else if(isset($_REQUEST['make_feature']) || isset($_REQUEST['make_feature_x']) ) {
			db_query("update tbl_category set category_is_featured='Yes' where category_id in ($str_ids)");
		}else if(isset($_REQUEST['remove_feature']) || isset($_REQUEST['remove_feature_x']) ) {
			db_query("update tbl_category set category_is_featured='No' where category_id in ($str_ids)");
		}else if(isset($_REQUEST['set_for_home_gallery']) || isset($_REQUEST['set_for_home_gallery']) ) {
			db_query("update tbl_category set category_for_gallery='Yes' where category_id in ($str_ids)");
		}else if(isset($_REQUEST['remove_for_home_gallery']) || isset($_REQUEST['remove_for_home_gallery_x']) ) {
			db_query("update tbl_category set category_for_gallery='No' where category_id in ($str_ids)");
		}else if(isset($_REQUEST['set_for_home_flash']) || isset($_REQUEST['set_for_home_flash_x']) ) {
			db_query("update tbl_category set category_for_falsh='Yes' where category_id in ($str_ids)");
		}else if(isset($_REQUEST['remove_for_home_flash']) || isset($_REQUEST['remove_for_home_flash_x']) ) {
			db_query("update tbl_category set category_for_falsh='No' where category_id in ($str_ids)");
		}
		
	}
	if(isset($_REQUEST['Update'])){
		foreach($category_order_by as $key=>$value){
		db_query("update tbl_category set category_order_by='$value' where category_id='$key'");
		}
	}
	header("Location: ".$_SERVER['HTTP_REFERER']);
	exit;
}

$start = intval($start);
$pagesize = intval($pagesize)==0?$pagesize=DEF_PAGE_SIZE:$pagesize;

$order_by == '' ? $order_by = 'category_id' : true;
$order_by2 == '' ? $order_by2 = 'asc' : true;

$catgid=($_REQUEST[id]!=0) ? $_REQUEST[id] : 0;	 
$sql = "select * from tbl_category   where 1 and category_parent_id='0' ";
$sql = apply_filter($sql, $category_name, 'like','category_name');
//echo $sql;
$sql .= " order by $order_by $order_by2 ";
$sql .= " limit $start, $pagesize ";

$pager = new midas_pager_sql($sql, $pagesize, $start);
if($pager->total_records) {
	$result = db_query($sql);
}
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<script language="JavaScript" type="text/javascript" src="../includes/general.js"></script>
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead"> Category list </div></td>
              </tr>
            </table>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="content"><form method="get" name="form2" id="form2" onSubmit="return confirm_submit(this)">
                    <br />
                    <table  border="0" align="center" cellpadding="2" cellspacing="0" class="tableSearch" style="width:300px; height:90px;border:2px outset #fff;">
                      <tr align="center">
                        <th colspan="2">Search</th>
                      </tr>
                      <tr>
                        <td class="tdLabel">Name</td>
                        <td><input name="category_name" type="text" value="<?=$category_name?>" style="width:200px; height:24px;" /></td>
                      </tr>
                      <tr>
                        <td>&nbsp;</td>
                        <td><input name="pagesize" type="hidden" id="pagesize" value="<?=$pagesize?>" />
                          <input type="image" name="imageField" src="images/buttons/search.gif" />
                          <?php if($_REQUEST['category_name']){ ?>
                          <a href="category_list.php"><span style="vertical-align:top; margin-left:5px; font-size:12px; color:#0000CC; font-weight:bold; font-family:Arial, Helvetica, sans-serif;">View All</span></a>
                          <? } ?></td>
                      </tr>
                    </table>
                  </form>
                  <br />
                  <div align="right"> <a href="addedit-category.php?id=0" style="font-size:12px; font-weight:bold;">Add New Category</a> </div>
                  <? if($pager->total_records==0) {?>
                  <div class="msg">Sorry, no records found.</div>
                  <? } else { ?>
                  <div align="right">
                    <? $pager->show_displaying()?>
                  </div>
                  <div>Records Per Page:
                    <?=pagesize_dropdown('pagesize', $pagesize);?>
                  </div>
                 <form method="post" name="form1" id="form1" onsubmit="confirm_submit(this)">
                 <table width="100%" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td align="right" style="padding:2px">
						<input type="submit" name="set_for_home_flash" value="Set For Home Flash" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#183232; border-radius:4px; cursor:pointer; width:155px;"/>
                          <input type="submit" name="remove_for_home_flash" value="Remove From Home Flash" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#CC0066; border-radius:4px; cursor:pointer; width:190px;"/>												
                        </td>
                      </tr>
                    </table>
                    <table width="100%"  border="0" cellpadding="0" cellspacing="1" class="tableList" style="border:1px outset #fff;">
                      <tr>
                        <th width="27%" nowrap="nowrap" style="font-size:12px; padding:9px;">Category Name <?=sort_arrows('category_name')?></th>
                        <th width="8%" nowrap="nowrap">Category Image</th>
                        <th width="8%" nowrap="nowrap">Is Hot / Flash ?</th>
                        <th width="9%" nowrap="nowrap">Is Featured ?</th>
						 <th width="9%" nowrap="nowrap">Home Gallery ?</th>
                        <th width="8%" nowrap="nowrap">&nbsp;</th>
                        <th width="8%" nowrap="nowrap">&nbsp;</th>
                        <th width="8%" nowrap="nowrap" style="font-size:12px; padding:9px;">Status <?=sort_arrows('category_status')?></th>
						<th width="7%" nowrap="nowrap">Order By</th>
                        <th width="4%">&nbsp;</th>
                        <th width="4%"><input name="check_all" type="checkbox" id="check_all" value="1" onclick="checkall(this.form)" /></th>
                      </tr>
                      <?php
							while ($line_raw = mysqli_fetch_array($result)) {
								$line = ms_display_value($line_raw);
								@extract($line);
								$css = ($css=='trOdd')?'trEven':'trOdd';
							?>
                      <tr class="<?=$css?>" align="center">
                        <td nowrap="nowrap" style="font-size:12px;"><a href="subcat_list.php?category_id=<?=$category_id?>"><?=$category_name?></a></td>
                        <td nowrap="nowrap" style="font-size:12px;"><img src="../uploaded_files/<?=$category_image_name?>" height="60" width="60"  border="0"></td>
                        <td nowrap="nowrap" style="font-size:12px;"><strong><?=$category_is_hot?> / <?=$category_for_falsh?></strong></td>
                        <td nowrap="nowrap" style="font-size:12px;"><?=$category_is_featured?></td>
						<td nowrap="nowrap" style="font-size:12px;"><?=$category_for_gallery?></td>
                        <td nowrap="nowrap" style="font-size:12px;"><?php if($category_is_product=='Yes'){ echo "Product";}else{ echo "Service";}?></td>
                        <td nowrap="nowrap" align="center" style="font-size:12px;"><b><a href="addedit-subcategory.php?category_id=0&category_parent_id=<?=$category_id?>">Add Product</a></b><br />
<p><a href="category_image_list.php?cat_id=<?=$category_id?>" style="font-size:11px; font-weight:bold; color:#003871">Add Images</a></p>
</td>
                        <td nowrap="nowrap" style="font-size:12px;"><span style="font-weight:bold; <?php if($category_status=='Active'){ ?> color:#295300; <? }else{ ?> color:#EA0000; <? } ?>"><?=$category_status?></span></td>
						  <td nowrap="nowrap"><input type="text" name="category_order_by[<?=$category_id?>]" id="category_order_by[<?=$category_id?>]"  value="<?=$category_order_by?>" style="width:55px; height:20px; font-weight:bold; font-size:12px; text-align:center;"/></td>
                        <td align="center" style="font-size:12px;"><a href="addedit-category.php?id=<?=$category_id?>"><img src="images/icons/edit.png" alt="Edit" width="16" height="16" border="0" /></a></td>
                        <td align="center"><input name="arr_ids[]" type="checkbox" id="arr_ids[]" value="<?=$category_id?>" /></td>
                      </tr>
                      <? } ?>
                    </table>
                    <table width="100%" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td align="right" style="padding:2px">
						<input type="submit" name="set_for_home_gallery" value="Set For Home Gallery" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#183232; border-radius:4px; cursor:pointer; width:140px;"/>
                          <input type="submit" name="remove_for_home_gallery" value="Remove From Home Gallery" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#CC0066; border-radius:4px; cursor:pointer; width:176px;"/>						
						<input type="submit" name="make_hot" value="Make Hot" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#006BD7; border-radius:4px; cursor:pointer; width:80px;"/>
                          <input type="submit" name="remove_hot" value="Remove Hot" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#66B3FF; border-radius:4px; cursor:pointer; width:90px;"/>
                          <input type="submit" name="make_feature" value="Make Feature" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#5B5B00; border-radius:4px; cursor:pointer; width:108px;"/>
                          <input type="submit" name="remove_feature" value="Remove Feature" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#B9B900; border-radius:4px; cursor:pointer; width:110px;"/>
						  <input type="submit" name="Update" value="Update Order" class="button" style="font-size:12px; font-weight:bold; height:26px; background-color:#804040; border-radius:4px; cursor:pointer; width:110px;"/>
                          <input type="submit" name="Activate" value="Activate" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#1F3E00; border-radius:4px; cursor:pointer; width:90px;"/>
                          <input type="submit" name="Deactivate" value="Deactivate" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#FF6F6F; border-radius:4px; cursor:pointer; width:90px;" />
                          <?php //if($_SESSION['sess_admin_type']=='Admin'){ ?>
                          <input type="submit" name="Delete" value="Delete" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#CA0000; border-radius:4px; cursor:pointer; width:90px;"/>
                          <? //} ?>
                        </td>
                      </tr>
                    </table>
                  </form>
                  <? $pager->show_pager();?>
                  <? } ?>
                </td>
              </tr>
            </table>
<script language="javascript">
function select_chk(){
var chks = document.getElementsByName('arr_ids[]');
var hasChecked = false;
for (var i = 0; i < chks.length; i++){
if (chks[i].checked){
  hasChecked = true;
  break;
  }
}
if (hasChecked == false){
alert("Please Select At Least One.");
return false;
}
}
</script>            
<?php include("bottom.inc.php");?>

admin/addedit-subcategory.php0000644000352000025440000003333614373667153016776 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
ob_start();
$category_id=$_REQUEST['category_id'];
$category_parent_id=$_REQUEST['category_parent_id'];

if(is_post_back()){
//*************** UPDATE EXISTING CATEGORY START ************************//
if($_REQUEST['category_id']!='0') {
$category_url=ami_crete_url($category_name);
////////////****************** IMAGE RESIZING START HERE *****************************//
//********** Code Created By Amitabh Kumar Sinha : Web Developer : Webkey Network Pvt. Ltd. *****************//
//**********  DATE : 31:07:2014 *****************//
//------------FUNCTION TO GET IMAGE EXTENSION START---------------//
 function getExtension($str) {
         $i = strrpos($str,".");
         if (!$i) { return ""; }
         $l = strlen($str) - $i;
         $ext = substr($str,$i+1,$l);
         return $ext;
 }
 //------------FUNCTION TO GET IMAGE EXTENSION END---------------//
 if($_SERVER["REQUEST_METHOD"] == "POST")
 {
 	$image =$_FILES["file"]["name"];
	$uploadedfile = $_FILES['file']['tmp_name']; 
 	if ($image) { 	
	    $DelImage=db_scalar("select category_image_name from tbl_category where 1 and category_id = '$category_id'");
	    @unlink("../uploaded_files/$DelImage");
 		$filename = stripslashes($_FILES['file']['name']); 	
  		$extension = getExtension($filename);
 		$extension = strtolower($extension);		
        $imgNAME = $category_url.".".$extension;
		
 $size=filesize($_FILES['file']['tmp_name']);
if($extension=="jpg" || $extension=="jpeg" ){
  $uploadedfile = $_FILES['file']['tmp_name'];
  $src = imagecreatefromjpeg($uploadedfile);
}else if($extension=="png"){
  $uploadedfile = $_FILES['file']['tmp_name'];
  $src = imagecreatefrompng($uploadedfile);
}else{
$src = imagecreatefromgif($uploadedfile);
}
list($width,$height)=getimagesize($uploadedfile);
if($width >= 400){
$newwidth=400;
$newheight=($height/$width)*$newwidth;
$tmp=imagecreatetruecolor($newwidth,$newheight);
imagecopyresampled($tmp,$src,0,0,0,0,$newwidth,$newheight,$width,$height);
$filename = "../uploaded_files/". $imgNAME;
imagejpeg($tmp,$filename,100);
imagedestroy($src);
imagedestroy($tmp);
imagedestroy($tmp1);
}else{
move_uploaded_file($_FILES['file']['tmp_name'],"../uploaded_files/$imgNAME");
}
}else{
$imgNAME=db_scalar("select category_image_name from tbl_category where 1 and category_id = '$category_id'");
}
}

////////////****************** IMAGE RESIZING END HERE *****************************//
$sql = "update tbl_category set        
				category_name='$category_name',
				category_image_name='$imgNAME',
				category_description = '$category_description', 	
				category_is_hot='$category_is_hot',
				category_is_featured='$category_is_featured',
				category_for_falsh='$category_for_falsh',
				category_meta_title='$category_meta_title',
				category_meta_description='$category_meta_description',
				category_meta_keywords='$category_meta_keywords',
				category_is_product='$category_is_product',
				category_url='$category_url',
				category_add_date=now(),
				category_status='$category_status'
				where category_id = '$category_id' ";

db_query($sql);
set_session_msg("Category Updated Successfully !");
header("Location:addedit-subcategory.php?category_id=$_REQUEST[category_id]&category_parent_id=$_REQUEST[category_parent_id]");
exit;
//*************** UPDATE EXISTING CATEGORY END ************************//
}else{
$category_url=ami_crete_url($category_name);
//*************** INSERT NEW CATEGORY START ************************//
////////////****************** IMAGE RESIZING START HERE *****************************//
//********** Code Created By Amitabh Kumar Sinha : Web Developer : Webkey Network Pvt. Ltd. *****************//
//**********  DATE : 31:07:2014 *****************//
//------------FUNCTION TO GET IMAGE EXTENSION START---------------//
 function getExtension($str) {
         $i = strrpos($str,".");
         if (!$i) { return ""; }
         $l = strlen($str) - $i;
         $ext = substr($str,$i+1,$l);
         return $ext;
 }
 //------------FUNCTION TO GET IMAGE EXTENSION END---------------//
 if($_SERVER["REQUEST_METHOD"] == "POST")
 {
 	$image =$_FILES["file"]["name"];
	$uploadedfile = $_FILES['file']['tmp_name']; 
 	if ($image) { 	
 		$filename = stripslashes($_FILES['file']['name']); 	
  		$extension = getExtension($filename);
 		$extension = strtolower($extension);
		$imgNAME = $category_url.".".$extension;		

 $size=filesize($_FILES['file']['tmp_name']);
if($extension=="jpg" || $extension=="jpeg" ){
  $uploadedfile = $_FILES['file']['tmp_name'];
  $src = imagecreatefromjpeg($uploadedfile);
}else if($extension=="png"){
  $uploadedfile = $_FILES['file']['tmp_name'];
  $src = imagecreatefrompng($uploadedfile);
}else{
$src = imagecreatefromgif($uploadedfile);
}
list($width,$height)=getimagesize($uploadedfile);
if($width >= 400){
$newwidth=400;
$newheight=($height/$width)*$newwidth;
$tmp=imagecreatetruecolor($newwidth,$newheight);
imagecopyresampled($tmp,$src,0,0,0,0,$newwidth,$newheight,$width,$height);
$filename = "../uploaded_files/". $imgNAME;
imagejpeg($tmp,$filename,100);
imagedestroy($src);
imagedestroy($tmp);
imagedestroy($tmp1);
}else{
move_uploaded_file($_FILES['file']['tmp_name'],"../uploaded_files/$imgNAME");
}
}
}

////////////****************** IMAGE RESIZING END HERE *****************************//
$sql = "insert into tbl_category set 
                category_name='$category_name',
				category_parent_id='$category_parent_id',
				category_image_name='$imgNAME',
				category_description='$category_description', 	
				category_is_hot='$category_is_hot',
				category_is_featured='$category_is_featured',
				category_for_falsh='$category_for_falsh',
				category_meta_title='$category_meta_title',
				category_meta_description='$category_meta_description',
				category_meta_keywords='$category_meta_keywords',
				category_is_product='$category_is_product',
				category_url='$category_url',
				category_add_date=now(),
				category_status='$category_status'";

db_query($sql);
set_session_msg("Category Added Successfully !");
header("Location:addedit-subcategory.php?category_id=$_REQUEST[category_id]&category_parent_id=$_REQUEST[category_parent_id]");
exit;
//*************** INSERT NEW CATEGORY END ************************//
 }
}

if($category_id!='') {
	$result = db_query("select * from tbl_category where category_id = '$category_id'");
	if ($line_raw = mysqli_fetch_array($result)) {
	 @extract($line_raw);
	}
}
?>
<script src="ckeditor/ckeditor.js"></script>
<style>
p.fck {
    width: 90%;
	float:left;
    margin: 0 auto;
 }
</style>
<link href="styles.css" rel="stylesheet" type="text/css">
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead">Add/Edit Category</div></td>
              </tr>
            </table>
            <div align="right"><a href="subcat_list.php?category_id=<?=$_REQUEST['category_parent_id']?>" style="font-size:12px; font-weight:bold; margin-right:15px;">Back to Sub Category List</a>&nbsp;</div>
            <form name="form1" method="post" enctype="multipart/form-data">
              <table width="95%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm">
                <tr>
                  <td width="20%" class="tdLabel">&nbsp;</td>
                  <td width="80%" class="tdData" style="padding-left:7px;"><strong><font color="red">
                    <?=display_sess_msg();?>
                    </font></strong></td>
                </tr>
                <tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Category Name:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><input name="category_name" style="width:350px; height:28px;" type="text" id="category_name"  value="<?=$category_name?>" class="textfield"  ></td>
                </tr>
                <?php if($category_image_name){ ?>
                <tr>
                  <td width="177" class="tdLabel" style="font-size:12px; padding:5px;">Current Image  :</td>
                  <td width="721" class="tdData" style="font-size:12px; padding:5px;"><img src="../uploaded_files/<?=$category_image_name?>" height="70" width="70"  border="0"> </td>
                </tr>
                <? } ?>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:5px;">Category Image :</td>
                  <td class="tdData" style="font-size:12px; padding:5px;"><input type="file" name="file" id="file"></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Meta Title:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><input name="category_meta_title" style="width:350px; height:28px;" type="text" id="category_meta_title"  value="<?=$category_meta_title?>" class="textfield" /></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Meta Keyword:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><textarea rows="5" cols="66" name="category_meta_keywords"><?=$category_meta_keywords?>
</textarea></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Meta Description:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><textarea rows="5" cols="66" name="category_meta_description"><?=$category_meta_description?>
</textarea></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Category Description:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><p class="fck">
                      <textarea cols="80" id="editor1" name="category_description" rows="10"><?=$category_description?>
</textarea>
                      <script>

			// Replace the <textarea id="editor"> with an CKEditor
			// instance, using default configurations.
			CKEDITOR.replace( 'editor1', {
				uiColor: '#ACACAC',
				toolbar: [
					[ 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],
					[ 'FontSize', 'TextColor', 'BGColor' ]
				]
			});

		</script>
                    </p></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Category Is Hot ?:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><select name="category_is_hot" style="width:200px; height:26px;">
                      <option value="Yes" <?php if($category_is_hot=='Yes'){ ?> selected="selected" <? } ?>>Yes</option>
                      <option value="No" <?php if($category_is_hot=='No'){ ?> selected="selected" <? } ?>>No</option>
                    </select></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Category Is Featured ?:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><select name="category_is_featured" style="width:200px; height:26px;">
                      <option value="Yes" <?php if($category_is_featured=='Yes'){ ?> selected="selected" <? } ?>>Yes</option>
                      <option value="No" <?php if($category_is_featured=='No'){ ?> selected="selected" <? } ?>>No</option>
                    </select></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Set For Flash ?:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><select name="category_for_falsh" style="width:200px; height:26px;">
                      <option value="Yes" <?php if($category_for_falsh=='Yes'){ ?> selected="selected" <? } ?>>Yes</option>
                      <option value="No" <?php if($category_for_falsh=='No'){ ?> selected="selected" <? } ?>>No</option>
                    </select></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Category Is ?:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><select name="category_is_product" style="width:200px; height:26px;">
                      <option value="Yes" <?php if($category_is_product=='Yes'){ ?> selected="selected" <? } ?>>Product</option>
                      <option value="No" <?php if($category_is_product=='No'){ ?> selected="selected" <? } ?>>Service</option>
                    </select></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Status:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><select name="category_status" style="width:200px; height:26px;">
                      <option value="Active" <?php if($category_status=='Active'){ ?> selected="selected" <? } ?>>Active</option>
                      <option value="Inactive" <?php if($category_status=='Inactive'){ ?> selected="selected" <? } ?>>Inactive</option>
                    </select></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">&nbsp;</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><input type="hidden" name="category_id" value="<?=$category_id?>" />
                    <input type="image" name="imageField" src="images/buttons/submit.gif" style="width:100px; margin-bottom:25px;" /></td>
                </tr>
              </table>
            </form>
            <? include("bottom.inc.php");?>
admin/manage_testimonials.php0000644000352000025440000001635214373672772017100 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");

if(is_post_back()) {
	$arr_ids = $_REQUEST['arr_ids'];
	if(is_array($arr_ids)) {
		$str_ids = implode(',', $arr_ids); 
		if(isset($_REQUEST['Delete']) || isset($_REQUEST['Delete_x']) ) {
			db_query("delete from tbl_testimonial where test_id in ($str_ids)");
			set_session_msg("Testmonial Deleted Successfully !");
		} else if(isset($_REQUEST['Activate']) || isset($_REQUEST['Activate_x']) ) {
			db_query("update tbl_testimonial set test_status = 'Active' where test_id in ($str_ids)");
			set_session_msg("Testmonial Activated Successfully !");
		} else if(isset($_REQUEST['Deactivate']) || isset($_REQUEST['Deactivate_x']) ) {
			db_query("update tbl_testimonial set test_status = 'Inactive' where test_id in ($str_ids)");
			set_session_msg("Testmonial Deactivated Successfully !");
		}
	}
	header("Location: ".$_SERVER['HTTP_REFERER']);
	exit;
}

$start = intval($start);
$pagesize = intval($pagesize)==0?$pagesize=DEF_PAGE_SIZE:$pagesize;

$order_by == '' ? $order_by = 'test_id' : true;
$order_by2 == '' ? $order_by2 = 'desc' : true;

$sql = "select * from tbl_testimonial   where  1";
$sql = apply_filter($sql, $test_given_by, 'like','test_given_by');
$sql .= " order by $order_by $order_by2 ";
$sql .= " limit $start, $pagesize ";

$pager = new midas_pager_sql($sql, $pagesize, $start);
if($pager->total_records) {
	$result = db_query($sql);
}

?>
<link href="styles.css" rel="stylesheet" type="text/css">
<script language="JavaScript" type="text/javascript" src="../includes/general.js"></script>
<? include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead">Testimonials list </div></td>
              </tr>
            </table>
			<strong class="msg" style="margin-left:500px;"><?=display_sess_msg()?></strong>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="content"><form method="get" name="form2" id="form2" onSubmit="return confirm_submit(this)">
                    <br />
                    <table  border="0" align="center" cellpadding="2" cellspacing="0" class="tableSearch" style="width:300px; height:90px;border:2px outset #fff;">
                      <tr align="center">
                        <th colspan="2">Search</th>
                      </tr>
                      <tr>
                        <td class="tdLabel">Name</td>
                        <td><input name="test_given_by" type="text" value="" style="width:200px; height:24px;" /></td>
                      </tr>
                      <tr>
                        <td>&nbsp;</td>
                        <td><input name="pagesize" type="hidden" id="pagesize" value="<?=$pagesize?>" />
                          <input type="image" name="imageField" src="images/buttons/search.gif" /></td>
                      </tr>
                    </table>
                  </form>
                  <br />
                  <div align="right"><a href="testimonial_f.php" style="font-size:12px; font-weight:bold;">Add New Testimonial</a> </div>
                  <? if($pager->total_records==0) {?>
                  <div class="msg">Sorry, no records found.</div>
                  <? } else { ?>
                  <div align="right">
                    <? $pager->show_displaying()?>
                  </div>
                  <div>Records Per Page:
                    <?=pagesize_dropdown('pagesize', $pagesize);?>
                  </div>
                  <form method="post" name="form1" id="form1" onSubmit="confirm_submit(this)">
                    <table width="100%"  border="0" cellpadding="0" cellspacing="1" class="tableList">
                      <tr>
                        <th width="18%" nowrap="nowrap" style="font-size:12px; padding:9px;">Posted By</th>
                        <th width="18%" nowrap="nowrap" style="font-size:12px; padding:9px;">Company</th>
                        <th width="11%" nowrap="nowrap" style="font-size:12px; padding:9px;">Image</th>
						<th width="7%" nowrap="nowrap" style="font-size:12px; padding:9px;">Posted Date</th>
                        <th width="7%" nowrap="nowrap" style="font-size:12px; padding:9px;">Status<?=sort_arrows('test_status')?></th>
                        <th width="4%">&nbsp;</th>
                        <th width="4%"><input name="check_all" type="checkbox" id="check_all" value="1" onClick="checkall(this.form)" /></th>
                      </tr>
                      <?
while ($line_raw = mysqli_fetch_array($result)) {
	$line = ms_display_value($line_raw);
	@extract($line);
	$css = ($css=='trOdd')?'trEven':'trOdd';
 
?>
                      <tr class="<?=$css?>">
                        <td align="center" style="font-size:12px;"><?php echo $test_given_by;?> </td>
                         <td align="center" style="font-size:12px;"><?php echo $test_comp_name;?> </td>
                        <td align="center"><img src="../test_images/<?=$test_image_name?>" height="80" width="80"  border="0"> </td>
						<td align="center" style="font-size:12px;"><?php echo $test_add_date;?> </td>
						<td align="center"><b style="font-size:12px;"><?php echo $test_status;?></b> </td>
                        <td align="center"><a href="testimonial_f.php?test_id=<?=$test_id?>"><img src="images/icons/edit.png" alt="Edit" width="16" height="16" border="0" /></a></td>
                        <td align="center"><input name="arr_ids[]" type="checkbox" id="arr_ids[]" value="<?=$test_id?>" /></td>
                      </tr>
                      <? } ?>
                    </table>
                    <table width="100%" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td align="right" style="padding:2px">
						<input type="submit" name="Activate" value="Activate" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#1F3E00; border-radius:4px; cursor:pointer; width:100px;"/>
                          <input type="submit" name="Deactivate" value="Deactivate" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#FF6F6F; border-radius:4px; cursor:pointer; width:100px;" />
                          <input type="submit" name="Delete" value="Delete" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#CA0000; border-radius:4px; cursor:pointer; width:100px;"/>
                        </td>
                      </tr>
                    </table>
                  </form>
                  <? $pager->show_pager();?>
                  <? } ?>
                </td>
              </tr>
            </table>
            <?php include("bottom.inc.php");?>
			<script language="javascript">
function select_chk(){
			var chks = document.getElementsByName('arr_ids[]');
			var hasChecked = false;
			for (var i = 0; i < chks.length; i++){
			if (chks[i].checked){
				hasChecked = true;
				break;
				}
			}
			if (hasChecked == false){
			alert("Please Select At Least One.");
			return false;
			}
}
</script>
admin/static_page_list.php0000644000352000025440000002367014373673425016370 0ustar  thediannthediann<?php
ob_start();
require_once("../includes/dbsmain.inc.php");
if(is_post_back()) {
	$arr_ids = $_REQUEST['arr_ids'];
	if(is_array($arr_ids)) {
		$str_ids = implode(',', $arr_ids); 
		if(isset($_REQUEST['Delete']) || isset($_REQUEST['Delete_x']) ) {
			db_query("delete from  tbl_site_pages where site_pages_id in ($str_ids)");
		} else if(isset($_REQUEST['Activate']) || isset($_REQUEST['Activate_x']) ) {
			db_query("update  tbl_site_pages set site_pages_status = 'Active' where site_pages_id in ($str_ids)");
		} else if(isset($_REQUEST['Deactivate']) || isset($_REQUEST['Deactivate_x']) ) {
			db_query("update  tbl_site_pages set site_pages_status = 'Inactive' where site_pages_id in ($str_ids)");
		}else if(isset($_REQUEST['show_in_header']) || isset($_REQUEST['show_in_header_x']) ) {
			db_query("update  tbl_site_pages set site_pages_show_in_header='Yes' where site_pages_id in ($str_ids)");
		}else if(isset($_REQUEST['show_in_header_r']) || isset($_REQUEST['show_in_header_r_x']) ) {
			db_query("update  tbl_site_pages set site_pages_show_in_header='No' where site_pages_id in ($str_ids)");
		}else if(isset($_REQUEST['show_in_footer']) || isset($_REQUEST['show_in_footer_x']) ) {
			db_query("update  tbl_site_pages set site_pages_show_in_footer='Yes' where site_pages_id in ($str_ids)");
		}else if(isset($_REQUEST['show_in_footer_r']) || isset($_REQUEST['show_in_footer_r_x']) ) {
			db_query("update  tbl_site_pages set site_pages_show_in_footer='No' where site_pages_id in ($str_ids)");
		}
	}
	if(isset($_REQUEST['Update'])){
		foreach($site_pages_order_by as $key=>$value){
		db_query("update tbl_site_pages set site_pages_order_by='$value' where site_pages_id='$key'");
		}
	}
	header("Location: ".$_SERVER['HTTP_REFERER']);
	exit;
}

$start = intval($start);
$pagesize = intval($pagesize)==0?$pagesize=DEF_PAGE_SIZE:$pagesize;

$order_by == '' ? $order_by = 'site_pages_status' : true;
$order_by2 == '' ? $order_by2 = 'asc' : true;
 
$sql = "select * from  tbl_site_pages   where 1";
$sql = apply_filter($sql, $site_pages_name, 'like','site_pages_name');
$sql .= " order by $order_by $order_by2 ";
$sql .= " limit $start, $pagesize ";

$pager = new midas_pager_sql($sql, $pagesize, $start);
if($pager->total_records) {
	$result = db_query($sql);
}
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<script language="JavaScript" type="text/javascript" src="../includes/general.js"></script>
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead">Static Page list </div></td>
              </tr>
            </table>
			<strong class="msg" style="margin-left:500px;"><?=display_sess_msg()?></strong>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="content">
				
				<form method="get" name="form2" id="form2" onsubmit="return confirm_submit(this)">
                    <br />
					<table  border="0" align="center" cellpadding="2" cellspacing="0" class="tableSearch" style="width:300px; height:90px; border:2px outset #fff;">
                      <tr align="center">
                        <th colspan="2">Search</th>
                      </tr>
                      <tr>
                        <td class="tdLabel">Name</td>
                        <td><input name="site_pages_name" type="text" value="<?=$site_pages_name?>" style="width:200px; height:24px;" /></td>
                      </tr>
                      <tr>
                        <td>&nbsp;</td>
                        <td><input name="pagesize" type="hidden" id="pagesize" value="<?=$pagesize?>" />
                          <input type="image" name="imageField" src="images/buttons/search.gif" /><?php if($_REQUEST['pagesize']){ ?><a href="static_page_list.php"><span style="vertical-align:top; margin-left:5px; font-size:12px; color:#0000CC; font-weight:bold; font-family:Arial, Helvetica, sans-serif;">View All</span></a><? } ?></td>
                      </tr>
                    </table>
                  </form>
                  <br />
                  <div align="right"> <a href="static_page_f.php" style="font-size:12px; font-weight:bold;">Add New Page </a></div>
                  <? if($pager->total_records==0) {?>
                  <div class="msg">Sorry, no records found.</div>
                  <? } else { ?>
                  <div align="right">
                    <? $pager->show_displaying()?>
                  </div>
                  <div>Records Per Page:
                    <?=pagesize_dropdown('pagesize', $pagesize);?>
                  </div>
                  <form method="post" name="form1" id="form1" onsubmit="confirm_submit(this)">
                    <table width="100%"  border="0" cellpadding="0" cellspacing="1" class="tableList" style=" border:1px outset #fff;">
                      <tr>
                        <th width="35%" nowrap="nowrap" style="padding:7px;font-size:12px;">Page Name
                          <?=sort_arrows('site_pages_name')?></th>
						  <th width="14%" nowrap="nowrap" style="padding:7px;font-size:12px;">Show In Header</th>
						  <th width="14%" nowrap="nowrap" style="padding:7px;font-size:12px;">Show In Footer</th>
                        <th width="14%" nowrap="nowrap" style="padding:7px;font-size:12px;">Status
                          <?=sort_arrows('site_pages_status')?></th>
						  <th width="10%" nowrap="nowrap">Order By</th>
                        <th width="6%" style="padding:7px;">&nbsp;</th>
                        <th width="7%" style="padding:7px;"><input name="check_all" type="checkbox" id="check_all" value="1" onclick="checkall(this.form)" /></th>
                      </tr>
                      <?
while ($line_raw = mysqli_fetch_array($result)) {
	$line = ms_display_value($line_raw);
	@extract($line);
	$css = ($css=='trOdd')?'trEven':'trOdd';
?>
                      <tr class="<?=$css?>">
                        <td nowrap="nowrap" align="center" style="padding:7px;"><?=$site_pages_name?></td>
						<td nowrap="nowrap" align="center" style="padding:7px;"><?=$site_pages_show_in_header?></td>
						<td nowrap="nowrap" align="center" style="padding:7px;"><?=$site_pages_show_in_footer?></td>
						
                        <td nowrap="nowrap" align="center" style="padding:7px;"><?=$site_pages_status?></td>
						<td nowrap="nowrap" align="center"><input type="text" name="site_pages_order_by[<?=$site_pages_id?>]" id="site_pages_order_by[<?=$site_pages_id?>]"  value="<?=$site_pages_order_by?>" style="width:55px; height:20px; font-weight:bold; font-size:12px; text-align:center;"/></td>
        <td align="center" style="padding:7px;"><a href="static_page_f.php?site_pages_id=<?=$site_pages_id?>"><img src="images/icons/edit.png" alt="Edit" width="16" height="16" border="0" /></a></td>
                        <td align="center" style="padding:7px;"><input name="arr_ids[]" type="checkbox" id="arr_ids[]" value="<?=$site_pages_id?>" /></td>
                      </tr>
                      <? } ?>
                    </table>
                    <table width="100%" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td align="right" style="padding:2px">
						<input type="submit" name="show_in_header" value="Show in Header" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#006BD7; border-radius:4px; cursor:pointer; width:140px;"/>
                          <input type="submit" name="show_in_header_r" value="Remove From Header" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#66B3FF; border-radius:4px; cursor:pointer; width:150px;"/>
                          <input type="submit" name="show_in_footer" value="Show in Footer" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#5B5B00; border-radius:4px; cursor:pointer; width:140px;"/>
                          <input type="submit" name="show_in_footer_r" value="Remove From Footer" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#B9B900; border-radius:4px; cursor:pointer; width:150px;"/>
						  <input type="submit" name="Update" value="Update Order" class="button" style="font-size:12px; font-weight:bold; height:26px; background-color:#804040; border-radius:4px; cursor:pointer; width:120px;"/>
                          <input type="submit" name="Activate" value="Activate" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#1F3E00; border-radius:4px; cursor:pointer; width:100px;"/>
                          <input type="submit" name="Deactivate" value="Deactivate" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#FF6F6F; border-radius:4px; cursor:pointer; width:100px;" />
                          <input type="submit" name="Delete" value="Delete" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#CA0000; border-radius:4px; cursor:pointer; width:100px;"/>
                        </td>
                      </tr>
                    </table>
                  </form>
                  <? $pager->show_pager();?>
                  <? } ?>
                </td>
              </tr>
            </table>
            <? include("bottom.inc.php");?>
<script language="javascript">
function select_chk(){
			var chks = document.getElementsByName('arr_ids[]');
			var hasChecked = false;
			for (var i = 0; i < chks.length; i++){
			if (chks[i].checked){
				hasChecked = true;
				break;
				}
			}
			if (hasChecked == false){
			alert("Please Select At Least One.");
			return false;
			}
}
</script>
admin/top.inc.php0000644000352000025440000000063712445066704014414 0ustar  thediannthediann<table width="100%" cellpadding="0" cellspacing="0">
<tr>
	<td colspan="3"><?php include("header.inc.php");?></td>
</tr>
<tr>
<td colspan="3"><table width="100%" cellpadding="0" cellspacing="0">
					<tr>
						<td valign="top" id="leftnav" width="160"><?php include("left.inc.php");?></td>
						<td valign="top" width="20"><img src="images/spacer.gif" width="20"></td>
						<td valign="top" id="tdMain">admin/enquiry_reply.php0000644000352000025440000000450614373670572015756 0ustar  thediannthediann<?
require_once("../includes/dbsmain.inc.php");
@ob_start();
if(is_post_back()) {
	if($enq_id!='') {
			$sql = "update enquiry_master set mailed_status= 'Active',advt_reply_detail='$advt_reply_detail' where enq_id = '$enq_id'";
		db_query($sql);
		$adv_res=mysqli_fetch_array(db_query("select * from enquiry_master where enq_id='$enq_id'"));
		@extract($adv_res);
		$mail_to="$enq_email";
		
		$mail_from=$_SESSION['ADMIN_EMAIL'];
		$mail_subject="$subject";
		$mail_message="$advt_reply_detail";
		send_email($mail_to, $mail_message, $mail_from, 'html', $mail_subject, '');
		header("Location: enquiry_list.php");
		exit;
	}
}

?>
<link href="styles.css" rel="stylesheet" type="text/css">
<? include("top.inc.php");?>

<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td id="pageHead"><div id="txtPageHead">
      Send A Reply</div></td>
  </tr>
</table>
<div align="right"><a href="enquiry_list.php">Back to 
       Enquiry List</a>&nbsp;</div>
<form name="form1" method="post" enctype="application/x-www-form-urlencoded" <?= validate_form()?>>
 
  <table width="95%"  border="0" align="center" cellpadding="4" cellspacing="0" class="tableForm">
    <tr>
      <td width="160" class="tdLabel">To:</td>
      <td width="577" class="tdData"><? $enq_email=db_scalar("select enq_email from enquiry_master where enq_id='$id'"); 
	  										echo $enq_email;
	  									?>
	  <input type="hidden" name="comp_mail" value="<?=$enq_email?>">
      </td>
    </tr>
	<tr>
      <td width="160" class="tdLabel">Subject :</td>
      <td width="577" class="tdData"><input type="text" name="subject"  size="35" value="Enquiry Reply" alt="blank" emsg="Please enter your Subject" >
	  	
	  </td>
    </tr>
	
    <tr>
      <td width="160" class="tdLabel" valign="top">Message:</td>
      <td width="577" class="tdData"><textarea name="advt_reply_detail" id="advt_reply_detail"  alt="blank" emsg="Please enter your Message" class="textfield" cols="45" rows="6"><?=$advt_reply_detail?></textarea></td>
    </tr>
    <tr>
	    <td class="tdLabel">&nbsp;</td>
	    <td class="tdData"><input type="hidden" name="enq_id" value="<?=$_GET['id']?>">
		                <input type="image" name="imageField" src="images/buttons/submit.gif" /></td>
    </tr>
  </table>
</form>
<? include("bottom.inc.php");?>
admin/imgstyle.css0000644000352000025440000000160512452015162014662 0ustar  thediannthediann@import url(http://fonts.googleapis.com/css?family=Droid+Sans);

#maindiv{
    width:640px; 
    margin:10px auto; 
    padding:10px;
	margin-left:100px;
	margin-top:20px;
    font-family: 'Droid Sans', sans-serif;
}
#formdiv{
    margin-left:100px;
}

.upload{
    background-color:#0059B3;
    border:1px solid #CAE4FF;
    color:#fff;
    border-radius:5px;
    padding:10px;
	font-size:12px;
    text-shadow:1px 1px 0px green;
    box-shadow: 1px 1px 1px rgba(0,0,0, .75);
}
.upload:hover{
    cursor:pointer;
    background:#c20b0b;
    border:1px solid #c20b0b;
    box-shadow: 0px 0px 5px rgba(0,0,0, .75);
}
#file{
    color:green;
    padding:5px; border:1px dashed #123456;
    background-color: #f9ffe5;
	width:230px;
}
#upload{
    margin-left: 45px;
}

#noerror{
    color:green;
    text-align: left;
	font-size:13px;
	font-weight:bold;
}

admin/footer.inc.php0000644000352000025440000000070711744436514015107 0ustar  thediannthediann<link href="styles.css" rel="stylesheet" type="text/css">
<div id="footer">
  <table width="100%"  border="0" cellspacing="0" cellpadding="0">
    <tr>
      <td width="100%" height="1"></td>
    </tr>
    <tr bgcolor="#92B2D6">
      <td height="6"></td>
    </tr>
    <tr bgcolor="#EAEAEA">
      <td height="50" class="gray_txt">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Copyright &copy; Trade Key India All Rights Reserved.</td>
    </tr>
  </table>
</div>
admin/addedit-video.php0000644000352000025440000001116114373667276015553 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
if(isset($_REQUEST['submit'])){
	db_query("insert into tbl_video set video_title='$video_title',video_clip='$video_clip',video_status='Active',video_add_date=now() ");
	      set_session_msg("Video has been added successfully !");
		  header("Location: manage_video.php");
		  exit;
	}
?>
<?php
if(isset($_REQUEST['upvideo_date'])){
	$sql_upvideo_date="update tbl_video set video_title='$video_title',video_clip='$video_clip',video_status='Active', video_add_date =now() where video_id='".$video_id."'";
	$sql_upvideo_date=mysqli_query($sql_upvideo_date) or die(mysqli_error());
	set_session_msg("Video has been updated successfully !");
    header("Location: manage_video.php");
    exit;
  }
if(!empty($_REQUEST['video_id'])){
	$faq_video_id=$_REQUEST['video_id'];
	$sql_fectch_city=mysqli_query("select * from tbl_video  where video_id='".$_REQUEST['video_id']."'") or die(mysqli_error());
	$fetch_record=mysqli_fetch_array($sql_fectch_city);
	
}
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<?php include("top.inc.php");?>
<div align="right" style="font-size:12px; font-weight:bold; margin-right:10px;"><a href="manage_video.php">Back to Video List</a>&nbsp;</div>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td video_id="content" align="center">
                  <form name="form1" method="post" enctype="multipart/form-data">
                    <br />
                    <table  border="0" width="80%"align="center" cellpadding="2" cellspacing="0" class="tableSearch" style="border:2px outset #fff;">
                      <tr align="center">
                        <th colspan="2" style="background:#004E9B; padding:8px; font-size:14px;">Add / Edit Video</th>
                      </tr>
                      <tr align="center">
                        <td colspan="2">&nbsp;
                          </th>
                      </tr>
                      <?php if(!empty($fetch_record['video_clip'])){?>
                      <tr>
                        <td width="40%" align="right" valign="middle" class="tdLabel" style="padding:8px;"><b style="color:#003A75;">Video Clip</b> </td>
                        <td class="tdLabel" style="padding:8px;"><iframe width="100" height="100" src="http://www.youtube.com/embed/<?=$fetch_record['video_clip']?>" frameborder="0" allowfullscreen></iframe></td>
                      </tr>
                      <? }?>
                      <tr>
                        <td width="40%" align="right" valign="middle" class="tdLabel" style="padding:8px;"><b style="color:#003A75;">Video Title</b> </td>
                        <td class="tdLabel" style="padding:8px;"><input type="text" name="video_title" size="30"  value="<?=$fetch_record['video_title']?>" style="height:26px; width:300px;"/></td>
                      </tr>
                      <tr>
                        <td width="40%" align="right" valign="top" class="tdLabel" style="padding:8px; padding-top:14px;"><b style="color:#003A75;">Video Clip Name</b> </td>
                        <td class="tdLabel" style="padding:8px;"><input type="text" name="video_clip" size="30"  value="<?=$fetch_record['video_clip']?>" style="height:26px; width:300px;"/>
                          <br />
                           <b style="color:#0000FF; font-size:10px;">[ Please Enter Only 11 digit last code like : </b><b style="color:#FF0000"> <u>0J4vY8rHeIc</u></b> <b>]</b></td>
                      </tr>
                      <tr>
                        <td align="center" colspan="2" style="padding:8px; padding-bottom:40px;"><input type="hidden"  name="video_id" id="video_id" value="<?=$_REQUEST['video_id']?>">
                          <?php if(empty($_REQUEST['video_id'])){?>
                          <input type="submit" name="submit" value='Submit' class="button" style="font-size:13px; font-weight:bold; height:27px; background-color:#006BD7; border-radius:4px; cursor:pointer; width:100px;" >
                          <? }else{?>
                          <input type="submit" name="upvideo_date" value='Submit' class="button" style="font-size:13px; font-weight:bold; height:27px; background-color:#006BD7; border-radius:4px; cursor:pointer; width:100px;" >
                          <? }?>
                        </td>
                      </tr>
                    </table>
                  </form>
                  <br />
                  <?php include("paging.inc.php");?>
                </td>
              </tr>
            </table>
            <?php include("bottom.inc.php");?>
admin/hs.png0000644000352000025440000000517411606204104013434 0ustar  thediannthediann�PNG


IHDR�e�5�
CIDATx���r#+E�a�?��%�yH��.����q��z<��Z�wm.!��?��_�
��?�O;j�	�o���yh���#�az8hW��#D��|�	�Q�h�?#zv�$܆;������A�~2�8̱8"r�����8D���)�ԑ��n��&�f�Ĺi(	�v&v�����F	�����_#��@��C��H�x��jMKП���t���-t"�<��Ƒ����}��Hナ����*G�φN��#��5b�H����2]E��|��kS��݈�k�\{�\
�&�%�B?������D�'A�"��.�C����NʔIL�~��Ol]�_��<��r�Ԅ�/L�q/t�����HIh�|��U=�v#�n����R�iK��#�1v
{�>j
�,����=�;<��*숽"}�Gԩu�wax�kձҏgC�����2�q�o��s�����E�K4
�8ڙ��֏�˪���u�u"��hb{�ŸKl�Xc�U�\c�wRǟ;	z�14��Q�V�x�=��sυ�Kl���G��Y+c�$��݈����=0�<��=z;�4�E��K�7FF����C@"]�V�ݿ�����Oai��F�G"���(�€�!�G�48�F
�t@��$
�Ca�_�"�\_��2����v&v�&��^��2�TaO��?z�1t�J7#�f��ʠ��|�F?���$��.�#�6l��S��`��U?zt[�����:����1neh���$�N�W�Y��н���.�#��
Z�1`��=ڟ�Z����8[J`z�A��A]�|t�}�0G����j{vU=MI�sI1��Јn{�
"-͟�v�
>�p��������[�c��
#`�+N
�Sj�ʕ�Y�~�(_B~�P�-��н���[k�_RV��ܿ}.�?�=t]�*�7`1�3�]��k_��/O�v&v�f���Ρ�n�I��dz��C#.����T�X|5��V?��
}4B��W�%��(�0-�D���?	��#n
�q���8�km*�&k����hgb���
W`d*<H#���_���'������!�Ki�c�M�����
�а�����V��<�4��}K�,�op[�gm����������ce�?���a�nĎ�
����-�T�x�O�ߞ������c���v���π�aGli�ϥ�/E��O	�
�"?}����ҟ;�2K6ט?�,hgbh�>,-�9o 秏��HlM������2�g6|7����$��f��z��y�������[�����,(:�D�fJ�'�ҏx4CFF	��K��4uY_?j��,�y"tR�Y�Q���"������ÜQ}=��*���z� Oh���f�H����=a��D.����D�8���1Ҵ?��Ċ�B��xZ��Yh�D#�\�qt�wS4�&�?
�ٞ>ϻ�/�z�G��thb{hE�e�PZW͎v���C���]�{�#�c��8a�Ej��$�-��Ь��}��_Թ�8ړ����2J؆4�G��Di��4�@��	�K7��iiv�l��k1U�gD��g��l#5t�~��'Q��҄y���#������tbm�U�U��6���>ڟ��ݿR9����f�܀g�t���Bl������FVFI�_l��W?��Hl���cn������	B�;BK��6wg�T��P�w�B�G��g:U�����?���El	=��G�2b6����x�?�=�T���le4ȯ��������]�Q���%�\��z
�
���@h�rjA<
�{�E���_��{�`�y]^�~���0�h���V��A�6��R�H�xE�0�-����ʠ˚�����}�y���.�j.�n�Q��
�8ڟ�����l���EY@σ�Bl����q��c�Z��9�-a6��b��wl�ѽ���O��_w#v�4��Ƕ=Ԥ/�������Џ�X$Rܭ\�{/(,�H�4ҏ���C@J¬n��22�U=����6p�?�=�}	�z��V�8	�I3�A[R���яà��]������s����WoxuS����@�-��Ѕ~L 묌L�`�]�Z?N��$����#(dny��L�d����.��1W��Z���%z���0G�֏@���}�R��2:���A��+�_D�O�.�s��Ç�%҅~���P,�ٛ+|�"�u�s[�:ڟ��bDM�e�z(gٗ
�|���F��#W��1л�-�k�������B
����0�w�B����2��#�9ڍ������T4���跏c�7�A@Jr5��Ț�ĩ̹��q�	�Ol}�_@���x��2�)S�z��|8ڟ������I�k2+|M��F��p&�'�t��Guj؆o�x�Fb3�Z?(����s�̗��{��t�݂�܉Nה��[F�d�������ꚜ�L�db�ӡ�n�.е~0_>����Ҽ��Ȗ���������d'Jv��}?���>Ė�!�����-H�:�
KIEND�B`�admin/manage-header-flash.php0000644000352000025440000001067414373671107016616 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
$header_flash_id=$_REQUEST['header_flash_id'];
$DelImageId=$_REQUEST['DelID'];
 if(!empty($DelImageId)){ 
   $imageToDel=db_scalar("select header_flash_image_name from tbl_header_flash where 1 and header_flash_id='$DelImageId'"); 
   @unlink('../header_files/'.$imageToDel);
   $sqldel="delete from tbl_header_flash where 1 and header_flash_id='$DelImageId'";
   db_query($sqldel);
   set_session_msg("Header flash Updated Successfully !");
   header("Location: manage-header-flash.php");
   exit;
 }

if(is_post_back()) {
if (isset($_POST['submit'])) {
    for ($i = 0; $i < count($_FILES['file']['name']); $i++) {
	     $imgName=$_FILES['file']['name'][$i];
		 
		   //**** Change Duplicate Image name Start Here****//
		 $ext = substr($imgName, strrpos($imgName, "."));		 
		 $imageDupli = db_scalar("select count(*) from tbl_header_flash where 1 and header_flash_image_name='$imgName'"); 
		 if($imageDupli > 0){
		  $imgName = basename($imgName, $ext);
		  $imgName = basename($imgName, $ext) . rand(1,1000) . $ext;
		 }else{
		  $imgName = $imgName;
		 }
		 //**** Change Duplicate Image name End Here****//
		 
         if (move_uploaded_file($_FILES['file']['tmp_name'][$i],"../header_files/$imgName")) {
			
			    $sql = "insert into tbl_header_flash set 
		                   header_flash_status='Active',
						   header_flash_image_name='$imgName',
						   header_flash_type='Main',	
						   header_flash_add_date=now()";
						   db_query($sql);				
            } 
			       
        }
		set_session_msg("Image uploaded successfully !");
		header("Location: manage-header-flash.php");
		exit;
    }
 }
if($headerID!='') {
	$result = db_query("select * from tbl_header_flash where header_flash_id = '$header_flash_id'");
	if ($line_raw = mysqli_fetch_array($result)) {
		@extract($line_raw);
	}
}
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<link href="imgstyle.css" rel="stylesheet" type="text/css">
<script src="jquery.min.js"></script>
<script src="script.js"></script>
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead"> Add/Edit Header Flash Image</div></td>
              </tr>
            </table>
            <div><strong class="msg" style="margin-left:500px; margin-bottom:5px;">
              <?=display_sess_msg()?>
              </strong></div>
            <div style="width:100%;">
              <?php			
			    $sql_fetch = db_query("select * from tbl_header_flash where 1 and header_flash_type='Main'");
			  $cntDATA=mysqli_num_rows($sql_fetch);
			   if($cntDATA > 0){
			  while($DATA = mysql_fetch_array($sql_fetch)) {
		          @extract($DATA);
             ?>
              <div style="width:120px; height:140px; margin-top:10px;border:1px outset #fff; float:left; margin-left:8px;">
                <p align="center"><img src="../header_files/<?=$DATA['header_flash_image_name']?>" width="90" height="90" /></p>
                <p align="center"><a href="manage-header-flash.php?DelID=<?=$DATA['header_flash_id']?>"><img src="images/no.gif"></a></p>
              </div>
              <? }} ?>
              <div class="cb"></div>
            </div>
            <table width="55%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm" style="border:1px outset #fff; margin-top:5px; margin-bottom:10px;">
              <tr>
                <td class="tdLabel" style="padding:8px;"><div id="maindiv">
                    <div id="formdiv">
                      <form enctype="multipart/form-data" action="" method="post">
                        <div id="filediv">
                          <input name="file[]" type="file" id="file" multiple />
                          <span style="font-size:11px; color:#E60000; font-weight:bold; margin-left:5px;"><b style="color:#000000;">Image Size ></b> width :  1000px, height : 400px</span></div>
                        <br/>
                        <input type="button" id="add_more" class="upload" value="Add More Files"/>
                        <input type="submit" value="Upload File" name="submit" id="upload" class="upload"/>
                      </form>
                      <br/>
                    </div>
                  </div></td>
              </tr>
            </table>
            <?php include("bottom.inc.php");?>
admin/logout.php0000644000352000025440000000016011744436522014342 0ustar  thediannthediann<?
require_once("../includes/dbsmain.inc.php");
ob_start();
session_destroy();
header("Location: index.php");
?>admin/manage_client_logo.php0000644000352000025440000000717714373672042016656 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
$DelImageId=$_REQUEST['DelID'];
 if(!empty($DelImageId)){ 
   $imageToDel=db_scalar("select client_logo_image_name from tbl_client_logo where 1 and client_logo_id='$DelImageId'"); 
   @unlink('../client_logo/'.$imageToDel);
   $sqldel="delete from tbl_client_logo where 1 and client_logo_id='$DelImageId'";
   db_query($sqldel);
   set_session_msg("Logo Updated Successfully !");
   header("Location: manage_client_logo.php");
   exit;
 }

if(is_post_back()) {
if (isset($_POST['submit'])) {
    for ($i = 0; $i < count($_FILES['file']['name']); $i++) {
	     $imgName=$_FILES['file']['name'][$i];
         if (move_uploaded_file($_FILES['file']['tmp_name'][$i],"../client_logo/$imgName")) {
			
			    $sql = "insert into tbl_client_logo set 
		                   client_logo_status='Active',
						   client_logo_image_name='$imgName',
						   client_logo_add_date=now()";
						   db_query($sql);				
            } 
			       
        }
		set_session_msg("Logo uploaded successfully !");
		header("Location: manage_client_logo.php");
		exit;
    }
 }
if($headerID!='') {
	$result = db_query("select * from tbl_client_logo where client_logo_id = '$client_logo_id'");
	if ($line_raw = mysqli_fetch_array($result)) {
		@extract($line_raw);
	}
}
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<link href="imgstyle.css" rel="stylesheet" type="text/css">
<script src="jquery.min.js"></script>
<script src="script.js"></script>
<? include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead"> Add/Edit Client Logos</div></td>
              </tr>
            </table>
            <div><strong class="msg" style="margin-left:500px; margin-bottom:5px;">
              <?=display_sess_msg()?>
              </strong></div>
			  <div style="width:100%;">
			<?php			
			   $sql_fetch = db_query("select * from tbl_client_logo where 1");
			    $cntDATA=mysqli_num_rows($sql_fetch);
			    if($cntDATA > 0){
			    while($DATA = mysqli_fetch_array($sql_fetch)) {
		        @extract($DATA);		
             ?>
			 <div style="width:120px; height:140px; margin-top:10px;border:1px outset #fff; float:left; margin-left:8px;">
             <p align="center"><img src="../client_logo/<?=$DATA['client_logo_image_name']?>" width="90" height="90" /></p>
				<p align="center"><a href="manage_client_logo.php?DelID=<?=$DATA['client_logo_id']?>"><img src="images/no.gif"></a></p>
          </div>
		  
			 <? }} ?>
			 <div class="cb"></div>
			 </div>
			  
			  
			
            <table width="55%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm" style="border:1px outset #fff; margin-top:5px; margin-bottom:10px;">
              <tr>
                <td class="tdLabel" style="padding:8px;"><div id="maindiv">
                    <div id="formdiv">
                      <form enctype="multipart/form-data" action="" method="post">
                        <div id="filediv">
                          <input name="file[]" type="file" id="file" multiple />
                          </div>
                        <br/>
                        <input type="button" id="add_more" class="upload" value="Add More Files"/>
                        <input type="submit" value="Upload File" name="submit" id="upload" class="upload"/>
                      </form>
                      <br/>
                    </div>
                  </div></td>
              </tr>
            </table>
            <?php include("bottom.inc.php");?>
admin/category_image_list.php0000644000352000025440000001060114373667365017060 0ustar  thediannthediann<?php require_once("../includes/dbsmain.inc.php");
$catID=$_REQUEST['cat_id'];
$delImageID=$_REQUEST['DelID'];
$catNAME=db_scalar("select category_name from tbl_category where 1 and category_id='$catID'");
if(!empty($delImageID)){ 
   $imageToDel=db_scalar("select category_image_name from tbl_category_image where 1 and category_image_id='$delImageID'"); 
   @unlink('../category_more_images/'.$imageToDel);
   $sqldel="delete from tbl_category_image where 1 and category_image_id='$delImageID'";
   db_query($sqldel);
   set_session_msg("Image Deleted Successfully !");
   header("Location: category_image_list.php?cat_id=$_REQUEST[cat_id]");
   exit;
 }
if(is_post_back()) {
if (isset($_POST['submit'])) {
    for ($i = 0; $i < count($_FILES['file']['name']); $i++) {
	     $imgName=$_FILES['file']['name'][$i];
		 $gTitle=$_POST['title'][$i];
		 
		 //**** Change Duplicate Image name Start Here****//
		 $ext = substr($imgName, strrpos($imgName, "."));		 
		 $imageDupli = db_scalar("select count(*) from tbl_category_image where 1 and category_image_name='$imgName'"); 
		 if($imageDupli > 0){
		  $imgName = basename($imgName, $ext);
		  $imgName = basename($imgName, $ext) . rand(1,1000) . $ext;
		 }else{
		  $imgName = $imgName;
		 }
		 //**** Change Duplicate Image name End Here****//
		 
         if (move_uploaded_file($_FILES['file']['tmp_name'][$i],"../category_more_images/$imgName")) {
			
			    $sql = "insert into tbl_category_image set 
				           category_image_cat_id='$catID',
		                   category_image_status='Active',
						   category_image_name='$imgName',
						   category_image_title='$gTitle',	
						   category_image_add_date=now()";
						   db_query($sql);				
            } 
			       
        }
		set_session_msg("Image uploaded successfully !");
		header("Location: category_image_list.php?cat_id=$_REQUEST[cat_id]");
		exit;
    }
 }
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<link href="imgstyle.css" rel="stylesheet" type="text/css">
<script src="jquery.min.js"></script>
<script src="scriptami.js"></script>
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead"> <?=$catNAME?> Images</div></td>
              </tr>
            </table>
            <div><strong class="msg" style="margin-left:500px; margin-bottom:5px;">
              <?=display_sess_msg()?>
              </strong></div>
            <div style="width:100%;">
			<?php			
			  $sql_fetch = db_query("select * from tbl_category_image where 1 and category_image_cat_id='".$_REQUEST['cat_id']."'");
			  $cntDATA=mysqli_num_rows($sql_fetch);
			   if($cntDATA > 0){	
			   while($DATA = mysqli_fetch_array($sql_fetch)) {
		          @extract($DATA);		 
             ?>
			 <div style="width:120px; height:170px; margin-top:10px;border:1px outset #fff; float:left; margin-left:8px;">
             <p align="center"><img src="../category_more_images/<?=$DATA['category_image_name']?>" width="90" height="90" /><br>
            <span style="font-weight:bold;"><?=$DATA['category_image_title']?></span></p>
	<p align="center"><a href="category_image_list.php?DelID=<?=$DATA['category_image_id']?>&cat_id=<?=$_REQUEST['cat_id']?>"><img src="images/no.gif"></a></p>
          </div>		  
			 <? }} ?>
			 <div class="cb"></div>
			 </div>
            <table width="55%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm" style="border:1px outset #fff; margin-top:5px; margin-bottom:10px;">
              <tr>
                <td class="tdLabel" style="padding:8px;">
				<div id="maindiv">
                    <div id="formdiv">
                      <form enctype="multipart/form-data" action="" method="post">
                        <div id="filediv">
                          <input name="file[]" type="file" id="file"/>
                        </div>
                        <br/>
                        <input type="button" id="add_more" class="upload" value="Add More Files"/>
                        <input type="submit" value="Upload File" name="submit" id="upload" class="upload"/>
                      </form>
                      <br/>
                    </div>
                  </div></td>
              </tr>
            </table>
            <?php include("bottom.inc.php");?>
admin/manage_gallery_list.php0000644000352000025440000001646714373672171017057 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");

/*if(is_post_back()) {
	$arr_ids = $_REQUEST['arr_ids'];
	if(is_array($arr_ids)) {
		$str_ids = implode(',', $arr_ids); 
		if(isset($_REQUEST['Delete']) || isset($_REQUEST['Delete_x']) ) {
			db_query("delete from tbl_testimonial where test_id in ($str_ids)");
			set_session_msg("Testmonial Deleted Successfully !");
		} else if(isset($_REQUEST['Activate']) || isset($_REQUEST['Activate_x']) ) {
			db_query("update tbl_testimonial set test_status = 'Active' where test_id in ($str_ids)");
			set_session_msg("Testmonial Activated Successfully !");
		} else if(isset($_REQUEST['Deactivate']) || isset($_REQUEST['Deactivate_x']) ) {
			db_query("update tbl_testimonial set test_status = 'Inactive' where test_id in ($str_ids)");
			set_session_msg("Testmonial Deactivated Successfully !");
		}
	}
	header("Location: ".$_SERVER['HTTP_REFERER']);
	exit;
}

$start = intval($start);
$pagesize = intval($pagesize)==0?$pagesize=DEF_PAGE_SIZE:$pagesize;

$order_by == '' ? $order_by = 'gallery_id' : true;
$order_by2 == '' ? $order_by2 = 'desc' : true;

$sql = "select * from tbl_gallery   where  1";
$sql = apply_filter($sql, $gallery_image_title, 'like','gallery_image_title');
$sql .= " order by $order_by $order_by2 ";
$sql .= " limit $start, $pagesize ";

$pager = new midas_pager_sql($sql, $pagesize, $start);
if($pager->total_records) {
	$result = db_query($sql);
}
*/
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<script language="JavaScript" type="text/javascript" src="../includes/general.js"></script>
<? include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead">Image list </div></td>
              </tr>
            </table>
			<strong class="msg" style="margin-left:500px;"><?=display_sess_msg()?></strong>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="content">
                  <!--  <form method="get" name="form2" id="form2" onSubmit="return confirm_submit(this)">
                    <br />
                    <table  border="0" align="center" cellpadding="2" cellspacing="0" class="tableSearch" style="width:300px; height:90px;border:2px outset #fff;">
                      <tr align="center">
                        <th colspan="2">Search</th>
                      </tr>
                      <tr>
                        <td class="tdLabel">Name</td>
                        <td><input name="test_given_by" type="text" value="" style="width:200px; height:24px;" /></td>
                      </tr>
                      <tr>
                        <td>&nbsp;</td>
                        <td><input name="pagesize" type="hidden" id="pagesize" value="<?=$pagesize?>" />
                          <input type="image" name="imageField" src="images/buttons/search.gif" /></td>
                      </tr>
                    </table>
                  </form>
                  <br />-->
                  <div align="right"><a href="add_edit_gallery_list.php" style="font-size:12px; font-weight:bold;">Add New Image</a> </div>
                  <? /*if($pager->total_records==0) {?>
                  <div class="msg">Sorry, no records found.</div>
                  <? } else { ?>
                  <div align="right">
                    <? $pager->show_displaying()?>
                  </div>
                  <div>Records Per Page:
                    <?=pagesize_dropdown('pagesize', $pagesize);?>
                  </div>
                  */?>
                  <form method="post" name="form1" id="form1" onSubmit="confirm_submit(this)">
                    <table width="100%"  border="0" cellpadding="0" cellspacing="1" class="tableList">
                      <tr>
                        <th width="18%" nowrap="nowrap" style="font-size:12px; padding:9px;">Title</th>
                        <!--<th width="18%" nowrap="nowrap" style="font-size:12px; padding:9px;">Company</th>
                        <th width="11%" nowrap="nowrap" style="font-size:12px; padding:9px;">Image</th>
						<th width="7%" nowrap="nowrap" style="font-size:12px; padding:9px;">Posted Date</th>
                        <th width="7%" nowrap="nowrap" style="font-size:12px; padding:9px;">Status<?=sort_arrows('test_status')?></th>-->
                        <th width="4%">&nbsp;</th>
                      <!--  <th width="4%"><input name="check_all" type="checkbox" id="check_all" value="1" onClick="checkall(this.form)" /></th>-->
                      </tr>
                      <?php
	$result = db_query("select * from tbl_gallery   where  1  group by gallery_image_title");
while ($line_raw = mysqli_fetch_array($result)) {
	$line = ms_display_value($line_raw);
	@extract($line);
	$css = ($css=='trOdd')?'trEven':'trOdd';
 
?>
                      <tr class="<?=$css?>">
                        <td align="center" style="font-size:12px;"><?php echo $gallery_image_title;?> </td>
                         <!--<td align="center" style="font-size:12px;"><?php echo $test_comp_name;?> </td>
                        <td align="center"><img src="../test_images/<?=$test_image_name?>" height="80" width="80"  border="0"> </td>
						<td align="center" style="font-size:12px;"><?php echo $test_add_date;?> </td>
						<td align="center"><b style="font-size:12px;"><?php echo $test_status;?></b> </td>-->
                        <td align="center"><a href="add_edit_gallery_list.php?title=<?=$gallery_image_title?>"><img src="images/icons/edit.png" alt="Edit" width="16" height="16" border="0" /></a></td>
                     <!--   <td align="center"><input name="arr_ids[]" type="checkbox" id="arr_ids[]" value="<?=$test_id?>" /></td>-->
                      </tr>
                      <? } ?>
                    </table>
                   <!-- <table width="100%" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td align="right" style="padding:2px">
						<input type="submit" name="Activate" value="Activate" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#1F3E00; border-radius:4px; cursor:pointer; width:100px;"/>
                          <input type="submit" name="Deactivate" value="Deactivate" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#FF6F6F; border-radius:4px; cursor:pointer; width:100px;" />
                          <input type="submit" name="Delete" value="Delete" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#CA0000; border-radius:4px; cursor:pointer; width:100px;"/>
                        </td>
                      </tr>
                    </table>-->
                  </form>
                  <? /*$pager->show_pager();?>
                  <? } */?>
                </td>
              </tr>
            </table>
            <?php include("bottom.inc.php");?>
			<script language="javascript">
function select_chk(){
			var chks = document.getElementsByName('arr_ids[]');
			var hasChecked = false;
			for (var i = 0; i < chks.length; i++){
			if (chks[i].checked){
				hasChecked = true;
				break;
				}
			}
			if (hasChecked == false){
			alert("Please Select At Least One.");
			return false;
			}
}
</script>
admin/paging.inc.php0000644000352000025440000000342312222355054015043 0ustar  thediannthediann<?
if($reccnt>$pagesize){
$num_pages=$reccnt/$pagesize;
$PHP_SELF=$_SERVER['PHP_SELF'];
$qry_str=$_SERVER['argv'][0];
$m=$_GET;
unset($m['start']);
$qry_str=qry_str($m);
//echo "$qry_str : $p<br>";
//$j=abs($num_pages/10)-1;
$j=$start/$pagesize-5;
//echo("<br>$j");
if($j<0) {
	$j=0;
}
$k=$j+10;
if($k>$num_pages)	{
	$k=$num_pages;
}
$j=intval($j);
?>


<table width="50%" border="0" cellspacing="2" cellpadding="0" align="center">
  <tr>
    <td  width="11%" align="center"><a href="<?=$PHP_SELF?><?=$qry_str?>&start=0">First</a></td>
    <td  width="14%" height="20" align="center" nowrap><a href="<?=$PHP_SELF?><?=$qry_str?>&start=<?=$start-$pagesize?>" >
      <?
		if($start!=0)
		{

?>
&laquo;&nbsp;Previous&nbsp;<?=$pagesize?>
      </a><?
		}
?>
    </td>
    <td class="subcat" width="52%" align="center" height="20"><?
			
			for($i=$j;$i<$k;$i++)
			{
				if($i==$j)echo "Page:";
			   if(($pagesize*($i))!=$start)
				  {
	  ?>
      <a href="<?=$PHP_SELF?><?=$qry_str?>&start=<?=$pagesize*($i)?>" style="text-decoration:none;" class="subcat">
      <?=$i+1?>
      </a>
      <?
				  }
	  else{
	  ?>
      <b>
      <?=$i+1?>
      </b>
      <?
	  }
 }?>
    </td>
    <td  width="13%" height="20" align="center" nowrap><?
	if($start+$pagesize < $reccnt){
		?>&nbsp;<a href="<?=$PHP_SELF?><?=$qry_str?>&start=<?=$start+$pagesize?>">Next&nbsp;
      <?//echo("$reccnt,$start,$pagesize");
		if($start+($pagesize*2)>$reccnt){echo($reccnt-($start+$pagesize));}else{echo($pagesize);}?>
&nbsp;&raquo;</a><?
		}
  ?>
    </td>
    <td  width="10%" align="center"><?$mod=$reccnt%$pagesize; if($mod==0){$mod=$pagesize;}?>
    <a href="<?=$PHP_SELF?><?=$qry_str?>&start=<?=$reccnt-$mod?>">Last</a></td>
  </tr>
</table>
<?
}

?>
admin/manage-site-down.php0000644000352000025440000000554314373671731016206 0ustar  thediannthediann<?php 
ob_start();
require_once("../includes/dbsmain.inc.php"); 
if(isset($_POST['FeatureSubmit'])){
@extract($_POST);
if($admin_site_down!='Yes'){
    $admin_site_down_message='';
  }
  $sql="update tbl_admin set 
			admin_site_down='$admin_site_down',
			admin_site_down_message='$admin_site_down_message'
			where admin_user_type='Admin'";
            db_query($sql);
    $arr_error_msgs[] = "Record Updated Successfully !";
}  
$found_del=mysqli_fetch_array(db_query("select admin_site_down,admin_site_down_message from tbl_admin where admin_user_type='Admin'"));
?>
<?php include ('top.inc.php'); ?>
            <link href="styles.css" rel="stylesheet" type="text/css">
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead" ><div id="txtPageHead">Manage Site Down </div></td>
              </tr>
            </table>
            <div align="center"><b>
              <?php include('error_msgs.inc.php');?>
              </b></div>
            <form name="form1" method="post" enctype="multipart/form-data">
              <table  border="0" width="42%"align="center" cellpadding="0" cellspacing="0" class="tableSearch" style=" border:2px outset #fff; margin-bottom:20px; margin-top:15px;">
                <tr>
                  <td class='tdLabel' width="39%" style="font-size:12px; padding-top:25px; color:#003871"><strong style="margin-left:50px;">Down Site : </strong> </td>
                  <td class='tdLabel' style="padding-top:25px;" align="left"><span>
                    <input name="admin_site_down" type="checkbox" value="Yes" <?php if($found_del['admin_site_down']=='Yes') {?> checked="checked" <?php }?> />
                    </span></td>
                </tr>
                <tr>
                  <td class='tdLabel' style="font-size:12px; padding-top:15px; color:#003871"><strong style="margin-left:50px;">Down Site Message : </strong> </td>
                  <td class='tdLabel' style="padding-top:15px;" align="left"><span>
                    <textarea name="admin_site_down_message" rows="4" cols="50"><?=$found_del['admin_site_down_message']?>
</textarea>
                    </span></td>
                </tr>
                <tr>
                  <td class='tdLabel'>&nbsp;</td>
                  <td class='tdLabel'>&nbsp;</td>
                </tr>
                <tr>
                  <td align="center" colspan="4">&nbsp;</td>
                </tr>
                <tr>
                  <td align="center" colspan="4"><input type="submit" name="FeatureSubmit" class="button" style="font-size:14px; font-weight:bold; height:29px; background-color:#7F7F7F; border-radius:4px; cursor:pointer; width:100px; margin-bottom:20px;" ></td>
                </tr>
              </table>
            </form>
            <?php include ('bottom.inc.php'); ?>
admin/manage_menu.php0000644000352000025440000000731714373672361015324 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
$menu_id=$_REQUEST['menu_id'];
$DelImageId=$_REQUEST['DelID'];
 if(!empty($DelImageId)){ 
   $imageToDel=db_scalar("select menu_image_name from tbl_menu where 1 and menu_id='$DelImageId'"); 
   @unlink('../menu_images/'.$imageToDel);
   $sqldel="delete from tbl_menu where 1 and menu_id='$DelImageId'";
   db_query($sqldel);
   set_session_msg("Menu Image Updated Successfully !");
   header("Location: manage_menu.php");
   exit;
 }

if(is_post_back()) {
if (isset($_POST['submit'])) {
    for ($i = 0; $i < count($_FILES['file']['name']); $i++) {
	     $imgName=$_FILES['file']['name'][$i];
		 $gTitle=$_POST['title'][$i];
         if (move_uploaded_file($_FILES['file']['tmp_name'][$i],"../menu_images/$imgName")) {
			
			    $sql = "insert into tbl_menu set 
		                   menu_status='Active',
						   menu_image_name='$imgName',
						   menu_add_date=now()";
						   db_query($sql);				
            } 
			       
        }
		set_session_msg("Menu Image uploaded successfully !");
		header("Location: manage_menu.php");
		exit;
    }
 }
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<link href="imgstyle.css" rel="stylesheet" type="text/css">
<script src="jquery.min.js"></script>
<script src="scriptami.js"></script>
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead"> Add/Edit Menu Image</div></td>
              </tr>
            </table>
            <div><strong class="msg" style="margin-left:500px; margin-bottom:5px;">
              <?=display_sess_msg()?>
              </strong></div>
			  <div style="width:100%;">
			<?php			
			  $sql_fetch = db_query("select * from tbl_menu where 1");
			  $cntDATA=mysqli_num_rows($sql_fetch);
			   if($cntDATA > 0){	
			    while($DATA = mysqli_fetch_array($sql_fetch)) {
		        @extract($DATA); 
             ?>
			 <div style="width:120px; height:170px; margin-top:10px;border:1px outset #fff; float:left; margin-left:8px;">
             <p align="center"><img src="../menu_images/<?=$DATA['menu_image_name']?>" width="90" height="90" /><br>
             <!--   <span style="font-weight:bold;"><?=$DATA['gallery_image_title']?></span>-->
                </p>
				<p align="center"><a href="manage_menu.php?DelID=<?=$DATA['menu_id']?>"><img src="images/no.gif"></a></p>
          </div>
		  
			 <? }} ?>
			 <div class="cb"></div>
			 </div>
			  
			
            <table width="55%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm" style="border:1px outset #fff; margin-top:5px; margin-bottom:10px;">
              <tr>
                <td class="tdLabel" style="padding:8px;"><div id="maindiv">
                    <div id="formdiv">
                      <form enctype="multipart/form-data" action="" method="post">
                        <div id="filediv">
                          <input name="file[]" type="file" id="file" multiple />
                          <!--<span style="font-size:11px; color:#E60000; font-weight:bold; margin-left:5px;"><b style="color:#000000;">Image Size ></b> width :  200px, height : 200px</span>-->
                        </div>
                        <br/>
                        <input type="button" id="add_more" class="upload" value="Add More Files"/>
                        <input type="submit" value="Upload File" name="submit" id="upload" class="upload"/>
                      </form>
                      <br/>
                    </div>
                  </div></td>
              </tr>
            </table>
            <?php include("bottom.inc.php");?>
admin/scriptami.js0000644000352000025440000000125712743217570014661 0ustar  thediannthediannvar abc = 0; //Declaring and defining global increement variable

$(document).ready(function() {

//To add new input file field dynamically, on click of "Add More Files" button below function will be executed
    $('#add_more').click(function() {
        $(this).before($("<div/>", {id: 'filediv'}).fadeIn('slow').append(
                $("<input/>", {name: 'file[]', type: 'file', id: 'file'}),
                $("<br/><br/>")
                ));
    });


    $('#upload').click(function(e) {
        var name = $(":file").val();
        if (!name)
        {
            alert("First Image Must Be Selected");
            e.preventDefault();
        }
    });
});admin/manage_setting.php0000644000352000025440000001747214373672722016041 0ustar  thediannthediann<?php 
ob_start();
require_once("../includes/dbsmain.inc.php"); 
if(isset($_POST['FeatureSubmit'])){
@extract($_POST);
if($admin_etrust_option!='Yes'){
    $admin_etrust_link='';
  }
  $sql="update tbl_admin set 
			admin_search_option='$admin_search_option',
			admin_language_option='$admin_language_option',
			admin_video_option='$admin_video_option',
			admin_etrust_option='$admin_etrust_option',
			admin_visitor_counter_option='$admin_visitor_counter_option',
			admin_product_option='$admin_product_option',
			admin_etrust_link='$admin_etrust_link',
				admin_whatsapp_option='$admin_whatsapp_option',
			admin_call_now_option='$admin_call_now_option',
			admin_skype_option='$admin_skype_option',
			
			admin_callback_option='$admin_callback_option',
			admin_flipbook_option='$admin_flipbook_option'
			where admin_user_type='Admin'";
            db_query($sql);
    $arr_error_msgs[] = "Features Added Successfully !";
}
$found_del=mysqli_fetch_array(db_query("select * from tbl_admin where 1 and admin_user_type='Admin'"));
?>
<?php include ('top.inc.php'); ?>
            <link href="styles.css" rel="stylesheet" type="text/css">
             <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead" ><div id="txtPageHead">Manage Setting </div></td>
              </tr>
            </table>
			<div align="center"><b><?php include('error_msgs.inc.php');?></b></div>
            <form name="form1" method="post" enctype="multipart/form-data">
          <table  border="0" width="42%"align="center" cellpadding="2" cellspacing="3" class="tableSearch" style=" border:2px outset #fff; margin-bottom:20px; margin-top:15px;">
                <tr>
                  <td colspan='4' bgcolor="#004080" class='tdLabel' style="padding:10px;"><b style="color:#FFFFFF; font-size:14px;">Select Site Feature's</b></td>
                </tr>
                <tr>
                  <td class='tdLabel' style="font-size:12px; padding-top:15px;"><strong>1.</strong><span style="margin-left:10px;"> Search option</span> </td>
                  <td width="17%" class='tdLabel' style="padding-top:15px;"><input name="admin_search_option" type="checkbox" value="Yes" <?php if($found_del['admin_search_option']=='Yes') {?> checked="checked" <?php }?> /></td>
                </tr>
                <tr>
                  <td class='tdLabel' style="font-size:12px;"><strong>2.</strong> <span style="margin-left:10px;">E-Trust</span> </td>
                  <td class='tdLabel'><input name="admin_etrust_option" type="checkbox" value="Yes"  <?php if($found_del['admin_etrust_option']=='Yes') {?> checked="checked" <?php }?>  />
                  </td>
                </tr>
				
				<tr>
                  <td class='tdLabel' colspan="2" style="font-size:12px;"><span style="margin-left:10px; font-size:11px; font-weight:bold;">Enter E-Trust Link</span>
				  <span style="margin-left:7px;"><input name="admin_etrust_link" style="width:320px; height:23px; border:1px solid #DFDFDF; padding-left:5px;" type="text" value="<?=$found_del['admin_etrust_link']?>"  /></span> 
				  </td>
                  
                </tr>
				
                <tr>
                  <td class='tdLabel' style="font-size:12px;"><strong>3.</strong> <span style="margin-left:10px;">Visitor Counter</span> </td>
                  <td class='tdLabel'><input name="admin_visitor_counter_option" type="checkbox" value="Yes" <?php if($found_del['admin_visitor_counter_option']=='Yes') {?> checked="checked" <?php }?> /></td>
                </tr>
                <tr>
                  <td class='tdLabel' style="font-size:12px;"><strong>4.</strong> <span style="margin-left:10px;">Products</span> </td>
                  <td class='tdLabel'><input name="admin_product_option" type="radio" value="Yes"  <?php if($found_del['admin_product_option']=='Yes') {?> checked="checked" <?php }?>  />
                  </td>
                </tr>
                <tr>
                  <td class='tdLabel' style="font-size:12px;"><strong>5.</strong> <span style="margin-left:10px;">Services</span> </td>
                  <td class='tdLabel'><input name="admin_product_option" type="radio" value="No" <?php if($found_del['admin_product_option']=='No') {?> checked="checked" <?php }?> /></td>
                </tr>
                <tr>
                  <td class='tdLabel' style="font-size:12px;"><span style="font-weight: bold">6.</span> <span style="margin-left:10px;">Language Converter</span> </td>
                  <td class='tdLabel'><input name="admin_language_option" type="checkbox" value="Yes" <?php if($found_del['admin_language_option']=='Yes') {?> checked="checked" <?php }?> /></td>
                </tr>
                <tr>
                  <td class='tdLabel' style="font-size:12px;"><strong>7.</strong> <span style="margin-left:10px;">Video</span> </td>
                  <td class='tdLabel'><input name="admin_video_option" type="checkbox" value="Yes"  <?php if($found_del['admin_video_option']=='Yes') {?> checked="checked" <?php }?>  />
                  </td>
				  </tr>
                 
				  <tr>
                  <td class='tdLabel' style="font-size:12px;"><strong>8.</strong> <span style="margin-left:10px; font-weight:bold; color:#244800">Flip Book</span> </td>
                  <td class='tdLabel'><input name="admin_flipbook_option" type="checkbox" value="Yes"  <?php if($found_del['admin_flipbook_option']=='Yes') {?> checked="checked" <?php }?>  />
                  </td>
                  </tr>
                  
                   <tr>
                  <td class='tdLabel' style="font-size:12px;"><strong>9.</strong> <span style="margin-left:2px; font-weight:bold; color:green">Visible WhatsApp Icon</span> </td>
                  <td class='tdLabel'><input name="admin_whatsapp_option" type="checkbox" value="Yes"  <?php if($found_del['admin_whatsapp_option']=='Yes') {?> checked="checked" <?php }?>  />
                  </td>
                  </tr>
                  
                      <tr>
                  <td class='tdLabel' style="font-size:12px;"><strong>10.</strong> <span style="margin-left:2px; font-weight:bold;">Call Now Feature (In mobile view)</span> </td>
                  <td class='tdLabel'><input name="admin_call_now_option" type="checkbox" value="Yes"  <?php if($found_del['admin_call_now_option']=='Yes') {?> checked="checked" <?php }?>  />
                  </td>
                  </tr>
                   <tr>
                  <td class='tdLabel' style="font-size:12px;"><strong>11.</strong> <span style="margin-left:2px; font-weight:bold; ">Show Call Back Icon</span> </td>
                  <td class='tdLabel'><input name="admin_callback_option" type="checkbox" value="Yes"  <?php if($found_del['admin_callback_option']=='Yes') {?> checked="checked" <?php }?>  />
                  </td>
                  </tr>
                  <tr>
                  <td class='tdLabel' style="font-size:12px;"><strong>12.</strong> <span style="margin-left:2px; font-weight:bold; ">Skype Feature</span> </td>
                  <td class='tdLabel'><input name="admin_skype_option" type="checkbox" value="Yes"  <?php if($found_del['admin_skype_option']=='Yes') {?> checked="checked" <?php }?>  />
                  </td>
                  </tr>
				  <tr>
                  <td class='tdLabel'>&nbsp;</td>
                  <td class='tdLabel'>&nbsp;</td>
                </tr>
                
                <tr>
                  <td align="center" colspan="4">&nbsp;</td>
                </tr>
                <tr>
                  <td align="center" colspan="4">
                    <input type="submit" name="FeatureSubmit" class="button" style="font-size:14px; font-weight:bold; height:29px; background-color:#7F7F7F; border-radius:4px; cursor:pointer; width:100px; margin-bottom:20px;" ></td>
                </tr>
              </table>
            </form>
            <?php include ('bottom.inc.php'); ?>
admin/cross.gif0000644000352000025440000000012311606204104014121 0ustar  thediannthediannGIF89a����������!�
,$�ǝ��RQg/�,���@��)�)�qڤp<��U;admin/error_msgs.inc.php0000644000352000025440000000027112451067166015766 0ustar  thediannthediann  <? if(is_array($arr_error_msgs) && count($arr_error_msgs)>0) {?>
  <p class="errorMsg">
  <? foreach($arr_error_msgs as $err_msg){?>
  <br><?=$err_msg?>
  <? }?>
  </p>
  <? }?>admin/manage_site_font.php0000644000352000025440000001260514373672751016351 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
if (isset($_POST['Submit'])) {
@extract($_POST);
			    $sql = "update tbl_site_color set 
				           site_color_font_size='$site_color_font_size',
		                   site_color_font_style='$site_color_font_style',
						   site_color_font_color='$site_color_font_color'
						   where 1 and site_color_admin_id='1'";
						   db_query($sql);				
		set_session_msg("Record updated successfully !");
		header("Location: manage_site_font.php");
		exit;
    }
	
if (isset($_POST['ChangeDefault'])) {
			    $sql = "update tbl_site_color set 
				           site_color_font_size='',
		                   site_color_font_style='',
						   site_color_font_color=''
						   where 1 and site_color_admin_id='1'";
						   db_query($sql);				
		set_session_msg("Record change to default successfully !");
		header("Location: manage_site_font.php");
		exit;
    }	
	$result = db_query("select site_color_font_size,site_color_font_style,site_color_font_color from tbl_site_color where 1");
	if ($line_raw = mysqli_fetch_array($result)) {
		@extract($line_raw);
		}
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="jscolor.js"></script>
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead"> Add/Edit Font-Size-Style-Color</div></td>
              </tr>
            </table>
            <div><strong class="msg" style="margin-left:500px; margin-bottom:5px;">
              <?=display_sess_msg()?>
              </strong></div>
            <table width="45%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm" style="border:1px outset #fff; margin-top:5px; margin-bottom:10px;">
                <tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Current Font Size</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="text" style="border:none;width:260px; height:25px;" disabled="disabled" value="<?=$line_raw['site_color_font_size']?>"></td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Current Font Style</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="text" disabled="disabled" style="border:none;width:260px; height:25px;" value="<?=$line_raw['site_color_font_style']?>"></td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Current Font Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="text" class="color" disabled="disabled" style="border:none;width:260px; height:25px;" value="<?=$line_raw['site_color_font_color']?>"></td>
                </tr>
				</table>
            <form enctype="multipart/form-data" action="" method="post">
              <table width="45%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm" style="border:1px outset #fff; margin-top:45px; padding-top:20px; padding-bottom:20px; margin-bottom:10px;">
			  
				
                <tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Select Font Size</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left">
				   <select id="site_color_font_size" name="site_color_font_size" style="width:260px; height:25px;">
				   <option value="" selected="selected">Select Font Size</option>
						<option>11</option>
						<option>12</option>
						<option>13</option>
						<option>14</option>
						<option>15</option>
						<option>16</option>
						</select>
</td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Select Font Style</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left">
				   <select id="site_color_font_style" name="site_color_font_style" style="width:260px; height:25px;">
				   <option value="" selected="selected">Select Font Style</option>
						<option>Arial</option>
						<option>Courier New</option>
						<option>Georgia</option>
						<option>Times New Roman</option>
						<option>Comic Sans MS</option>
						<option>Verdana</option>
						</select>
				   
				   </td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Site Font Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="color" name="site_color_font_color" style="width:260px; height:25px;"></td>
                </tr>
				 <tr>
                  <td class="tdLabel" colspan="2" style="padding:8px;">
				  <span style="margin-left:185px;"><input type="submit" name="Submit" style="width:100px; font-weight:bold; font-size:13px; height:29px;"></span>
				  <span style="margin-left:10px;"><input type="submit" name="ChangeDefault" value="Set as default" style="width:145px; font-weight:bold; font-size:13px; height:29px;"></span>
                  </td>
                </tr>
              </table>
            </form>
            <?php include("bottom.inc.php");?>
admin/upload-catalog.php0000644000352000025440000001006214373673675015744 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
$pdf_id=$_REQUEST['pdf_id'];
$DelImageId=$_REQUEST['DelID'];
 if(!empty($DelImageId)){ 
   $imageToDel=db_scalar("select pdf_name from tbl_pdf where 1 and pdf_id='$DelImageId'"); 
   @unlink('../pdf_files/'.$imageToDel);
   $sqldel="delete from tbl_pdf where 1 and pdf_id='$DelImageId'";
   db_query($sqldel);
   set_session_msg("Catalog Updated Successfully !");
   header("Location: upload-catalog.php");
   exit;
 }

if(is_post_back()) {
if (isset($_POST['submit'])) {
    for ($i = 0; $i < count($_FILES['file']['name']); $i++) {
	     $imgName=$_FILES['file']['name'][$i];
		 $gTitle=$_POST['title'][$i];
		 
		   //**** Change Duplicate Image name Start Here****//
		 $ext = substr($imgName, strrpos($imgName, "."));		 
		 $imageDupli = db_scalar("select count(*) from tbl_pdf where 1 and pdf_name='$imgName'"); 
		 if($imageDupli > 0){
		  $imgName = basename($imgName, $ext);
		  $imgName = basename($imgName, $ext) . rand(1,1000) . $ext;
		 }else{
		  $imgName = $imgName;
		 }
		 //**** Change Duplicate Image name End Here****//
		 
         if (move_uploaded_file($_FILES['file']['tmp_name'][$i],"../pdf_files/$imgName")) {
			
			    $sql = "insert into tbl_pdf set 
		                   pdf_status='Active',
						   pdf_title='$gTitle',
						   pdf_name='$imgName',
						   pdf_add_date=now()";
						   db_query($sql);				
            } 
			       
        }
		set_session_msg("Catalog uploaded successfully !");
		header("Location: upload-catalog.php");
		exit;
    }
 }
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<link href="imgstyle.css" rel="stylesheet" type="text/css">
<script src="jquery.min.js"></script>
<script src="scriptami.js"></script>
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead"> Add/Edit Catalog PDF</div></td>
              </tr>
            </table>
            <div><strong class="msg" style="margin-left:500px; margin-bottom:5px;">
              <?=display_sess_msg()?>
              </strong></div>
            <div style="width:100%;">
              <?php			
			    $sql_fetch = db_query("select * from tbl_pdf where 1");
			  $cntDATA=mysqli_num_rows($sql_fetch);
			   if($cntDATA > 0){
			  while($DATA = mysqli_fetch_array($sql_fetch)) {
		          @extract($DATA);
             ?>
              <div style="width:200px; height:130px; margin-top:10px;border:1px outset #fff; float:left; margin-left:8px;">
                <p align="center" style="font-size:13px; font-weight:bold;"><?=$DATA['pdf_name']?></p>
                <p align="center"><a href="upload-catalog.php?DelID=<?=$DATA['pdf_id']?>"><img src="images/no.gif"></a></p>
				<p align="center"><?=$DATA['pdf_title']?></p>
              </div>
              <? }} ?>
              <div class="cb"></div>
            </div>
            <table width="55%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm" style="border:1px outset #fff; margin-top:5px; margin-bottom:10px;">
              <tr>
                <td class="tdLabel" style="padding:8px;"><div id="maindiv">
                    <div id="formdiv">
                      <form enctype="multipart/form-data" action="" method="post">
                        <div id="filediv">
                          <input name="file[]" type="file" id="file" multiple /><br><br>
						  <input name="title[]" type="text" id="title" style="width:230px; height:26px;" placeholder="Enter Title"/>
                          </div>
                        <br/>
                        <input type="button" id="add_more" class="upload" value="Add More Files"/>
                        <input type="submit" value="Upload File" name="submit" id="upload" class="upload"/>
                      </form>
                      <br/>
                    </div>
                  </div></td>
              </tr>
            </table>
            <?php include("bottom.inc.php");?>
admin/addedit-header-flash.php0000644000352000025440000001610714373667075016772 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
ob_start();
$header_flash_id=$_REQUEST['header_flash_id'];
if(is_post_back()){
//*************** UPDATE EXISTING CATEGORY START ************************//
if($_REQUEST['header_flash_id']!='') {

 	$imgName =$_FILES["file"]["name"];
	$uploadedfile = $_FILES['file']['tmp_name']; 
 	if ($imgName) { //**** Change Duplicate Image name Start Here****//
		 $ext = substr($imgName, strrpos($imgName, "."));		 
		 $imageDupli = db_scalar("select count(*) from tbl_header_flash where 1 and header_flash_image_name='$imgName'"); 
		 if($imageDupli > 0){
		  $imgName = basename($imgName, $ext);
		  $imgName = basename($imgName, $ext) . rand(1,1000) . $ext;
		   move_uploaded_file($_FILES['file']['tmp_name'],"../flash_images/$imgName");
		 }else{
		  $imgName = $imgName;
		   move_uploaded_file($_FILES['file']['tmp_name'],"../flash_images/$imgName");
		 }
		 //**** Change Duplicate Image name End Here****//
		
	 }else{
$imgName=db_scalar("select header_flash_image_name from tbl_header_flash where 1 and header_flash_id = '$header_flash_id'");
}

////////////****************** IMAGE RESIZING END HERE *****************************//
$sql = "update tbl_header_flash set        
				header_flash_title='$header_flash_title',
				header_flash_description='$header_flash_description',
				header_flash_image_name='$imgName',
				header_flash_link='$header_flash_link',
				header_flash_brand_name='$header_flash_brand_name',
				header_flash_type='Main', 	
				header_flash_add_date=now(),
				header_flash_status='$header_flash_status'
				where header_flash_id = '$header_flash_id' ";

db_query($sql);
set_session_msg("Header Updated Successfully !");
header("Location:addedit-header-flash.php?header_flash_id=$_REQUEST[header_flash_id]");
exit;
//*************** UPDATE EXISTING CATEGORY END ************************//
}else{

$imgName =$_FILES["file"]["name"];
	$uploadedfile = $_FILES['file']['tmp_name']; 
 	if ($imgName) { //**** Change Duplicate Image name Start Here****//
		 $ext = substr($imgName, strrpos($imgName, "."));		 
		 $imageDupli = db_scalar("select count(*) from tbl_header_flash where 1 and header_flash_image_name='$imgName'"); 
		 if($imageDupli > 0){
		  $imgName = basename($imgName, $ext);
		  $imgName = basename($imgName, $ext) . rand(1,1000) . $ext;
		   move_uploaded_file($_FILES['file']['tmp_name'],"../flash_images/$imgName");
		 }else{
		  $imgName = $imgName;
		   move_uploaded_file($_FILES['file']['tmp_name'],"../flash_images/$imgName");
		 }
		 //**** Change Duplicate Image name End Here****//
		
	 }

////////////****************** IMAGE RESIZING END HERE *****************************//
$sql = "insert into tbl_header_flash set 
                header_flash_title='$header_flash_title',
				header_flash_description='$header_flash_description',
				header_flash_image_name='$imgName',
				header_flash_link='$header_flash_link',
				header_flash_type='Main', 					
				header_flash_brand_name='$header_flash_brand_name', 	
				header_flash_add_date=now(),
				header_flash_status='$header_flash_status'";

db_query($sql);
set_session_msg("Header Added Successfully !");
header("Location:addedit-header-flash.php");
exit;
//*************** INSERT NEW CATEGORY END ************************//
 }
}

if($header_flash_id!='') {
	$result = db_query("select * from tbl_header_flash where header_flash_id = '$header_flash_id'");
	if ($line_raw = mysqli_fetch_array($result)) {
	 @extract($line_raw);
	}
}
?>
<script src="ckeditor/ckeditor.js"></script>
<style>
p.fck {
    width: 90%;
	float:left;
    margin: 0 auto;
 }
</style>
<link href="styles.css" rel="stylesheet" type="text/css">
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead">Add/Edit Header Flash</div></td>
              </tr>
            </table>
            <div align="right"><a href="manage-header-flash.php" style="font-size:12px; font-weight:bold; margin-right:15px;">Back to Header Flash List</a>&nbsp;</div>
            <form name="form1" method="post" enctype="multipart/form-data">
              <table width="95%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm">
                <tr>
                  <td width="20%" class="tdLabel">&nbsp;</td>
                  <td width="80%" class="tdData" style="padding-left:7px;"><strong><font color="green">
                    <?=display_sess_msg();?>
                    </font></strong></td>
                </tr>
				<tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Brand Name :</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><input name="header_flash_brand_name" style="width:350px; height:28px;" type="text" id="header_flash_brand_name"  value="<?=$header_flash_brand_name?>" class="textfield"  ></td>
                </tr>
				
              
                <?php if($header_flash_image_name){ ?>
                <tr>
                  <td width="177" class="tdLabel" style="font-size:12px; padding:5px;">Current Image  :</td>
                  <td width="721" class="tdData" style="font-size:12px; padding:5px;"><img src="../flash_images/<?=$header_flash_image_name?>" height="70" width="70"  border="0" /> </td>
                </tr>
                <? } ?>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:5px;">Flash Image :</td>
                  <td class="tdData" style="font-size:12px; padding:5px;"><input type="file" name="file" id="file" /></td>
                </tr>
				<tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Flash Description :</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><textarea name="header_flash_description" style="width:350px;" rows="6" id="header_flash_description" class="textfield"><?=$header_flash_description?></textarea></td>
                </tr>
				
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Status:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><select name="header_flash_status" style="width:350px; height:26px;">
                      <option value="Active" <?php if($header_flash_status=='Active'){ ?> selected="selected" <? } ?>>Active</option>
                      <option value="Inactive" <?php if($header_flash_status=='Inactive'){ ?> selected="selected" <? } ?>>Inactive</option>
                    </select></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">&nbsp;</td>
                  <td class="tdData" style="font-size:12px; padding:7px;">
                    <input type="image" name="imageField" src="images/buttons/submit.gif" style="width:100px; margin-bottom:25px;" /></td>
                </tr>
              </table>
            </form>
            <? include("bottom.inc.php");?>admin/hv.png0000644000352000025440000000546111606204104013436 0ustar  thediannthediann�PNG


IHDR�e�5�
�IDATx����
��M�ݪ��f���n�b@_ ��$]].�w��
�������IJ�@�
����_�6W�Χ@��8��̦��G����1{��̎�;O���ݻ��:�qݫ���ϧ�v�ඟ1~|���%a���G�K6.3����OLތ��ڹ��J�YF.�Q�֮�@>:���Q0�~��Ɔ���~��r��0hob z�~����H�y��μ�>zk�U{C�(���a����ȅ���^���[hvu�
�c�׈G{"��?23��:R
�z3���	v��F�A����Z��~��3n=��R�EZɱ��I"uX��y�~�@�0�DMb�w5�F�w�71=�?�ʦ��S�,����:tq�03f���b�<�n�21�Rfl��CW7hW3a�~}��ّ��Q6oRycV��&�G��σv!%��5h�@A���3��E��8z�x�݄v��O�N!Pj�GqM��<)�8:����&v*��:�Ŭ�����Phob zȏU�T>޹��2����jS	�@�a�D�9<Q!Ȳ ��<�����  �0`�	�d�
��A�a�@4�?�Jm����󠷉���
40s/���*&`Q�-eT�W�6C�4�f΂��-M�_4��B$��AU`�_�osf�X��N�PW����lYڢ�|6�<:�x3���/��Rn�MU�SzuQ9ڕXY����U:��A�
�&�jƣ�c���h����>��&��e�,�1�C4����$ON��t��tB��_��lAEQ4Gi�lt��1���ڀ���Hv��hob�>g�&�_��Hen/kSz��HK����,����_�f�r�Ǜ]3$�\�υ�I���Z
��_�ڀ����tق��R~l����B[�?���AWh�h�%\�Y���ۓ'��/��+����2΀v% ������_�TQ3�ݘ�<ڛX�Y�VןvV^g�_���(8՟>:��ޮ_���ΪU)��~���]����ԯ�3�B8��=�y#����h↵���X+��9F~�^�'��Ia�s���!���]h"���č[��9��k���Y��@�0����L��1Q0��?ڛ����M�<*p��TB����*�f���$l�z3W��4[�����I]OZ�'o%�c���o7��m�h�v���0��)�a�@�e�B�j���]UQ���/|4���߮Co�Zv]�Ruv]��)�;�5,t�[Ю�'��_�;��'���
Ў�'_�_��O�/.fm.��%�9����b�>�M�zy��B�ꩼ�
�D�A�/k-;o��Q�ubmm,�y�C�A�/�q����<hWb �(�v4Q��U^7�町ȗX�����*�K�J3]8M����5�j����ok�>��N��b�oZI"��(F}�ef(j�*C��P��^�'�f���\?(�����eZ�_W&{��c6��
<t����ܣ�F���{l^ߴ�ǩ�ˣ'NNT��!M�W����y�~�J}nzi�\w�k��J�J���& �{\w�ql'գ�f�@�A��À��X�|{ׄ���'B�k�{dk����A�݄2���=C�A�C��!7cۺ��}e)��)\t�H]�m2s�l�˖��D���v1O�tyU���zjm�~�S)��f�b}�EK[���<����Φ���Dho�@hb}MIu�;�$����<�gA�k֧[�&�D��b�yմ�k��^j��Nā�K�{Lago�z�����:��������:�E�<�=�@h��,�~ݿʳ��[���~�@��?{��x�����=\��
��I��8�Җ�:�	�׉iK���=6��?��eiv}*w��G�Z�U�H.Ͼ>�ӡM�iv�B�h����_6�l���P�ebp���\V�����uwrH��bU,̹�>�s�]��%����0��m��uB/��/ς ��O���{��-��(Zg����q��ā��=:���y��{��.�Gi�����a! �{�
�'Q�Bz�5Iq'�s�7�
Kx��V��������۠��G>
���Q}ͯ��z?��A{B��G�ͽШ΅��G�*�,>�{�J�A�K�kw0�O��%P�VtMK�z����@iy7���d�:��4�@���KjN:SwU�m�l�R_�T���#t�������1Ewb �ҳ�tGm���i���
�Ů]��0hWb ���#G��0�<��j��0�b ���T0��S�����G��]B��5��c�w��n��!JV����
~�#c������<�isa/�V�q�>q;PR�?��g�/�����`���ͣX��à���0h�����!��
|���Q���ٯ�Rz�1��_�Tmu�m�$��s�1��1�JҾM�v��0�0b��_*���&����s�Ц;�#�Bc>>�-M�'��F���7i�)d�LW��
m%Nq�P?6�{MGr����������3����0�{�ib���=L�A��w~��Lg@�GA��'w�_>�M���h	�N�v"v��C�uZw���|�Ho^���c���g�/i�9kU���"9ڕؑ�I�����·���h�����JU�׮�@'�+Q����Q��wt���j��A����Ͼ�`�x+�q�tIEND�B`�admin/edit_header_f.php0000644000352000025440000002033714373670440015603 0ustar  thediannthediann<?
require_once("../includes/dbsmain.inc.php");
ob_start();
if(is_post_back()) {
if($del_photo=="del_photo"){
			@unlink(UP_FILES_FS_PATH.$hidden_photo); 
			$sql_edit3=",header_welcome_image=''";
		}else if($_FILES['header_welcome_image']['name']){
			@unlink(UP_FILES_FS_PATH."/".$hidden_photo);
			$file_name3=get_unique_file_name($_FILES['header_welcome_image']['name']);
			move_uploaded_file($_FILES['header_welcome_image']['tmp_name'],UP_FILES_FS_PATH."/".$file_name3);        
			$sql_edit3=",header_welcome_image='$file_name3'";
		}
		
		if($del_photo=="del_photo"){
			@unlink(UP_FILES_FS_PATH.$hidden_photo); 
			$sql_edit6=",home_header_image=''";
		}else if($_FILES['home_header_image']['name']){
			@unlink(UP_FILES_FS_PATH."/".$hidden_photo);
			$file_name3=get_unique_file_name($_FILES['home_header_image']['name']);
			move_uploaded_file($_FILES['home_header_image']['tmp_name'],UP_FILES_FS_PATH."/".$file_name3);        
			$sql_edit6=",home_header_image='$file_name3'";
		}
		
		
		if($del_photo=="del_photo"){
			@unlink(UP_FILES_FS_PATH.$hidden_photo); 
			$sql_edit4=",header_main_image=''";
		}else if($_FILES['header_main_image']['name']){
			@unlink(UP_FILES_FS_PATH."/".$hidden_photo);
			$file_name3=get_unique_file_name($_FILES['header_main_image']['name']);
			move_uploaded_file($_FILES['header_main_image']['tmp_name'],UP_FILES_FS_PATH."/".$file_name3);        
			$sql_edit4=",header_main_image='$file_name3'";
		}
		
		

	if($del_photo=="del_photo"){
			@unlink(UP_FILES_FS_PATH.$hidden_photo); 
			$sql_edit=",header_image=''";
		}else if($_FILES['header_image']['name']){
			@unlink(UP_FILES_FS_PATH."/".$hidden_photo);
			$file_name=get_unique_file_name($_FILES['header_image']['name']);
			move_uploaded_file($_FILES['header_image']['tmp_name'],UP_FILES_FS_PATH."/".$file_name);        
			$sql_edit=",header_image='$file_name'";
		}
		
		if($del_photo=="del_photo"){
			@unlink(UP_FILES_FS_PATH.$hidden_photo); 
			$sql_edit1=",header_logo=''";
		}else if($_FILES['header_logo']['name']){
			@unlink(UP_FILES_FS_PATH."/".$hidden_photo);
			$file_name1=get_unique_file_name($_FILES['header_logo']['name']);
			move_uploaded_file($_FILES['header_logo']['tmp_name'],UP_FILES_FS_PATH."/".$file_name1);        
			$sql_edit1=",header_logo='$file_name1'";
		}
	


if($header_id!='') {
	$sql = "update tbl_header set  	header_status='$header_status' $sql_edit6 $sql_edit4 $sql_edit3 $sql_edit1 $sql_edit ,header_user_id='".$_SESSION['user_id']."'    where header_id ='$header_id' ";
	db_query($sql);
	header("Location: header_list.php");
}else{
	$sql = "insert into tbl_header set header_status='$header_status' $sql_edit6 $sql_edit4 $sql_edit3 $sql_edit1 $sql_edit,header_user_id='".$_SESSION['user_id']."'   ";
	db_query($sql);
	header("Location: header_list.php");
}

			
			header("Location: header_list.php");
			
	
}

$header_id = $_REQUEST['header_id'];
if($header_id!='') {
	//echo "select * from tbl_header where header_id = '$header_id'";
	$result = db_query("select * from tbl_header where header_id = '$header_id'");
	if ($line_raw = mysqli_fetch_array($result)) {
		//$line = ms_form_value($line_raw);
		@extract($line_raw);
	}
}
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<? include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead"> Add/Edit Header </div></td>
              </tr>
            </table>
            <div align="right"><a href="header_list.php">Back to 
              Header List</a>&nbsp;</div>
            <form name="form1" method="post" enctype="multipart/form-data" <?= validate_form()?>>
              <table width="95%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm">
              <tr>
      <td valign="top" align="center" colspan="2"><? include("error_msgs.inc.php");?></td>
    </tr>
				<? if($header_logo){?>
                 <tr>
                  <td width="177" class="tdLabel">Company  Logo  :</td>
                  <td width="721" class="tdData"><img src="<?=UP_FILES_WS_PATH."/".$header_logo?>" height="50" width="50"  border="0"><br /><input type="checkbox" name="del_photo" id="del_photo" value="del_photo" /> <strong>Delete Photo</strong></td>
                </tr>
                <? } ?> 
               <tr>
                  <td class="tdLabel">Company   Logo :</td>
                  <td class="tdData">
                   <input type="file" name="header_logo" id="header_logo" ><!--alt="file|.jpg,png,gif,jpeg,JPG,PNG,GIF,JPEG|cSens"--></td>
                </tr>
				
				<? if($header_image){?>
                 <tr>
                  <td width="177" class="tdLabel">Header  Flash  :</td>
                  <td width="721" class="tdData"><img src="<?=UP_FILES_WS_PATH."/".$header_image?>" height="50" width="50"  border="0"><br /><input type="checkbox" name="del_photo" id="del_photo" value="del_photo" /> <strong>Delete Photo</strong></td>
                </tr>
                <? } ?> 
               <tr>
			   
			    <tr>
                  <td class="tdLabel">Header Flash :</td>
                  <td class="tdData">
                   <input type="file" name="header_image" id="header_image" ><!--alt="file|.jpg,png,gif,jpeg,JPG,PNG,GIF,JPEG|cSens"--></td>
                </tr>
				
				<? if($header_image){?>
                 <tr>
                  <td width="177" class="tdLabel">Home Header   Flash  :</td>
                  <td width="721" class="tdData"><img src="<?=UP_FILES_WS_PATH."/".$home_header_image?>" height="50" width="50"  border="0"></td>
                </tr>
                <? } ?> 
               <tr>
			   
			    <tr>
                  <td class="tdLabel">Home Header Flash :</td>
                  <td class="tdData">
                   <input type="file" name="home_header_image" id="home_header_image" ><!--alt="file|.jpg,png,gif,jpeg,JPG,PNG,GIF,JPEG|cSens"--></td>
                </tr>
				
			   <? if($header_welcome_image){?>
                 <tr>
                  <td width="177" class="tdLabel">Welcome  Image  :</td>
                  <td width="721" class="tdData"><img src="<?=UP_FILES_WS_PATH."/".$header_welcome_image?>" height="50" width="50"  border="0"></td>
                </tr>
                <? } ?> 
               <tr>
			   
			    <tr>
                  <td class="tdLabel">Welcome Image :</td>
                  <td class="tdData">
                   <input type="file" name="header_welcome_image" id="header_welcome_image" ><!--alt="file|.jpg,png,gif,jpeg,JPG,PNG,GIF,JPEG|cSens"--></td>
                </tr>
				
				
			   
			   <? if($header_main_image){?>
                 <tr>
                  <td width="177" class="tdLabel">Main   Image  :</td>
                  <td width="721" class="tdData"><img src="<?=UP_FILES_WS_PATH."/".$header_main_image?>" height="50" width="50"  border="0"></td>
                </tr>
                <? } ?> 
               <tr>
			   
                  <td class="tdLabel">Main    Image :</td>
                  <td class="tdData">
                   <input type="file" name="header_main_image" id="header_main_image" ><!--alt="file|.jpg,png,gif,jpeg,JPG,PNG,GIF,JPEG|cSens"--></td>
                </tr>
                <!--<tr>
                  <td class="tdLabel">Meta Title:</td>
                  <td class="tdData"><input name="pg_meta_title"  style="width:40%" type="text" id="pg_meta_title" emsg="Please Enter Meta Title"  value="<? //=$pg_meta_title?>"  alt="blank" class="textfield" /></td>
                </tr>-->
                <tr>
                  <td class="tdLabel">Status:</td>
                  <td class="tdData"><?=status_dropdown('header_status',$header_status);?></td>
                </tr>
                <tr>
                  <td class="tdLabel">&nbsp;</td>
                  <td class="tdData"><input type="hidden" name="header_id" value="<?=$header_id?>" />
                  <input type="hidden" name="cat_pid" value="<?=$id?>" />
                  <input type="image" name="imageField" src="images/buttons/submit.gif" /></td>
                </tr>
              </table>
            </form>
            <? include("bottom.inc.php");?>
admin/manage-header.php0000644000352000025440000000412214373671167015520 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<script language="JavaScript" type="text/javascript" src="../includes/general.js"></script>
<? include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead">Manage Header</div></td>
              </tr>
            </table>
            <strong class="msg" style="margin-left:500px;">
            <?=display_sess_msg()?>
            </strong>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="content"><br />
                  <div align="right"> <a href="header_f.php" style="font-size:13px; font-weight:bold; margin-right:15px;">Add New Header</a> </div>
                  <form method="post" name="form1" id="form1" onSubmit="confirm_submit(this)">
                    <table width="100%"  border="0" cellpadding="0" cellspacing="1" class="tableList">
                      <tr>
                        <th width="11%" nowrap="nowrap" style="font-size:12px; padding:9px;">Header Logo </th>
                        <th width="4%">&nbsp;</th>
                      </tr>
                      <?php
$sql = "select * from tbl_header where 1";	
$result = db_query($sql);				  
while ($line_raw = mysqli_fetch_array($result)) {
	@extract($line_raw);
	$css = ($css=='trOdd')?'trEven':'trOdd';
?>
                      <tr class="<?=$css?>">
                        <td nowrap="nowrap" align="center"><img src="../header_files/<?=$line_raw['header_logo']?>" width="280" height="80" /> </td>
                        <td align="center"><a href="header_f.php?header_id=<?=$header_id?>"><img src="images/icons/edit.png" alt="Edit" width="18" height="18" border="0" /></a></td>
                      </tr>
                      <? } ?>
                    </table>                    
                  </form></td>
              </tr>
            </table>
            <?php include("bottom.inc.php");?>
admin/dynamic_advertise.js0000644000352000025440000103163012101776774016363 0ustar  thediannthediann/**
 * SWFObject v1.4.4: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
 *
 * SWFObject is (c) 2006 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 * **SWFObject is the SWF embed script formerly known as FlashObject. The name was changed for
 *   legal reasons.
 */
if(typeof deconcept=="undefined"){var deconcept=new Object();}
if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}
if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}
deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a,_b){if(!document.getElementById){return;}
this.DETECT_KEY=_b?_b:"detectflash";
this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);
this.params=new Object();
this.variables=new Object();
this.attributes=new Array();
if(_1){this.setAttribute("swf",_1);}
if(id){this.setAttribute("id",id);}
if(w){this.setAttribute("width",w);}
if(h){this.setAttribute("height",h);}
if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}
this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();
if(c){this.addParam("bgcolor",c);}
var q=_8?_8:"high";
this.addParam("quality",q);
this.setAttribute("useExpressInstall",_7);
this.setAttribute("doExpressInstall",false);
var _d=(_9)?_9:window.location;
this.setAttribute("xiRedirectUrl",_d);
this.setAttribute("redirectUrl","");
if(_a){this.setAttribute("redirectUrl",_a);}};
deconcept.SWFObject.prototype={setAttribute:function(_e,_f){
this.attributes[_e]=_f;
},getAttribute:function(_10){
return this.attributes[_10];
},addParam:function(_11,_12){
this.params[_11]=_12;
},getParams:function(){
return this.params;
},addVariable:function(_13,_14){
this.variables[_13]=_14;
},getVariable:function(_15){
return this.variables[_15];
},getVariables:function(){
return this.variables;
},getVariablePairs:function(){
var _16=new Array();
var key;
var _18=this.getVariables();
for(key in _18){_16.push(key+"="+_18[key]);}
return _16;},getSWFHTML:function(){var _19="";
if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){
if(this.getAttribute("doExpressInstall")){
this.addVariable("MMplayerType","PlugIn");}
_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\"";
_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";
var _1a=this.getParams();
for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}
var _1c=this.getVariablePairs().join("&");
if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";
}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");}
_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\">";
_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";
var _1d=this.getParams();
for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}
var _1f=this.getVariablePairs().join("&");
if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}
return _19;
},write:function(_20){
if(this.getAttribute("useExpressInstall")){
var _21=new deconcept.PlayerVersion([6,0,65]);
if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){
this.setAttribute("doExpressInstall",true);
this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));
document.title=document.title.slice(0,47)+" - Flash Player Installation";
this.addVariable("MMdoctitle",document.title);}}
if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){
var n=(typeof _20=="string")?document.getElementById(_20):_20;
n.innerHTML=this.getSWFHTML();return true;
}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}
return false;}};
deconcept.SWFObjectUtil.getPlayerVersion=function(){
var _23=new deconcept.PlayerVersion([0,0,0]);
if(navigator.plugins&&navigator.mimeTypes.length){
var x=navigator.plugins["Shockwave Flash"];
if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}
}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}
catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}
catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}
catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}
return _23;};
deconcept.PlayerVersion=function(_27){
this.major=_27[0]!=null?parseInt(_27[0]):0;
this.minor=_27[1]!=null?parseInt(_27[1]):0;
this.rev=_27[2]!=null?parseInt(_27[2]):0;
};
deconcept.PlayerVersion.prototype.versionIsValid=function(fv){
if(this.major<fv.major){return false;}
if(this.major>fv.major){return true;}
if(this.minor<fv.minor){return false;}
if(this.minor>fv.minor){return true;}
if(this.rev<fv.rev){
return false;
}return true;};
deconcept.util={getRequestParameter:function(_29){
var q=document.location.search||document.location.hash;
if(q){var _2b=q.substring(1).split("&");
for(var i=0;i<_2b.length;i++){
if(_2b[i].substring(0,_2b[i].indexOf("="))==_29){
return _2b[i].substring((_2b[i].indexOf("=")+1));}}}
return "";}};
deconcept.SWFObjectUtil.cleanupSWFs=function(){if(window.opera||!document.all){return;}
var _2d=document.getElementsByTagName("OBJECT");
for(var i=0;i<_2d.length;i++){_2d[i].style.display="none";for(var x in _2d[i]){
if(typeof _2d[i][x]=="function"){_2d[i][x]=function(){};}}}};
deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};
__flash_savedUnloadHandler=function(){};
if(typeof window.onunload=="function"){
var _30=window.onunload;
window.onunload=function(){
deconcept.SWFObjectUtil.cleanupSWFs();_30();};
}else{window.onunload=deconcept.SWFObjectUtil.cleanupSWFs;}};
if(typeof window.onbeforeunload=="function"){
var oldBeforeUnload=window.onbeforeunload;
window.onbeforeunload=function(){
deconcept.SWFObjectUtil.prepUnload();
oldBeforeUnload();};
}else{window.onbeforeunload=deconcept.SWFObjectUtil.prepUnload;}
if(Array.prototype.push==null){
Array.prototype.push=function(_31){
this[this.length]=_31;
return this.length;};}
var getQueryParamValue=deconcept.util.getRequestParameter;
var FlashObject=deconcept.SWFObject;
var SWFObject=deconcept.SWFObject;
/*!
 * jQuery JavaScript Library v1.4.3
 * http://jquery.com/
 *
 * Copyright 2010, John Resig
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * Includes Sizzle.js
 * http://sizzlejs.com/
 * Copyright 2010, The Dojo Foundation
 * Released under the MIT, BSD, and GPL Licenses.
 *
 * Date: Thu Oct 14 23:10:06 2010 -0400
 */
(function(E,A){function U(){return false}function ba(){return true}function ja(a,b,d){d[0].type=a;return c.event.handle.apply(b,d)}function Ga(a){var b,d,e=[],f=[],h,k,l,n,s,v,B,D;k=c.data(this,this.nodeType?"events":"__events__");if(typeof k==="function")k=k.events;if(!(a.liveFired===this||!k||!k.live||a.button&&a.type==="click")){if(a.namespace)D=RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)");a.liveFired=this;var H=k.live.slice(0);for(n=0;n<H.length;n++){k=H[n];k.origType.replace(X,
"")===a.type?f.push(k.selector):H.splice(n--,1)}f=c(a.target).closest(f,a.currentTarget);s=0;for(v=f.length;s<v;s++){B=f[s];for(n=0;n<H.length;n++){k=H[n];if(B.selector===k.selector&&(!D||D.test(k.namespace))){l=B.elem;h=null;if(k.preType==="mouseenter"||k.preType==="mouseleave"){a.type=k.preType;h=c(a.relatedTarget).closest(k.selector)[0]}if(!h||h!==l)e.push({elem:l,handleObj:k,level:B.level})}}}s=0;for(v=e.length;s<v;s++){f=e[s];if(d&&f.level>d)break;a.currentTarget=f.elem;a.data=f.handleObj.data;
a.handleObj=f.handleObj;D=f.handleObj.origHandler.apply(f.elem,arguments);if(D===false||a.isPropagationStopped()){d=f.level;if(D===false)b=false}}return b}}function Y(a,b){return(a&&a!=="*"?a+".":"")+b.replace(Ha,"`").replace(Ia,"&")}function ka(a,b,d){if(c.isFunction(b))return c.grep(a,function(f,h){return!!b.call(f,h,f)===d});else if(b.nodeType)return c.grep(a,function(f){return f===b===d});else if(typeof b==="string"){var e=c.grep(a,function(f){return f.nodeType===1});if(Ja.test(b))return c.filter(b,
e,!d);else b=c.filter(b,e)}return c.grep(a,function(f){return c.inArray(f,b)>=0===d})}function la(a,b){var d=0;b.each(function(){if(this.nodeName===(a[d]&&a[d].nodeName)){var e=c.data(a[d++]),f=c.data(this,e);if(e=e&&e.events){delete f.handle;f.events={};for(var h in e)for(var k in e[h])c.event.add(this,h,e[h][k],e[h][k].data)}}})}function Ka(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}
function ma(a,b,d){var e=b==="width"?a.offsetWidth:a.offsetHeight;if(d==="border")return e;c.each(b==="width"?La:Ma,function(){d||(e-=parseFloat(c.css(a,"padding"+this))||0);if(d==="margin")e+=parseFloat(c.css(a,"margin"+this))||0;else e-=parseFloat(c.css(a,"border"+this+"Width"))||0});return e}function ca(a,b,d,e){if(c.isArray(b)&&b.length)c.each(b,function(f,h){d||Na.test(a)?e(a,h):ca(a+"["+(typeof h==="object"||c.isArray(h)?f:"")+"]",h,d,e)});else if(!d&&b!=null&&typeof b==="object")c.isEmptyObject(b)?
e(a,""):c.each(b,function(f,h){ca(a+"["+f+"]",h,d,e)});else e(a,b)}function S(a,b){var d={};c.each(na.concat.apply([],na.slice(0,b)),function(){d[this]=a});return d}function oa(a){if(!da[a]){var b=c("<"+a+">").appendTo("body"),d=b.css("display");b.remove();if(d==="none"||d==="")d="block";da[a]=d}return da[a]}function ea(a){return c.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:false}var u=E.document,c=function(){function a(){if(!b.isReady){try{u.documentElement.doScroll("left")}catch(i){setTimeout(a,
1);return}b.ready()}}var b=function(i,r){return new b.fn.init(i,r)},d=E.jQuery,e=E.$,f,h=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/,k=/\S/,l=/^\s+/,n=/\s+$/,s=/\W/,v=/\d/,B=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,D=/^[\],:{}\s]*$/,H=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,w=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,G=/(?:^|:|,)(?:\s*\[)+/g,M=/(webkit)[ \/]([\w.]+)/,g=/(opera)(?:.*version)?[ \/]([\w.]+)/,j=/(msie) ([\w.]+)/,o=/(mozilla)(?:.*? rv:([\w.]+))?/,m=navigator.userAgent,p=false,
q=[],t,x=Object.prototype.toString,C=Object.prototype.hasOwnProperty,P=Array.prototype.push,N=Array.prototype.slice,R=String.prototype.trim,Q=Array.prototype.indexOf,L={};b.fn=b.prototype={init:function(i,r){var y,z,F;if(!i)return this;if(i.nodeType){this.context=this[0]=i;this.length=1;return this}if(i==="body"&&!r&&u.body){this.context=u;this[0]=u.body;this.selector="body";this.length=1;return this}if(typeof i==="string")if((y=h.exec(i))&&(y[1]||!r))if(y[1]){F=r?r.ownerDocument||r:u;if(z=B.exec(i))if(b.isPlainObject(r)){i=
[u.createElement(z[1])];b.fn.attr.call(i,r,true)}else i=[F.createElement(z[1])];else{z=b.buildFragment([y[1]],[F]);i=(z.cacheable?z.fragment.cloneNode(true):z.fragment).childNodes}return b.merge(this,i)}else{if((z=u.getElementById(y[2]))&&z.parentNode){if(z.id!==y[2])return f.find(i);this.length=1;this[0]=z}this.context=u;this.selector=i;return this}else if(!r&&!s.test(i)){this.selector=i;this.context=u;i=u.getElementsByTagName(i);return b.merge(this,i)}else return!r||r.jquery?(r||f).find(i):b(r).find(i);
else if(b.isFunction(i))return f.ready(i);if(i.selector!==A){this.selector=i.selector;this.context=i.context}return b.makeArray(i,this)},selector:"",jquery:"1.4.3",length:0,size:function(){return this.length},toArray:function(){return N.call(this,0)},get:function(i){return i==null?this.toArray():i<0?this.slice(i)[0]:this[i]},pushStack:function(i,r,y){var z=b();b.isArray(i)?P.apply(z,i):b.merge(z,i);z.prevObject=this;z.context=this.context;if(r==="find")z.selector=this.selector+(this.selector?" ":
"")+y;else if(r)z.selector=this.selector+"."+r+"("+y+")";return z},each:function(i,r){return b.each(this,i,r)},ready:function(i){b.bindReady();if(b.isReady)i.call(u,b);else q&&q.push(i);return this},eq:function(i){return i===-1?this.slice(i):this.slice(i,+i+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(N.apply(this,arguments),"slice",N.call(arguments).join(","))},map:function(i){return this.pushStack(b.map(this,function(r,y){return i.call(r,
y,r)}))},end:function(){return this.prevObject||b(null)},push:P,sort:[].sort,splice:[].splice};b.fn.init.prototype=b.fn;b.extend=b.fn.extend=function(){var i=arguments[0]||{},r=1,y=arguments.length,z=false,F,I,K,J,fa;if(typeof i==="boolean"){z=i;i=arguments[1]||{};r=2}if(typeof i!=="object"&&!b.isFunction(i))i={};if(y===r){i=this;--r}for(;r<y;r++)if((F=arguments[r])!=null)for(I in F){K=i[I];J=F[I];if(i!==J)if(z&&J&&(b.isPlainObject(J)||(fa=b.isArray(J)))){if(fa){fa=false;clone=K&&b.isArray(K)?K:[]}else clone=
K&&b.isPlainObject(K)?K:{};i[I]=b.extend(z,clone,J)}else if(J!==A)i[I]=J}return i};b.extend({noConflict:function(i){E.$=e;if(i)E.jQuery=d;return b},isReady:false,readyWait:1,ready:function(i){i===true&&b.readyWait--;if(!b.readyWait||i!==true&&!b.isReady){if(!u.body)return setTimeout(b.ready,1);b.isReady=true;if(!(i!==true&&--b.readyWait>0)){if(q){for(var r=0;i=q[r++];)i.call(u,b);q=null}b.fn.triggerHandler&&b(u).triggerHandler("ready")}}},bindReady:function(){if(!p){p=true;if(u.readyState==="complete")return setTimeout(b.ready,
1);if(u.addEventListener){u.addEventListener("DOMContentLoaded",t,false);E.addEventListener("load",b.ready,false)}else if(u.attachEvent){u.attachEvent("onreadystatechange",t);E.attachEvent("onload",b.ready);var i=false;try{i=E.frameElement==null}catch(r){}u.documentElement.doScroll&&i&&a()}}},isFunction:function(i){return b.type(i)==="function"},isArray:Array.isArray||function(i){return b.type(i)==="array"},isWindow:function(i){return i&&typeof i==="object"&&"setInterval"in i},isNaN:function(i){return i==
null||!v.test(i)||isNaN(i)},type:function(i){return i==null?String(i):L[x.call(i)]||"object"},isPlainObject:function(i){if(!i||b.type(i)!=="object"||i.nodeType||b.isWindow(i))return false;if(i.constructor&&!C.call(i,"constructor")&&!C.call(i.constructor.prototype,"isPrototypeOf"))return false;for(var r in i);return r===A||C.call(i,r)},isEmptyObject:function(i){for(var r in i)return false;return true},error:function(i){throw i;},parseJSON:function(i){if(typeof i!=="string"||!i)return null;i=b.trim(i);
if(D.test(i.replace(H,"@").replace(w,"]").replace(G,"")))return E.JSON&&E.JSON.parse?E.JSON.parse(i):(new Function("return "+i))();else b.error("Invalid JSON: "+i)},noop:function(){},globalEval:function(i){if(i&&k.test(i)){var r=u.getElementsByTagName("head")[0]||u.documentElement,y=u.createElement("script");y.type="text/javascript";if(b.support.scriptEval)y.appendChild(u.createTextNode(i));else y.text=i;r.insertBefore(y,r.firstChild);r.removeChild(y)}},nodeName:function(i,r){return i.nodeName&&i.nodeName.toUpperCase()===
r.toUpperCase()},each:function(i,r,y){var z,F=0,I=i.length,K=I===A||b.isFunction(i);if(y)if(K)for(z in i){if(r.apply(i[z],y)===false)break}else for(;F<I;){if(r.apply(i[F++],y)===false)break}else if(K)for(z in i){if(r.call(i[z],z,i[z])===false)break}else for(y=i[0];F<I&&r.call(y,F,y)!==false;y=i[++F]);return i},trim:R?function(i){return i==null?"":R.call(i)}:function(i){return i==null?"":i.toString().replace(l,"").replace(n,"")},makeArray:function(i,r){var y=r||[];if(i!=null){var z=b.type(i);i.length==
null||z==="string"||z==="function"||z==="regexp"||b.isWindow(i)?P.call(y,i):b.merge(y,i)}return y},inArray:function(i,r){if(r.indexOf)return r.indexOf(i);for(var y=0,z=r.length;y<z;y++)if(r[y]===i)return y;return-1},merge:function(i,r){var y=i.length,z=0;if(typeof r.length==="number")for(var F=r.length;z<F;z++)i[y++]=r[z];else for(;r[z]!==A;)i[y++]=r[z++];i.length=y;return i},grep:function(i,r,y){var z=[],F;y=!!y;for(var I=0,K=i.length;I<K;I++){F=!!r(i[I],I);y!==F&&z.push(i[I])}return z},map:function(i,
r,y){for(var z=[],F,I=0,K=i.length;I<K;I++){F=r(i[I],I,y);if(F!=null)z[z.length]=F}return z.concat.apply([],z)},guid:1,proxy:function(i,r,y){if(arguments.length===2)if(typeof r==="string"){y=i;i=y[r];r=A}else if(r&&!b.isFunction(r)){y=r;r=A}if(!r&&i)r=function(){return i.apply(y||this,arguments)};if(i)r.guid=i.guid=i.guid||r.guid||b.guid++;return r},access:function(i,r,y,z,F,I){var K=i.length;if(typeof r==="object"){for(var J in r)b.access(i,J,r[J],z,F,y);return i}if(y!==A){z=!I&&z&&b.isFunction(y);
for(J=0;J<K;J++)F(i[J],r,z?y.call(i[J],J,F(i[J],r)):y,I);return i}return K?F(i[0],r):A},now:function(){return(new Date).getTime()},uaMatch:function(i){i=i.toLowerCase();i=M.exec(i)||g.exec(i)||j.exec(i)||i.indexOf("compatible")<0&&o.exec(i)||[];return{browser:i[1]||"",version:i[2]||"0"}},browser:{}});b.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(i,r){L["[object "+r+"]"]=r.toLowerCase()});m=b.uaMatch(m);if(m.browser){b.browser[m.browser]=true;b.browser.version=
m.version}if(b.browser.webkit)b.browser.safari=true;if(Q)b.inArray=function(i,r){return Q.call(r,i)};if(!/\s/.test("\u00a0")){l=/^[\s\xA0]+/;n=/[\s\xA0]+$/}f=b(u);if(u.addEventListener)t=function(){u.removeEventListener("DOMContentLoaded",t,false);b.ready()};else if(u.attachEvent)t=function(){if(u.readyState==="complete"){u.detachEvent("onreadystatechange",t);b.ready()}};return E.jQuery=E.$=b}();(function(){c.support={};var a=u.documentElement,b=u.createElement("script"),d=u.createElement("div"),
e="script"+c.now();d.style.display="none";d.innerHTML="   <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";var f=d.getElementsByTagName("*"),h=d.getElementsByTagName("a")[0],k=u.createElement("select"),l=k.appendChild(u.createElement("option"));if(!(!f||!f.length||!h)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(h.getAttribute("style")),
hrefNormalized:h.getAttribute("href")==="/a",opacity:/^0.55$/.test(h.style.opacity),cssFloat:!!h.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:l.selected,optDisabled:false,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null,inlineBlockNeedsLayout:false,shrinkWrapBlocks:false,reliableHiddenOffsets:true};k.disabled=true;c.support.optDisabled=!l.disabled;b.type="text/javascript";try{b.appendChild(u.createTextNode("window."+e+"=1;"))}catch(n){}a.insertBefore(b,
a.firstChild);if(E[e]){c.support.scriptEval=true;delete E[e]}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function s(){c.support.noCloneEvent=false;d.detachEvent("onclick",s)});d.cloneNode(true).fireEvent("onclick")}d=u.createElement("div");d.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";a=u.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var s=u.createElement("div");
s.style.width=s.style.paddingLeft="1px";u.body.appendChild(s);c.boxModel=c.support.boxModel=s.offsetWidth===2;if("zoom"in s.style){s.style.display="inline";s.style.zoom=1;c.support.inlineBlockNeedsLayout=s.offsetWidth===2;s.style.display="";s.innerHTML="<div style='width:4px;'></div>";c.support.shrinkWrapBlocks=s.offsetWidth!==2}s.innerHTML="<table><tr><td style='padding:0;display:none'></td><td>t</td></tr></table>";var v=s.getElementsByTagName("td");c.support.reliableHiddenOffsets=v[0].offsetHeight===
0;v[0].style.display="";v[1].style.display="none";c.support.reliableHiddenOffsets=c.support.reliableHiddenOffsets&&v[0].offsetHeight===0;s.innerHTML="";u.body.removeChild(s).style.display="none"});a=function(s){var v=u.createElement("div");s="on"+s;var B=s in v;if(!B){v.setAttribute(s,"return;");B=typeof v[s]==="function"}return B};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=f=h=null}})();c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",
cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var pa={},Oa=/^(?:\{.*\}|\[.*\])$/;c.extend({cache:{},uuid:0,expando:"jQuery"+c.now(),noData:{embed:true,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:true},data:function(a,b,d){if(c.acceptData(a)){a=a==E?pa:a;var e=a.nodeType,f=e?a[c.expando]:null,h=c.cache;if(!(e&&!f&&typeof b==="string"&&d===A)){if(e)f||(a[c.expando]=f=++c.uuid);else h=a;if(typeof b==="object")if(e)h[f]=
c.extend(h[f],b);else c.extend(h,b);else if(e&&!h[f])h[f]={};a=e?h[f]:h;if(d!==A)a[b]=d;return typeof b==="string"?a[b]:a}}},removeData:function(a,b){if(c.acceptData(a)){a=a==E?pa:a;var d=a.nodeType,e=d?a[c.expando]:a,f=c.cache,h=d?f[e]:e;if(b){if(h){delete h[b];d&&c.isEmptyObject(h)&&c.removeData(a)}}else if(d&&c.support.deleteExpando)delete a[c.expando];else if(a.removeAttribute)a.removeAttribute(c.expando);else if(d)delete f[e];else for(var k in a)delete a[k]}},acceptData:function(a){if(a.nodeName){var b=
c.noData[a.nodeName.toLowerCase()];if(b)return!(b===true||a.getAttribute("classid")!==b)}return true}});c.fn.extend({data:function(a,b){if(typeof a==="undefined")return this.length?c.data(this[0]):null;else if(typeof a==="object")return this.each(function(){c.data(this,a)});var d=a.split(".");d[1]=d[1]?"."+d[1]:"";if(b===A){var e=this.triggerHandler("getData"+d[1]+"!",[d[0]]);if(e===A&&this.length){e=c.data(this[0],a);if(e===A&&this[0].nodeType===1){e=this[0].getAttribute("data-"+a);if(typeof e===
"string")try{e=e==="true"?true:e==="false"?false:e==="null"?null:!c.isNaN(e)?parseFloat(e):Oa.test(e)?c.parseJSON(e):e}catch(f){}else e=A}}return e===A&&d[1]?this.data(d[0]):e}else return this.each(function(){var h=c(this),k=[d[0],b];h.triggerHandler("setData"+d[1]+"!",k);c.data(this,a,b);h.triggerHandler("changeData"+d[1]+"!",k)})},removeData:function(a){return this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a,b,d){if(a){b=(b||"fx")+"queue";var e=c.data(a,b);if(!d)return e||
[];if(!e||c.isArray(d))e=c.data(a,b,c.makeArray(d));else e.push(d);return e}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),e=d.shift();if(e==="inprogress")e=d.shift();if(e){b==="fx"&&d.unshift("inprogress");e.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b===A)return c.queue(this[0],a);return this.each(function(){var d=c.queue(this,a,b);a==="fx"&&d[0]!=="inprogress"&&c.dequeue(this,a)})},dequeue:function(a){return this.each(function(){c.dequeue(this,
a)})},delay:function(a,b){a=c.fx?c.fx.speeds[a]||a:a;b=b||"fx";return this.queue(b,function(){var d=this;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var qa=/[\n\t]/g,ga=/\s+/,Pa=/\r/g,Qa=/^(?:href|src|style)$/,Ra=/^(?:button|input)$/i,Sa=/^(?:button|input|object|select|textarea)$/i,Ta=/^a(?:rea)?$/i,ra=/^(?:radio|checkbox)$/i;c.fn.extend({attr:function(a,b){return c.access(this,a,b,true,c.attr)},removeAttr:function(a){return this.each(function(){c.attr(this,
a,"");this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(c.isFunction(a))return this.each(function(s){var v=c(this);v.addClass(a.call(this,s,v.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ga),d=0,e=this.length;d<e;d++){var f=this[d];if(f.nodeType===1)if(f.className){for(var h=" "+f.className+" ",k=f.className,l=0,n=b.length;l<n;l++)if(h.indexOf(" "+b[l]+" ")<0)k+=" "+b[l];f.className=c.trim(k)}else f.className=a}return this},removeClass:function(a){if(c.isFunction(a))return this.each(function(n){var s=
c(this);s.removeClass(a.call(this,n,s.attr("class")))});if(a&&typeof a==="string"||a===A)for(var b=(a||"").split(ga),d=0,e=this.length;d<e;d++){var f=this[d];if(f.nodeType===1&&f.className)if(a){for(var h=(" "+f.className+" ").replace(qa," "),k=0,l=b.length;k<l;k++)h=h.replace(" "+b[k]+" "," ");f.className=c.trim(h)}else f.className=""}return this},toggleClass:function(a,b){var d=typeof a,e=typeof b==="boolean";if(c.isFunction(a))return this.each(function(f){var h=c(this);h.toggleClass(a.call(this,
f,h.attr("class"),b),b)});return this.each(function(){if(d==="string")for(var f,h=0,k=c(this),l=b,n=a.split(ga);f=n[h++];){l=e?l:!k.hasClass(f);k[l?"addClass":"removeClass"](f)}else if(d==="undefined"||d==="boolean"){this.className&&c.data(this,"__className__",this.className);this.className=this.className||a===false?"":c.data(this,"__className__")||""}})},hasClass:function(a){a=" "+a+" ";for(var b=0,d=this.length;b<d;b++)if((" "+this[b].className+" ").replace(qa," ").indexOf(a)>-1)return true;return false},
val:function(a){if(!arguments.length){var b=this[0];if(b){if(c.nodeName(b,"option")){var d=b.attributes.value;return!d||d.specified?b.value:b.text}if(c.nodeName(b,"select")){var e=b.selectedIndex;d=[];var f=b.options;b=b.type==="select-one";if(e<0)return null;var h=b?e:0;for(e=b?e+1:f.length;h<e;h++){var k=f[h];if(k.selected&&(c.support.optDisabled?!k.disabled:k.getAttribute("disabled")===null)&&(!k.parentNode.disabled||!c.nodeName(k.parentNode,"optgroup"))){a=c(k).val();if(b)return a;d.push(a)}}return d}if(ra.test(b.type)&&
!c.support.checkOn)return b.getAttribute("value")===null?"on":b.value;return(b.value||"").replace(Pa,"")}return A}var l=c.isFunction(a);return this.each(function(n){var s=c(this),v=a;if(this.nodeType===1){if(l)v=a.call(this,n,s.val());if(v==null)v="";else if(typeof v==="number")v+="";else if(c.isArray(v))v=c.map(v,function(D){return D==null?"":D+""});if(c.isArray(v)&&ra.test(this.type))this.checked=c.inArray(s.val(),v)>=0;else if(c.nodeName(this,"select")){var B=c.makeArray(v);c("option",this).each(function(){this.selected=
c.inArray(c(this).val(),B)>=0});if(!B.length)this.selectedIndex=-1}else this.value=v}})}});c.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(a,b,d,e){if(!a||a.nodeType===3||a.nodeType===8)return A;if(e&&b in c.attrFn)return c(a)[b](d);e=a.nodeType!==1||!c.isXMLDoc(a);var f=d!==A;b=e&&c.props[b]||b;if(a.nodeType===1){var h=Qa.test(b);if((b in a||a[b]!==A)&&e&&!h){if(f){b==="type"&&Ra.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed");
if(d===null)a.nodeType===1&&a.removeAttribute(b);else a[b]=d}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return a.getAttributeNode(b).nodeValue;if(b==="tabIndex")return(b=a.getAttributeNode("tabIndex"))&&b.specified?b.value:Sa.test(a.nodeName)||Ta.test(a.nodeName)&&a.href?0:A;return a[b]}if(!c.support.style&&e&&b==="style"){if(f)a.style.cssText=""+d;return a.style.cssText}f&&a.setAttribute(b,""+d);if(!a.attributes[b]&&a.hasAttribute&&!a.hasAttribute(b))return A;a=!c.support.hrefNormalized&&e&&
h?a.getAttribute(b,2):a.getAttribute(b);return a===null?A:a}}});var X=/\.(.*)$/,ha=/^(?:textarea|input|select)$/i,Ha=/\./g,Ia=/ /g,Ua=/[^\w\s.|`]/g,Va=function(a){return a.replace(Ua,"\\$&")},sa={focusin:0,focusout:0};c.event={add:function(a,b,d,e){if(!(a.nodeType===3||a.nodeType===8)){if(c.isWindow(a)&&a!==E&&!a.frameElement)a=E;if(d===false)d=U;var f,h;if(d.handler){f=d;d=f.handler}if(!d.guid)d.guid=c.guid++;if(h=c.data(a)){var k=a.nodeType?"events":"__events__",l=h[k],n=h.handle;if(typeof l===
"function"){n=l.handle;l=l.events}else if(!l){a.nodeType||(h[k]=h=function(){});h.events=l={}}if(!n)h.handle=n=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(n.elem,arguments):A};n.elem=a;b=b.split(" ");for(var s=0,v;k=b[s++];){h=f?c.extend({},f):{handler:d,data:e};if(k.indexOf(".")>-1){v=k.split(".");k=v.shift();h.namespace=v.slice(0).sort().join(".")}else{v=[];h.namespace=""}h.type=k;if(!h.guid)h.guid=d.guid;var B=l[k],D=c.event.special[k]||{};if(!B){B=l[k]=[];
if(!D.setup||D.setup.call(a,e,v,n)===false)if(a.addEventListener)a.addEventListener(k,n,false);else a.attachEvent&&a.attachEvent("on"+k,n)}if(D.add){D.add.call(a,h);if(!h.handler.guid)h.handler.guid=d.guid}B.push(h);c.event.global[k]=true}a=null}}},global:{},remove:function(a,b,d,e){if(!(a.nodeType===3||a.nodeType===8)){if(d===false)d=U;var f,h,k=0,l,n,s,v,B,D,H=a.nodeType?"events":"__events__",w=c.data(a),G=w&&w[H];if(w&&G){if(typeof G==="function"){w=G;G=G.events}if(b&&b.type){d=b.handler;b=b.type}if(!b||
typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(f in G)c.event.remove(a,f+b)}else{for(b=b.split(" ");f=b[k++];){v=f;l=f.indexOf(".")<0;n=[];if(!l){n=f.split(".");f=n.shift();s=RegExp("(^|\\.)"+c.map(n.slice(0).sort(),Va).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(B=G[f])if(d){v=c.event.special[f]||{};for(h=e||0;h<B.length;h++){D=B[h];if(d.guid===D.guid){if(l||s.test(D.namespace)){e==null&&B.splice(h--,1);v.remove&&v.remove.call(a,D)}if(e!=null)break}}if(B.length===0||e!=null&&B.length===1){if(!v.teardown||
v.teardown.call(a,n)===false)c.removeEvent(a,f,w.handle);delete G[f]}}else for(h=0;h<B.length;h++){D=B[h];if(l||s.test(D.namespace)){c.event.remove(a,v,D.handler,h);B.splice(h--,1)}}}if(c.isEmptyObject(G)){if(b=w.handle)b.elem=null;delete w.events;delete w.handle;if(typeof w==="function")c.removeData(a,H);else c.isEmptyObject(w)&&c.removeData(a)}}}}},trigger:function(a,b,d,e){var f=a.type||a;if(!e){a=typeof a==="object"?a[c.expando]?a:c.extend(c.Event(f),a):c.Event(f);if(f.indexOf("!")>=0){a.type=
f=f.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[f]&&c.each(c.cache,function(){this.events&&this.events[f]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType===8)return A;a.result=A;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(e=d.nodeType?c.data(d,"handle"):(c.data(d,"__events__")||{}).handle)&&e.apply(d,b);e=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+f]&&d["on"+f].apply(d,b)===
false){a.result=false;a.preventDefault()}}catch(h){}if(!a.isPropagationStopped()&&e)c.event.trigger(a,b,e,true);else if(!a.isDefaultPrevented()){e=a.target;var k,l=f.replace(X,""),n=c.nodeName(e,"a")&&l==="click",s=c.event.special[l]||{};if((!s._default||s._default.call(d,a)===false)&&!n&&!(e&&e.nodeName&&c.noData[e.nodeName.toLowerCase()])){try{if(e[l]){if(k=e["on"+l])e["on"+l]=null;c.event.triggered=true;e[l]()}}catch(v){}if(k)e["on"+l]=k;c.event.triggered=false}}},handle:function(a){var b,d,e;
d=[];var f,h=c.makeArray(arguments);a=h[0]=c.event.fix(a||E.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive;if(!b){e=a.type.split(".");a.type=e.shift();d=e.slice(0).sort();e=RegExp("(^|\\.)"+d.join("\\.(?:.*\\.)?")+"(\\.|$)")}a.namespace=a.namespace||d.join(".");f=c.data(this,this.nodeType?"events":"__events__");if(typeof f==="function")f=f.events;d=(f||{})[a.type];if(f&&d){d=d.slice(0);f=0;for(var k=d.length;f<k;f++){var l=d[f];if(b||e.test(l.namespace)){a.handler=l.handler;a.data=
l.data;a.handleObj=l;l=l.handler.apply(this,h);if(l!==A){a.result=l;if(l===false){a.preventDefault();a.stopPropagation()}}if(a.isImmediatePropagationStopped())break}}}return a.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),
fix:function(a){if(a[c.expando])return a;var b=a;a=c.Event(b);for(var d=this.props.length,e;d;){e=this.props[--d];a[e]=b[e]}if(!a.target)a.target=a.srcElement||u;if(a.target.nodeType===3)a.target=a.target.parentNode;if(!a.relatedTarget&&a.fromElement)a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement;if(a.pageX==null&&a.clientX!=null){b=u.documentElement;d=u.body;a.pageX=a.clientX+(b&&b.scrollLeft||d&&d.scrollLeft||0)-(b&&b.clientLeft||d&&d.clientLeft||0);a.pageY=a.clientY+(b&&b.scrollTop||
d&&d.scrollTop||0)-(b&&b.clientTop||d&&d.clientTop||0)}if(a.which==null&&(a.charCode!=null||a.keyCode!=null))a.which=a.charCode!=null?a.charCode:a.keyCode;if(!a.metaKey&&a.ctrlKey)a.metaKey=a.ctrlKey;if(!a.which&&a.button!==A)a.which=a.button&1?1:a.button&2?3:a.button&4?2:0;return a},guid:1E8,proxy:c.proxy,special:{ready:{setup:c.bindReady,teardown:c.noop},live:{add:function(a){c.event.add(this,Y(a.origType,a.selector),c.extend({},a,{handler:Ga,guid:a.handler.guid}))},remove:function(a){c.event.remove(this,
Y(a.origType,a.selector),a)}},beforeunload:{setup:function(a,b,d){if(c.isWindow(this))this.onbeforeunload=d},teardown:function(a,b){if(this.onbeforeunload===b)this.onbeforeunload=null}}}};c.removeEvent=u.removeEventListener?function(a,b,d){a.removeEventListener&&a.removeEventListener(b,d,false)}:function(a,b,d){a.detachEvent&&a.detachEvent("on"+b,d)};c.Event=function(a){if(!this.preventDefault)return new c.Event(a);if(a&&a.type){this.originalEvent=a;this.type=a.type}else this.type=a;this.timeStamp=
c.now();this[c.expando]=true};c.Event.prototype={preventDefault:function(){this.isDefaultPrevented=ba;var a=this.originalEvent;if(a)if(a.preventDefault)a.preventDefault();else a.returnValue=false},stopPropagation:function(){this.isPropagationStopped=ba;var a=this.originalEvent;if(a){a.stopPropagation&&a.stopPropagation();a.cancelBubble=true}},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=ba;this.stopPropagation()},isDefaultPrevented:U,isPropagationStopped:U,isImmediatePropagationStopped:U};
var ta=function(a){var b=a.relatedTarget;try{for(;b&&b!==this;)b=b.parentNode;if(b!==this){a.type=a.data;c.event.handle.apply(this,arguments)}}catch(d){}},ua=function(a){a.type=a.data;c.event.handle.apply(this,arguments)};c.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){c.event.special[a]={setup:function(d){c.event.add(this,b,d&&d.selector?ua:ta,a)},teardown:function(d){c.event.remove(this,b,d&&d.selector?ua:ta)}}});if(!c.support.submitBubbles)c.event.special.submit={setup:function(){if(this.nodeName.toLowerCase()!==
"form"){c.event.add(this,"click.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="submit"||d==="image")&&c(b).closest("form").length){a.liveFired=A;return ja("submit",this,arguments)}});c.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="text"||d==="password")&&c(b).closest("form").length&&a.keyCode===13){a.liveFired=A;return ja("submit",this,arguments)}})}else return false},teardown:function(){c.event.remove(this,".specialSubmit")}};if(!c.support.changeBubbles){var V,
va=function(a){var b=a.type,d=a.value;if(b==="radio"||b==="checkbox")d=a.checked;else if(b==="select-multiple")d=a.selectedIndex>-1?c.map(a.options,function(e){return e.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},Z=function(a,b){var d=a.target,e,f;if(!(!ha.test(d.nodeName)||d.readOnly)){e=c.data(d,"_change_data");f=va(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data",f);if(!(e===A||f===e))if(e!=null||f){a.type="change";a.liveFired=
A;return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:Z,beforedeactivate:Z,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return Z.call(this,a)},keydown:function(a){var b=a.target,d=b.type;if(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(d==="checkbox"||d==="radio")||d==="select-multiple")return Z.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a,"_change_data",va(a))}},setup:function(){if(this.type===
"file")return false;for(var a in V)c.event.add(this,a+".specialChange",V[a]);return ha.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return ha.test(this.nodeName)}};V=c.event.special.change.filters;V.focus=V.beforeactivate}u.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(e){e=c.event.fix(e);e.type=b;return c.event.trigger(e,null,e.target)}c.event.special[b]={setup:function(){sa[b]++===0&&u.addEventListener(a,d,true)},teardown:function(){--sa[b]===
0&&u.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,e,f){if(typeof d==="object"){for(var h in d)this[b](h,e,d[h],f);return this}if(c.isFunction(e)||e===false){f=e;e=A}var k=b==="one"?c.proxy(f,function(n){c(this).unbind(n,k);return f.apply(this,arguments)}):f;if(d==="unload"&&b!=="one")this.one(d,e,f);else{h=0;for(var l=this.length;h<l;h++)c.event.add(this[h],d,k,e)}return this}});c.fn.extend({unbind:function(a,b){if(typeof a==="object"&&!a.preventDefault)for(var d in a)this.unbind(d,
a[d]);else{d=0;for(var e=this.length;d<e;d++)c.event.remove(this[d],a,b)}return this},delegate:function(a,b,d,e){return this.live(b,d,e,a)},undelegate:function(a,b,d){return arguments.length===0?this.unbind("live"):this.die(b,null,d,a)},trigger:function(a,b){return this.each(function(){c.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0]){var d=c.Event(a);d.preventDefault();d.stopPropagation();c.event.trigger(d,b,this[0]);return d.result}},toggle:function(a){for(var b=arguments,d=
1;d<b.length;)c.proxy(a,b[d++]);return this.click(c.proxy(a,function(e){var f=(c.data(this,"lastToggle"+a.guid)||0)%d;c.data(this,"lastToggle"+a.guid,f+1);e.preventDefault();return b[f].apply(this,arguments)||false}))},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var wa={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};c.each(["live","die"],function(a,b){c.fn[b]=function(d,e,f,h){var k,l=0,n,s,v=h||this.selector;h=h?this:c(this.context);if(typeof d===
"object"&&!d.preventDefault){for(k in d)h[b](k,e,d[k],v);return this}if(c.isFunction(e)){f=e;e=A}for(d=(d||"").split(" ");(k=d[l++])!=null;){n=X.exec(k);s="";if(n){s=n[0];k=k.replace(X,"")}if(k==="hover")d.push("mouseenter"+s,"mouseleave"+s);else{n=k;if(k==="focus"||k==="blur"){d.push(wa[k]+s);k+=s}else k=(wa[k]||k)+s;if(b==="live"){s=0;for(var B=h.length;s<B;s++)c.event.add(h[s],"live."+Y(k,v),{data:e,selector:v,handler:f,origType:k,origHandler:f,preType:n})}else h.unbind("live."+Y(k,v),f)}}return this}});
c.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "),function(a,b){c.fn[b]=function(d,e){if(e==null){e=d;d=null}return arguments.length>0?this.bind(b,d,e):this.trigger(b)};if(c.attrFn)c.attrFn[b]=true});E.attachEvent&&!E.addEventListener&&c(E).bind("unload",function(){for(var a in c.cache)if(c.cache[a].handle)try{c.event.remove(c.cache[a].handle.elem)}catch(b){}});
(function(){function a(g,j,o,m,p,q){p=0;for(var t=m.length;p<t;p++){var x=m[p];if(x){x=x[g];for(var C=false;x;){if(x.sizcache===o){C=m[x.sizset];break}if(x.nodeType===1&&!q){x.sizcache=o;x.sizset=p}if(x.nodeName.toLowerCase()===j){C=x;break}x=x[g]}m[p]=C}}}function b(g,j,o,m,p,q){p=0;for(var t=m.length;p<t;p++){var x=m[p];if(x){x=x[g];for(var C=false;x;){if(x.sizcache===o){C=m[x.sizset];break}if(x.nodeType===1){if(!q){x.sizcache=o;x.sizset=p}if(typeof j!=="string"){if(x===j){C=true;break}}else if(l.filter(j,
[x]).length>0){C=x;break}}x=x[g]}m[p]=C}}}var d=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,e=0,f=Object.prototype.toString,h=false,k=true;[0,0].sort(function(){k=false;return 0});var l=function(g,j,o,m){o=o||[];var p=j=j||u;if(j.nodeType!==1&&j.nodeType!==9)return[];if(!g||typeof g!=="string")return o;var q=[],t,x,C,P,N=true,R=l.isXML(j),Q=g,L;do{d.exec("");if(t=d.exec(Q)){Q=t[3];q.push(t[1]);if(t[2]){P=t[3];
break}}}while(t);if(q.length>1&&s.exec(g))if(q.length===2&&n.relative[q[0]])x=M(q[0]+q[1],j);else for(x=n.relative[q[0]]?[j]:l(q.shift(),j);q.length;){g=q.shift();if(n.relative[g])g+=q.shift();x=M(g,x)}else{if(!m&&q.length>1&&j.nodeType===9&&!R&&n.match.ID.test(q[0])&&!n.match.ID.test(q[q.length-1])){t=l.find(q.shift(),j,R);j=t.expr?l.filter(t.expr,t.set)[0]:t.set[0]}if(j){t=m?{expr:q.pop(),set:D(m)}:l.find(q.pop(),q.length===1&&(q[0]==="~"||q[0]==="+")&&j.parentNode?j.parentNode:j,R);x=t.expr?l.filter(t.expr,
t.set):t.set;if(q.length>0)C=D(x);else N=false;for(;q.length;){t=L=q.pop();if(n.relative[L])t=q.pop();else L="";if(t==null)t=j;n.relative[L](C,t,R)}}else C=[]}C||(C=x);C||l.error(L||g);if(f.call(C)==="[object Array]")if(N)if(j&&j.nodeType===1)for(g=0;C[g]!=null;g++){if(C[g]&&(C[g]===true||C[g].nodeType===1&&l.contains(j,C[g])))o.push(x[g])}else for(g=0;C[g]!=null;g++)C[g]&&C[g].nodeType===1&&o.push(x[g]);else o.push.apply(o,C);else D(C,o);if(P){l(P,p,o,m);l.uniqueSort(o)}return o};l.uniqueSort=function(g){if(w){h=
k;g.sort(w);if(h)for(var j=1;j<g.length;j++)g[j]===g[j-1]&&g.splice(j--,1)}return g};l.matches=function(g,j){return l(g,null,null,j)};l.matchesSelector=function(g,j){return l(j,null,null,[g]).length>0};l.find=function(g,j,o){var m;if(!g)return[];for(var p=0,q=n.order.length;p<q;p++){var t=n.order[p],x;if(x=n.leftMatch[t].exec(g)){var C=x[1];x.splice(1,1);if(C.substr(C.length-1)!=="\\"){x[1]=(x[1]||"").replace(/\\/g,"");m=n.find[t](x,j,o);if(m!=null){g=g.replace(n.match[t],"");break}}}}m||(m=j.getElementsByTagName("*"));
return{set:m,expr:g}};l.filter=function(g,j,o,m){for(var p=g,q=[],t=j,x,C,P=j&&j[0]&&l.isXML(j[0]);g&&j.length;){for(var N in n.filter)if((x=n.leftMatch[N].exec(g))!=null&&x[2]){var R=n.filter[N],Q,L;L=x[1];C=false;x.splice(1,1);if(L.substr(L.length-1)!=="\\"){if(t===q)q=[];if(n.preFilter[N])if(x=n.preFilter[N](x,t,o,q,m,P)){if(x===true)continue}else C=Q=true;if(x)for(var i=0;(L=t[i])!=null;i++)if(L){Q=R(L,x,i,t);var r=m^!!Q;if(o&&Q!=null)if(r)C=true;else t[i]=false;else if(r){q.push(L);C=true}}if(Q!==
A){o||(t=q);g=g.replace(n.match[N],"");if(!C)return[];break}}}if(g===p)if(C==null)l.error(g);else break;p=g}return t};l.error=function(g){throw"Syntax error, unrecognized expression: "+g;};var n=l.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+\-]*)\))?/,
POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(g){return g.getAttribute("href")}},relative:{"+":function(g,j){var o=typeof j==="string",m=o&&!/\W/.test(j);o=o&&!m;if(m)j=j.toLowerCase();m=0;for(var p=g.length,q;m<p;m++)if(q=g[m]){for(;(q=q.previousSibling)&&q.nodeType!==1;);g[m]=o||q&&q.nodeName.toLowerCase()===
j?q||false:q===j}o&&l.filter(j,g,true)},">":function(g,j){var o=typeof j==="string",m,p=0,q=g.length;if(o&&!/\W/.test(j))for(j=j.toLowerCase();p<q;p++){if(m=g[p]){o=m.parentNode;g[p]=o.nodeName.toLowerCase()===j?o:false}}else{for(;p<q;p++)if(m=g[p])g[p]=o?m.parentNode:m.parentNode===j;o&&l.filter(j,g,true)}},"":function(g,j,o){var m=e++,p=b,q;if(typeof j==="string"&&!/\W/.test(j)){q=j=j.toLowerCase();p=a}p("parentNode",j,m,g,q,o)},"~":function(g,j,o){var m=e++,p=b,q;if(typeof j==="string"&&!/\W/.test(j)){q=
j=j.toLowerCase();p=a}p("previousSibling",j,m,g,q,o)}},find:{ID:function(g,j,o){if(typeof j.getElementById!=="undefined"&&!o)return(g=j.getElementById(g[1]))&&g.parentNode?[g]:[]},NAME:function(g,j){if(typeof j.getElementsByName!=="undefined"){for(var o=[],m=j.getElementsByName(g[1]),p=0,q=m.length;p<q;p++)m[p].getAttribute("name")===g[1]&&o.push(m[p]);return o.length===0?null:o}},TAG:function(g,j){return j.getElementsByTagName(g[1])}},preFilter:{CLASS:function(g,j,o,m,p,q){g=" "+g[1].replace(/\\/g,
"")+" ";if(q)return g;q=0;for(var t;(t=j[q])!=null;q++)if(t)if(p^(t.className&&(" "+t.className+" ").replace(/[\t\n]/g," ").indexOf(g)>=0))o||m.push(t);else if(o)j[q]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()},CHILD:function(g){if(g[1]==="nth"){var j=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=j[1]+(j[2]||1)-0;g[3]=j[3]-0}g[0]=e++;return g},ATTR:function(g,j,o,
m,p,q){j=g[1].replace(/\\/g,"");if(!q&&n.attrMap[j])g[1]=n.attrMap[j];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,j,o,m,p){if(g[1]==="not")if((d.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=l(g[3],null,null,j);else{g=l.filter(g[3],j,o,true^p);o||m.push.apply(m,g);return false}else if(n.match.POS.test(g[0])||n.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled===
true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,j,o){return!!l(o[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)},text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"===
g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}},setFilters:{first:function(g,j){return j===0},last:function(g,j,o,m){return j===m.length-1},even:function(g,j){return j%2===0},odd:function(g,j){return j%2===1},lt:function(g,j,o){return j<o[3]-0},gt:function(g,j,o){return j>o[3]-0},nth:function(g,j,o){return o[3]-
0===j},eq:function(g,j,o){return o[3]-0===j}},filter:{PSEUDO:function(g,j,o,m){var p=j[1],q=n.filters[p];if(q)return q(g,o,j,m);else if(p==="contains")return(g.textContent||g.innerText||l.getText([g])||"").indexOf(j[3])>=0;else if(p==="not"){j=j[3];o=0;for(m=j.length;o<m;o++)if(j[o]===g)return false;return true}else l.error("Syntax error, unrecognized expression: "+p)},CHILD:function(g,j){var o=j[1],m=g;switch(o){case "only":case "first":for(;m=m.previousSibling;)if(m.nodeType===1)return false;if(o===
"first")return true;m=g;case "last":for(;m=m.nextSibling;)if(m.nodeType===1)return false;return true;case "nth":o=j[2];var p=j[3];if(o===1&&p===0)return true;var q=j[0],t=g.parentNode;if(t&&(t.sizcache!==q||!g.nodeIndex)){var x=0;for(m=t.firstChild;m;m=m.nextSibling)if(m.nodeType===1)m.nodeIndex=++x;t.sizcache=q}m=g.nodeIndex-p;return o===0?m===0:m%o===0&&m/o>=0}},ID:function(g,j){return g.nodeType===1&&g.getAttribute("id")===j},TAG:function(g,j){return j==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===
j},CLASS:function(g,j){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(j)>-1},ATTR:function(g,j){var o=j[1];o=n.attrHandle[o]?n.attrHandle[o](g):g[o]!=null?g[o]:g.getAttribute(o);var m=o+"",p=j[2],q=j[4];return o==null?p==="!=":p==="="?m===q:p==="*="?m.indexOf(q)>=0:p==="~="?(" "+m+" ").indexOf(q)>=0:!q?m&&o!==false:p==="!="?m!==q:p==="^="?m.indexOf(q)===0:p==="$="?m.substr(m.length-q.length)===q:p==="|="?m===q||m.substr(0,q.length+1)===q+"-":false},POS:function(g,j,o,m){var p=n.setFilters[j[2]];
if(p)return p(g,o,j,m)}}},s=n.match.POS,v=function(g,j){return"\\"+(j-0+1)},B;for(B in n.match){n.match[B]=RegExp(n.match[B].source+/(?![^\[]*\])(?![^\(]*\))/.source);n.leftMatch[B]=RegExp(/(^(?:.|\r|\n)*?)/.source+n.match[B].source.replace(/\\(\d+)/g,v))}var D=function(g,j){g=Array.prototype.slice.call(g,0);if(j){j.push.apply(j,g);return j}return g};try{Array.prototype.slice.call(u.documentElement.childNodes,0)}catch(H){D=function(g,j){var o=j||[],m=0;if(f.call(g)==="[object Array]")Array.prototype.push.apply(o,
g);else if(typeof g.length==="number")for(var p=g.length;m<p;m++)o.push(g[m]);else for(;g[m];m++)o.push(g[m]);return o}}var w,G;if(u.documentElement.compareDocumentPosition)w=function(g,j){if(g===j){h=true;return 0}if(!g.compareDocumentPosition||!j.compareDocumentPosition)return g.compareDocumentPosition?-1:1;return g.compareDocumentPosition(j)&4?-1:1};else{w=function(g,j){var o=[],m=[],p=g.parentNode,q=j.parentNode,t=p;if(g===j){h=true;return 0}else if(p===q)return G(g,j);else if(p){if(!q)return 1}else return-1;
for(;t;){o.unshift(t);t=t.parentNode}for(t=q;t;){m.unshift(t);t=t.parentNode}p=o.length;q=m.length;for(t=0;t<p&&t<q;t++)if(o[t]!==m[t])return G(o[t],m[t]);return t===p?G(g,m[t],-1):G(o[t],j,1)};G=function(g,j,o){if(g===j)return o;for(g=g.nextSibling;g;){if(g===j)return-1;g=g.nextSibling}return 1}}l.getText=function(g){for(var j="",o,m=0;g[m];m++){o=g[m];if(o.nodeType===3||o.nodeType===4)j+=o.nodeValue;else if(o.nodeType!==8)j+=l.getText(o.childNodes)}return j};(function(){var g=u.createElement("div"),
j="script"+(new Date).getTime();g.innerHTML="<a name='"+j+"'/>";var o=u.documentElement;o.insertBefore(g,o.firstChild);if(u.getElementById(j)){n.find.ID=function(m,p,q){if(typeof p.getElementById!=="undefined"&&!q)return(p=p.getElementById(m[1]))?p.id===m[1]||typeof p.getAttributeNode!=="undefined"&&p.getAttributeNode("id").nodeValue===m[1]?[p]:A:[]};n.filter.ID=function(m,p){var q=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&q&&q.nodeValue===p}}o.removeChild(g);
o=g=null})();(function(){var g=u.createElement("div");g.appendChild(u.createComment(""));if(g.getElementsByTagName("*").length>0)n.find.TAG=function(j,o){var m=o.getElementsByTagName(j[1]);if(j[1]==="*"){for(var p=[],q=0;m[q];q++)m[q].nodeType===1&&p.push(m[q]);m=p}return m};g.innerHTML="<a href='#'></a>";if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")n.attrHandle.href=function(j){return j.getAttribute("href",2)};g=null})();u.querySelectorAll&&
function(){var g=l,j=u.createElement("div");j.innerHTML="<p class='TEST'></p>";if(!(j.querySelectorAll&&j.querySelectorAll(".TEST").length===0)){l=function(m,p,q,t){p=p||u;if(!t&&!l.isXML(p))if(p.nodeType===9)try{return D(p.querySelectorAll(m),q)}catch(x){}else if(p.nodeType===1&&p.nodeName.toLowerCase()!=="object"){var C=p.id,P=p.id="__sizzle__";try{return D(p.querySelectorAll("#"+P+" "+m),q)}catch(N){}finally{if(C)p.id=C;else p.removeAttribute("id")}}return g(m,p,q,t)};for(var o in g)l[o]=g[o];
j=null}}();(function(){var g=u.documentElement,j=g.matchesSelector||g.mozMatchesSelector||g.webkitMatchesSelector||g.msMatchesSelector,o=false;try{j.call(u.documentElement,":sizzle")}catch(m){o=true}if(j)l.matchesSelector=function(p,q){try{if(o||!n.match.PSEUDO.test(q))return j.call(p,q)}catch(t){}return l(q,null,null,[p]).length>0}})();(function(){var g=u.createElement("div");g.innerHTML="<div class='test e'></div><div class='test'></div>";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===
0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){n.order.splice(1,0,"CLASS");n.find.CLASS=function(j,o,m){if(typeof o.getElementsByClassName!=="undefined"&&!m)return o.getElementsByClassName(j[1])};g=null}}})();l.contains=u.documentElement.contains?function(g,j){return g!==j&&(g.contains?g.contains(j):true)}:function(g,j){return!!(g.compareDocumentPosition(j)&16)};l.isXML=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false};var M=function(g,
j){for(var o=[],m="",p,q=j.nodeType?[j]:j;p=n.match.PSEUDO.exec(g);){m+=p[0];g=g.replace(n.match.PSEUDO,"")}g=n.relative[g]?g+"*":g;p=0;for(var t=q.length;p<t;p++)l(g,q[p],o);return l.filter(m,o)};c.find=l;c.expr=l.selectors;c.expr[":"]=c.expr.filters;c.unique=l.uniqueSort;c.text=l.getText;c.isXMLDoc=l.isXML;c.contains=l.contains})();var Wa=/Until$/,Xa=/^(?:parents|prevUntil|prevAll)/,Ya=/,/,Ja=/^.[^:#\[\.,]*$/,Za=Array.prototype.slice,$a=c.expr.match.POS;c.fn.extend({find:function(a){for(var b=this.pushStack("",
"find",a),d=0,e=0,f=this.length;e<f;e++){d=b.length;c.find(a,this[e],b);if(e>0)for(var h=d;h<b.length;h++)for(var k=0;k<d;k++)if(b[k]===b[h]){b.splice(h--,1);break}}return b},has:function(a){var b=c(a);return this.filter(function(){for(var d=0,e=b.length;d<e;d++)if(c.contains(this,b[d]))return true})},not:function(a){return this.pushStack(ka(this,a,false),"not",a)},filter:function(a){return this.pushStack(ka(this,a,true),"filter",a)},is:function(a){return!!a&&c.filter(a,this).length>0},closest:function(a,
b){var d=[],e,f,h=this[0];if(c.isArray(a)){var k={},l,n=1;if(h&&a.length){e=0;for(f=a.length;e<f;e++){l=a[e];k[l]||(k[l]=c.expr.match.POS.test(l)?c(l,b||this.context):l)}for(;h&&h.ownerDocument&&h!==b;){for(l in k){e=k[l];if(e.jquery?e.index(h)>-1:c(h).is(e))d.push({selector:l,elem:h,level:n})}h=h.parentNode;n++}}return d}k=$a.test(a)?c(a,b||this.context):null;e=0;for(f=this.length;e<f;e++)for(h=this[e];h;)if(k?k.index(h)>-1:c.find.matchesSelector(h,a)){d.push(h);break}else{h=h.parentNode;if(!h||
!h.ownerDocument||h===b)break}d=d.length>1?c.unique(d):d;return this.pushStack(d,"closest",a)},index:function(a){if(!a||typeof a==="string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var d=typeof a==="string"?c(a,b||this.context):c.makeArray(a),e=c.merge(this.get(),d);return this.pushStack(!d[0]||!d[0].parentNode||d[0].parentNode.nodeType===11||!e[0]||!e[0].parentNode||e[0].parentNode.nodeType===11?e:c.unique(e))},andSelf:function(){return this.add(this.prevObject)}});
c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode",d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a,2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",
d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,b){c.fn[a]=function(d,e){var f=c.map(this,b,d);Wa.test(a)||(e=d);if(e&&typeof e==="string")f=c.filter(e,f);f=this.length>1?c.unique(f):f;if((this.length>1||Ya.test(e))&&Xa.test(a))f=f.reverse();return this.pushStack(f,a,Za.call(arguments).join(","))}});
c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return b.length===1?c.find.matchesSelector(b[0],a)?[b[0]]:[]:c.find.matches(a,b)},dir:function(a,b,d){var e=[];for(a=a[b];a&&a.nodeType!==9&&(d===A||a.nodeType!==1||!c(a).is(d));){a.nodeType===1&&e.push(a);a=a[b]}return e},nth:function(a,b,d){b=b||1;for(var e=0;a;a=a[d])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var xa=/ jQuery\d+="(?:\d+|null)"/g,
$=/^\s+/,ya=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,za=/<([\w:]+)/,ab=/<tbody/i,bb=/<|&#?\w+;/,Aa=/<(?:script|object|embed|option|style)/i,Ba=/checked\s*(?:[^=]|=\s*.checked.)/i,cb=/\=([^="'>\s]+\/)>/g,O={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],
area:[1,"<map>","</map>"],_default:[0,"",""]};O.optgroup=O.option;O.tbody=O.tfoot=O.colgroup=O.caption=O.thead;O.th=O.td;if(!c.support.htmlSerialize)O._default=[1,"div<div>","</div>"];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d=c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==A)return this.empty().append((this[0]&&this[0].ownerDocument||u).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,
d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this},wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},
unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=
c(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,e;(e=this[d])!=null;d++)if(!a||c.filter(a,[e]).length){if(!b&&e.nodeType===1){c.cleanData(e.getElementsByTagName("*"));
c.cleanData([e])}e.parentNode&&e.parentNode.removeChild(e)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild);return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,e=this.ownerDocument;if(!d){d=e.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(xa,"").replace(cb,'="$1">').replace($,
"")],e)[0]}else return this.cloneNode(true)});if(a===true){la(this,b);la(this.find("*"),b.find("*"))}return b},html:function(a){if(a===A)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(xa,""):null;else if(typeof a==="string"&&!Aa.test(a)&&(c.support.leadingWhitespace||!$.test(a))&&!O[(za.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(ya,"<$1><$2>");try{for(var b=0,d=this.length;b<d;b++)if(this[b].nodeType===1){c.cleanData(this[b].getElementsByTagName("*"));this[b].innerHTML=a}}catch(e){this.empty().append(a)}}else c.isFunction(a)?
this.each(function(f){var h=c(this);h.html(a.call(this,f,h.html()))}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(c.isFunction(a))return this.each(function(b){var d=c(this),e=d.html();d.replaceWith(a.call(this,b,e))});if(typeof a!=="string")a=c(a).detach();return this.each(function(){var b=this.nextSibling,d=this.parentNode;c(this).remove();b?c(b).before(a):c(d).append(a)})}else return this.pushStack(c(c.isFunction(a)?a():a),"replaceWith",a)},detach:function(a){return this.remove(a,
true)},domManip:function(a,b,d){var e,f,h=a[0],k=[],l;if(!c.support.checkClone&&arguments.length===3&&typeof h==="string"&&Ba.test(h))return this.each(function(){c(this).domManip(a,b,d,true)});if(c.isFunction(h))return this.each(function(s){var v=c(this);a[0]=h.call(this,s,b?v.html():A);v.domManip(a,b,d)});if(this[0]){e=h&&h.parentNode;e=c.support.parentNode&&e&&e.nodeType===11&&e.childNodes.length===this.length?{fragment:e}:c.buildFragment(a,this,k);l=e.fragment;if(f=l.childNodes.length===1?l=l.firstChild:
l.firstChild){b=b&&c.nodeName(f,"tr");f=0;for(var n=this.length;f<n;f++)d.call(b?c.nodeName(this[f],"table")?this[f].getElementsByTagName("tbody")[0]||this[f].appendChild(this[f].ownerDocument.createElement("tbody")):this[f]:this[f],f>0||e.cacheable||this.length>1?l.cloneNode(true):l)}k.length&&c.each(k,Ka)}return this}});c.buildFragment=function(a,b,d){var e,f,h;b=b&&b[0]?b[0].ownerDocument||b[0]:u;if(a.length===1&&typeof a[0]==="string"&&a[0].length<512&&b===u&&!Aa.test(a[0])&&(c.support.checkClone||
!Ba.test(a[0]))){f=true;if(h=c.fragments[a[0]])if(h!==1)e=h}if(!e){e=b.createDocumentFragment();c.clean(a,b,e,d)}if(f)c.fragments[a[0]]=h?e:1;return{fragment:e,cacheable:f}};c.fragments={};c.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var e=[];d=c(d);var f=this.length===1&&this[0].parentNode;if(f&&f.nodeType===11&&f.childNodes.length===1&&d.length===1){d[b](this[0]);return this}else{f=0;for(var h=
d.length;f<h;f++){var k=(f>0?this.clone(true):this).get();c(d[f])[b](k);e=e.concat(k)}return this.pushStack(e,a,d.selector)}}});c.extend({clean:function(a,b,d,e){b=b||u;if(typeof b.createElement==="undefined")b=b.ownerDocument||b[0]&&b[0].ownerDocument||u;for(var f=[],h=0,k;(k=a[h])!=null;h++){if(typeof k==="number")k+="";if(k){if(typeof k==="string"&&!bb.test(k))k=b.createTextNode(k);else if(typeof k==="string"){k=k.replace(ya,"<$1><$2>");var l=(za.exec(k)||["",""])[1].toLowerCase(),n=O[l]||O._default,
s=n[0],v=b.createElement("div");for(v.innerHTML=n[1]+k+n[2];s--;)v=v.lastChild;if(!c.support.tbody){s=ab.test(k);l=l==="table"&&!s?v.firstChild&&v.firstChild.childNodes:n[1]==="<table>"&&!s?v.childNodes:[];for(n=l.length-1;n>=0;--n)c.nodeName(l[n],"tbody")&&!l[n].childNodes.length&&l[n].parentNode.removeChild(l[n])}!c.support.leadingWhitespace&&$.test(k)&&v.insertBefore(b.createTextNode($.exec(k)[0]),v.firstChild);k=v.childNodes}if(k.nodeType)f.push(k);else f=c.merge(f,k)}}if(d)for(h=0;f[h];h++)if(e&&
c.nodeName(f[h],"script")&&(!f[h].type||f[h].type.toLowerCase()==="text/javascript"))e.push(f[h].parentNode?f[h].parentNode.removeChild(f[h]):f[h]);else{f[h].nodeType===1&&f.splice.apply(f,[h+1,0].concat(c.makeArray(f[h].getElementsByTagName("script"))));d.appendChild(f[h])}return f},cleanData:function(a){for(var b,d,e=c.cache,f=c.event.special,h=c.support.deleteExpando,k=0,l;(l=a[k])!=null;k++)if(!(l.nodeName&&c.noData[l.nodeName.toLowerCase()]))if(d=l[c.expando]){if((b=e[d])&&b.events)for(var n in b.events)f[n]?
c.event.remove(l,n):c.removeEvent(l,n,b.handle);if(h)delete l[c.expando];else l.removeAttribute&&l.removeAttribute(c.expando);delete e[d]}}});var Ca=/alpha\([^)]*\)/i,db=/opacity=([^)]*)/,eb=/-([a-z])/ig,fb=/([A-Z])/g,Da=/^-?\d+(?:px)?$/i,gb=/^-?\d/,hb={position:"absolute",visibility:"hidden",display:"block"},La=["Left","Right"],Ma=["Top","Bottom"],W,ib=u.defaultView&&u.defaultView.getComputedStyle,jb=function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){if(arguments.length===2&&b===A)return this;
return c.access(this,a,b,true,function(d,e,f){return f!==A?c.style(d,e,f):c.css(d,e)})};c.extend({cssHooks:{opacity:{get:function(a,b){if(b){var d=W(a,"opacity","opacity");return d===""?"1":d}else return a.style.opacity}}},cssNumber:{zIndex:true,fontWeight:true,opacity:true,zoom:true,lineHeight:true},cssProps:{"float":c.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,b,d,e){if(!(!a||a.nodeType===3||a.nodeType===8||!a.style)){var f,h=c.camelCase(b),k=a.style,l=c.cssHooks[h];b=c.cssProps[h]||
h;if(d!==A){if(!(typeof d==="number"&&isNaN(d)||d==null)){if(typeof d==="number"&&!c.cssNumber[h])d+="px";if(!l||!("set"in l)||(d=l.set(a,d))!==A)try{k[b]=d}catch(n){}}}else{if(l&&"get"in l&&(f=l.get(a,false,e))!==A)return f;return k[b]}}},css:function(a,b,d){var e,f=c.camelCase(b),h=c.cssHooks[f];b=c.cssProps[f]||f;if(h&&"get"in h&&(e=h.get(a,true,d))!==A)return e;else if(W)return W(a,b,f)},swap:function(a,b,d){var e={},f;for(f in b){e[f]=a.style[f];a.style[f]=b[f]}d.call(a);for(f in b)a.style[f]=
e[f]},camelCase:function(a){return a.replace(eb,jb)}});c.curCSS=c.css;c.each(["height","width"],function(a,b){c.cssHooks[b]={get:function(d,e,f){var h;if(e){if(d.offsetWidth!==0)h=ma(d,b,f);else c.swap(d,hb,function(){h=ma(d,b,f)});return h+"px"}},set:function(d,e){if(Da.test(e)){e=parseFloat(e);if(e>=0)return e+"px"}else return e}}});if(!c.support.opacity)c.cssHooks.opacity={get:function(a,b){return db.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":
b?"1":""},set:function(a,b){var d=a.style;d.zoom=1;var e=c.isNaN(b)?"":"alpha(opacity="+b*100+")",f=d.filter||"";d.filter=Ca.test(f)?f.replace(Ca,e):d.filter+" "+e}};if(ib)W=function(a,b,d){var e;d=d.replace(fb,"-$1").toLowerCase();if(!(b=a.ownerDocument.defaultView))return A;if(b=b.getComputedStyle(a,null)){e=b.getPropertyValue(d);if(e===""&&!c.contains(a.ownerDocument.documentElement,a))e=c.style(a,d)}return e};else if(u.documentElement.currentStyle)W=function(a,b){var d,e,f=a.currentStyle&&a.currentStyle[b],
h=a.style;if(!Da.test(f)&&gb.test(f)){d=h.left;e=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;h.left=b==="fontSize"?"1em":f||0;f=h.pixelLeft+"px";h.left=d;a.runtimeStyle.left=e}return f};if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b=a.offsetHeight;return a.offsetWidth===0&&b===0||!c.support.reliableHiddenOffsets&&(a.style.display||c.css(a,"display"))==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var kb=c.now(),lb=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,
mb=/^(?:select|textarea)/i,nb=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ob=/^(?:GET|HEAD|DELETE)$/,Na=/\[\]$/,T=/\=\?(&|$)/,ia=/\?/,pb=/([?&])_=[^&]*/,qb=/^(\w+:)?\/\/([^\/?#]+)/,rb=/%20/g,sb=/#.*$/,Ea=c.fn.load;c.fn.extend({load:function(a,b,d){if(typeof a!=="string"&&Ea)return Ea.apply(this,arguments);else if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var f=a.slice(e,a.length);a=a.slice(0,e)}e="GET";if(b)if(c.isFunction(b)){d=
b;b=null}else if(typeof b==="object"){b=c.param(b,c.ajaxSettings.traditional);e="POST"}var h=this;c.ajax({url:a,type:e,dataType:"html",data:b,complete:function(k,l){if(l==="success"||l==="notmodified")h.html(f?c("<div>").append(k.responseText.replace(lb,"")).find(f):k.responseText);d&&h.each(d,[k.responseText,l,k])}});return this},serialize:function(){return c.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?c.makeArray(this.elements):this}).filter(function(){return this.name&&
!this.disabled&&(this.checked||mb.test(this.nodeName)||nb.test(this.type))}).map(function(a,b){var d=c(this).val();return d==null?null:c.isArray(d)?c.map(d,function(e){return{name:b.name,value:e}}):{name:b.name,value:d}}).get()}});c.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){c.fn[b]=function(d){return this.bind(b,d)}});c.extend({get:function(a,b,d,e){if(c.isFunction(b)){e=e||d;d=b;b=null}return c.ajax({type:"GET",url:a,data:b,success:d,dataType:e})},
getScript:function(a,b){return c.get(a,null,b,"script")},getJSON:function(a,b,d){return c.get(a,b,d,"json")},post:function(a,b,d,e){if(c.isFunction(b)){e=e||d;d=b;b={}}return c.ajax({type:"POST",url:a,data:b,success:d,dataType:e})},ajaxSetup:function(a){c.extend(c.ajaxSettings,a)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return new E.XMLHttpRequest},accepts:{xml:"application/xml, text/xml",html:"text/html",
script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},ajax:function(a){var b=c.extend(true,{},c.ajaxSettings,a),d,e,f,h=b.type.toUpperCase(),k=ob.test(h);b.url=b.url.replace(sb,"");b.context=a&&a.context!=null?a.context:b;if(b.data&&b.processData&&typeof b.data!=="string")b.data=c.param(b.data,b.traditional);if(b.dataType==="jsonp"){if(h==="GET")T.test(b.url)||(b.url+=(ia.test(b.url)?"&":"?")+(b.jsonp||"callback")+"=?");else if(!b.data||
!T.test(b.data))b.data=(b.data?b.data+"&":"")+(b.jsonp||"callback")+"=?";b.dataType="json"}if(b.dataType==="json"&&(b.data&&T.test(b.data)||T.test(b.url))){d=b.jsonpCallback||"jsonp"+kb++;if(b.data)b.data=(b.data+"").replace(T,"="+d+"$1");b.url=b.url.replace(T,"="+d+"$1");b.dataType="script";var l=E[d];E[d]=function(m){f=m;c.handleSuccess(b,w,e,f);c.handleComplete(b,w,e,f);if(c.isFunction(l))l(m);else{E[d]=A;try{delete E[d]}catch(p){}}v&&v.removeChild(B)}}if(b.dataType==="script"&&b.cache===null)b.cache=
false;if(b.cache===false&&h==="GET"){var n=c.now(),s=b.url.replace(pb,"$1_="+n);b.url=s+(s===b.url?(ia.test(b.url)?"&":"?")+"_="+n:"")}if(b.data&&h==="GET")b.url+=(ia.test(b.url)?"&":"?")+b.data;b.global&&c.active++===0&&c.event.trigger("ajaxStart");n=(n=qb.exec(b.url))&&(n[1]&&n[1]!==location.protocol||n[2]!==location.host);if(b.dataType==="script"&&h==="GET"&&n){var v=u.getElementsByTagName("head")[0]||u.documentElement,B=u.createElement("script");if(b.scriptCharset)B.charset=b.scriptCharset;B.src=
b.url;if(!d){var D=false;B.onload=B.onreadystatechange=function(){if(!D&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){D=true;c.handleSuccess(b,w,e,f);c.handleComplete(b,w,e,f);B.onload=B.onreadystatechange=null;v&&B.parentNode&&v.removeChild(B)}}}v.insertBefore(B,v.firstChild);return A}var H=false,w=b.xhr();if(w){b.username?w.open(h,b.url,b.async,b.username,b.password):w.open(h,b.url,b.async);try{if(b.data!=null&&!k||a&&a.contentType)w.setRequestHeader("Content-Type",
b.contentType);if(b.ifModified){c.lastModified[b.url]&&w.setRequestHeader("If-Modified-Since",c.lastModified[b.url]);c.etag[b.url]&&w.setRequestHeader("If-None-Match",c.etag[b.url])}n||w.setRequestHeader("X-Requested-With","XMLHttpRequest");w.setRequestHeader("Accept",b.dataType&&b.accepts[b.dataType]?b.accepts[b.dataType]+", */*; q=0.01":b.accepts._default)}catch(G){}if(b.beforeSend&&b.beforeSend.call(b.context,w,b)===false){b.global&&c.active--===1&&c.event.trigger("ajaxStop");w.abort();return false}b.global&&
c.triggerGlobal(b,"ajaxSend",[w,b]);var M=w.onreadystatechange=function(m){if(!w||w.readyState===0||m==="abort"){H||c.handleComplete(b,w,e,f);H=true;if(w)w.onreadystatechange=c.noop}else if(!H&&w&&(w.readyState===4||m==="timeout")){H=true;w.onreadystatechange=c.noop;e=m==="timeout"?"timeout":!c.httpSuccess(w)?"error":b.ifModified&&c.httpNotModified(w,b.url)?"notmodified":"success";var p;if(e==="success")try{f=c.httpData(w,b.dataType,b)}catch(q){e="parsererror";p=q}if(e==="success"||e==="notmodified")d||
c.handleSuccess(b,w,e,f);else c.handleError(b,w,e,p);d||c.handleComplete(b,w,e,f);m==="timeout"&&w.abort();if(b.async)w=null}};try{var g=w.abort;w.abort=function(){w&&g.call&&g.call(w);M("abort")}}catch(j){}b.async&&b.timeout>0&&setTimeout(function(){w&&!H&&M("timeout")},b.timeout);try{w.send(k||b.data==null?null:b.data)}catch(o){c.handleError(b,w,null,o);c.handleComplete(b,w,e,f)}b.async||M();return w}},param:function(a,b){var d=[],e=function(h,k){k=c.isFunction(k)?k():k;d[d.length]=encodeURIComponent(h)+
"="+encodeURIComponent(k)};if(b===A)b=c.ajaxSettings.traditional;if(c.isArray(a)||a.jquery)c.each(a,function(){e(this.name,this.value)});else for(var f in a)ca(f,a[f],b,e);return d.join("&").replace(rb,"+")}});c.extend({active:0,lastModified:{},etag:{},handleError:function(a,b,d,e){a.error&&a.error.call(a.context,b,d,e);a.global&&c.triggerGlobal(a,"ajaxError",[b,a,e])},handleSuccess:function(a,b,d,e){a.success&&a.success.call(a.context,e,d,b);a.global&&c.triggerGlobal(a,"ajaxSuccess",[b,a])},handleComplete:function(a,
b,d){a.complete&&a.complete.call(a.context,b,d);a.global&&c.triggerGlobal(a,"ajaxComplete",[b,a]);a.global&&c.active--===1&&c.event.trigger("ajaxStop")},triggerGlobal:function(a,b,d){(a.context&&a.context.url==null?c(a.context):c.event).trigger(b,d)},httpSuccess:function(a){try{return!a.status&&location.protocol==="file:"||a.status>=200&&a.status<300||a.status===304||a.status===1223}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"),e=a.getResponseHeader("Etag");
if(d)c.lastModified[b]=d;if(e)c.etag[b]=e;return a.status===304},httpData:function(a,b,d){var e=a.getResponseHeader("content-type")||"",f=b==="xml"||!b&&e.indexOf("xml")>=0;a=f?a.responseXML:a.responseText;f&&a.documentElement.nodeName==="parsererror"&&c.error("parsererror");if(d&&d.dataFilter)a=d.dataFilter(a,b);if(typeof a==="string")if(b==="json"||!b&&e.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&e.indexOf("javascript")>=0)c.globalEval(a);return a}});if(E.ActiveXObject)c.ajaxSettings.xhr=
function(){if(E.location.protocol!=="file:")try{return new E.XMLHttpRequest}catch(a){}try{return new E.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}};c.support.ajax=!!c.ajaxSettings.xhr();var da={},tb=/^(?:toggle|show|hide)$/,ub=/^([+\-]=)?([\d+.\-]+)(.*)$/,aa,na=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];c.fn.extend({show:function(a,b,d){if(a||a===0)return this.animate(S("show",3),a,b,d);else{a=
0;for(b=this.length;a<b;a++){if(!c.data(this[a],"olddisplay")&&this[a].style.display==="none")this[a].style.display="";this[a].style.display===""&&c.css(this[a],"display")==="none"&&c.data(this[a],"olddisplay",oa(this[a].nodeName))}for(a=0;a<b;a++)this[a].style.display=c.data(this[a],"olddisplay")||"";return this}},hide:function(a,b,d){if(a||a===0)return this.animate(S("hide",3),a,b,d);else{a=0;for(b=this.length;a<b;a++){d=c.css(this[a],"display");d!=="none"&&c.data(this[a],"olddisplay",d)}for(a=
0;a<b;a++)this[a].style.display="none";return this}},_toggle:c.fn.toggle,toggle:function(a,b,d){var e=typeof a==="boolean";if(c.isFunction(a)&&c.isFunction(b))this._toggle.apply(this,arguments);else a==null||e?this.each(function(){var f=e?a:c(this).is(":hidden");c(this)[f?"show":"hide"]()}):this.animate(S("toggle",3),a,b,d);return this},fadeTo:function(a,b,d,e){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,d,e)},animate:function(a,b,d,e){var f=c.speed(b,d,e);if(c.isEmptyObject(a))return this.each(f.complete);
return this[f.queue===false?"each":"queue"](function(){var h=c.extend({},f),k,l=this.nodeType===1,n=l&&c(this).is(":hidden"),s=this;for(k in a){var v=c.camelCase(k);if(k!==v){a[v]=a[k];delete a[k];k=v}if(a[k]==="hide"&&n||a[k]==="show"&&!n)return h.complete.call(this);if(l&&(k==="height"||k==="width")){h.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY];if(c.css(this,"display")==="inline"&&c.css(this,"float")==="none")if(c.support.inlineBlockNeedsLayout)if(oa(this.nodeName)===
"inline")this.style.display="inline-block";else{this.style.display="inline";this.style.zoom=1}else this.style.display="inline-block"}if(c.isArray(a[k])){(h.specialEasing=h.specialEasing||{})[k]=a[k][1];a[k]=a[k][0]}}if(h.overflow!=null)this.style.overflow="hidden";h.curAnim=c.extend({},a);c.each(a,function(B,D){var H=new c.fx(s,h,B);if(tb.test(D))H[D==="toggle"?n?"show":"hide":D](a);else{var w=ub.exec(D),G=H.cur(true)||0;if(w){var M=parseFloat(w[2]),g=w[3]||"px";if(g!=="px"){c.style(s,B,(M||1)+g);
G=(M||1)/H.cur(true)*G;c.style(s,B,G+g)}if(w[1])M=(w[1]==="-="?-1:1)*M+G;H.custom(G,M,g)}else H.custom(G,D,"")}});return true})},stop:function(a,b){var d=c.timers;a&&this.queue([]);this.each(function(){for(var e=d.length-1;e>=0;e--)if(d[e].elem===this){b&&d[e](true);d.splice(e,1)}});b||this.dequeue();return this}});c.each({slideDown:S("show",1),slideUp:S("hide",1),slideToggle:S("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(a,b){c.fn[a]=function(d,e,f){return this.animate(b,
d,e,f)}});c.extend({speed:function(a,b,d){var e=a&&typeof a==="object"?c.extend({},a):{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,easing:d&&b||b&&!c.isFunction(b)&&b};e.duration=c.fx.off?0:typeof e.duration==="number"?e.duration:e.duration in c.fx.speeds?c.fx.speeds[e.duration]:c.fx.speeds._default;e.old=e.complete;e.complete=function(){e.queue!==false&&c(this).dequeue();c.isFunction(e.old)&&e.old.call(this)};return e},easing:{linear:function(a,b,d,e){return d+e*a},swing:function(a,b,d,e){return(-Math.cos(a*
Math.PI)/2+0.5)*e+d}},timers:[],fx:function(a,b,d){this.options=b;this.elem=a;this.prop=d;if(!b.orig)b.orig={}}});c.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this);(c.fx.step[this.prop]||c.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a=parseFloat(c.css(this.elem,this.prop));return a&&a>-1E4?a:0},custom:function(a,b,d){function e(h){return f.step(h)}
this.startTime=c.now();this.start=a;this.end=b;this.unit=d||this.unit||"px";this.now=this.start;this.pos=this.state=0;var f=this;a=c.fx;e.elem=this.elem;if(e()&&c.timers.push(e)&&!aa)aa=setInterval(a.tick,a.interval)},show:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());c(this.elem).show()},hide:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.hide=true;
this.custom(this.cur(),0)},step:function(a){var b=c.now(),d=true;if(a||b>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var e in this.options.curAnim)if(this.options.curAnim[e]!==true)d=false;if(d){if(this.options.overflow!=null&&!c.support.shrinkWrapBlocks){var f=this.elem,h=this.options;c.each(["","X","Y"],function(l,n){f.style["overflow"+n]=h.overflow[l]})}this.options.hide&&c(this.elem).hide();if(this.options.hide||
this.options.show)for(var k in this.options.curAnim)c.style(this.elem,k,this.options.orig[k]);this.options.complete.call(this.elem)}return false}else{a=b-this.startTime;this.state=a/this.options.duration;b=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||b](this.state,a,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a=
c.timers,b=0;b<a.length;b++)a[b]()||a.splice(b--,1);a.length||c.fx.stop()},interval:13,stop:function(){clearInterval(aa);aa=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){c.style(a.elem,"opacity",a.now)},_default:function(a){if(a.elem.style&&a.elem.style[a.prop]!=null)a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit;else a.elem[a.prop]=a.now}}});if(c.expr&&c.expr.filters)c.expr.filters.animated=function(a){return c.grep(c.timers,function(b){return a===
b.elem}).length};var vb=/^t(?:able|d|h)$/i,Fa=/^(?:body|html)$/i;c.fn.offset="getBoundingClientRect"in u.documentElement?function(a){var b=this[0],d;if(a)return this.each(function(k){c.offset.setOffset(this,a,k)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);try{d=b.getBoundingClientRect()}catch(e){}var f=b.ownerDocument,h=f.documentElement;if(!d||!c.contains(h,b))return d||{top:0,left:0};b=f.body;f=ea(f);return{top:d.top+(f.pageYOffset||c.support.boxModel&&
h.scrollTop||b.scrollTop)-(h.clientTop||b.clientTop||0),left:d.left+(f.pageXOffset||c.support.boxModel&&h.scrollLeft||b.scrollLeft)-(h.clientLeft||b.clientLeft||0)}}:function(a){var b=this[0];if(a)return this.each(function(s){c.offset.setOffset(this,a,s)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);c.offset.initialize();var d=b.offsetParent,e=b.ownerDocument,f,h=e.documentElement,k=e.body;f=(e=e.defaultView)?e.getComputedStyle(b,null):b.currentStyle;
for(var l=b.offsetTop,n=b.offsetLeft;(b=b.parentNode)&&b!==k&&b!==h;){if(c.offset.supportsFixedPosition&&f.position==="fixed")break;f=e?e.getComputedStyle(b,null):b.currentStyle;l-=b.scrollTop;n-=b.scrollLeft;if(b===d){l+=b.offsetTop;n+=b.offsetLeft;if(c.offset.doesNotAddBorder&&!(c.offset.doesAddBorderForTableAndCells&&vb.test(b.nodeName))){l+=parseFloat(f.borderTopWidth)||0;n+=parseFloat(f.borderLeftWidth)||0}d=b.offsetParent}if(c.offset.subtractsBorderForOverflowNotVisible&&f.overflow!=="visible"){l+=
parseFloat(f.borderTopWidth)||0;n+=parseFloat(f.borderLeftWidth)||0}f=f}if(f.position==="relative"||f.position==="static"){l+=k.offsetTop;n+=k.offsetLeft}if(c.offset.supportsFixedPosition&&f.position==="fixed"){l+=Math.max(h.scrollTop,k.scrollTop);n+=Math.max(h.scrollLeft,k.scrollLeft)}return{top:l,left:n}};c.offset={initialize:function(){var a=u.body,b=u.createElement("div"),d,e,f,h=parseFloat(c.css(a,"marginTop"))||0;c.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",
height:"1px",visibility:"hidden"});b.innerHTML="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";a.insertBefore(b,a.firstChild);d=b.firstChild;e=d.firstChild;f=d.nextSibling.firstChild.firstChild;this.doesNotAddBorder=e.offsetTop!==5;this.doesAddBorderForTableAndCells=
f.offsetTop===5;e.style.position="fixed";e.style.top="20px";this.supportsFixedPosition=e.offsetTop===20||e.offsetTop===15;e.style.position=e.style.top="";d.style.overflow="hidden";d.style.position="relative";this.subtractsBorderForOverflowNotVisible=e.offsetTop===-5;this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==h;a.removeChild(b);c.offset.initialize=c.noop},bodyOffset:function(a){var b=a.offsetTop,d=a.offsetLeft;c.offset.initialize();if(c.offset.doesNotIncludeMarginInBodyOffset){b+=parseFloat(c.css(a,
"marginTop"))||0;d+=parseFloat(c.css(a,"marginLeft"))||0}return{top:b,left:d}},setOffset:function(a,b,d){var e=c.css(a,"position");if(e==="static")a.style.position="relative";var f=c(a),h=f.offset(),k=c.css(a,"top"),l=c.css(a,"left"),n=e==="absolute"&&c.inArray("auto",[k,l])>-1;e={};var s={};if(n)s=f.position();k=n?s.top:parseInt(k,10)||0;l=n?s.left:parseInt(l,10)||0;if(c.isFunction(b))b=b.call(a,d,h);if(b.top!=null)e.top=b.top-h.top+k;if(b.left!=null)e.left=b.left-h.left+l;"using"in b?b.using.call(a,
e):f.css(e)}};c.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),d=this.offset(),e=Fa.test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=parseFloat(c.css(a,"marginTop"))||0;d.left-=parseFloat(c.css(a,"marginLeft"))||0;e.top+=parseFloat(c.css(b[0],"borderTopWidth"))||0;e.left+=parseFloat(c.css(b[0],"borderLeftWidth"))||0;return{top:d.top-e.top,left:d.left-e.left}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||u.body;a&&!Fa.test(a.nodeName)&&
c.css(a,"position")==="static";)a=a.offsetParent;return a})}});c.each(["Left","Top"],function(a,b){var d="scroll"+b;c.fn[d]=function(e){var f=this[0],h;if(!f)return null;if(e!==A)return this.each(function(){if(h=ea(this))h.scrollTo(!a?e:c(h).scrollLeft(),a?e:c(h).scrollTop());else this[d]=e});else return(h=ea(f))?"pageXOffset"in h?h[a?"pageYOffset":"pageXOffset"]:c.support.boxModel&&h.document.documentElement[d]||h.document.body[d]:f[d]}});c.each(["Height","Width"],function(a,b){var d=b.toLowerCase();
c.fn["inner"+b]=function(){return this[0]?parseFloat(c.css(this[0],d,"padding")):null};c.fn["outer"+b]=function(e){return this[0]?parseFloat(c.css(this[0],d,e?"margin":"border")):null};c.fn[d]=function(e){var f=this[0];if(!f)return e==null?null:this;if(c.isFunction(e))return this.each(function(h){var k=c(this);k[d](e.call(this,h,k[d]()))});return c.isWindow(f)?f.document.compatMode==="CSS1Compat"&&f.document.documentElement["client"+b]||f.document.body["client"+b]:f.nodeType===9?Math.max(f.documentElement["client"+
b],f.body["scroll"+b],f.documentElement["scroll"+b],f.body["offset"+b],f.documentElement["offset"+b]):e===A?parseFloat(c.css(f,d)):this.css(d,typeof e==="string"?e:e+"px")}})})(window);
//v1.7
// Flash Player Version Detection
// Detect Client Browser type
// Copyright 2005-2007 Adobe Systems Incorporated.  All rights reserved.
var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;

function ControlVersion()
{
	var version;
	var axo;
	var e;

	// NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry

	try {
		// version will be set for 7.X or greater players
		axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
		version = axo.GetVariable("$version");
	} catch (e) {
	}

	if (!version)
	{
		try {
			// version will be set for 6.X players only
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
			
			// installed player is some revision of 6.0
			// GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
			// so we have to be careful. 
			
			// default to the first public version
			version = "WIN 6,0,21,0";

			// throws if AllowScripAccess does not exist (introduced in 6.0r47)		
			axo.AllowScriptAccess = "always";

			// safe to call for 6.0r47 or greater
			version = axo.GetVariable("$version");

		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 4.X or 5.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
			version = axo.GetVariable("$version");
		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 3.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
			version = "WIN 3,0,18,0";
		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 2.X player
			axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
			version = "WIN 2,0,0,11";
		} catch (e) {
			version = -1;
		}
	}
	
	return version;
}

// JavaScript helper required to detect Flash Player PlugIn version information
function GetSwfVer(){
	// NS/Opera version >= 3 check for Flash plugin in plugin array
	var flashVer = -1;
	
	if (navigator.plugins != null && navigator.plugins.length > 0) {
		if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
			var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
			var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
			var descArray = flashDescription.split(" ");
			var tempArrayMajor = descArray[2].split(".");			
			var versionMajor = tempArrayMajor[0];
			var versionMinor = tempArrayMajor[1];
			var versionRevision = descArray[3];
			if (versionRevision == "") {
				versionRevision = descArray[4];
			}
			if (versionRevision[0] == "d") {
				versionRevision = versionRevision.substring(1);
			} else if (versionRevision[0] == "r") {
				versionRevision = versionRevision.substring(1);
				if (versionRevision.indexOf("d") > 0) {
					versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
				}
			}
			var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
		}
	}
	// MSN/WebTV 2.6 supports Flash 4
	else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
	// WebTV 2.5 supports Flash 3
	else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
	// older WebTV supports Flash 2
	else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
	else if ( isIE && isWin && !isOpera ) {
		flashVer = ControlVersion();
	}	
	return flashVer;
}

// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
{
	versionStr = GetSwfVer();
	if (versionStr == -1 ) {
		return false;
	} else if (versionStr != 0) {
		if(isIE && isWin && !isOpera) {
			// Given "WIN 2,0,0,11"
			tempArray         = versionStr.split(" "); 	// ["WIN", "2,0,0,11"]
			tempString        = tempArray[1];			// "2,0,0,11"
			versionArray      = tempString.split(",");	// ['2', '0', '0', '11']
		} else {
			versionArray      = versionStr.split(".");
		}
		var versionMajor      = versionArray[0];
		var versionMinor      = versionArray[1];
		var versionRevision   = versionArray[2];

        	// is the major.revision >= requested major.revision AND the minor version >= requested minor
		if (versionMajor > parseFloat(reqMajorVer)) {
			return true;
		} else if (versionMajor == parseFloat(reqMajorVer)) {
			if (versionMinor > parseFloat(reqMinorVer))
				return true;
			else if (versionMinor == parseFloat(reqMinorVer)) {
				if (versionRevision >= parseFloat(reqRevision))
					return true;
			}
		}
		return false;
	}
}

function AC_AddExtension(src, ext)
{
  if (src.indexOf('?') != -1)
    return src.replace(/\?/, ext+'?'); 
  else
    return src + ext;
}

function AC_Generateobj(objAttrs, params, embedAttrs) 
{ 
  var str = '';
  if (isIE && isWin && !isOpera)
  {
    str += '<object ';
    for (var i in objAttrs)
    {
      str += i + '="' + objAttrs[i] + '" ';
    }
    str += '>';
    for (var i in params)
    {
      str += '<param name="' + i + '" value="' + params[i] + '" /> ';
    }
    str += '</object>';
  }
  else
  {
    str += '<embed ';
    for (var i in embedAttrs)
    {
      str += i + '="' + embedAttrs[i] + '" ';
    }
    str += '> </embed>';
  }

  document.write(str);
}

function AC_FL_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
     , "application/x-shockwave-flash"
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_SW_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
     , null
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
  var ret = new Object();
  ret.embedAttrs = new Object();
  ret.params = new Object();
  ret.objAttrs = new Object();
  for (var i=0; i < args.length; i=i+2){
    var currArg = args[i].toLowerCase();    

    switch (currArg){	
      case "classid":
        break;
      case "pluginspage":
        ret.embedAttrs[args[i]] = args[i+1];
        break;
      case "src":
      case "movie":	
        args[i+1] = AC_AddExtension(args[i+1], ext);
        ret.embedAttrs["src"] = args[i+1];
        ret.params[srcParamName] = args[i+1];
        break;
      case "onafterupdate":
      case "onbeforeupdate":
      case "onblur":
      case "oncellchange":
      case "onclick":
      case "ondblClick":
      case "ondrag":
      case "ondragend":
      case "ondragenter":
      case "ondragleave":
      case "ondragover":
      case "ondrop":
      case "onfinish":
      case "onfocus":
      case "onhelp":
      case "onmousedown":
      case "onmouseup":
      case "onmouseover":
      case "onmousemove":
      case "onmouseout":
      case "onkeypress":
      case "onkeydown":
      case "onkeyup":
      case "onload":
      case "onlosecapture":
      case "onpropertychange":
      case "onreadystatechange":
      case "onrowsdelete":
      case "onrowenter":
      case "onrowexit":
      case "onrowsinserted":
      case "onstart":
      case "onscroll":
      case "onbeforeeditfocus":
      case "onactivate":
      case "onbeforedeactivate":
      case "ondeactivate":
      case "type":
      case "codebase":
      case "id":
        ret.objAttrs[args[i]] = args[i+1];
        break;
      case "width":
      case "height":
      case "align":
      case "vspace": 
      case "hspace":
      case "class":
      case "title":
      case "accesskey":
      case "name":
      case "tabindex":
        ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
        break;
      default:
        ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
    }
  }
  ret.objAttrs["classid"] = classid;
  if (mimeType) ret.embedAttrs["type"] = mimeType;
  return ret;
}
/*!
 * jQuery JavaScript Library v1.4.2
 * http://jquery.com/
 *
 * Copyright 2010, John Resig
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * Includes Sizzle.js
 * http://sizzlejs.com/
 * Copyright 2010, The Dojo Foundation
 * Released under the MIT, BSD, and GPL Licenses.
 *
 * Date: Sat Feb 13 22:33:48 2010 -0500
 */
(function(A,w){function ma(){if(!c.isReady){try{s.documentElement.doScroll("left")}catch(a){setTimeout(ma,1);return}c.ready()}}function Qa(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}function X(a,b,d,f,e,j){var i=a.length;if(typeof b==="object"){for(var o in b)X(a,o,b[o],f,e,d);return a}if(d!==w){f=!j&&f&&c.isFunction(d);for(o=0;o<i;o++)e(a[o],b,f?d.call(a[o],o,e(a[o],b)):d,j);return a}return i?
e(a[0],b):w}function J(){return(new Date).getTime()}function Y(){return false}function Z(){return true}function na(a,b,d){d[0].type=a;return c.event.handle.apply(b,d)}function oa(a){var b,d=[],f=[],e=arguments,j,i,o,k,n,r;i=c.data(this,"events");if(!(a.liveFired===this||!i||!i.live||a.button&&a.type==="click")){a.liveFired=this;var u=i.live.slice(0);for(k=0;k<u.length;k++){i=u[k];i.origType.replace(O,"")===a.type?f.push(i.selector):u.splice(k--,1)}j=c(a.target).closest(f,a.currentTarget);n=0;for(r=
j.length;n<r;n++)for(k=0;k<u.length;k++){i=u[k];if(j[n].selector===i.selector){o=j[n].elem;f=null;if(i.preType==="mouseenter"||i.preType==="mouseleave")f=c(a.relatedTarget).closest(i.selector)[0];if(!f||f!==o)d.push({elem:o,handleObj:i})}}n=0;for(r=d.length;n<r;n++){j=d[n];a.currentTarget=j.elem;a.data=j.handleObj.data;a.handleObj=j.handleObj;if(j.handleObj.origHandler.apply(j.elem,e)===false){b=false;break}}return b}}function pa(a,b){return"live."+(a&&a!=="*"?a+".":"")+b.replace(/\./g,"`").replace(/ /g,
"&")}function qa(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function ra(a,b){var d=0;b.each(function(){if(this.nodeName===(a[d]&&a[d].nodeName)){var f=c.data(a[d++]),e=c.data(this,f);if(f=f&&f.events){delete e.handle;e.events={};for(var j in f)for(var i in f[j])c.event.add(this,j,f[j][i],f[j][i].data)}}})}function sa(a,b,d){var f,e,j;b=b&&b[0]?b[0].ownerDocument||b[0]:s;if(a.length===1&&typeof a[0]==="string"&&a[0].length<512&&b===s&&!ta.test(a[0])&&(c.support.checkClone||!ua.test(a[0]))){e=
true;if(j=c.fragments[a[0]])if(j!==1)f=j}if(!f){f=b.createDocumentFragment();c.clean(a,b,f,d)}if(e)c.fragments[a[0]]=j?f:1;return{fragment:f,cacheable:e}}function K(a,b){var d={};c.each(va.concat.apply([],va.slice(0,b)),function(){d[this]=a});return d}function wa(a){return"scrollTo"in a&&a.document?a:a.nodeType===9?a.defaultView||a.parentWindow:false}var c=function(a,b){return new c.fn.init(a,b)},Ra=A.jQuery,Sa=A.$,s=A.document,T,Ta=/^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,Ua=/^.[^:#\[\.,]*$/,Va=/\S/,
Wa=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,Xa=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,P=navigator.userAgent,xa=false,Q=[],L,$=Object.prototype.toString,aa=Object.prototype.hasOwnProperty,ba=Array.prototype.push,R=Array.prototype.slice,ya=Array.prototype.indexOf;c.fn=c.prototype={init:function(a,b){var d,f;if(!a)return this;if(a.nodeType){this.context=this[0]=a;this.length=1;return this}if(a==="body"&&!b){this.context=s;this[0]=s.body;this.selector="body";this.length=1;return this}if(typeof a==="string")if((d=Ta.exec(a))&&
(d[1]||!b))if(d[1]){f=b?b.ownerDocument||b:s;if(a=Xa.exec(a))if(c.isPlainObject(b)){a=[s.createElement(a[1])];c.fn.attr.call(a,b,true)}else a=[f.createElement(a[1])];else{a=sa([d[1]],[f]);a=(a.cacheable?a.fragment.cloneNode(true):a.fragment).childNodes}return c.merge(this,a)}else{if(b=s.getElementById(d[2])){if(b.id!==d[2])return T.find(a);this.length=1;this[0]=b}this.context=s;this.selector=a;return this}else if(!b&&/^\w+$/.test(a)){this.selector=a;this.context=s;a=s.getElementsByTagName(a);return c.merge(this,
a)}else return!b||b.jquery?(b||T).find(a):c(b).find(a);else if(c.isFunction(a))return T.ready(a);if(a.selector!==w){this.selector=a.selector;this.context=a.context}return c.makeArray(a,this)},selector:"",jquery:"1.4.2",length:0,size:function(){return this.length},toArray:function(){return R.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this.slice(a)[0]:this[a]},pushStack:function(a,b,d){var f=c();c.isArray(a)?ba.apply(f,a):c.merge(f,a);f.prevObject=this;f.context=this.context;if(b===
"find")f.selector=this.selector+(this.selector?" ":"")+d;else if(b)f.selector=this.selector+"."+b+"("+d+")";return f},each:function(a,b){return c.each(this,a,b)},ready:function(a){c.bindReady();if(c.isReady)a.call(s,c);else Q&&Q.push(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(R.apply(this,arguments),"slice",R.call(arguments).join(","))},map:function(a){return this.pushStack(c.map(this,
function(b,d){return a.call(b,d,b)}))},end:function(){return this.prevObject||c(null)},push:ba,sort:[].sort,splice:[].splice};c.fn.init.prototype=c.fn;c.extend=c.fn.extend=function(){var a=arguments[0]||{},b=1,d=arguments.length,f=false,e,j,i,o;if(typeof a==="boolean"){f=a;a=arguments[1]||{};b=2}if(typeof a!=="object"&&!c.isFunction(a))a={};if(d===b){a=this;--b}for(;b<d;b++)if((e=arguments[b])!=null)for(j in e){i=a[j];o=e[j];if(a!==o)if(f&&o&&(c.isPlainObject(o)||c.isArray(o))){i=i&&(c.isPlainObject(i)||
c.isArray(i))?i:c.isArray(o)?[]:{};a[j]=c.extend(f,i,o)}else if(o!==w)a[j]=o}return a};c.extend({noConflict:function(a){A.$=Sa;if(a)A.jQuery=Ra;return c},isReady:false,ready:function(){if(!c.isReady){if(!s.body)return setTimeout(c.ready,13);c.isReady=true;if(Q){for(var a,b=0;a=Q[b++];)a.call(s,c);Q=null}c.fn.triggerHandler&&c(s).triggerHandler("ready")}},bindReady:function(){if(!xa){xa=true;if(s.readyState==="complete")return c.ready();if(s.addEventListener){s.addEventListener("DOMContentLoaded",
L,false);A.addEventListener("load",c.ready,false)}else if(s.attachEvent){s.attachEvent("onreadystatechange",L);A.attachEvent("onload",c.ready);var a=false;try{a=A.frameElement==null}catch(b){}s.documentElement.doScroll&&a&&ma()}}},isFunction:function(a){return $.call(a)==="[object Function]"},isArray:function(a){return $.call(a)==="[object Array]"},isPlainObject:function(a){if(!a||$.call(a)!=="[object Object]"||a.nodeType||a.setInterval)return false;if(a.constructor&&!aa.call(a,"constructor")&&!aa.call(a.constructor.prototype,
"isPrototypeOf"))return false;var b;for(b in a);return b===w||aa.call(a,b)},isEmptyObject:function(a){for(var b in a)return false;return true},error:function(a){throw a;},parseJSON:function(a){if(typeof a!=="string"||!a)return null;a=c.trim(a);if(/^[\],:{}\s]*$/.test(a.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,"")))return A.JSON&&A.JSON.parse?A.JSON.parse(a):(new Function("return "+
a))();else c.error("Invalid JSON: "+a)},noop:function(){},globalEval:function(a){if(a&&Va.test(a)){var b=s.getElementsByTagName("head")[0]||s.documentElement,d=s.createElement("script");d.type="text/javascript";if(c.support.scriptEval)d.appendChild(s.createTextNode(a));else d.text=a;b.insertBefore(d,b.firstChild);b.removeChild(d)}},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,b,d){var f,e=0,j=a.length,i=j===w||c.isFunction(a);if(d)if(i)for(f in a){if(b.apply(a[f],
d)===false)break}else for(;e<j;){if(b.apply(a[e++],d)===false)break}else if(i)for(f in a){if(b.call(a[f],f,a[f])===false)break}else for(d=a[0];e<j&&b.call(d,e,d)!==false;d=a[++e]);return a},trim:function(a){return(a||"").replace(Wa,"")},makeArray:function(a,b){b=b||[];if(a!=null)a.length==null||typeof a==="string"||c.isFunction(a)||typeof a!=="function"&&a.setInterval?ba.call(b,a):c.merge(b,a);return b},inArray:function(a,b){if(b.indexOf)return b.indexOf(a);for(var d=0,f=b.length;d<f;d++)if(b[d]===
a)return d;return-1},merge:function(a,b){var d=a.length,f=0;if(typeof b.length==="number")for(var e=b.length;f<e;f++)a[d++]=b[f];else for(;b[f]!==w;)a[d++]=b[f++];a.length=d;return a},grep:function(a,b,d){for(var f=[],e=0,j=a.length;e<j;e++)!d!==!b(a[e],e)&&f.push(a[e]);return f},map:function(a,b,d){for(var f=[],e,j=0,i=a.length;j<i;j++){e=b(a[j],j,d);if(e!=null)f[f.length]=e}return f.concat.apply([],f)},guid:1,proxy:function(a,b,d){if(arguments.length===2)if(typeof b==="string"){d=a;a=d[b];b=w}else if(b&&
!c.isFunction(b)){d=b;b=w}if(!b&&a)b=function(){return a.apply(d||this,arguments)};if(a)b.guid=a.guid=a.guid||b.guid||c.guid++;return b},uaMatch:function(a){a=a.toLowerCase();a=/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version)?[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||!/compatible/.test(a)&&/(mozilla)(?:.*? rv:([\w.]+))?/.exec(a)||[];return{browser:a[1]||"",version:a[2]||"0"}},browser:{}});P=c.uaMatch(P);if(P.browser){c.browser[P.browser]=true;c.browser.version=P.version}if(c.browser.webkit)c.browser.safari=
true;if(ya)c.inArray=function(a,b){return ya.call(b,a)};T=c(s);if(s.addEventListener)L=function(){s.removeEventListener("DOMContentLoaded",L,false);c.ready()};else if(s.attachEvent)L=function(){if(s.readyState==="complete"){s.detachEvent("onreadystatechange",L);c.ready()}};(function(){c.support={};var a=s.documentElement,b=s.createElement("script"),d=s.createElement("div"),f="script"+J();d.style.display="none";d.innerHTML="   <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";
var e=d.getElementsByTagName("*"),j=d.getElementsByTagName("a")[0];if(!(!e||!e.length||!j)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(j.getAttribute("style")),hrefNormalized:j.getAttribute("href")==="/a",opacity:/^0.55$/.test(j.style.opacity),cssFloat:!!j.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:s.createElement("select").appendChild(s.createElement("option")).selected,
parentNode:d.removeChild(d.appendChild(s.createElement("div"))).parentNode===null,deleteExpando:true,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null};b.type="text/javascript";try{b.appendChild(s.createTextNode("window."+f+"=1;"))}catch(i){}a.insertBefore(b,a.firstChild);if(A[f]){c.support.scriptEval=true;delete A[f]}try{delete b.test}catch(o){c.support.deleteExpando=false}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function k(){c.support.noCloneEvent=
false;d.detachEvent("onclick",k)});d.cloneNode(true).fireEvent("onclick")}d=s.createElement("div");d.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";a=s.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var k=s.createElement("div");k.style.width=k.style.paddingLeft="1px";s.body.appendChild(k);c.boxModel=c.support.boxModel=k.offsetWidth===2;s.body.removeChild(k).style.display="none"});a=function(k){var n=
s.createElement("div");k="on"+k;var r=k in n;if(!r){n.setAttribute(k,"return;");r=typeof n[k]==="function"}return r};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=e=j=null}})();c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var G="jQuery"+J(),Ya=0,za={};c.extend({cache:{},expando:G,noData:{embed:true,object:true,
applet:true},data:function(a,b,d){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var f=a[G],e=c.cache;if(!f&&typeof b==="string"&&d===w)return null;f||(f=++Ya);if(typeof b==="object"){a[G]=f;e[f]=c.extend(true,{},b)}else if(!e[f]){a[G]=f;e[f]={}}a=e[f];if(d!==w)a[b]=d;return typeof b==="string"?a[b]:a}},removeData:function(a,b){if(!(a.nodeName&&c.noData[a.nodeName.toLowerCase()])){a=a==A?za:a;var d=a[G],f=c.cache,e=f[d];if(b){if(e){delete e[b];c.isEmptyObject(e)&&c.removeData(a)}}else{if(c.support.deleteExpando)delete a[c.expando];
else a.removeAttribute&&a.removeAttribute(c.expando);delete f[d]}}}});c.fn.extend({data:function(a,b){if(typeof a==="undefined"&&this.length)return c.data(this[0]);else if(typeof a==="object")return this.each(function(){c.data(this,a)});var d=a.split(".");d[1]=d[1]?"."+d[1]:"";if(b===w){var f=this.triggerHandler("getData"+d[1]+"!",[d[0]]);if(f===w&&this.length)f=c.data(this[0],a);return f===w&&d[1]?this.data(d[0]):f}else return this.trigger("setData"+d[1]+"!",[d[0],b]).each(function(){c.data(this,
a,b)})},removeData:function(a){return this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a,b,d){if(a){b=(b||"fx")+"queue";var f=c.data(a,b);if(!d)return f||[];if(!f||c.isArray(d))f=c.data(a,b,c.makeArray(d));else f.push(d);return f}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),f=d.shift();if(f==="inprogress")f=d.shift();if(f){b==="fx"&&d.unshift("inprogress");f.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b===
w)return c.queue(this[0],a);return this.each(function(){var d=c.queue(this,a,b);a==="fx"&&d[0]!=="inprogress"&&c.dequeue(this,a)})},dequeue:function(a){return this.each(function(){c.dequeue(this,a)})},delay:function(a,b){a=c.fx?c.fx.speeds[a]||a:a;b=b||"fx";return this.queue(b,function(){var d=this;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var Aa=/[\n\t]/g,ca=/\s+/,Za=/\r/g,$a=/href|src|style/,ab=/(button|input)/i,bb=/(button|input|object|select|textarea)/i,
cb=/^(a|area)$/i,Ba=/radio|checkbox/;c.fn.extend({attr:function(a,b){return X(this,a,b,true,c.attr)},removeAttr:function(a){return this.each(function(){c.attr(this,a,"");this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(c.isFunction(a))return this.each(function(n){var r=c(this);r.addClass(a.call(this,n,r.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ca),d=0,f=this.length;d<f;d++){var e=this[d];if(e.nodeType===1)if(e.className){for(var j=" "+e.className+" ",
i=e.className,o=0,k=b.length;o<k;o++)if(j.indexOf(" "+b[o]+" ")<0)i+=" "+b[o];e.className=c.trim(i)}else e.className=a}return this},removeClass:function(a){if(c.isFunction(a))return this.each(function(k){var n=c(this);n.removeClass(a.call(this,k,n.attr("class")))});if(a&&typeof a==="string"||a===w)for(var b=(a||"").split(ca),d=0,f=this.length;d<f;d++){var e=this[d];if(e.nodeType===1&&e.className)if(a){for(var j=(" "+e.className+" ").replace(Aa," "),i=0,o=b.length;i<o;i++)j=j.replace(" "+b[i]+" ",
" ");e.className=c.trim(j)}else e.className=""}return this},toggleClass:function(a,b){var d=typeof a,f=typeof b==="boolean";if(c.isFunction(a))return this.each(function(e){var j=c(this);j.toggleClass(a.call(this,e,j.attr("class"),b),b)});return this.each(function(){if(d==="string")for(var e,j=0,i=c(this),o=b,k=a.split(ca);e=k[j++];){o=f?o:!i.hasClass(e);i[o?"addClass":"removeClass"](e)}else if(d==="undefined"||d==="boolean"){this.className&&c.data(this,"__className__",this.className);this.className=
this.className||a===false?"":c.data(this,"__className__")||""}})},hasClass:function(a){a=" "+a+" ";for(var b=0,d=this.length;b<d;b++)if((" "+this[b].className+" ").replace(Aa," ").indexOf(a)>-1)return true;return false},val:function(a){if(a===w){var b=this[0];if(b){if(c.nodeName(b,"option"))return(b.attributes.value||{}).specified?b.value:b.text;if(c.nodeName(b,"select")){var d=b.selectedIndex,f=[],e=b.options;b=b.type==="select-one";if(d<0)return null;var j=b?d:0;for(d=b?d+1:e.length;j<d;j++){var i=
e[j];if(i.selected){a=c(i).val();if(b)return a;f.push(a)}}return f}if(Ba.test(b.type)&&!c.support.checkOn)return b.getAttribute("value")===null?"on":b.value;return(b.value||"").replace(Za,"")}return w}var o=c.isFunction(a);return this.each(function(k){var n=c(this),r=a;if(this.nodeType===1){if(o)r=a.call(this,k,n.val());if(typeof r==="number")r+="";if(c.isArray(r)&&Ba.test(this.type))this.checked=c.inArray(n.val(),r)>=0;else if(c.nodeName(this,"select")){var u=c.makeArray(r);c("option",this).each(function(){this.selected=
c.inArray(c(this).val(),u)>=0});if(!u.length)this.selectedIndex=-1}else this.value=r}})}});c.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(a,b,d,f){if(!a||a.nodeType===3||a.nodeType===8)return w;if(f&&b in c.attrFn)return c(a)[b](d);f=a.nodeType!==1||!c.isXMLDoc(a);var e=d!==w;b=f&&c.props[b]||b;if(a.nodeType===1){var j=$a.test(b);if(b in a&&f&&!j){if(e){b==="type"&&ab.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed");
a[b]=d}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return a.getAttributeNode(b).nodeValue;if(b==="tabIndex")return(b=a.getAttributeNode("tabIndex"))&&b.specified?b.value:bb.test(a.nodeName)||cb.test(a.nodeName)&&a.href?0:w;return a[b]}if(!c.support.style&&f&&b==="style"){if(e)a.style.cssText=""+d;return a.style.cssText}e&&a.setAttribute(b,""+d);a=!c.support.hrefNormalized&&f&&j?a.getAttribute(b,2):a.getAttribute(b);return a===null?w:a}return c.style(a,b,d)}});var O=/\.(.*)$/,db=function(a){return a.replace(/[^\w\s\.\|`]/g,
function(b){return"\\"+b})};c.event={add:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){if(a.setInterval&&a!==A&&!a.frameElement)a=A;var e,j;if(d.handler){e=d;d=e.handler}if(!d.guid)d.guid=c.guid++;if(j=c.data(a)){var i=j.events=j.events||{},o=j.handle;if(!o)j.handle=o=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(o.elem,arguments):w};o.elem=a;b=b.split(" ");for(var k,n=0,r;k=b[n++];){j=e?c.extend({},e):{handler:d,data:f};if(k.indexOf(".")>-1){r=k.split(".");
k=r.shift();j.namespace=r.slice(0).sort().join(".")}else{r=[];j.namespace=""}j.type=k;j.guid=d.guid;var u=i[k],z=c.event.special[k]||{};if(!u){u=i[k]=[];if(!z.setup||z.setup.call(a,f,r,o)===false)if(a.addEventListener)a.addEventListener(k,o,false);else a.attachEvent&&a.attachEvent("on"+k,o)}if(z.add){z.add.call(a,j);if(!j.handler.guid)j.handler.guid=d.guid}u.push(j);c.event.global[k]=true}a=null}}},global:{},remove:function(a,b,d,f){if(!(a.nodeType===3||a.nodeType===8)){var e,j=0,i,o,k,n,r,u,z=c.data(a),
C=z&&z.events;if(z&&C){if(b&&b.type){d=b.handler;b=b.type}if(!b||typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(e in C)c.event.remove(a,e+b)}else{for(b=b.split(" ");e=b[j++];){n=e;i=e.indexOf(".")<0;o=[];if(!i){o=e.split(".");e=o.shift();k=new RegExp("(^|\\.)"+c.map(o.slice(0).sort(),db).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(r=C[e])if(d){n=c.event.special[e]||{};for(B=f||0;B<r.length;B++){u=r[B];if(d.guid===u.guid){if(i||k.test(u.namespace)){f==null&&r.splice(B--,1);n.remove&&n.remove.call(a,u)}if(f!=
null)break}}if(r.length===0||f!=null&&r.length===1){if(!n.teardown||n.teardown.call(a,o)===false)Ca(a,e,z.handle);delete C[e]}}else for(var B=0;B<r.length;B++){u=r[B];if(i||k.test(u.namespace)){c.event.remove(a,n,u.handler,B);r.splice(B--,1)}}}if(c.isEmptyObject(C)){if(b=z.handle)b.elem=null;delete z.events;delete z.handle;c.isEmptyObject(z)&&c.removeData(a)}}}}},trigger:function(a,b,d,f){var e=a.type||a;if(!f){a=typeof a==="object"?a[G]?a:c.extend(c.Event(e),a):c.Event(e);if(e.indexOf("!")>=0){a.type=
e=e.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[e]&&c.each(c.cache,function(){this.events&&this.events[e]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType===8)return w;a.result=w;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(f=c.data(d,"handle"))&&f.apply(d,b);f=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+e]&&d["on"+e].apply(d,b)===false)a.result=false}catch(j){}if(!a.isPropagationStopped()&&
f)c.event.trigger(a,b,f,true);else if(!a.isDefaultPrevented()){f=a.target;var i,o=c.nodeName(f,"a")&&e==="click",k=c.event.special[e]||{};if((!k._default||k._default.call(d,a)===false)&&!o&&!(f&&f.nodeName&&c.noData[f.nodeName.toLowerCase()])){try{if(f[e]){if(i=f["on"+e])f["on"+e]=null;c.event.triggered=true;f[e]()}}catch(n){}if(i)f["on"+e]=i;c.event.triggered=false}}},handle:function(a){var b,d,f,e;a=arguments[0]=c.event.fix(a||A.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive;
if(!b){d=a.type.split(".");a.type=d.shift();f=new RegExp("(^|\\.)"+d.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)")}e=c.data(this,"events");d=e[a.type];if(e&&d){d=d.slice(0);e=0;for(var j=d.length;e<j;e++){var i=d[e];if(b||f.test(i.namespace)){a.handler=i.handler;a.data=i.data;a.handleObj=i;i=i.handler.apply(this,arguments);if(i!==w){a.result=i;if(i===false){a.preventDefault();a.stopPropagation()}}if(a.isImmediatePropagationStopped())break}}}return a.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),
fix:function(a){if(a[G])return a;var b=a;a=c.Event(b);for(var d=this.props.length,f;d;){f=this.props[--d];a[f]=b[f]}if(!a.target)a.target=a.srcElement||s;if(a.target.nodeType===3)a.target=a.target.parentNode;if(!a.relatedTarget&&a.fromElement)a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement;if(a.pageX==null&&a.clientX!=null){b=s.documentElement;d=s.body;a.pageX=a.clientX+(b&&b.scrollLeft||d&&d.scrollLeft||0)-(b&&b.clientLeft||d&&d.clientLeft||0);a.pageY=a.clientY+(b&&b.scrollTop||
d&&d.scrollTop||0)-(b&&b.clientTop||d&&d.clientTop||0)}if(!a.which&&(a.charCode||a.charCode===0?a.charCode:a.keyCode))a.which=a.charCode||a.keyCode;if(!a.metaKey&&a.ctrlKey)a.metaKey=a.ctrlKey;if(!a.which&&a.button!==w)a.which=a.button&1?1:a.button&2?3:a.button&4?2:0;return a},guid:1E8,proxy:c.proxy,special:{ready:{setup:c.bindReady,teardown:c.noop},live:{add:function(a){c.event.add(this,a.origType,c.extend({},a,{handler:oa}))},remove:function(a){var b=true,d=a.origType.replace(O,"");c.each(c.data(this,
"events").live||[],function(){if(d===this.origType.replace(O,""))return b=false});b&&c.event.remove(this,a.origType,oa)}},beforeunload:{setup:function(a,b,d){if(this.setInterval)this.onbeforeunload=d;return false},teardown:function(a,b){if(this.onbeforeunload===b)this.onbeforeunload=null}}}};var Ca=s.removeEventListener?function(a,b,d){a.removeEventListener(b,d,false)}:function(a,b,d){a.detachEvent("on"+b,d)};c.Event=function(a){if(!this.preventDefault)return new c.Event(a);if(a&&a.type){this.originalEvent=
a;this.type=a.type}else this.type=a;this.timeStamp=J();this[G]=true};c.Event.prototype={preventDefault:function(){this.isDefaultPrevented=Z;var a=this.originalEvent;if(a){a.preventDefault&&a.preventDefault();a.returnValue=false}},stopPropagation:function(){this.isPropagationStopped=Z;var a=this.originalEvent;if(a){a.stopPropagation&&a.stopPropagation();a.cancelBubble=true}},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=Z;this.stopPropagation()},isDefaultPrevented:Y,isPropagationStopped:Y,
isImmediatePropagationStopped:Y};var Da=function(a){var b=a.relatedTarget;try{for(;b&&b!==this;)b=b.parentNode;if(b!==this){a.type=a.data;c.event.handle.apply(this,arguments)}}catch(d){}},Ea=function(a){a.type=a.data;c.event.handle.apply(this,arguments)};c.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){c.event.special[a]={setup:function(d){c.event.add(this,b,d&&d.selector?Ea:Da,a)},teardown:function(d){c.event.remove(this,b,d&&d.selector?Ea:Da)}}});if(!c.support.submitBubbles)c.event.special.submit=
{setup:function(){if(this.nodeName.toLowerCase()!=="form"){c.event.add(this,"click.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="submit"||d==="image")&&c(b).closest("form").length)return na("submit",this,arguments)});c.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="text"||d==="password")&&c(b).closest("form").length&&a.keyCode===13)return na("submit",this,arguments)})}else return false},teardown:function(){c.event.remove(this,".specialSubmit")}};
if(!c.support.changeBubbles){var da=/textarea|input|select/i,ea,Fa=function(a){var b=a.type,d=a.value;if(b==="radio"||b==="checkbox")d=a.checked;else if(b==="select-multiple")d=a.selectedIndex>-1?c.map(a.options,function(f){return f.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},fa=function(a,b){var d=a.target,f,e;if(!(!da.test(d.nodeName)||d.readOnly)){f=c.data(d,"_change_data");e=Fa(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data",
e);if(!(f===w||e===f))if(f!=null||e){a.type="change";return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:fa,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return fa.call(this,a)},keydown:function(a){var b=a.target,d=b.type;if(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(d==="checkbox"||d==="radio")||d==="select-multiple")return fa.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a,
"_change_data",Fa(a))}},setup:function(){if(this.type==="file")return false;for(var a in ea)c.event.add(this,a+".specialChange",ea[a]);return da.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return da.test(this.nodeName)}};ea=c.event.special.change.filters}s.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(f){f=c.event.fix(f);f.type=b;return c.event.handle.call(this,f)}c.event.special[b]={setup:function(){this.addEventListener(a,
d,true)},teardown:function(){this.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,f,e){if(typeof d==="object"){for(var j in d)this[b](j,f,d[j],e);return this}if(c.isFunction(f)){e=f;f=w}var i=b==="one"?c.proxy(e,function(k){c(this).unbind(k,i);return e.apply(this,arguments)}):e;if(d==="unload"&&b!=="one")this.one(d,f,e);else{j=0;for(var o=this.length;j<o;j++)c.event.add(this[j],d,i,f)}return this}});c.fn.extend({unbind:function(a,b){if(typeof a==="object"&&
!a.preventDefault)for(var d in a)this.unbind(d,a[d]);else{d=0;for(var f=this.length;d<f;d++)c.event.remove(this[d],a,b)}return this},delegate:function(a,b,d,f){return this.live(b,d,f,a)},undelegate:function(a,b,d){return arguments.length===0?this.unbind("live"):this.die(b,null,d,a)},trigger:function(a,b){return this.each(function(){c.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0]){a=c.Event(a);a.preventDefault();a.stopPropagation();c.event.trigger(a,b,this[0]);return a.result}},
toggle:function(a){for(var b=arguments,d=1;d<b.length;)c.proxy(a,b[d++]);return this.click(c.proxy(a,function(f){var e=(c.data(this,"lastToggle"+a.guid)||0)%d;c.data(this,"lastToggle"+a.guid,e+1);f.preventDefault();return b[e].apply(this,arguments)||false}))},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var Ga={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};c.each(["live","die"],function(a,b){c.fn[b]=function(d,f,e,j){var i,o=0,k,n,r=j||this.selector,
u=j?this:c(this.context);if(c.isFunction(f)){e=f;f=w}for(d=(d||"").split(" ");(i=d[o++])!=null;){j=O.exec(i);k="";if(j){k=j[0];i=i.replace(O,"")}if(i==="hover")d.push("mouseenter"+k,"mouseleave"+k);else{n=i;if(i==="focus"||i==="blur"){d.push(Ga[i]+k);i+=k}else i=(Ga[i]||i)+k;b==="live"?u.each(function(){c.event.add(this,pa(i,r),{data:f,selector:r,handler:e,origType:i,origHandler:e,preType:n})}):u.unbind(pa(i,r),e)}}return this}});c.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "),
function(a,b){c.fn[b]=function(d){return d?this.bind(b,d):this.trigger(b)};if(c.attrFn)c.attrFn[b]=true});A.attachEvent&&!A.addEventListener&&A.attachEvent("onunload",function(){for(var a in c.cache)if(c.cache[a].handle)try{c.event.remove(c.cache[a].handle.elem)}catch(b){}});(function(){function a(g){for(var h="",l,m=0;g[m];m++){l=g[m];if(l.nodeType===3||l.nodeType===4)h+=l.nodeValue;else if(l.nodeType!==8)h+=a(l.childNodes)}return h}function b(g,h,l,m,q,p){q=0;for(var v=m.length;q<v;q++){var t=m[q];
if(t){t=t[g];for(var y=false;t;){if(t.sizcache===l){y=m[t.sizset];break}if(t.nodeType===1&&!p){t.sizcache=l;t.sizset=q}if(t.nodeName.toLowerCase()===h){y=t;break}t=t[g]}m[q]=y}}}function d(g,h,l,m,q,p){q=0;for(var v=m.length;q<v;q++){var t=m[q];if(t){t=t[g];for(var y=false;t;){if(t.sizcache===l){y=m[t.sizset];break}if(t.nodeType===1){if(!p){t.sizcache=l;t.sizset=q}if(typeof h!=="string"){if(t===h){y=true;break}}else if(k.filter(h,[t]).length>0){y=t;break}}t=t[g]}m[q]=y}}}var f=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,
e=0,j=Object.prototype.toString,i=false,o=true;[0,0].sort(function(){o=false;return 0});var k=function(g,h,l,m){l=l||[];var q=h=h||s;if(h.nodeType!==1&&h.nodeType!==9)return[];if(!g||typeof g!=="string")return l;for(var p=[],v,t,y,S,H=true,M=x(h),I=g;(f.exec(""),v=f.exec(I))!==null;){I=v[3];p.push(v[1]);if(v[2]){S=v[3];break}}if(p.length>1&&r.exec(g))if(p.length===2&&n.relative[p[0]])t=ga(p[0]+p[1],h);else for(t=n.relative[p[0]]?[h]:k(p.shift(),h);p.length;){g=p.shift();if(n.relative[g])g+=p.shift();
t=ga(g,t)}else{if(!m&&p.length>1&&h.nodeType===9&&!M&&n.match.ID.test(p[0])&&!n.match.ID.test(p[p.length-1])){v=k.find(p.shift(),h,M);h=v.expr?k.filter(v.expr,v.set)[0]:v.set[0]}if(h){v=m?{expr:p.pop(),set:z(m)}:k.find(p.pop(),p.length===1&&(p[0]==="~"||p[0]==="+")&&h.parentNode?h.parentNode:h,M);t=v.expr?k.filter(v.expr,v.set):v.set;if(p.length>0)y=z(t);else H=false;for(;p.length;){var D=p.pop();v=D;if(n.relative[D])v=p.pop();else D="";if(v==null)v=h;n.relative[D](y,v,M)}}else y=[]}y||(y=t);y||k.error(D||
g);if(j.call(y)==="[object Array]")if(H)if(h&&h.nodeType===1)for(g=0;y[g]!=null;g++){if(y[g]&&(y[g]===true||y[g].nodeType===1&&E(h,y[g])))l.push(t[g])}else for(g=0;y[g]!=null;g++)y[g]&&y[g].nodeType===1&&l.push(t[g]);else l.push.apply(l,y);else z(y,l);if(S){k(S,q,l,m);k.uniqueSort(l)}return l};k.uniqueSort=function(g){if(B){i=o;g.sort(B);if(i)for(var h=1;h<g.length;h++)g[h]===g[h-1]&&g.splice(h--,1)}return g};k.matches=function(g,h){return k(g,null,null,h)};k.find=function(g,h,l){var m,q;if(!g)return[];
for(var p=0,v=n.order.length;p<v;p++){var t=n.order[p];if(q=n.leftMatch[t].exec(g)){var y=q[1];q.splice(1,1);if(y.substr(y.length-1)!=="\\"){q[1]=(q[1]||"").replace(/\\/g,"");m=n.find[t](q,h,l);if(m!=null){g=g.replace(n.match[t],"");break}}}}m||(m=h.getElementsByTagName("*"));return{set:m,expr:g}};k.filter=function(g,h,l,m){for(var q=g,p=[],v=h,t,y,S=h&&h[0]&&x(h[0]);g&&h.length;){for(var H in n.filter)if((t=n.leftMatch[H].exec(g))!=null&&t[2]){var M=n.filter[H],I,D;D=t[1];y=false;t.splice(1,1);if(D.substr(D.length-
1)!=="\\"){if(v===p)p=[];if(n.preFilter[H])if(t=n.preFilter[H](t,v,l,p,m,S)){if(t===true)continue}else y=I=true;if(t)for(var U=0;(D=v[U])!=null;U++)if(D){I=M(D,t,U,v);var Ha=m^!!I;if(l&&I!=null)if(Ha)y=true;else v[U]=false;else if(Ha){p.push(D);y=true}}if(I!==w){l||(v=p);g=g.replace(n.match[H],"");if(!y)return[];break}}}if(g===q)if(y==null)k.error(g);else break;q=g}return v};k.error=function(g){throw"Syntax error, unrecognized expression: "+g;};var n=k.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF-]|\\.)+)/,
CLASS:/\.((?:[\w\u00c0-\uFFFF-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(g){return g.getAttribute("href")}},
relative:{"+":function(g,h){var l=typeof h==="string",m=l&&!/\W/.test(h);l=l&&!m;if(m)h=h.toLowerCase();m=0;for(var q=g.length,p;m<q;m++)if(p=g[m]){for(;(p=p.previousSibling)&&p.nodeType!==1;);g[m]=l||p&&p.nodeName.toLowerCase()===h?p||false:p===h}l&&k.filter(h,g,true)},">":function(g,h){var l=typeof h==="string";if(l&&!/\W/.test(h)){h=h.toLowerCase();for(var m=0,q=g.length;m<q;m++){var p=g[m];if(p){l=p.parentNode;g[m]=l.nodeName.toLowerCase()===h?l:false}}}else{m=0;for(q=g.length;m<q;m++)if(p=g[m])g[m]=
l?p.parentNode:p.parentNode===h;l&&k.filter(h,g,true)}},"":function(g,h,l){var m=e++,q=d;if(typeof h==="string"&&!/\W/.test(h)){var p=h=h.toLowerCase();q=b}q("parentNode",h,m,g,p,l)},"~":function(g,h,l){var m=e++,q=d;if(typeof h==="string"&&!/\W/.test(h)){var p=h=h.toLowerCase();q=b}q("previousSibling",h,m,g,p,l)}},find:{ID:function(g,h,l){if(typeof h.getElementById!=="undefined"&&!l)return(g=h.getElementById(g[1]))?[g]:[]},NAME:function(g,h){if(typeof h.getElementsByName!=="undefined"){var l=[];
h=h.getElementsByName(g[1]);for(var m=0,q=h.length;m<q;m++)h[m].getAttribute("name")===g[1]&&l.push(h[m]);return l.length===0?null:l}},TAG:function(g,h){return h.getElementsByTagName(g[1])}},preFilter:{CLASS:function(g,h,l,m,q,p){g=" "+g[1].replace(/\\/g,"")+" ";if(p)return g;p=0;for(var v;(v=h[p])!=null;p++)if(v)if(q^(v.className&&(" "+v.className+" ").replace(/[\t\n]/g," ").indexOf(g)>=0))l||m.push(v);else if(l)h[p]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()},
CHILD:function(g){if(g[1]==="nth"){var h=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=h[1]+(h[2]||1)-0;g[3]=h[3]-0}g[0]=e++;return g},ATTR:function(g,h,l,m,q,p){h=g[1].replace(/\\/g,"");if(!p&&n.attrMap[h])g[1]=n.attrMap[h];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,h,l,m,q){if(g[1]==="not")if((f.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=k(g[3],null,null,h);else{g=k.filter(g[3],h,l,true^q);l||m.push.apply(m,
g);return false}else if(n.match.POS.test(g[0])||n.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled===true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,h,l){return!!k(l[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)},
text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"===g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}},
setFilters:{first:function(g,h){return h===0},last:function(g,h,l,m){return h===m.length-1},even:function(g,h){return h%2===0},odd:function(g,h){return h%2===1},lt:function(g,h,l){return h<l[3]-0},gt:function(g,h,l){return h>l[3]-0},nth:function(g,h,l){return l[3]-0===h},eq:function(g,h,l){return l[3]-0===h}},filter:{PSEUDO:function(g,h,l,m){var q=h[1],p=n.filters[q];if(p)return p(g,l,h,m);else if(q==="contains")return(g.textContent||g.innerText||a([g])||"").indexOf(h[3])>=0;else if(q==="not"){h=
h[3];l=0;for(m=h.length;l<m;l++)if(h[l]===g)return false;return true}else k.error("Syntax error, unrecognized expression: "+q)},CHILD:function(g,h){var l=h[1],m=g;switch(l){case "only":case "first":for(;m=m.previousSibling;)if(m.nodeType===1)return false;if(l==="first")return true;m=g;case "last":for(;m=m.nextSibling;)if(m.nodeType===1)return false;return true;case "nth":l=h[2];var q=h[3];if(l===1&&q===0)return true;h=h[0];var p=g.parentNode;if(p&&(p.sizcache!==h||!g.nodeIndex)){var v=0;for(m=p.firstChild;m;m=
m.nextSibling)if(m.nodeType===1)m.nodeIndex=++v;p.sizcache=h}g=g.nodeIndex-q;return l===0?g===0:g%l===0&&g/l>=0}},ID:function(g,h){return g.nodeType===1&&g.getAttribute("id")===h},TAG:function(g,h){return h==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===h},CLASS:function(g,h){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(h)>-1},ATTR:function(g,h){var l=h[1];g=n.attrHandle[l]?n.attrHandle[l](g):g[l]!=null?g[l]:g.getAttribute(l);l=g+"";var m=h[2];h=h[4];return g==null?m==="!=":m===
"="?l===h:m==="*="?l.indexOf(h)>=0:m==="~="?(" "+l+" ").indexOf(h)>=0:!h?l&&g!==false:m==="!="?l!==h:m==="^="?l.indexOf(h)===0:m==="$="?l.substr(l.length-h.length)===h:m==="|="?l===h||l.substr(0,h.length+1)===h+"-":false},POS:function(g,h,l,m){var q=n.setFilters[h[2]];if(q)return q(g,l,h,m)}}},r=n.match.POS;for(var u in n.match){n.match[u]=new RegExp(n.match[u].source+/(?![^\[]*\])(?![^\(]*\))/.source);n.leftMatch[u]=new RegExp(/(^(?:.|\r|\n)*?)/.source+n.match[u].source.replace(/\\(\d+)/g,function(g,
h){return"\\"+(h-0+1)}))}var z=function(g,h){g=Array.prototype.slice.call(g,0);if(h){h.push.apply(h,g);return h}return g};try{Array.prototype.slice.call(s.documentElement.childNodes,0)}catch(C){z=function(g,h){h=h||[];if(j.call(g)==="[object Array]")Array.prototype.push.apply(h,g);else if(typeof g.length==="number")for(var l=0,m=g.length;l<m;l++)h.push(g[l]);else for(l=0;g[l];l++)h.push(g[l]);return h}}var B;if(s.documentElement.compareDocumentPosition)B=function(g,h){if(!g.compareDocumentPosition||
!h.compareDocumentPosition){if(g==h)i=true;return g.compareDocumentPosition?-1:1}g=g.compareDocumentPosition(h)&4?-1:g===h?0:1;if(g===0)i=true;return g};else if("sourceIndex"in s.documentElement)B=function(g,h){if(!g.sourceIndex||!h.sourceIndex){if(g==h)i=true;return g.sourceIndex?-1:1}g=g.sourceIndex-h.sourceIndex;if(g===0)i=true;return g};else if(s.createRange)B=function(g,h){if(!g.ownerDocument||!h.ownerDocument){if(g==h)i=true;return g.ownerDocument?-1:1}var l=g.ownerDocument.createRange(),m=
h.ownerDocument.createRange();l.setStart(g,0);l.setEnd(g,0);m.setStart(h,0);m.setEnd(h,0);g=l.compareBoundaryPoints(Range.START_TO_END,m);if(g===0)i=true;return g};(function(){var g=s.createElement("div"),h="script"+(new Date).getTime();g.innerHTML="<a name='"+h+"'/>";var l=s.documentElement;l.insertBefore(g,l.firstChild);if(s.getElementById(h)){n.find.ID=function(m,q,p){if(typeof q.getElementById!=="undefined"&&!p)return(q=q.getElementById(m[1]))?q.id===m[1]||typeof q.getAttributeNode!=="undefined"&&
q.getAttributeNode("id").nodeValue===m[1]?[q]:w:[]};n.filter.ID=function(m,q){var p=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&p&&p.nodeValue===q}}l.removeChild(g);l=g=null})();(function(){var g=s.createElement("div");g.appendChild(s.createComment(""));if(g.getElementsByTagName("*").length>0)n.find.TAG=function(h,l){l=l.getElementsByTagName(h[1]);if(h[1]==="*"){h=[];for(var m=0;l[m];m++)l[m].nodeType===1&&h.push(l[m]);l=h}return l};g.innerHTML="<a href='#'></a>";
if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")n.attrHandle.href=function(h){return h.getAttribute("href",2)};g=null})();s.querySelectorAll&&function(){var g=k,h=s.createElement("div");h.innerHTML="<p class='TEST'></p>";if(!(h.querySelectorAll&&h.querySelectorAll(".TEST").length===0)){k=function(m,q,p,v){q=q||s;if(!v&&q.nodeType===9&&!x(q))try{return z(q.querySelectorAll(m),p)}catch(t){}return g(m,q,p,v)};for(var l in g)k[l]=g[l];h=null}}();
(function(){var g=s.createElement("div");g.innerHTML="<div class='test e'></div><div class='test'></div>";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){n.order.splice(1,0,"CLASS");n.find.CLASS=function(h,l,m){if(typeof l.getElementsByClassName!=="undefined"&&!m)return l.getElementsByClassName(h[1])};g=null}}})();var E=s.compareDocumentPosition?function(g,h){return!!(g.compareDocumentPosition(h)&16)}:
function(g,h){return g!==h&&(g.contains?g.contains(h):true)},x=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false},ga=function(g,h){var l=[],m="",q;for(h=h.nodeType?[h]:h;q=n.match.PSEUDO.exec(g);){m+=q[0];g=g.replace(n.match.PSEUDO,"")}g=n.relative[g]?g+"*":g;q=0;for(var p=h.length;q<p;q++)k(g,h[q],l);return k.filter(m,l)};c.find=k;c.expr=k.selectors;c.expr[":"]=c.expr.filters;c.unique=k.uniqueSort;c.text=a;c.isXMLDoc=x;c.contains=E})();var eb=/Until$/,fb=/^(?:parents|prevUntil|prevAll)/,
gb=/,/;R=Array.prototype.slice;var Ia=function(a,b,d){if(c.isFunction(b))return c.grep(a,function(e,j){return!!b.call(e,j,e)===d});else if(b.nodeType)return c.grep(a,function(e){return e===b===d});else if(typeof b==="string"){var f=c.grep(a,function(e){return e.nodeType===1});if(Ua.test(b))return c.filter(b,f,!d);else b=c.filter(b,f)}return c.grep(a,function(e){return c.inArray(e,b)>=0===d})};c.fn.extend({find:function(a){for(var b=this.pushStack("","find",a),d=0,f=0,e=this.length;f<e;f++){d=b.length;
c.find(a,this[f],b);if(f>0)for(var j=d;j<b.length;j++)for(var i=0;i<d;i++)if(b[i]===b[j]){b.splice(j--,1);break}}return b},has:function(a){var b=c(a);return this.filter(function(){for(var d=0,f=b.length;d<f;d++)if(c.contains(this,b[d]))return true})},not:function(a){return this.pushStack(Ia(this,a,false),"not",a)},filter:function(a){return this.pushStack(Ia(this,a,true),"filter",a)},is:function(a){return!!a&&c.filter(a,this).length>0},closest:function(a,b){if(c.isArray(a)){var d=[],f=this[0],e,j=
{},i;if(f&&a.length){e=0;for(var o=a.length;e<o;e++){i=a[e];j[i]||(j[i]=c.expr.match.POS.test(i)?c(i,b||this.context):i)}for(;f&&f.ownerDocument&&f!==b;){for(i in j){e=j[i];if(e.jquery?e.index(f)>-1:c(f).is(e)){d.push({selector:i,elem:f});delete j[i]}}f=f.parentNode}}return d}var k=c.expr.match.POS.test(a)?c(a,b||this.context):null;return this.map(function(n,r){for(;r&&r.ownerDocument&&r!==b;){if(k?k.index(r)>-1:c(r).is(a))return r;r=r.parentNode}return null})},index:function(a){if(!a||typeof a===
"string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){a=typeof a==="string"?c(a,b||this.context):c.makeArray(a);b=c.merge(this.get(),a);return this.pushStack(qa(a[0])||qa(b[0])?b:c.unique(b))},andSelf:function(){return this.add(this.prevObject)}});c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode",
d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a,2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")?
a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,b){c.fn[a]=function(d,f){var e=c.map(this,b,d);eb.test(a)||(f=d);if(f&&typeof f==="string")e=c.filter(f,e);e=this.length>1?c.unique(e):e;if((this.length>1||gb.test(f))&&fb.test(a))e=e.reverse();return this.pushStack(e,a,R.call(arguments).join(","))}});c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return c.find.matches(a,b)},dir:function(a,b,d){var f=[];for(a=a[b];a&&a.nodeType!==9&&(d===w||a.nodeType!==1||!c(a).is(d));){a.nodeType===
1&&f.push(a);a=a[b]}return f},nth:function(a,b,d){b=b||1;for(var f=0;a;a=a[d])if(a.nodeType===1&&++f===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var Ja=/ jQuery\d+="(?:\d+|null)"/g,V=/^\s+/,Ka=/(<([\w:]+)[^>]*?)\/>/g,hb=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,La=/<([\w:]+)/,ib=/<tbody/i,jb=/<|&#?\w+;/,ta=/<script|<object|<embed|<option|<style/i,ua=/checked\s*(?:[^=]|=\s*.checked.)/i,Ma=function(a,b,d){return hb.test(d)?
a:b+"></"+d+">"},F={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};F.optgroup=F.option;F.tbody=F.tfoot=F.colgroup=F.caption=F.thead;F.th=F.td;if(!c.support.htmlSerialize)F._default=[1,"div<div>","</div>"];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d=
c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==w)return this.empty().append((this[0]&&this[0].ownerDocument||s).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this},
wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})},
prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=c(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,
this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,f;(f=this[d])!=null;d++)if(!a||c.filter(a,[f]).length){if(!b&&f.nodeType===1){c.cleanData(f.getElementsByTagName("*"));c.cleanData([f])}f.parentNode&&f.parentNode.removeChild(f)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild);
return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,f=this.ownerDocument;if(!d){d=f.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(Ja,"").replace(/=([^="'>\s]+\/)>/g,'="$1">').replace(V,"")],f)[0]}else return this.cloneNode(true)});if(a===true){ra(this,b);ra(this.find("*"),b.find("*"))}return b},html:function(a){if(a===w)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(Ja,
""):null;else if(typeof a==="string"&&!ta.test(a)&&(c.support.leadingWhitespace||!V.test(a))&&!F[(La.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Ka,Ma);try{for(var b=0,d=this.length;b<d;b++)if(this[b].nodeType===1){c.cleanData(this[b].getElementsByTagName("*"));this[b].innerHTML=a}}catch(f){this.empty().append(a)}}else c.isFunction(a)?this.each(function(e){var j=c(this),i=j.html();j.empty().append(function(){return a.call(this,e,i)})}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&
this[0].parentNode){if(c.isFunction(a))return this.each(function(b){var d=c(this),f=d.html();d.replaceWith(a.call(this,b,f))});if(typeof a!=="string")a=c(a).detach();return this.each(function(){var b=this.nextSibling,d=this.parentNode;c(this).remove();b?c(b).before(a):c(d).append(a)})}else return this.pushStack(c(c.isFunction(a)?a():a),"replaceWith",a)},detach:function(a){return this.remove(a,true)},domManip:function(a,b,d){function f(u){return c.nodeName(u,"table")?u.getElementsByTagName("tbody")[0]||
u.appendChild(u.ownerDocument.createElement("tbody")):u}var e,j,i=a[0],o=[],k;if(!c.support.checkClone&&arguments.length===3&&typeof i==="string"&&ua.test(i))return this.each(function(){c(this).domManip(a,b,d,true)});if(c.isFunction(i))return this.each(function(u){var z=c(this);a[0]=i.call(this,u,b?z.html():w);z.domManip(a,b,d)});if(this[0]){e=i&&i.parentNode;e=c.support.parentNode&&e&&e.nodeType===11&&e.childNodes.length===this.length?{fragment:e}:sa(a,this,o);k=e.fragment;if(j=k.childNodes.length===
1?(k=k.firstChild):k.firstChild){b=b&&c.nodeName(j,"tr");for(var n=0,r=this.length;n<r;n++)d.call(b?f(this[n],j):this[n],n>0||e.cacheable||this.length>1?k.cloneNode(true):k)}o.length&&c.each(o,Qa)}return this}});c.fragments={};c.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var f=[];d=c(d);var e=this.length===1&&this[0].parentNode;if(e&&e.nodeType===11&&e.childNodes.length===1&&d.length===1){d[b](this[0]);
return this}else{e=0;for(var j=d.length;e<j;e++){var i=(e>0?this.clone(true):this).get();c.fn[b].apply(c(d[e]),i);f=f.concat(i)}return this.pushStack(f,a,d.selector)}}});c.extend({clean:function(a,b,d,f){b=b||s;if(typeof b.createElement==="undefined")b=b.ownerDocument||b[0]&&b[0].ownerDocument||s;for(var e=[],j=0,i;(i=a[j])!=null;j++){if(typeof i==="number")i+="";if(i){if(typeof i==="string"&&!jb.test(i))i=b.createTextNode(i);else if(typeof i==="string"){i=i.replace(Ka,Ma);var o=(La.exec(i)||["",
""])[1].toLowerCase(),k=F[o]||F._default,n=k[0],r=b.createElement("div");for(r.innerHTML=k[1]+i+k[2];n--;)r=r.lastChild;if(!c.support.tbody){n=ib.test(i);o=o==="table"&&!n?r.firstChild&&r.firstChild.childNodes:k[1]==="<table>"&&!n?r.childNodes:[];for(k=o.length-1;k>=0;--k)c.nodeName(o[k],"tbody")&&!o[k].childNodes.length&&o[k].parentNode.removeChild(o[k])}!c.support.leadingWhitespace&&V.test(i)&&r.insertBefore(b.createTextNode(V.exec(i)[0]),r.firstChild);i=r.childNodes}if(i.nodeType)e.push(i);else e=
c.merge(e,i)}}if(d)for(j=0;e[j];j++)if(f&&c.nodeName(e[j],"script")&&(!e[j].type||e[j].type.toLowerCase()==="text/javascript"))f.push(e[j].parentNode?e[j].parentNode.removeChild(e[j]):e[j]);else{e[j].nodeType===1&&e.splice.apply(e,[j+1,0].concat(c.makeArray(e[j].getElementsByTagName("script"))));d.appendChild(e[j])}return e},cleanData:function(a){for(var b,d,f=c.cache,e=c.event.special,j=c.support.deleteExpando,i=0,o;(o=a[i])!=null;i++)if(d=o[c.expando]){b=f[d];if(b.events)for(var k in b.events)e[k]?
c.event.remove(o,k):Ca(o,k,b.handle);if(j)delete o[c.expando];else o.removeAttribute&&o.removeAttribute(c.expando);delete f[d]}}});var kb=/z-?index|font-?weight|opacity|zoom|line-?height/i,Na=/alpha\([^)]*\)/,Oa=/opacity=([^)]*)/,ha=/float/i,ia=/-([a-z])/ig,lb=/([A-Z])/g,mb=/^-?\d+(?:px)?$/i,nb=/^-?\d/,ob={position:"absolute",visibility:"hidden",display:"block"},pb=["Left","Right"],qb=["Top","Bottom"],rb=s.defaultView&&s.defaultView.getComputedStyle,Pa=c.support.cssFloat?"cssFloat":"styleFloat",ja=
function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){return X(this,a,b,true,function(d,f,e){if(e===w)return c.curCSS(d,f);if(typeof e==="number"&&!kb.test(f))e+="px";c.style(d,f,e)})};c.extend({style:function(a,b,d){if(!a||a.nodeType===3||a.nodeType===8)return w;if((b==="width"||b==="height")&&parseFloat(d)<0)d=w;var f=a.style||a,e=d!==w;if(!c.support.opacity&&b==="opacity"){if(e){f.zoom=1;b=parseInt(d,10)+""==="NaN"?"":"alpha(opacity="+d*100+")";a=f.filter||c.curCSS(a,"filter")||"";f.filter=
Na.test(a)?a.replace(Na,b):b}return f.filter&&f.filter.indexOf("opacity=")>=0?parseFloat(Oa.exec(f.filter)[1])/100+"":""}if(ha.test(b))b=Pa;b=b.replace(ia,ja);if(e)f[b]=d;return f[b]},css:function(a,b,d,f){if(b==="width"||b==="height"){var e,j=b==="width"?pb:qb;function i(){e=b==="width"?a.offsetWidth:a.offsetHeight;f!=="border"&&c.each(j,function(){f||(e-=parseFloat(c.curCSS(a,"padding"+this,true))||0);if(f==="margin")e+=parseFloat(c.curCSS(a,"margin"+this,true))||0;else e-=parseFloat(c.curCSS(a,
"border"+this+"Width",true))||0})}a.offsetWidth!==0?i():c.swap(a,ob,i);return Math.max(0,Math.round(e))}return c.curCSS(a,b,d)},curCSS:function(a,b,d){var f,e=a.style;if(!c.support.opacity&&b==="opacity"&&a.currentStyle){f=Oa.test(a.currentStyle.filter||"")?parseFloat(RegExp.$1)/100+"":"";return f===""?"1":f}if(ha.test(b))b=Pa;if(!d&&e&&e[b])f=e[b];else if(rb){if(ha.test(b))b="float";b=b.replace(lb,"-$1").toLowerCase();e=a.ownerDocument.defaultView;if(!e)return null;if(a=e.getComputedStyle(a,null))f=
a.getPropertyValue(b);if(b==="opacity"&&f==="")f="1"}else if(a.currentStyle){d=b.replace(ia,ja);f=a.currentStyle[b]||a.currentStyle[d];if(!mb.test(f)&&nb.test(f)){b=e.left;var j=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;e.left=d==="fontSize"?"1em":f||0;f=e.pixelLeft+"px";e.left=b;a.runtimeStyle.left=j}}return f},swap:function(a,b,d){var f={};for(var e in b){f[e]=a.style[e];a.style[e]=b[e]}d.call(a);for(e in b)a.style[e]=f[e]}});if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b=
a.offsetWidth,d=a.offsetHeight,f=a.nodeName.toLowerCase()==="tr";return b===0&&d===0&&!f?true:b>0&&d>0&&!f?false:c.curCSS(a,"display")==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var sb=J(),tb=/<script(.|\s)*?\/script>/gi,ub=/select|textarea/i,vb=/color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,N=/=\?(&|$)/,ka=/\?/,wb=/(\?|&)_=.*?(&|$)/,xb=/^(\w+:)?\/\/([^\/?#]+)/,yb=/%20/g,zb=c.fn.load;c.fn.extend({load:function(a,b,d){if(typeof a!==
"string")return zb.call(this,a);else if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var e=a.slice(f,a.length);a=a.slice(0,f)}f="GET";if(b)if(c.isFunction(b)){d=b;b=null}else if(typeof b==="object"){b=c.param(b,c.ajaxSettings.traditional);f="POST"}var j=this;c.ajax({url:a,type:f,dataType:"html",data:b,complete:function(i,o){if(o==="success"||o==="notmodified")j.html(e?c("<div />").append(i.responseText.replace(tb,"")).find(e):i.responseText);d&&j.each(d,[i.responseText,o,i])}});return this},
serialize:function(){return c.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?c.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ub.test(this.nodeName)||vb.test(this.type))}).map(function(a,b){a=c(this).val();return a==null?null:c.isArray(a)?c.map(a,function(d){return{name:b.name,value:d}}):{name:b.name,value:a}}).get()}});c.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),
function(a,b){c.fn[b]=function(d){return this.bind(b,d)}});c.extend({get:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b=null}return c.ajax({type:"GET",url:a,data:b,success:d,dataType:f})},getScript:function(a,b){return c.get(a,null,b,"script")},getJSON:function(a,b,d){return c.get(a,b,d,"json")},post:function(a,b,d,f){if(c.isFunction(b)){f=f||d;d=b;b={}}return c.ajax({type:"POST",url:a,data:b,success:d,dataType:f})},ajaxSetup:function(a){c.extend(c.ajaxSettings,a)},ajaxSettings:{url:location.href,
global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:A.XMLHttpRequest&&(A.location.protocol!=="file:"||!A.ActiveXObject)?function(){return new A.XMLHttpRequest}:function(){try{return new A.ActiveXObject("Microsoft.XMLHTTP")}catch(a){}},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:{},ajax:function(a){function b(){e.success&&
e.success.call(k,o,i,x);e.global&&f("ajaxSuccess",[x,e])}function d(){e.complete&&e.complete.call(k,x,i);e.global&&f("ajaxComplete",[x,e]);e.global&&!--c.active&&c.event.trigger("ajaxStop")}function f(q,p){(e.context?c(e.context):c.event).trigger(q,p)}var e=c.extend(true,{},c.ajaxSettings,a),j,i,o,k=a&&a.context||e,n=e.type.toUpperCase();if(e.data&&e.processData&&typeof e.data!=="string")e.data=c.param(e.data,e.traditional);if(e.dataType==="jsonp"){if(n==="GET")N.test(e.url)||(e.url+=(ka.test(e.url)?
"&":"?")+(e.jsonp||"callback")+"=?");else if(!e.data||!N.test(e.data))e.data=(e.data?e.data+"&":"")+(e.jsonp||"callback")+"=?";e.dataType="json"}if(e.dataType==="json"&&(e.data&&N.test(e.data)||N.test(e.url))){j=e.jsonpCallback||"jsonp"+sb++;if(e.data)e.data=(e.data+"").replace(N,"="+j+"$1");e.url=e.url.replace(N,"="+j+"$1");e.dataType="script";A[j]=A[j]||function(q){o=q;b();d();A[j]=w;try{delete A[j]}catch(p){}z&&z.removeChild(C)}}if(e.dataType==="script"&&e.cache===null)e.cache=false;if(e.cache===
false&&n==="GET"){var r=J(),u=e.url.replace(wb,"$1_="+r+"$2");e.url=u+(u===e.url?(ka.test(e.url)?"&":"?")+"_="+r:"")}if(e.data&&n==="GET")e.url+=(ka.test(e.url)?"&":"?")+e.data;e.global&&!c.active++&&c.event.trigger("ajaxStart");r=(r=xb.exec(e.url))&&(r[1]&&r[1]!==location.protocol||r[2]!==location.host);if(e.dataType==="script"&&n==="GET"&&r){var z=s.getElementsByTagName("head")[0]||s.documentElement,C=s.createElement("script");C.src=e.url;if(e.scriptCharset)C.charset=e.scriptCharset;if(!j){var B=
false;C.onload=C.onreadystatechange=function(){if(!B&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){B=true;b();d();C.onload=C.onreadystatechange=null;z&&C.parentNode&&z.removeChild(C)}}}z.insertBefore(C,z.firstChild);return w}var E=false,x=e.xhr();if(x){e.username?x.open(n,e.url,e.async,e.username,e.password):x.open(n,e.url,e.async);try{if(e.data||a&&a.contentType)x.setRequestHeader("Content-Type",e.contentType);if(e.ifModified){c.lastModified[e.url]&&x.setRequestHeader("If-Modified-Since",
c.lastModified[e.url]);c.etag[e.url]&&x.setRequestHeader("If-None-Match",c.etag[e.url])}r||x.setRequestHeader("X-Requested-With","XMLHttpRequest");x.setRequestHeader("Accept",e.dataType&&e.accepts[e.dataType]?e.accepts[e.dataType]+", */*":e.accepts._default)}catch(ga){}if(e.beforeSend&&e.beforeSend.call(k,x,e)===false){e.global&&!--c.active&&c.event.trigger("ajaxStop");x.abort();return false}e.global&&f("ajaxSend",[x,e]);var g=x.onreadystatechange=function(q){if(!x||x.readyState===0||q==="abort"){E||
d();E=true;if(x)x.onreadystatechange=c.noop}else if(!E&&x&&(x.readyState===4||q==="timeout")){E=true;x.onreadystatechange=c.noop;i=q==="timeout"?"timeout":!c.httpSuccess(x)?"error":e.ifModified&&c.httpNotModified(x,e.url)?"notmodified":"success";var p;if(i==="success")try{o=c.httpData(x,e.dataType,e)}catch(v){i="parsererror";p=v}if(i==="success"||i==="notmodified")j||b();else c.handleError(e,x,i,p);d();q==="timeout"&&x.abort();if(e.async)x=null}};try{var h=x.abort;x.abort=function(){x&&h.call(x);
g("abort")}}catch(l){}e.async&&e.timeout>0&&setTimeout(function(){x&&!E&&g("timeout")},e.timeout);try{x.send(n==="POST"||n==="PUT"||n==="DELETE"?e.data:null)}catch(m){c.handleError(e,x,null,m);d()}e.async||g();return x}},handleError:function(a,b,d,f){if(a.error)a.error.call(a.context||a,b,d,f);if(a.global)(a.context?c(a.context):c.event).trigger("ajaxError",[b,a,f])},active:0,httpSuccess:function(a){try{return!a.status&&location.protocol==="file:"||a.status>=200&&a.status<300||a.status===304||a.status===
1223||a.status===0}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"),f=a.getResponseHeader("Etag");if(d)c.lastModified[b]=d;if(f)c.etag[b]=f;return a.status===304||a.status===0},httpData:function(a,b,d){var f=a.getResponseHeader("content-type")||"",e=b==="xml"||!b&&f.indexOf("xml")>=0;a=e?a.responseXML:a.responseText;e&&a.documentElement.nodeName==="parsererror"&&c.error("parsererror");if(d&&d.dataFilter)a=d.dataFilter(a,b);if(typeof a==="string")if(b===
"json"||!b&&f.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&f.indexOf("javascript")>=0)c.globalEval(a);return a},param:function(a,b){function d(i,o){if(c.isArray(o))c.each(o,function(k,n){b||/\[\]$/.test(i)?f(i,n):d(i+"["+(typeof n==="object"||c.isArray(n)?k:"")+"]",n)});else!b&&o!=null&&typeof o==="object"?c.each(o,function(k,n){d(i+"["+k+"]",n)}):f(i,o)}function f(i,o){o=c.isFunction(o)?o():o;e[e.length]=encodeURIComponent(i)+"="+encodeURIComponent(o)}var e=[];if(b===w)b=c.ajaxSettings.traditional;
if(c.isArray(a)||a.jquery)c.each(a,function(){f(this.name,this.value)});else for(var j in a)d(j,a[j]);return e.join("&").replace(yb,"+")}});var la={},Ab=/toggle|show|hide/,Bb=/^([+-]=)?([\d+-.]+)(.*)$/,W,va=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];c.fn.extend({show:function(a,b){if(a||a===0)return this.animate(K("show",3),a,b);else{a=0;for(b=this.length;a<b;a++){var d=c.data(this[a],"olddisplay");
this[a].style.display=d||"";if(c.css(this[a],"display")==="none"){d=this[a].nodeName;var f;if(la[d])f=la[d];else{var e=c("<"+d+" />").appendTo("body");f=e.css("display");if(f==="none")f="block";e.remove();la[d]=f}c.data(this[a],"olddisplay",f)}}a=0;for(b=this.length;a<b;a++)this[a].style.display=c.data(this[a],"olddisplay")||"";return this}},hide:function(a,b){if(a||a===0)return this.animate(K("hide",3),a,b);else{a=0;for(b=this.length;a<b;a++){var d=c.data(this[a],"olddisplay");!d&&d!=="none"&&c.data(this[a],
"olddisplay",c.css(this[a],"display"))}a=0;for(b=this.length;a<b;a++)this[a].style.display="none";return this}},_toggle:c.fn.toggle,toggle:function(a,b){var d=typeof a==="boolean";if(c.isFunction(a)&&c.isFunction(b))this._toggle.apply(this,arguments);else a==null||d?this.each(function(){var f=d?a:c(this).is(":hidden");c(this)[f?"show":"hide"]()}):this.animate(K("toggle",3),a,b);return this},fadeTo:function(a,b,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,d)},
animate:function(a,b,d,f){var e=c.speed(b,d,f);if(c.isEmptyObject(a))return this.each(e.complete);return this[e.queue===false?"each":"queue"](function(){var j=c.extend({},e),i,o=this.nodeType===1&&c(this).is(":hidden"),k=this;for(i in a){var n=i.replace(ia,ja);if(i!==n){a[n]=a[i];delete a[i];i=n}if(a[i]==="hide"&&o||a[i]==="show"&&!o)return j.complete.call(this);if((i==="height"||i==="width")&&this.style){j.display=c.css(this,"display");j.overflow=this.style.overflow}if(c.isArray(a[i])){(j.specialEasing=
j.specialEasing||{})[i]=a[i][1];a[i]=a[i][0]}}if(j.overflow!=null)this.style.overflow="hidden";j.curAnim=c.extend({},a);c.each(a,function(r,u){var z=new c.fx(k,j,r);if(Ab.test(u))z[u==="toggle"?o?"show":"hide":u](a);else{var C=Bb.exec(u),B=z.cur(true)||0;if(C){u=parseFloat(C[2]);var E=C[3]||"px";if(E!=="px"){k.style[r]=(u||1)+E;B=(u||1)/z.cur(true)*B;k.style[r]=B+E}if(C[1])u=(C[1]==="-="?-1:1)*u+B;z.custom(B,u,E)}else z.custom(B,u,"")}});return true})},stop:function(a,b){var d=c.timers;a&&this.queue([]);
this.each(function(){for(var f=d.length-1;f>=0;f--)if(d[f].elem===this){b&&d[f](true);d.splice(f,1)}});b||this.dequeue();return this}});c.each({slideDown:K("show",1),slideUp:K("hide",1),slideToggle:K("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(a,b){c.fn[a]=function(d,f){return this.animate(b,d,f)}});c.extend({speed:function(a,b,d){var f=a&&typeof a==="object"?a:{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,easing:d&&b||b&&!c.isFunction(b)&&b};f.duration=c.fx.off?0:typeof f.duration===
"number"?f.duration:c.fx.speeds[f.duration]||c.fx.speeds._default;f.old=f.complete;f.complete=function(){f.queue!==false&&c(this).dequeue();c.isFunction(f.old)&&f.old.call(this)};return f},easing:{linear:function(a,b,d,f){return d+f*a},swing:function(a,b,d,f){return(-Math.cos(a*Math.PI)/2+0.5)*f+d}},timers:[],fx:function(a,b,d){this.options=b;this.elem=a;this.prop=d;if(!b.orig)b.orig={}}});c.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this);(c.fx.step[this.prop]||
c.fx.step._default)(this);if((this.prop==="height"||this.prop==="width")&&this.elem.style)this.elem.style.display="block"},cur:function(a){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];return(a=parseFloat(c.css(this.elem,this.prop,a)))&&a>-10000?a:parseFloat(c.curCSS(this.elem,this.prop))||0},custom:function(a,b,d){function f(j){return e.step(j)}this.startTime=J();this.start=a;this.end=b;this.unit=d||this.unit||"px";this.now=this.start;
this.pos=this.state=0;var e=this;f.elem=this.elem;if(f()&&c.timers.push(f)&&!W)W=setInterval(c.fx.tick,13)},show:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());c(this.elem).show()},hide:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(a){var b=J(),d=true;if(a||b>=this.options.duration+this.startTime){this.now=
this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var f in this.options.curAnim)if(this.options.curAnim[f]!==true)d=false;if(d){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;a=c.data(this.elem,"olddisplay");this.elem.style.display=a?a:this.options.display;if(c.css(this.elem,"display")==="none")this.elem.style.display="block"}this.options.hide&&c(this.elem).hide();if(this.options.hide||this.options.show)for(var e in this.options.curAnim)c.style(this.elem,
e,this.options.orig[e]);this.options.complete.call(this.elem)}return false}else{e=b-this.startTime;this.state=e/this.options.duration;a=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||a](this.state,e,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a=c.timers,b=0;b<a.length;b++)a[b]()||a.splice(b--,1);a.length||
c.fx.stop()},stop:function(){clearInterval(W);W=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){c.style(a.elem,"opacity",a.now)},_default:function(a){if(a.elem.style&&a.elem.style[a.prop]!=null)a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit;else a.elem[a.prop]=a.now}}});if(c.expr&&c.expr.filters)c.expr.filters.animated=function(a){return c.grep(c.timers,function(b){return a===b.elem}).length};c.fn.offset="getBoundingClientRect"in s.documentElement?
function(a){var b=this[0];if(a)return this.each(function(e){c.offset.setOffset(this,a,e)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);var d=b.getBoundingClientRect(),f=b.ownerDocument;b=f.body;f=f.documentElement;return{top:d.top+(self.pageYOffset||c.support.boxModel&&f.scrollTop||b.scrollTop)-(f.clientTop||b.clientTop||0),left:d.left+(self.pageXOffset||c.support.boxModel&&f.scrollLeft||b.scrollLeft)-(f.clientLeft||b.clientLeft||0)}}:function(a){var b=
this[0];if(a)return this.each(function(r){c.offset.setOffset(this,a,r)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);c.offset.initialize();var d=b.offsetParent,f=b,e=b.ownerDocument,j,i=e.documentElement,o=e.body;f=(e=e.defaultView)?e.getComputedStyle(b,null):b.currentStyle;for(var k=b.offsetTop,n=b.offsetLeft;(b=b.parentNode)&&b!==o&&b!==i;){if(c.offset.supportsFixedPosition&&f.position==="fixed")break;j=e?e.getComputedStyle(b,null):b.currentStyle;
k-=b.scrollTop;n-=b.scrollLeft;if(b===d){k+=b.offsetTop;n+=b.offsetLeft;if(c.offset.doesNotAddBorder&&!(c.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(b.nodeName))){k+=parseFloat(j.borderTopWidth)||0;n+=parseFloat(j.borderLeftWidth)||0}f=d;d=b.offsetParent}if(c.offset.subtractsBorderForOverflowNotVisible&&j.overflow!=="visible"){k+=parseFloat(j.borderTopWidth)||0;n+=parseFloat(j.borderLeftWidth)||0}f=j}if(f.position==="relative"||f.position==="static"){k+=o.offsetTop;n+=o.offsetLeft}if(c.offset.supportsFixedPosition&&
f.position==="fixed"){k+=Math.max(i.scrollTop,o.scrollTop);n+=Math.max(i.scrollLeft,o.scrollLeft)}return{top:k,left:n}};c.offset={initialize:function(){var a=s.body,b=s.createElement("div"),d,f,e,j=parseFloat(c.curCSS(a,"marginTop",true))||0;c.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"});b.innerHTML="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";
a.insertBefore(b,a.firstChild);d=b.firstChild;f=d.firstChild;e=d.nextSibling.firstChild.firstChild;this.doesNotAddBorder=f.offsetTop!==5;this.doesAddBorderForTableAndCells=e.offsetTop===5;f.style.position="fixed";f.style.top="20px";this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15;f.style.position=f.style.top="";d.style.overflow="hidden";d.style.position="relative";this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5;this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==j;a.removeChild(b);
c.offset.initialize=c.noop},bodyOffset:function(a){var b=a.offsetTop,d=a.offsetLeft;c.offset.initialize();if(c.offset.doesNotIncludeMarginInBodyOffset){b+=parseFloat(c.curCSS(a,"marginTop",true))||0;d+=parseFloat(c.curCSS(a,"marginLeft",true))||0}return{top:b,left:d}},setOffset:function(a,b,d){if(/static/.test(c.curCSS(a,"position")))a.style.position="relative";var f=c(a),e=f.offset(),j=parseInt(c.curCSS(a,"top",true),10)||0,i=parseInt(c.curCSS(a,"left",true),10)||0;if(c.isFunction(b))b=b.call(a,
d,e);d={top:b.top-e.top+j,left:b.left-e.left+i};"using"in b?b.using.call(a,d):f.css(d)}};c.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),d=this.offset(),f=/^body|html$/i.test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=parseFloat(c.curCSS(a,"marginTop",true))||0;d.left-=parseFloat(c.curCSS(a,"marginLeft",true))||0;f.top+=parseFloat(c.curCSS(b[0],"borderTopWidth",true))||0;f.left+=parseFloat(c.curCSS(b[0],"borderLeftWidth",true))||0;return{top:d.top-
f.top,left:d.left-f.left}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||s.body;a&&!/^body|html$/i.test(a.nodeName)&&c.css(a,"position")==="static";)a=a.offsetParent;return a})}});c.each(["Left","Top"],function(a,b){var d="scroll"+b;c.fn[d]=function(f){var e=this[0],j;if(!e)return null;if(f!==w)return this.each(function(){if(j=wa(this))j.scrollTo(!a?f:c(j).scrollLeft(),a?f:c(j).scrollTop());else this[d]=f});else return(j=wa(e))?"pageXOffset"in j?j[a?"pageYOffset":
"pageXOffset"]:c.support.boxModel&&j.document.documentElement[d]||j.document.body[d]:e[d]}});c.each(["Height","Width"],function(a,b){var d=b.toLowerCase();c.fn["inner"+b]=function(){return this[0]?c.css(this[0],d,false,"padding"):null};c.fn["outer"+b]=function(f){return this[0]?c.css(this[0],d,false,f?"margin":"border"):null};c.fn[d]=function(f){var e=this[0];if(!e)return f==null?null:this;if(c.isFunction(f))return this.each(function(j){var i=c(this);i[d](f.call(this,j,i[d]()))});return"scrollTo"in
e&&e.document?e.document.compatMode==="CSS1Compat"&&e.document.documentElement["client"+b]||e.document.body["client"+b]:e.nodeType===9?Math.max(e.documentElement["client"+b],e.body["scroll"+b],e.documentElement["scroll"+b],e.body["offset"+b],e.documentElement["offset"+b]):f===w?c.css(e,d):this.css(d,typeof f==="string"?f:f+"px")}});A.jQuery=A.$=c})(window);

function emailThisPage(rUrl) {
    var target = document.location;

  	var win = window.open(''+rUrl+'/email_with_us.htm?sendurl=' + target, 'notice', 'width=600,height=560,location=no,toolbar=no,status=no,resizable=no,scrollbars=yes');
  	win.focus();
}

function addToFavorite(){
	
	var titleVar = document.title;
	
	var urlVar = document.location;
	
	// firefox
	if (window.sidebar) {
		
		window.sidebar.addPanel(titleVar, urlVar, "");
	}
	// opera
	else if(window.opera && window.print) { 
		var elem = document.createElement('a');
		elem.setAttribute('href',urlVar);
		elem.setAttribute('title',titleVar);
		elem.setAttribute('rel','sidebar');
		elem.click();
	} 
	// ie
	else  {
		window.external.AddFavorite(urlVar,titleVar)
	}	

}


function firefoxAlert(pageurl) {
	
	if(navigator.appName=="Microsoft Internet Explorer") {
		
		pageurl.style.behavior='url(#default#homepage)';pageurl.setHomePage('http://www.exportersindia.com');
	}
	else {
		alert('To set ExportersIndia.com as your home page in Firefox, click and drag the button to the "Home" icon in your browser.');
	}
	return false;
}
function openWindow(src) {
	
	window.open(src,"mywindow","menubar=0,resizable=1,width=500,height=400")
}
function openwin(file,Iwidth,Iheight) {
   var newWin1=window.open(file,'nWin1','x=0,y=0,toolbar=no,location=no,directories=no,status=yes,scrollbars=yes, copyhistory=no,width=400,height=300,screenX=0,screenY=0,left=20,top=20');
}
function openwin1(file,Iwidth,Iheight) {
      var newWin1=window.open(file,'nWin2','x=0,y=0,toolbar=no,location=no,directories=no,status=yes,scrollbars=yes, copyhistory=no,width='+Iwidth+',height='+Iheight+',screenX=0,screenY=0,left=20,top=20');
}
function openwin2(file,Iwidth,Iheight) {
      var newWin1=window.open(file,'nWin3','x=0,y=0,toolbar=no,location=no,directories=no,status=yes,scrollbars=yes, copyhistory=no,width=560,height=500,screenX=0,screenY=0,left=20,top=20');
}
function openwin3(file,Iwidth,Iheight) {
      var newWin1=window.open(file,'nWin5','x=0,y=0,toolbar=no, menubar=yes, location=no, directories=no,status=yes,scrollbars=yes, copyhistory=no,width='+Iwidth+',height='+Iheight+',screenX=0,screenY=0,left=20,top=20');
}
function openwin4(file,Iwidth,Iheight) {
      var newWin1=window.open(file,'nWin4','x=0,y=0,toolbar=no,location=no,directories=no,status=yes,scrollbars=yes, copyhistory=no,width='+Iwidth+',height='+Iheight+',screenX=0,screenY=0,left=20,top=20');
}
function openwin5(nm,keyword,bus_type,product_category) {
	var pop = '';
	var name=nm;
    if (pop && !pop.closed) {
         pop.close();
    }
    var key1  = ",";
    var newStr = keyword.replace(/ /gi, key1)
    pop=eval("window.open('"+name+"&keyword="+newStr+"&bus_type="+bus_type+"&product_category="+product_category+"','NewWIN','chrome[4],toolbar=no,left=10,top=5,width=600,height=450,directories=no,menubar=no,SCROLLBARS=yes')");
    if (!pop.opener) popUpWin.opener = self;
}

function multiple_openwin (file,Iwidth,Iheight,popup_name) {

  var newWin = open(file, popup_name, 'x=0,y=0,toolbar=no,location=no,directories=no,status=no,scrollbars=yes, copyhistory=no,width='+Iwidth+',height='+Iheight+',screenX=0,screenY=0,left=20,top=20');
  
  newWin.focus();
  
} 

function chktrim(inputString) {
	if (typeof inputString != "string") { 
		return inputString; 
	}
    var retValue = inputString;
    var ch = retValue.substring(0, 1);
    while (ch == " ") { 
    	retValue = retValue.substring(1, retValue.length);
        ch = retValue.substring(0, 1);
    } 
    ch = retValue.substring(retValue.length-1, retValue.length);
	while (ch == " ") { 
    	retValue = retValue.substring(0, retValue.length-1);
        ch = retValue.substring(retValue.length-1, retValue.length);
	}
    while (retValue.indexOf("  ") != -1) { 
    	retValue = retValue.substring(0, retValue.indexOf("  ")) + retValue.substring(retValue.indexOf("  ")+1, retValue.length); // Again, there are two spaces in each of the strings
	}
    return retValue; 
}

//used in /testimonoals.htm
var ei={ // var ei starts
	hideShow:function(hide,show){
		for(i=0; i<hide.length; i++){
			$(document.getElementById(hide[i])).slideUp('slow');
		}
		
		for(i=0; i<show.length; i++){
			$(document.getElementById(show[i])).slideDown('slow');
		}
	}
}
//code below by abhay
function offsetLimit(chk1) {
    if ((Math.floor(chk1.pageno.value)>Math.floor(chk1.maxpage.value) || Math.floor(chk1.pageno.value)<1)  || isNaN(chk1.pageno.value)) {
	    alert("Your Page No should be 1 to  "+chk1.maxpage.value);
	    chk1.pageno.focus()
	    return false;
	}
}


function chk_charlen(var1, var2) {
	
	box1 = eval('document.' + var1 + '.' + var2)
	box2 = eval('document.' + var1);
	
	box2.char_len.value=box1.value.length;
}

function chk_charlen1(var1, var2) {
	
	box1 = eval('document.' + var1 + '.' + var2)
	box2 = eval('document.' + var1);
	box2.char_len1.value=box1.value.length;
}

function valid(chk) {
	if (chk.username.value.length == 0) {
		alert("E-mail address can't be left blank");
		chk.username.focus();
	    return false;
	}
   	if (chk.username.value.indexOf('@') == -1) {
		alert("Error in e-mail address");
	    chk.username.focus();
	    return false;
	}
	if (chk.username.value.indexOf('.') == -1) {
		alert("Error in e-mail address");
	    chk.username.focus();
	    return false;
	}
	if (chk.username.value.indexOf('@') != chk.username.value.lastIndexOf('@')) {
		alert("Please Specify One E-mail address only");
	    chk.username.focus();
	    return false;
	}
	 return true;
}
function isProhibited(obj){  //function to validate indiamart,india mart,alibaba,ali baba,tradeindia,trade-india in your name,company name etc field in search and join now pages.somesh
	var objval=obj.value;
	//invalidstr=new Array("indiamart","india mart", "alibaba","ali baba","tradeindia", "trade-india" ,"nissi");
	invalidstr=new Array("indiamart","india mart", "alibaba","ali baba","tradeindia", "trade-india");
	for(i=0;i<invalidstr.length;i++){
		if (chktrim(objval).toLowerCase().indexOf(chktrim(invalidstr[i]).toLowerCase())>=0){	
			alert("Please use Email ID other than "+invalidstr[i]+".") 
			obj.focus();
			return true;		
		}
	}
	return false;
}//end of isProhibited()
function isValid(obj){ //function to validate hotmail,gmail etc in your name,company name etc field in search and join now pages.somesh
	var objval=obj.value;
    invalidstr = new Array("hotmail", "gmail", "indiatimes", "rediffmail", "yahoo", ".com", ".net",".org", ".co.in", ".co.cn", ".co.ca", ".gov", ".co.uk");
		 		
	for(i=0;i<invalidstr.length;i++){
		if (chktrim(objval).toLowerCase().indexOf(chktrim(invalidstr[i]).toLowerCase())>=0){	
			alert("Please don't use "+invalidstr[i]+".") 
			obj.focus();
			return false;		
		}
	}
	return true;
}//end of isValid


function site_url(slno, url) {
	
  popupWin = window.open(''+url+'/redirect.php?slno='+slno+'', 'newwin', 'menubar=yes,toolbar=yes,location=yes,directories=yes,titlebar=yes,status=yes,scrollbars=yes,resizable=yes');
}

function chk2() {	
	
	document.joinForm.char_len.value=document.joinForm.product_desc.value.length;
	
    if (document.joinForm.product_desc.value.length>350) {
	    
    	alert("your text exceed 350 characters");
        document.joinForm.product_desc.focus();
        return false;
	}
}


//this is used count down in textarea length
function textCounter(maxlimit) {	
	
	document.joinowfrm.product_desc.value = document.joinowfrm.product_desc.value.substring(0, maxlimit);
	
	document.joinowfrm.char_len.value = maxlimit - document.joinowfrm.product_desc.value.length;
}

function isNumberKey(evt) {

	var charCode = (evt.which) ? evt.which : event.keyCode;
	
	if (charCode!=46) {
		
		if (charCode > 31 && (charCode < 48 || charCode > 57)) {
			return false;
		}
		else {
			return true;
		}
	}
}

//this is used count down in textarea length for multiple text
function validate_chars_left(objValue, maxlimit, txtid) {
	
	var chars=document.getElementById(txtid);
	
	var len=parseInt((objValue).length);
	
	if (len>0 || len==0) {
		
		chars.innerHTML=maxlimit-parseInt(len);
	}
	else {
		
		chars.innerHTML=maxlimit;
	}
}
function validateTextCounterExt(field_id,length_field_id,maxlimit) {	
	
	document.getElementById(field_id).value = document.getElementById(field_id).value.substring(0, maxlimit);
	
	document.getElementById(length_field_id).value = maxlimit - document.getElementById(field_id).value.length;
}

function show_vtrust(mi, url) {
	
	popupWin = window.open(''+url+'popup/popup-trustcode.php?mi='+mi+'', 'newwin', 'toolbar=no,directories=no,scrollbars=yes,resizable=0,status=no,menubar=0,width=560,height=500');		
}

function show_url(var1, site_ty) {
	
	if (site_ty=="live") {
		
  		popupWin = window.open('http://www.exportersindia.com/members/show-url.php?id=wwwicon&member_id='+var1+'', 'newwin', 'menubar=yes,toolbar=yes,location=yes,directories=yes,titlebar=yes,status=yes,scrollbars=yes,resizable=yes');
	}
	else if (site_ty=="live1") {
		
  		popupWin = window.open('http://66.36.253.143/members/show-url.php?id=wwwicon&member_id='+var1+'', 'newwin', 'menubar=yes,toolbar=yes,location=yes,directories=yes,titlebar=yes,status=yes,scrollbars=yes,resizable=yes');
	}	
	else {
		
  		popupWin = window.open('http://192.168.1.106/members/show-url.php?id=wwwicon&member_id='+var1+'', 'newwin', 'menubar=yes,toolbar=yes,location=yes,directories=yes,titlebar=yes,status=yes,scrollbars=yes,resizable=yes');		
	}
}// Below function Is for Form validation For all Enquiry Form running at Services

function validate(id1) {
	
	if (id1.call_req.value=="yes") {
		
		if (chktrim(id1.your_name.value).length==0) {
				
	    	alert("Please Enter Your Name");
	        id1.your_name.focus();
	        return false;
		}
		
		var validate_name =/^([a-zA-Z. ])+$/;
			
		var yourname = id1.your_name.value;
		
   		if(validate_name.test(yourname)==false) {
 
      		alert('Enter a Valid Name');
      		id1.your_name.focus();
      		return false;
   		}
   		
   		if(id1.ph_number.value=="Phone No." && id1.mobile_phone.value=="Mobile No.") {
					
			alert('Please Enter Your Phone / Mobile Number(s).');
			id1.ph_number.focus();
	     	return false;
		}
		
		if(id1.ph_number.value!="Phone No.") {
								
			if (chktrim(id1.ph_number.value)=="Phone No.") {
	   
			   alert("Please Enter Phone Number");
			   id1.ph_number.focus();
			   return false;
		    }
		    
		    if ((id1.ph_number.value.length>8 || id1.ph_number.value.length<5) && id1.country.value=="IN^91") {
	   
			   //alert("Please Enter Valid Phone Number");
			   alert("Phone Number Should be 5 to 8 Digits.");
			   id1.ph_number.focus();
			   return false;
		    }
		    
		    if ((id1.ph_number.value.length>10 || id1.ph_number.value.length<5) && id1.country.value!="IN^91") {
			   
			   //alert("Please Enter Valid Phone Number");
			   alert("Phone Number Should be 5 to 10 Digits.");
			   id1.ph_number.focus();
			   return false;
		    }
			
		    if (chktrim(id1.ph_acode.value).length==0 || chktrim(id1.ph_acode.value)=='STD') {
		      	
				alert("Please Enter Your STD Code ");
	         	id1.ph_acode.focus();
	         	return false;
	      	}
		    				
			if (chktrim(id1.ph_ccode.value).length==0 || chktrim(id1.ph_ccode.value)=='ISD') {
				
				alert("Please Enter Your ISD Code ");
	         	id1.ph_ccode.focus();
				return false;
	  	    }
		}
		
		if(id1.mobile_phone.value!="Mobile No.") {
		
			if (id1.mobile_phone.value.length<10 && id1.country.value=="IN^91") {
			   
			  // alert("Please Enter Valid Mobile Number");
			  alert("Mobile Number Should be 10 Digits.");
			   id1.mobile_phone.focus();
			   return false;
		   }
		   
		   if ((id1.mobile_phone.value.length<3) && id1.country.value!="IN^91") {
			   
			  // alert("Please Enter Valid Mobile Number");
			   alert("Mobile Number Should be at least 3 Digits.");
			   id1.mobile_phone.focus();
			   return false;
		   }
		}
	}
	else if(id1.call_req.value=="banner"){
		
	 if (id1.query.value.length<10 || id1.query.value.length>500) {
		
    	if (id1.query.value.length>1000){
	    	
	    	alert("Enter your Comments [ maximum 1000 characters ] ");
		}
		else {
			
			alert("Enter your Comments [ minimum 10 characters ] ");
		}
		
       id1.query.focus();
        
        return (false);
	}
		
		
	}
		
	else {
	
		if (id1.newID.value.length==0) {
			
			if (chktrim(id1.your_name.value).length==0) {
				
		    	alert("Please Enter Your Name");
		        id1.your_name.focus();
		        return false;
			}
			
			if (chktrim(id1.comp_name.value).length==0) {
				
		    	alert("Please Enter Company Name");
		        id1.comp_name.focus();
		        return false;
			}
			
			if (chktrim(id1.address.value).length==0) {
				
		    	alert("Please Enter Registered Office Address");
		        id1.address.focus();
		        return false;
			}
			
			if(id1.country.options[id1.country.selectedIndex].value=="x") {
				
				alert("Please Select Your Country");
				id1.country.focus();
				return false;
			}
			
			if ((id1.country.options[id1.country.selectedIndex].value=="IN^91") && (id1.state_code.options[id1.state_code.selectedIndex].value=="x")) {
		     
		    	alert("Please Select Your State Name");
		    	id1.state_code.focus();
		    	return false;
		 	}
		 	
		 	if(id1.ph_number.value=="Phone No." && id1.mobile_phone.value=="Mobile No.") {
					
				alert('Please Enter Your Phone / Mobile Number(s).');
				id1.ph_number.focus();
		     	return false;
			}
			else if(id1.ph_number.value!="Phone No.") {
									
				if (chktrim(id1.ph_number.value)=="Phone No.") {
		   
				   alert("Please Enter Phone Number");
				   id1.ph_number.focus();
				   return false;
			    }
			    
			    if ((id1.ph_number.value.length>8 || id1.ph_number.value.length<5) && id1.country.options[id1.country.selectedIndex].value=="IN^91") {
		   
				   //alert("Please Enter Valid Phone Number");
				   alert("Phone Number Should be 5 to 8 Digits.");
				   id1.ph_number.focus();
				   return false;
			    }
			    
			    if ((id1.ph_number.value.length>10 || id1.ph_number.value.length<5) && id1.country.options[id1.country.selectedIndex].value!="IN^91") {
				   
				   //alert("Please Enter Valid Phone Number");
				   alert("Phone Number Should be 5 to 10 Digits.");
				   id1.ph_number.focus();
				   return false;
			    }
				
			    if (chktrim(id1.ph_acode.value).length==0 || chktrim(id1.ph_acode.value)=='STD') {
			      	
					alert("Please Enter Your STD Code ");
		         	id1.ph_acode.focus();
		         	return false;
		      	}
			    				
				if (chktrim(id1.ph_ccode.value).length==0 || chktrim(id1.ph_ccode.value)=='ISD') {
					
					alert("Please Enter Your ISD Code ");
		         	id1.ph_ccode.focus();
					return false;
		  	    }
			 }
			 
			  //validation for phone 2
			 var ph_number2Exists = document.getElementById('ph_number2').value;
		
			 if (ph_number2Exists) {
			
				if (id1.ph_number2.value=="") {
					   
				   alert("Please Enter Phone Number 2");
				   id1.ph_number2.focus();
				   return false;
			    }
			      
				if ((id1.ph_number2.value.length>8 || id1.ph_number2.value.length<5) && id1.country.options[id1.country.selectedIndex].value=="IN^91") {
				   
				   //alert("Please Enter Valid Phone Number 2");
				    alert("Phone Number 2 Should be 5 to 8 Digits.");
				   id1.ph_number2.focus();
				   return false;
			    }
			    
			    if ((id1.ph_number2.value.length>10 || id1.ph_number2.value.length<5) && id1.country.options[id1.country.selectedIndex].value!="IN^91") {
				   
				  // alert("Please Enter Valid Phone Number 2");
				   alert("Phone Number 2 Should be 5 to 10 Digits.");
				   id1.ph_number2.focus();
				   return false;
			    }
			    
			    if (id1.STD2.value=="") {
					   
				   alert("Please Enter STD Code 2");
				   id1.STD2.focus();
				   return false;
			    }
			 }
			 
			 if(id1.mobile_phone.value!="Mobile No.") {
		
				if (id1.mobile_phone.value.length<10 && id1.country.options[id1.country.selectedIndex].value=="IN^91") {
				   
				  // alert("Please Enter Valid Mobile Number");
				  alert("Mobile Number Should be 10 Digits.");
				   id1.mobile_phone.focus();
				   return false;
			   }
			   
			   if ((id1.mobile_phone.value.length<3) && id1.country.options[id1.country.selectedIndex].value!="IN^91") {
				   
				  // alert("Please Enter Valid Mobile Number");
				   alert("Mobile Number Should be at least 3 Digits.");
				   id1.mobile_phone.focus();
				   return false;
			   }
			}
			
			//validation for mobile phone 2
			var mobile_phone2Exists = document.getElementById('mobile_phone2').value;
	
			if (mobile_phone2Exists) {
				
				if (id1.mobile_phone2.value.length<10 && id1.country.options[id1.country.selectedIndex].value=="IN^91") {
				   
				   //alert("Please Enter Valid Mobile Number 2");
				    alert("Mobile Number 2 Should be 10 Digits.");
				   id1.mobile_phone2.focus();
				   return false;
			   }
			   
			   if ((id1.mobile_phone2.value.length<3) && id1.country.options[id1.country.selectedIndex].value!="IN^91") {
				   
				  // alert("Please Enter Valid Mobile Number 2");
				   alert("Mobile Number 2 Should be at least 3 Digits.");
				   id1.mobile_phone2.focus();
				   return false;
			   }
			}
			
			if (id1.username.value.length==0) {
					
				alert("Please Enter Your E-MailID");
				id1.username.focus();
				return false;
			}
			
			var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
			
	   		var address1 = id1.username.value;
	   		
	   		if(reg.test(address1) == false) {
	 
	      		alert('Invalid Email Address');
	      		return false;
	   		}
		}
   				
		if (id1.memberOrder.options[id1.memberOrder.selectedIndex].value=="x") {
	
			alert("Please Select Membership Type");
		    id1.memberOrder.focus();
		    return false;
		}
		
		if (chktrim(id1.query.value).length==0) {
	
			alert("Please Enter Your Comments / Query");
		    id1.query.focus();
		    return false;
		}
	}
	
	
	
	
	
}


function validate_form_field(val,field) {
	
	var validate_password =/^([a-zA-Z0-9])+$/;
	
	var validate_name =/^([a-zA-Z. ])+$/;
	
	var text = "";
	
	if(field=="country" || field=="ph_number" || field=="mobile_phone" || field=="comp_name" || field=="address" || field=="query" || field=="state_code" || field=="your_name" || field=="memberOrder") {
				
		var f_value = document.getElementById(field).value;
		
		if(field=="country" && f_value=="x") {
			
			f_value="";
		}
		if(field=="state_code" && f_value=="x") {
			
			f_value="";
		}
		if(field=="memberOrder" && f_value=="x") {
			
			f_value="";
		}		
	
		if(chktrim(f_value)=="") {			
								
			if(field=="your_name") {
			
				text = "Please Enter Your Name.";
			}	
			else if(field=="comp_name") {
				
				text = "Please Enter Company Name.";
			}
			else if(field=="address") {
				
				text = "Please Enter Your Office Address.";
			}		
			else if(field=="country") {
				
				text = "Please Select the country where your business is located.";
			}
			else if(field=="state_code") {
			
				text = "Please Select the state where your business is located.";
			}
			else if(field=="memberOrder") {
			
				text = "Please Select Membership Type.";
			}
			else if(field=="ph_number" || field=="mobile_phone") {
				
				if((document.getElementById('ph_number').value=="" || document.getElementById('ph_number').value=="Phone No.") && (document.getElementById('mobile_phone').value=="Mobile No." || document.getElementById('mobile_phone').value=="")) {
					
					text = "Please Enter Phone/Mobile Number.";
				}
			}
			else if(field=="query") {
				
				text = "Please Enter Your Comments / Query.";
			}
		}
		
		if(field=="your_name" && f_value!='') {
			
			if ((!validate_name.test(document.getElementById('your_name').value))) {
				
				text = "Please Enter Valid Name.";
			}
		}
		
		if(field=="ph_number" && f_value!="Phone No." && f_value!="") {
			
			if ((f_value.length>8 || f_value.length<5) && document.getElementById('country').value=="IN^91") {
			   
			   text = "Phone Number Should be 5 to 8 Digits.";
		    }
		    
		    if ((f_value.length>10 || f_value.length<5) && document.getElementById('country').value!="IN^91") {
			   
			   text = "Phone Number Should be 5 to 10 Digits."
		    }
	    }
	    if(field=="mobile_phone" && f_value!="Mobile No." && f_value!="") {
			
			if ((f_value.length<10) && document.getElementById('country').value=="IN^91") {
			   
			   text = "Mobile Number Should be 10 Digits.";
		    }
		    
		    if ((f_value.length<3) && document.getElementById('country').value!="IN^91") {
			   
			   text = "Mobile Number Should be at least 3 Digits.";
		    }
	    }
	    
		if(text=='') {
		
			if(field=="ph_number" || field=="mobile_phone") {
			
				if(field=="ph_number" && f_value!="" && f_value!="Phone No.") {
				
					document.getElementById("im_"+field+"_id").style.display="";
					
					document.getElementById("d_mobile_phone_id").style.display="none";
					document.getElementById("text_mobile_phone_id").className="ar b";
				}
				if(field=="mobile_phone" && f_value!="" && f_value!="Mobile No.") {
				
					document.getElementById("im_"+field+"_id").style.display="";
					
					document.getElementById("d_ph_number_id").style.display="none";
					document.getElementById("text_ph_number_id").className="ar b";
				}
			}
			else {
			
				document.getElementById("im_"+field+"_id").style.display="";
			}
			
			document.getElementById("text_"+field+"_id").className="ar b";
			document.getElementById("d_"+field+"_id").style.display="none";
		}
		else {
		
			document.getElementById("d_"+field+"_id").style.display="";
			document.getElementById("im_"+field+"_id").style.display="none";
			document.getElementById("text_"+field+"_id").className="ar b red";
			document.getElementById("s_"+field+"_id").innerHTML=text;
		}
 	}
}

//for checking mobile length as india and foreign case
function setMobileMaxLenValue(val) {
	
	if(val=='IN^91') {
		
		document.getElementById('mobile_phone').setAttribute('maxlength','10');
		
		document.getElementById('mobile_phone2').setAttribute('maxlength','10');
		
		if(document.getElementById('mobile_phone').value.length>10) {
		
			document.getElementById('mobile_phone').value = document.getElementById('mobile_phone').value.substring(0, 10);
		}
		if(document.getElementById('mobile_phone2').value.length>10) {
		
			document.getElementById('mobile_phone2').value = document.getElementById('mobile_phone2').value.substring(0, 10);
		}
	}
	else {
		
			document.getElementById('mobile_phone').setAttribute('maxlength','20');
			
			document.getElementById('mobile_phone2').setAttribute('maxlength','20');
	}
}


function char_valid() {			
	
    if (document.inqfrm.query.value.length>500) {
	    
    	alert("Your Limit Has Exceeded 500 characters.");
        document.inqfrm.query.focus();
        return false;
	}
}

function validate_old(id1) {
	
	if (id1.newID.value.length==0) {
		
		if (chktrim(id1.name.value).length==0) {
			
	    	alert("Please Enter Your Name");
	        id1.name.focus();
	        return false;
		}
		if (chktrim(id1.emailid.value).length==0) {
			
	    	alert("Please Enter Your E-MailID");
	        id1.emailid.focus();
	        return false;
		}
		
		var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
   		
   		if(reg.test(id1.emailid.value) == false) {
 
      		alert('Invalid Email Address');
      		id1.emailid.focus();
      		return false;
   		}
		
	    if (chktrim(id1.comp_name.value).length==0) {
	    	alert("Please Enter Your Company Name");
	        id1.comp_name.focus();
	        return false;
        }
        if (chktrim(id1.country.value).length==0) {
	    	alert("Please Select Country");
	        id1.country.focus();
	        return false;
        }
 		if(chktrim(id1.ph_number.value)=="Phone No(s)" && chktrim(id1.mobile.value)=="Mobile No(s)") {
				alert('Please Enter Your Phone / Mobile Number(s).');
				id1.ph_number.focus();
			 	return false;
		}
		else if(id1.ph_number.value!="Phone No(s)") {
				   
		   if (chktrim(id1.ph_number.value).length==0) {
			   alert("Enter Phone Number");
			   id1.ph_number.focus();
			   return false;
		   }	
		   if (chktrim(id1.ph_number.value).length<5) {
			   alert("Enter Valid Phone Number");
			   id1.ph_number.focus();
			   return false;
		   }
		   
		   if(chktrim(id1.ph_ccode.value).length ==0 || id1.ph_ccode.value=='ISD Code') {
			   alert("Enter ISD Code");
			  	id1.ph_ccode.focus();
			   return false;
		   }
		   if (chktrim(id1.ph_acode.value).length ==0 || id1.ph_acode.value=='STD Code') {
			   alert("Enter STD Code");
			   id1.ph_acode.focus();
			   return false;
		   }
		   if(isNaN(id1.ph_acode.value)) {
			   alert("Enter valid STD Code");
			   id1.ph_acode.focus();
			   return false;			   
		   }
		}
	    else if(id1.mobile.value!="Mobile No(s)") {
		    
		   if(isNaN(id1.mobile.value)) {
			   
			   alert("Enter a Valid 10 digit Mobile Number, eg 98xxxxxxxx");
			   id1.mobile.focus();
			   return false;			   
		   }
		   if (chktrim(id1.mobile.value).length<10 || chktrim(id1.mobile.value).length>10) {
			   alert("Enter a Valid 10 digit Mobile Number, eg 98xxxxxxxx");
			   id1.ph_number.focus();
			   return false;
		   }		    
	    }
	}
	
	if (chktrim(id1.query.value).length==0) {
		
    	alert("Please Enter Your Comments / Query");
        id1.query.focus();
        return false;
	}	
	if (chktrim(id1.captcha.value).length==0) {
		
    	alert("Please Enter Confirmation Code.");
        id1.captcha.focus();
        return false;
	}
}


function validate_callTofree(id1) {

	
	if (id1.newID.value.length==0) {
		
		if (chktrim(id1.name.value).length==0) {
	    	alert("Please Enter Your Name");
	        id1.name.focus();
	        return false;
		}
		
		if (chktrim(id1.emailid.value).length==0) {
	    	alert("Please Enter Your E-MailID");
	        id1.emailid.focus();
	        return false;
		}
		
		if (chktrim(id1.emailid.value.indexOf('@')) == -1) {
	         alert("Error in e-mail address");
	         id1.emailid.focus();
	         return false;
	    }
	    if (chktrim(id1.emailid.value.indexOf('.')) == -1) {
	         alert("Error in e-mail address");
	         id1.emailid.focus();
	         return false;
	    }
	    if (chktrim(id1.comp_name.value).length==0) {
	    	alert("Please Enter Your Company Name");
	        id1.comp_name.focus();
	        return false;
        }
        if (chktrim(id1.country.value).length==0) {
	    	alert("Please Select Country");
	        id1.country.focus();
	        return false;
        } 		
	}
	
	if (chktrim(id1.query.value).length==0) {
    	alert("Please Enter Your Comments / Query");
        id1.query.focus();
        return false;
	}
}


//This is use for country code select as per contry name
function return_isd_code(formName, fldNameLen, fldNameVal) {

	box1 = eval('document.' + formName + '.' + fldNameLen);	
	var val1 =box1.value;	
	var val1Array = val1.split('^'); 	
	box2 = eval('document.' + formName + '.' + fldNameVal);	
	box2.value=val1Array[1];
}	
function chkListKeyword() {	
		
	var mi = "";
	
	if(document.joinForm.mi) {
		
		var mi = document.joinForm.mi.value;
	}
	
	if(document.joinForm.newID.value=='' && mi=='') {
		
		//Existing member Validate 	
		if(document.joinForm.memberType[0].checked && document.joinForm.memberType[0].value=="0") {
			
			if (document.joinForm.user_name.value.length==0) {
			
				alert("Please Enter Your E-Mail Address");
				document.joinForm.user_name.focus();
				return false;
			}
			if (document.joinForm.user_name.value.indexOf('@')==-1) {
			
				alert("Error in E-Mail Address");
				document.joinForm.user_name.focus();
				return false;
			}
			if (document.joinForm.user_name.value.indexOf('.')==-1) {
			
				alert("Error in E-Mail Address");
				document.joinForm.user_name.focus();
				return false;
			}
			
			if (document.joinForm.pass_word.value.length==0) {
			
				alert("Please Enter Your Password");
				document.joinForm.pass_word.focus();
				return false;
			}		  
		}
		else {
		
			if (document.joinForm.your_name.value.length==0) {
			
				alert("Enter your name");
				document.joinForm.your_name.focus();
				return false;
			}
			
			if (document.joinForm.comp_name.value.length==0) {
				
				alert("Enter Company Name");
				document.joinForm.comp_name.focus();
				return false;
			}
			
			if (document.joinForm.address.value.length ==0) {
				
				alert("Enter Registered Office Address ");
				document.joinForm.address.focus();
				return false;
			}
			
			if(document.joinForm.country.options[document.joinForm.country.selectedIndex].value=="x") {
			
				alert("Please Select Your Country");
				document.joinForm.country.focus();
				return false;
			}
			
			if ((document.joinForm.country.options[document.joinForm.country.selectedIndex].value=="IN^91") && (document.joinForm.state_code.options[document.joinForm.state_code.selectedIndex].value=="x")) {
	     
	        	alert("Please Select Your State Name");
	        	document.joinForm.state_code.focus();
	        	return false;
	     	}
			
			if(document.joinForm.ph_number.value=="Phone No." && document.joinForm.mobile_phone.value=="Mobile No.") {
				
				alert('Please Enter Your Phone / Mobile Number(s).');
				document.joinForm.ph_number.focus();
		     	return false;
			}
			
			else if(document.joinForm.ph_number.value!="Phone No.") {
								
				if (chktrim(document.joinForm.ph_number.value)=="Phone No.") {
		   
				   alert("Please Enter Phone Number");
				   document.joinForm.ph_number.focus();
				   return false;
			    }
			    
			    if ((document.joinForm.ph_number.value.length>8 || document.joinForm.ph_number.value.length<5) && document.joinForm.country.options[document.joinForm.country.selectedIndex].value=="IN^91") {
		   
				   //alert("Please Enter Valid Phone Number");
				   alert("Phone Number Should be 5 to 8 Digits.");
				   document.joinForm.ph_number.focus();
				   return false;
			    }
			    
			    if ((document.joinForm.ph_number.value.length>10 || document.joinForm.ph_number.value.length<5) && document.joinForm.country.options[document.joinForm.country.selectedIndex].value!="IN^91") {
				   
				   //alert("Please Enter Valid Phone Number");
				   alert("Phone Number Should be 5 to 10 Digits.");
				   document.joinForm.ph_number.focus();
				   return false;
			    }
				
			    if (chktrim(document.joinForm.ph_acode.value).length==0 || chktrim(document.joinForm.ph_acode.value)=='STD') {
			      	
					alert("Please Enter Your STD Code ");
		         	document.joinForm.ph_acode.focus();
		         	return false;
		      	}
			    				
				if (chktrim(document.joinForm.ph_ccode.value).length==0 || chktrim(document.joinForm.ph_ccode.value)=='ISD') {
					
					alert("Please Enter Your ISD Code ");
		         	document.joinForm.ph_ccode.focus();
					return false;
		  	    }
			 }
			 
			 //validation for phone 2
			 var ph_number2Exists = document.getElementById('ph_number2').value;
		
			 if (ph_number2Exists) {
			
				if (document.joinForm.ph_number2.value=="") {
					   
				   alert("Please Enter Phone Number 2");
				   document.joinForm.ph_number2.focus();
				   return false;
			    }
			      
				if ((document.joinForm.ph_number2.value.length>8 || document.joinForm.ph_number2.value.length<5) && document.joinForm.country.options[document.joinForm.country.selectedIndex].value=="IN^91") {
				   
				   //alert("Please Enter Valid Phone Number 2");
				    alert("Phone Number 2 Should be 5 to 8 Digits.");
				   document.joinForm.ph_number2.focus();
				   return false;
			    }
			    
			    if ((document.joinForm.ph_number2.value.length>10 || document.joinForm.ph_number2.value.length<5) && document.joinForm.country.options[document.joinForm.country.selectedIndex].value!="IN^91") {
				   
				  // alert("Please Enter Valid Phone Number 2");
				   alert("Phone Number 2 Should be 5 to 10 Digits.");
				   document.joinForm.ph_number2.focus();
				   return false;
			    }
			    
			    if (document.joinForm.STD2.value=="") {
					   
				   alert("Please Enter STD Code 2");
				   document.joinForm.STD2.focus();
				   return false;
			    }
			 }
			 
			 if(document.joinForm.mobile_phone.value!="Mobile No.") {
		
				if (document.joinForm.mobile_phone.value.length<10 && document.joinForm.country.options[document.joinForm.country.selectedIndex].value=="IN^91") {
				   
				  // alert("Please Enter Valid Mobile Number");
				  alert("Mobile Number Should be 10 Digits.");
				   document.joinForm.mobile_phone.focus();
				   return false;
			   }
			   
			   if ((document.joinForm.mobile_phone.value.length<3) && document.joinForm.country.options[document.joinForm.country.selectedIndex].value!="IN^91") {
				   
				  // alert("Please Enter Valid Mobile Number");
				   alert("Mobile Number Should be at least 3 Digits.");
				   document.joinForm.mobile_phone.focus();
				   return false;
			   }
			}
			
			//validation for mobile phone 2
			var mobile_phone2Exists = document.getElementById('mobile_phone2').value;
	
			if (mobile_phone2Exists) {
				
				if (document.joinForm.mobile_phone2.value.length<10 && document.joinForm.country.options[document.joinForm.country.selectedIndex].value=="IN^91") {
				   
				   //alert("Please Enter Valid Mobile Number 2");
				    alert("Mobile Number 2 Should be 10 Digits.");
				   document.joinForm.mobile_phone2.focus();
				   return false;
			   }
			   
			   if ((document.joinForm.mobile_phone2.value.length<3) && document.joinForm.country.options[document.joinForm.country.selectedIndex].value!="IN^91") {
				   
				  // alert("Please Enter Valid Mobile Number 2");
				   alert("Mobile Number 2 Should be at least 3 Digits.");
				   document.joinForm.mobile_phone2.focus();
				   return false;
			   }		
			}
			
			if (document.joinForm.username.value.length==0) {
				
				alert("Please Enter Your E-MailID ");
				document.joinForm.username.focus();
				return false;
			}
			
			var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
			
	   		var address = document.joinForm.username.value;
	   		
	   		if(reg.test(address) == false) {
	 
	      		alert('Invalid Email Address');
	      		document.joinForm.username.focus();
	      		return false;
	   		}
		}
   }
   
   //For Payment Option	
   if ( (!document.joinForm.mode_opt[0].checked) && (!document.joinForm.mode_opt[1].checked) && (!document.joinForm.mode_opt[2].checked) && (!document.joinForm.mode_opt[3].checked) && (!document.joinForm.mode_opt[4].checked) && (!document.joinForm.mode_opt[5].checked) && (!document.joinForm.mode_opt[6].checked) ) {
		
		alert("Please check Your Mode Of Payment");		
		document.joinForm.mode_opt[0].focus();		
		return false;
	}
	
	//Credit Cards Mode
	if(document.joinForm.mode_opt[0].checked) {
		
		if((!document.joinForm.pymt_mode[0].checked) && (!document.joinForm.pymt_mode[1].checked) && (!document.joinForm.pymt_mode[2].checked)) {
			
			alert("Please check Your Payment Options");		
			document.joinForm.pymt_mode[0].focus();		
			return false;
		}
	}
	
	//Net Banking Mode
	if(document.joinForm.mode_opt[1].checked) {
		
		if(document.joinForm.mode_opt[1].checked && document.joinForm.pymt_mode_bank.value=="x") {
			
			alert("Please Select Your Bank Name");		
			document.joinForm.pymt_mode_bank.focus();		
			return false;
		}
	}
	
	//Deposit A Cheque Mode
	if(document.joinForm.mode_opt[2].checked) {
		
		if((!document.joinForm.pymt_mode[3].checked) && (!document.joinForm.pymt_mode[4].checked) && (!document.joinForm.pymt_mode[5].checked) && (!document.joinForm.pymt_mode[6].checked) && (!document.joinForm.pymt_mode[7].checked) && (!document.joinForm.pymt_mode[8].checked) && (!document.joinForm.pymt_mode[9].checked) && (!document.joinForm.pymt_mode[10].checked) && (!document.joinForm.pymt_mode[11].checked) ) {
			
			alert("Please check Your Payment Options");
		
			document.joinForm.pymt_mode[3].focus();
		
			return false;
		}
	}
	
	//Paypal Mode
	if(document.joinForm.mode_opt[3].checked) {
		
		if(!document.joinForm.pymt_mode[12].checked) {
			
			alert("Please check Your Payment Options");		
			document.joinForm.pymt_mode[12].focus();		
			return false;
		}
	}
	
	//Debit Cards
	if(document.joinForm.mode_opt[4].checked) {
		
		if((!document.joinForm.pymt_mode[13].checked) && (!document.joinForm.pymt_mode[14].checked) && (!document.joinForm.pymt_mode[15].checked) ) {
			
			alert("Please check Your Payment Options");
		
			document.joinForm.pymt_mode[13].focus();
		
			return false;
		}
	}
	
	//NEFT / RTGS 
	if(document.joinForm.mode_opt[5].checked) {
		
		if((!document.joinForm.pymt_mode[16].checked) && (!document.joinForm.pymt_mode[17].checked) && (!document.joinForm.pymt_mode[18].checked) && (!document.joinForm.pymt_mode[19].checked) && (!document.joinForm.pymt_mode[20].checked) && (!document.joinForm.pymt_mode[21].checked) && (!document.joinForm.pymt_mode[22].checked) && (!document.joinForm.pymt_mode[23].checked) && (!document.joinForm.pymt_mode[24].checked) ) {
			
			alert("Please check Your Payment Options");
		
			document.joinForm.pymt_mode[16].focus();
		
			return false;
		}
	}
			
	//Other Online Payment Option Mode
	if(document.joinForm.mode_opt[6].checked) {
		
		if(!document.joinForm.pymt_mode[25].checked && !document.joinForm.pymt_mode[26].checked) {
			
			alert("Please check Your Payment Options");		
			document.joinForm.pymt_mode[26].focus();		
			return false;
		}
	}
	
	if (!document.joinForm.iagree.checked) {
			
		alert("You must check the Terms and Conditions");
		document.joinForm.iagree.focus();
		return false;
	}
}


function validate_form_field(val,field) {
	
	var validate_password =/^([a-zA-Z0-9])+$/;
	
	var validate_name =/^([a-zA-Z. ])+$/;
	
	var text = "";
	
	if(field=="country" || field=="ph_number" || field=="mobile_phone" || field=="comp_name" || field=="address" || field=="product_desc" || field=="captcha" || field=="state_code" || field=="your_name" || field=="detail_req1") {
				
		var f_value = document.getElementById(field).value;
		
		if(field=="country" && f_value=="x") {
			
			f_value="";
		}
		if(field=="state_code" && f_value=="x") {
			
			f_value="";
		}		
	
		if(chktrim(f_value)=="") {			
			
			if(field=="detail_req1") {
				
				text = "Please Enter Your Details [ min. 50 Characters ].";
			}
			
			else if(field=="captcha") {
			
				text = "Please Enter Confirmation Code.";
			}		
								
			else if(field=="your_name") {
			
				text = "Please Enter Your Name.";
			}	
			else if(field=="comp_name") {
				
				text = "Please Enter Company Name.";
			}
			else if(field=="address") {
				
				text = "Please Enter Your Office Address.";
			}		
			else if(field=="country") {
				
				text = "Please Select the country where your business is located.";
			}
			else if(field=="state_code") {
			
				text = "Please Select the state where your business is located.";
			}
			else if(field=="ph_number" || field=="mobile_phone") {
				
				if((document.getElementById('ph_number').value=="" || document.getElementById('ph_number').value=="Phone No.") && (document.getElementById('mobile_phone').value=="Mobile No." || document.getElementById('mobile_phone').value=="")) {
					
					text = "Please Enter Phone/Mobile Number.";
				}
			}
			else if(field=="product_desc") {
				
				text = "Requirement of products or services only [ minimum 20 characters ].";
			}			
		}
				
		
		if(field=="detail_req1" && f_value!="") {
				
			if ((!f_value.indexOf('.com')) || (!f_value.indexOf('.net')) || (!f_value.indexOf('.www'))) {
			
				text= "Don't specify your site address in Your Details fields.";
			}
			if (chktrim(f_value).length<50) {
		
				text= "Please Enter Your Details [ min. 50 Characters ].";
			}
			if (chktrim(f_value).length>1000) {
		
				text= "Enter Your Details (max. 1000 characters).";
			}
		}
		
		if(field=="captcha" && text=="") {
			
			if(f_value!=document.getElementById("captch_value").value) {
			
				text = "Verification (Captcha Image) Code did not match with displayed code";
			}
		}
		
		if(field=="your_name" && f_value!='') {
			
			if ((!validate_name.test(document.getElementById('your_name').value))) {
				
				text = "Please Enter Valid Name.";
			}
		}
		
		if(field=="ph_number" && f_value!="Phone No." && f_value!="") {
			
			if ((f_value.length>8 || f_value.length<5) && document.getElementById('country').value=="IN^91") {
			   
			   text = "Phone Number Should be 5 to 8 Digits.";
		    }
		    
		    if ((f_value.length>10 || f_value.length<5) && document.getElementById('country').value!="IN^91") {
			   
			   text = "Phone Number Should be 5 to 10 Digits."
		    }
	    }
	    if(field=="mobile_phone" && f_value!="Mobile No." && f_value!="") {
			
			if ((f_value.length<10) && document.getElementById('country').value=="IN^91") {
			   
			   text = "Mobile Number Should be 10 Digits.";
		    }
		    
		    if ((f_value.length<3) && document.getElementById('country').value!="IN^91") {
			   
			   text = "Mobile Number Should be at least 3 Digits.";
		    }
	    }
	    
	    if(field=="product_desc" && f_value!="") {
			
			if ((!f_value.indexOf('.com')) || (!f_value.indexOf('.net')) || (!f_value.indexOf('.www'))) {
			
				text= "Don't specify your site address in Product Details fields.";
			}
			if (chktrim(f_value).length<50) {
		
				text= "Requirement of products or services only [ minimum 50 characters ].";
			}
			if (chktrim(f_value).length>350) {
		
				text= "Enter Product Detail (max. 350 characters).";
			}
			
			if(field=="comp_name" && chktrim(f_value)=="") {
				
				text = "Please Enter Company Name.";
			}
		}
	    
		if(text=='') {
		
			if(field=="ph_number" || field=="mobile_phone") {
			
				if(field=="ph_number" && f_value!="" && f_value!="Phone No.") {
				
					document.getElementById("im_"+field+"_id").style.display="";
					
					document.getElementById("d_mobile_phone_id").style.display="none";
					document.getElementById("text_mobile_phone_id").className="ar b";
				}
				if(field=="mobile_phone" && f_value!="" && f_value!="Mobile No.") {
				
					document.getElementById("im_"+field+"_id").style.display="";
					
					document.getElementById("d_ph_number_id").style.display="none";
					document.getElementById("text_ph_number_id").className="ar b";
				}
			}
			else {
			
				document.getElementById("im_"+field+"_id").style.display="";
			}
			
			document.getElementById("text_"+field+"_id").className="ar b";
			document.getElementById("d_"+field+"_id").style.display="none";
		}
		else {
		
			document.getElementById("d_"+field+"_id").style.display="";
			document.getElementById("im_"+field+"_id").style.display="none";
			document.getElementById("text_"+field+"_id").className="ar b red";
			document.getElementById("s_"+field+"_id").innerHTML=text;
		}
 	}
}


//for checking mobile length as india and foreign case
function setMobileMaxLenValue(val) {
	
	if(val=='IN^91') {
		
		document.getElementById('mobile_phone').setAttribute('maxlength','10');
		
		document.getElementById('mobile_phone2').setAttribute('maxlength','10');
		
		if(document.getElementById('mobile_phone').value.length>10) {
		
			document.getElementById('mobile_phone').value = document.getElementById('mobile_phone').value.substring(0, 10);
		}
		if(document.getElementById('mobile_phone2').value.length>10) {
		
			document.getElementById('mobile_phone2').value = document.getElementById('mobile_phone2').value.substring(0, 10);
		}
	}
	else {
		
			document.getElementById('mobile_phone').setAttribute('maxlength','20');
			
			document.getElementById('mobile_phone2').setAttribute('maxlength','20');
	}
}

function buylead_payment_option () {

	//For Payment Option
	if ( (!document.joinForm.mode_opt[0].checked) && (!document.joinForm.mode_opt[1].checked) && (!document.joinForm.mode_opt[2].checked) ) {
		
		alert("Please check Your Mode Of Payment");		
		document.joinForm.mode_opt[0].focus();		
		return false;
	}
	
	//Credit Cards Mode
	if(document.joinForm.mode_opt[0].checked) {
		
		if( (!document.joinForm.pymt_mode[0].checked) && (!document.joinForm.pymt_mode[1].checked) ) {
			
			alert("Please check Your Payment Options");		
			document.joinForm.pymt_mode[0].focus();		
			return false;
		}
	}
	
	//Net Banking Mode
	if(document.joinForm.mode_opt[1].checked) {
		
		if(document.joinForm.mode_opt[1].checked && document.joinForm.pymt_mode_bank.value=="x") {
			
			alert("Please Select Your Bank Name");		
			document.joinForm.pymt_mode_bank.focus();		
			return false;
		}
	}
	
	//Paypal Mode
	if(document.joinForm.mode_opt[2].checked) {
		
		if(!document.joinForm.pymt_mode[3].checked) {
			
			alert("Please check Your Payment Options");		
			document.joinForm.pymt_mode[3].focus();		
			return false;
		}
	}
	
	if (!document.joinForm.iagree.checked) {
			
		alert("You must check the Terms and Conditions");
		document.joinForm.iagree.focus();
		return false;
	}
}function GetXmlHttpObject() { 
	var objXMLHttp=null;
	if (window.XMLHttpRequest) {
		objXMLHttp=new XMLHttpRequest();
	}
	else if (window.ActiveXObject) {
		objXMLHttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	return (objXMLHttp);
} 
function checkDuplicateUserName(str,sitename,geturl,element_name) {
	
	xmlHttp=GetXmlHttpObject();
	if (xmlHttp==null) {
		alert ("Browser does not support HTTP Request");
		return;
	}
	
	document.getElementById(element_name).innerHTML="<br><b>Please Wait....</b>";
	
	var url=sitename+geturl;
	url=url+"&q="+str;
	url=url+"&sid="+Math.random();
	xmlHttp.onreadystatechange=
	function dynstateChanged() {
		if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") {
			document.getElementById(element_name).innerHTML=xmlHttp.responseText;
		} 
	};
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null)
}function readAbout(form) {
	var newIndex = form.fieldname.selectedIndex; 
	
	if ( newIndex == 0 ) 
	{ 
		alert( "Please select a location!" ); 
	} 
	
	else 
	{ 
		cururl = form.fieldname.options[ newIndex ].value; 
		window.location.assign( cururl );
	} 
}


/*$(document).ready(function() {
	
	function showPaymentOptions(tgref){
		for(var i=1;i<=7;i++){
			curObj=\'#po\'+i;
			if(i==tgref){
				if($(curObj).css(\'display\')==\'none\'){
					$(curObj).slideDown();
				}
			}else{
				$(curObj).slideUp();
			}
		}
	}
$(\'input[id^="por"]\').each(function(index,val){
	
	var tgid;
	$(val).click(function(e){
		
		tgid=$(this).attr(\'id\').replace(/^por/g,\'\');
		
		showPaymentOptions(tgid);
	});
  });
});*/var xmlHttp

// For frreelist forward used in misc/freelist_fwd.php.somesh
// Start
function addCatgBox(cont, url) {

	xmlHttp=GetXmlHttpObject();
	if (xmlHttp==null) {
		alert ("Browser does not support HTTP Request");
		return;
	}
	if (cont!=="x") {
		url=url+"?id1=chk_catg&cont="+cont;
		url=url+"&sid="+Math.random();
		xmlHttp.onreadystatechange=stateChanged;

		xmlHttp.open("GET",url,true)
		xmlHttp.send(null)
	}
}
// End 


function dynshowHintstatecity(str,sitename,geturl) {
	
	xmlHttp=GetXmlHttpObject();
	
	if (xmlHttp==null) {
		
		alert ("Browser does not support HTTP Request");
		return;
	}
	
	document.getElementById('indian_state').innerHTML="<center><img src=\"/static/images_iyp/loading.gif\"></center>";
	document.getElementById('indian_city').innerHTML="<center><img src=\"/static/images_iyp/loading.gif\"></center>";
	
	document.getElementById('indian_city').innerHTML="<input type=\"text\" name=\"job_state\" id=\"job_state\" value=\"\" class=\"input w70 p2px mr10px\">";
	
	var url=sitename+geturl;
	url=url+"&q="+str;
	url=url+"&sid="+Math.random();
	
	xmlHttp.onreadystatechange=
	function dynstateChanged() {
		
		if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") {
			
			document.getElementById('indian_state').innerHTML=xmlHttp.responseText;
		} 
	};
	
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null)
}

function dynshowHint(str,sitename,geturl,element_name) {
	xmlHttp=GetXmlHttpObject();
	if (xmlHttp==null) {
		alert ("Browser does not support HTTP Request");
		return;
	}
	
	document.getElementById(element_name).innerHTML="<b>Please Wait....</b>";
	
	var url=sitename+geturl;
	url=url+"&q="+str;
	url=url+"&sid="+Math.random();
	xmlHttp.onreadystatechange=
	function dynstateChanged() {
		if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") {
			document.getElementById(element_name).innerHTML=xmlHttp.responseText;
		} 
	};
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null)
}
function dynshowHintUpdate(str,sitename,geturl,element_name) {
	
	xmlHttp=GetXmlHttpObject();
	
	if (xmlHttp==null) {
		
		alert ("Browser does not support HTTP Request");
		return;
	}
	
	document.getElementById(element_name).innerHTML="<b>Please Wait....</b>";
	
	var url=sitename+geturl;
	url=url+"&q="+str;
	url=url+"&sid="+Math.random();	
	
	xmlHttp.onreadystatechange=
	function dynstateChanged() {
		
		if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") {
			
			var split_result = xmlHttp.responseText.split('||');
			
			document.getElementById(element_name).innerHTML=split_result[0];
			
			if(document.getElementById("email_duplicate_status")) {
				
				document.getElementById("email_duplicate_status").value=split_result[1];
			}
		} 
	};
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null)
}

//this is used for mail email exist or not
function showHint(str,sitename,geturl) {
	
	xmlHttp=GetXmlHttpObject();
	if (xmlHttp==null) {
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url=sitename+geturl;
	url=url+"&q="+str;
	url=url+"&sid="+Math.random();
	xmlHttp.onreadystatechange=stateChanged;	
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null)
}

function stateChanged() { 
	
	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") {
		
		var pageName = window.location.pathname;
		
		if(pageName=='/join-now.php' || pageName=='/members/join-now.php') {
			
			var split_result = xmlHttp.responseText.split('||');
			
			var email_status = split_result[1].replace(/\s/g,"");
			
			if(email_status=='Y') {
				
			
				document.getElementById("im_email_id").style.display="";
				document.getElementById("text_email_id").className="ar b";
				document.getElementById("d_email_id2").style.display="none";

			}
			else {
				document.getElementById("text_email_id").className="ar b red";
				document.getElementById("d_email_id2").style.display="";
				document.getElementById("s_email_id").innerHTML = split_result[0];
			}
			document.getElementById("email_duplicate_status").value=email_status;
		}
		else {
			
			document.getElementById("txtHint").innerHTML=xmlHttp.responseText;
		}
		
	} 
}

function GetXmlHttpObject() { 
	var objXMLHttp=null;
	if (window.XMLHttpRequest) {
		objXMLHttp=new XMLHttpRequest();
	}
	else if (window.ActiveXObject) {
		objXMLHttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	return (objXMLHttp);
} 


function changeshow(id1) {
	
	var myarray = id1.split("^"); 
	
	if(myarray[0]=='IN')  {
		
		document.getElementById("showstate").style.display='';
		document.getElementById("stateid").style.display='none';
	}
	else{
		
		document.getElementById("showstate").style.display='none';
		document.getElementById("stateid").style.display='';
		
	}
}

function changeshow2(id1) {
	
	if(id1=='Offer')  {
		
		document.getElementById("Offer").style.display='';
		document.getElementById("Offer1").style.display='';
		document.getElementById("Demand").style.display='none';
		document.getElementById("classified").style.display='none';
	}
	else {
		
		document.getElementById("Demand").style.display='';
		
		document.getElementById("Offer").style.display='none';
		
		document.getElementById("Offer1").style.display='none';
		
	}
}
	
function getRequest(id1){
	
	var myarray = id1.split("^"); 
	
	document.getElementById("ph_ccode").value=myarray[1];	
}

function getRequest1(id1){
	
	var myarray = id1.split("^"); 
	
	document.getElementById("ph_ccode1").value=myarray[1];	
} 

function changeshow1() {	
		
	if(document.getElementById("bus_ty").value=='x' || document.getElementById("bus_ty").value=='')  {
		
		document.getElementById("classified").style.display='none';
	}
	else {		
		
		document.getElementById("classified").style.display='';
	}
}
function display_classified_area_detail() {
	
	if(document.getElementById("bus_ty1").value=='x' || document.getElementById("bus_ty1").value=='')  {
		
		document.getElementById("classified").style.display='none';
	}
	else {		
		
		document.getElementById("classified").style.display='';
	}
}

function changeshow_seeach() {
		
	if(document.getElementById("bus_ty").value=='x' || document.getElementById("bus_ty").value=='')  {
		
		document.getElementById("classified").style.display='none';
		document.getElementById("classified1").style.display='none';
	}
	else {
		
		document.getElementById("classified").style.display='';
		document.getElementById("classified1").style.display='';
	}
}

function showHint2(str,sitename,geturl) {
	
	xmlHttp=GetXmlHttpObject();
	if (xmlHttp==null) {
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url=sitename+geturl;
	url=url+"&q="+str;
	url=url+"&sid="+Math.random();
	xmlHttp.onreadystatechange=stateChanged2;	
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null)
}

function stateChanged2() { 
	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") {
		document.getElementById("tradelead").innerHTML=xmlHttp.responseText;
	} 
}


//this is used for alternate email exist or not
function showHint3(str,sitename,geturl) {
	
	if (document.getElementById("username1").value!='') {
		
		xmlHttp=GetXmlHttpObject();
		if (xmlHttp==null) {
			alert ("Browser does not support HTTP Request");
			return;
		}
		var url=sitename+geturl;
		url=url+"&q="+str+"&username1="+str;	
		url=url+"&sid="+Math.random();
		xmlHttp.onreadystatechange=stateChanged3;	
		xmlHttp.open("GET",url,true);
		xmlHttp.send(null)
	}
}

function stateChanged3() { 
	
	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") {
		document.getElementById("txtHint1").innerHTML=xmlHttp.responseText;
	} 
}


function changeshow3(id1) {
		
	if(id1=='offer')  {
		
		document.getElementById("tradeoffer").style.display='block';
		document.getElementById("tradeoffer1").style.display='block';
		
	}
	else {
		
		document.getElementById("tradeoffer").style.display='none';
		document.getElementById("tradeoffer1").style.display='none';
	}
}

/*function changeshow2() {
		
	if(document.getElementById("tradelead_type").value=='Offer')  {
		
		document.getElementById("offerblock").style.display='block';		
				
		document.getElementById("demand").style.display='none';
		
		
	}
	if(document.getElementById("tradelead_type").value=='Demand')  {			
		
		document.getElementById("demand").style.display='block';
		
		document.getElementById("offerblock").style.display='none';
	}
	else {
		
		document.getElementById("offerblock").style.display='none';
		
		document.getElementById("classified").style.display='none';
	}
}*/
function show_member_category(str,url) {
	xmlHttp=GetXmlHttpObject();
	if (xmlHttp==null) {
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url=url;
	url=url+"&q="+str;
	url=url+"&sid="+Math.random();
	xmlHttp.onreadystatechange=getCategory;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null)
}
// End

function getCategory() { 
	
	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") {
		var splitResult=xmlHttp.responseText.split('||');
		var id=splitResult[1];
		document.getElementById('add_group').style.display='';
		document.getElementById(id).innerHTML=splitResult[0];
		//document.getElementById('txtHint').style.display = 'block'; 
	} 
}

//Run time Captch Check without Jquery
function getSessionContact(sitename,geturl) {
	
	xmlHttp=GetXmlHttpObject();
	if (xmlHttp==null) {
		alert ("Browser does not support HTTP Request");
		return;
	}
	
	var url=sitename+geturl;	
	url=url+"&sid="+Math.random();	
	
	xmlHttp.onreadystatechange=stateChangedContact;	
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null)
}

function stateChangedContact() { 
	
	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") {
		
		//alert(document.getElementById("captch_value").value);
		var text='';
		
		text = xmlHttp.responseText.replace(/\s/g,"");
	
		if(chktrim(text)!='') {
	
			document.getElementById("captch_value").value=text;
			
			var pageName = window.location.pathname;
		
			if(pageName=='/join-now.php' || pageName=='/inquiry.php' || pageName=='/contact-us.htm' || pageName=='/feedback.htm' || pageName.substring(0, 7)=='/trade/' || pageName=='/members/post-requirement.php' || pageName=='/post-requirement.php') {
				
				validate_form_field(document.getElementById('captcha').value,'captcha');
			}
		}
	} 
}

//Run time Captch Check with Jquery
function getCaptchaSession(sitename,geturl) {
	
	xmlHttp=GetXmlHttpObject();
	if (xmlHttp==null) {
		alert ("Browser does not support HTTP Request");
		return;
	}
	
	var url=sitename+geturl;	
	url=url+"&sid="+Math.random();
	
	xmlHttp.onreadystatechange=stateChangedCaptchaSession;	
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null)
}

function stateChangedCaptchaSession() { 
	
	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") {
		
		var text;
		
		text = xmlHttp.responseText.replace(/\s/g,"");
		
		if(chktrim(text)!='') {
			
			document.getElementById("captch_value").value=text;
			validate_form_field(document.getElementById('captcha').value,'captcha');
		}
	} 
}
//Run time Captch Check
function getSessionContact1(sitename,geturl) {
	
	xmlHttp=GetXmlHttpObject();
	if (xmlHttp==null) {
		alert ("Browser does not support HTTP Request");
		return;
	}
	
	var url=sitename+geturl;	
	url=url+"&sid="+Math.random();	
	
	alert(url);
	
	xmlHttp.onreadystatechange=stateChangedContact1;	
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null)
}

function stateChangedContact1() { 
	
	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") {
		
		//alert(document.getElementById("captch_value").value);
		var text;		
		
		text = xmlHttp.responseText.replace(/\s/g,"");	
		
		alert(text);
			
		document.getElementById("captch_value").value=text;
	} 
}

function updtae_refer_url(page_name,sitename,geturl) {
	
	xmlHttp=GetXmlHttpObject();
	
	if (xmlHttp==null) {
		alert ("Browser does not support HTTP Request");
		return;
	}
	
	var url=sitename+geturl;	
	
	url=url+"?id=insert_refer_url&page_name="+page_name+"&sid="+Math.random();
	
	//alert(url);
	
	xmlHttp.onreadystatechange=insertRefererUrl;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null)
	
}
function insertRefererUrl() {
	
	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") {
		
		//alert("hiiii");
	}
}

function skpe_show(id1) {
	
	var myarray = id1.split("^"); 
	
	var skpecontarray = ['CN', 'CA','CH','GU','HK','PR','SG','TH','US','AR','AU','AT','BE','CL','HR','CZ','DK','EE','FI','FR','DE','GR','HU','IE','IL','IT','JP','KR','LU','MY','NL','NZ','NO','PL','PT','RU','SK','ES','SE','CH','TW','UK'];

	var cnt=0;
	
	for(var i=0; i<skpecontarray.length;i++) {
		
		if(skpecontarray[i]==myarray[0]) {
			
			cnt=1;
			
			document.getElementById("showskpe").style.display='';
						
			break;
		}
	}
	if(cnt==0) {
		
		document.getElementById("showskpe").style.display='none';
	}
}

//this is used in request call form
function change_deptt_name() {
		
	if(document.getElementById("deptt_name").value=='' || document.getElementById("deptt_name").value=='sales')  {
		
		document.getElementById("supportQry").style.display='none';
	}
	else {
		
		document.getElementById("supportQry").style.display='';
	}
}	

function update_privacy_setting(chk_bx_id,span_id,url) {
	
	var privacy_val = "";
	
	if(document.getElementById(chk_bx_id).checked==false) {
		
		privacy_val = 'N';
	}
	else {
		privacy_val = 'Y';
	}
	
	var domain_name = document.domain;
	var img_path = "";
	
	if(domain_name=='192.168.1.106') {
		
		img_path = "http://192.168.1.106/static/myfolder-images/loading_01.gif";
	}
	else {
		
		img_path = "http://static.exportersindia.com/myfolder-images/loading_01.gif";
	}
	
	var img_dis = "<img src='"+img_path+"'>";
	
	document.getElementById(span_id).innerHTML=img_dis;
	
	xmlHttp=GetXmlHttpObject();
	if (xmlHttp==null) {
		alert ("Browser does not support HTTP Request");
		return;
	}
	var url=url+"&priv_val="+privacy_val+"&span_id="+span_id;
	url=url+"&sid="+Math.random();
	
	xmlHttp.onreadystatechange=show_update_privacy_setting;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null)
}
// End


function show_update_privacy_setting() { 
	
	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") {
	
		var splitResult=xmlHttp.responseText.split('||');
		
		var updated_val = splitResult[0].replace(/\s/g,"");
		
		if(updated_val=='Y') {
		
			document.getElementById(splitResult[1]).setAttribute("class", "n green");
			document.getElementById(splitResult[1]).innerHTML='Enabled';
		}
		else {
			
			document.getElementById(splitResult[1]).setAttribute("class", "n gray");
			document.getElementById(splitResult[1]).innerHTML='Disabled';
		}
	} 
}

function showPiHint(str,sitename,geturl) {
	
	xmlHttp=GetXmlHttpObject();
	
	if (xmlHttp==null) {
		
		alert ("Browser does not support HTTP Request");
		return;
	}
	//document.getElementById('txtHint').innerHTML="<center><img src=\"/static/images/loading.gif\"></center>";
	document.getElementById('txtHint').innerHTML="<b>Please Wait....</b>";
	//document.getElementById("txtHint").innerHTML="<center><img src=\""+imgbaseurl+"/images/loading.gif\"></center>";
	
	var url=sitename+geturl;
	url=url+"&q="+str;
	url=url+"&sid="+Math.random();
	xmlHttp.onreadystatechange=statePiChanged;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null)
}

function statePiChanged() { 
	
	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") {
		
		document.getElementById("txtHint").innerHTML=xmlHttp.responseText;
	} 
}/*!	SWFObject v2.0 <http://code.google.com/p/swfobject/>
	Copyright (c) 2007 Geoff Stearns, Michael Williams, and Bobby van der Sluis
	This software is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/

var swfobject = function() {
	
	var UNDEF = "undefined",
		OBJECT = "object",
		SHOCKWAVE_FLASH = "Shockwave Flash",
		SHOCKWAVE_FLASH_AX = "ShockwaveFlash.ShockwaveFlash",
		FLASH_MIME_TYPE = "application/x-shockwave-flash",
		EXPRESS_INSTALL_ID = "SWFObjectExprInst",
		
		win = window,
		doc = document,
		nav = navigator,
		
		domLoadFnArr = [],
		regObjArr = [],
		timer = null,
		storedAltContent = null,
		storedAltContentId = null,
		isDomLoaded = false,
		isExpressInstallActive = false;
	
	/* Centralized function for browser feature detection
		- Proprietary feature detection (conditional compiling) is used to detect Internet Explorer's features
		- User agent string detection is only used when no alternative is possible
		- Is executed directly for optimal performance
	*/	
	var ua = function() {
		var w3cdom = typeof doc.getElementById != UNDEF && typeof doc.getElementsByTagName != UNDEF && typeof doc.createElement != UNDEF && typeof doc.appendChild != UNDEF && typeof doc.replaceChild != UNDEF && typeof doc.removeChild != UNDEF && typeof doc.cloneNode != UNDEF,
			playerVersion = [0,0,0],
			d = null;
		if (typeof nav.plugins != UNDEF && typeof nav.plugins[SHOCKWAVE_FLASH] == OBJECT) {
			d = nav.plugins[SHOCKWAVE_FLASH].description;
			if (d) {
				d = d.replace(/^.*\s+(\S+\s+\S+$)/, "$1");
				playerVersion[0] = parseInt(d.replace(/^(.*)\..*$/, "$1"), 10);
				playerVersion[1] = parseInt(d.replace(/^.*\.(.*)\s.*$/, "$1"), 10);
				playerVersion[2] = /r/.test(d) ? parseInt(d.replace(/^.*r(.*)$/, "$1"), 10) : 0;
			}
		}
		else if (typeof win.ActiveXObject != UNDEF) {
			var a = null, fp6Crash = false;
			try {
				a = new ActiveXObject(SHOCKWAVE_FLASH_AX + ".7");
			}
			catch(e) {
				try { 
					a = new ActiveXObject(SHOCKWAVE_FLASH_AX + ".6");
					playerVersion = [6,0,21];
					a.AllowScriptAccess = "always";  // Introduced in fp6.0.47
				}
				catch(e) {
					if (playerVersion[0] == 6) {
						fp6Crash = true;
					}
				}
				if (!fp6Crash) {
					try {
						a = new ActiveXObject(SHOCKWAVE_FLASH_AX);
					}
					catch(e) {}
				}
			}
			if (!fp6Crash && a) { // a will return null when ActiveX is disabled
				try {
					d = a.GetVariable("$version");  // Will crash fp6.0.21/23/29
					if (d) {
						d = d.split(" ")[1].split(",");
						playerVersion = [parseInt(d[0], 10), parseInt(d[1], 10), parseInt(d[2], 10)];
					}
				}
				catch(e) {}
			}
		}
		var u = nav.userAgent.toLowerCase(),
			p = nav.platform.toLowerCase(),
			webkit = /webkit/.test(u) ? parseFloat(u.replace(/^.*webkit\/(\d+(\.\d+)?).*$/, "$1")) : false, // returns either the webkit version or false if not webkit
			ie = false,
			windows = p ? /win/.test(p) : /win/.test(u),
			mac = p ? /mac/.test(p) : /mac/.test(u);
		/*@cc_on
			ie = true;
			@if (@_win32)
				windows = true;
			@elif (@_mac)
				mac = true;
			@end
		@*/
		return { w3cdom:w3cdom, pv:playerVersion, webkit:webkit, ie:ie, win:windows, mac:mac };
	}();

	/* Cross-browser onDomLoad
		- Based on Dean Edwards' solution: http://dean.edwards.name/weblog/2006/06/again/
		- Will fire an event as soon as the DOM of a page is loaded (supported by Gecko based browsers - like Firefox -, IE, Opera9+, Safari)
	*/ 
	var onDomLoad = function() {
		if (!ua.w3cdom) {
			return;
		}
		addDomLoadEvent(main);
		if (ua.ie && ua.win) {
			try {  // Avoid a possible Operation Aborted error
				doc.write("<scr" + "ipt id=__ie_ondomload defer=true src=//:></scr" + "ipt>"); // String is split into pieces to avoid Norton AV to add code that can cause errors 
				var s = gibi("__ie_ondomload");
				if (s) {
					s.onreadystatechange = function() {
						if (this.readyState == "complete") {
							this.parentNode.removeChild(this);
							callDomLoadFunctions();
						}
					};
				}
			}
			catch(e) {}
		}
		if (ua.webkit && typeof doc.readyState != UNDEF) {
			timer = setInterval(function() { if (/loaded|complete/.test(doc.readyState)) { callDomLoadFunctions(); }}, 10);
		}
		if (typeof doc.addEventListener != UNDEF) {
			doc.addEventListener("DOMContentLoaded", callDomLoadFunctions, null);
		}
		addLoadEvent(callDomLoadFunctions);
	}();
	
	function callDomLoadFunctions() {
		if (isDomLoaded) {
			return;
		}
		if (ua.ie && ua.win) { // Test if we can really add elements to the DOM; we don't want to fire it too early
			var s = createElement("span");
			try { // Avoid a possible Operation Aborted error
				var t = doc.getElementsByTagName("body")[0].appendChild(s);
				t.parentNode.removeChild(t);
			}
			catch (e) {
				return;
			}
		}
		isDomLoaded = true;
		if (timer) {
			clearInterval(timer);
			timer = null;
		}
		var dl = domLoadFnArr.length;
		for (var i = 0; i < dl; i++) {
			domLoadFnArr[i]();
		}
	}
	
	function addDomLoadEvent(fn) {
		if (isDomLoaded) {
			fn();
		}
		else { 
			domLoadFnArr[domLoadFnArr.length] = fn; // Array.push() is only available in IE5.5+
		}
	}
	
	/* Cross-browser onload
		- Based on James Edwards' solution: http://brothercake.com/site/resources/scripts/onload/
		- Will fire an event as soon as a web page including all of its assets are loaded 
	 */
	function addLoadEvent(fn) {
		if (typeof win.addEventListener != UNDEF) {
			win.addEventListener("load", fn, false);
		}
		else if (typeof doc.addEventListener != UNDEF) {
			doc.addEventListener("load", fn, false);
		}
		else if (typeof win.attachEvent != UNDEF) {
			win.attachEvent("onload", fn);
		}
		else if (typeof win.onload == "function") {
			var fnOld = win.onload;
			win.onload = function() {
				fnOld();
				fn();
			};
		}
		else {
			win.onload = fn;
		}
	}
	
	/* Main function
		- Will preferably execute onDomLoad, otherwise onload (as a fallback)
	*/
	function main() { // Static publishing only
		var rl = regObjArr.length;
		for (var i = 0; i < rl; i++) { // For each registered object element
			var id = regObjArr[i].id;
			if (ua.pv[0] > 0) {
				var obj = gibi(id);
				if (obj) {
					regObjArr[i].width = obj.getAttribute("width") ? obj.getAttribute("width") : "0";
					regObjArr[i].height = obj.getAttribute("height") ? obj.getAttribute("height") : "0";
					if (hasPlayerVersion(regObjArr[i].swfVersion)) { // Flash plug-in version >= Flash content version: Houston, we have a match!
						if (ua.webkit && ua.webkit < 312) { // Older webkit engines ignore the object element's nested param elements
							fixParams(obj);
						}
						setVisibility(id, true);
					}
					else if (regObjArr[i].expressInstall && !isExpressInstallActive && hasPlayerVersion("6.0.65") && (ua.win || ua.mac)) { // Show the Adobe Express Install dialog if set by the web page author and if supported (fp6.0.65+ on Win/Mac OS only)
						showExpressInstall(regObjArr[i]);
					}
					else { // Flash plug-in and Flash content version mismatch: display alternative content instead of Flash content
						displayAltContent(obj);
					}
				}
			}
			else {  // If no fp is installed, we let the object element do its job (show alternative content)
				setVisibility(id, true);
			}
		}
	}
	
	/* Fix nested param elements, which are ignored by older webkit engines
		- This includes Safari up to and including version 1.2.2 on Mac OS 10.3
		- Fall back to the proprietary embed element
	*/
	function fixParams(obj) {
		var nestedObj = obj.getElementsByTagName(OBJECT)[0];
		if (nestedObj) {
			var e = createElement("embed"), a = nestedObj.attributes;
			if (a) {
				var al = a.length;
				for (var i = 0; i < al; i++) {
					if (a[i].nodeName.toLowerCase() == "data") {
						e.setAttribute("src", a[i].nodeValue);
					}
					else {
						e.setAttribute(a[i].nodeName, a[i].nodeValue);
					}
				}
			}
			var c = nestedObj.childNodes;
			if (c) {
				var cl = c.length;
				for (var j = 0; j < cl; j++) {
					if (c[j].nodeType == 1 && c[j].nodeName.toLowerCase() == "param") {
						e.setAttribute(c[j].getAttribute("name"), c[j].getAttribute("value"));
					}
				}
			}
			obj.parentNode.replaceChild(e, obj);
		}
	}
	
	/* Fix hanging audio/video threads and force open sockets and NetConnections to disconnect
		- Occurs when unloading a web page in IE using fp8+ and innerHTML/outerHTML
		- Dynamic publishing only
	*/
	function fixObjectLeaks(id) {
		if (ua.ie && ua.win && hasPlayerVersion("8.0.0")) {
			win.attachEvent("onunload", function () {
				var obj = gibi(id);
				if (obj) {
					for (var i in obj) {
						if (typeof obj[i] == "function") {
							obj[i] = function() {};
						}
					}
					obj.parentNode.removeChild(obj);
				}
			});
		}
	}
	
	/* Show the Adobe Express Install dialog
		- Reference: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=6a253b75
	*/
	function showExpressInstall(regObj) {
		isExpressInstallActive = true;
		var obj = gibi(regObj.id);
		if (obj) {
			if (regObj.altContentId) {
				var ac = gibi(regObj.altContentId);
				if (ac) {
					storedAltContent = ac;
					storedAltContentId = regObj.altContentId;
				}
			}
			else {
				storedAltContent = abstractAltContent(obj);
			}
			if (!(/%$/.test(regObj.width)) && parseInt(regObj.width, 10) < 310) {
				regObj.width = "310";
			}
			if (!(/%$/.test(regObj.height)) && parseInt(regObj.height, 10) < 137) {
				regObj.height = "137";
			}
			doc.title = doc.title.slice(0, 47) + " - Flash Player Installation";
			var pt = ua.ie && ua.win ? "ActiveX" : "PlugIn",
				dt = doc.title,
				fv = "MMredirectURL=" + win.location + "&MMplayerType=" + pt + "&MMdoctitle=" + dt,
				replaceId = regObj.id;
			// For IE when a SWF is loading (AND: not available in cache) wait for the onload event to fire to remove the original object element
			// In IE you cannot properly cancel a loading SWF file without breaking browser load references, also obj.onreadystatechange doesn't work
			if (ua.ie && ua.win && obj.readyState != 4) {
				var newObj = createElement("div");
				replaceId += "SWFObjectNew";
				newObj.setAttribute("id", replaceId);
				obj.parentNode.insertBefore(newObj, obj); // Insert placeholder div that will be replaced by the object element that loads expressinstall.swf
				obj.style.display = "none";
				win.attachEvent("onload", function() { obj.parentNode.removeChild(obj); });
			}
			createSWF({ data:regObj.expressInstall, id:EXPRESS_INSTALL_ID, width:regObj.width, height:regObj.height }, { flashvars:fv }, replaceId);
		}
	}
	
	/* Functions to abstract and display alternative content
	*/
	function displayAltContent(obj) {
		if (ua.ie && ua.win && obj.readyState != 4) {
			// For IE when a SWF is loading (AND: not available in cache) wait for the onload event to fire to remove the original object element
			// In IE you cannot properly cancel a loading SWF file without breaking browser load references, also obj.onreadystatechange doesn't work
			var el = createElement("div");
			obj.parentNode.insertBefore(el, obj); // Insert placeholder div that will be replaced by the alternative content
			el.parentNode.replaceChild(abstractAltContent(obj), el);
			obj.style.display = "none";
			win.attachEvent("onload", function() { obj.parentNode.removeChild(obj); });
		}
		else {
			obj.parentNode.replaceChild(abstractAltContent(obj), obj);
		}
	}	

	function abstractAltContent(obj) {
		var ac = createElement("div");
		if (ua.win && ua.ie) {
			ac.innerHTML = obj.innerHTML;
		}
		else {
			var nestedObj = obj.getElementsByTagName(OBJECT)[0];
			if (nestedObj) {
				var c = nestedObj.childNodes;
				if (c) {
					var cl = c.length;
					for (var i = 0; i < cl; i++) {
						if (!(c[i].nodeType == 1 && c[i].nodeName.toLowerCase() == "param") && !(c[i].nodeType == 8)) {
							ac.appendChild(c[i].cloneNode(true));
						}
					}
				}
			}
		}
		return ac;
	}
	
	/* Cross-browser dynamic SWF creation
	*/
	function createSWF(attObj, parObj, id) {
		var r, el = gibi(id);
		if (typeof attObj.id == UNDEF) { // if no 'id' is defined for the object element, it will inherit the 'id' from the alternative content
			attObj.id = id;
		}
		if (ua.ie && ua.win) { // IE, the object element and W3C DOM methods do not combine: fall back to outerHTML
			var att = "";
			for (var i in attObj) {
				if (attObj[i] != Object.prototype[i]) { // Filter out prototype additions from other potential libraries, like Object.prototype.toJSONString = function() {}
					if (i == "data") {
						parObj.movie = attObj[i];
					}
					else if (i.toLowerCase() == "styleclass") { // 'class' is an ECMA4 reserved keyword
						att += ' class="' + attObj[i] + '"';
					}
					else if (i != "classid") {
						att += ' ' + i + '="' + attObj[i] + '"';
					}
				}
			}
			var par = "";
			for (var j in parObj) {
				if (parObj[j] != Object.prototype[j]) { // Filter out prototype additions from other potential libraries
					par += '<param name="' + j + '" value="' + parObj[j] + '" />';
				}
			}
			el.outerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"' + att + '>' + par + '</object>';
			fixObjectLeaks(attObj.id); // This bug affects dynamic publishing only
			r = gibi(attObj.id);	
		}
		else if (ua.webkit && ua.webkit < 312) { // Older webkit engines ignore the object element's nested param elements: fall back to the proprietary embed element
			var e = createElement("embed");
			e.setAttribute("type", FLASH_MIME_TYPE);
			for (var k in attObj) {
				if (attObj[k] != Object.prototype[k]) { // Filter out prototype additions from other potential libraries
					if (k == "data") {
						e.setAttribute("src", attObj[k]);
					}
					else if (k.toLowerCase() == "styleclass") { // 'class' is an ECMA4 reserved keyword
						e.setAttribute("class", attObj[k]);
					}
					else if (k != "classid") { // Filter out IE specific attribute
						e.setAttribute(k, attObj[k]);
					}
				}
			}
			for (var l in parObj) {
				if (parObj[l] != Object.prototype[l]) { // Filter out prototype additions from other potential libraries
					if (l != "movie") { // Filter out IE specific param element
						e.setAttribute(l, parObj[l]);
					}
				}
			}
			el.parentNode.replaceChild(e, el);
			r = e;
		}
		else { // Well-behaving browsers
			var o = createElement(OBJECT);
			o.setAttribute("type", FLASH_MIME_TYPE);
			for (var m in attObj) {
				if (attObj[m] != Object.prototype[m]) { // Filter out prototype additions from other potential libraries
					if (m.toLowerCase() == "styleclass") { // 'class' is an ECMA4 reserved keyword
						o.setAttribute("class", attObj[m]);
					}
					else if (m != "classid") { // Filter out IE specific attribute
						o.setAttribute(m, attObj[m]);
					}
				}
			}
			for (var n in parObj) {
				if (parObj[n] != Object.prototype[n] && n != "movie") { // Filter out prototype additions from other potential libraries and IE specific param element
					createObjParam(o, n, parObj[n]);
				}
			}
			el.parentNode.replaceChild(o, el);
			r = o;
		}
		return r;
	}
	
	function createObjParam(el, pName, pValue) {
		var p = createElement("param");
		p.setAttribute("name", pName);	
		p.setAttribute("value", pValue);
		el.appendChild(p);
	}
	
	function gibi(id) {
		return doc.getElementById(id);
	}
	
	function createElement(el) {
		return doc.createElement(el);
	}
	
	function hasPlayerVersion(rv) {
		var pv = ua.pv, v = rv.split(".");
		v[0] = parseInt(v[0], 10);
		v[1] = parseInt(v[1], 10);
		v[2] = parseInt(v[2], 10);
		return (pv[0] > v[0] || (pv[0] == v[0] && pv[1] > v[1]) || (pv[0] == v[0] && pv[1] == v[1] && pv[2] >= v[2])) ? true : false;
	}
	
	/* Cross-browser dynamic CSS creation
		- Based on Bobby van der Sluis' solution: http://www.bobbyvandersluis.com/articles/dynamicCSS.php
	*/	
	function createCSS(sel, decl) {
		if (ua.ie && ua.mac) {
			return;
		}
		var h = doc.getElementsByTagName("head")[0], s = createElement("style");
		s.setAttribute("type", "text/css");
		s.setAttribute("media", "screen");
		if (!(ua.ie && ua.win) && typeof doc.createTextNode != UNDEF) {
			s.appendChild(doc.createTextNode(sel + " {" + decl + "}"));
		}
		h.appendChild(s);
		if (ua.ie && ua.win && typeof doc.styleSheets != UNDEF && doc.styleSheets.length > 0) {
			var ls = doc.styleSheets[doc.styleSheets.length - 1];
			if (typeof ls.addRule == OBJECT) {
				ls.addRule(sel, decl);
			}
		}
	}
	
	function setVisibility(id, isVisible) {
		var v = isVisible ? "visible" : "hidden";
		if (isDomLoaded) {
			gibi(id).style.visibility = v;
		}
		else {
			createCSS("#" + id, "visibility:" + v);
		}
	}
	
	function getTargetVersion(obj) {
	    if (!obj)
	        return 0;
		var c = obj.childNodes;
		var cl = c.length;
		for (var i = 0; i < cl; i++) {
			if (c[i].nodeType == 1 && c[i].nodeName.toLowerCase() == "object") {
			    c = c[i].childNodes;
			    cl = c.length;
			    i = 0;
			}     
			if (c[i].nodeType == 1 && c[i].nodeName.toLowerCase() == "param" && c[i].getAttribute("name") == "swfversion") {
			   return c[i].getAttribute("value"); 
			}
		}
		return 0;
	}
    
	function getExpressInstall(obj) {
	    if (!obj)
	        return "";
		var c = obj.childNodes;
		var cl = c.length;
		for (var i = 0; i < cl; i++) {
			if (c[i].nodeType == 1 && c[i].nodeName.toLowerCase() == "object") {
			    c = c[i].childNodes;
			    cl = c.length;
			    i = 0;
			}     
			if (c[i].nodeType == 1 && c[i].nodeName.toLowerCase() == "param" && c[i].getAttribute("name") == "expressinstall") { 
			    return c[i].getAttribute("value"); 
			}	       
		}
		return "";
	}
    
	return {
		/* Public API
			- Reference: http://code.google.com/p/swfobject/wiki/SWFObject_2_0_documentation
		*/ 
		registerObject: function(objectIdStr, swfVersionStr, xiSwfUrlStr) {
			if (!ua.w3cdom || !objectIdStr) {
				return;
			}
			var obj = document.getElementById(objectIdStr);
			var xi = getExpressInstall(obj);
			var regObj = {};
			regObj.id = objectIdStr;
			regObj.swfVersion = swfVersionStr ? swfVersionStr : getTargetVersion(obj);
			regObj.expressInstall = xiSwfUrlStr ? xiSwfUrlStr : ((xi != "") ? xi : false);
			regObjArr[regObjArr.length] = regObj;
			setVisibility(objectIdStr, false);
		},
		
		getObjectById: function(objectIdStr) {
			var r = null;
			if (ua.w3cdom && isDomLoaded) {
				var o = gibi(objectIdStr);
				if (o) {
					var n = o.getElementsByTagName(OBJECT)[0];
					if (!n || (n && typeof o.SetVariable != UNDEF)) {
				    	r = o;
					}
					else if (typeof n.SetVariable != UNDEF) {
						r = n;
					}
				}
			}
			return r;
		},
		
		embedSWF: function(swfUrlStr, replaceElemIdStr, widthStr, heightStr, swfVersionStr, xiSwfUrlStr, flashvarsObj, parObj, attObj) {
			if (!ua.w3cdom || !swfUrlStr || !replaceElemIdStr || !widthStr || !heightStr || !swfVersionStr) {
				return;
			}
			widthStr += ""; // Auto-convert to string to make it idiot proof
			heightStr += "";
			if (hasPlayerVersion(swfVersionStr)) {
				setVisibility(replaceElemIdStr, false);
				var att = (typeof attObj == OBJECT) ? attObj : {};
				att.data = swfUrlStr;
				att.width = widthStr;
				att.height = heightStr;
				var par = (typeof parObj == OBJECT) ? parObj : {};
				if (typeof flashvarsObj == OBJECT) {
					for (var i in flashvarsObj) {
						if (flashvarsObj[i] != Object.prototype[i]) { // Filter out prototype additions from other potential libraries
							if (typeof par.flashvars != UNDEF) {
								par.flashvars += "&" + i + "=" + flashvarsObj[i];
							}
							else {
								par.flashvars = i + "=" + flashvarsObj[i];
							}
						}
					}
				}
				addDomLoadEvent(function() {
					createSWF(att, par, replaceElemIdStr);
					if (att.id == replaceElemIdStr) {
						setVisibility(replaceElemIdStr, true);
					}
				});
			}
			else if (xiSwfUrlStr && !isExpressInstallActive && hasPlayerVersion("6.0.65") && (ua.win || ua.mac)) {
				setVisibility(replaceElemIdStr, false);
				addDomLoadEvent(function() {
					var regObj = {};
					regObj.id = regObj.altContentId = replaceElemIdStr;
					regObj.width = widthStr;
					regObj.height = heightStr;
					regObj.expressInstall = xiSwfUrlStr;
					showExpressInstall(regObj);
				});
			}
		},
		
		getFlashPlayerVersion: function() {
			return { major:ua.pv[0], minor:ua.pv[1], release:ua.pv[2] };
		},
		
		hasFlashPlayerVersion:hasPlayerVersion,
		
		createSWF: function(attObj, parObj, replaceElemIdStr) {
			if (ua.w3cdom && isDomLoaded) {
				return createSWF(attObj, parObj, replaceElemIdStr);
			}
			else {
				return undefined;
			}
		},
		
		createCSS: function(sel, decl) {
			if (ua.w3cdom) {
				createCSS(sel, decl);
			}
		},
		
		addDomLoadEvent:addDomLoadEvent,
		
		addLoadEvent:addLoadEvent,
		
		getQueryParamValue: function(param) {
			var q = doc.location.search || doc.location.hash;
			if (param == null) {
				return q;
			}
		 	if(q) {
				var pairs = q.substring(1).split("&");
				for (var i = 0; i < pairs.length; i++) {
					if (pairs[i].substring(0, pairs[i].indexOf("=")) == param) {
						return pairs[i].substring((pairs[i].indexOf("=") + 1));
					}
				}
			}
			return "";
		},
		
		// For internal usage only
		expressInstallCallback: function() {
			if (isExpressInstallActive && storedAltContent) {
				var obj = gibi(EXPRESS_INSTALL_ID);
				if (obj) {
					obj.parentNode.replaceChild(storedAltContent, obj);
					if (storedAltContentId) {
						setVisibility(storedAltContentId, true);
						if (ua.ie && ua.win) {
							storedAltContent.style.display = "block";
						}
					}
					storedAltContent = null;
					storedAltContentId = null;
					isExpressInstallActive = false;
				}
			} 
		}
		
	};

}();
;(function(b){function H(){v.hide();r.onerror=r.onload=null;F&&F.abort();l.empty()}function Q(){b.fancybox('<p id="fancybox_error">The requested content cannot be loaded.<br />Please try again later.</p>',{scrolling:"no",padding:20,transitionIn:"none",transitionOut:"none"})}function B(){H();var a=q[s];e=b.extend({},b.fn.fancybox.defaults,typeof b(a).data("fancybox")=="undefined"?e:b(a).data("fancybox"));var d,f,o=a.title||b(a).title||e.title||"";if(a.nodeName&&!e.orig)e.orig=b(a).children("img:first").length?b(a).children("img:first"):b(a);if(o==""&&e.orig)o=e.orig.attr("alt");d=a.nodeName&&/^(?:javascript|#)/i.test(a.href)?e.href||null:e.href||a.href||null;if(e.type){f=e.type;if(!d)d=e.content}else if(e.content)f="html";else if(d)if(d.match(I))f="image";else if(d.match(T))f="swf";else if(b(a).hasClass("iframe"))f="iframe";else if(d.match(/#/)){a=d.substr(d.indexOf("#"));f=b(a).length>0?"inline":"ajax"}else f="ajax";else f="inline";e.type=f;e.href=d;e.title=o;if(e.autoDimensions&&e.type!=="iframe"&&e.type!=="swf"){e.width="auto";e.height="auto"}if(e.modal){e.overlayShow=true;e.hideOnOverlayClick=false;e.hideOnContentClick=false;e.enableEscapeButton=false;e.showCloseButton=false}if(b.isFunction(e.onStart))if(e.onStart(q,s,e)===false){h=false;return}l.css("padding",t+e.padding+e.margin);b(".fancybox-inline-tmp").unbind("fancybox-cancel").bind("fancybox-change",function(){b(this).replaceWith(i.children())});switch(f){case"html":l.html(e.content);G();break;case"inline":b('<div class="fancybox-inline-tmp" />').hide().insertBefore(b(a)).bind("fancybox-cleanup",function(){b(this).replaceWith(i.children())}).bind("fancybox-cancel",function(){b(this).replaceWith(l.children())});b(a).appendTo(l);G();break;case"image":h=false;b.fancybox.showActivity();r=new Image;r.onerror=function(){Q()};r.onload=function(){r.onerror=null;r.onload=null;U()};r.src=d;break;case"swf":var u="",w="";u+='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+e.width+'" height="'+e.height+'"><param name="movie" value="'+d+'"></param>';b.each(e.swf,function(p,R){u+='<param name="'+p+'" value="'+R+'"></param>';w+=" "+p+'="'+R+'"'});u+='<embed src="'+d+'" type="application/x-shockwave-flash" width="'+e.width+'" height="'+e.height+'"'+w+"></embed></object>";l.html(u);G();break;case"ajax":a=d.split("#",2);f=e.ajax.data||{};if(a.length>1){d=a[0];typeof f=="string"?(f+="&selector="+a[1]):(f.selector=a[1])}h=false;b.fancybox.showActivity();F=b.ajax(b.extend(e.ajax,{url:d,data:f,error:Q,success:function(p){if(F.status==200){l.html(p);G()}}}));break;case"iframe":b('<iframe id="fancybox-frame" name="fancybox-frame'+(new Date).getTime()+'" frameborder="0" hspace="0" scrolling="'+e.scrolling+'" src="'+e.href+'"></iframe>').appendTo(l);J();break}}function U(){h=true;e.width=r.width;e.height=r.height;b("<img />").attr({id:"fancybox-img",src:r.src,alt:e.title}).appendTo(l);J()}function G(){l.width(e.width);l.height(e.height);if(e.width=="auto")e.width=l.width();if(e.height=="auto")e.height=l.height();J()}function J(){v.hide();if(g.is(":visible")&&b.isFunction(c.onCleanup))if(c.onCleanup(j,n,c)===false){b.event.trigger("fancybox-cancel");h=false;return}j=q;n=s;c=e;i.get(0).scrollTop=0;i.get(0).scrollLeft=0;if(c.overlayShow){K&&b("select:not(#fancybox-tmp select)").filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one("fancybox-cleanup",function(){this.style.visibility="inherit"});y.css({"background-color":c.overlayColor,opacity:c.overlayOpacity}).unbind().show()}m=V();W();if(g.is(":visible")){b(z.add(C).add(D)).hide();var a=g.position();k={top:a.top,left:a.left,width:g.width(),height:g.height()};var d=k.width==m.width&&k.height==m.height;i.fadeOut(c.changeFade,function(){function f(){i.html(l.contents()).fadeIn(c.changeFade,L)}b.event.trigger("fancybox-change");i.css({top:c.padding,left:c.padding,width:Math.max(k.width-c.padding*2,1),height:Math.max(k.height-c.padding*2,1)}).empty().css("overflow","hidden");A.prop=0;b(A).animate({prop:1},{duration:d?0:c.changeSpeed,easing:c.easingChange,step:M,complete:f})})}else{g.css("opacity",1);if(c.transitionIn=="elastic"){k=S();i.css({top:c.padding,left:c.padding,width:Math.max(k.width-c.padding*2,1),height:Math.max(k.height-c.padding*2,1)}).html(l.contents());g.css(k).show();if(c.opacity)m.opacity=0;A.prop=0;b(A).animate({prop:1},{duration:c.speedIn,easing:c.easingIn,step:M,complete:L})}else{i.css({top:c.padding,left:c.padding,width:Math.max(m.width-c.padding*2,1),height:Math.max(m.height-c.padding*2-x,1)}).html(l.contents());g.css(m).fadeIn(c.transitionIn=="none"?0:c.speedIn,L)}}}function M(a){var d=Math.round(k.width+(m.width-k.width)*a),f=Math.round(k.height+(m.height-k.height)*a),o=Math.round(k.top+(m.top-k.top)*a),u=Math.round(k.left+(m.left-k.left)*a);g.css({width:d+"px",height:f+"px",top:o+"px",left:u+"px"});d=Math.max(d-c.padding*2,0);f=Math.max(f-(c.padding*2+x*a),0);i.css({width:d+"px",height:f+"px"});if(typeof m.opacity!=="undefined")g.css("opacity",a<0.5?0.5:a)}function L(){i.css("overflow",overflow=c.scrolling=="auto"?c.type=="image"||c.type=="iframe"||c.type=="swf"?"hidden":"auto":c.scrolling=="yes"?"auto":"visible");if(!b.support.opacity){i.get(0).style.removeAttribute("filter");g.get(0).style.removeAttribute("filter")}b("#fancybox-title").show();c.hideOnContentClick&&i.one("click",b.fancybox.close);c.hideOnOverlayClick&&y.one("click",b.fancybox.close);c.showCloseButton&&z.show();X();b(window).bind("resize.fb",b.fancybox.center);c.centerOnScroll?b(window).bind("scroll.fb",b.fancybox.center):b(window).unbind("scroll.fb");b.isFunction(c.onComplete)&&c.onComplete(j,n,c);h=false;Y()}function V(){var a=N(),d={},f=c.margin,o=c.autoScale,u=(t+f)*2,w=(t+f)*2,p=c.padding*2;if(c.width.toString().indexOf("%")>-1){d.width=a[0]*parseFloat(c.width)/100-t*2;o=false}else d.width=c.width+p;if(c.height.toString().indexOf("%")>-1){d.height=a[1]*parseFloat(c.height)/100-t*2;o=false}else d.height=c.height+p;if(o&&(d.width>a[0]-u||d.height>a[1]-w))if(e.type=="image"||e.type=="swf"){u+=p;w+=p;o=Math.min(Math.min(a[0]-u,c.width)/c.width,Math.min(a[1]-w,c.height)/c.height);d.width=Math.round(o*(d.width-p))+p;d.height=Math.round(o*(d.height-p))+p}else{d.width=Math.min(d.width,a[0]-u);d.height=Math.min(d.height,a[1]-w)}d.top=a[3]+(a[1]-(d.height+t*2))*0.5;d.left=a[2]+(a[0]-(d.width+t*2))*0.5;if(c.autoScale==false){d.top=Math.max(a[3]+f,d.top);d.left=Math.max(a[2]+f,d.left)}return d}function S(){var a=e.orig?b(e.orig):false,d={};if(a&&a.length){a=Z(a);d={width:a.width+c.padding*2,height:a.height+c.padding*2,top:a.top-c.padding-t,left:a.left-c.padding-t}}else{a=N();d={width:1,height:1,top:a[3]+a[1]*0.5,left:a[2]+a[0]*0.5}}return d}function X(){b(document).unbind("keydown.fb").bind("keydown.fb",function(a){if(a.keyCode==27&&c.enableEscapeButton){a.preventDefault();b.fancybox.close()}else if(a.keyCode==37){a.preventDefault();b.fancybox.prev()}else if(a.keyCode==39){a.preventDefault();b.fancybox.next()}});if(b.fn.mousewheel){g.unbind("mousewheel.fb");j.length>1&&g.bind("mousewheel.fb",function(a,d){a.preventDefault();h||d==0||(d>0?b.fancybox.prev():b.fancybox.next())})}if(c.showNavArrows){if(c.cyclic&&j.length>1||n!=0)C.show();if(c.cyclic&&j.length>1||n!=j.length-1)D.show()}}function Y(){if(j.length-1>n){var a=j[n+1].href;if(typeof a!=="undefined"&&a.match(I)){var d=new Image;d.src=a}}if(n>0){a=j[n-1].href;if(typeof a!=="undefined"&&a.match(I)){d=new Image;d.src=a}}}function $(){if(v.is(":visible")){b("div",v).css("top",O*-40+"px");O=(O+1)%12}else clearInterval(P)}function N(){return[b(window).width(),b(window).height(),b(document).scrollLeft(),b(document).scrollTop()]}function Z(a){var d=a.offset();d.top+=parseFloat(a.css("paddingTop"))||0;d.left+=parseFloat(a.css("paddingLeft"))||0;d.top+=parseFloat(a.css("border-top-width"))||0;d.left+=parseFloat(a.css("border-left-width"))||0;d.width=a.width();d.height=a.height();return d}function W(){b("#fancybox-title").remove();x=0;if(c.titleShow!=false){var a=c.title;a=b.isFunction(c.titleFormat)?c.titleFormat(a,j,n,c):aa(a);if(!(!a||a=="")){var d=m.width-c.padding*2;b('<div id="fancybox-title" class="'+("fancybox-title-"+c.titlePosition)+'" />').css({width:d,paddingLeft:c.padding,paddingRight:c.padding}).html(a).appendTo("body");switch(c.titlePosition){case"inside":x=b("#fancybox-title").outerHeight(true)-c.padding;m.height+=x;break;case"over":b("#fancybox-title").css("bottom",c.padding);break;default:b("#fancybox-title").css("bottom",b("#fancybox-title").outerHeight(true)*-1);break}b("#fancybox-title").appendTo(E).hide();K&&b("#fancybox-title span").fixPNG()}}}function aa(a){if(a&&a.length)switch(c.titlePosition){case"inside":return a;case"over":return'<span id="fancybox-title-over">'+a+"</span>";default:return'<span id="fancybox-title-wrap"><span id="fancybox-title-left"></span><span id="fancybox-title-main">'+a+'</span><span id="fancybox-title-right"></span></span>'}return false}function ba(){if(!b("#fancybox-wrap").length){b("body").append(l=b('<div id="fancybox-tmp"></div>'),v=b('<div id="fancybox-loading"><div></div></div>'),y=b('<div id="fancybox-overlay"></div>'),g=b('<div id="fancybox-wrap"></div>'));E=b('<div id="fancybox-outer"></div>').append('<div class="fancy-bg" id="fancy-bg-n"></div><div class="fancy-bg" id="fancy-bg-ne"></div><div class="fancy-bg" id="fancy-bg-e"></div><div class="fancy-bg" id="fancy-bg-se"></div><div class="fancy-bg" id="fancy-bg-s"></div><div class="fancy-bg" id="fancy-bg-sw"></div><div class="fancy-bg" id="fancy-bg-w"></div><div class="fancy-bg" id="fancy-bg-nw"></div>').appendTo(g);E.append(i=b('<div id="fancybox-inner"></div>'),z=b('<a id="fancybox-close"></a>'),C=b('<a href="javascript:;" id="fancybox-left"><span class="fancy-ico" id="fancybox-left-ico"></span></a>'),D=b('<a href="javascript:;" id="fancybox-right"><span class="fancy-ico" id="fancybox-right-ico"></span></a>'));z.click(b.fancybox.close);v.click(b.fancybox.cancel);C.click(function(a){a.preventDefault();b.fancybox.prev()});D.click(function(a){a.preventDefault();b.fancybox.next()});b.support.opacity||E.find(".fancy-bg").fixPNG();if(K){b(z.add(".fancy-ico").add("div",v)).fixPNG();y.get(0).style.setExpression("height","document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px'");v.get(0).style.setExpression("top","(-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px'");E.prepend('<iframe id="fancybox-hide-sel-frame" src="javascript:\'\';" scrolling="no" frameborder="0" ></iframe>')}}}var l,v,y,g,E,i,z,C,D,s=0,e={},q=[],n=0,c={},j=[],F=null,r=new Image,I=/\.(jpg|gif|png|bmp|jpeg)(.*)?$/i,T=/[^\.]\.(swf)\s*$/i,P,O=1,k,m,h=false,t=20,A=b.extend(b("<div/>")[0],{prop:0}),x=0,K=!b.support.opacity&&!window.XMLHttpRequest;b.fn.fixPNG=function(){return this.each(function(){var a=b(this).css("backgroundImage");if(a.match(/^url\(["']?(.*\.png)["']?\)$/i)){a=RegExp.$1;b(this).css({backgroundImage:"none",filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod="+(b(this).css("backgroundRepeat")=="no-repeat"?"crop":"scale")+", src='"+a+"')"}).each(function(){var d=b(this).css("position");d!="absolute"&&d!="relative"&&b(this).css("position","relative")}).css("zoom",1)}})};b.fn.fancybox=function(a){b(this).data("fancybox",b.extend({},a));b(this).unbind("click.fb").bind("click.fb",function(d){d.preventDefault();if(!h){h=true;b(this).blur();q=[];s=0;d=b(this).attr("rel")||"";if(!d||d==""||d==="nofollow")q.push(this);else{q=b("a[rel="+d+"], area[rel="+d+"]");s=q.index(this)}B();return false}});return this};b.fancybox=function(a,d){if(!h){h=true;q=[];s=0;if(b.isArray(a)){for(var f=0,o=a.length;f<o;f++)if(typeof a[f]=="object")b(a[f]).data("fancybox",b.extend({},d,a[f]));else a[f]=b({}).data("fancybox",b.extend({content:a[f]},d));q=jQuery.merge(q,a)}else{if(typeof a=="object")b(a).data("fancybox",b.extend({},d,a));else a=b({}).data("fancybox",b.extend({content:a},d));q.push(a)}B()}};b.fancybox.showActivity=function(){clearInterval(P);v.show();P=setInterval($,66)};b.fancybox.hideActivity=function(){v.hide()};b.fancybox.next=function(){return b.fancybox.pos(n+1)};b.fancybox.prev=function(){return b.fancybox.pos(n-1)};b.fancybox.pos=function(a){if(!h){a=parseInt(a);if(a>-1&&j.length>a){s=a;B()}if(c.cyclic&&j.length>1&&a<0){s=j.length-1;B()}if(c.cyclic&&j.length>1&&a>=j.length){s=0;B()}}};b.fancybox.cancel=function(){if(!h){h=true;b.event.trigger("fancybox-cancel");H();e&&b.isFunction(e.onCancel)&&e.onCancel(q,s,e);h=false}};b.fancybox.close=function(){function a(){y.fadeOut("fast");g.hide();b.event.trigger("fancybox-cleanup");i.empty();b.isFunction(c.onClosed)&&c.onClosed(j,n,c);j=e=[];n=s=0;c=e={};h=false}if(!(h||g.is(":hidden"))){h=true;if(c&&b.isFunction(c.onCleanup))if(c.onCleanup(j,n,c)===false){h=false;return}H();b(z.add(C).add(D)).hide();b("#fancybox-title").remove();g.add(i).add(y).unbind();b(window).unbind("resize.fb scroll.fb");b(document).unbind("keydown.fb");i.css("overflow","hidden");if(c.transitionOut=="elastic"){k=S();var d=g.position();m={top:d.top,left:d.left,width:g.width(),height:g.height()};if(c.opacity)m.opacity=1;A.prop=1;b(A).animate({prop:0},{duration:c.speedOut,easing:c.easingOut,step:M,complete:a})}else g.fadeOut(c.transitionOut=="none"?0:c.speedOut,a)}};b.fancybox.resize=function(){if(!(h||g.is(":hidden"))){h=true;var a=i.wrapInner("<div style='overflow:auto'></div>").children(),d=a.height();g.css({height:d+c.padding*2+x});i.css({height:d});a.replaceWith(a.children());b.fancybox.center()}};b.fancybox.center=function(){h=true;var a=N(),d=c.margin,f={};f.top=a[3]+(a[1]-(g.height()-x+t*2))*0.5;f.left=a[2]+(a[0]-(g.width()+t*2))*0.5;f.top=Math.max(a[3]+d,f.top);f.left=Math.max(a[2]+d,f.left);g.css(f);h=false};b.fn.fancybox.defaults={padding:10,margin:20,opacity:false,modal:false,cyclic:false,scrolling:"auto",width:560,height:340,autoScale:true,autoDimensions:true,centerOnScroll:false,ajax:{},swf:{wmode:"transparent"},hideOnOverlayClick:true,hideOnContentClick:false,overlayShow:true,overlayOpacity:0.3,overlayColor:"#666",titleShow:true,titlePosition:"outside",titleFormat:null,transitionIn:"fade",transitionOut:"fade",speedIn:200,speedOut:200,changeSpeed:200,changeFade:"fast",easingIn:"swing",easingOut:"swing",showCloseButton:true,showNavArrows:true,enableEscapeButton:true,onStart:null,onCancel:null,onComplete:null,onCleanup:null,onClosed:null};b(document).ready(function(){ba()})})(jQuery);(function($){
	$(document).ready(function(){
		//$('a[rel="showVideo"]')
		$('a.showVideo').click(function() {
			$.fancybox({
					//'padding'		: 0,
					'autoScale'		: false,
					'transitionIn'	: 'none',
					'transitionOut'	: 'none',
					'title'			: this.title,
					'width'			: 450,
					'height'		: 350,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf',
					'swf'			: {
						 'wmode'		: 'transparent',
						'allowfullscreen'	: 'true'
					}
				});
		
			return false;
		});
	})
})(jQuery);function ei_live_chat(){window.$zopim||(function(d,s){var z=$zopim=function(c){z._.push(c)},$=z.s=d.createElement(s),e=d.getElementsByTagName(s)[0];z.set=function(o){z.set._.push(o)};z._=[];z.set._=[];$.async=!0;$.setAttribute("charset","utf-8");$.src="//cdn.zopim.com/?zmK82ijhAu768VDibqfC86uNiYfprvYV";z.t=+new Date;$.type="text/javascript";e.parentNode.insertBefore($,e)})(document,"script");}function setMyVar(val) {
	
	if(document.getElementById('zopim')) {
		
		document.getElementById('zopim').style.display='none';
	}
	
	if(document.domain=='192.168.1.106') {
		
		Set_Cookie( 'opne_live_chat',val, 1, '/', '', '');
	}
	else {
		
		Set_Cookie( 'opne_live_chat',val, 1, '/', '.exportersindia.com', '');
	}
	
	if(val=='Y') {
		
		ei_live_chat();
	}
}

function Set_Cookie( name, value, expires, path, domain, secure ) {
	
	// set time, it's in milliseconds
	var today = new Date();
	today.setTime( today.getTime() );
	
	/*
	if the expires variable is set, make the correct
	expires time, the current script below will set
	it for x number of days, to make it for hours,
	delete * 24, for minutes, delete * 60 * 24
	*/
	if ( expires ) {
		
		expires = expires * 1000 * 60 * 60 * 1;
	}
	var expires_date = new Date( today.getTime() + (expires) );
	
	document.cookie = name + "=" +escape( value ) +
	( ( expires ) ? ";expires=" + expires_date.toGMTString() : "" ) +
	( ( path ) ? ";path=" + path : "" ) +
	( ( domain ) ? ";domain=" + domain : "" ) +
	( ( secure ) ? ";secure" : "" );
}


function live_chat_action(){
			
	id=document.getElementById('zopim');
	windowHeight = window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
	id.style.display='';
	id.style.top=(windowHeight-106)/2+'px';
}

var cokkie_arr = document.cookie.split('; ');
var cookie_res = '';
var my_cookie_chat_val = "";

for(var i=0;i<cokkie_arr.length;i++) {
	
	cookie_res = cokkie_arr[i].split('=');
	
	if(cookie_res[0]=='opne_live_chat') {
		
		my_cookie_chat_val = cookie_res[1];
		break;
	}
}
if(my_cookie_chat_val=='') {

	var showabcIimeout = setTimeout("live_chat_action()",5000);
}
else if(my_cookie_chat_val=='Y') {
	
	ei_live_chat();
}function ei_notification() {
	
	var val="N";
	
	if(document.domain=='192.168.1.106') {
		
		Set_Cookie( 'open_notification',val, 1, '/', '', '');
	}
	else {
		
		Set_Cookie( 'open_notification',val, 1, '/', '.exportersindia.com', '');
	}	
}

function setMyVar_notification(val) {
	
	if(document.domain=='192.168.1.106') {
		
		Set_Cookie( 'open_notification',val, 1, '/', '', '');
	}
	else {
		
		Set_Cookie( 'open_notification',val, 1, '/', '.exportersindia.com', '');
	}
	
	if(val=='Y') {
		
		ei_notification();
	}
}

function Set_Cookie( name, value, expires, path, domain, secure ) {
	
	// set time, it's in milliseconds
	var today = new Date();
	today.setTime( today.getTime() );
	
	/*
	if the expires variable is set, make the correct
	expires time, the current script below will set
	it for x number of days, to make it for hours,
	delete * 24, for minutes, delete * 60 * 24
	*/
	if ( expires ) {
		
		expires = expires * 1000 * 60 * 60 * 1;
	}
	var expires_date = new Date( today.getTime() + (expires) );
	
	document.cookie = name + "=" +escape( value ) +
	( ( expires ) ? ";expires=" + expires_date.toGMTString() : "" ) +
	( ( path ) ? ";path=" + path : "" ) +
	( ( domain ) ? ";domain=" + domain : "" ) +
	( ( secure ) ? ";secure" : "" );
}


var cokkie_arr = document.cookie.split('; ');

var cookie_res = '';

var my_cookie_notification = "";

for(var i=0;i<cokkie_arr.length;i++) {
	
	cookie_res = cokkie_arr[i].split('=');
	
	if(cookie_res[0]=='open_notification') {
		
		my_cookie_notification = cookie_res[1];
		
		break;
	}
}

if(my_cookie_notification=='Y') {
	
	ei_notification();
}function request_call_valid(frm) {
	
	if (chktrim(frm.yourname.value).length==0) {
	    
	    alert("Please Enter Your Name.");
	    frm.yourname.focus();
		return false;
	}
	
	if (chktrim(frm.compname.value).length==0) {
	    
	    alert("Please Enter Your Company Name.");
	    frm.compname.focus();
		return false;
	}
	
	if(frm.check_login.value=="N") {
		
		if (chktrim(frm.email_address.value).length==0) {
		    
		    alert("Please Enter Your E-mail Address.");
		    frm.email_address.focus();
			return false;
		}
	      	
	   	var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
	   		
		if(reg.test(frm.email_address.value) == false) {
	
			alert("Invalid Email Address.");
			frm.email_address.focus();
			return false;
		}
			
		if (frm.email_address.value.indexOf('@') != frm.email_address.value.lastIndexOf('@')) {
			
			alert("Please Specify One E-mail address only.");
		    frm.email_address.focus();
		    return false;
		}
		
		//To check 'india mart,alibaba etc. words
		if(isProhibited(frm.email_address)) {
			
	   		return false;
		}
		
		if (chktrim(frm.country1.value).length==0) {
		    
		    alert("Please Enter Your Country.");
		    frm.country1.focus();
			return false;
		}
		
		
		if (chktrim(frm.mobile_phone.value).length==0) {
		    
		    alert("Please Enter Your Mobile Phone.");
		    frm.mobile_phone.focus();
			return false;
		}
		
		//Indian Member Case
		if ((frm.mobile_phone.value.length<10 || frm.mobile_phone.value.length>10) && frm.country1.options[frm.country1.selectedIndex].value=="IN^91") {
		
		   alert("Mobile Number Should be 10 Digits.");
		   frm.mobile_phone.focus();
		   return false;
	    }
	
	    //foreign Member Case
		if ((frm.mobile_phone.value.length<3) && frm.country1.options[frm.country1.selectedIndex].value!="IN^91") {
	
			alert("Mobile Number Should be at least 3 Digits.");
			frm.mobile_phone.focus();
			return false;
		}
	}
	else {
	
		if (chktrim(frm.mobile_phone.value).length==0) {
			    
		    alert("Please Enter Your Mobile Phone.");
		    frm.mobile_phone.focus();
			return false;
		}
		
		//Indian Member Case
		if ((frm.mobile_phone.value.length<10 || frm.mobile_phone.value.length>10) && frm.country1.value=="IN") {
		
		   alert("Mobile Number Should be 10 Digits.");
		   frm.mobile_phone.focus();
		   return false;
	    }
	
	    //foreign Member Case
		if ((frm.mobile_phone.value.length<3) && frm.country1.value!="IN") {
	
			alert("Mobile Number Should be at least 3 Digits.");
			frm.mobile_phone.focus();
			return false;
		}
	}
	
	if(frm.deptt_name.options[frm.deptt_name.selectedIndex].value=='') {
	
		alert("Please Select Department for Request Call.");
		frm.deptt_name.focus();
		return false;
	}
		
	if(frm.deptt_name.options[frm.deptt_name.selectedIndex].value=="support" && frm.support_qry.value.length==0) {
		
		alert("Please Enter Support Query.");
		frm.support_qry.focus();
		return false;
	}
	
	/*
	if (chktrim(frm.captcha_code.value).length==0) {
		    
		    alert("Please Enter Captcha Code.");
		    frm.mobile_phone.focus();
			return false;
	 }
	 */
	 
}

function get_country_code(id1){
	
	var myarray = id1.split("^"); 
	
	document.getElementById("phccode").value=myarray[1];	
}
var common={
	hideShow:function(options){
		if(typeof options.hide == "string"){
			if(options.jQuery && options.jQuery==true){
				jQuery('#'+options.hide).slideUp('slow');
			}
			else{
				document.getElementById(options.hide).style.display='none';
			}
		}
		
		if(typeof options.show == "string"){
			if(options.jQuery && options.jQuery==true){
				jQuery('#'+options.show).slideUp('slow');
			}
			else{
				document.getElementById(options.show).style.display='';
			}
		}
		
		
		
		if(typeof options.hide == "object"){
			if(options.hide.length > 0){
				for(i=0; i<options.hide.length; i++){
					if(options.jQuery && options.jQuery==true){
						jQuery('#'+options.hide[i]).slideUp('slow');
					}
					else{
						document.getElementById(options.hide[i]).style.display='none';
					}
				}	
			}	
		}
		
		if(typeof options.show == "object"){
			if(options.show.length > 0){
				for(i=0; i<options.show.length; i++){
					
					if(options.jQuery && options.jQuery==true){
						jQuery('#'+options.show[i]).slidedown('slow');
					}
					else{
						document.getElementById(options.show[i]).style.display='';
					}
				}	
			}
		}
	}
}admin/client-wholesale-enquiry.php0000644000352000025440000001512414373670341017770 0ustar  thediannthediann<?
require_once("../includes/dbsmain.inc.php");

if(is_post_back()) {
$arr_ids = $_REQUEST['arr_ids'];
if(is_array($arr_ids)) {
$str_ids = implode(',', $arr_ids);
if(isset($_REQUEST['Delete']) || isset($_REQUEST['Delete_x']) ) {
db_query("delete from tbl_enquiry where enquiry_id	 in ($str_ids)");
} else if(isset($_REQUEST['Activate']) || isset($_REQUEST['Activate_x']) ) {
db_query("update tbl_enquiry set mailed_status = 'Active' where enquiry_id	 in ($str_ids)");
} else if(isset($_REQUEST['Deactivate']) || isset($_REQUEST['Deactivate_x']) ) {
db_query("update tbl_enquiry set mailed_status = 'Inactive' where enquiry_id	 in ($str_ids)");
}
}
header("Location: ".$_SERVER['HTTP_REFERER']);
exit;
}




$start = intval($start);
$pagesize = intval($pagesize)==0?$pagesize=DEF_PAGE_SIZE:$pagesize;

$order_by == '' ? $order_by = 'enquiry_id	' : true;
$order_by2 == '' ? $order_by2 = 'desc' : true;

$sql = "select * from tbl_enquiry   where 1 and enquiry_type='Wholesale Enquiry'  ";
$sql = apply_filter($sql, $enquiry_name, 'like','enquiry_name');
$sql .= " order by $order_by $order_by2 ";
$sql .= " limit $start, $pagesize ";

$pager = new midas_pager_sql($sql, $pagesize, $start);
if($pager->total_records) {
$result = db_query($sql);
}

?>
<link href="styles.css" rel="stylesheet" type="text/css">
<script language="JavaScript" type="text/javascript" src="../includes/general.js"></script>
<? include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead"> Wholesale Enquiry List </div></td>
              </tr>
            </table>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="content"><form method="get" name="form2" id="form2" onSubmit="return confirm_submit(this)">
                    <br />
                    <table  border="0" width="300px;" align="center" cellpadding="3" cellspacing="0" class="tableSearch">
                      <tr align="center">
                        <th colspan="2">Search</th>
                      </tr>
                      <tr>
                        <td class="tdLabel"> Name</td>
                        <td><input name="enquiry_name" type="text" value="<?=$enquiry_name?>" size="40" /></td>
                      </tr>
                      <tr>
                        <td>&nbsp;</td>
                        <td><input name="pagesize" type="hidden" id="pagesize" value="<?=$pagesize?>" />
                          <input type="image" name="imageField" src="images/buttons/search.gif" /></td>
                      </tr>
                    </table>
                  </form>
                  <br />
                  <div align="right"> </div>
                  <? if($pager->total_records==0) {?>
                  <div class="msg">Sorry, no records found.</div>
                  <? } else { ?>
                  <div align="right">
                    <? $pager->show_displaying()?>
                  </div>
                  <div>Records Per Page:
                    <?=pagesize_dropdown('pagesize', $pagesize);?>
                  </div>
                  <form method="post" name="form1" id="form1" onSubmit="confirm_submit(this)">
                    <table width="100%"  border="0" cellpadding="0" cellspacing="1" class="tableList">
                      <tr>
                        <th width="15%" nowrap="nowrap"> Name</th>
                        <th width="15%" nowrap="nowrap">Email-id</th>
                        <th width="10%" nowrap="nowrap">Mobile</th>
                        <th width="25%" nowrap="nowrap"> Message </th>
                        <th width="8%" nowrap="nowrap"> Date
                          <?=sort_arrows('enquiry_recve_date')?></th>
                        <?php /*?> <th width="7%" nowrap="nowrap"> Status  <?=sort_arrows('enquiry_status')?></th><?php */?>
                        <th width="4%"><input name="check_all" type="checkbox" id="check_all" value="1" onClick="checkall(this.form)" /></th>
                      </tr>
                      <?
while ($line_raw = mysqli_fetch_array($result)) {
$line = ms_display_value($line_raw);
@extract($line);

$css = ($css=='trOdd')?'trEven':'trOdd';
?>
                      <tr class="<?=$css?>" valign="top">
                        <td nowrap="nowrap" align="center"><?=$enquiry_name?></td>
                        <td nowrap="nowrap" align="center"><?=$enquiry_email?></td>
                        <td nowrap="nowrap" align="center"><?=$enquiry_mobile?></td>
                        <td align="center"><?=$enquiry_message?></td>
                        <td nowrap="nowrap" align="center"><?=$enquiry_recve_date?>
                          <?php /*?><br /><a href='javascript:;' onClick="window.open('message-reply.php?reply_id=<?=$enquiry_id?>','_blank','toolbar=no,menubar=no,scrollbars=yes,resizable=1,height=650,width=650');"><strong>Reply</strong></a><?php */?></td>
                        <?php /*?><td nowrap="nowrap" align="center"><strong><?=$enquiry_status?></strong></td><?php */?>
                        <td align="center"><input name="arr_ids[]" type="checkbox" id="arr_ids[]" value="<?=$enquiry_id?>" /></td>
                      </tr>
                      <? } ?>
                    </table>
                    <table width="100%" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td align="right" style="padding:2px"><!--input type="submit" name="Activate" value="Activate" class="button"/-->
                          <!--input type="submit" name="Deactivate" value="Deactivate" class="button" /-->
                          <input type="submit" name="Delete" value="Delete" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#CA0000; border-radius:4px; cursor:pointer; width:100px;"/>
                        </td>
                      </tr>
                    </table>
                  </form>
                  <? $pager->show_pager();?>
                  <? } ?>
                </td>
              </tr>
            </table>
            <? include("bottom.inc.php");?>
<script language="javascript">
function select_chk(){
			var chks = document.getElementsByName('arr_ids[]');
			var hasChecked = false;
			for (var i = 0; i < chks.length; i++){
			if (chks[i].checked){
				hasChecked = true;
				break;
				}
			}
			if (hasChecked == false){
			alert("Please Select At Least One.");
			return false;
			}
}
</script>
admin/Thumbs.db0000644000352000025440000002600012467721410014066 0ustar  thediannthediann��ࡱ�>��	������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������
������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Root Entry���������f5H�1������������8Catalog������������
�2�����	
������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������,���JFIF``��C




��C		

��"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?����u�b�-�8k�6�q�s�ў_%fo����m��sPx�Q���1w��KN�{�?a��Y�ɍ����8r�����5�xw��a���9��r%���?��R�A�#�������&�c�|uq�x�A��o4-v(�O=��&FX�2
$�HUQ�MkV���+.�/�+��i�IK�������``"��/�cal.gif`��}H�{A42CD7B6-E9B9-4D02-B7A6-288B71AD28BA}��C		

��``"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?��Ϗ-�=�0�6�t�}B�ʵ�2�V��|��NL|K��p������݃X�)�ίv1oz�e�R�"�՛d��s�u����tx�+����&��u��U��ت�U�0����6�U���Y/j3���(]��N���B�zD���%��i��j����E����i��j���23��E���ҟ��RA�X�o�7C�8�j�2��#'�÷�?/�D�>+i��h-�Ef�l��}gʞ��*���]�'�4'����O�i���V��O�����zM�����OY^i��k�:��Z}�}�s��HqdG�����V��C��׷M+�Ro�r�>�'�?�ߒB�Bx�}�������t�Bx�}�������u�y����O������?���$mˇ���8��hO�ϴ��4�?�.��hO�ϴ��4�?�.�_4��ʏ4��ʏ������Aˇ���8��hO�ϴ��4�?�.�O
|K�|Y,Q��I�,"I�eeeW�Ip6�A 1�lhy���k[����w^Z����&�Qet@>�q���:���gُ�iF�E(�Q�\���[���t�N-Fvo{�fk����<.7�� �j�Ŀ����!�}�;S�:u�{�+��Y��<��X����+��|O	S+��6ک|3���VZ�kwZX��vQ�h�M�=�����T�q���_�8����$�/���?� ��}���
iQ$ڷW�H���q^���V�WïJ����β�.����c,j���}!}o���D�w�˥��"Pi+�}�ӎ������x��_5}[N� ��h`&4b��Ġ�Fp��5���Ƶh�Ա�B�j4�`k_u�ėS]����Brr{���,�"�k�
��)�d�Ε-��ϼ��'r����W�f���ᧅ�uO��I�,%�Kd���# �����8�0�Ԏ+�i�}v7�J���6��t��Ơ0o��G�~��U��Rݟ�vJ��f�w=�}�2�2����O����I�Qp�,o�=a�����Jo�!��O2��F���Jo�!���+�j��_!��ĥ%�/ɘ�#?/�����m��፝��*[YP�o�ܟ��
p�dn��5�܆��_5����zg�=�O�����SG	�፰'h$�{�=;��Y/��_�~�Jg1�*j�r��6�a�Riu:���7���J�n��\W/�o��>_h�k&K�m�Qh`Ycp8`O�9��P�.��w���%��66�;pv�}����I�x~����3���6�6��{�Gn��\��{7x�3Ǿ/~��9�W��<I�L�vIv����#�A�@��@O�9��OڣO�,��,���b?t���S���}�^��}�Gӣ���&�F� �\�	��>��'���� |(��V��[�Jy2�
zwr���Z�p�>^��:}��4��m��F�z��Q�W�=�B���G��U��<�.��3޲o�>2�X����EsW|�̹}�4�_��&��+���?����q�e�/ə� ғ���=&[��H��>����h���Y3�pp@�2�����l��*|L��P�A���	$��<s��׫��|e��Q��֬y��[��b��7Ԟ��f�
�����I'����w���=�����<�q�F��]�?ş��nQx�)��c��ҽs}e�y���̟�Qd�K����%�ŏ��(BM�=��}i�7ZO�hڎ��Ǿ!U�������q<M��G�1�Y�)|�zO:�$�]gf	Ij�Y�Mi��g�'��^5ΎBϘh�x�U��_3ދ�!gͬ�r�7�`�������*�6|s�����H�+������gS��e�1�M�ƞ0���_�EmSy�R���o��B/�"���ǿ����Κ1�(�?�,y�y�[}.�ṷ!c̣̪���EÔ��Q�Um���ދ����Q�U}�֍�\|��2�[���4���EqK���6-��7�����;��?��?�|����ʬmJ��e�1��#�.����ڍ���~#��v�wc�˫ZjGs��&�AEI"و�a�rw�g��O����?�?]y����P�Nsi�I���M4�<=j>����/2mƍ���o�	��g�����o�	��g����x�����F�և�����̛y�q��<[�B}����?�<[�B}����>����z��.�?kC�~G�_�M�Ѽ�?ٞ-��>�����ٞ-��>�����S��=O�?�kC�~G�_�M�Ѽ�?ٞ-��>�����ٞ-��>�����S��=O�?����?#��/�&�i�kg�����������.����g�W~1�/o�9��]:Yn[��~�$�*��s�2�
����0X׌��	��ۄ�II6�j�׭AQ�j�~��?3���{A42CD7B6-E9B9-4D02-B7A6-288B71AD28BA}����JFIF``��C




��C		

��``"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?��Ϗ-�=�0�6�t�}B�ʵ�2�V��|��NL|K��p������C��@<i�+�)M��#�JFJ���$@H�zt�߾�P���zW�X�~a��ʕ*��J��M+��W�O��{�th�)B�'}:��g���H��"Ŀ[�?��T����Ra���?��WSe�O	j>2��4��XB.o4o�{�h�B$�w��,gq~��3�}�?�ߧ�Ww�G�S���c'�ý���'����n�?��t�Y��%��Y�r��D�Ƅtʾ8�6WcI�
	������g�%ע�f�����q���oʹ�b3��*U����I��@������m�$q�О��i?�i��]�О��i?�i��]z,Vi$Hś$�?Ÿ���~��^�!�S���?��3��U�.�y��4'����O�i���G�4'����O�i���\��_��ρ�i?��l-�f�|u����=�l����'��`�W,�6�l��O5�`O�7�~Lj�����b��O������<?�>���L���<)�/I�d�Gki&,��'�U��e�^$]�|�I����}�?�ߧ�W�8Ǿ����њ 3 �� P	8��q���g8
�>�8�3�cnT�in�K�����,�o~��Cc�3���_�Ck]�ټ��F��5����C����
�t:[�!��F�f���������6��w�%���ǿ����Q_��$�{���?�]Yi�|�?c��t
���ɶduh�9?/\��������)�H���7�$~3�t]3���	m|���>gމ#l��겣os��G����p�5�W�|���'����<M��ב���[�;��<���>�y�}�gw9���NJI�<[K��U�����j��|+�Y|6ռ_�?XӴ�-B]*H��b�c*C���Yݳ �A�<t'��+�n*���3��+�t�����U-|���(����}S����Z֏u.�}m��������M�nU��FT�q�"��������j���_���E�2݇��'�#��������z�	�_�c�:x�J��ڼ7�?�H����/��j�H��F�;�u#�V�2p9��?������j���]�UW	�#�x<�V�"�������_�S��5z�����j?
�G�]}�E�.�cs�~t�F�\\��������`���?��Uw?�ɗ��+���Z�4wΥ>���3��w�G�D���Z�П:�������q���g�R?���W�����*?��g����ҏ�c������+o�C�����~���}���ųo��9������
�J;��<�3�Y_Y��m[��c�����!x��-!��K�pH�4�O�_�U�<�߷i��;��im򼯴}���ٹ��ٝ��3����Q��{�_����<#�ºl��2Y�Y��
d)�,Un�p�vO�uz�Ņ�ro�k��+�>,���3�F�gkdsg�s_�S�}<����/�b�D���<�|L�W�������n��\u�U|��C��~��7�:���	
��q���	�����zy�����A����|w��_a��D�pj��/�eP�|a��	E��V��g�=��L�K.pq��s&�`�Χ�W�Ie���\��SO�b8d��fx+�f��=�,mo`�Wy[�El�X��y�:�_��^��mRv~|�`�O����$�O���	u��?�G�%������yM�ŝ/N��4�w����?��h-��h��ӵi� ������+�2j��eNU���\U��ib��{[[��=�o���2Bԩœ�ǭd�����~�]�h ���Պ�[K`2>���'����-/F�H���P���)$��F�#����2Fpҽ<�x��f�Y�1�+i�3�%�fw��Rr�����P���c�c��(PJ��>���K���?���m�5��z��y�^Mc+�b3$nQ����*q�;U�|f�|9&˕����D?ͅ|3��j�3ĵ%�G�g1�d����-��~3��㏋�!_�u��_���-�V�o���K�)RͅPWk.]Ê��K���?���+���V:l��
�E�U�=߇�^Gu��ii����7�L�����g����V]�q�oK�`hT��x^y�gU}�_^5%�\�'�����ƹ�������l���@�gs_<I�vx+u��!*� h3����<+�+oj
��5�;MNC{
LuI4��CH3�~��ن9����|�2��HYK�q?@�dX����^��d�f�����"A����m������M�V7��g�&�f,WU�A��x�߯�yx���
�<!���M��q^a��j�Tm{U���Ȟ7�d��_�I��E��k��7l��\ş��Ê�3���5���۽�?J��O��ݧ��g�J��Ê_�3���
~��>���|�υ�gԥo'������'ټy�۟/N�m&q�*��^ݤ|/�=�7�Չ�[��?�_[�x�dY3�C��_���w���ԧ{�#�[�s����o���c�c|u��vx�Q��J���j�ϛ��־q����o��R��vx�S��Z�u߉j�>ny���j�7����G�#����{$��g���˘�ޫ�_&�z��.��Z���>H�ޣ�k�nu���˺���;;����K��>K����ֶ����u�CE���3y������[�)2W��'�
7���k�5K�|<����Ϳ�%~#�'뙶�z��Ң^gy��_W�*���Z=�so���b��t8���[����!������'�������]Z�P�;�嶸�6b�(�I��D��s�3��<[�B}�����\./���(�rzBM;����l|m5��F���t��K��:c�k�s�k_���k���A���#��⫛���o�	��g�����o�	��g���c�ϣ�ƪ��%�ȑ�L�s�_�o��fS�gh?�
��R\x�k�d��m�:�%U�2;|Ճ������.��������.��Ӟ??�ƳO����M�K�Q_��3���4�x�ƺ���|E�{�kP�Ԯ"���X�I�i kbB���q��;�*��_x����"��ٞ-��>�����ٞ-��>�����eVw��]?�ܿ�eC7y8?�y���T|*#�7�Y��-@�	n�������?�E��?�<[�B}����?�<[�B}�����f<A�o�_���Gg�	��:��61�	7���:��k�o�������i��5���M���J�çM�*,B���x�������.����g�W~1�/o�9��]:Yn[��~�$�*��s�2�
������qxu��Q��ބ�V�mݮ��xZTjrN:ŭ$�G���admin/manage_inner_button_color.php0000644000352000025440000001252514373672241020256 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
if (isset($_POST['Submit'])) {
@extract($_POST);
			    $sql = "update tbl_site_color set 
				           site_color_inner_button_color='$site_color_inner_button_color',
		                   site_color_inner_buttonhover_color='$site_color_inner_buttonhover_color',
						   site_color_inner_button_font_color='$site_color_inner_button_font_color'
						   where 1 and site_color_admin_id='1'";
						   db_query($sql);				
		set_session_msg("Inner buttons colors updated successfully !");
		header("Location: manage_inner_button_color.php");
		exit;
    }
	
if (isset($_POST['ChangeDefault'])) {
			    $sql = "update tbl_site_color set 
				           site_color_inner_button_color='',
		                   site_color_inner_buttonhover_color='',
						   site_color_inner_button_font_color=''
						   where 1 and site_color_admin_id='1'";
						   db_query($sql);				
		set_session_msg("Inner buttons colors change to default successfully !");
		header("Location: manage_inner_button_color.php");
		exit;
    }	
	$result = db_query("select site_color_inner_button_color,site_color_inner_buttonhover_color,site_color_inner_button_font_color from tbl_site_color where 1");
	if ($line_raw = mysqli_fetch_array($result)) {
		@extract($line_raw);
		}
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="jscolor.js"></script>
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead"> Add/Edit Inner Button Color</div></td>
              </tr>
            </table>
            <div><strong class="msg" style="margin-left:500px; margin-bottom:5px;">
              <?=display_sess_msg()?>
              </strong></div>
            <table width="45%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm" style="border:1px outset #fff; margin-top:5px; margin-bottom:10px;">
                <tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Current Button Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="text" class="color" style="border:none;width:260px; height:25px;" disabled="disabled" value="<?=$line_raw['site_color_inner_button_color']?>"></td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Current Button Font Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="text" class="color" disabled="disabled" style="border:none;width:260px; height:25px;" value="<?=$line_raw['site_color_inner_button_font_color']?>"></td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Current Button Hover Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="text" class="color" disabled="disabled" style="border:none;width:260px; height:25px;" value="<?=$line_raw['site_color_inner_buttonhover_color']?>"></td>
                </tr>
                
              </table>
            <form enctype="multipart/form-data" action="" method="post">
              <table width="45%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm" style="border:1px outset #fff; margin-top:45px; padding-top:20px; padding-bottom:20px; margin-bottom:10px;">
			  <tr>
                  <td class="tdLabel" style="padding:4px; font-weight:bold; color:#FF0000" align="center" colspan="2">&raquo; Click on textbox to open the color picker.</td>
                   
                </tr>
			    <tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Select Button Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="color" name="site_color_inner_button_color" style="width:260px; height:25px;"></td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Select Button Font Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="color" name="site_color_inner_button_font_color" style="width:260px; height:25px;"></td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Select Button Hover Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="color" name="site_color_inner_buttonhover_color" style="width:260px; height:25px;"></td>
                </tr>
                <tr>
                  <td class="tdLabel" colspan="2" style="padding:8px;">
				  <span style="margin-left:185px;"><input type="submit" name="Submit" style="width:100px; font-weight:bold; font-size:13px; height:29px;"></span>
				  <span style="margin-left:10px;"><input type="submit" name="ChangeDefault" value="Set as default" style="width:145px; font-weight:bold; font-size:13px; height:29px;"></span>
                  </td>
                </tr>
              </table>
            </form>
            <?php include("bottom.inc.php");?>
admin/manage_left_menu_color.php0000644000352000025440000001246214373672306017530 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
if (isset($_POST['Submit'])) {
@extract($_POST);
			    $sql = "update tbl_site_color set 
				           site_color_left_menu_color='$site_color_left_menu_color',
		                   site_color_left_menu_font_color='$site_color_left_menu_font_color',
						   site_color_left_menu_hover_color='$site_color_left_menu_hover_color'
						   where 1 and site_color_admin_id='1'";
						   db_query($sql);				
		set_session_msg("Left menu colors updated successfully !");
		header("Location: manage_left_menu_color.php");
		exit;
    }
	
if (isset($_POST['ChangeDefault'])) {
			    $sql = "update tbl_site_color set 
				           site_color_left_menu_color='',
		                   site_color_left_menu_font_color='',
						   site_color_left_menu_hover_color=''
						   where 1 and site_color_admin_id='1'";
						   db_query($sql);				
		set_session_msg("Left menu colors change to default successfully !");
		header("Location: manage_left_menu_color.php");
		exit;
    }	
	$result = db_query("select site_color_left_menu_color,site_color_left_menu_font_color,site_color_left_menu_hover_color from tbl_site_color where 1");
	if ($line_raw = mysqli_fetch_array($result)) {
		@extract($line_raw);
		}
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="jscolor.js"></script>
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead"> Add/Edit Footer Color</div></td>
              </tr>
            </table>
            <div><strong class="msg" style="margin-left:500px; margin-bottom:5px;">
              <?=display_sess_msg()?>
              </strong></div>
            <table width="45%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm" style="border:1px outset #fff; margin-top:5px; margin-bottom:10px;">
                <tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Current Left Menu Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="text" class="color" style="border:none;width:260px; height:25px;" disabled="disabled" value="<?=$line_raw['site_color_left_menu_color']?>"></td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Current Left Menu Font Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="text" class="color" disabled="disabled" style="border:none;width:260px; height:25px;" value="<?=$line_raw['site_color_left_menu_font_color']?>"></td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Current Left Menu Hover Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="text" class="color" disabled="disabled" style="border:none;width:260px; height:25px;" value="<?=$line_raw['site_color_left_menu_hover_color']?>"></td>
                </tr>
                
              </table>
            <form enctype="multipart/form-data" action="" method="post">
              <table width="45%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm" style="border:1px outset #fff; margin-top:45px; padding-top:20px; padding-bottom:20px; margin-bottom:10px;">
			  <tr>
                  <td class="tdLabel" style="padding:4px; font-weight:bold; color:#FF0000" align="center" colspan="2">&raquo; Click on textbox to open the color picker.</td>
                   
                </tr>
				
                <tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Select Left Menu Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="color" name="site_color_left_menu_color" style="width:260px; height:25px;"></td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Select Left Menu Font Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="color" name="site_color_left_menu_font_color" style="width:260px; height:25px;"></td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Select Left Menu Hover Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="color" name="site_color_left_menu_hover_color" style="width:260px; height:25px;"></td>
                </tr>
                <tr>
                  <td class="tdLabel" colspan="2" style="padding:8px;">
				  <span style="margin-left:185px;"><input type="submit" name="Submit" style="width:100px; font-weight:bold; font-size:13px; height:29px;"></span>
				  <span style="margin-left:10px;"><input type="submit" name="ChangeDefault" value="Set as default" style="width:145px; font-weight:bold; font-size:13px; height:29px;"></span>
                  </td>
                </tr>
              </table>
            </form>
            <?php include("bottom.inc.php");?>
admin/jscolor.js0000644000352000025440000007303612441665676014356 0ustar  thediannthediann/**
 * jscolor, JavaScript Color Picker
 *
 * @version 1.4.4
 * @license GNU Lesser General Public License, http://www.gnu.org/copyleft/lesser.html
 * @author  Jan Odvarko, http://odvarko.cz
 * @created 2008-06-15
 * @updated 2014-12-09
 * @link    http://jscolor.com
 */


var jscolor = {


	dir : '', // location of jscolor directory (leave empty to autodetect)
	bindClass : 'color', // class name
	binding : true, // automatic binding via <input class="...">
	preloading : true, // use image preloading?


	install : function() {
		jscolor.addEvent(window, 'load', jscolor.init);
	},


	init : function() {
		if(jscolor.binding) {
			jscolor.bind();
		}
		if(jscolor.preloading) {
			jscolor.preload();
		}
	},


	getDir : function() {
		if(!jscolor.dir) {
			var detected = jscolor.detectDir();
			jscolor.dir = detected!==false ? detected : 'jscolor/';
		}
		return jscolor.dir;
	},


	detectDir : function() {
		var base = location.href;

		var e = document.getElementsByTagName('base');
		for(var i=0; i<e.length; i+=1) {
			if(e[i].href) { base = e[i].href; }
		}

		var e = document.getElementsByTagName('script');
		for(var i=0; i<e.length; i+=1) {
			if(e[i].src && /(^|\/)jscolor\.js([?#].*)?$/i.test(e[i].src)) {
				var src = new jscolor.URI(e[i].src);
				var srcAbs = src.toAbsolute(base);
				srcAbs.path = srcAbs.path.replace(/[^\/]+$/, ''); // remove filename
				srcAbs.query = null;
				srcAbs.fragment = null;
				return srcAbs.toString();
			}
		}
		return false;
	},


	bind : function() {
		var matchClass = new RegExp('(^|\\s)('+jscolor.bindClass+')(\\s*(\\{[^}]*\\})|\\s|$)', 'i');
		var e = document.getElementsByTagName('input');
		for(var i=0; i<e.length; i+=1) {
			if(jscolor.isColorAttrSupported && e[i].type.toLowerCase() == 'color') {
				// skip inputs of type 'color' if the browser supports this feature
				continue;
			}
			var m;
			if(!e[i].color && e[i].className && (m = e[i].className.match(matchClass))) {
				var prop = {};
				if(m[4]) {
					try {
						prop = (new Function ('return (' + m[4] + ')'))();
					} catch(eInvalidProp) {}
				}
				e[i].color = new jscolor.color(e[i], prop);
			}
		}
	},


	preload : function() {
		for(var fn in jscolor.imgRequire) {
			if(jscolor.imgRequire.hasOwnProperty(fn)) {
				jscolor.loadImage(fn);
			}
		}
	},


	images : {
		pad : [ 181, 101 ],
		sld : [ 16, 101 ],
		cross : [ 15, 15 ],
		arrow : [ 7, 11 ]
	},


	imgRequire : {},
	imgLoaded : {},


	requireImage : function(filename) {
		jscolor.imgRequire[filename] = true;
	},


	loadImage : function(filename) {
		if(!jscolor.imgLoaded[filename]) {
			jscolor.imgLoaded[filename] = new Image();
			jscolor.imgLoaded[filename].src = jscolor.getDir()+filename;
		}
	},


	fetchElement : function(mixed) {
		return typeof mixed === 'string' ? document.getElementById(mixed) : mixed;
	},


	addEvent : function(el, evnt, func) {
		if(el.addEventListener) {
			el.addEventListener(evnt, func, false);
		} else if(el.attachEvent) {
			el.attachEvent('on'+evnt, func);
		}
	},


	fireEvent : function(el, evnt) {
		if(!el) {
			return;
		}
		if(document.createEvent) {
			var ev = document.createEvent('HTMLEvents');
			ev.initEvent(evnt, true, true);
			el.dispatchEvent(ev);
		} else if(document.createEventObject) {
			var ev = document.createEventObject();
			el.fireEvent('on'+evnt, ev);
		} else if(el['on'+evnt]) { // alternatively use the traditional event model (IE5)
			el['on'+evnt]();
		}
	},


	getElementPos : function(e) {
		var e1=e, e2=e;
		var x=0, y=0;
		if(e1.offsetParent) {
			do {
				x += e1.offsetLeft;
				y += e1.offsetTop;
			} while(e1 = e1.offsetParent);
		}
		while((e2 = e2.parentNode) && e2.nodeName.toUpperCase() !== 'BODY') {
			x -= e2.scrollLeft;
			y -= e2.scrollTop;
		}
		return [x, y];
	},


	getElementSize : function(e) {
		return [e.offsetWidth, e.offsetHeight];
	},


	getRelMousePos : function(e) {
		var x = 0, y = 0;
		if (!e) { e = window.event; }
		if (typeof e.offsetX === 'number') {
			x = e.offsetX;
			y = e.offsetY;
		} else if (typeof e.layerX === 'number') {
			x = e.layerX;
			y = e.layerY;
		}
		return { x: x, y: y };
	},


	getViewPos : function() {
		if(typeof window.pageYOffset === 'number') {
			return [window.pageXOffset, window.pageYOffset];
		} else if(document.body && (document.body.scrollLeft || document.body.scrollTop)) {
			return [document.body.scrollLeft, document.body.scrollTop];
		} else if(document.documentElement && (document.documentElement.scrollLeft || document.documentElement.scrollTop)) {
			return [document.documentElement.scrollLeft, document.documentElement.scrollTop];
		} else {
			return [0, 0];
		}
	},


	getViewSize : function() {
		if(typeof window.innerWidth === 'number') {
			return [window.innerWidth, window.innerHeight];
		} else if(document.body && (document.body.clientWidth || document.body.clientHeight)) {
			return [document.body.clientWidth, document.body.clientHeight];
		} else if(document.documentElement && (document.documentElement.clientWidth || document.documentElement.clientHeight)) {
			return [document.documentElement.clientWidth, document.documentElement.clientHeight];
		} else {
			return [0, 0];
		}
	},


	URI : function(uri) { // See RFC3986

		this.scheme = null;
		this.authority = null;
		this.path = '';
		this.query = null;
		this.fragment = null;

		this.parse = function(uri) {
			var m = uri.match(/^(([A-Za-z][0-9A-Za-z+.-]*)(:))?((\/\/)([^\/?#]*))?([^?#]*)((\?)([^#]*))?((#)(.*))?/);
			this.scheme = m[3] ? m[2] : null;
			this.authority = m[5] ? m[6] : null;
			this.path = m[7];
			this.query = m[9] ? m[10] : null;
			this.fragment = m[12] ? m[13] : null;
			return this;
		};

		this.toString = function() {
			var result = '';
			if(this.scheme !== null) { result = result + this.scheme + ':'; }
			if(this.authority !== null) { result = result + '//' + this.authority; }
			if(this.path !== null) { result = result + this.path; }
			if(this.query !== null) { result = result + '?' + this.query; }
			if(this.fragment !== null) { result = result + '#' + this.fragment; }
			return result;
		};

		this.toAbsolute = function(base) {
			var base = new jscolor.URI(base);
			var r = this;
			var t = new jscolor.URI;

			if(base.scheme === null) { return false; }

			if(r.scheme !== null && r.scheme.toLowerCase() === base.scheme.toLowerCase()) {
				r.scheme = null;
			}

			if(r.scheme !== null) {
				t.scheme = r.scheme;
				t.authority = r.authority;
				t.path = removeDotSegments(r.path);
				t.query = r.query;
			} else {
				if(r.authority !== null) {
					t.authority = r.authority;
					t.path = removeDotSegments(r.path);
					t.query = r.query;
				} else {
					if(r.path === '') {
						t.path = base.path;
						if(r.query !== null) {
							t.query = r.query;
						} else {
							t.query = base.query;
						}
					} else {
						if(r.path.substr(0,1) === '/') {
							t.path = removeDotSegments(r.path);
						} else {
							if(base.authority !== null && base.path === '') {
								t.path = '/'+r.path;
							} else {
								t.path = base.path.replace(/[^\/]+$/,'')+r.path;
							}
							t.path = removeDotSegments(t.path);
						}
						t.query = r.query;
					}
					t.authority = base.authority;
				}
				t.scheme = base.scheme;
			}
			t.fragment = r.fragment;

			return t;
		};

		function removeDotSegments(path) {
			var out = '';
			while(path) {
				if(path.substr(0,3)==='../' || path.substr(0,2)==='./') {
					path = path.replace(/^\.+/,'').substr(1);
				} else if(path.substr(0,3)==='/./' || path==='/.') {
					path = '/'+path.substr(3);
				} else if(path.substr(0,4)==='/../' || path==='/..') {
					path = '/'+path.substr(4);
					out = out.replace(/\/?[^\/]*$/, '');
				} else if(path==='.' || path==='..') {
					path = '';
				} else {
					var rm = path.match(/^\/?[^\/]*/)[0];
					path = path.substr(rm.length);
					out = out + rm;
				}
			}
			return out;
		}

		if(uri) {
			this.parse(uri);
		}

	},


	//
	// Usage example:
	// var myColor = new jscolor.color(myInputElement)
	//

	color : function(target, prop) {


		this.required = true; // refuse empty values?
		this.adjust = true; // adjust value to uniform notation?
		this.hash = false; // prefix color with # symbol?
		this.caps = true; // uppercase?
		this.slider = true; // show the value/saturation slider?
		this.valueElement = target; // value holder
		this.styleElement = target; // where to reflect current color
		this.onImmediateChange = null; // onchange callback (can be either string or function)
		this.hsv = [0, 0, 1]; // read-only  0-6, 0-1, 0-1
		this.rgb = [1, 1, 1]; // read-only  0-1, 0-1, 0-1
		this.minH = 0; // read-only  0-6
		this.maxH = 6; // read-only  0-6
		this.minS = 0; // read-only  0-1
		this.maxS = 1; // read-only  0-1
		this.minV = 0; // read-only  0-1
		this.maxV = 1; // read-only  0-1

		this.pickerOnfocus = true; // display picker on focus?
		this.pickerMode = 'HSV'; // HSV | HVS
		this.pickerPosition = 'bottom'; // left | right | top | bottom
		this.pickerSmartPosition = true; // automatically adjust picker position when necessary
		this.pickerButtonHeight = 20; // px
		this.pickerClosable = false;
		this.pickerCloseText = 'Close';
		this.pickerButtonColor = 'ButtonText'; // px
		this.pickerFace = 10; // px
		this.pickerFaceColor = 'ThreeDFace'; // CSS color
		this.pickerBorder = 1; // px
		this.pickerBorderColor = 'ThreeDHighlight ThreeDShadow ThreeDShadow ThreeDHighlight'; // CSS color
		this.pickerInset = 1; // px
		this.pickerInsetColor = 'ThreeDShadow ThreeDHighlight ThreeDHighlight ThreeDShadow'; // CSS color
		this.pickerZIndex = 10000;


		for(var p in prop) {
			if(prop.hasOwnProperty(p)) {
				this[p] = prop[p];
			}
		}


		this.hidePicker = function() {
			if(isPickerOwner()) {
				removePicker();
			}
		};


		this.showPicker = function() {
			if(!isPickerOwner()) {
				var tp = jscolor.getElementPos(target); // target pos
				var ts = jscolor.getElementSize(target); // target size
				var vp = jscolor.getViewPos(); // view pos
				var vs = jscolor.getViewSize(); // view size
				var ps = getPickerDims(this); // picker size
				var a, b, c;
				switch(this.pickerPosition.toLowerCase()) {
					case 'left': a=1; b=0; c=-1; break;
					case 'right':a=1; b=0; c=1; break;
					case 'top':  a=0; b=1; c=-1; break;
					default:     a=0; b=1; c=1; break;
				}
				var l = (ts[b]+ps[b])/2;

				// picker pos
				if (!this.pickerSmartPosition) {
					var pp = [
						tp[a],
						tp[b]+ts[b]-l+l*c
					];
				} else {
					var pp = [
						-vp[a]+tp[a]+ps[a] > vs[a] ?
							(-vp[a]+tp[a]+ts[a]/2 > vs[a]/2 && tp[a]+ts[a]-ps[a] >= 0 ? tp[a]+ts[a]-ps[a] : tp[a]) :
							tp[a],
						-vp[b]+tp[b]+ts[b]+ps[b]-l+l*c > vs[b] ?
							(-vp[b]+tp[b]+ts[b]/2 > vs[b]/2 && tp[b]+ts[b]-l-l*c >= 0 ? tp[b]+ts[b]-l-l*c : tp[b]+ts[b]-l+l*c) :
							(tp[b]+ts[b]-l+l*c >= 0 ? tp[b]+ts[b]-l+l*c : tp[b]+ts[b]-l-l*c)
					];
				}
				drawPicker(pp[a], pp[b]);
			}
		};


		this.importColor = function() {
			if(!valueElement) {
				this.exportColor();
			} else {
				if(!this.adjust) {
					if(!this.fromString(valueElement.value, leaveValue)) {
						styleElement.style.backgroundImage = styleElement.jscStyle.backgroundImage;
						styleElement.style.backgroundColor = styleElement.jscStyle.backgroundColor;
						styleElement.style.color = styleElement.jscStyle.color;
						this.exportColor(leaveValue | leaveStyle);
					}
				} else if(!this.required && /^\s*$/.test(valueElement.value)) {
					valueElement.value = '';
					styleElement.style.backgroundImage = styleElement.jscStyle.backgroundImage;
					styleElement.style.backgroundColor = styleElement.jscStyle.backgroundColor;
					styleElement.style.color = styleElement.jscStyle.color;
					this.exportColor(leaveValue | leaveStyle);

				} else if(this.fromString(valueElement.value)) {
					// OK
				} else {
					this.exportColor();
				}
			}
		};


		this.exportColor = function(flags) {
			if(!(flags & leaveValue) && valueElement) {
				var value = this.toString();
				if(this.caps) { value = value.toUpperCase(); }
				if(this.hash) { value = '#'+value; }
				valueElement.value = value;
			}
			if(!(flags & leaveStyle) && styleElement) {
				styleElement.style.backgroundImage = "none";
				styleElement.style.backgroundColor =
					'#'+this.toString();
				styleElement.style.color =
					0.213 * this.rgb[0] +
					0.715 * this.rgb[1] +
					0.072 * this.rgb[2]
					< 0.5 ? '#FFF' : '#000';
			}
			if(!(flags & leavePad) && isPickerOwner()) {
				redrawPad();
			}
			if(!(flags & leaveSld) && isPickerOwner()) {
				redrawSld();
			}
		};


		this.fromHSV = function(h, s, v, flags) { // null = don't change
			if(h !== null) { h = Math.max(0.0, this.minH, Math.min(6.0, this.maxH, h)); }
			if(s !== null) { s = Math.max(0.0, this.minS, Math.min(1.0, this.maxS, s)); }
			if(v !== null) { v = Math.max(0.0, this.minV, Math.min(1.0, this.maxV, v)); }

			this.rgb = HSV_RGB(
				h===null ? this.hsv[0] : (this.hsv[0]=h),
				s===null ? this.hsv[1] : (this.hsv[1]=s),
				v===null ? this.hsv[2] : (this.hsv[2]=v)
			);

			this.exportColor(flags);
		};


		this.fromRGB = function(r, g, b, flags) { // null = don't change
			if(r !== null) { r = Math.max(0.0, Math.min(1.0, r)); }
			if(g !== null) { g = Math.max(0.0, Math.min(1.0, g)); }
			if(b !== null) { b = Math.max(0.0, Math.min(1.0, b)); }

			var hsv = RGB_HSV(
				r===null ? this.rgb[0] : r,
				g===null ? this.rgb[1] : g,
				b===null ? this.rgb[2] : b
			);
			if(hsv[0] !== null) {
				this.hsv[0] = Math.max(0.0, this.minH, Math.min(6.0, this.maxH, hsv[0]));
			}
			if(hsv[2] !== 0) {
				this.hsv[1] = hsv[1]===null ? null : Math.max(0.0, this.minS, Math.min(1.0, this.maxS, hsv[1]));
			}
			this.hsv[2] = hsv[2]===null ? null : Math.max(0.0, this.minV, Math.min(1.0, this.maxV, hsv[2]));

			// update RGB according to final HSV, as some values might be trimmed
			var rgb = HSV_RGB(this.hsv[0], this.hsv[1], this.hsv[2]);
			this.rgb[0] = rgb[0];
			this.rgb[1] = rgb[1];
			this.rgb[2] = rgb[2];

			this.exportColor(flags);
		};


		this.fromString = function(hex, flags) {
			var m = hex.match(/^\W*([0-9A-F]{3}([0-9A-F]{3})?)\W*$/i);
			if(!m) {
				return false;
			} else {
				if(m[1].length === 6) { // 6-char notation
					this.fromRGB(
						parseInt(m[1].substr(0,2),16) / 255,
						parseInt(m[1].substr(2,2),16) / 255,
						parseInt(m[1].substr(4,2),16) / 255,
						flags
					);
				} else { // 3-char notation
					this.fromRGB(
						parseInt(m[1].charAt(0)+m[1].charAt(0),16) / 255,
						parseInt(m[1].charAt(1)+m[1].charAt(1),16) / 255,
						parseInt(m[1].charAt(2)+m[1].charAt(2),16) / 255,
						flags
					);
				}
				return true;
			}
		};


		this.toString = function() {
			return (
				(0x100 | Math.round(255*this.rgb[0])).toString(16).substr(1) +
				(0x100 | Math.round(255*this.rgb[1])).toString(16).substr(1) +
				(0x100 | Math.round(255*this.rgb[2])).toString(16).substr(1)
			);
		};


		function RGB_HSV(r, g, b) {
			var n = Math.min(Math.min(r,g),b);
			var v = Math.max(Math.max(r,g),b);
			var m = v - n;
			if(m === 0) { return [ null, 0, v ]; }
			var h = r===n ? 3+(b-g)/m : (g===n ? 5+(r-b)/m : 1+(g-r)/m);
			return [ h===6?0:h, m/v, v ];
		}


		function HSV_RGB(h, s, v) {
			if(h === null) { return [ v, v, v ]; }
			var i = Math.floor(h);
			var f = i%2 ? h-i : 1-(h-i);
			var m = v * (1 - s);
			var n = v * (1 - s*f);
			switch(i) {
				case 6:
				case 0: return [v,n,m];
				case 1: return [n,v,m];
				case 2: return [m,v,n];
				case 3: return [m,n,v];
				case 4: return [n,m,v];
				case 5: return [v,m,n];
			}
		}


		function removePicker() {
			delete jscolor.picker.owner;
			document.getElementsByTagName('body')[0].removeChild(jscolor.picker.boxB);
		}


		function drawPicker(x, y) {
			if(!jscolor.picker) {
				jscolor.picker = {
					box : document.createElement('div'),
					boxB : document.createElement('div'),
					pad : document.createElement('div'),
					padB : document.createElement('div'),
					padM : document.createElement('div'),
					sld : document.createElement('div'),
					sldB : document.createElement('div'),
					sldM : document.createElement('div'),
					btn : document.createElement('div'),
					btnS : document.createElement('span'),
					btnT : document.createTextNode(THIS.pickerCloseText)
				};
				for(var i=0,segSize=4; i<jscolor.images.sld[1]; i+=segSize) {
					var seg = document.createElement('div');
					seg.style.height = segSize+'px';
					seg.style.fontSize = '1px';
					seg.style.lineHeight = '0';
					jscolor.picker.sld.appendChild(seg);
				}
				jscolor.picker.sldB.appendChild(jscolor.picker.sld);
				jscolor.picker.box.appendChild(jscolor.picker.sldB);
				jscolor.picker.box.appendChild(jscolor.picker.sldM);
				jscolor.picker.padB.appendChild(jscolor.picker.pad);
				jscolor.picker.box.appendChild(jscolor.picker.padB);
				jscolor.picker.box.appendChild(jscolor.picker.padM);
				jscolor.picker.btnS.appendChild(jscolor.picker.btnT);
				jscolor.picker.btn.appendChild(jscolor.picker.btnS);
				jscolor.picker.box.appendChild(jscolor.picker.btn);
				jscolor.picker.boxB.appendChild(jscolor.picker.box);
			}

			var p = jscolor.picker;

			// controls interaction
			p.box.onmouseup =
			p.box.onmouseout = function() { target.focus(); };
			p.box.onmousedown = function() { abortBlur=true; };
			p.box.onmousemove = function(e) {
				if (holdPad || holdSld) {
					holdPad && setPad(e);
					holdSld && setSld(e);
					if (document.selection) {
						document.selection.empty();
					} else if (window.getSelection) {
						window.getSelection().removeAllRanges();
					}
					dispatchImmediateChange();
				}
			};
			if('ontouchstart' in window) { // if touch device
				var handle_touchmove = function(e) {
					var event={
						'offsetX': e.touches[0].pageX-touchOffset.X,
						'offsetY': e.touches[0].pageY-touchOffset.Y
					};
					if (holdPad || holdSld) {
						holdPad && setPad(event);
						holdSld && setSld(event);
						dispatchImmediateChange();
					}
					e.stopPropagation(); // prevent move "view" on broswer
					e.preventDefault(); // prevent Default - Android Fix (else android generated only 1-2 touchmove events)
				};
				p.box.removeEventListener('touchmove', handle_touchmove, false)
				p.box.addEventListener('touchmove', handle_touchmove, false)
			}
			p.padM.onmouseup =
			p.padM.onmouseout = function() { if(holdPad) { holdPad=false; jscolor.fireEvent(valueElement,'change'); } };
			p.padM.onmousedown = function(e) {
				// if the slider is at the bottom, move it up
				switch(modeID) {
					case 0: if (THIS.hsv[2] === 0) { THIS.fromHSV(null, null, 1.0); }; break;
					case 1: if (THIS.hsv[1] === 0) { THIS.fromHSV(null, 1.0, null); }; break;
				}
				holdSld=false;
				holdPad=true;
				setPad(e);
				dispatchImmediateChange();
			};
			if('ontouchstart' in window) {
				p.padM.addEventListener('touchstart', function(e) {
					touchOffset={
						'X': e.target.offsetParent.offsetLeft,
						'Y': e.target.offsetParent.offsetTop
					};
					this.onmousedown({
						'offsetX':e.touches[0].pageX-touchOffset.X,
						'offsetY':e.touches[0].pageY-touchOffset.Y
					});
				});
			}
			p.sldM.onmouseup =
			p.sldM.onmouseout = function() { if(holdSld) { holdSld=false; jscolor.fireEvent(valueElement,'change'); } };
			p.sldM.onmousedown = function(e) {
				holdPad=false;
				holdSld=true;
				setSld(e);
				dispatchImmediateChange();
			};
			if('ontouchstart' in window) {
				p.sldM.addEventListener('touchstart', function(e) {
					touchOffset={
						'X': e.target.offsetParent.offsetLeft,
						'Y': e.target.offsetParent.offsetTop
					};
					this.onmousedown({
						'offsetX':e.touches[0].pageX-touchOffset.X,
						'offsetY':e.touches[0].pageY-touchOffset.Y
					});
				});
			}

			// picker
			var dims = getPickerDims(THIS);
			p.box.style.width = dims[0] + 'px';
			p.box.style.height = dims[1] + 'px';

			// picker border
			p.boxB.style.position = 'absolute';
			p.boxB.style.clear = 'both';
			p.boxB.style.left = x+'px';
			p.boxB.style.top = y+'px';
			p.boxB.style.zIndex = THIS.pickerZIndex;
			p.boxB.style.border = THIS.pickerBorder+'px solid';
			p.boxB.style.borderColor = THIS.pickerBorderColor;
			p.boxB.style.background = THIS.pickerFaceColor;

			// pad image
			p.pad.style.width = jscolor.images.pad[0]+'px';
			p.pad.style.height = jscolor.images.pad[1]+'px';

			// pad border
			p.padB.style.position = 'absolute';
			p.padB.style.left = THIS.pickerFace+'px';
			p.padB.style.top = THIS.pickerFace+'px';
			p.padB.style.border = THIS.pickerInset+'px solid';
			p.padB.style.borderColor = THIS.pickerInsetColor;

			// pad mouse area
			p.padM.style.position = 'absolute';
			p.padM.style.left = '0';
			p.padM.style.top = '0';
			p.padM.style.width = THIS.pickerFace + 2*THIS.pickerInset + jscolor.images.pad[0] + jscolor.images.arrow[0] + 'px';
			p.padM.style.height = p.box.style.height;
			p.padM.style.cursor = 'crosshair';

			// slider image
			p.sld.style.overflow = 'hidden';
			p.sld.style.width = jscolor.images.sld[0]+'px';
			p.sld.style.height = jscolor.images.sld[1]+'px';

			// slider border
			p.sldB.style.display = THIS.slider ? 'block' : 'none';
			p.sldB.style.position = 'absolute';
			p.sldB.style.right = THIS.pickerFace+'px';
			p.sldB.style.top = THIS.pickerFace+'px';
			p.sldB.style.border = THIS.pickerInset+'px solid';
			p.sldB.style.borderColor = THIS.pickerInsetColor;

			// slider mouse area
			p.sldM.style.display = THIS.slider ? 'block' : 'none';
			p.sldM.style.position = 'absolute';
			p.sldM.style.right = '0';
			p.sldM.style.top = '0';
			p.sldM.style.width = jscolor.images.sld[0] + jscolor.images.arrow[0] + THIS.pickerFace + 2*THIS.pickerInset + 'px';
			p.sldM.style.height = p.box.style.height;
			try {
				p.sldM.style.cursor = 'pointer';
			} catch(eOldIE) {
				p.sldM.style.cursor = 'hand';
			}

			// "close" button
			function setBtnBorder() {
				var insetColors = THIS.pickerInsetColor.split(/\s+/);
				var pickerOutsetColor = insetColors.length < 2 ? insetColors[0] : insetColors[1] + ' ' + insetColors[0] + ' ' + insetColors[0] + ' ' + insetColors[1];
				p.btn.style.borderColor = pickerOutsetColor;
			}
			p.btn.style.display = THIS.pickerClosable ? 'block' : 'none';
			p.btn.style.position = 'absolute';
			p.btn.style.left = THIS.pickerFace + 'px';
			p.btn.style.bottom = THIS.pickerFace + 'px';
			p.btn.style.padding = '0 15px';
			p.btn.style.height = '18px';
			p.btn.style.border = THIS.pickerInset + 'px solid';
			setBtnBorder();
			p.btn.style.color = THIS.pickerButtonColor;
			p.btn.style.font = '12px sans-serif';
			p.btn.style.textAlign = 'center';
			try {
				p.btn.style.cursor = 'pointer';
			} catch(eOldIE) {
				p.btn.style.cursor = 'hand';
			}
			p.btn.onmousedown = function () {
				THIS.hidePicker();
			};
			p.btnS.style.lineHeight = p.btn.style.height;

			// load images in optimal order
			switch(modeID) {
				case 0: var padImg = 'hs.png'; break;
				case 1: var padImg = 'hv.png'; break;
			}
			p.padM.style.backgroundImage = "url('"+jscolor.getDir()+"cross.gif')";
			p.padM.style.backgroundRepeat = "no-repeat";
			p.sldM.style.backgroundImage = "url('"+jscolor.getDir()+"arrow.gif')";
			p.sldM.style.backgroundRepeat = "no-repeat";
			p.pad.style.backgroundImage = "url('"+jscolor.getDir()+padImg+"')";
			p.pad.style.backgroundRepeat = "no-repeat";
			p.pad.style.backgroundPosition = "0 0";

			// place pointers
			redrawPad();
			redrawSld();

			jscolor.picker.owner = THIS;
			document.getElementsByTagName('body')[0].appendChild(p.boxB);
		}


		function getPickerDims(o) {
			var dims = [
				2*o.pickerInset + 2*o.pickerFace + jscolor.images.pad[0] +
					(o.slider ? 2*o.pickerInset + 2*jscolor.images.arrow[0] + jscolor.images.sld[0] : 0),
				o.pickerClosable ?
					4*o.pickerInset + 3*o.pickerFace + jscolor.images.pad[1] + o.pickerButtonHeight :
					2*o.pickerInset + 2*o.pickerFace + jscolor.images.pad[1]
			];
			return dims;
		}


		function redrawPad() {
			// redraw the pad pointer
			switch(modeID) {
				case 0: var yComponent = 1; break;
				case 1: var yComponent = 2; break;
			}
			var x = Math.round((THIS.hsv[0]/6) * (jscolor.images.pad[0]-1));
			var y = Math.round((1-THIS.hsv[yComponent]) * (jscolor.images.pad[1]-1));
			jscolor.picker.padM.style.backgroundPosition =
				(THIS.pickerFace+THIS.pickerInset+x - Math.floor(jscolor.images.cross[0]/2)) + 'px ' +
				(THIS.pickerFace+THIS.pickerInset+y - Math.floor(jscolor.images.cross[1]/2)) + 'px';

			// redraw the slider image
			var seg = jscolor.picker.sld.childNodes;

			switch(modeID) {
				case 0:
					var rgb = HSV_RGB(THIS.hsv[0], THIS.hsv[1], 1);
					for(var i=0; i<seg.length; i+=1) {
						seg[i].style.backgroundColor = 'rgb('+
							(rgb[0]*(1-i/seg.length)*100)+'%,'+
							(rgb[1]*(1-i/seg.length)*100)+'%,'+
							(rgb[2]*(1-i/seg.length)*100)+'%)';
					}
					break;
				case 1:
					var rgb, s, c = [ THIS.hsv[2], 0, 0 ];
					var i = Math.floor(THIS.hsv[0]);
					var f = i%2 ? THIS.hsv[0]-i : 1-(THIS.hsv[0]-i);
					switch(i) {
						case 6:
						case 0: rgb=[0,1,2]; break;
						case 1: rgb=[1,0,2]; break;
						case 2: rgb=[2,0,1]; break;
						case 3: rgb=[2,1,0]; break;
						case 4: rgb=[1,2,0]; break;
						case 5: rgb=[0,2,1]; break;
					}
					for(var i=0; i<seg.length; i+=1) {
						s = 1 - 1/(seg.length-1)*i;
						c[1] = c[0] * (1 - s*f);
						c[2] = c[0] * (1 - s);
						seg[i].style.backgroundColor = 'rgb('+
							(c[rgb[0]]*100)+'%,'+
							(c[rgb[1]]*100)+'%,'+
							(c[rgb[2]]*100)+'%)';
					}
					break;
			}
		}


		function redrawSld() {
			// redraw the slider pointer
			switch(modeID) {
				case 0: var yComponent = 2; break;
				case 1: var yComponent = 1; break;
			}
			var y = Math.round((1-THIS.hsv[yComponent]) * (jscolor.images.sld[1]-1));
			jscolor.picker.sldM.style.backgroundPosition =
				'0 ' + (THIS.pickerFace+THIS.pickerInset+y - Math.floor(jscolor.images.arrow[1]/2)) + 'px';
		}


		function isPickerOwner() {
			return jscolor.picker && jscolor.picker.owner === THIS;
		}


		function blurTarget() {
			if(valueElement === target) {
				THIS.importColor();
			}
			if(THIS.pickerOnfocus) {
				THIS.hidePicker();
			}
		}


		function blurValue() {
			if(valueElement !== target) {
				THIS.importColor();
			}
		}


		function setPad(e) {
			var mpos = jscolor.getRelMousePos(e);
			var x = mpos.x - THIS.pickerFace - THIS.pickerInset;
			var y = mpos.y - THIS.pickerFace - THIS.pickerInset;
			switch(modeID) {
				case 0: THIS.fromHSV(x*(6/(jscolor.images.pad[0]-1)), 1 - y/(jscolor.images.pad[1]-1), null, leaveSld); break;
				case 1: THIS.fromHSV(x*(6/(jscolor.images.pad[0]-1)), null, 1 - y/(jscolor.images.pad[1]-1), leaveSld); break;
			}
		}


		function setSld(e) {
			var mpos = jscolor.getRelMousePos(e);
			var y = mpos.y - THIS.pickerFace - THIS.pickerInset;
			switch(modeID) {
				case 0: THIS.fromHSV(null, null, 1 - y/(jscolor.images.sld[1]-1), leavePad); break;
				case 1: THIS.fromHSV(null, 1 - y/(jscolor.images.sld[1]-1), null, leavePad); break;
			}
		}


		function dispatchImmediateChange() {
			if (THIS.onImmediateChange) {
				var callback;
				if (typeof THIS.onImmediateChange === 'string') {
					callback = new Function (THIS.onImmediateChange);
				} else {
					callback = THIS.onImmediateChange;
				}
				callback.call(THIS);
			}
		}


		var THIS = this;
		var modeID = this.pickerMode.toLowerCase()==='hvs' ? 1 : 0;
		var abortBlur = false;
		var
			valueElement = jscolor.fetchElement(this.valueElement),
			styleElement = jscolor.fetchElement(this.styleElement);
		var
			holdPad = false,
			holdSld = false,
			touchOffset = {};
		var
			leaveValue = 1<<0,
			leaveStyle = 1<<1,
			leavePad = 1<<2,
			leaveSld = 1<<3;

		jscolor.isColorAttrSupported = false;
		var el = document.createElement('input');
		if(el.setAttribute) {
			el.setAttribute('type', 'color');
			if(el.type.toLowerCase() == 'color') {
				jscolor.isColorAttrSupported = true;
			}
		}

		// target
		jscolor.addEvent(target, 'focus', function() {
			if(THIS.pickerOnfocus) { THIS.showPicker(); }
		});
		jscolor.addEvent(target, 'blur', function() {
			if(!abortBlur) {
				window.setTimeout(function(){ abortBlur || blurTarget(); abortBlur=false; }, 0);
			} else {
				abortBlur = false;
			}
		});

		// valueElement
		if(valueElement) {
			var updateField = function() {
				THIS.fromString(valueElement.value, leaveValue);
				dispatchImmediateChange();
			};
			jscolor.addEvent(valueElement, 'keyup', updateField);
			jscolor.addEvent(valueElement, 'input', updateField);
			jscolor.addEvent(valueElement, 'blur', blurValue);
			valueElement.setAttribute('autocomplete', 'off');
		}

		// styleElement
		if(styleElement) {
			styleElement.jscStyle = {
				backgroundImage : styleElement.style.backgroundImage,
				backgroundColor : styleElement.style.backgroundColor,
				color : styleElement.style.color
			};
		}

		// require images
		switch(modeID) {
			case 0: jscolor.requireImage('hs.png'); break;
			case 1: jscolor.requireImage('hv.png'); break;
		}
		jscolor.requireImage('cross.gif');
		jscolor.requireImage('arrow.gif');

		this.importColor();
	}

};


jscolor.install();
admin/styles.css0000644000352000025440000022360313250027404014353 0ustar  thediannthediann@import url('css.css');
*{
	margin:0;
	padding:0;
}
body {
	color:#555;
	font-family: 'Montserrat', sans-serif;
	line-height:26px;
	background:#fff;
}
.floatleft {float:left}
.floatright {float:right}
img {
	max-width:100%;
	height:auto
}
.fix {overflow:hidden}
p {
	margin:0px;
	color: #555;
}
h1, h2, h3, h4, h5, h6 {
	color: #333;
	margin-bottom: 10px;
	margin-top: 0px;
    font-weight: 400;
}
input:focus,select:focus{
	outline:none;
}
input, button{
    transition:all .3s;
    -webkit-transition:all .3s;
    -moz-transition:all .3s;
}
a {
	transition: all 0.3s ease 0s;
    -webkit-transition:all .3s;
    -moz-transition:all .3s;
	text-decoration:none;
	color:#333;
	font-size:13px;
}
a:hover{
	color:#296dc1;
}
a:active, a:hover, a:focus {
	outline: none;
	text-decoration:none;
}
button:focus{
	outline:none;
}
ul{
	list-style: outside none none;
	margin: 0;
	padding: 0;
}
.ptb-15{padding:15px 0px}
.ptb-30{padding:30px 0px}
.ptb-140{padding:140px 0px;}
.ptb-140{padding:50px 0px;}
.ptb-70{padding:140px 0px 110px;}
.ptb-70{padding:50px 0px 50px;}

.pb-140{padding-bottom: 140px;}
.pb-140{padding-bottom:50px;}

.mtb-30{margin:30px 0px;}

.mt-20{margin-top:20px;}
.mt-30{margin-top:30px;}
.mt-60{margin-top:60px;}
.mt-100{margin-top: 100px;}

.mb-60{margin-bottom:60px;}
.mb-50{margin-bottom:50px;}
.mb-30{margin-bottom:30px}
.mb-40{margin-bottom:40px}
.mb-20{margin-bottom:20px}

.bg-1{background:#fafafa}
.bg-2{background:#296dc1;}
.bg-fff{background:#fff}

.black-opacity{
	position:relative;
	z-index:9;
}
.black-opacity:before{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:#000;
	opacity:.7;
	content:"";
	z-index:-9;
}
.bg-img-1{
	background:url(../images/bg/4.html)no-repeat center center / cover;
}
.bg-img-2{
	background:url(../images/bg/5.jpg)no-repeat center center / cover;
}
.bg-img-3{
	background:url(../images/bg/6.html)no-repeat center center / cover;
}
.bg-img-4{
	background:url(../images/bg/7.html)no-repeat center center / cover;
}
.bg-img-5{
	background:url(../images/bg/8.html)no-repeat center center / cover;
}
.bg-img-6{
	background:url(../images/bg/9.html)no-repeat center center / cover;
}
.bg-img-7{
	background:url(../images/bg/10.html)no-repeat center center / cover;
}
.bg-img-8{
	background:url(../images/bg/11.html)no-repeat center center / cover;
}
/*preloader-area */
.preloder-wrap {
	background-color: #296dc1;
	color: #fff;
	height: 100vh;
	display: -webkit-box; 
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex; 
	display: flex;
	justify-content:center;
	align-items:center;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 999999;
}
.loader {
    height: 200px;
    left: 50%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    right: 50%;
    top: 0;
    width: 100%;
    margin-left: -100px;
}
.loader .siteref {
    bottom: 16px !important;
    display: block;
    font-size: 10px;
    left: 10px;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 100% !important;
}
.preloder-wrap .child-common
{
    -moz-border-radius: 50% 50% 50% 50%;
    -webkit-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
    position: absolute;
    border-left: 5px solid #FFF;
    border-right: 5px solid #FFF;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    -webkit-animation: animate3 2s infinite;
    animation: animate3 2s infinite;
}

.preloder-wrap .child1
{
  left: 75px;
  top: 75px;
  width: 50px;
  height: 50px;
}

.preloder-wrap .child2
{
  left: 65px;
  top: 65px;
  width: 70px;
  height: 70px;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.preloder-wrap .child3
{
  left: 55px;
  top: 55px;
  width: 90px;
  height: 90px;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.preloder-wrap  .child4
{
  left: 45px;
  top: 45px;
  width: 110px;
  height: 110px;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
@-webkit-keyframes animate3
{
  50% {
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes animate3 {
  50% {
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  100% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
/*preloader-area */

/*search-area */
.search-area{
    position: fixed;
    height: 100vh;
    width: 100%;
    background: #262626;
    z-index: -1005;
    display: none;
    display: -webkit-box; 
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex; 
	display: flex;
    flex-direction: column;
	-webkit-flex-direction: column;
    justify-content: center;
	-webkit-justify-content:center;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition:all .5s;
    -webkit-transition:all .5s;
    -moz-transition:all .5s;
}
.search-area.active{
    visibility: visible;
    opacity: 1;
    z-index: 1005;
}
.search-form form{
    position: relative;
}
.search-form input{
    height: 50px;
    width: 100%;
    border: 1px solid #f1f1f1;
    background: transparent;
    padding-left: 20px;
    padding-right: 120px;
	color:#fff;
}
.search-form button{
    height: 50px;
    width: 120px;
    position: absolute;
    top: 0;
    right: 0;
    border:1px solid #f1f1f1;
}
.search-area span.closs-btn{
    position: absolute;;
    right: 5px;
    top: 5px;
    display: inline-block;
    height: 45px;
    width: 80px;
    text-transform: uppercase;;
    background: #fff;
    line-height: 45px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
}
.search-area span.closs-btn:hover{
    background: #296dc1;
    color: #fff;
}
/*search-area */
/*---------------------------- 2. header-area start --------------------------*/
.header-area{background: #fff}
.logo h1 {
  margin: 0;
  padding: 22px 0;
  transition:all .3s;
  text-transform:uppercase;
  font-size:24px;
  font-weight: 500;
}
.logo h1 a{
	color:#222;
	font-size:24px;
}
/*---------------------------- 2. header-area end --------------------------*/
.mainmenu > ul{
	display: -webkit-box; 
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex; 
	display: flex;
	justify-content: flex-end;
	-webkit-justify-content: flex-end;
}
.mainmenu ul li {
	position:relative;
}
.mainmenu ul li:first-child{margin-left:0px;}
.mainmenu ul li:last-child{margin-right:0px;}
.mainmenu ul li > a{
	text-transform:uppercase;
	font-weight:500;
	padding:22px 15px;
	color:#333;
	display:block;
	position:relative;
}
.mainmenu ul li.active > a,.mainmenu ul li:hover > a{
	background:#296dc1;
	color:#fff;
}
.mainmenu ul li > a:before,.mainmenu ul li > a:after{
	position: absolute;
	left: 15px;
	height: 1px;
	width:0;
	background: #fff;
	content: "";
	bottom: 24px;
	transition:all .5s;
	-webkit-transition:all .5s;
	-moz-transition:all .5s;
}
.mainmenu ul li > a:after{
	bottom:22px;
	left:auto;
	right:15px;
}
.mainmenu ul li.active > a:before,.mainmenu ul li.active > a:after,.mainmenu ul li:hover > a:before,.mainmenu ul li:hover > a:after{
	width:45%;
}
.mainmenu ul li a i{
	margin-left:2px;
}
.mainmenu ul li > ul.submenu{
	position:absolute;
	left:0;
	top:100%;
	background:#fff;
	box-shadow:0px 2px 3px rgba(0,0,0,.15);
	width:180px;
	opacity:0;
	visibility:hidden;
    transition: all 0.3s ease 0s;
    -webkit-transition:all .3s;
    -moz-transition:all .3s;
	z-index:999;
	border-top:2px solid #296dc1;
	text-align:left;
}
.mainmenu ul li:hover > ul.submenu{
	opacity:1;
	visibility:visible;
}
.mainmenu ul li > ul.submenu.right{
	left:auto;
	right:0;
}
.mainmenu ul li > ul.submenu li{
	display:block;
	padding:0px 0px;
	margin:0px;
}
.mainmenu ul li > ul.submenu li > a{
	text-transform:capitalize;
	padding:7px 15px;
	font-size:12px;
}
.mainmenu ul li > ul.submenu li:hover > a{
	color:#fff;
	background:#296dc1;
}
.mainmenu ul li > ul.submenu li.active > a{
    color:#fff;
	background:#296dc1;
}
.mainmenu ul li > ul.submenu li.active > a::before,.mainmenu ul li > ul.submenu li.active > a::after,.mainmenu ul li > ul.submenu li:hover > a:before,.mainmenu ul li > ul.submenu li:hover > a::after{
    display: none;
}
.mainmenu ul li > ul.submenu li > ul {
    left: 100%;
	top:0px;
}
.mainmenu ul li > ul.megamenu{
	position:absolute;
	right:0;
	z-index:9999;
	opacity:0;
	visibility:hidden;
	transition:all .3s;
	-webkit-transition:all .3s;
	-moz-transition:all .3s;
	width:594px;
	box-shadow:0px 2px 3px rgba(0,0,0,.15);
	padding:10px ;
	background:#fff;
	border-top:2px solid #296dc1;
	text-align:left;
}
.mainmenu ul li:hover > ul.megamenu{
	opacity:1;
	visibility:visible;
}
.mainmenu ul li > ul.megamenu li{
	width:33.33%;
	float:left;
	display:block;
	margin:0px;
	padding:0px 15px;
}
.mainmenu ul li > ul.megamenu li a{
	text-transform:capitalize;
	padding:3px 0px;
	font-size:13px;
}
.mainmenu ul li > ul.megamenu li a.mega-title {
    text-transform: uppercase;
    font-weight: 500;
    color: #333;
    font-size: 15px;
    padding-bottom: 5px;
    margin-bottom: 5px;
    position: relative;
}
.mainmenu ul li > ul.megamenu li a.mega-title::before,.mainmenu ul li > ul.megamenu li a.mega-title::after{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 1px;
    background:#296dc1;
    content: "";
}
.mainmenu ul li > ul.megamenu li a.mega-title::after{
    left: 10px;
    bottom: 2px;
}
.mainmenu ul li > ul.megamenu li:hover a.mega-title{
	background:transparent;
}
.mainmenu ul li > ul.megamenu li > ul li:hover a{
	color:#296dc1;
	background:transparent;
	padding-left:5px;
}
.mainmenu ul li > ul.megamenu > li.megatitle a{
	margin-bottom:5px;
	border-bottom:1px solid #f1f1f1;
	text-transform:uppercase;
}
.mainmenu ul li > ul.megamenu li > ul li{
	width:100%;
    padding:0px;
}
.mainmenu ul li > ul.megamenu li > ul li.active a{
	color:#296dc1;
	background:transparent;
}
.search-wrap ul li{
	width:100%;
	height:70px;
	background:#296dc1;
	position:relative;
	line-height:70px;
	transform:skew(15deg);
	overflow:hidden;
	position:relative;
	text-align:center;
	right:9px;
}
.search-wrap ul li a{
	color:#fff;
	display:block;
	transform:skew(-15deg);
	font-size:16px;
}
/*---------------------------- header-area end --------------------------*/

/*---------------------------- responsiv-area start --------------------------*/
.responsive-menu-wrap{
	position:relative;
}
.responsive-menu-wrap .slicknav_btn {
    background-color: transparent;
    border-radius: 0;
    display: block;
    float: right;
    margin: 0;
        padding: 28px 21px;
    text-decoration: none;
    text-shadow: none;
    vertical-align: middle;
    /*height: 70px;*/height: 82px;
    width: 100px;
    background: #296dc1;
    transform: skew(15deg);
    -moz-transform: skew(15deg);
    -webkit-transform: skew(15deg);
}
.slicknav_menu .slicknav_icon {
	-moz-transform: skew(-20deg);
	-webkit-transform: skew(-20deg);
	transform: skew(-20deg);
	margin: 2px 18px;
}
.responsive-menu-wrap .slicknav_menu .slicknav_menutxt {
	display: none;
}
.responsive-menu-wrap .slicknav_menu {
	background: transparent none repeat scroll 0 0;
	font-size: 15px;
	padding: 0;
	position: absolute;
	right: 9px;
	top: 0;
}
.responsive-menu-wrap .slicknav_menu .slicknav_icon-bar {
  border-radius: 0;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  display: block;
  height: 2px;
  width: 25px;
  background: #fff;
}
.responsive-menu-wrap .slicknav_nav {
    background: #296dc1 none repeat scroll 0 0;
    border-radius: 0px;
    clear: both;
    color: #fff;
    font-size: 15px;
    margin: 0;
    padding: 5px 0;
    position: relative;
    top: 0;
    width: 720px;
    z-index: 99;
    right: -8px;
    z-index: 9999999;
    position: relative;
}
.slicknav_nav a {
	color: #f1f1f1;
	text-decoration: none;
	text-transform: capitalize;
}
.slicknav_nav a i{display:none}
.slicknav_nav a:hover {
	background: transparent none repeat scroll 0 0;
	border-radius: 0;
	text-shadow:0px 3px 5px rgba(0,0,0,.5);
	color:#fff;
}
.responsive-menu-wrap .slicknav_nav .slicknav_row:hover {
	background: transparent;
}
.responsive-menu-wrap .slicknav_nav .slicknav_arrow {
	font-size: 10px;
	margin: 5px;
}
.responsive-menu-wrap .slicknav_open .slicknav_icon span:first-child {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  position: relative;
  top: 5px;
}
.responsive-menu-wrap .slicknav_open .slicknav_icon span:last-child{
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	-moz-transform:rotate(45deg);
}
.responsive-menu-wrap .slicknav_open .slicknav_icon span:nth-child(2){display:none}
/*---------------------------- responsiv-area end --------------------------*/

/*---------------------------- 3. slider-area start --------------------------*/
.slider-area{
	height:100%;
	position:relative;
}
.slider-items{
	position:relative;
	z-index:9;
}
.slider-items:before{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:#000;
	opacity:.4;
	z-index:9;
	content:"";
}
.slider-items img{
    visibility: hidden;
}
.table{
	display:table;
	height:100%;
}
.table-cell{
	display:table-cell;
	vertical-align:middle;
}
.slider-content{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index:99;
}
.slider-content h2{
	text-transform:uppercase;
	color:#fff;
	margin-bottom:20px;
	font-size:36px;
}
.slider-content h3{
	color:#296dc1;
	text-transform:uppercase;
	margin-bottom:15px;
}
.slider-content p{
	color:#fff;
	text-transform:capitalize;
	margin-bottom:25px;
}
.slider-content ul li{
	display:inline-block;
	margin:0px 5px;
}
.slider-content ul li a,.btn-style{
	display:inline-block;
	padding:8px 30px;
	background:#fff;
	text-transform:uppercase;
	font-weight:600;
	font-size:13px;
	position:relative;
	z-index:9;
	 -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
	-webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
}
.slider-content ul li a:hover,.btn-style:hover{
	color:#fff;
}
.slider-content ul li:last-child a{
	background:#296dc1;
	color:#fff;
}
.slider-content ul li:last-child a:hover{
	color:#296dc1;
}
.slider-content ul li a:before,.btn-style:before{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:#296dc1;
	content:"";
	z-index:-9;
	transition:all .3s;
	-webkit-transition:all .3s;
	-moz-transition:all .3s;
	-webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.slider-content ul li:last-child a:before{
	background:#fff;
}
.slider-content ul li a:hover:before,.btn-style:hover:before{
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
	-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.slider-active{
	position:relative;
}
.slider-next-prev-style{
    overflow: hidden;
}
.slider-next-prev-style .owl-nav div{
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    height: 45px;
    width: 55px;
    background: #296dc1;
    line-height: 45px;
    text-align: center;
    color: #fff;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}
.slider-next-prev-style .owl-nav div:hover{
    background: #0552b1;
}
.slider-next-prev-style:hover .owl-nav div{
    left: 0;
}
.slider-next-prev-style .owl-nav div.owl-next{
    left: auto;
    right: -100px;
}
.slider-next-prev-style:hover .owl-nav div.owl-next{
    left: auto;
    right: 0;
}
.dotate-style .owl-dots{
	position:absolute;
	left:0;
	bottom:5px;
	right:0;
	text-align:center;
	z-index:999999;
}
.dotate-style .owl-dot {
	height:5px;
	width:20px;
	display:inline-block;
	background:#fff;
	outline:2px solid #fff;
	outline-offset:2px;
	margin:0px 7px;
}
.dotate-style .owl-dot.active{
	background:#296dc1;
	outline-color:#296dc1;
}
/*---------------------------- 3. slider-area end --------------------------*/

/*---------------------------- 4. about-area start --------------------------*/
.about-img{
	position:relative;
	z-index:9;
}
.about-img img{
	visibility:hidden;
}
.about-img:after{
	position:absolute;
	width:90%;
	height:90%;
	left:5%;
	top:5%;
	border:3px solid #fff;
	opacity:.7;
	content:"";
	z-index:9;
}
.about-img:before{
	z-index:9;
}
.about-wrap h2{
	margin-bottom:20px;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 10px;
	line-height:30px;
}
.about-wrap h2::before,.about-wrap h2::after{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 1px ;
    content: "";
    background: #296dc1;
}
.about-wrap h2::after{
    left: 10px;
    bottom: -2px;
}
.about-wrap p{
	margin-bottom:15px;
}
.about-wrap ul li{
	line-height:30px;
	position:relative;
	padding-left:25px;
	text-transform:capitalize;
}
.about-wrap ul li:before{
	position:absolute;
	top:12px;
	left:0;
	width:4px;
	height:4px;
	background:#296dc1;
	outline:2px solid #296dc1;
	outline-offset:2px;
	content:"";
}
/*---------------------------- 4. about-area end --------------------------*/
/*---------------------------- 5. service-area start --------------------------*/
.section-title h2{
	margin-bottom:20px;
	padding-bottom:15px;
	position:relative;
	text-transform:capitalize;
	line-height:24px;
}
.section-title h2:before,.section-title h2:after,.fanfact-wrap h2:before,.fanfact-wrap h2:after{
	position:absolute;
	left:49%;
	bottom:0;
	width:60px;
	height:1px;
	background:#296dc1;
	content:"";
	transform:translateX(-50%);
	-webkit-transform:translateX(-50%);
	-moz-transform:translateX(-50%);
}
.section-title h2:after,.fanfact-wrap h2:after{
	bottom:-2px;
	left:51%;
}
.section-title p {
    text-transform: capitalize;
    margin-bottom: 35px;
    font-size: 15px;
    font-style: italic;
    color: #696969;
    line-height: 24px;
}
.service-wrap{
	background:#fafafa;
	transition:all .3s;
	-webkit-transition:all .3s;
	-moz-transition:all .3s;
}
.service-wrap:hover{
	background:#296dc1;
}
.service-img{
	position:relative;
	z-index:9;
	overflow:hidden;
}
.service-img img{
	width:100%;
	transform:scale(1.1);
	-webkit-transform:scale(1.1);
	-moz-transform:scale(1.1);
	transition:all .3s;
	-webkit-transition:all .3s;
	-moz-transition:all .3s;
}
.service-img:before{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:#000;
	content:"";
	z-index:9;
	opacity:.2;
	transition:all .3s;
	-webkit-transition:all .3s;
	-moz-transition:all .3s;
}
.service-wrap:hover .service-img:before{
	opacity:.5;
}
.service-content{
	padding:30px 20px;
}
.service-content h3{
	font-size:20px;
	margin-bottom:15px;
	transition:all .3s;
	-webkit-transition:all .3s;
	-moz-transition:all .3s;
}
.service-content p{
	margin-bottom:10px;
	transition:all .3s;
	-webkit-transition:all .3s;
	-moz-transition:all .3s;
	text-transform:capitalize;
}
.service-wrap:hover .service-content p,.service-wrap:hover .service-content h3,.service-wrap:hover .service-content a{color:#fff}
.service-wrap .service-content a:hover{
    text-shadow: 0px 3px 5px rgba(0,0,0,.3);
}
/*---------------------------- 5. service-area end --------------------------*/
/*---------------------------- 6. fanfact-area start --------------------------*/
.fanfact-area{
	/*height:350px;*/ height:200px;
}
.fanfact-wrap h2{
	font-size:36px;
	color:#fff;
	padding-bottom:10px;
	position:relative;
	display:inline-block;
	min-width:80px;
}
.fanfact-wrap h2:before,.fanfact-wrap h2:after{
	left:0;
	transform:translateX(0);
	-webkit-transform:translateX(0);
	-moz-transform:translateX(0);
	width:30px;
	background:#fff;
}
.fanfact-wrap h2:after{
	left:10px;
}
.fanfact-wrap p{
	color:#f1f1f1;
}
/*---------------------------- 6. fanfact-area end --------------------------*/
/*---------------------------- 7. portfolio-area end --------------------------*/
.portfolio-menu{
    margin-bottom: 30px;
}
.portfolio-menu button{
    position: relative;
    padding: 7px 25px;
    text-transform: uppercase;
    color: #fff;
    border: none;
    font-size: 12px;
    background: #296dc1;
    overflow: hidden;
    z-index: 9;
}
.portfolio-menu button.active{
    background: #0552b1;
}
.portfolio-menu button::before{
    position: absolute;
    right: -30px;
    top: 0;
    z-index: -9;
    width: 55px;
    height: 100%;
    background: #0552b1;
    content: "";
    transform: skew(-48deg);
    -webkit-transform: skew(-48deg);
    -moz-transform: skew(-48deg);
}
.portfolio-menu button.active::before{
    background: #296dc1;
}
.portfolio-wrap{
	position: relative;
	overflow: hidden;
	margin-bottom:30px;
}
.overlay{
    position: absolute;
    text-align: center;
    display: -webkit-box; 
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex; 
	display: flex;
    flex-direction: column;
	-webkit-flex-direction: column;
    justify-content: center;
	-webkit-justify-content:center;
	z-index:9;
	padding:0px 30px;
	opacity:0.5;
}
.overlay:before{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	content:"";
	background:#296dc1;
	z-index:-9;
}
.overlay a{
	height:40px;
	width:40px;
	display:inline-block;
	background:#fff;
	line-height:40px;
	text-align:center;
	margin:0px auto 20px;
	color:#296dc1;
	border-radius:50%;
}

.overlay h3{
	color:#fff;
	font-size:18px;
	text-transform:uppercase;
}
.overlay p{
	color:#fff;
}
/*----------7. portfolio-area end -----------*/

/*-------------- 8. featured-area start -----------------*/
.featured-wrap ul{
	position:relative;
	overflow:hidden;
}
.featured-wrap ul:before{
	position:absolute;
	left:50%;
	top:0;
	width:2px;
	height:100%;
	background:#296dc1;
	content:"";
	transform:translateX(-50%);
	-webkit-transform:translateX(-50%);
	-moz-transform:translateX(-50%);
}
.featured-wrap ul li{
	position:relative;
	overflow:hidden;
	padding:60px 0px 10px 0;
}
.featured-wrap ul li:before{
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%);
	height:10px;
	width:10px;
	background:#296dc1;
	content:"";
	border-radius:50%;
	margin-top:20px;
}
.featured-wrap ul li:last-child{
	padding:17px 0;
}
.featured-wrap ul li h3{
	transform:translateX(-50%);
	-webkit-transform:translateX(-50%);
	-moz-transform:translateX(-50%);
	position:absolute;
	left:50%;
	top:0;
	padding:10px 30px;
	background:#0552b1;
	color:#fff;
	text-transform:uppercase;
	font-size:14px;
	margin:0px;
}
.featured-wrap ul li .featured-content{
	float:right;
	width:43%;
	background:#0552b1;
	position:relative;
	transition:all .3s;
	-webkit-transition:all .3s;
	-moz-transition:all .3s;
	border-radius:5px;
}
.featured-wrap ul li:hover .featured-content{
	background:#296dc1;
}
.featured-wrap ul li .featured-content:before{
	position:absolute;
	top:50%;
	border-top:10px solid transparent;
	border-bottom:10px solid transparent;
	content:"";
	transform:translateY(-50%);
	-webkit-transform:translateY(-50%);
	-moz-transform:translateY(-50%);
	transition:all .3s;
	-webkit-transition:all .3s;
	-moz-transition:all .3s;
}
.featured-wrap ul li:nth-child(odd) .featured-content:before{
	border-right:10px solid #0552b1;
	left:-10px;
}
.featured-wrap ul li:hover:nth-child(odd) .featured-content:before{
	border-right:10px solid #296dc1;
}
.featured-wrap ul li:nth-child(even) .featured-content{
	float:left;
}
.featured-wrap ul li:nth-child(even) .featured-content:before{
	right:-10px;
	border-left:10px solid #0552b1;
	border-right:0px solid #0552b1;
}
.featured-wrap ul li:hover:nth-child(even) .featured-content:before{
	border-left:10px solid #296dc1;
	border-right:0px solid #296dc1;
}
.featured-wrap ul li .featured-content .featured-img{
	width:40%;
	position:relative;
}
.featured-wrap ul li .featured-content .featured-img:before{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:#000;
	content:"";
	opacity:.2;
	transition:all .3s;
	-webkit-transition:all .3s;
	-moz-transition:all .3s;
}
.featured-wrap ul li:hover .featured-content .featured-img:before{
	opacity:.5;
}
.featured-wrap ul li:nth-child(odd) .featured-content .featured-img{
	float:right;
}
.featured-wrap ul li:nth-child(even) .featured-content .featured-img{
	float:left;
}
.featured-wrap ul li .featured-content .featured-info{
	width:60%;
	padding:20px;
}
.featured-wrap ul li:nth-child(odd) .featured-content .featured-info{
	float:left;
}
.featured-wrap ul li:nth-child(even) .featured-content .featured-info{
	float:right;
}
.featured-wrap ul li .featured-content h4{
	font-size:16px;
	margin-bottom:15px;
	color:#fff;
}
.featured-wrap ul li .featured-content p {
	color:#d2d2d2;
	line-height:24px;
}
/*---------- 8. featured-area end --------------*/

/*------------- 9. video-area start --------------------------*/
.video-area{
	height:400px;
}
.video-wrap a {
	animation: .8s cubic-bezier(0.8, 0, 0, 1) 1s normal none infinite running pulse;
	-webkit-animation: .8s cubic-bezier(0.8, 0, 0, 1) 1s normal none infinite running pulse;
	-moz-animation: .8s cubic-bezier(0.8, 0, 0, 1) 1s normal none infinite running pulse;
	background-color: transparent;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(41, 109, 193, 0.9);
	display: inline-block;
	font-size: 18px;
	height: 75px;
	line-height: 72px;
	text-align: center;
	width: 75px;
	border:2px solid #fff;
	color: #296dc1;
	background:#fff;
}
.video-wrap a:hover{
	background:#296dc1;
	border-color:#296dc1;
	color:#fff;
}
@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 10px rgba(41, 109, 193, 0);
    }
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 10px rgba(41, 109, 193, 0);
    }
}
/*---------------------------- 9. video-area end --------------------------*/
/*-----------10. team-area start --------------*/
.team-wrap{
	padding-bottom: 90px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.team-img{
	position:relative;
	z-index:9;
}
.team-img:before{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:#000;
	content:"";
	opacity:0;
	z-index:9;
	 -webkit-transition: -webkit-transform 0.6s;
    -moz-transition: -moz-transform 0.6s;
    transition: transform 0.6s;
	transform:scaleY(0);
	-webkit-transform:scaleY(0);
	-moz-transform:scaleY(0);
	transform-origin:top;
	-webkit-transform-origin:top;
	-moz-transform-origin:top;
}
.team-wrap:hover .team-img:before{
	transform:scaleY(1);
	-webkit-transform:scaleY(1);
	-moz-transform:scaleY(1);
	opacity:.5;
}
.team-img img{
    -webkit-transition: -webkit-transform 0.6s;
    -moz-transition: -moz-transform 0.6s;
    transition: transform 0.6s;
	width:100%;
}
.team-wrap:hover .team-img img{
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
}
.team-content{
	height: 90px;
	width: 100%;
	bottom: 0;
	position: absolute;
	text-align: center;
	overflow: hidden;
	-webkit-transition: all 0.6s;
	-moz-transition: all 0.6s;
	transition: all 0.6s;
	z-index:9;
	backface-visibility:#296dc1;
}
.team-content:before{
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2px;
    background:#296dc1;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transition: all 0.6s;
    left: 0;
	z-index:-9;
}
.team-wrap:hover .team-content:before{
	height: 100%;
	-webkit-transition: all 0.6s;
	-moz-transition: all 0.6s;
	transition: all 0.6s;
}
.team-wrap:hover .team-content{
	height:125px;
}
.team-info{
	background:#296dc1;
	padding: 20px;
}
.team-content h3{
	text-transform:uppercase;
	margin-bottom:0px;
	color:#fff;
	font-size:15px;
}
.team-content p{
	color:#fff;
	font-style:italic;
	margin-bottom:10px;
	font-size:12px;
	font-weight:300;
	letter-spacing:1px;
}
.team-content ul{
	opacity: 0;
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: -webkit-transform 0.6s, opacity 0.4s;
	-moz-transition: -moz-transform 0.6s, opacity 0.4s;
	transition: transform 0.6s, opacity 0.4s;
}
.team-wrap:hover .team-content ul{
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
	-webkit-transition: -webkit-transform 0.6s, opacity 0.4s;
	-moz-transition: -moz-transform 0.6s, opacity 0.4s;
	transition: transform 0.6s, opacity 0.4s;
}
.team-content ul li{
    opacity: 0;
    -moz-transform: translateY(40px);
    -webkit-transform: translateY(40px);
    -o-transform: translateY(40px);
    -ms-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: -webkit-transform 0.6s, opacity 0.1s;
    -moz-transition: -moz-transform 0.6s, opacity 0.1s;
    transition: transform 0.6s, opacity 0.1s;
	display:inline-block;
}
.team-wrap:hover .team-content ul li{
    opacity: 1;
    -moz-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}
.team-wrap:hover .team-content ul li:nth-child(1){
    -webkit-transition-delay: 100ms;
    transition-delay: 100ms;
}
.team-wrap:hover .team-content ul li:nth-child(2){
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
}
.team-wrap:hover .team-content ul li:nth-child(3){
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
}
.team-wrap:hover .team-content ul li:nth-child(4){
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
}
.team-wrap:hover .team-content ul li:nth-child(5){
    -webkit-transition-delay: 500ms;
    transition-delay: 500ms;
}
.team-content ul li a{
	background:#fff;
	height:27px;
	width:27px;
	line-height:25px;
	text-align:center;
	display:block;
}
/*-----------10. team-area end --------------*/

/*-----------11. faq-area start --------------*/
.faq-wrap .panel-default > .panel-heading {
	background-color: transparent;
	border-color: #e1e1e1;
	padding:0px;
	font-weight: 700;
}
.faq-wrap .panel-title > .small, .panel-title > .small > a, .panel-title > a, .panel-title > small, .panel-title > small > a {
	padding: 12px 20px;
}
.faq-wrap  .panel-body p {
  margin-bottom:0px;
}
.faq-wrap .panel-body {
    padding: 20px 20px;
    border: 1px solid #296dc1;
}
.faq-wrap .panel-default a {
	display: block;
	position: relative;
	background:#296dc1;
	color:#fff;
	overflow:hidden;
	font-size:15px;
}
.faq-wrap .panel-default a:before{
    position: absolute;
    right: -15px;
    top: 0;
    width: 57px;
    height: 100%;
    background: #0552b1;
    content: "";
    transform: skew(-20deg);
    -webkit-transform: skew(-20deg);
    -moz-transform: skew(-20deg);
}
.faq-wrap .panel-default a:after {
	content: "";
	font-family: fontawesome;
	font-size: 16px;
	position: absolute;
	right: 0;
	background: #0552b1;
	height: 100%;
	top: 0;
	width: 35px;
	color: #fff;
	text-align: center;
	line-height: 38px;
	border:1px solid #0552b1;
}
.faq-wrap .panel-default a.collapsed:after{
	content:"\f107";
}
.faq-wrap.about-content {
  padding: 12px 30px 12px 0;
}
.panel-group {
	margin-bottom: 0;
}
.form-style input,.form-style textarea{
	width:100%;
	height:40px;
	padding-left:15px;
	margin-bottom:18px;
	border:1px solid #999;
}
.form-style span{
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 11px;
    margin-bottom: 5px;
}
.form-style input:focus,.form-style textarea:focus{
	border:1px solid #296dc1;
	outline:none;
}
.form-style textarea{
	height:115px;
}
.form-style button{
	border:1px solid #999;
}
.form-style button:hover{
	border-color:#296dc1;
}
/*-----------11. faq-area end --------------*/

/*-----------12. client-area start --------------*/
.client-info{
	padding:25px 20px;
	background:#296dc1;
}
.client-info h3{
	font-size:16px;
	margin-bottom:0px;
	color:#fff;
}
.client-info span{
    font-size: 11px;
    display: block;
    color: #f1f1f1;
}
.client-info ul li{
    display: inline-block;
    margin-bottom: 10px;
    color: #c5c53a;
}
.client-info p{
    line-height: 24px;
    color: #e6e6e6;
    font-style: italic;
    font-weight: 300;
}
.client-img{
	position:relative;
	z-index:9;
}
.client-img:before{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background:#000;
	content:"";
	z-index:99;
	opacity:.4;
}
.test-active{
	padding-bottom:50px;
}
.test-active.dotate-style .owl-dots{
	bottom:-4px;
}
.test-active.dotate-style .owl-dot{
    background: #0552b1;
    outline-color: #0552b1;
}
.test-active.dotate-style .owl-dot.active{
	background:#296dc1;
	outline-color:#296dc1;
}
/*-----------12. client-area end --------------*/
/*------------------13. praller-area start --------------------*/
.prallex-area{
    height: 450px;
    display: -webkit-box; 
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex; 
	display: flex;
    flex-direction: column;
	-webkit-flex-direction: column;
    justify-content: center;
	-webkit-justify-content:center;
}
.prallex-wrap h2{
	font-size:35px;
	color:#fff;
	line-height:55px;
	letter-spacing:1px;
	margin-bottom:20px;
	text-transform:capitalize;
}
.prallex-wrap  h2 i.fa-quote-left{margin-right:30px;}
.prallex-wrap  h2 i.fa-quote-right{margin-left:30px;}
.prallex-wrap span{
	color:#f1f1f1;
	text-transform:capitalize;
}
/*------------------13. praller-area end --------------------*/

/*------------------14. blog-area start --------------------*/
.blog-wrap{
	background:#fff;
}
.blog-img{
	position:relative;
	z-index:99;
	overflow:hidden;
}
.blog-img:before,.blog-img:after{
	position:absolute;
	top:0;
	width:0;
	height:100%;
	background:#000;
	content:"";
	transition:all .5s;
	-webkit-transition:all .5s;
	-moz-transition:all .5s;
	opacity:.5;
}
.blog-img:before{
	left:0;
}
.blog-wrap:hover .blog-img:before{
	width:50%;
}
.blog-img:after{
	right:0;
}
.blog-wrap:hover .blog-img:after{
	width:50%;
}
.blog-meta{
	margin-bottom:10px;
}
.blog-meta ul li{
	display:inline-block;
	margin-right:10px;
}
.blog-meta ul li a{
	color:#555;
}
.blog-meta ul li a:hover{
	color:#296dc1;
}
.blog-meta ul li a i{
	margin-right:3px;
}
.blog-content{
	position:relative;
	padding:20px 20px 30px;
	border-bottom:2px solid #c3c3c3;
}
.blog-content:before,.blog-content:after{
	position:absolute;
	left:0;
	bottom:-2px;
	width:10%;
	height:2px;
	background: #296dc1;
	content:"";
	transition:all .5s;
	-webkit-transition:all .5s;
	-moz-transition:all .5s;
	opacity:.7;
}
.blog-wrap:hover .blog-content:before,.blog-wrap:hover .blog-content:after{
	width:50%;
}
.blog-content:after{
	left:auto;
	right:0;
}
.blog-content h3{
	margin-bottom:15px;
}
.blog-content h3 a{
	font-size:20px;
	text-transform:capitalize;
}
.blog-content p{
	margin-bottom:20px;
	line-height:24px;
}
.blog-content a.btn-style{
	border:1px solid #296dc1;
}
/*------------------14. blog-area end --------------------*/

/*------------------15. newsletter-area start --------------------*/
.newsletter-area{
	/*height:400px;*/
	display: -webkit-box; 
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex; 
	display: flex;
	flex-direction:column;
	justify-content:center;
}
.newsletter-wrap h2{
	color:#fff;
	margin-bottom:15px;
}
.newsletter-wrap p{
	color:#f1f1f1;
}
.newsletter-form form{
	position:relative;
	margin:17px 0px;
}
.newsletter-form input{
	margin:0px;
}
.newsletter-form button{
	position:absolute;
	right:-1px;
	top:0;
	height:40px;
	background:#0552b1;
	border-color:#0552b1;
	color:#fff;
}
/*------------------15. newsletter-area end --------------------*/

/*------------------16. footer-area start --------------------*/
.footer-top{
	/*padding:100px 0px;*/
	background:#296dc1;
	padding:40px 0px 25px 0px;
}
.footer-logo h1{
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer-logo p{
    color: #fafafa;
    margin-bottom:15px;
}
.footer-logo ul li{
    line-height: 35px;
    color: #f1f1f1;
    font-style: italic;
}
.footer-logo ul li i{
    margin-right: 5px;
}
.footer-widget h2{
    font-size: 20px;
    color: #f1f1f1;
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 15px;
}
.footer-widget h2::before,.footer-widget h2::after{
    position: absolute;
    left: 0;
    bottom: 0;
    background: #f1f1f1;
    content: "";
    height: 1px ;
    width: 30px;
}
.footer-widget h2::after{
    left: 5px;
    bottom: -2px;
}
.footer-menu ul li{
    line-height: 30px;
}
.footer-menu ul li a{
    color: #fafafa;
    display: inline-block;;
    padding-left: 10px;
    position: relative;
}
.footer-menu ul li a:hover{
    text-shadow: 0px 3px 5px rgba(0,0,0,.5);
}
.footer-menu ul li a::before{
    position: absolute;
    left: 0;
    top: 0;
    content: "\f105";
    font-family: fontawesome;
}
.instagram-wrap ul{
    overflow: hidden;
}
.instagram-wrap ul li{
    padding:2px;
    width: 33.33%;
    float: left;
}
.instagram-wrap ul li a{
    display: block;
    position: relative;
}
.instagram-wrap ul li a::before{
    position: absolute;
    left: 0
    top:0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .2;
    content: "";
    transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
}
.instagram-wrap ul li:hover a::before{
    opacity: .5;
}
.quick-contact input,.quick-contact textarea{
    height: 30px;
    background: transparent;
    border: 1px solid #f1f1f1;
    margin-bottom: 5px;
    width: 100%;
    color: #fff;
    padding-left: 10px;
}
.quick-contact textarea{
    height: 60px;
    margin: 0px;
}
.quick-contact button{
    padding: 5px 25px;
    border: 1px solid transparent;
}
.quick-contact ::-webkit-input-placeholder {
    color: #f1f1f1;
    font-size: 12px;
}
.quick-contact ::-moz-placeholder {
    color: #f1f1f1;
    font-size: 12px;
}
.quick-contact :-ms-input-placeholder {
    color: #f1f1f1;
    font-size: 12px;
}
.footer-bottom{
    /*padding: 20px 0px;*/
    background: #333;
    color: #fff;
	 padding: 15px 0px 10px 0px;
}
/*------------------16. footer-area end --------------------*/

/*--------------------------------------------
             home page two style
 -------------------------------------------*/
/*--------------header-style tow--------------*/
.header-top{
    padding: 15px 0px;
    border-bottom: 1px solid #77adef;
}
.header-top-left p{
    color: #fff;
    font-style: italic;
}
.header-top-right ul li{
    display: inline-block;
    margin-left: 10px;
}
.header-top-right ul li a{
    color: #d8d8d8;
    font-size: 16px;
}
.header-top-right ul li a:hover{
    color: #fff;
}
.header-bottom .mainmenu > ul {
    justify-content: flex-start;
	-webkit-justify-content: flex-start;
}
.header-middle{
    padding: 10px 0px;
    position: relative;
    z-index: 9;
    box-shadow: 0px 1px 1px rgba(0,0,0,.1);
}
.header-middle::before{
    content: "";
    background-color: #fff;
    width: 40%;
    height: 100%;
    position: absolute;
    left: -50px;
    top: 0;
    -webkit-transform: skewX(40deg);
    -moz-transform: skewX(40deg);
    -o-transform: skewX(40deg);
    -ms-transform: skewX(40deg);
    transform: skewX(40deg);
}
.header-middle-right {
    margin: 12px 0;
}
.header-middle-right ul{
    display: -webkit-box; 
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex; 
	display: flex;
    justify-content: flex-end;
	-webkit-justify-content: flex-end;
}
.header-middle-right ul li{
    margin-left: 30px;
	display: -webkit-box; 
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex; 
	display: flex;
}
.header-middle-right ul li:first-child{
    margin-left: 0px;
}
.header-middle-right ul li .contact-icon i{
    font-size: 40px;
    margin-right: 15px;
    line-height: 40px;
    color: #fff;
}
.header-middle-right ul li .contact-info p{
    color: #fff;
    line-height: 20px;
}
.header-middle-right ul li .contact-info span{
    font-size: 12px;
    font-style: italic;
    color: #d2d2d2;
}


/*-----------slider-area------------*/
.slider-active2 #progressBar {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}
.slider-active2 #bar{
	height:5px;
	width:0px;
	max-width:100%;
	background:rgba(41,109,193,.5);
}

/*------------about-area ------------*/
.about-items{
    text-align: center;
    display: -webkit-box; 
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex; 
	display: flex;
    flex-direction: column;
	-webkit-flex-direction: column;
    justify-content: center;
	-webkit-justify-content:center;
    height: 180px;
    background: #296dc1;
    padding: 0px 30px;
    position: relative;
    z-index: 9;
}
.about-items::before{
    position: absolute;
    left:5%;
    top: 5%;
    border: 1px solid #fff;
    content: "";
    width: 90%;
    height: 90%;
}
.about-items i{
    font-size: 30px;
    color: #fff;
    margin-bottom: 15px;
}
.about-items h3{
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
    line-height: 28px;
}

.section-title.section-title2 h2::before,.section-title.section-title2 h2::after{
    left: 0;
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
}
.section-title.section-title2 h2::after{
    left: 10px;
}

.home2-service-area{
    padding-bottom: 110px;
}
.home2-service-area .service-wrap{
    text-align: center;
    margin-bottom: 30px;
    background: #fafafa;
}
.home2-service-area .service-wrap:hover{
    background: #296dc1;
}

/*--------team-area start-----------*/
.team-wrap2{
    position: relative;
}
.team-wrap2 .team-img{
    overflow: hidden;
}
.team-wrap2 .team-content {
    position: static;
    background: #296dc1;
    padding: 30px 0;
}
.team-wrap2 .overlay{
    padding:0px 10px;
}
.team-wrap2 .overlay h3{
    margin: 0px;
}
.team-wrap2 .overlay span{
    color: #4690ea;
    font-style: italic;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 300;
}
.team-wrap2 .overlay p{
    line-height: 24px;
    margin-bottom: 15px;
    font-size: 13px;
}
.team-wrap2 .overlay::before{
    background: #000;
    opacity: .8;
}
.team-wrap2 .overlay ul li{
    display: inline-block;
}
.team-wrap2 .overlay ul li a{
    height: 30px;
    width: 30px;
    line-height: 30px;
    margin: 0px;
    font-size: 12px;
}
.team-wrap2 .overlay ul li a:hover{
    background: #296dc1;
    color: #fff;
}

/*----------pricing-table-area start-----------*/
.pricing-table-area{
    padding: 140px 0px 110px;
}
.pricing-wrap {
    margin-bottom: 30px;
    text-align: center;
    background: #f1f1f1;
}
.pricing-wrap h3{
	font-size:30px;
	height:100px;
	line-height:100px;
    background: rgba(2,61,134,1);
    background: -moz-linear-gradient(left, rgba(2,61,134,1) 0%, rgba(41,109,193,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(2,61,134,1)), color-stop(100%, rgba(41,109,193,1)));
    background: -webkit-linear-gradient(left, rgba(2,61,134,1) 0%, rgba(41,109,193,1) 100%);
    background: -o-linear-gradient(left, rgba(2,61,134,1) 0%, rgba(41,109,193,1) 100%);
    background: -ms-linear-gradient(left, rgba(2,61,134,1) 0%, rgba(41,109,193,1) 100%);
    background: linear-gradient(to right, rgba(2,61,134,1) 0%, rgba(41,109,193,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0552b1', endColorstr='#296dc1', GradientType=1 );
	color:#fff;
	margin-bottom:0px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
}
.pricing-wrap:hover h3{
    background: rgba(41,109,193,1);
    background: -moz-linear-gradient(left, rgba(41,109,193,1) 0%, rgba(41,109,193,1) 44%, rgba(41,109,193,1) 44%, rgba(2,61,134,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(41,109,193,1)), color-stop(44%, rgba(41,109,193,1)), color-stop(44%, rgba(41,109,193,1)), color-stop(100%, rgba(2,61,134,1)));
    background: -webkit-linear-gradient(left, rgba(41,109,193,1) 0%, rgba(41,109,193,1) 44%, rgba(41,109,193,1) 44%, rgba(2,61,134,1) 100%);
    background: -o-linear-gradient(left, rgba(41,109,193,1) 0%, rgba(41,109,193,1) 44%, rgba(41,109,193,1) 44%, rgba(2,61,134,1) 100%);
    background: -ms-linear-gradient(left, rgba(41,109,193,1) 0%, rgba(41,109,193,1) 44%, rgba(41,109,193,1) 44%, rgba(2,61,134,1) 100%);
    background: linear-gradient(to right, rgba(41,109,193,1) 0%, rgba(41,109,193,1) 44%, rgba(41,109,193,1) 44%, rgba(2,61,134,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#296dc1', endColorstr='#0552b1', GradientType=1 );
}
.pricing-wrap h4{
	height:90px;
	line-height:90px;
	font-size:35px;
	background:#fafafa;
	margin-bottom:0px;
	font-weight:700;
}
.pricing-wrap h4 span{
    font-size: 10px;
}
.pricing-wrap ul li{
	line-height:40px;
	text-transform:capitalize;
	border-bottom:1px solid #fafafa;
    font-size: 12px;
}
.pricing-wrap ul li:last-child{
	border:none;
}
.pricing-wrap button{
    background: rgba(41,109,193,1);
    background: -moz-linear-gradient(left, rgba(41,109,193,1) 0%, rgba(41,109,193,1) 44%, rgba(41,109,193,1) 44%, rgba(2,61,134,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(41,109,193,1)), color-stop(44%, rgba(41,109,193,1)), color-stop(44%, rgba(41,109,193,1)), color-stop(100%, rgba(2,61,134,1)));
    background: -webkit-linear-gradient(left, rgba(41,109,193,1) 0%, rgba(41,109,193,1) 44%, rgba(41,109,193,1) 44%, rgba(2,61,134,1) 100%);
    background: -o-linear-gradient(left, rgba(41,109,193,1) 0%, rgba(41,109,193,1) 44%, rgba(41,109,193,1) 44%, rgba(2,61,134,1) 100%);
    background: -ms-linear-gradient(left, rgba(41,109,193,1) 0%, rgba(41,109,193,1) 44%, rgba(41,109,193,1) 44%, rgba(2,61,134,1) 100%);
    background: linear-gradient(to right, rgba(41,109,193,1) 0%, rgba(41,109,193,1) 44%, rgba(41,109,193,1) 44%, rgba(2,61,134,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#296dc1', endColorstr='#0552b1', GradientType=1 );
	padding:15px 0px;
	font-size:16px;
	text-transform:uppercase;
	font-style:italic;
	width:100%;
	color:#fff;
	border:none;
    margin-top: 10px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
}
.pricing-wrap:hover button{
    background: rgba(2,61,134,1);
    background: -moz-linear-gradient(left, rgba(2,61,134,1) 0%, rgba(41,109,193,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(2,61,134,1)), color-stop(100%, rgba(41,109,193,1)));
    background: -webkit-linear-gradient(left, rgba(2,61,134,1) 0%, rgba(41,109,193,1) 100%);
    background: -o-linear-gradient(left, rgba(2,61,134,1) 0%, rgba(41,109,193,1) 100%);
    background: -ms-linear-gradient(left, rgba(2,61,134,1) 0%, rgba(41,109,193,1) 100%);
    background: linear-gradient(to right, rgba(2,61,134,1) 0%, rgba(41,109,193,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0552b1', endColorstr='#296dc1', GradientType=1 );
}
.pricing-wrap button:hover{
	text-shadow:0px 3px 5px rgba(0,0,0,.5);
}
.next-prev-style .owl-nav div {
    position: absolute;
    right: 21px;
    top: -80px;
    height: 40px;
    width: 55px;
    background: #296dc1;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    transform: skew(15deg);
    -webkit-transform: skew(15deg);
    -moz-transform: skew(15deg);
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}
.next-prev-style .owl-nav div.owl-next{
    right: 78px;
}
.next-prev-style .owl-nav div:hover{
    background: #0552b1;
}
/*----------pricing-table-area end-----------*/

/*----------skill-area start-----------*/
.skill-area {
    position: relative;
    z-index: 9;
    min-height: 400px;
    background: #f1f1f1;
    overflow: hidden;
}
.skill-img{
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
}
.skill-img.black-opacity::before{
    z-index: 9;
    opacity: .5;
}
.skill-img img{
    visibility: hidden;
}
.skill-wrap{
    padding: 80px 0px 60px 20px;
}
.progress-wrap{
    overflow: hidden;
}
.progress {
    height: 15px;
    background-color: #b0c5de;
    box-shadow: none;
    overflow: visible;
    margin-bottom: 25px;
    border-radius: 2px;
}
.progress-bar {
    background-color: #296dc1;
    position:relative;
    border-radius: 2px;
}
.progress-wrap p{
    margin-bottom: 0px;
    text-transform: uppercase;
    font-size: 13px;
}
.progress-bar span.progress-persent {
    position: absolute;
    right: -28px;
    top: -8px;
    display: block;
    height: 30px;
    width: 30px;
    background: #296dc1;
    line-height: 30px;
    font-size: 9px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    border-radius: 5px;
}
.progress-bar span.progress-persent span{
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    display: block;
}
/*----------skill-area end-----------*/
/*------------brand-area start--------------*/
.brand-area .section-title2 p,.brand-area .section-title2 h2{
    color: #fff;
}
.brand-wrap a {
    display: block;
    background: #fff;
    padding: 10px;
    border: 1px solid #296dc1;
}

/*------------brand-area end--------------*/

/*--------------------------------------------
             home page three style
 -------------------------------------------*/
/*----------header-style three-------------*/
.header-area2 .header-top-left p {
    color: #262626;
}
.header-area2 .header-top-right ul li a {
    color: #296dc1;
}
.header-area2 .header-top-right ul li  a:hover {
    color: #0552b1;
}
.header-area2 .logo h1 a{
    color: #fff;
}
.header-area2 .mainmenu ul li > a {
    color: #fff;
}
.header-area2 .mainmenu ul li.active > a,.header-area2 .mainmenu ul li:hover > a{
    background: #0552b1;
}
.header-area2 .mainmenu ul li > ul.submenu li > a,.header-area2 .mainmenu ul li > ul.megamenu li a {
    color: #222;
}
.header-area2 .mainmenu ul li > ul.submenu li.active > a{
    color: #fff;
}
.header-area2 .mainmenu ul li > ul.submenu li:hover > a{
    color: #fff;
}
.header-area2 .search-wrap ul li{
    background: #0552b1;
}
.about-area2 .about-items{
    background: transparent;
    border: 1px solid #0552b1;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}
.about-area2 .about-items:hover{
    background: #296dc1;
    border-color: #296dc1;
}
.about-area2 .about-items::before{
    display: none;
}
.about-area2 .about-items i,.about-area2 .about-items h3 {
    color: #333;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}
.about-area2 .about-items:hover i,.about-area2 .about-items:hover h3 {
    color: #fff;
}
/*--------about-area end-------------*/

/*--------about-area start-------------*/
.team-wrap3{
    position: relative;
}
.team-wrap3 .team-content {
    background: #296dc1;
    padding: 20px 0;
    height: auto;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transform: scaleY(0);
    -webkit-transform-origin: bottom;
    -moz-transform: scaleY(0);
    -moz-transform-origin: bottom;
    transform: scaleY(0);
    transform-origin: bottom;
}
.team-wrap3:hover .team-content{
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    transform: scaleY(1);
}
.team-wrap3 .team-content p {
    margin-bottom: 0;
}
.team-wrap3 .team-img{
    position: relative;
    z-index: 9;
}
.team-wrap3 .team-img ul{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
}
.team-wrap3 .team-img ul li a{
	width:40px;
	height:40px;
	line-height:40px;
	text-align:center;
	background:#296dc1;
	color:#fff;
	display:inline-block;
	-webkit-transform:perspective(1000px) rotateY(90deg);
	-webkit-transform-origin:left;
    -moz-transform:perspective(1000px) rotateY(90deg);
	-moz-transform-origin:left;
    transform:perspective(1000px) rotateY(90deg);
	transform-origin:left;
	transition:all .5s;
    -webkit-transition:all .5s;
    -moz-transition:all .5s;
}
.team-wrap3 .team-img ul li a:hover{
    background: #0552b1;
}
.team-wrap3.team-wrap:hover .team-img ul li a{
	transform:perspective(1000px) rotateY(0deg);
}
.team-wrap3:hover .team-img ul li a{
	transform:perspective(1000px) rotateY(0deg);
}
.team-wrap3 .team-img ul li:nth-child(1) a{
	transition-delay:.1s;
}
.team-wrap3 .team-img ul li:nth-child(2) a{
	transition-delay:.2s;
}
.team-wrap3 .team-img ul li:nth-child(3) a{
	transition-delay:.3s;
}
.team-wrap3 .team-img ul li:nth-child(4) a{
	transition-delay:.4s;
}
.team-wrap3 .team-img ul li:nth-child(5) a{
	transition-delay:.5s;
}

/*-----------pricing-table start---------*/
.pricing-switcher-wrap {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

.pricing-switcher-wrap .pricing-tablist span {
    font-size: 12px !important;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
}
.pricing-switcher-wrap .pricing-tablist .active {
  color: #296dc1;
}
.pricing-switcher-wrap .pricing-tablist span:first-child {
  margin-right: 120px;
}
.pricing-switch {
    width: 80px;
    height: 20px;
    position: absolute;
    left: 50.5%;
    top: 3px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.pricing-slider {
    background-color: #296dc1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    border-radius: 34px;
    cursor: pointer;
}

.pricing-slider:before {
    background-color: #fff;
    position: absolute;
    content: "";
    width: 40px;
    height: 15px;
    left: 2px;
    bottom: 3px;
    border-radius: 15px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}
.pricing-slide-off:before {
    -webkit-transform: translateX(35px);
    -moz-transform: translateX(35px);
    -o-transform: translateX(35px);
    -ms-transform: translateX(35px);
    transform: translateX(35px);
}

.pricing-table {
  position: relative;
}

.pricing-grids {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    margin-left: 0;
}
.active-price {
    position: relative;
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

/*==================================================
                about-us pages start
=====================================================*/
.breadcumb-area{
    height: 400px;
    display: -webkit-box; 
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex; 
	display: flex;
    flex-direction: column;
	-webkit-flex-direction: column;
    justify-content: center;
	-webkit-justify-content:center;
    text-align: center;
    position: relative;
}
.breadcumb-wrap h2{
    color: #fff;
    position: relative;
    text-transform: capitalize;
    padding-bottom: 15px;
    margin-bottom:57px;
    font-size: 40px;
}
.breadcumb-wrap h2::before,.breadcumb-wrap h2::after{
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 40px;
    height: 1px;
    background: #fff;
    content: "";
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
}
.breadcumb-wrap h2::after{
    left: 51%;
    bottom: -2px;
}
.breadcumb-menu{
    background: rgba(0,0,0,.8);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px 0px;
}
.breadcumb-menu ul li{
    display: inline-block;
    margin: 0px 5px;
    color: #296dc1;
}
.breadcumb-menu ul li a{
    color: #fff;
}
.breadcumb-menu ul li a:hover{
    color: #296dc1;
}
.about-wrap h3{
    margin-bottom: 20px;
    text-transform: capitalize;
}
/*-----------------company-details-area start----------------*/
.company-details-area{
    text-align: center;
    padding: 100px 0px;
}
.company-details-wrap h2{
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 25px;
}
.company-details-wrap p{
    color: #fff;
    margin-bottom: 25px;
}
.company-details-wrap a{
    display: inline-block;
    padding: 8px 30px;
    text-transform: uppercase;
    background: #fff;
}
/*-----------------company-details-area end----------------*/

/*-----------------quote-area start----------------*/
.quote-area {
    padding: 50px 0px;
    background: #f1f1f1;
}
.quote-wrap h2{
    font-size: 20px;
    margin: 10px 0px;
}
.quote-wrap a{
    display: inline-block;
    padding: 8px 30px;
    background: #296dc1;
    color: #fff;
    text-transform: uppercase;
}
.quote-wrap a:hover{
    background: #0552b1;
}
/*-----------------quote-area start----------------*/
/*.ptb-100{padding: 100px 0px;}*/
.ptb-100{padding: 40px 0px;}
.service-area.home2-service-area.ptb-100 {
    padding: 100px 0px 70px;
}
/*-------------single-service-area start------------*/
.single-service-wrap {
    overflow: hidden;
}
.single-service-active{
    margin-bottom: 30px;
    overflow: hidden;
}
.single-service-active .owl-nav div{
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    height: 35px;
    width: 40px;
    background: #296dc1;
    color: #fff;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    text-align: center;
    line-height: 35px;
}
.single-service-active:hover .owl-nav div{
    left: 0;
}
.single-service-active .owl-nav div:hover{
    background: #0552b1;
}
.single-service-active .owl-nav div.owl-next{
    left: auto;
    right: -100px;
}
.single-service-active:hover .owl-nav div.owl-next{
    left: auto;
    right: 0px;
}
.single-service-wrap h3{
    text-transform: capitalize;
    margin-bottom: 20px;
}
.single-service-wrap p{
    margin-bottom: 16px;
}
.single-service-wrap blockquote {
    padding: 25px 20px;
    background: #fafafa;
    font-style: italic;
    font-size: 16px;
    margin: 35px 0;
    display: block;
    color: #7b7b7b;
    border-left: 3px solid #296dc1;
    line-height: 30px;
}
.single-service-wrap h4{
    font-size: 21px;
    margin-bottom: 15px;
    text-transform: capitalize;
}
.sidebar-menu {
    margin-bottom: 40px;
}
.sidebar-menu ul li a{
    display: block;
    padding: 10px 20px;
    border: 1px solid #f1f1f1;
    margin-bottom: -1px;
    text-transform:uppercase;
}
.sidebar-menu ul li a:hover,.sidebar-menu ul li.active a{
    background: #296dc1;
    color: #fff;
    border-color: #296dc1;
}
.author-wrap{
    padding: 30px 20px;
    background: #fafafa;
    margin-bottom: 40px;
}
.author-img {
    margin-bottom: 15px;
}
.author-img img{
    border-radius: 50%;
}
.author-info h3{
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 0px;
}
.author-info span{
    font-size: 12px;
    font-style: italic;
    display: block;
    margin-bottom: 10px;
    color: #296dc1;
}
.banner-wrap{
    overflow: hidden;
}
.banner-wrap img{
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}
.banner-wrap:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
}
.banner-wrap.black-opacity::before{
    z-index: 9;
    opacity: .5;
}
/*-------------single-service-area end------------*/
.seemore-btn a{
    display: inline-block;
    padding: 8px 30px;
    text-transform: uppercase;
    color: #fff;
    background: #296dc1;
    border-radius: 3px;
    margin-top: 20px;
}
.seemore-btn a:hover{
    background: #0552b1;
}
.portfolio-area3 .portfolio{
    width: 33.33%;
    float: left;
}
.portfolio-area3 .portfolio-wrap{
    margin: 0px;
}
.portfolio-area3 .seemore-btn a{
    margin-top: 50px;
}
/*--------------------pagination-wrap start--------------*/
.pricing-page-area{
	padding-top:220px;
}
.pagination-wrap ul{
    margin-top: 20px;
    display: -webkit-box; 
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex; 
	display: flex;
    justify-content: center;
	-webkit-justify-content:center;
}
.pagination-wrap ul li a{
    height: 45px;
    width: 45px;
    background: #;
    line-height: 45px;
    display: block;
    border: 1px solid #296dc1;
    text-align: center;
    margin-left: -1px;
    font-size: 18px;
}
.pagination-wrap ul li a:hover,.pagination-wrap ul li.active a{
    background: #296dc1;
    color: #fff;
}
.blog-img img{
    width: 100%;
}
/*--------------------pagination-wrap end--------------*/

/*-----------------------sidebar-style-here-----------------------*/
.search-sidebar form{
    position: relative;
}
.search-sidebar input{
    width: 100%;
    height: 45px;
    background: transparent;
    border: 1px solid #c0dbfd;
    padding-left: 10px;
}
.search-sidebar button{
    position: absolute;
    right: 0;
    width: 45px;
    height: 45px;
    top: 0;
    color: #fff;
    background: #296dc1;
    border: 1px solid #296dc1;
}
.search-sidebar button:hover{
    background: #0552b1;
    border-color: #0552b1;
}
.sidebar-title{
    position: relative;
    font-size: 22px;
    text-transform: capitalize;
    padding-bottom: 5px;
    margin-bottom: 20px;
}
.sidebar-title::before,.sidebar-title::after{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 1px ;
    content: "";
    background: #296dc1;
}
.sidebar-title::after{
    left: 5px;
    bottom: -2px;
}
.category-wrap ul li{
    line-height: 35px;
    border-bottom: 1px solid #f1f1f1;
}
.category-wrap ul li:last-child{
    border-bottom: none;
}
.category-wrap ul li a{
    padding-left: 20px;
    position: relative;
    display: block;
}
.category-wrap ul li a::before{
    position: absolute;
    left: 0;
    content: "\f101";
    font-family: fontawesome;
    color: #296dc1;
    font-size: 16px;
    top: 0;
}
.related-post ul li{
    overflow: hidden;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.related-post ul li:last-child{
    border-bottom: none;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.post-img{
    float: left;
}
.post-info{
    margin-left: 95px;
}
.post-info a {
    font-size: 15px;
    margin-bottom: 10px;
    display: block;
    line-height: 20px;
}
.post-info p{
    line-height: 20px;
    font-size: 12px;
    color: #296dc1;
}
.archive-wrap ul li{
    line-height: 35px;
}
.archive-wrap ul li a{
    display: block;
}
.tags-wrap ul li{
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
}
.tags-wrap ul li a{
    display: block;
    padding: 8px 20px;
    border: 1px solid #e1e1e1;
}
.tags-wrap ul li a:hover{
    background: #296dc1;
    color: #fff;
}
/*============================================
            blog-details-area start
=============================================*/
.blog-details-img{
    margin-bottom: 40px;
}
.blog-details-content h3{
    margin-bottom: 20px;
}
.blog-details-content p{
    margin-bottom: 25px;
}
.blog-details-content blockquote{
    font-size: 16px;
    font-style: italic;
    background:rgba(41,109,193,.7);
    padding:30px;
    border-left: 5px solid rgba(41,109,193,.9);
    margin:35px 0px;
    color: #fff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.blog-details-content ul{
    margin-bottom: 30px;
}
.blog-details-content ul li{
    line-height: 30px;
    padding-left: 20px;
    position: relative;
}
.blog-details-content ul li::before,.blog-details-content ul li::after{
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #296dc1;
    content: "";
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    z-index: 99;
}
.blog-details-content ul li::after{
    height: 10px;
    width: 10px;
    background: #0552b1;
    z-index: 9;
    left: -2px;
}
ol{
	list-style:none;
}
.comment-wrap {
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid #f1f1f1;
    padding: 30px 20px;
}
.comment-theme{
	float:left;
}
.comment-main-area{
	margin-left:100px;
}
.comment-wrap1 {
    margin-left: 20px;
}
.comment-wrap2{
    margin-left:40px;
}
.sewl-comments-meta h4{
	text-transform:capitalize;
	font-weight:500;
}
.sewl-comments-meta h4 span {
    font-weight: 400;
    font-size: 13px;
    display: inline-block;
    margin-left: 15px;
    font-style: italic;
}
.comment-main{
	margin-bottom:50px;
}
.comment-image img {
    border-radius: 50%;
}
.comment-area p{
    margin-bottom: 5px;
}
.comments-reply a.comment-reply-link{
    font-style: italic;
}
h3.blog-title {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 5px;
}
h3.blog-title::before,h3.blog-title::after{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 1px;
    background: #296dc1;
    content: "";
}
h3.blog-title::after{
    left: 5px;
    bottom: -2px;
}
.sewl-form-inputs textarea,.sewl-form-inputs input{
	height:50px;
	width:100%;
	border:1px solid #f1f1f1;
	padding-left:20px;
	margin-bottom:20px;
}
.sewl-form-inputs textarea:focus,.sewl-form-inputs input:focus{
	outline:1px solid #296dc1;
}
.sewl-form-inputs textarea{
	height:150px;
	padding-top:10px;
}
.form-submit  input{
	text-transform:uppercase;
	background:#296dc1;
	border:1px solid #296dc1;
	color:#fff;
	padding: 10px 30px;
}
.form-submit  input:hover{
	background:#0552b1;
	border-color:#0552b1;
}
/*----------------commingsoon-area start------------------*/
.comming-soon-area {
	height: 500px;
	display: -webkit-box; 
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex; 
	display: flex;
	flex-direction: column;
	-webkit-flex-direction: column;
	justify-content: center;
	-webkit-justify-content:center;
}
.comming-soon-wrap h3{
	font-size: 30px;
	margin-bottom: 20px;
}
.comming-soon-wrap p{
	font-size: 16px;
	margin-bottom: 30px;
}
.timer span.cdown {
    display: block;
    float: left;
    width: 24%;
    text-align: center;
    height: 150px;
    display: -webkit-box; 
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex; 
	display: flex;
    flex-direction: column;
	-webkit-flex-direction: column;
    background: #296dc1;
    justify-content: center;
	-webkit-justify-content:center;
    color: #fff;
	transform: skewX(25deg);
	-webkit-transform: skewX(25deg);
    -moz-transform: skewX(25deg);
    margin-left: 10px;
}
.timer span.cdown:first-child{
	margin-left: 0px;
}
.timer span.time-count {
    font-size: 40px;
	margin: 0px auto;
    margin-bottom: 10px;
    display: block;
	transform: skewX(-25deg);
	-webkit-transform: skewX(-25deg);
    -moz-transform: skewX(-25deg);
	padding-bottom: 10px;
	width: 100px;
	position: relative;
}
.timer span.time-count::before,.timer span.time-count::after{
	position: absolute;
	left: 25px;
	bottom: 0;
	width: 20px;
	height: 1px;
	background: #fff;
	content: "";
}
.timer span.time-count::after{
	left: 30px;
	bottom: -2px;
}
.timer span.cdown p{
	color: #fff;
	transform: skewX(-25deg);
	-webkit-transform: skewX(-25deg);
    -moz-transform: skewX(-25deg);
	font-size: 18px;
}

/*----------------contact-area start------------------*/

.contact-wrap textarea{
	height: 200px;
}
.contact-wrap button{
	border: 1px solid #999;
	padding: 10px 30px;
}
.contact-wrap ul li{
	padding: 30px 30px;
	background: #296dc1;
	color: #fff;
	position: relative;
	padding-left: 90px;
}
.contact-wrap ul li:nth-child(odd){
	background:#0552b1;
}
.contact-wrap ul li p{
	color: #fff;
}
.contact-wrap ul li i{
	position: absolute;
	left: 35px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	font-size: 35px;
}
.contact-wrap h3{
	text-transform: uppercase;
	margin-bottom: 30px;
}
#googleMap{
	height: 500px;
	width: 100%;
	background: #296dc1;
	margin-top: 100px;
}
.welc{color:#fff !important; font-weight:bold; text-shadow:1px 1px 1px #fff; transition:all 1.5s;}
.welc:hover{color:#c6e0ff !important; font-weight:bold; text-shadow:1px 1px 1px #fff; transition:all 1.5s;}
.abt-home p{text-align:justify;}
.servd img{width:100%; height:260px;}
.glyd{width:100%p; height:200px;}
.rd-mr{background-color:#296dc1; padding:10px 15px; color:#FFF; border:solid 1px #296dc1; transition:all 1.5s;}
.rd-mr:hover{background-color:#1154a7;  color:#FFF; border:solid 1px #1154a7; transition:all 1.5s;}
.ft-enq{padding:40px 0px;}
h2.ft-enq1{font-size:50px !important; text-shadow:1px 1px 1px #296dc1; margin-bottom:0px;}

.rd-mr1{background-color:#296dc1; padding:10px 10px; color:#FFF; border:solid 1px #296dc1; transition:all 1.5s; font-size:18px; position:relative; top:68px;}
.rd-mr1:hover{background-color:#1154a7;  color:#FFF; border:solid 1px #1154a7; transition:all 1.5s;}
.ftr-cntd{text-align:justify;}
.ftr-rm{color:#ccc !important; transition:all 1.5s; text-shadow:1px 1px 1px #296dc1; font-size:15px; font-weight:600;	}
.ftr-rm:hover{color:#fff !important; transition:all 1.5s;}
/*.web-ml{padding:13px 0px 2px 0px;}*/
.copy-right{color:#FFF !important;}
.copy-right a{color:#acd1ff !important; transition:all 1.5s; font-size:15px;}
.copy-righ{margin-top:8px;}
.copy-right a:hover{color:#3279d0 !important; transition:all 1.5s;}
.etrs{width:130px; margin:0px 0px;}
.some-cont{margin:0px; padding:0px;}
.some-cont img{width:80%; height:35px; margin:5px 0px;}
.rd-ser{border:solid 1px #296dc1; padding:8px 12px;  transition:all 1.5s; color:#296dc1;}
.rd-ser:hover{border:solid 1px #fff; padding:8px 12px;  transition:all 1.5s; color:#296dc1;}

.abt-inner img{width:300px; float:right; padding:0px 0px 20px 10px; height:300px;}
.abt-inner{text-align:justify;}
.mp-ser{margin-bottom:40px !important;}
.serv-sty img{width:100%;  height:400px; margin-bottom:8px;}
.serv-dtlsz{margin:0px; padding:5px;}
.serv-dtlsz img{width:100%;  height:50px;}
.mp0ser{position:5px!important; margin:0px !important;}
.abt-home1{width:100%; height:80px;}
.secq{width:77.8% !important; float:left;}
.caphh{width:20%; height:41px; border:solid 1px #ccc; float:left; margin-left:10px;}
textarea{resize:none; height:120px !important;}
.enqs img{width:100%; height:600px;}
/*.pstop{position:relative; top:13px;}*/
.mpno{margin-bottom:0px!important;}
.mpgly{padding:60px 0px 30px 0px;}
.logod img{position:relative; top:8px;}
.mpft{margin-top:-8px;}
@media (min-width:320px) and (max-width:767px) 
{
	.search-wrap ul li{
	height:82px;
}
	/*.pres{position:relative; top:30px;  left:9px;}*/
	.caphh{width:20%; height:40px; border:solid 1px #ccc; float:left; margin-left:5px;}
	 .secq{width:77.8% !important; float:left;}
	.mp-res{margin-top:30px;}
	.abt-home h2{font-size:25px !important;}
	
	.abt-inner img{width:100%; float:none; padding:10px 0px;}
	.some-cont{text-align:center;}
	  .some-cont img{width:70%; height:30px;}
	.ft-enq{padding:20px 0px 40px 0px;}
	.ft-enq p{text-align:center;}
h2.ft-enq1{font-size:30px !important; text-align:center;}

.rd-mr1{background-color:#296dc1; padding:10px 10px; color:#FFF; border:solid 1px #296dc1; transition:all 1.5s; font-size:20px; position:relative; top:-5px;}

.etrs {
    
     margin:-10px 0px; padding-bottom:20px;
}
.servd img{width:100%; height:220px;}
.fanfact-area {
     padding: 20px 0px 10px !important; 
}
}admin/change_pwd.php0000644000352000025440000000635612515215242015134 0ustar  thediannthediann<?php
require_once ('../includes/dbsmain.inc.php'); 
if(is_post_back()) {
if($changepass!=$confirmpass) {
$arr_error_msgs[] = "Password and retype password do not match ?";
}else{
$pass=db_scalar("select admin_password from tbl_admin where 1 and admin_id='".$_SESSION['sess_admin_login_id']."'");
  if($pass == $password) {
	   $sql2=db_query("update tbl_admin set admin_password='$changepass' where 1 and admin_id='".$_SESSION['sess_admin_login_id']."'");
		$arr_error_msgs[] = "Password Changed Successfully.";
	} else{
   $arr_error_msgs[] = "Invalid old password ?";
  }
 }
} 
?>
<?php include ('top.inc.php'); ?>
            <link href="styles.css" rel="stylesheet" type="text/css">
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead">Change Admin Password </div></td>
              </tr>
            </table>
            <div style="float:left; margin-left:490px;"><b><? include('error_msgs.inc.php');?></b></div>
            <form action="" method="post" name="form1" id="form1" onsubmit="return passValidation();">
              <table width="458" align="left" cellpadding="0" cellspacing="0" class="tableForm" style="margin-top:15px; margin-left:350px; border:2px outset #fff; padding:15px;">
                <tr>
                  <td width="160" class="tdLabel" style="padding:5px;"><b>Old&nbsp;Password&nbsp;:</b></td>
                  <td style="padding:5px;"><input type="password" name="password" id="password" class="textfield" style="width:233px; height:25px;">
                  </td>
                </tr>
                <tr>
                  <td class="tdLabel" style="padding:5px;"><b>New&nbsp;Password&nbsp;:</b></td>
                  <td style="padding:5px;"><input type="password" name="changepass" id="changepass" class="textfield" style="width:233px; height:25px;">
                  </td>
                </tr>
                <tr>
                  <td class="tdLabel" style="padding:5px;"><b>Confirm&nbsp;New&nbsp;Password&nbsp;:</b></td>
                  <td style="padding:5px;"><input type="password" name="confirmpass" id="confirmpass" class="textfield" style="width:233px; height:25px;">
                  </td>
                </tr>
                <tr>
                  <td class="label" style="padding:5px;">&nbsp;</td>
                  <td style="padding:5px;"><input type="image" name="imageField" src="images/buttons/submit.gif" /></td>
                </tr>
              </table>
            </form>
<script type="text/javascript">
function passValidation(){
function trim(str){				
 return str.replace(/^\s*|\s*$/g,'');
}
if(trim(document.getElementById('password').value)==0){		
  alert("Please enter old password !");
  document.getElementById('password').focus();
  return false;
 }
if(trim(document.getElementById('changepass').value)==0){		
  alert("Please enter new password !");
  document.getElementById('changepass').focus();
  return false;
 }
 if(trim(document.getElementById('confirmpass').value)==0){		
  alert("Please confirm new password !");
  document.getElementById('confirmpass').focus();
  return false;
 }
}
</script>			
            <?php include ('bottom.inc.php'); ?>
admin/manage_background_color.php0000644000352000025440000001271114373671754017674 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
if (isset($_POST['Submit'])) {
@extract($_POST);
			    $sql = "update tbl_site_color set 
		                   site_color_bg_image='$site_color_bg_image',
						   site_color_bg_color='$site_color_bg_color'
						   where 1 and site_color_admin_id='1'";
						   db_query($sql);				
		set_session_msg("Background Image uploaded successfully !");
		header("Location: manage_background_color.php");
		exit;
    }
	if (isset($_POST['ChangeDefault'])) {
			    $sql = "update tbl_site_color set 
				           site_color_bg_image='bg.gif',
						   site_color_bg_color='$site_color_bg_color'
						   where 1 and site_color_admin_id='1'";
						   db_query($sql);				
		set_session_msg("Records change to default successfully !");
		header("Location: manage_background_color.php");
		exit;
    }	
	$result = db_query("select site_color_bg_image from tbl_site_color where 1");
	if ($line_raw = mysqli_fetch_array($result)) {
		@extract($line_raw);
		}
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead"> Add/Edit Background Image</div></td>
              </tr>
            </table>
            <div><strong class="msg" style="margin-left:500px; margin-bottom:5px;">
              <?=display_sess_msg()?>
              </strong></div>
            <table width="20%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm" style="border:1px outset #fff; margin-top:5px; margin-bottom:10px;">
              <tr>
                <td class="tdLabel" style="padding:8px; padding-bottom:70px; font-size:12px; font-weight:bold;" valign="bottom" align="right">Current Background</td>
                <td class="tdLabel" style="padding:8px;"><?php if($line_raw['site_color_bg_image']!=''){ ?>
                  <div style="width:50px; height:140px; margin-top:10px;border:1px outset #fff; float:left; margin-left:8px; background:url(images/<?=$line_raw['site_color_bg_image']?>) repeat-x;"> </div>
                  <? }else{ ?>
                  <div style="width:50px; height:140px; margin-top:10px;border:1px outset #fff; float:left; margin-left:8px; background:url(images/bg.gif) repeat-x;"> </div>
                  <? } ?>
                </td>
              </tr>
            </table>
            <form enctype="multipart/form-data" action="" method="post">
              <table width="95%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm" style="border:1px outset #fff; margin-top:5px; margin-bottom:10px;">
                <tr>
                  <td class="tdLabel" style="padding:8px; font-size:12px; font-weight:bold;" valign="middle">Background Image</td>
                  <td class="tdLabel" style="padding:8px;" valign="bottom"><input type="radio" name="site_color_bg_image" value="bg-pink.gif">
                    &nbsp;
                    <div style="width:50px; height:140px; margin-top:10px;border:1px outset #fff; float:left; margin-left:8px; background:url(images/bg-pink.gif);"> </div></td>
                  <td class="tdLabel" style="padding:8px;"><input type="radio" name="site_color_bg_image" value="bg-blue.gif">
                    &nbsp;
                    <div style="width:50px; height:140px; margin-top:10px;border:1px outset #fff; float:left; margin-left:8px; background:url(images/bg-blue.gif) repeat-x;"> </div></td>
                  <td class="tdLabel" style="padding:8px;"><input type="radio" name="site_color_bg_image" value="bg-green.gif">
                    &nbsp;
                    <div style="width:50px; height:140px; margin-top:10px;border:1px outset #fff; float:left; margin-left:8px; background:url(images/bg-green.gif) repeat-x;"> </div></td>
                  <td class="tdLabel" style="padding:8px;"><input type="radio" name="site_color_bg_image" value="bg-red.gif">
                    &nbsp;
                    <div style="width:50px; height:140px; margin-top:10px;border:1px outset #fff; float:left; margin-left:8px; background:url(images/bg-red.gif) repeat-x;"> </div></td>
                  <td class="tdLabel" style="padding:8px;"><input type="radio" name="site_color_bg_image" value="bg.gif">
                    &nbsp;
                    <div style="width:50px; height:140px; margin-top:10px;border:1px outset #fff; float:left; margin-left:8px; background:url(images/bg.gif) repeat-x;"> </div></td>
					
					<td class="tdLabel" style="padding:8px; font-size:20px;"><b>OR</b></td>
					
					<td class="tdLabel" style="padding:8px; font-size:12px; font-weight:bold;">Background Color</td>
					
					<td class="tdLabel" style="padding:8px;"><input type="color" name="site_color_footer_font_hover_color" style="width:140px; height:25px;"></td>
					
					
					
					
                </tr>
                
                <tr>
                  <td class="tdLabel" colspan="6" align="left" style="padding:8px;"><input type="submit" name="Submit" style="width:110px; font-weight:bold; font-size:14px; height:32px; margin-left:250px;">
                    <input type="submit" name="ChangeDefault" value="Set as default" style="width:145px; font-weight:bold; font-size:14px; height:32px; margin-left:10px;">
                  </td>
                </tr>
              </table>
            </form>
            <?php include("bottom.inc.php");?>
admin/arrow.gif0000644000352000025440000000010211606204104014117 0ustar  thediannthediannGIF89a�����<x�<x!�
,L�p��lo�:��*�4I;admin/header_f.php0000644000352000025440000001065113233642316014567 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
$headerID=$_REQUEST['header_id'];
$DelImageId=$_REQUEST['DelID'];
 if(!empty($DelImageId)){ 
   $DelImg=db_scalar("select $DelImageId from tbl_header where 1");
   @unlink("../header_files/$DelImg");
   $sqldel="update tbl_header set $DelImageId='' where 1 and header_id='$headerID'";
   db_query($sqldel);
   set_session_msg("Header Updated Successfully !");
   header("Location: header_f.php?header_id=$headerID");
   exit;
 }

if(is_post_back()) {

$result3 = db_scalar("select header_logo from tbl_header where 1");
$result4 = db_scalar("select header_welcome_image from tbl_header where 1");
	
	
if($_FILES['header_logo']['name']){
	$DelHLImage=db_scalar("select header_logo from tbl_header where 1");
	@unlink("../header_files/$DelHLImage");
	$file_name6=$_FILES['header_logo']['name'];
	move_uploaded_file($_FILES['header_logo']['tmp_name'],"../header_files/$file_name6");        
	$sql_edit6=",header_logo='$file_name6'";
}else{
$sql_edit6=",header_logo='$result3'";
}
if($_FILES['header_welcome_image']['name']){
	$DelHWImage=db_scalar("select header_welcome_image from tbl_header where 1");
	@unlink("../header_files/$DelHWImage");
	$file_name7=$_FILES['header_welcome_image']['name'];
	move_uploaded_file($_FILES['header_welcome_image']['tmp_name'],"../header_files/$file_name7");        
	$sql_edit7=",header_welcome_image='$file_name7'";
}else{
$sql_edit7=",header_welcome_image='$result4'";
}

$delquery=db_query("truncate table tbl_header");

$sql = "insert into tbl_header set 
		  header_status='Active'
		  $sql_edit6
		  $sql_edit7,
		  header_add_date=now()";
		  db_query($sql);
		  set_session_msg("Header Added Successfully !");
		  header("Location: manage-header.php");
		  exit;
 }
if($headerID!='') {
	$result = db_query("select * from tbl_header where header_id = '$headerID'");
	if ($line_raw = mysql_fetch_array($result)) {
		@extract($line_raw);
	}
}
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead"> Add/Edit Header Image</div></td>
              </tr>
            </table>
            <div align="right" style="font-size:12px; font-weight:bold; margin-right:10px;"><a href="manage-header.php">Back to Header List</a>&nbsp;</div>
            <strong class="msg" style="margin-left:500px; margin-bottom:5px;">
            <?=display_sess_msg()?>
            </strong>
            <form name="form1" method="post" enctype="multipart/form-data">
              <table width="55%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm" style="border:1px outset #fff;">
                <?php if($header_logo){?>
                <tr>
                  <td width="30%" class="tdLabel" style="padding:8px;"><b style="color:#316200;">Current Logo  :</b></td>
                  <td width="70%" align="left" class="tdData" style="padding:8px;"><img src="../header_files/<?=$header_logo?>" height="60" width="60"  border="0"> <a href="header_f.php?DelID=header_logo&header_id=<?=$_REQUEST['header_id']?>" title="Delete Image"><span style="float:right; margin-right:15px;"><img src="images/no.gif" style="vertical-align:middle;" /></span></a></td>
                </tr>
                <? } ?>
                <tr>
                  <td width="30%" class="tdLabel" style="padding:8px;"><b>Header  Logo :</b></td>
                  <td width="70%" class="tdData" style="padding:8px;"><input type="file" name="header_logo" id="header_logo"> <strong style="font-size:11px; color:#FF0000;">width: 320px, height: 75px;</strong></td>
                </tr>
              </table>
              <table width="55%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm" style="border:1px outset #fff; margin-top:5px; margin-bottom:10px;">
                <tr>
                  <td width="30%" class="tdLabel" style="padding:8px;">&nbsp;</td>
                  <td width="70%" class="tdData" style="padding:8px;"><input type="submit" name="HeaderSubmit" value="Submit" class="button" style="font-size:13px; font-weight:bold; height:27px; background-color:#006BD7; border-radius:4px; cursor:pointer; width:100px;"/></td>
                </tr>
              </table>
            </form>
            <?php include("bottom.inc.php");?>
admin/product_category_list.php0000644000352000025440000001724114373673176017462 0ustar  thediannthediann<?
require_once("../includes/dbsmain.inc.php");

if(is_post_back()) {
	$arr_ids = $_REQUEST['arr_ids'];
	if(is_array($arr_ids)) {
		$str_ids = implode(',', $arr_ids); 
		if(isset($_REQUEST['Delete']) || isset($_REQUEST['Delete_x']) ) {
			db_query("delete from tbl_category where cat_id in ($str_ids)");
			db_query("delete from tbl_category where cat_pid in ($str_ids)");
			db_query("delete from tbl_product where prd_cat_id in ($str_ids)");
		} else if(isset($_REQUEST['Activate']) || isset($_REQUEST['Activate_x']) ) {
			db_query("update tbl_category set cat_status = 'Active' where cat_id in ($str_ids)");
		} else if(isset($_REQUEST['Deactivate']) || isset($_REQUEST['Deactivate_x']) ) {
			db_query("update tbl_category set cat_status = 'Inactive' where cat_id in ($str_ids)");
		}
	}
	header("Location: ".$_SERVER['HTTP_REFERER']);
	exit;
}

$start = intval($start);
$pagesize = intval($pagesize)==0?$pagesize=DEF_PAGE_SIZE:$pagesize;

$order_by == '' ? $order_by = 'cat_id' : true;
$order_by2 == '' ? $order_by2 = 'asc' : true;

$catgid=($_REQUEST[id]!=0) ? $_REQUEST[id] : 0;	 
$sql = "select * from tbl_category   where  1 and cat_user_id='".$_SESSION['user_id']."' and cat_pid='$catgid'";
$sql = apply_filter($sql, $cat_name, 'like','cat_name');
$sql .= " order by $order_by $order_by2 ";
$sql .= " limit $start, $pagesize ";

$pager = new midas_pager_sql($sql, $pagesize, $start);
if($pager->total_records) {
	$result = db_query($sql);
}

?>
<link href="styles.css" rel="stylesheet" type="text/css">
<script language="JavaScript" type="text/javascript" src="../includes/general.js"></script>
<? include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead"> Product Category    list </div></td>
              </tr>
            </table>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="content"><form method="get" name="form2" id="form2" onsubmit="return confirm_submit(this)">
                    <br />
                    <table  border="0" align="center" cellpadding="2" cellspacing="0" class="tableSearch">
                      <tr align="center">
                        <th colspan="2">Search</th>
                      </tr>
                      <tr>
                        <td class="tdLabel">Name</td>
                        <td><input name="cat_name" type="text" value="<?=$cat_name?>" /></td>
                      </tr>
                      <tr>
                        <td>&nbsp;</td>
                        <td><input name="pagesize" type="hidden" id="pagesize" value="<?=$pagesize?>" />
                          <input type="image" name="imageField" src="images/buttons/search.gif" /></td>
                      </tr>
                    </table>
                  </form>
                  <br />
                <?php /*?>  <div align="right">
                  <? if($id=='0'){?>
					    <a href="category_f.php?id=<?=$id?>">Add New Category</a> | 
                   <? } ?>     
                    <a href="category_list.php?id=0">Back to Category List</a>
                                      
                  </div><?php */?>
                  <? if($pager->total_records==0) {?>
                  <div class="msg">Sorry, no records found.</div>
                  <? } else { ?>
                  <div align="right">
                    <? $pager->show_displaying()?>
                  </div>
                  <div>Records Per Page:
                    <?=pagesize_dropdown('pagesize', $pagesize);?>
                  </div>
                  <?
					$slno=$id;
					$table_name="tbl_category";
					$name_field="cat_name";
					$primery_field="cat_id";
					$search_field="cat_pid";
					$link="category_list.php";
					$html="N";

				  ?>
                  <div style="padding-bottom:5px;padding-top:10px;"><a href="category_list.php">Main</a> >> <? echo parent_search($slno, $table_name, $name_field, $primery_field, $search_field,$link, $html);?></div>
                  <form method="post" name="form1" id="form1" onsubmit="confirm_submit(this)">
                    <table width="100%"  border="0" cellpadding="0" cellspacing="1" class="tableList">
                      <tr>
                        <th width="67%" nowrap="nowrap">Category Name
                          <?=sort_arrows('cat_name')?></th>
                        <th width="7%" nowrap="nowrap">&nbsp;</th>
                        <!--                        <th width="8%" nowrap="nowrap">&nbsp;</th>
-->                        <th width="7%" nowrap="nowrap">Status
                          <?=sort_arrows('cat_status')?></th>
                                        <?php /*?>      <th width="3%">&nbsp;</th>
                        <th width="4%"><input name="check_all" type="checkbox" id="check_all" value="1" onclick="checkall(this.form)" /></th><?php */?>
                      </tr>
                      <?
while ($line_raw = mysqli_fetch_array($result)) {
	$line = ms_display_value($line_raw);
	@extract($line);
	$css = ($css=='trOdd')?'trEven':'trOdd';
	
?>
                      <tr class="<?=$css?>">
                        <td nowrap="nowrap" style="color:#000000"><strong><?=$cat_name?></strong></td>
                        <td nowrap="nowrap" align="center">
  					 
						<a href="product_list.php?cat_id=<?=$cat_id?>">Manage Product</a>
						
						</td>
                        <td nowrap="nowrap"><?=$cat_status?></td>
                      <?php /*?><td align="center"><a href="category_f.php?cat_id=<?=$cat_id?>&id=<?=$cat_pid?>"><img src="images/icons/edit.png" alt="Edit" width="16" height="16" border="0" /></a></td>
                        <td align="center"><input name="arr_ids[]" type="checkbox" id="arr_ids[]" value="<?=$cat_id?>" /></td><?php */?>
                      </tr>
					  
					  <?
					  $sql_sub=db_query("select * from tbl_category where cat_pid='$cat_id'");
					  if(mysqli_num_rows($sql_sub)>0){
					  	while($data=mysqli_fetch_array($sql_sub)){
						@extract($data);
					  ?>
					  <tr class="<?=$css?>">
                        <td nowrap="nowrap">&nbsp;&nbsp;&nbsp;<?=$cat_name?></td>
                        <td nowrap="nowrap" align="center">
						<a href="product_list.php?cat_id=<?=$cat_id?>">Manage Product</a>
						</td>
                        <td nowrap="nowrap"><?=$cat_status?></td>
                     <?php /*?> <td align="center"><a href="category_f.php?cat_id=<?=$cat_id?>&id=<?=$cat_pid?>"><img src="images/icons/edit.png" alt="Edit" width="16" height="16" border="0" /></a></td>
                        <td align="center"><input name="arr_ids[]" type="checkbox" id="arr_ids[]" value="<?=$cat_id?>" /></td><?php */?>
                      </tr>
					  <?
					  		}
					  	}
					  ?>
					  
                      <? } ?>
                    </table>
                    <table width="100%" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td align="right" style="padding:2px"><!input type="submit" name="Activate" value="Activate" class="button"/>
                          <!input type="submit" name="Deactivate" value="Deactivate" class="button" />
                          <!input type="submit" name="Delete" value="Delete"  class="buttonDelete"/>
                        </td>
                      </tr>
                    </table>
                  </form>
                  <? $pager->show_pager();?>
                  <? } ?>
                </td>
              </tr>
            </table>
            <? include("bottom.inc.php");?>
admin/manage_rooms.php0000644000352000025440000001651314373672654015522 0ustar  thediannthediannf<?php
require_once("../includes/dbsmain.inc.php");

if(is_post_back()) {
	$arr_ids = $_REQUEST['arr_ids'];
	  $Arr_size=sizeof($arr_ids);
	if(is_array($arr_ids)) {
		$str_ids = implode(',', $arr_ids); 
		if(isset($_REQUEST['Delete']) || isset($_REQUEST['Delete_x']) ) {
for($i=0; $i<$Arr_size; $i++)
{
$qc_del = db_scalar("select room_image_name from tbl_room where room_id='$arr_ids[$i]'");
@unlink("../room_images/$qc_del");
db_query("delete from tbl_room where room_id='$arr_ids[$i]' ");
}

		//	db_query("delete from tbl_room where room_id in ($str_ids)");
			set_session_msg("Room Deleted Successfully !");
		} else if(isset($_REQUEST['Activate']) || isset($_REQUEST['Activate_x']) ) {
			db_query("update tbl_room set room_status = 'Active' where room_id in ($str_ids)");
			set_session_msg("Room Activated Successfully !");
		} else if(isset($_REQUEST['Deactivate']) || isset($_REQUEST['Deactivate_x']) ) {
			db_query("update tbl_room set room_status = 'Inactive' where room_id in ($str_ids)");
			set_session_msg("Room Deactivated Successfully !");
		}
	}
	header("Location: ".$_SERVER['HTTP_REFERER']);
	exit;
}

$start = intval($start);
$pagesize = intval($pagesize)==0?$pagesize=DEF_PAGE_SIZE:$pagesize;

$order_by == '' ? $order_by = 'room_id' : true;
$order_by2 == '' ? $order_by2 = 'desc' : true;

$sql = "select * from tbl_room   where  1";
$sql = apply_filter($sql, $room_name, 'like','room_name');
$sql .= " order by $order_by $order_by2 ";
$sql .= " limit $start, $pagesize ";

$pager = new midas_pager_sql($sql, $pagesize, $start);
if($pager->total_records) {
	$result = db_query($sql);
}

?>
<link href="styles.css" rel="stylesheet" type="text/css">
<script language="JavaScript" type="text/javascript" src="../includes/general.js"></script>
<? include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead">Rooms list </div></td>
              </tr>
            </table>
			<strong class="msg" style="margin-left:500px;"><?=display_sess_msg()?></strong>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="content">
                    <!--<form method="get" name="form2" id="form2" onSubmit="return confirm_submit(this)">
                    <br />
                    <table  border="0" align="center" cellpadding="2" cellspacing="0" class="tableSearch" style="width:300px; height:90px;border:2px outset #fff;">
                      <tr align="center">
                        <th colspan="2">Search</th>
                      </tr>
                      <tr>
                        <td class="tdLabel">Name</td>
                        <td><input name="room_name" type="text" value="" style="width:200px; height:24px;" /></td>
                      </tr>
                      <tr>
                        <td>&nbsp;</td>
                        <td><input name="pagesize" type="hidden" id="pagesize" value="<?=$pagesize?>" />
                          <input type="image" name="imageField" src="images/buttons/search.gif" /></td>
                      </tr>
                    </table>
                  </form>-->
                  
                  <br />
                  <div align="right"><a href="add_edit_rooms.php" style="font-size:12px; font-weight:bold;">Add New Room</a> </div>
                  <? if($pager->total_records==0) {?>
                  <div class="msg">Sorry, no records found.</div>
                  <? } else { ?>
                  <div align="right">
                    <? $pager->show_displaying()?>
                  </div>
                  <div>Records Per Page:
                    <?=pagesize_dropdown('pagesize', $pagesize);?>
                  </div>
                  <form method="post" name="form1" id="form1" onSubmit="confirm_submit(this)">
                    <table width="100%"  border="0" cellpadding="0" cellspacing="1" class="tableList">
                      <tr>
                        <th width="18%" nowrap="nowrap" style="font-size:12px; padding:9px;">Room Name</th>
                        <th width="18%" nowrap="nowrap" style="font-size:12px; padding:9px;">Guest/Sq. Ft.</th>
                        <th width="11%" nowrap="nowrap" style="font-size:12px; padding:9px;">Image</th>
                        <th width="7%" nowrap="nowrap" style="font-size:12px; padding:9px;">Status<?=sort_arrows('room_status')?></th>
                        <th width="4%">&nbsp;</th>
                        <th width="4%"><input name="check_all" type="checkbox" id="check_all" value="1" onClick="checkall(this.form)" /></th>
                      </tr>
                      <?
while ($line_raw = mysqli_fetch_array($result)) {
	$line = ms_display_value($line_raw);
	@extract($line);
	$css = ($css=='trOdd')?'trEven':'trOdd';
 
?>
                      <tr class="<?=$css?>">
                        <td align="center" style="font-size:12px;"><?php echo $room_name;?> </td>
                         <td align="center" style="font-size:12px;"><?php echo $room_guest;?> Guest / <?=$room_sq_ft?> Ft. </td>
                        <td align="center"><img src="../room_images/<?=$room_image_name?>" height="80" width="80"  border="0"> </td>

						<td align="center"><b style="font-size:12px;"><?php echo $room_status;?></b> </td>
                        <td align="center"><a href="add_edit_rooms.php?room_id=<?=$room_id?>"><img src="images/icons/edit.png" alt="Edit" width="16" height="16" border="0" /></a></td>
                        <td align="center"><input name="arr_ids[]" type="checkbox" id="arr_ids[]" value="<?=$room_id?>" /></td>
                      </tr>
                      <? } ?>
                    </table>
                    <table width="100%" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td align="right" style="padding:2px">
						<input type="submit" name="Activate" value="Activate" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#1F3E00; border-radius:4px; cursor:pointer; width:100px;"/>
                          <input type="submit" name="Deactivate" value="Deactivate" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#FF6F6F; border-radius:4px; cursor:pointer; width:100px;" />
                          <input type="submit" name="Delete" value="Delete" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#CA0000; border-radius:4px; cursor:pointer; width:100px;"/>
                        </td>
                      </tr>
                    </table>
                  </form>
                  <? $pager->show_pager();?>
                  <? } ?>
                </td>
              </tr>
            </table>
            <?php include("bottom.inc.php");?>
			<script language="javascript">
function select_chk(){
			var chks = document.getElementsByName('arr_ids[]');
			var hasChecked = false;
			for (var i = 0; i < chks.length; i++){
			if (chks[i].checked){
				hasChecked = true;
				break;
				}
			}
			if (hasChecked == false){
			alert("Please Select At Least One.");
			return false;
			}
}
</script>
admin/login.php0000644000352000025440000001013714373670764014157 0ustar  thediannthediann<?php
ob_start();
require_once("../includes/dbsmain.inc.php");

if(is_post_back()) {
 	$sql="select * from tbl_admin where admin_userid='$_POST[login_id]' and admin_status = 'Active'";
	$result = db_query($sql);
	if ($line_raw = mysqli_fetch_assoc($result)) {
		@extract($line_raw);
		if ($admin_password==$_POST['password']) {
			$_SESSION['sess_admin_login_id'] = $admin_id;
			$_SESSION['user_id']=$admin_id;
			$_SESSION['user_name']=$admin_name;
			$_SESSION['ADMIN_ACCESS'] = $admin_access;
			$_SESSION['sess_admin_type'] = $admin_user_type;
			if($return_page=='') {
				header("location: index.php");
				exit;
			} else {
				header("location: ".$return_page);
				exit;
			}
		} else {
			$arr_error_msgs[] = "Invalid Login ID or Password";
		}
	} else {
		$arr_error_msgs[] = "Invalid Login ID or Password";
	}
}
?>

<link href="styles.css" rel="stylesheet" type="text/css">
<? include("top.inc.php");?>

<form action="" method="post">
  <table width="368"  border="0" align="center" cellpadding="0" cellspacing="0">
    <tr>
      <td width="368" align="left"><img src="images/secure_login.gif" alt="Main Administrator Login" /></td>
    </tr>
    <tr>
      <td valign="top">&nbsp;</td>
    </tr>
    <tr>
      <td valign="top"><b><?php include("error_msgs.inc.php");?></b></td>
    </tr>
    <tr>
      <td><table width="100%"  border="0" cellpadding="15" cellspacing="1" bgcolor="#CFCFCF">
          <tr>
            <td bgcolor="#F5F5F5"><table width="100%"  border="0" cellspacing="0" cellpadding="0">
                <tr>
                  <td width="13%" align="left"><img src="images/icons/keys.gif" width="32" height="32" /></td>
                  <td width="87%" align="left" valign="top"><span style="font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; color:#1E518F; font-weight:bold">Welcome to <?php echo SITE_NAME ?> Administration Suite!</span></td>
                </tr>
                <tr>
                  <td align="left">&nbsp;</td>
                  <td align="left" valign="top" class="blue_txt">&nbsp;</td>
                </tr>
                <tr>
                  <td colspan="2" align="left"><table width="100%"  border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td width="34%" valign="top" class="txtLight">Please enter a valid username and password to gain access to the administration console.</td>
                        <td width="66%" align="right" valign="top"><table width="80%"  border="0" cellpadding="7" cellspacing="1" bgcolor="#CFCFCF">
                            <tr>
                              <td bgcolor="#EFEFEF"><table width="100%"  border="0" cellspacing="0" cellpadding="1">
                                  <tr>
                                    <td align="left"><strong>Username</strong></td>
                                  </tr>
                                  <tr>
                                    <td align="left"><input name="login_id" type="text" class="textfield" id="login_id" value="<?=$login_id?>" size="30" /></td>
                                  </tr>
                                  <tr>
                                    <td align="left"><strong>Password</strong></td>
                                  </tr>
                                  <tr>
                                    <td align="left"><input name="password" type="password" class="textfield" value="<?=$password?>" size="30" /></td>
                                  </tr>
                                  
                                  <tr>
                                    <td align="right" style="padding-top:5px"><input type="image" src="images/buttons/submit.gif" alt="Submit" border="0" /></td>
                                  </tr>
                              </table></td>
                            </tr>
                        </table></td>
                      </tr>
                  </table></td>
                </tr>
            </table></td>
          </tr>
      </table></td>
    </tr>
  </table>
</form>
<? include("bottom.inc.php");?>admin/datetimepicker.js0000644000352000025440000003273211753353642015663 0ustar  thediannthediann//Javascript name: My Date Time Picker
//Date created: 16-Nov-2003 23:19
//Scripter: TengYong Ng
//Website: http://www.rainforestnet.com
//Copyright (c) 2003 TengYong Ng
//FileName: DateTimePicker.js
//Version: 0.8
//Contact: contact@rainforestnet.com
// Note: Permission given to use this script in ANY kind of applications if
//       header lines are left unchanged.
//Global variables
var winCal;
var dtToday=new Date();
var Cal;
var docCal;
var MonthName=["January", "February", "March", "April", "May", "June","July", 
	"August", "September", "October", "November", "December"];
var WeekDayName=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"];	
var exDateTime;//Existing Date and Time

//Configurable parameters
var cnTop="200";//top coordinate of calendar window.
var cnLeft="500";//left coordinate of calendar window
var WindowTitle ="DateTime Picker";//Date Time Picker title.
var WeekChar=2;//number of character for week day. if 2 then Mo,Tu,We. if 3 then Mon,Tue,Wed.
var CellWidth=20;//Width of day cell.
var DateSeparator="-";//Date Separator, you can change it to "/" if you want.
var TimeMode=24;//default TimeMode value. 12 or 24

var ShowLongMonth=true;//Show long month name in Calendar header. example: "January".
var ShowMonthYear=true;//Show Month and Year in Calendar header.
var MonthYearColor="#cc0033";//Font Color of Month and Year in Calendar header.
var WeekHeadColor="#0099CC";//Background Color in Week header.
var SundayColor="#6699FF";//Background color of Sunday.
var SaturdayColor="#CCCCFF";//Background color of Saturday.
var WeekDayColor="white";//Background color of weekdays.
var FontColor="blue";//color of font in Calendar day cell.
var TodayColor="#FFFF33";//Background color of today.
var SelDateColor="#FFFF99";//Backgrond color of selected date in textbox.
var YrSelColor="#cc0033";//color of font of Year selector.
var ThemeBg="";//Background image of Calendar window.
//end Configurable parameters
//end Global variable

function NewCal(pCtrl,pFormat,pShowTime,pTimeMode)
{
	Cal=new Calendar(dtToday);
	if ((pShowTime!=null) && (pShowTime))
	{
		Cal.ShowTime=true;
		if ((pTimeMode!=null) &&((pTimeMode=='12')||(pTimeMode=='24')))
		{
			TimeMode=pTimeMode;
		}		
	}	
	if (pCtrl!=null)
		Cal.Ctrl=pCtrl;
	if (pFormat!=null)
		Cal.Format=pFormat.toUpperCase();
	
	exDateTime=document.getElementById(pCtrl).value;
	if (exDateTime!="")//Parse Date String
	{
		var Sp1;//Index of Date Separator 1
		var Sp2;//Index of Date Separator 2 
		var tSp1;//Index of Time Separator 1
		var tSp1;//Index of Time Separator 2
		var strMonth;
		var strDate;
		var strYear;
		var intMonth;
		var YearPattern;
		var strHour;
		var strMinute;
		var strSecond;
		//parse month
		Sp1=exDateTime.indexOf(DateSeparator,0)
		Sp2=exDateTime.indexOf(DateSeparator,(parseInt(Sp1)+1));
		
		if ((Cal.Format.toUpperCase()=="DDMMYYYY") || (Cal.Format.toUpperCase()=="DDMMMYYYY"))
		{
			strMonth=exDateTime.substring(Sp1+1,Sp2);
			strDate=exDateTime.substring(0,Sp1);
		}
		else if ((Cal.Format.toUpperCase()=="MMDDYYYY") || (Cal.Format.toUpperCase()=="MMMDDYYYY"))
		{
			strMonth=exDateTime.substring(0,Sp1);
			strDate=exDateTime.substring(Sp1+1,Sp2);
		}
		if (isNaN(strMonth))
			intMonth=Cal.GetMonthIndex(strMonth);
		else
			intMonth=parseInt(strMonth,10)-1;	
		if ((parseInt(intMonth,10)>=0) && (parseInt(intMonth,10)<12))
			Cal.Month=intMonth;
		//end parse month
		//parse Date
		if ((parseInt(strDate,10)<=Cal.GetMonDays()) && (parseInt(strDate,10)>=1))
			Cal.Date=strDate;
		//end parse Date
		//parse year
		strYear=exDateTime.substring(Sp2+1,Sp2+5);
		YearPattern=/^\d{4}$/;
		if (YearPattern.test(strYear))
			Cal.Year=parseInt(strYear,10);
		//end parse year
		//parse time
		if (Cal.ShowTime==true)
		{
			tSp1=exDateTime.indexOf(":",0)
			tSp2=exDateTime.indexOf(":",(parseInt(tSp1)+1));
			strHour=exDateTime.substring(tSp1,(tSp1)-2);
			Cal.SetHour(strHour);
			strMinute=exDateTime.substring(tSp1+1,tSp2);
			Cal.SetMinute(strMinute);
			strSecond=exDateTime.substring(tSp2+1,tSp2+3);
			Cal.SetSecond(strSecond);
		}	
	}
	winCal=window.open("","DateTimePicker","toolbar=0,status=0,menubar=0,fullscreen=no,width=195,height=245,resizable=0,top="+cnTop+",left="+cnLeft);
	docCal=winCal.document;
	RenderCal();
}

function RenderCal()
{
	var vCalHeader;
	var vCalData;
	var vCalTime;
	var i;
	var j;
	var SelectStr;
	var vDayCount=0;
	var vFirstDay;

	docCal.open();
	docCal.writeln("<html><head><title>"+WindowTitle+"</title>");
	docCal.writeln("<script>var winMain=window.opener;</script>");
	docCal.writeln("</head><body background='"+ThemeBg+"' link="+FontColor+" vlink="+FontColor+"><form name='Calendar'>");

	vCalHeader="<table border=1 cellpadding=1 cellspacing=1 width='100%' align=\"center\" valign=\"top\">\n";
	//Month Selector
	vCalHeader+="<tr>\n<td colspan='7'><table border=0 width='100%' cellpadding=0 cellspacing=0><tr><td align='left'>\n";
	vCalHeader+="<select name=\"MonthSelector\" onChange=\"javascript:winMain.Cal.SwitchMth(this.selectedIndex);winMain.RenderCal();\">\n";
	for (i=0;i<12;i++)
	{
		if (i==Cal.Month)
			SelectStr="Selected";
		else
			SelectStr="";	
		vCalHeader+="<option "+SelectStr+" value >"+MonthName[i]+"\n";
	}
	vCalHeader+="</select></td>";
	//Year selector
	vCalHeader+="\n<td align='right'><a href=\"javascript:winMain.Cal.DecYear();winMain.RenderCal()\"><b><font color=\""+YrSelColor+"\"><</font></b></a><font face=\"Verdana\" color=\""+YrSelColor+"\" size=2><b> "+Cal.Year+" </b></font><a href=\"javascript:winMain.Cal.IncYear();winMain.RenderCal()\"><b><font color=\""+YrSelColor+"\">></font></b></a></td></tr></table></td>\n";	
	vCalHeader+="</tr>";
	//Calendar header shows Month and Year
	if (ShowMonthYear)
		vCalHeader+="<tr><td colspan='7'><font face='Verdana' size='2' align='center' color='"+MonthYearColor+"'><b>"+Cal.GetMonthName(ShowLongMonth)+" "+Cal.Year+"</b></font></td></tr>\n";
	//Week day header
	vCalHeader+="<tr bgcolor="+WeekHeadColor+">";
	for (i=0;i<7;i++)
	{
		vCalHeader+="<td align='center'><font face='Verdana' size='2'>"+WeekDayName[i].substr(0,WeekChar)+"</font></td>";
	}
	vCalHeader+="</tr>";	
	docCal.write(vCalHeader);
	
	//Calendar detail
	CalDate=new Date(Cal.Year,Cal.Month);
	CalDate.setDate(1);
	vFirstDay=CalDate.getDay();
	vCalData="<tr>";
	for (i=0;i<vFirstDay;i++)
	{
		vCalData=vCalData+GenCell();
		vDayCount=vDayCount+1;
	}
	for (j=1;j<=Cal.GetMonDays();j++)
	{
		var strCell;
		vDayCount=vDayCount+1;
		if ((j==dtToday.getDate())&&(Cal.Month==dtToday.getMonth())&&(Cal.Year==dtToday.getFullYear()))
			strCell=GenCell(j,true,TodayColor);//Highlight today's date
		else
		{
			if (j==Cal.Date)
			{
				strCell=GenCell(j,true,SelDateColor);
			}
			else
			{	 
				if (vDayCount%7==0)
					strCell=GenCell(j,false,SaturdayColor);
				else if ((vDayCount+6)%7==0)
					strCell=GenCell(j,false,SundayColor);
				else
					strCell=GenCell(j,null,WeekDayColor);
			}		
		}						
		vCalData=vCalData+strCell;

		if((vDayCount%7==0)&&(j<Cal.GetMonDays()))
		{
			vCalData=vCalData+"</tr>\n<tr>";
		}
	}
	docCal.writeln(vCalData);	
	//Time picker
	if (Cal.ShowTime)
	{
		var showHour;
		showHour=Cal.getShowHour();		
		vCalTime="<tr>\n<td colspan='7' align='center'>";
		vCalTime+="<input type='text' name='hour' maxlength=2 size=1 style=\"WIDTH: 22px\" value="+showHour+" onchange=\"javascript:winMain.Cal.SetHour(this.value)\">";
		vCalTime+=" : ";
		vCalTime+="<input type='text' name='minute' maxlength=2 size=1 style=\"WIDTH: 22px\" value="+Cal.Minutes+" onchange=\"javascript:winMain.Cal.SetMinute(this.value)\">";
		vCalTime+=" : ";
		vCalTime+="<input type='text' name='second' maxlength=2 size=1 style=\"WIDTH: 22px\" value="+Cal.Seconds+" onchange=\"javascript:winMain.Cal.SetSecond(this.value)\">";
		if (TimeMode==12)
		{
			var SelectAm =(parseInt(Cal.Hours,10)<12)? "Selected":"";
			var SelectPm =(parseInt(Cal.Hours,10)>=12)? "Selected":"";

			vCalTime+="<select name=\"ampm\" onchange=\"javascript:winMain.Cal.SetAmPm(this.options[this.selectedIndex].value);\">";
			vCalTime+="<option "+SelectAm+" value=\"AM\">AM</option>";
			vCalTime+="<option "+SelectPm+" value=\"PM\">PM<option>";
			vCalTime+="</select>";
		}	
		vCalTime+="\n</td>\n</tr>";
		docCal.write(vCalTime);
	}	
	//end time picker
	docCal.writeln("\n</table>");
	docCal.writeln("</form></body></html>");
	docCal.close();
}

function GenCell(pValue,pHighLight,pColor)//Generate table cell with value
{
	var PValue;
	var PCellStr;
	var vColor;
	var vHLstr1;//HighLight string
	var vHlstr2;
	var vTimeStr;
	
	if (pValue==null)
		PValue="";
	else
		PValue=pValue;
	
	if (pColor!=null)
		vColor="bgcolor=\""+pColor+"\"";
	else
		vColor="";	
	if ((pHighLight!=null)&&(pHighLight))
		{vHLstr1="color='red'><b>";vHLstr2="</b>";}
	else
		{vHLstr1=">";vHLstr2="";}	
	
	if (Cal.ShowTime)
	{
		vTimeStr="winMain.document.getElementById('"+Cal.Ctrl+"').value+=' '+"+"winMain.Cal.getShowHour()"+"+':'+"+"winMain.Cal.Minutes"+"+':'+"+"winMain.Cal.Seconds";
		if (TimeMode==12)
			vTimeStr+="+' '+winMain.Cal.AMorPM";
	}	
	else
		vTimeStr="";		
	PCellStr="<td "+vColor+" width="+CellWidth+" align='center'><font face='verdana' size='2'"+vHLstr1+"<a href=\"javascript:winMain.document.getElementById('"+Cal.Ctrl+"').value='"+Cal.FormatDate(PValue)+"';"+vTimeStr+";window.close();\">"+PValue+"</a>"+vHLstr2+"</font></td>";
	return PCellStr;
}

function Calendar(pDate,pCtrl)
{
	//Properties
	this.Date=pDate.getDate();//selected date
	this.Month=pDate.getMonth();//selected month number
	this.Year=pDate.getFullYear();//selected year in 4 digits
	this.Hours=pDate.getHours();	
	
	if (pDate.getMinutes()<10)
		this.Minutes="0"+pDate.getMinutes();
	else
		this.Minutes=pDate.getMinutes();
	
	if (pDate.getSeconds()<10)
		this.Seconds="0"+pDate.getSeconds();
	else		
		this.Seconds=pDate.getSeconds();
		
	this.MyWindow=winCal;
	this.Ctrl=pCtrl;
	this.Format="ddMMyyyy";
	this.Separator=DateSeparator;
	this.ShowTime=false;
	if (pDate.getHours()<12)
		this.AMorPM="AM";
	else
		this.AMorPM="PM";	
}

function GetMonthIndex(shortMonthName)
{
	for (i=0;i<12;i++)
	{
		if (MonthName[i].substring(0,3).toUpperCase()==shortMonthName.toUpperCase())
		{	return i;}
	}
}
Calendar.prototype.GetMonthIndex=GetMonthIndex;

function IncYear()
{	Cal.Year++;}
Calendar.prototype.IncYear=IncYear;

function DecYear()
{	Cal.Year--;}
Calendar.prototype.DecYear=DecYear;
	
function SwitchMth(intMth)
{	Cal.Month=intMth;}
Calendar.prototype.SwitchMth=SwitchMth;

function SetHour(intHour)
{	
	var MaxHour;
	var MinHour;
	if (TimeMode==24)
	{	MaxHour=23;MinHour=0}
	else if (TimeMode==12)
	{	MaxHour=12;MinHour=1}
	else
		alert("TimeMode can only be 12 or 24");		
	var HourExp=new RegExp("^\\d\\d$");
	if (HourExp.test(intHour) && (parseInt(intHour,10)<=MaxHour) && (parseInt(intHour,10)>=MinHour))
	{	
		if ((TimeMode==12) && (Cal.AMorPM=="PM"))
		{
			if (parseInt(intHour,10)==12)
				Cal.Hours=12;
			else	
				Cal.Hours=parseInt(intHour,10)+12;
		}	
		else if ((TimeMode==12) && (Cal.AMorPM=="AM"))
		{
			if (intHour==12)
				intHour-=12;
			Cal.Hours=parseInt(intHour,10);
		}
		else if (TimeMode==24)
			Cal.Hours=parseInt(intHour,10);	
	}
}
Calendar.prototype.SetHour=SetHour;

function SetMinute(intMin)
{
	var MinExp=new RegExp("^\\d\\d$");
	if (MinExp.test(intMin) && (intMin<60))
		Cal.Minutes=intMin;
}
Calendar.prototype.SetMinute=SetMinute;

function SetSecond(intSec)
{	
	var SecExp=new RegExp("^\\d\\d$");
	if (SecExp.test(intSec) && (intSec<60))
		Cal.Seconds=intSec;
}
Calendar.prototype.SetSecond=SetSecond;

function SetAmPm(pvalue)
{
	this.AMorPM=pvalue;
	if (pvalue=="PM")
	{
		this.Hours=(parseInt(this.Hours,10))+12;
		if (this.Hours==24)
			this.Hours=12;
	}	
	else if (pvalue=="AM")
		this.Hours-=12;	
}
Calendar.prototype.SetAmPm=SetAmPm;

function getShowHour()
{
	var finalHour;
    if (TimeMode==12)
    {
    	if (parseInt(this.Hours,10)==0)
		{
			this.AMorPM="AM";
			finalHour=parseInt(this.Hours,10)+12;	
		}
		else if (parseInt(this.Hours,10)==12)
		{
			this.AMorPM="PM";
			finalHour=12;
		}		
		else if (this.Hours>12)
		{
			this.AMorPM="PM";
			if ((this.Hours-12)<10)
				finalHour="0"+((parseInt(this.Hours,10))-12);
			else
				finalHour=parseInt(this.Hours,10)-12;	
		}
		else
		{
			this.AMorPM="AM";
			if (this.Hours<10)
				finalHour="0"+parseInt(this.Hours,10);
			else
				finalHour=this.Hours;	
		}
	}
	else if (TimeMode==24)
	{
		if (this.Hours<10)
			finalHour="0"+parseInt(this.Hours,10);
		else	
			finalHour=this.Hours;
	}	
	return finalHour;	
}				
Calendar.prototype.getShowHour=getShowHour;		

function GetMonthName(IsLong)
{
	var Month=MonthName[this.Month];
	if (IsLong)
		return Month;
	else
		return Month.substr(0,3);
}
Calendar.prototype.GetMonthName=GetMonthName;

function GetMonDays()//Get number of days in a month
{
	var DaysInMonth=[31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
	if (this.IsLeapYear())
	{
		DaysInMonth[1]=29;
	}	
	return DaysInMonth[this.Month];	
}
Calendar.prototype.GetMonDays=GetMonDays;

function IsLeapYear()
{
	if ((this.Year%4)==0)
	{
		if ((this.Year%100==0) && (this.Year%400)!=0)
		{
			return false;
		}
		else
		{
			return true;
		}
	}
	else
	{
		return false;
	}
}
Calendar.prototype.IsLeapYear=IsLeapYear;

function FormatDate(pDate)
{
	if (this.Format.toUpperCase()=="DDMMYYYY")
		return (pDate+DateSeparator+(this.Month+1)+DateSeparator+this.Year);
	else if (this.Format.toUpperCase()=="DDMMMYYYY")
		return (pDate+DateSeparator+this.GetMonthName(false)+DateSeparator+this.Year);
	else if (this.Format.toUpperCase()=="MMDDYYYY")
		return ((this.Month+1)+DateSeparator+pDate+DateSeparator+this.Year);
	else if (this.Format.toUpperCase()=="MMMDDYYYY")
		return (this.GetMonthName(false)+DateSeparator+pDate+DateSeparator+this.Year);			
}
Calendar.prototype.FormatDate=FormatDate;	admin/sub_user_list.php0000644000352000025440000004246714373673501015734 0ustar  thediannthediann<?php
ob_start();
require_once("../includes/dbsmain.inc.php");
if(isset($_POST['Delete'])){
	$arr_ids = $_REQUEST['arr_p_id'];
	if(is_array($arr_ids)) {
		$str_ids = implode(',', $arr_ids); 
			db_query("delete from tbl_admin where admin_id in ($str_ids)");
	}
	header("Location: ".$_SERVER['HTTP_REFERER']);
	exit;
}
if(isset($_POST['Activate'])){
	$arr_ids = $_REQUEST['arr_p_id'];
	if(is_array($arr_ids)) {
		$str_ids = implode(',', $arr_ids); 
			db_query("update tbl_admin set admin_status = 'Active' where admin_id in ($str_ids)");
	}
	header("Location: ".$_SERVER['HTTP_REFERER']);
	exit;
}

if(isset($_POST['Deactivate'])){
	$arr_ids = $_REQUEST['arr_p_id'];
	if(is_array($arr_ids)) {
		$str_ids = implode(',', $arr_ids); 
			db_query("update tbl_admin set admin_status = 'Inactive' where admin_id in ($str_ids)");
	}
	header("Location: ".$_SERVER['HTTP_REFERER']);
	exit;
}

if($submit=='Create'){
@extract($_POST);
 if(isset($_GET['id'])){ 
if(is_array($access)){ $acc_type=implode(",",$access); }
    $sql="update tbl_admin set 
	         admin_password = '$admin_password',
			 admin_userid='$admin_userid',
			 admin_access='$acc_type',
			 admin_add_date=now(),
			 admin_user_type='$admin_user_type' 
			 where admin_id= '$_GET[id]'";
             db_query($sql);
			 set_session_msg("Record updated successfully.");
             header("Location:sub_user_list.php");
             exit;
}else{
@extract($_POST);
$cntUser=db_scalar("select count(*) from tbl_admin where 1 and admin_userid='$_POST[admin_userid]'");
 if($cntUser > 0){
    set_session_msg("Sorry ! user already exist.");
 }else{
 if(is_array($access)){ $acc_type=implode(",",$access); }
    $sql="insert into tbl_admin set 
	         admin_password ='$admin_password',
			 admin_access='$acc_type',
			 admin_userid='$admin_userid',
			 admin_add_date=now(),
			 admin_user_type='$admin_user_type'";
			 db_query($sql);
			 set_session_msg("Record added successfully.");
			 header("Location:sub_user_list.php");
			 exit;
    }
  }
}     
if(isset($_GET[id])){
$sql="select * from tbl_admin where admin_id='$_GET[id]'";
$result2=db_query($sql);
$data_new=mysqli_fetch_array($result2);
}
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<script language="JavaScript" type="text/javascript" src="../includes/general.js"></script>
<script language="javascript" type="text/javascript">
function select_one(){

if(document.getElementById('admin_userid').value==0){		
alert("Enter Username !");
document.getElementById('admin_userid').focus();
return false;
}
if(document.getElementById('admin_password').value==0){		
alert("Enter Password !");
document.getElementById('admin_password').focus();
return false;
}

var chks = document.getElementsByName('access[]');
var hasChecked = false;
for (var i = 0; i < chks.length; i++){
if (chks[i].checked){
hasChecked = true;
break;
}else{
hasChecked = false;
}
}
if (hasChecked == false){
alert("Please select at least one access !");
return false;
}else{
return true;
}
}
</script>
<?php include("top.inc.php");?>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td id="pageHead"><div id="txtPageHead"> Sub Admin list </div></td>
  </tr>
</table>
<div style="font-size:13px;"><strong class="msg" style="margin-left:500px;">
  <?=display_sess_msg()?>
  </strong></div>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td id="content"><form method="post" name="form1" id="form1" onSubmit="confirm_submit(this)">
        <table width="100%"  border="0" cellpadding="0" cellspacing="1" class="tableList" style="border:1px outset #fff;">
          <tr>
            <th width="6%" nowrap="nowrap" style="font-size:12px; padding:9px;">Sl No</th>
            <th width="15%" nowrap="nowrap" style="font-size:12px; padding:9px;">Username</th>
            <th width="15%" nowrap="nowrap" style="font-size:12px; padding:9px;">Password</th>
            <th width="48%" nowrap="nowrap" style="font-size:12px; padding:9px;">Access</th>
            <th width="8%" nowrap="nowrap" style="font-size:12px; padding:9px;">Status</th>
            <th width="4%">&nbsp;</th>
            <th width="4%"><input name="check_all" type="checkbox" id="check_all" value="1" onClick="checkall(this.form)" /></th>
          </tr>
          <?php
						  $sql="select * from tbl_admin where admin_user_type!='Admin'";
						   $result=db_query($sql);
						   if(mysqli_num_rows($result)>0){
						   $k=0;
						   while($data=mysqli_fetch_array($result)){
						   @extract($data);
						   $k++;
						   $css = ($css=='trOdd')?'trEven':'trOdd';
						 ?>
          <tr class="<?=$css?>" align="center">
            <td style="font-size:12px;"><?=$k?></td>
            <td style="font-size:12px;"><?=$admin_userid?></td>
            <td style="font-size:12px;"><?=$admin_password?></td>
            <td style="font-size:11px;"><?php
							  $msg="";  
							  if(check_access("$data[admin_access]","1")=='true')
							  {  $msg.= "Manage Site Features,&nbsp;"; }
							  if(check_access("$data[admin_access]","2")=='true')
							  {  $msg.= "Manage Static Pages,&nbsp;"; }
							  if(check_access("$data[admin_access]","3")=='true')
							  {  $msg.= "Manage Category / Products,&nbsp;"; }
							  if(check_access("$data[admin_access]","4")=='true')
							  {  $msg.= "Manage Enquiry,&nbsp;"; }
							  if(check_access("$data[admin_access]","5")=='true')
							  {  $msg.= "Manage SEO Work,&nbsp;"; }
							  if(check_access("$data[admin_access]","6")=='true')
							  {  $msg.= "Manage Header,&nbsp;"; }
							  if(check_access("$data[admin_access]","7")=='true')
							  {  $msg.= "Manage Header Flash,&nbsp;"; }
							  if(check_access("$data[admin_access]","8")=='true')
							  {  $msg.= "Manage Video,&nbsp;"; }
							  if(check_access("$data[admin_access]","9")=='true')
							  {  $msg.= "Manage Gallery,&nbsp;"; }
							  if(check_access("$data[admin_access]","10")=='true')
							  {  $msg.= "Manage Footer,&nbsp;"; }
							  if(check_access("$data[admin_access]","11")=='true')
							  {  $msg.= "Manage Testimonials,&nbsp;"; }
							  if(check_access("$data[admin_access]","12")=='true')
							  {  $msg.= "Manage News,&nbsp;"; }
							  if(check_access("$data[admin_access]","13")=='true')
							  {  $msg.= "Manage Job Openings,&nbsp;"; }
							  if(check_access("$data[admin_access]","22")=='true')
							  {  $msg.= "Upload Catalog,&nbsp;"; }
							  if(check_access("$data[admin_access]","14")=='true')
							  {  $msg.= "Manage Contact,&nbsp;"; }
							  if(check_access("$data[admin_access]","15")=='true')
							  {  $msg.= "Change Admin Password,&nbsp;"; }
							  if(check_access("$data[admin_access]","16")=='true')
							  {  $msg.= "Manage Client Logo Page,&nbsp;"; }
							  if(check_access("$data[admin_access]","17")=='true')
							  {  $msg.= "Manage Certificate Page,&nbsp;"; }
							  if(check_access("$data[admin_access]","18")=='true')
							  {  $msg.= "Mng Inner Header Flash,&nbsp;"; }
							  if(check_access("$data[admin_access]","19")=='true')
							  {  $msg.= "Backup Site+Table,&nbsp;"; }
							  if(check_access("$data[admin_access]","20")=='true')
							  {  $msg.= "Manage Contact Us Map,&nbsp;"; }
							  if(check_access("$data[admin_access]","21")=='true')
							  {  $msg.= "Manage Site Down,&nbsp;"; }
							   print "$msg";
								?>
            </td>
            <td style="font-size:12px;"><b>
              <?=$admin_status?>
              </b></td>
            <td align="center" style="font-size:12px;"><a href="sub_user_list.php?id=<?=$admin_id?>"><img src="images/icons/edit.png" alt="Edit" width="16" height="16" border="0" /></a></td>
            <td align="center"><input type="checkbox" name="arr_p_id[]" value="<?=$data['admin_id']?>" /></td>
          </tr>
          <? } ?>
        </table>
        <table width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td align="right" style="padding:2px; padding-top:5px; padding-bottom:5px;"><input type="submit" name="Activate" value="Activate" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#1F3E00; border-radius:4px; cursor:pointer; width:100px;"/>
              <input type="submit" name="Deactivate" value="Deactivate" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#FF6F6F; border-radius:4px; cursor:pointer; width:100px;" />
              <input type="submit" name="Delete" value="Delete" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#CA0000; border-radius:4px; cursor:pointer; width:100px;"/>
            </td>
          </tr>
        </table>
        <? }else{ ?>
        <table width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td align="center" style="padding:20px;"><span style="font-size:15px; font-weight:bold; color:#CE0000;">No Sub Admin Found !</span></td>
          </tr>
        </table>
        <? } ?>
      </form>
      <table width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td colspan="2" class="tdLabel" id="pageHead"><div id="txtPageHead">Create Sub Admin </div></td>
        </tr>
        <form action="" method="post" name="form1" id="form1">
          <tr>
            <td class="tdLabel" align="right" style="padding:6px; padding-top:10px; font-size:12px; font-weight:bold; color:#004B97;">Admin Type : </td>
            <td style="padding:6px; padding-top:10px;"><select name="admin_user_type" style="width:220px; height:25px;">
                <option value="Sub Admin" selected="selected">Sub Admin</option>
              </select>
            </td>
          </tr>
          <tr>
            <td class="tdLabel" align="right" style="padding:6px; font-size:12px; font-weight:bold; color:#004B97;">Username : </td>
            <td style="padding:6px;"><input type="text" name="admin_userid" id="admin_userid" style="width:220px; height:25px;" value="<?=$data_new[admin_userid]?>"  /></td>
          </tr>
          <tr>
            <td class="tdLabel" align="right" style="padding:6px; font-size:12px; font-weight:bold; color:#004B97;">Password : </td>
            <td style="padding:6px;"><input type="text" id="admin_password" name="admin_password" style="width:220px; height:25px;" value="<?=$data_new[admin_password]?>">
            </td>
          </tr>
          <tr>
            <td valign="top" class="label" align="right" style=" font-size:12px; font-weight:bold; color:#004B97;"><span style="margin-right:7px;">Access :</span> </td>
            <td><table width="100%" border="0" cellspacing="0" cellpadding="2">
                <tr>
                  <td width="3%" scope="col"><input type="checkbox" name="access[]" <?php if(check_access("$data_new[admin_access]","1")=='true') { ?> checked="checked"<? } ?> value="1" /></td>
                  <td width="23%">Manage Site Features</td>
                  <td width="3%" scope="col"><input type="checkbox" name="access[]" value="2" <?php if(check_access("$data_new[admin_access]","2")=='true') { ?> checked="checked"<? } ?>/></td>
                  <td width="71%">Manage Static Pages</td>
                </tr>
                <tr>
                  <th scope="row"><input type="checkbox" name="access[]" value="3" <?php if(check_access("$data_new[admin_access]","3")=='true') { ?> checked="checked"<? } ?>/></th>
                  <td>Manage Category / Products</td>
                  <td><input type="checkbox" name="access[]" value="4" <?php if(check_access("$data_new[admin_access]","4")=='true') { ?> checked="checked"<? } ?>/></td>
                  <td>Manage Enquiry</td>
                </tr>
                <tr>
                  <th scope="row"><input type="checkbox" name="access[]" value="5" <?php if(check_access("$data_new[admin_access]","5")=='true') { ?> checked="checked"<? } ?>/></th>
                  <td>Manage SEO Work</td>
                  <td><input type="checkbox" name="access[]" value="6" <?php if(check_access("$data_new[admin_access]","6")=='true') { ?> checked="checked"<? } ?>/></td>
                  <td>Manage Header</td>
                </tr>
                <tr>
                  <th scope="row"><input type="checkbox" name="access[]" value="7" <?php if(check_access("$data_new[admin_access]","7")=='true') { ?> checked="checked"<? } ?>/></th>
                  <td>Manage Header Flash</td>
                  <td><input type="checkbox" name="access[]" value="8" <?php if(check_access("$data_new[admin_access]","8")=='true') { ?> checked="checked"<? } ?>/></td>
                  <td>Manage Video</td>
                </tr>
                <tr>
                  <th scope="row"><input type="checkbox" name="access[]" value="9" <?php if(check_access("$data_new[admin_access]","9")=='true') { ?> checked="checked"<? } ?>/></th>
                  <td>Manage Gallery</td>
                  <td><input type="checkbox" name="access[]" value="10" <?php if(check_access("$data_new[admin_access]","10")=='true') { ?> checked="checked"<? } ?>/></td>
                  <td>Manage Footer</td>
                </tr>
                <tr>
                  <th scope="row"><input type="checkbox" name="access[]" value="11" <?php if(check_access("$data_new[admin_access]","11")=='true') { ?> checked="checked"<? } ?>/></th>
                  <td>Manage Testimonials</td>
                  <td><input type="checkbox" name="access[]" value="12" <?php if(check_access("$data_new[admin_access]","12")=='true') { ?> checked="checked"<? } ?>/></td>
                  <td>Manage News</td>
                </tr>
                <tr>
                  <th scope="row"><input type="checkbox" name="access[]" value="13" <?php if(check_access("$data_new[admin_access]","13")=='true') { ?> checked="checked"<? } ?>/></th>
                  <td>Manage Job Openings</td>
                  <td><input type="checkbox" name="access[]" value="14" <?php if(check_access("$data_new[admin_access]","14")=='true') { ?> checked="checked"<? } ?>/></td>
                  <td>Manage Contact</td>
                </tr>
                <tr>
                  <th scope="row"><input type="checkbox" name="access[]" value="20" <?php if(check_access("$data_new[admin_access]","20")=='true') { ?> checked="checked"<? } ?>/></th>
                  <td>Manage Contact Us Map</td>
                  <td><input type="checkbox" name="access[]" value="21" <?php if(check_access("$data_new[admin_access]","21")=='true') { ?> checked="checked"<? } ?>/></td>
                  <td>Manage Site Down</td>
                </tr>
                <tr>
                  <th scope="row"><input type="checkbox" name="access[]" value="16" <?php if(check_access("$data_new[admin_access]","16")=='true') { ?> checked="checked"<? } ?>/></th>
                  <td>Manage Client Logo Page</td>
                  <td><input type="checkbox" name="access[]" value="17" <?php if(check_access("$data_new[admin_access]","17")=='true') { ?> checked="checked"<? } ?>/></td>
                  <td>Manage Certificate Page</td>
                </tr>
                <tr>
                  <th scope="row"><input type="checkbox" name="access[]" value="18" <?php if(check_access("$data_new[admin_access]","18")=='true') { ?> checked="checked"<? } ?>/></th>
                  <td>Mng Inner Header Flash</td>
                  <td><input type="checkbox" name="access[]" value="19" <?php if(check_access("$data_new[admin_access]","19")=='true') { ?> checked="checked"<? } ?>/></td>
                  <td>Backup Site+Table</td>
                </tr>
                <tr>
                  <th scope="row"><input type="checkbox" name="access[]" value="15" <?php if(check_access("$data_new[admin_access]","15")=='true') { ?> checked="checked"<? } ?>/></th>
                  <td>Change Admin Password</td>
                  <td><input type="checkbox" name="access[]" value="22" <?php if(check_access("$data_new[admin_access]","22")=='true') { ?> checked="checked"<? } ?>/></td>
                  <td>Upload Catalog</td>
                </tr>
                <tr>
                  <th scope="row"><input name="check_all" type="checkbox" id="check_all" value="check_all" onclick="checkall(this.form)" /></th>
                  <td><b>Select All</b></td>
                  <td>&nbsp;</td>
                  <td>&nbsp;</td>
                </tr>
              </table></td>
          </tr>
          <tr>
            <td class="label">&nbsp;</td>
            <td><input type="submit" value="Create" onclick="return select_one()" name="submit" class="button" style="font-size:14px; font-weight:bold; height:29px; background-color:#003264; border-radius:4px; cursor:pointer; width:100px; margin-bottom:20px; margin-left:7px; margin-top:5px;" />
            </td>
          </tr>
        </form>
      </table></td>
  </tr>
</table>
<?php include("bottom.inc.php");?>
<script language="javascript">
function select_chk(){
			var chks = document.getElementsByName('arr_p_id[]');
			var hasChecked = false;
			for (var i = 0; i < chks.length; i++){
			if (chks[i].checked){
				hasChecked = true;
				break;
				}
			}
			if (hasChecked == false){
			alert("Please Select At Least One.");
			return false;
			}
}
</script>
admin/ckeditor/0000755000352000025440000000000014373776770014144 5ustar  thediannthediannadmin/ckeditor/skins/0000755000352000025440000000000014373776770015273 5ustar  thediannthediannadmin/ckeditor/skins/moono/0000755000352000025440000000000014373776770016422 5ustar  thediannthediannadmin/ckeditor/skins/moono/editor_iequirks.css0000644000352000025440000011046212450564214022320 0ustar  thediannthediann/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none}.cke_reset_all,.cke_reset_all *{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.3);-webkit-box-shadow:0 1px 0 rgba(255,255,255,.3);box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{-moz-border-radius:0 2px 2px 0;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{-moz-border-radius:2px 0 0 2px;-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}.cke_button_on{-moz-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{-moz-box-shadow:0 0 1px rgba(0,0,0,.3) inset;-webkit-box-shadow:0 0 1px rgba(0,0,0,.3) inset;box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;-webkit-box-shadow:1px 0 1px rgba(255,255,255,.5);-moz-box-shadow:1px 0 1px rgba(255,255,255,.5);box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;-webkit-box-shadow:-1px 0 1px rgba(255,255,255,.1);-moz-box-shadow:-1px 0 1px rgba(255,255,255,.1);box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}.cke_path_item,.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);-webkit-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_top,.cke_contents,.cke_bottom{width:100%}.cke_button_arrow{font-size:0}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_button,.cke_rtl .cke_button *,.cke_rtl .cke_combo,.cke_rtl .cke_combo *,.cke_rtl .cke_path_item,.cke_rtl .cke_path_item *,.cke_rtl .cke_path_empty{float:none}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_combo_button,.cke_rtl .cke_combo_button *,.cke_rtl .cke_button,.cke_rtl .cke_button_icon{display:inline-block;vertical-align:top}.cke_rtl .cke_button_icon{float:none}.cke_resizer{width:10px}.cke_source{white-space:normal}.cke_bottom{position:static}.cke_colorbox{font-size:0}.cke_button__bold_icon {background: url(icons.png) no-repeat 0 -0px !important;}.cke_button__italic_icon {background: url(icons.png) no-repeat 0 -24px !important;}.cke_button__strike_icon {background: url(icons.png) no-repeat 0 -48px !important;}.cke_button__subscript_icon {background: url(icons.png) no-repeat 0 -72px !important;}.cke_button__superscript_icon {background: url(icons.png) no-repeat 0 -96px !important;}.cke_button__underline_icon {background: url(icons.png) no-repeat 0 -120px !important;}.cke_button__blockquote_icon {background: url(icons.png) no-repeat 0 -144px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -168px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -192px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -216px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -240px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -264px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -288px !important;}.cke_button__horizontalrule_icon {background: url(icons.png) no-repeat 0 -312px !important;}.cke_button__image_icon {background: url(icons.png) no-repeat 0 -336px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -360px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -384px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -408px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -432px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -456px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -480px !important;}.cke_button__link_icon {background: url(icons.png) no-repeat 0 -504px !important;}.cke_button__unlink_icon {background: url(icons.png) no-repeat 0 -528px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -552px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -576px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -600px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -624px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -648px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -672px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -696px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -720px !important;}.cke_button__removeformat_icon {background: url(icons.png) no-repeat 0 -744px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png) no-repeat 0 -768px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png) no-repeat 0 -792px !important;}.cke_button__specialchar_icon {background: url(icons.png) no-repeat 0 -816px !important;}.cke_button__scayt_icon {background: url(icons.png) no-repeat 0 -840px !important;}.cke_button__table_icon {background: url(icons.png) no-repeat 0 -864px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -888px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -912px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -936px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -960px !important;}.cke_button__spellchecker_icon {background: url(icons.png) no-repeat 0 -984px !important;}.cke_button__selectall_icon {background: url(icons.png) no-repeat 0 -1008px !important;}.cke_button__bgcolor_icon {background: url(icons.png) no-repeat 0 -1032px !important;}.cke_button__textcolor_icon {background: url(icons.png) no-repeat 0 -1056px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_hidpi .cke_button__spellchecker_icon {background: url(icons_hidpi.png) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_button__selectall_icon {background: url(icons_hidpi.png) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bgcolor_icon {background: url(icons_hidpi.png) no-repeat 0 -1032px !important;background-size: 16px !important;}.cke_hidpi .cke_button__textcolor_icon {background: url(icons_hidpi.png) no-repeat 0 -1056px !important;background-size: 16px !important;}admin/ckeditor/skins/moono/dialog.css0000644000352000025440000003707612450564214020366 0ustar  thediannthediann/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;-moz-border-radius:0 0 2px 2px;-webkit-border-radius:0 0 2px 2px;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;-moz-border-radius:3px 3px 0 0;-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fafafa),to(#ededed));background-image:-moz-linear-gradient(top,#fafafa,#ededed);background-image:-webkit-linear-gradient(top,#fafafa,#ededed);background-image:-o-linear-gradient(top,#fafafa,#ededed);background-image:-ms-linear-gradient(top,#fafafa,#ededed);background-image:linear-gradient(top,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover{background:#ebebeb;background:-moz-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ebebeb),color-stop(100%,#dfdfdf));background:-webkit-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-o-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-ms-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover{background:#ededed;background:-moz-linear-gradient(top,#ededed 0,#fff 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ededed),color-stop(100%,#fff));background:-webkit-linear-gradient(top,#ededed 0,#fff 100%);background:-o-linear-gradient(top,#ededed 0,#fff 100%);background:-ms-linear-gradient(top,#ededed 0,#fff 100%);background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:5px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;-moz-box-shadow:0 0 6px rgba(0,0,0,.4) inset;-webkit-box-shadow:0 0 6px rgba(0,0,0,.4) inset;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:-webkit-gradient(linear,0 0,0 100%,from(#9ad717),to(#69b10b));background-image:-webkit-linear-gradient(top,#9ad717,#69b10b);background-image:-o-linear-gradient(top,#9ad717,#69b10b);background-image:linear-gradient(to bottom,#9ad717,#69b10b);background-image:-moz-linear-gradient(top,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#88be14),color-stop(100%,#5d9c0a));background:-webkit-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:-o-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);background:-moz-linear-gradient(top,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}admin/ckeditor/skins/moono/editor_ie7.css0000644000352000025440000011322112450564214021144 0ustar  thediannthediann/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none}.cke_reset_all,.cke_reset_all *{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.3);-webkit-box-shadow:0 1px 0 rgba(255,255,255,.3);box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{-moz-border-radius:0 2px 2px 0;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{-moz-border-radius:2px 0 0 2px;-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}.cke_button_on{-moz-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{-moz-box-shadow:0 0 1px rgba(0,0,0,.3) inset;-webkit-box-shadow:0 0 1px rgba(0,0,0,.3) inset;box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;-webkit-box-shadow:1px 0 1px rgba(255,255,255,.5);-moz-box-shadow:1px 0 1px rgba(255,255,255,.5);box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;-webkit-box-shadow:-1px 0 1px rgba(255,255,255,.1);-moz-box-shadow:-1px 0 1px rgba(255,255,255,.1);box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}.cke_path_item,.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);-webkit-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_button,.cke_rtl .cke_button *,.cke_rtl .cke_combo,.cke_rtl .cke_combo *,.cke_rtl .cke_path_item,.cke_rtl .cke_path_item *,.cke_rtl .cke_path_empty{float:none}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_combo_button,.cke_rtl .cke_combo_button *,.cke_rtl .cke_button,.cke_rtl .cke_button_icon{display:inline-block;vertical-align:top}.cke_toolbox{display:inline-block;padding-bottom:5px;height:100%}.cke_rtl .cke_toolbox{padding-bottom:0}.cke_toolbar{margin-bottom:5px}.cke_rtl .cke_toolbar{margin-bottom:0}.cke_toolgroup{height:26px}.cke_toolgroup,.cke_combo{position:relative}a.cke_button{float:none;vertical-align:top}.cke_toolbar_separator{display:inline-block;float:none;vertical-align:top;background-color:#c0c0c0}.cke_toolbox_collapser .cke_arrow{margin-top:0}.cke_toolbox_collapser .cke_arrow{border-width:4px}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{border-width:3px}.cke_rtl .cke_button_arrow{padding-top:8px;margin-right:2px}.cke_rtl .cke_combo_inlinelabel{display:table-cell;vertical-align:middle}.cke_menubutton{display:block;height:24px}.cke_menubutton_inner{display:block;position:relative}.cke_menubutton_icon{height:16px;width:16px}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:inline-block}.cke_menubutton_label{width:auto;vertical-align:top;line-height:24px;height:24px;margin:0 10px 0 0}.cke_menuarrow{width:5px;height:6px;padding:0;position:absolute;right:8px;top:10px;background-position:0 0}.cke_rtl .cke_menubutton_icon{position:absolute;right:0;top:0}.cke_rtl .cke_menubutton_label{float:right;clear:both;margin:0 24px 0 10px}.cke_hc .cke_rtl .cke_menubutton_label{margin-right:0}.cke_rtl .cke_menuarrow{left:8px;right:auto;background-position:0 -24px}.cke_hc .cke_menuarrow{top:5px;padding:0 5px}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{position:relative}.cke_wysiwyg_div{padding-top:0!important;padding-bottom:0!important}.cke_button__bold_icon {background: url(icons.png) no-repeat 0 -0px !important;}.cke_button__italic_icon {background: url(icons.png) no-repeat 0 -24px !important;}.cke_button__strike_icon {background: url(icons.png) no-repeat 0 -48px !important;}.cke_button__subscript_icon {background: url(icons.png) no-repeat 0 -72px !important;}.cke_button__superscript_icon {background: url(icons.png) no-repeat 0 -96px !important;}.cke_button__underline_icon {background: url(icons.png) no-repeat 0 -120px !important;}.cke_button__blockquote_icon {background: url(icons.png) no-repeat 0 -144px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -168px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -192px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -216px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -240px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -264px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -288px !important;}.cke_button__horizontalrule_icon {background: url(icons.png) no-repeat 0 -312px !important;}.cke_button__image_icon {background: url(icons.png) no-repeat 0 -336px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -360px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -384px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -408px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -432px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -456px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -480px !important;}.cke_button__link_icon {background: url(icons.png) no-repeat 0 -504px !important;}.cke_button__unlink_icon {background: url(icons.png) no-repeat 0 -528px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -552px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -576px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -600px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -624px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -648px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -672px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -696px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -720px !important;}.cke_button__removeformat_icon {background: url(icons.png) no-repeat 0 -744px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png) no-repeat 0 -768px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png) no-repeat 0 -792px !important;}.cke_button__specialchar_icon {background: url(icons.png) no-repeat 0 -816px !important;}.cke_button__scayt_icon {background: url(icons.png) no-repeat 0 -840px !important;}.cke_button__table_icon {background: url(icons.png) no-repeat 0 -864px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -888px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -912px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -936px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -960px !important;}.cke_button__spellchecker_icon {background: url(icons.png) no-repeat 0 -984px !important;}.cke_button__selectall_icon {background: url(icons.png) no-repeat 0 -1008px !important;}.cke_button__bgcolor_icon {background: url(icons.png) no-repeat 0 -1032px !important;}.cke_button__textcolor_icon {background: url(icons.png) no-repeat 0 -1056px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_hidpi .cke_button__spellchecker_icon {background: url(icons_hidpi.png) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_button__selectall_icon {background: url(icons_hidpi.png) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bgcolor_icon {background: url(icons_hidpi.png) no-repeat 0 -1032px !important;background-size: 16px !important;}.cke_hidpi .cke_button__textcolor_icon {background: url(icons_hidpi.png) no-repeat 0 -1056px !important;background-size: 16px !important;}admin/ckeditor/skins/moono/images/0000755000352000025440000000000014373776770017667 5ustar  thediannthediannadmin/ckeditor/skins/moono/images/arrow.png0000644000352000025440000000027712450564214021513 0ustar  thediannthediann�PNG


IHDR�gr�*PLTE999���999999999999999999999999999999999�}U�
tRNS	*-cf����G�7IDAT�c�4b��
�w����Aw������ vL2`���}���� f�b�JUW��Q�IEND�B`�admin/ckeditor/skins/moono/images/close.png0000644000352000025440000000072412450564214021463 0ustar  thediannthediann�PNG


IHDR(-S�PLTE���������������������������������������������������������'''   '''SSS===DDDOOOXXXYYY[[[BBBKKKQQQUUU\\\ccceeeUz�0tRNSWX[^_bbeg����������������o���IDAT]�Qr�0@�'�@\��glBgZ��R��� ��@� ��=��̂��=��uџ:Pt��QD�|���e"����|��=Ү2k]�Wۯ4@��u<_{�@�=������orJ�4�n���c���aR�e�w�ΡF;Ði���;��Q�]$�F��D�Zd�'��f�����IEND�B`�admin/ckeditor/skins/moono/images/hidpi/0000755000352000025440000000000014373776770020764 5ustar  thediannthediannadmin/ckeditor/skins/moono/images/hidpi/close.png0000644000352000025440000000236712450564214022565 0ustar  thediannthediann�PNG


IHDR  D����PLTEԨ�ը�թ�֪�ת�ث�٫�٬�ڬ�ڭ�ۭ�ܮ�ݯ�ᲲⲲ㳳䳳䴴嵵浵絵綶鷷鸸빹칹�������������������������������������������	/99

RSS199&&+335;;9??<AA=BBBGGLNNPUUQUUVWWQVVTYYV\\?BB@CCAEEBDDEGGGGGGIIGJJHHHHIIJJJJLLKKKKLLLMMMMMMNNNOOOOOOPPPPPQQQRRRRSSSSSTTTTUUUUUVVVXXXXYYYYYY[[ZZZZ[[[[[\\\\^^]]]^^^____``````aabbbbccbddcccddddffgggghhjjjkmmlll��.��tRNS&*2789:;<=GGGGHIJL���������������������������������������������������������������������������������������������Z��IDAT8�Փ�OQ����n?a�_����b���	��&&���M��Җnww���K)<��ܜ;��IΙK�T!?�}p}/
�)��@Y����]IyDD�JXu�+Y���Yͦ��G�R���R�����ө�
r���=z$�2��j��1'q��W��ų�E�x��Z��S�ǩ�S(��N��x����}Tv�e8M����tb.ӠZ�~�������8m�����ラT���$�;���1�!f^?�Lupr6Y�{'�4c4���(��~]�680�HX\&8��̝nf�1�A���x2�Ue�*˷"*ܲ��Q��[�/^��6�V�����7��}�&Vs���w_+C��
�v���l����h@h��g����j&r5�I���i��:�J�whFױ,+e&�8�j�
�:�`�}4��#:�j=���].nCf����)��w~u�7�^�]]�X�;^��2��j)YN�|i+a��,&Kw��E?�8��yd�5V���H�����RS{_�IEND�B`�admin/ckeditor/skins/moono/images/hidpi/refresh.png0000644000352000025440000000346212450564214023113 0ustar  thediannthediann�PNG


IHDR  szz��IDATXåWYOUW݌W�\�p#ے��
2��$2(�hml�֤M��t�5i��CS�g��Zg���E���=]ksA�z���˹眽�����G\X�F���B�׭�6lW6n�qm_�^��];�3Ļ���[��G����G�����]�ĥ���x'�i�C(�o�k��v����{��A��r���M��#1+1Q:�L⿿v挸�w�zюK��Rx����7v�ډ
�+W��s���t�IZ{���[v\b_16����͛��={��C����"�ӧ��ե|�b�\�|��_�H��8��}q�ΝS{l�x�bZKi����vtP�d2$buruMkhh�.����r�ҥrV\�..�x�\̔6c�1#�4jmmT:�d/h�� ���� �EC/^,kjj�,X�@.Y�D�̙#]=<z�'];^<jnW�lyİ�;���̈fdC>���{+���
˖)K�h�kkk�y���\�����ߋ�c��!8;���T�H3"���QQ�0RLE�a���UWW˪�*YYY9 �W@��d5q3�'��f�9i�-��_<{���|(��J<
* s������C��
�KJ�Q��S�ă�&q�<����;|X�(/��:XL*�t�L�����[�Mf��G��o]`h�	����+t!�����8ˢ;&n��)� �l!S����Vh���SeXVR^.?�1c�2��Pv5(�]8;G�Z��B���I��?c���yn��4dY}�_V'O���>��a�P\���Y,�h.�'Xsc�vU���m�����<���0�ʴ�'�y�X�a���1Ge?�_΁T^�k�$&6�-��j��j�]�饸�22��A)�q&��-�\Щ��鹾JKKKU���ph0-"��6@O��Ww+*g!��Ab����z�O��U\R"g#����GQQ'XrY�R�{��pwwf\<ٿ_�D0f^����f��P���.�z�PN�f�/�24�
F4�S�?�����1#0)��g����Ae~х��"T<@=�J��Gc�ެ�t_���-@CV
��i��L�_Aa�,���
7��5��D�7`�X�:���;"�Vi����DG˩�%��` �눙3/g��ʼ�|%H�V6�;oh��[/ף� �F,�GF���RO��Jhd}�=a�Y992L&�v+�֨e(W=F������CX�<��U̲���JJ�`J��|�	�d� 

�h_ߋ*�`�]D}�>j��^2�70��ؗ��<'"j��X��=x�G'$���Ζ9B2�����[#ލ�@"�cR}
MJ�qX�/��9�����q?��y��,`���,���::V�''ˌ�LI dbf7/�kx����K��G2(�
uƳ"�ѣ{b1	q}@sBJ�Ğ(��v[ͨU/,�lǠ2 $dK*jB&A�0R���%$D�<=�R��o�����8���/-#C�[,��:�;\Ox-��#V4�"2&�'%-M��@�u6H1-�>c��KHP�\�)���hN�>�'mՑa�v\!���/�Ae���2`�!�7�%#�c����ࣨG�J�홐�@��_O������J�Ϝ���$ �J�2^��LdDTT7��p-��]�:(�TL�
��Ѫ��KpX�)kl��8(�YPXX����*���j4&ք��7�V�'L!�1�,?6�s�|��X���X��Y�V_F�'8�s��j(�}�Ж;¯�;��h��aIEND�B`�admin/ckeditor/skins/moono/images/hidpi/lock-open.png0000644000352000025440000000246112450564214023342 0ustar  thediannthediann�PNG


IHDR  szz��IDATXÝVMlW����l��?`��5(���E�U�TZ)%U��ks��C��*�*R�@��^{@9JQ��8 ��R%�����7=x�l���f$�֞��f�}��m�MP�s2���� � �W���PZCk	LdD)�R��)�ZCi
PB��(��5p��`�)��\&*C����ţG��OBϞ={���p�[�����*��� "B >:���ӫWL�v\)�e�#�a\ت��X����	̨�„���b�/�]����8+0�`��Ю�=����]�MM���ۇ�mC
�wh#�?_��m��hh"�a�0M�	!%��5L���.ә3��L�XB���(khxd�Iة(�otl�����p������ҥ�����Y)0*�F��7򕥥��W��vݷ��5j�&ڮ�VCei�?�4g���ö�c�~����80f$l;)?�L�;A�N�����n;�E���R�{C¶����ĉ�>����JAH���x�PF��P��t���Lk��e��v&��?��~cX=1p	ᖻ��Q
��U����f�
�u��B:���[d`��zv"��P�&��&��&@)�00b�o�H���e!�����@�Xf`�-)a%x�0Pk�P��Po���c
G�D6�F����cG.�����D"è���r]��m<y�ty}ee~�Ν{����Jnc�<*-)161��ɓ��0B��jzz�H	SJL��?�,)')���[�̘8t�fH!È ������}'Ȑ�p�u!�ͻ�-������8��x����
�/�~o<��pD�dއw<��o�� �řÁ��=��2���|E�����Ç7�J�EHf�s��O_1{�%PJE`���@�|0=�Y�{w[[���L��9|899&{g���U�tD��"*��J���닚y=7 f��$�34�o��?;�� |���IB���F2��C*5��S)$��9�5(d��p�@k(�B�����W���ml,@<��+��W�wW�-��N� �0�#R�g�i�Ai��hz�$u�#lu|z�
2-?E�"���-ػ�Я�����X][[(�?�M�A�ŋ����g���˅%��a�TZn�|9�t�m���5^W��ZZ�7j��}��4����e$���f�v��*=t����̏�.b�M�S�HIEND�B`�admin/ckeditor/skins/moono/images/hidpi/lock.png0000644000352000025440000000242312450564214022401 0ustar  thediannthediann�PNG


IHDR  D���
PLTEԨ�ը�թ�֩�ת�ث�٫�ڬ�۬�ۭ�ܭ�ݮ�߰�ᱱᲲⱱ䴴洴浵캺�������������������������������������������������������������������  ""##HMMJNN/::9EEV\\[aaADDGJJ(())**!--#..$//&22'33)44+77,88/;;0<<2==7BB9>>9DD<GG=??=@@>AA>II?JJ@BB@HHACCCEECKKDDDDEEDFFEEEEGGGGGGHHGIIGJJHHHHIIHJJHQQJJJJKKJLLKKKKMMKNNLLLLNNMMMMOOMQQNNNNQQOOOOPPPRRPSSPTTQQQQRRRRRRSSRTTSSSSUUTUUTVVUUUUVVVVVWYYXZZX]]Z\\]^^^``_dd````ffacccddceecffddddeedggeffeggfffgggghhgiihiiikkilljmm�n��tRNS#4<Wf}}�����������������������������������������������������������������������������������������������������������������( 
IDAT8�m��n�@���]��i*Q����8 ��y*�\�C�����=D��4u����M���O3��X��wN�gk
AR��~+xw[�Ŵ7z:��V��p�����{����kr���d���w#��8��,j�m7<�?��ZgEԾ��B#�YX?�f*n"��L�i�6n)�2>�=��Cd��uz�%q[���2��ٲN�o��B/����Y0�0]z�z�.*�*��'�$tm�Y^G\�:�z5C�gTe�~~��;X�w�`��_�uld�����	�����fS����y�����b0V��/�}ꯄM�tD��}*��Gߺ�$�}8h y�#]��m��`�I�]�4�*�y��!�TmD�H��MQ� P�l,bi#e���f4nY����DR�����1���(E�(V�"Z �S�4�ma�u#e�f*��rD>�Zⲳ`ZL�{l�Y�n�\-�Y
�}�(`����Fv&U��B IEND�B`�admin/ckeditor/skins/moono/images/refresh.png0000644000352000025440000000064612450564214022017 0ustar  thediannthediann�PNG


IHDR��7�mIDAT��KU�cf����iT��!IjCB�T!9D���?�HS��N�-�-��r}~D��45�u�B�P(�*u{"jJ��B�P�,�'����

�ʲ���=_�Ɔ��B�.B��޷O��x4�ƪ�Ҳ�n����g8���D:c��y*M���<����wL�I�o���%�i�����8Cߝ������m,�?E��S3:b�o�Jv���0dž�+*�qt(�1ukvE�5�Ş�E_�N��mkv��}�1K��gn��K��f�^n�����+#��6呗�s�2�#�����/�΅�̹��F�>h�e%��
����ٟ�{͞/D��J5
�CKDӲJ���X�$av̡IEND�B`�admin/ckeditor/skins/moono/images/lock-open.png0000644000352000025440000000053512450564214022245 0ustar  thediannthediann�PNG


IHDR��7�$IDAT(�]��.���͡�D���^q�
iI�X�xOӧq�#x�V�Jl"q(��C�Y��|23"F�I�ңG�.	�>iw�p��Θ�A�+�7d�R��$x��8fq�z�CUR�>_������/���+od| L��'!����s��*�B)Ch�'"�!)�t�eO��j�K/]V��`˚g�۴i�sO����Vl�ٚ
6[�
+��A�C�)�u-�AѲG6�i̴Y������sn���#�2����+���+.I{@
�<��Q"�<s����s�/IEND�B`�admin/ckeditor/skins/moono/images/lock.png0000644000352000025440000000073312450564214021306 0ustar  thediannthediann�PNG


IHDR(-S�PLTE�������������������������������������������������


---'''   """''')))***///777===>>>AAABBBEEEGGGIIILLLMMMNNNPPPQQQRRRTTTVVVWWWXXXYYYZZZ��A tRNSHgg������j���IDAT�1r�0E��h��'�Թ��R�e�#�"~v
��8�J�Vz\�(�h�^�/`m��m��6N���� ���xo܅�;�{��Q����nV���03I���_f��!��忣�d& �y� eZdd� �Y�>�Ȝ�:dnm�Թd�V �4U�Q,IEND�B`�admin/ckeditor/skins/moono/editor_gecko.css0000644000352000025440000010542312450564214021555 0ustar  thediannthediann/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none}.cke_reset_all,.cke_reset_all *{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.3);-webkit-box-shadow:0 1px 0 rgba(255,255,255,.3);box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{-moz-border-radius:0 2px 2px 0;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{-moz-border-radius:2px 0 0 2px;-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}.cke_button_on{-moz-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{-moz-box-shadow:0 0 1px rgba(0,0,0,.3) inset;-webkit-box-shadow:0 0 1px rgba(0,0,0,.3) inset;box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;-webkit-box-shadow:1px 0 1px rgba(255,255,255,.5);-moz-box-shadow:1px 0 1px rgba(255,255,255,.5);box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;-webkit-box-shadow:-1px 0 1px rgba(255,255,255,.1);-moz-box-shadow:-1px 0 1px rgba(255,255,255,.1);box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}.cke_path_item,.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);-webkit-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}.cke_bottom{padding-bottom:3px}.cke_combo_text{margin-bottom:-1px;margin-top:1px}.cke_button__bold_icon {background: url(icons.png) no-repeat 0 -0px !important;}.cke_button__italic_icon {background: url(icons.png) no-repeat 0 -24px !important;}.cke_button__strike_icon {background: url(icons.png) no-repeat 0 -48px !important;}.cke_button__subscript_icon {background: url(icons.png) no-repeat 0 -72px !important;}.cke_button__superscript_icon {background: url(icons.png) no-repeat 0 -96px !important;}.cke_button__underline_icon {background: url(icons.png) no-repeat 0 -120px !important;}.cke_button__blockquote_icon {background: url(icons.png) no-repeat 0 -144px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -168px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -192px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -216px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -240px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -264px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -288px !important;}.cke_button__horizontalrule_icon {background: url(icons.png) no-repeat 0 -312px !important;}.cke_button__image_icon {background: url(icons.png) no-repeat 0 -336px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -360px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -384px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -408px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -432px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -456px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -480px !important;}.cke_button__link_icon {background: url(icons.png) no-repeat 0 -504px !important;}.cke_button__unlink_icon {background: url(icons.png) no-repeat 0 -528px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -552px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -576px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -600px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -624px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -648px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -672px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -696px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -720px !important;}.cke_button__removeformat_icon {background: url(icons.png) no-repeat 0 -744px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png) no-repeat 0 -768px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png) no-repeat 0 -792px !important;}.cke_button__specialchar_icon {background: url(icons.png) no-repeat 0 -816px !important;}.cke_button__scayt_icon {background: url(icons.png) no-repeat 0 -840px !important;}.cke_button__table_icon {background: url(icons.png) no-repeat 0 -864px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -888px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -912px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -936px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -960px !important;}.cke_button__spellchecker_icon {background: url(icons.png) no-repeat 0 -984px !important;}.cke_button__selectall_icon {background: url(icons.png) no-repeat 0 -1008px !important;}.cke_button__bgcolor_icon {background: url(icons.png) no-repeat 0 -1032px !important;}.cke_button__textcolor_icon {background: url(icons.png) no-repeat 0 -1056px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_hidpi .cke_button__spellchecker_icon {background: url(icons_hidpi.png) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_button__selectall_icon {background: url(icons_hidpi.png) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bgcolor_icon {background: url(icons_hidpi.png) no-repeat 0 -1032px !important;background-size: 16px !important;}.cke_hidpi .cke_button__textcolor_icon {background: url(icons_hidpi.png) no-repeat 0 -1056px !important;background-size: 16px !important;}admin/ckeditor/skins/moono/editor_ie8.css0000644000352000025440000010753012450564214021153 0ustar  thediannthediann/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none}.cke_reset_all,.cke_reset_all *{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.3);-webkit-box-shadow:0 1px 0 rgba(255,255,255,.3);box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{-moz-border-radius:0 2px 2px 0;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{-moz-border-radius:2px 0 0 2px;-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}.cke_button_on{-moz-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{-moz-box-shadow:0 0 1px rgba(0,0,0,.3) inset;-webkit-box-shadow:0 0 1px rgba(0,0,0,.3) inset;box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;-webkit-box-shadow:1px 0 1px rgba(255,255,255,.5);-moz-box-shadow:1px 0 1px rgba(255,255,255,.5);box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;-webkit-box-shadow:-1px 0 1px rgba(255,255,255,.1);-moz-box-shadow:-1px 0 1px rgba(255,255,255,.1);box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}.cke_path_item,.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);-webkit-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_toolbox_collapser .cke_arrow{border-width:4px}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{border-width:3px}.cke_toolbox_collapser .cke_arrow{margin-top:0}.cke_button__bold_icon {background: url(icons.png) no-repeat 0 -0px !important;}.cke_button__italic_icon {background: url(icons.png) no-repeat 0 -24px !important;}.cke_button__strike_icon {background: url(icons.png) no-repeat 0 -48px !important;}.cke_button__subscript_icon {background: url(icons.png) no-repeat 0 -72px !important;}.cke_button__superscript_icon {background: url(icons.png) no-repeat 0 -96px !important;}.cke_button__underline_icon {background: url(icons.png) no-repeat 0 -120px !important;}.cke_button__blockquote_icon {background: url(icons.png) no-repeat 0 -144px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -168px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -192px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -216px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -240px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -264px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -288px !important;}.cke_button__horizontalrule_icon {background: url(icons.png) no-repeat 0 -312px !important;}.cke_button__image_icon {background: url(icons.png) no-repeat 0 -336px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -360px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -384px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -408px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -432px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -456px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -480px !important;}.cke_button__link_icon {background: url(icons.png) no-repeat 0 -504px !important;}.cke_button__unlink_icon {background: url(icons.png) no-repeat 0 -528px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -552px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -576px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -600px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -624px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -648px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -672px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -696px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -720px !important;}.cke_button__removeformat_icon {background: url(icons.png) no-repeat 0 -744px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png) no-repeat 0 -768px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png) no-repeat 0 -792px !important;}.cke_button__specialchar_icon {background: url(icons.png) no-repeat 0 -816px !important;}.cke_button__scayt_icon {background: url(icons.png) no-repeat 0 -840px !important;}.cke_button__table_icon {background: url(icons.png) no-repeat 0 -864px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -888px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -912px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -936px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -960px !important;}.cke_button__spellchecker_icon {background: url(icons.png) no-repeat 0 -984px !important;}.cke_button__selectall_icon {background: url(icons.png) no-repeat 0 -1008px !important;}.cke_button__bgcolor_icon {background: url(icons.png) no-repeat 0 -1032px !important;}.cke_button__textcolor_icon {background: url(icons.png) no-repeat 0 -1056px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_hidpi .cke_button__spellchecker_icon {background: url(icons_hidpi.png) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_button__selectall_icon {background: url(icons_hidpi.png) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bgcolor_icon {background: url(icons_hidpi.png) no-repeat 0 -1032px !important;background-size: 16px !important;}.cke_hidpi .cke_button__textcolor_icon {background: url(icons_hidpi.png) no-repeat 0 -1056px !important;background-size: 16px !important;}admin/ckeditor/skins/moono/editor.css0000644000352000025440000010530212450564214020401 0ustar  thediannthediann/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none}.cke_reset_all,.cke_reset_all *{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.3);-webkit-box-shadow:0 1px 0 rgba(255,255,255,.3);box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{-moz-border-radius:0 2px 2px 0;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{-moz-border-radius:2px 0 0 2px;-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}.cke_button_on{-moz-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{-moz-box-shadow:0 0 1px rgba(0,0,0,.3) inset;-webkit-box-shadow:0 0 1px rgba(0,0,0,.3) inset;box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;-webkit-box-shadow:1px 0 1px rgba(255,255,255,.5);-moz-box-shadow:1px 0 1px rgba(255,255,255,.5);box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;-webkit-box-shadow:-1px 0 1px rgba(255,255,255,.1);-moz-box-shadow:-1px 0 1px rgba(255,255,255,.1);box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}.cke_path_item,.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);-webkit-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}.cke_button__bold_icon {background: url(icons.png) no-repeat 0 -0px !important;}.cke_button__italic_icon {background: url(icons.png) no-repeat 0 -24px !important;}.cke_button__strike_icon {background: url(icons.png) no-repeat 0 -48px !important;}.cke_button__subscript_icon {background: url(icons.png) no-repeat 0 -72px !important;}.cke_button__superscript_icon {background: url(icons.png) no-repeat 0 -96px !important;}.cke_button__underline_icon {background: url(icons.png) no-repeat 0 -120px !important;}.cke_button__blockquote_icon {background: url(icons.png) no-repeat 0 -144px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -168px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -192px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -216px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -240px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -264px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -288px !important;}.cke_button__horizontalrule_icon {background: url(icons.png) no-repeat 0 -312px !important;}.cke_button__image_icon {background: url(icons.png) no-repeat 0 -336px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -360px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -384px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -408px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -432px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -456px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -480px !important;}.cke_button__link_icon {background: url(icons.png) no-repeat 0 -504px !important;}.cke_button__unlink_icon {background: url(icons.png) no-repeat 0 -528px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -552px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -576px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -600px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -624px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -648px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -672px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -696px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -720px !important;}.cke_button__removeformat_icon {background: url(icons.png) no-repeat 0 -744px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png) no-repeat 0 -768px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png) no-repeat 0 -792px !important;}.cke_button__specialchar_icon {background: url(icons.png) no-repeat 0 -816px !important;}.cke_button__scayt_icon {background: url(icons.png) no-repeat 0 -840px !important;}.cke_button__table_icon {background: url(icons.png) no-repeat 0 -864px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -888px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -912px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -936px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -960px !important;}.cke_button__spellchecker_icon {background: url(icons.png) no-repeat 0 -984px !important;}.cke_button__selectall_icon {background: url(icons.png) no-repeat 0 -1008px !important;}.cke_button__bgcolor_icon {background: url(icons.png) no-repeat 0 -1032px !important;}.cke_button__textcolor_icon {background: url(icons.png) no-repeat 0 -1056px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_hidpi .cke_button__spellchecker_icon {background: url(icons_hidpi.png) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_button__selectall_icon {background: url(icons_hidpi.png) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bgcolor_icon {background: url(icons_hidpi.png) no-repeat 0 -1032px !important;background-size: 16px !important;}.cke_hidpi .cke_button__textcolor_icon {background: url(icons_hidpi.png) no-repeat 0 -1056px !important;background-size: 16px !important;}admin/ckeditor/skins/moono/dialog_iequirks.css0000644000352000025440000004075212450564214022275 0ustar  thediannthediann/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;-moz-border-radius:0 0 2px 2px;-webkit-border-radius:0 0 2px 2px;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;-moz-border-radius:3px 3px 0 0;-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fafafa),to(#ededed));background-image:-moz-linear-gradient(top,#fafafa,#ededed);background-image:-webkit-linear-gradient(top,#fafafa,#ededed);background-image:-o-linear-gradient(top,#fafafa,#ededed);background-image:-ms-linear-gradient(top,#fafafa,#ededed);background-image:linear-gradient(top,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover{background:#ebebeb;background:-moz-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ebebeb),color-stop(100%,#dfdfdf));background:-webkit-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-o-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-ms-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover{background:#ededed;background:-moz-linear-gradient(top,#ededed 0,#fff 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ededed),color-stop(100%,#fff));background:-webkit-linear-gradient(top,#ededed 0,#fff 100%);background:-o-linear-gradient(top,#ededed 0,#fff 100%);background:-ms-linear-gradient(top,#ededed 0,#fff 100%);background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:5px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;-moz-box-shadow:0 0 6px rgba(0,0,0,.4) inset;-webkit-box-shadow:0 0 6px rgba(0,0,0,.4) inset;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:-webkit-gradient(linear,0 0,0 100%,from(#9ad717),to(#69b10b));background-image:-webkit-linear-gradient(top,#9ad717,#69b10b);background-image:-o-linear-gradient(top,#9ad717,#69b10b);background-image:linear-gradient(to bottom,#9ad717,#69b10b);background-image:-moz-linear-gradient(top,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#88be14),color-stop(100%,#5d9c0a));background:-webkit-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:-o-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);background:-moz-linear-gradient(top,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0}.cke_dialog_footer{filter:""}admin/ckeditor/skins/moono/icons.png0000644000352000025440000002474012450564214020230 0ustar  thediannthediann�PNG


IHDR8C\) IDATx��}ytՙ��V�Z�Ԓ���!ɲ�����%8$������7@N�7����0���p�f�&���c��J��؀1 o�dY�V�����Q����Z-	���sOw���ު���|���W�*��6���33�̈��ҍW\qŊx<���	��a�R)LNNb���A��H�o�$`�Z�����<y2����k֬��\��Ǐ�Y�p��w�IxY��e�  �J@9��U�V=
�R���Y��" ���1��`�-�8�������̙S�A��l�mw�\�3g���w�[���/�$@D����b������`����Ѩ����'��د�9�v��e˖Q{{;OD/�V"
tvv��l�2*//O�趁\�T*��Ō���wuu�)����sV����x�@�1�\XX���ڊ���8M2ƴ	$	D"X,��b9�q�v;jkkq��q�����D�ؿ?,����J�"�Tj4y�G��K�nc��rU�WEY8D<���:ַ@Df5a���z�R�F�T�I�k��W\q���rA?~\زeK���p��эD4�z�j����W��'�fu>]�����A��S�&���~��1v /�1�y�1LLL�`�֧�����,�y�g��16��'��zo(�\�N���K.������Dԯ�)���d2����|�� ���>��V�9�
~������Kn�;`�^�L���5k��d2!�J��y�G"��Z�^e"J��'dU6 "�F�8c,�I����4V�
`@�Q�z=2D����%%%�����8$�I�<�D"���TTT�v��ѽ���\y啴j�*z��w��T*1<<����~�\�|9�}��u�L�===���R���
w�y�_A�X{��.��cJ70�>D���烈�i�&3c�;����(c�A�X���f���ׯ_��v�1<<���!

�FGG������䤠U�mH����Jf�Y�
P�4I�eQ����#�<��ڵ�s8�8�?�� ��|��>������W�^ǎî]��rZz�C/��1���3�Ƣ�(��0�̙�&�8�;w.��f���"�!�J���555��>��y�w�.���~;���/s������� JJJPYY����Rs��Y�{A�sD����#��Dt��BD�!=CD}�
0�-���?��s5P�*��q������>�l�2***
��W\\Z�l��Ӳ�}�������/�����{���~����'N����{;�(��:��%K�4������͛?pc�99`���[��b�H$)�o�����
�q��~���힜�'"�\���;wN��.="2�͛G>��4��;'''����ZZZ���-��L�i��V���:u��N"ZDD����|�t:7H�$�x����QI�.P�u�!"z@�R��骤�9 �O����1ƬR8�;k�^��$U\ob��WY�`F��p�9��hȩXc
���D�ef�V����g�����>EEEG1�[��˥X��ݻ���n`��%c�Z`�	3R,�1�1�����H�E���j�0-�<��Td-��0s'�)Ȱ�H�s�n�2フ����ՑYb|Ŋ���a2�37�|�t�M())I��"099�P(�d2��D
���M�d���Y�q=:�CҧY4�\�Ek�x�����w&8�ӎ�  H�OK�Z��d2�T*�FE�O
�����:_YYYY"���n��I �|�QSS�����f�߹�nw @CC�`f�4��������===TZZJN���:�,������CD�F�_kr�krr������x<^�q�;�J�����>��3ݲZӅ�X~OD���4�#M
yrDz(W�"�\��#}�Z�X��7.���2�9����Ƙ{���s͚5� NLgJ�'�V+�}��q�c	0%P6��?XUXX�>��3lܸq%����{zzz�-\��!
�W��՛������Y���#����Wݽ���
�@�@�T
���=�����?~�8���099�`0����o��cǎM�8q�B�B�ȩ�b���k{�вe���ϧ��Nj�
@D7m۶��ҥKO]|��TYY���>��ŋSyy��Dtef:755
-Z��n��L�/6fccc��1]������H���ۈhYf�2�˕������N��
ེ���D�pfb#����+D�|Z��<�dɒO��9���e�Db-��V��7m��]��n��Wz=��y���������`^D���(3�����f������"�&��9�L�l6�����شr:A�*��4N�S�Q�f�n{hq�U���i������
TA��LD�Τȩ�K�6-P�0g_7�cS��tv?��@��骡O`�7��-z��yPѼ�*�����
�`��h��4���Y�w����


�3Q�t:�+++�䈬�����+W�,����C�s
��d2m\�zu���ۥK��+�� bŊ
v��7r��ĪU��B����?��kML�hll�g޼y
�x[�n�?�J���������{�w�w0�M��U��,\������;44�D"���:>|x��g�}����j�؄fcq��6nܸtt4��P[[�����=�ܳ����v��&��g^��Q��'�%�x<+--�ۛ�W�ĵ���x�?)���x��o�1�Nc�8X`cGG�"���޽{���?QPP�FWWW=ę��!.\e���5��߿���-�y��������s�=�����YXXx�t:�.�+L�u��o�y3�ݖ2�joo�MD��a�ϗ�h�,��<�g��l~��պ���=*�wuu��r������JJJ�<Ϸ@�7�|�i;�jjj^!���\����=��=��#�'"w"�!q7a���$�2UGDѰT���р�/�^0�C/z��7
�\.I4��2e��p��/��ٳgN�<������+����<x����8���7ɨ	�l�#l۶������$hJc��r
���8$�
����ٳ���3_�H�4`ʅ@ ��W$��|/AgBJ������� �
�[�J׭�jc�J�2��Y�h4*���r�zc\ZGZUar��$��J��c�
���`@#�fdMԼ��1e>�ɔ�l$�}D�S�W�j��0gΜ�;(��1�Y�)<6
�0�BNz��0�o&��;� ����t���T
�pw�u��R�P���[�n�O�FD��bX�~��-��BV��6�C*�B<ǿ��~EV�d6�Vk���`�ZQRR��2]�@=}�4��l̟����b=�U:D�?7�pÌ�C=�%��6�-/x��^�?��l����-�8�7o^�^�|Bs���p8�.��`��1��(�t�ĄjgVMM�\��^x!A�����S�u�e��^���?<�f�]�2Ҷ�����)"��F�K��|�z���vO��JKK


у�Rm-x-�=��6��f����_�p�B�|�'4�\.(l6�\������r��q��V�����m�d�Xn�ӹQ{jkkipp���xv/^���l6C<x%%%�={6A��8�A�СC�n�:�͛7�9���\Q[[@t��q(������H&�9���� @z��ي��>�r5`���?Wi��̕.�4-q���LY�[��@�� �ݥqƘ������1�7
Dd&q��L�^��U��KQ�2�\�D��z�t��v�<'�KK��6�
�����N��r��J/"ѱF�6����7�.3 =i��@D1�a��X=�6�9���2�z2�,�ȳ8��@+��T_�;D���9T���oC�MҴ~����n7�����O"[^|
���}�c�	�ܙ$�
dˋϦu�0w��}�28��r��EPmmm���f��̴Y�
�^��:��-;a��Pyj�W���R���z���~��DT��7>�,�2d��$mծ��:�6P��n�{�p8�ʨ$G�|FFF�6���6��yŹ�FΆ��bVi(��
�>��/��O$��4�F�6p�\��<Ҹ�9��\�yyX_PP�My<�s���;f2^P�����(�x����:�?Wi��:��Ef?q��W��Ȗ�,D�C���	А�����U��R���2�3	�:�����G��Tư��V?�fr5�m@Do������rH�	{r�y$Y�)�m�� ���2�%�7�6PUe��##^�
��ק�P�lƘ��!�����zÀ@�j&�^������+�0�g��6��������v��ojj�������(�!@�-����'�|����1�XqEEZZZp��gCrΊx<���z
�`�577Ӂ��-���`���P�p8@DH&��F��z"�@ww7^|�EEb+x�G4��f�j�GY:$"$	��,p�l4��xNA�H�W! y*��*H&���Ͳь��H$�
I6'�
�́n&&&099�d2	���l���g6�m4�H��P�&�੧�z�����狀��hEE�ֵk�n&ї� �;��WUUm�Ñe�y
��y~��sh6�-DԨ��!��S\���Hyx-ř=���;�8c�΀@_/Ԕ��_�p8fE"��ٹ����n7�p�Bjjj"���C��聨/QlTzA�󅅅t�UW�j��1�T*�C�a���8q��h�����~�ݻ���D@4?���5�q������c�h��9@%e'W`�q���R���bA�e��H$ BV!5�7I��o2���d�% �{�*D�Q$	��ɔ�/�*.�@ @(�X,�<�u�\u.���D�h4�4�,`J�WUUm!��$��k׮�\QQ����.������SO=�vYΫ爤�FI?l"���7N�5�m3���K��`��WH/rހ�/f�����>G��a�:n��7M�\[[[���>U�T𵵵T]]M�8"����v�DD��H$��ݾS}���.���J�����;#��o$NDu���P,{;�J��bo���uɓT8����TUU��ݾ@����v�����=�����:��{������%�'�(E���!�
v�*�AD�nݺ-OQV�f͚Mk֬y%�)�[�n�"�K53]G�)껭��:�)�8/��B�ʇ6�N�֊3`��7_#�`��v���3����DD]&��00��c,UYY��̌���;w�\��%v��a``�5��AF��ºu�6m޼�6�U�V��攞�x�]�^�뮻���Ѣ���m�6�����޻w�Z5=�p=Y�虁���~��,X$��D��HELY���,Ksuu�p{{{��������^����Ϛ5k���kmm���W�B.<��#'�9�	��۷�dqq�˖-�NWV��l"�&�Yj�
�qJ���n�E���#���Z	A�3�+�l;W�\I+W�$��)k ��5cLq�V^^n�X,�X,(//O��ȇ�^x����}���^x�'2	h��-�Q?�B�����1vvvRggg�c��y��ħę�f��d2��i�C��ॗ^z�b��X,�^z�o�c4`�=�����#���ԕn����GgЗ�y�;}��������?F-�?]#*
a2��o6���K>:���3{�|5����@98m�N/�KQ����F�N���Gp����T�����4�Oy�S3�hU!o#F�����y�r���|]PPP$���12�X���g�k�|�|�0d>Fٗ��.3z�D$H\�;��#M�#!�iv����Q_O'd2%�%��yML�ccBIIIG�CWdB����,����t��,���<F-�?�Ǩ%�g��d�Lc�̟�cԒ�ƾ_�n~��v;Q�~�5��:MTj�܊DR�Ξ�Ii��K�'�%�>��|r��S[��'7ϔQ�FP�gU����*_����%��L�ԙ2ӵ����ZM�L�D$��9益N>�|rO���.�Om��6�Wz'e��>�
|i����/���,Y?S]���Lu��I��^�s�B~�<A㎙HO��� ��
]a�¡��"�䟮^Pw���B+�C����}}}���Cggg�DĊ��DM������f��L�\.���zb*/��/5o������	�Z8��f$}���t:�QFz8`�kk������q+d�η�;��Ӡ��I# �Jmmm@z����H# t�޽{�;��2�T���M���;*g��ㅦ���:����/����N/�e�\i:$���4������ _]�K _]��[3�NW(��NW($Y��d]��+��9^��`-_ i�I��
I�������9�})<�YHYk���gaΜ9ox�^�{ウKKK��(JJJ^���7ONN����T{{{EQ�F\ww�z��_4<<�z��W�	S�qc�Mc;�е|��"��q����K^�5�%T/q:��y{s�$��x�
��P(�+V��*�E�����˗SKKK@j����`iII	��`6���k�.��G}}�c�Hc-Dۀ��?��.0Gkkk��һᄏF����q� ��y��pII�Ҭ�R�BޚW#�y�hK[[�!�۝�;wnxlll��cOsV���l�팱A[����r7���j�8nrhh�!�؛�;���L&3�
.�+���nsii� D3�:5�겲2Oyy���~{+���������bŊ3�63``&X��">wᢢ��^ߦ��9'�����A���ieȜ�N+\PP��0�|>]4]a(--�pH�2���Ϥ�{�ߟ���Y[[KP]]m�xeeeJJJ�c�
�̙�]�y��;�q���QAA�5PTTtcww7Y��
�R��*H�$�ttt\�t:��B������_~�`��UVh,��(++#��?\�hQ�磻�I���1
~t/�x<<H���䛂�K�.�&�4	9�e�f2ze@�Y�`VӰS5�!�X������f�1nQQQpZ"z�����xaaan"��:":^PP�ODWLeA�'�U
Y/�{@���~T��� ��%]��,H��j�Z7twwSQQэPPPpM__q��Z'�UA��+,X��������_@(�/�ӹ����R����9�����#	`���E�%9��!0�;��e�Y�M�o��i�e�u�n��iC'����Q�@+�%O����v�<��8
|��
ę],pj����bŊ�D4$���w߽���#�K�N���f���+h```7��c�ea�߿���/���J��Lw_v�et��'b�ؿk݁�n���:|�5����P-**�Z���f�ݡS�{�D"����6���9s��qLLLa��*�K�����f��c��8�ґ�u:w���;e�d�`?��S�/��ѣG���a���z5zJKK/�F����{?P����O�2<<�r8p�N��~��n||�-z�16奉�ڞ|��m, ��p�G4���v����V�\���~�I�&"��ԩS�vww�γ�TJ�z<�d___�׿���D�37A��`����?���˿����
LIm��s0�L{c�<�;^�ukAA�>��?�7�L�w�y�Rx뭷�n�;-���0���K�s$��R#@D
9���'ʀ�?:�}�DҔq��ˊ���$	$��I@OO2���xQ`477��*�&e��B�������(qR�w�%v,X0U?��@Dc<�g9�=�(u��
�pXޢ�D��ZF=���)��#b���nEEdN���'�-KJKK�WI"�`ppp��Ӑ3��S���R�X���7�裏nV�I�V*�'�9�m6[���/900����Z]&��W]/��lᮮ.��C�
`���L�\��DܖsD	�IDATd���wvv&�,Y����,�5��t��7������@mm���p��iӦ�c�+�� �xtɒ%�S�N-����͛?f��O-��\�r�袋���+��6`��̆�Y0_{�gl���9�A�)˖�3irř�f�����D@D����l�y^�Yq�18�N̚5��� "J�CEEE^qd��`���k��F��͝;�4W����8-#���	:q�E�j��m6[^q�,�4��p8�|�9���dV#B\�6���R�gNK��Y{�5�L&��7㌂�n'Q�>b�3ۉ���6�_x F��4���9�^��']t��<>�裼	�1ƞ����;w.���3�h��˙da��C�ַ<^��D�T
��O>A,C(��Ç����2,]�t����t��VA�����n7���QUU���ڲ`0xU8~�A��B����:��Za6��F!Ž�'OzT���bǎ��Ph!��"�z"�~��W�R__�loo���F"�N�=":��[o�ljj�)�rd���h���СC��N�Q��I�4+]JD����?ߌ��l���}�ժy�2]w��o�% e*&�gr�_����x<	QG�$��)D]��i;�---����^�V��9��ћ�Y
`%��{�V+�����b��ĉx
�8�=�
�]g�uVKAA�v;�~��#,FGG���O@���O�f�����E���v+�h4����0A@KKWQQ1��_VT[CAA���{�Ň~8���ٳ'�fs��� �z��ѣ�C�1��w����ǎ��c�����@
�dSS


R����ڵ�
�{����u��|��D.%"�}���$��y�СC���g��K��o�@D��OV�u+�O�<[��D��6`���^0�0�)�~�zz��H���=���3摌y$��e��2����{�DS~�	P������/�)*�6��=�l�@�G�K�V`z{�8����h��e7Iij{��-���=���K?��f��=�R����룥K�Nk��#�֟".��l���n�Ly�#���KD����hgg']p�y�#�>>>ޯ�G�����k��#����O�>�%%%�����3�G�����ꫯ�H�{����8Y���@D`�i��R)��h4�o����q<l6�x���d��bQɄy���Ąb�c6�L�x<8��s�����V���zK��fƘl���R8

��p��"%�ILLL`hhH!f&"œi0T�N|>�.;v�H'��<N�8��A��<FGGa�Z�R6�O�@nYYt�,��
sۢjq ��������(P��cL�)�	۶mS�d.�<ϣ��2�޹s'��ϋ�Iy
��D:;;5��̂  �`׮]0�͈D"������qU�1f�5�A��f���+
�ƘE�D��@���\փ�5�j��NB��PLuq����_��ب(�x<�|�6�M��18po��Ư�uuu����#�L*R9��w^���������lϚL&��Ѐ������]SSc
�È�b�y�P�@`�ʕ+�x�1�#
)�HUUUv�@<G"�� ��㘜���_��1�K�ؿ��?�î��	%_<Wd��T�������ꫯ~��O{{������x\�'�
�R7��{c/C�3����=˗/�399�p*Q���H&�H$�=��[��uV��&����O�:5���80��w8�<%�q��]��g�n8��f��s �:b�֭[��16�����t���l�1v%cl��!MNM�J����G�w�֊��u>���1���644�


�f�*AZ�.���h<�LZ+**N2�jL&�����"َ����*�c���.�lddd�H$��ʍ��[-K_<��8<�����2�L���$�n7�N'R��k��_08r��/����FGG�l6e�(�,�1�O��|���ڶm���w3���D�];i9ZR�(=M�xm1`ૅm��Z.���馛h��A�Ζs-�P]]
��1o�<�+gB����zM$Aaa�A`��4���X������=���k��S===7�OO��p�o��>������c����5��E�����-�all���>�E$�I$�;w�5�hL-7x<�>}z�������;��������g�u��U�̙�4E~���ӧOc���{n��f����ֶ��@\2��V��o�������}��bu��ի����6���htC"��h4z83��~�F)�J�3�<ӡ�����o'�ә5��x�� 5���DAA�2`��L��m����IEND�B`�admin/ckeditor/skins/moono/dialog_ie.css0000644000352000025440000004071512450564214021035 0ustar  thediannthediann/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;-moz-border-radius:0 0 2px 2px;-webkit-border-radius:0 0 2px 2px;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;-moz-border-radius:3px 3px 0 0;-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fafafa),to(#ededed));background-image:-moz-linear-gradient(top,#fafafa,#ededed);background-image:-webkit-linear-gradient(top,#fafafa,#ededed);background-image:-o-linear-gradient(top,#fafafa,#ededed);background-image:-ms-linear-gradient(top,#fafafa,#ededed);background-image:linear-gradient(top,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover{background:#ebebeb;background:-moz-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ebebeb),color-stop(100%,#dfdfdf));background:-webkit-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-o-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-ms-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover{background:#ededed;background:-moz-linear-gradient(top,#ededed 0,#fff 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ededed),color-stop(100%,#fff));background:-webkit-linear-gradient(top,#ededed 0,#fff 100%);background:-o-linear-gradient(top,#ededed 0,#fff 100%);background:-ms-linear-gradient(top,#ededed 0,#fff 100%);background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:5px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;-moz-box-shadow:0 0 6px rgba(0,0,0,.4) inset;-webkit-box-shadow:0 0 6px rgba(0,0,0,.4) inset;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:-webkit-gradient(linear,0 0,0 100%,from(#9ad717),to(#69b10b));background-image:-webkit-linear-gradient(top,#9ad717,#69b10b);background-image:-o-linear-gradient(top,#9ad717,#69b10b);background-image:linear-gradient(to bottom,#9ad717,#69b10b);background-image:-moz-linear-gradient(top,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#88be14),color-stop(100%,#5d9c0a));background:-webkit-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:-o-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);background:-moz-linear-gradient(top,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0}admin/ckeditor/skins/moono/readme.md0000644000352000025440000000474112450564214020165 0ustar  thediannthediann"Moono" Skin
====================

This skin has been chosen for the **default skin** of CKEditor 4.x, elected from the CKEditor
[skin contest](http://ckeditor.com/blog/new_ckeditor_4_skin) and further shaped by
the CKEditor team. "Moono" is maintained by the core developers.

For more information about skins, please check the [CKEditor Skin SDK](http://docs.cksource.com/CKEditor_4.x/Skin_SDK)
documentation.

Features
-------------------
"Moono" is a monochromatic skin, which offers a modern look coupled with gradients and transparency.
It comes with the following features:

- Chameleon feature with brightness,
- high-contrast compatibility,
- graphics source provided in SVG.

Directory Structure
-------------------

CSS parts:
- **editor.css**: the main CSS file. It's simply loading several other files, for easier maintenance,
- **mainui.css**: the file contains styles of entire editor outline structures,
- **toolbar.css**: the file contains styles of the editor toolbar space (top),
- **richcombo.css**: the file contains styles of the rich combo ui elements on toolbar,
- **panel.css**: the file contains styles of the rich combo drop-down, it's not loaded
until the first panel open up,
- **elementspath.css**: the file contains styles of the editor elements path bar (bottom),
- **menu.css**: the file contains styles of all editor menus including context menu and button drop-down,
it's not loaded until the first menu open up,
- **dialog.css**: the CSS files for the dialog UI, it's not loaded until the first dialog open,
- **reset.css**: the file defines the basis of style resets among all editor UI spaces,
- **preset.css**: the file defines the default styles of some UI elements reflecting the skin preference,
- **editor_XYZ.css** and **dialog_XYZ.css**: browser specific CSS hacks.

Other parts:
- **skin.js**: the only JavaScript part of the skin that registers the skin, its browser specific files and its icons and defines the Chameleon feature,
- **icons/**: contains all skin defined icons,
- **images/**: contains a fill general used images,
- **dev/**: contains SVG source of the skin icons.

License
-------

Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.

Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html).

See LICENSE.md for more information.
admin/ckeditor/skins/moono/dialog_ie8.css0000644000352000025440000004117112450564214021122 0ustar  thediannthediann/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;-moz-border-radius:0 0 2px 2px;-webkit-border-radius:0 0 2px 2px;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;-moz-border-radius:3px 3px 0 0;-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fafafa),to(#ededed));background-image:-moz-linear-gradient(top,#fafafa,#ededed);background-image:-webkit-linear-gradient(top,#fafafa,#ededed);background-image:-o-linear-gradient(top,#fafafa,#ededed);background-image:-ms-linear-gradient(top,#fafafa,#ededed);background-image:linear-gradient(top,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover{background:#ebebeb;background:-moz-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ebebeb),color-stop(100%,#dfdfdf));background:-webkit-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-o-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-ms-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover{background:#ededed;background:-moz-linear-gradient(top,#ededed 0,#fff 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ededed),color-stop(100%,#fff));background:-webkit-linear-gradient(top,#ededed 0,#fff 100%);background:-o-linear-gradient(top,#ededed 0,#fff 100%);background:-ms-linear-gradient(top,#ededed 0,#fff 100%);background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:5px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;-moz-box-shadow:0 0 6px rgba(0,0,0,.4) inset;-webkit-box-shadow:0 0 6px rgba(0,0,0,.4) inset;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:-webkit-gradient(linear,0 0,0 100%,from(#9ad717),to(#69b10b));background-image:-webkit-linear-gradient(top,#9ad717,#69b10b);background-image:-o-linear-gradient(top,#9ad717,#69b10b);background-image:linear-gradient(to bottom,#9ad717,#69b10b);background-image:-moz-linear-gradient(top,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#88be14),color-stop(100%,#5d9c0a));background:-webkit-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:-o-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);background:-moz-linear-gradient(top,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{display:block}admin/ckeditor/skins/moono/dialog_ie7.css0000644000352000025440000004177212450564214021130 0ustar  thediannthediann/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;-moz-border-radius:0 0 2px 2px;-webkit-border-radius:0 0 2px 2px;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;-moz-border-radius:3px 3px 0 0;-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fafafa),to(#ededed));background-image:-moz-linear-gradient(top,#fafafa,#ededed);background-image:-webkit-linear-gradient(top,#fafafa,#ededed);background-image:-o-linear-gradient(top,#fafafa,#ededed);background-image:-ms-linear-gradient(top,#fafafa,#ededed);background-image:linear-gradient(top,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover{background:#ebebeb;background:-moz-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ebebeb),color-stop(100%,#dfdfdf));background:-webkit-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-o-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:-ms-linear-gradient(top,#ebebeb 0,#dfdfdf 100%);background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover{background:#ededed;background:-moz-linear-gradient(top,#ededed 0,#fff 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#ededed),color-stop(100%,#fff));background:-webkit-linear-gradient(top,#ededed 0,#fff 100%);background:-o-linear-gradient(top,#ededed 0,#fff 100%);background:-ms-linear-gradient(top,#ededed 0,#fff 100%);background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:5px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;-moz-box-shadow:0 0 6px rgba(0,0,0,.4) inset;-webkit-box-shadow:0 0 6px rgba(0,0,0,.4) inset;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:-webkit-gradient(linear,0 0,0 100%,from(#9ad717),to(#69b10b));background-image:-webkit-linear-gradient(top,#9ad717,#69b10b);background-image:-o-linear-gradient(top,#9ad717,#69b10b);background-image:linear-gradient(to bottom,#9ad717,#69b10b);background-image:-moz-linear-gradient(top,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#88be14),color-stop(100%,#5d9c0a));background:-webkit-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:-o-linear-gradient(top,#88be14 0,#5d9c0a 100%);background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);background:-moz-linear-gradient(top,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15) inset;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0}.cke_dialog_title{zoom:1}.cke_dialog_footer{border-top:1px solid #bfbfbf}.cke_dialog_footer_buttons{position:static}.cke_dialog_footer_buttons a.cke_dialog_ui_button{vertical-align:top}.cke_dialog .cke_resizer_ltr{padding-left:4px}.cke_dialog .cke_resizer_rtl{padding-right:4px}.cke_dialog_ui_input_text,.cke_dialog_ui_input_password,.cke_dialog_ui_input_textarea,.cke_dialog_ui_input_select{padding:0!important}.cke_dialog_ui_checkbox_input,.cke_dialog_ui_ratio_input,.cke_btn_reset,.cke_btn_locked,.cke_btn_unlocked{border:1px solid transparent!important}admin/ckeditor/skins/moono/icons_hidpi.png0000644000352000025440000010437612450564214021411 0ustar  thediannthediann�PNG


IHDR pL<d IDATx��y|ř��sߣ��˒,ɲl�m������6W�@8���&��l�MvI��%���.H�%ǒ
!@����|�-ɺ�c�>���s�\:L6��ϧ?����~SU]�<UO*�3$�s��I���F�6�s�2��?�2L̗� ����^�q�a�046_�����@)@)���"
Y�nw����z�����g<	�t�@|8A@)�<�C�Q��5?��bhu:̟;׾����lپ}����l8�e!H���R
�N�������N���FTTT���?�)�/�J/��Y�E__�wӦM`����|��S��O�TZUUUn6��q�&,]��-�U$鬌җ���N)� ���Q�f͚�;w��v��8�<6Ɣɓ�1Y�	�� ('~�C!tJ��"x}�!���<��0|^/XG%��@)��d!d!!���lYm4�r�`0���^�����]`V�E��e����ÀeY���{W-Z�%�;�NH� ��a��|[�s%�6��P�`�|0�p(�ǃ���>\�����c��zcCS�c��E����l�9�"�l6o=|��oB�F.@�σJ� !���B�y�>_��@(��T�g�����X�E0˲b&Zm̡a�<{v�x��a�J��&��gL���N���q�t�R���[QQ�YSS���x�Ξ=�P��j�(,,DSSt���
>q
�HM�q����w�y��S�˗/�`hhhINN(���<!���ȁ@�O��e(�+P
�����[~��q��%����,ˊ�!ˢ��*@ۈk@�y �N(h4 ��RA�7��h4�<��r�����d_�Č���IN%a_�t�R)�������Y�4�5._!0�)�%��6r��7����l�yI�Xu`0p�8'x�
�����r��@p<�χ����u�\3B�F@,F�5������&�	\.��yp�@ �����/��PA��̚1À��JC���G__�p�m[���%�����'>�K#" ��� %?�
������}|-Y�	8z��t*�a@�ӹ
�wڴi��|Rl�Xꤿ?L�ɈPJ�H}�����r���_��?�H>�������_B�g������������ʈ�:����Re�ћQ<�	���������$D�9	<�`8�_��W{��F C�@�h�Μ�&�,� x�$3x|8�p ��ߏ��~�qӦ�T�e_��1��v
X,�z�}��cpp^�ݽ��UK���=YJ�G�������l6��ߏa���6n�9�	!��4�lK������~��.�������o��ܜ*����`���M��U�}�����yg�7� �Nx��ٳ��ڈ5�bw�}�d2s*����.
���s��+%` �=˲����w!Z��_���h!�q������x����;�ĈFB�t��UUsx�� 9��{zN��6�����,)*2C���P�����;@�V��q>���v�@�v�	�L��X�ڟeY��~|��;!�Zc"�����'�h��y\8�N� �	h,*(���P(�����A��T������cݍ7B�\�ca�0�q�����I�#PWS�F��Ttdv���S� =��L���\^r�k4�|B��9e+ �9$�/]j�k����C"��a�3.��C!|�c��l���	K�P~�>��^��@^��@�`���k�������p���L���8x<�R�cB�w��J��9kǺ�iYN)�Y7�����������Jv�b�E��NW(P���~��y��h��)f�g+�0�wˋ��a�X`��a4fY��AC!��~����.p`Yřt��?�ӧ?6k�X�f�F~C�=B�h4�0���pXx�g?�A��H&v�y
--�.lkc8�e�~dƜ|��a��j�����F�A b��8ao�����o�1C�`��
�Ʉ��*�~�T�TW���gϞEgg's��q@��0p�R���
��h�L*'Y��f̜)|��GbLr��ϗ�+�믿��3�0�87)�k�
7\rZ������a����ܜ�O!��� ��)�8ѽ�2�Ry�R%�Հ]�р�8q#!0���w�g���,��UYq�qJ�eJ	�4800 ���y�Rl���Z?�h�Oȃ&��JYEq�*#ePJ�o���v��
���F#�#e�ܹs��\���g��O!>�lO��3�ݾ�֯7�`0��s0�F#�YV�t	����Ş�����g�0�:k�ҏ7m�4��gL�ڒ�CC4
�,+ttv����8��!�;O��JI�;�D}f�Ye�Xt�Rm���0X�|~?���^�\$�
�O#�zJ�N'h�ZF�CB@z�F�f�&�	:�Z�6z�1
��a���~?XA�g{/�PJs�س$�X�>���/cǎ����n��`��T(b\.���]���T�ā$��b�z�)淿�-�r����@)E8�����[�D��?BnU�
�Y�
�
�9s�N�3R,ǡ��Oػk��r�L��?P��B�!�MBȗ .�z�nʔ�Z١QR^�t\H+@���w��t�+%;��'��=r��Z�k�K���ixN ��pRe%S����=}���K�ݽNH�q��c��:'L���ˋX�C����QZ^> ��H�N@uS-�χ�`�@�
��@ �`(�����`�Z��a�XP����������ɶmoB�Q
��0Y,��t�V�el6 ]����C��2?�ǃ��ّ#��"i<���_}�ٳk4
�f3�z���J�a��Y� W��3�7���'L8�d�gr/`�8po����с��^���/^��jEYY


���b�w��BYi) >��'�LWN*�PJ_���QJ����&�Rόk J��ܑE&B|!)��y�s;�WG�GTQQQQQQQQQQQ��"y��ѝ��y�@��@�'�����h|�hɶ��wC��kִ�88u�4>ڶm;��U��.�ɴiQ[[see%.vw��7��`u6�mDL���uF��PU��X�j�<�ɴ� �Kk6oZw�u�奥�Z,ȝ8�Y�`���������!��f��ګ�n5Z��8��6ۦ�+V4��F��~x�^����O�
P2T�Lmh8_����p8`0�����x���{�a�.Y�l2#N���Ax��]��ڕO�4ZOx����`AAA���^��N��W���1�H+jv�۷o&�G	!�8ZFoXT__������p@��F쿲rxxn�{מ={f��[�]_��n	���#G�4�<��e��J��3�aT�+
��Ǯ�.+��"I���ٳf�i�IH"̄�����Z�F�� ��i��RBȈG�dF*��`ش����l6Gڜ����&���;�
,�
�f*PI�Kk6����v�B�J�����:�>ޱc+�B��
���Ѷ�s�MC�R�t����?ݹsg�;���� 
�eYجV̞9�
�����|����xS-STYy�N�E0�\�@�ӓ'O6Ct61�O�^TVV������wd0�X�_�^�<�Z�[X�XQ�0�X����8��y���SQ��w���,�2�n7A�u���ޅ�a�q�…E���{�@��fC��@!�ȉR*(�pŤI��bI��E�Q��l��O4M�W��%���J��R��R��_�P��]�TS���t[�9�+M�.���&MJ�R���K�d��?Oͦ�S�@m]�*/O)`��uJ�YJ鷕
����v�8]-��8a_?m_VVƻ\.��p�������h�|ި�f�(�4��sΟ;�l�%��Vۥ�
)����b��xNq-����w�&�
��v����PR<��y<�U�e��?D�(�7n}Q����������y1"���a0`��� �;�00�Ͱ�l�{��5Gv�_4d��ؿ|�J����,��$���b�^L!��a2��s�M��j��K3ҝ[��pMcM
��>_�����	7˦�S0&�yW_�_�p!���P>/���֯Y�,yL��mۦe�1��o��DŽ�y0ɣqE���c†�Ћs���|^�dcZS_����4�d6�����|g�2.~��h�mZ�|y��lF0D ��� �&��q����5�V=����B�@:�

���{���1�ng�& �,����������<��t:��<L&^uU�u�Kj��$�פ�d5�zLT�	�zL��c2"1�χ��>x��O�?.{L6�>}����oo?�~?�� �`�~1[c�1A��dČ��dČ��d���c������������?�L&29�s#y�
3�=�/��x�@do�Xx���;\.��r���$�u���;rrxGNo��y��	Ik-_�(q�`��V��˿$=�l��|�u�k7! ���I�O+��ë�!��@��$�\Q& M�&R�"�N��d	��`R[�e�h��
H��� ������v���i�O+ �ٲd�d���y� �H5����Lv����7�/��~��Y�f��R�c��$M�ے�WҜ?�M�\u��@�T�T�:��]A	!@꩝����?�N(_�b�\�H@t���>'bsi�@Z�e �&��[���&@��8�m�9����GAUU�;aZTzc�A�R{����@$6������ȃ�P�_�G��n���'+�����H8����7��դ!�
�j4�~���%��w'I��ܜ���n0D��Q�Y82z�}��K�9
� �:y�<�պ��0
�2�DeMͿ3�U��,�^//]z@�m�3	�
��s�F��S���cxx.\����h���@�ĉ�۱��Ź����ۇ!����d����>�dMUyyoeEE��n���a1�1���pdG���Eoo/w��B�ݾ3��^��v��#T�ȡ!u:]D'�� -|;q��i��p��*:_����p�m{_}���C��s��Y�^��d2�KJJ�


\[[���o�)%}�򟙔����d���C3���`��t�f�TC���
���cU�a���hR����Hy8&L�&jw(*����N���
3S�c��&~���\_������������?�wC=��������Лa�F����)�xq[J�h�w����EE�����!��bێ�B0�o�)�Z�fΘQ[XX�	.��Ӄ]{��C8|���	�V�k�Mk�Vج����h�Z�9o��N��ܹY%)<�6a��>�n��cYѲ&���[o
��N��6����׬�0��B�K ��W�ԃ�gS���oZ�>�d0 �#
E�@ �^�֮u�9AD@Ym�2�^�P0y&5��աP���ի[��PY�ظ���CC]}�"����qmuuu�eAes{���0/�P��m���UU��p8bU�G�����Ѱq>R��Y��qP�O��y\8���{4C�`�|8/��<¡|^/rJK�b�`ߎ/�aPA`���3`Yn�
���p���y��R�p]]]ށ�c��:x�諾`�`�	�Ñv�ttt�RJ��l�Ν�()/�z����
9�ɶľ��~9}L5���[�ϙ�K�ߏ���v3�p���_=vl�
ͯ,�=�o�v��z�}}�x�"3<<̄��H�`(����H��"�ҿ���6o�B���Z�~�z��n�W�X���R�l�ٶߡb�l�����X��_�~=�f�~�ܹ��M�ޒ�'[_�/��Ͳ�p8�����0�2�B~��w�x�D�t��\�lـ�>�����z�F�x����ž}��*+-}�[I�/*=!��~�Q�V�˲�}����>��j�̖�
�a
�p���nJ�n����N��5���N*�x<����η���>����[�v;¡B�8����$=&������AGG��
z��$}U͔)��+V�f��sss�U����9����ŋ���Z��^|���R�,��.Z�746�N�����T�r�0�������'�?|��l�gjC_V^>����R꣔�dj��x������4i��s,��"�4a�T�~���[m�=��O$��,~9�;���׭�ҿC)��$����T��JJ6�ܯxv�����t	����Td��s�^�6?O����1���lҫ����������$���כL�1L�I��PB�~ ���JD�
��q\&�^/���B�z=lv;v����g��a�""<^/�t	�v�D���߈At��GN=:*,�!��F������0*1��D�!đ.����I�Ro���>r�ر����(!��(���$����y����'��v�n��}�����~��
=���J@�œ
B����"<��;�����QRR�����@�J)Μ<���9��Ų%s�" ^=i���J����r�!�J�F}��ȸ	�-_��>�~��<<j�9��C�;8z�DFWE��p���⓭[���k���?�q�t�=�R�ei������/~���/�<�q�LR��t�WT�ȓ�Hy�=�<)P�_���G:ϝS��eH���1�/ͯ�{����F����	".D�$Қ�L��/�{/��>L��`&<^��e�+�8����w�q1y�䄑2�CZ��T�� ljKƒ	���…�vL��Aum-*���(��ɯ0��At:�&��a)�?�E��ިDHA��
@��[�WW��Ȩ�L@��fyd�>�#�S�K����v�t�?w?B�QvBy����i��¨�)^�7DzЛ�@��
z��0�&|�y���a6�fU8��a�cg����z�\`��l�f�ī��������	��@����_��T��/P���@����_��?w��@����L(�RG�OG�MC�d����]�l�H��2c�[�n��V��	N�~�̙u��ո�曧��L�ĠѼx��7O+��GӼy-�N�� �>�f3�_�j%�Dz(��׮^��b���C��%�H+�������PTX�Ys��l#x�����"�#(:�"7�����|�,¡f47�|Ҥ��I�������g�@8B�ePVV��n�V����O]===�]�
��|�R�=7�u��d�)��\o\{�5FV
�Š��
�?�|�M���n�;��8�[�:_o�����zb0��n��b^�A���x���#��߼�buwww0FB�hkW�n֚L/F�����+�h��H,�p8���Alx��\�g-�����w޹pp0[�
�a�X�|�ҵZ��Qh4�\�d�]99`�sX��ð�l*p�N)�#�4dt1�.�6��:���G�A Z�Ogd�����BGǩC�}V`!!$a��l^ϗx�~�ԡҒ��n�V��F�^D�vn���|8���=z��_B�3J�f<�B���6wtt�|�Har� 9tP @ggg�6�lHVxV$��>8x�788��8.�'��nw���_>3����+��I��;��-*.>%�yJ��IJ'�N�R����BȐ�n�ĉ-�d��!%R�Fy5�(�y�cYTPX��͍���(B���0�N'�i���� �&��
�p��oZ��faDL�� IDATY^����BMM����,a���t(.*�;��=4�@{������V,]���<�q�̙����;��~&�?��ܹs��9.�>ںu`���Z$�L��g�,��f�j������ɴ����.�3�����vvv�Z��^�<�b��ٮ����D���	`A�5PL�=MӦ�;l�H�<�4����r����&�lJi+��[[[�N��.�
:��`���p_�}�3]
��t��|���1�l}�g?��:k����],����n�s͚5�����@!��b�(�[���]�

���gM�����'T��zgCK�p�"��>�Qt���ijj�Z���M���S�N��͛�/Y�4&��wΘ9�_r��<� �Ik�.��@8¿<��bdū|� ?�4�2�2MJi������O��i����}>�W�'
I|��?��_!X�z�!䫄�?B����;���@��||�ﺫkxx�`�UW��N�|ժ�L&�����I�R:�bҤO�����bǺ���Fㅙ�f�%ee��}}?UH����x_SS_1iR��Vx�h�tΜ5�/*-v��X)�gMf���S��uu|^A?�����������{�m��o+�ͧ��5[,}


|���|n^_QU�746����=��G���
�2z�R�3���c���SPP��\����<���O�PJ���$i?��v655ms8}|nn���p8q��n)�VE:���ΨN|I�S%�W)ҖR1��RZ�RzW�£2rRJ���~]�w9�+I�֌
WQQQQQQQQ�B����_��T��/����˨��_��T��/P���@���������e1����Xl����`a����=���U��%K��--`�֝
�⓽{����z�N�bR�q���x?����|���9|>3�����*���|.Hy)nΦT��j��nmͧ�`�֭:B�P���_��

������0>޵'���PJ��mm,�;w���Mc�V��'n�������w�}7 ������|>�~��������f����|s�}��p}]��M7ޘ�5P2y��iUU����*lfsd���7tLJB����S�0�a���ٿ�+�����oġ3g�;�/RN,1���Ι?�RqS�ȋ͒�t���Ms�ϧ����.'4��d��{��BND����p9�N�1����DR�R
�ɔ�>S���`�{ܛXg�!�l�?!�(�(2���
��>��𣌶����:!�Kb
��$Y���	i��'m7�N�)������H
���ti��jE ����"�!��d0 ��n��'�U��ף�������7Fbg�U+V�UMM�g���t�F,V+�=���
�x`�^vAg]
3�I�..}�W� 1�]�Ԅ	v;tI�ڱ<�Kn7:�*�r4�d�uBS��Mgҳ��?�&H��tħϺ��ħϾ!fLwM��\��$�����vc���G���	%C������$x���(k���n8��Lq�8����,�S4(��(~��"?��j�٭�����O���)��c��TR�\�Z�&�f(ā�x)��qɟ)�_�9y�:���g��_P<y2_\]=�P���|��ɑ�J���cG�`�ܹC.�} '/����;rևN��5࢔�'{��:�{�jj(������Z�sO$�x��Ji��qU��ك�}���xZ1\`�_��q�JK�w�E�I�S��l�����G$s�^d6�I�_���UQQQQQQ�D����_���/P�������_��T��/P���@���������,���X���h+�B(��,8q3ߘ����ڮ�yR|��)^z?�8����c��_
�}`��L�ZW���fS|�)�;�ǃ]6�=�~}`�ʕ�`�A�0��㳁Rp��Kv�}@%��^6�}D�GD]W�\��z�n�F�x(�0ˢs`KWCD@o/�,��ycM���?8�|��Z,|��(^��'�O# �v%����sU2���n�>]i�>��T��}OH���u�ފ���5�1}*�<.�/�46y�������������c%[��/�a0���  ��WL�̞�UGz�ff�	f�
á��o#��"80�?m�8�f�e˗�8[/V��`E�ڸ�cf�F~-/�85KFG���K:T�����
��5R~�z����|�ԉ������*Ϩx|T�"V���
��,�ZM�81Z��Y{��z�����̖e9.���)#��%���}��c&>�绺�048���Atuu�H�М-r�����w*�]}���9x��eW_����|�b��.�hjk�����R�xW�����J�/'i�8��*��t�w�ȵ��\YYYz`׮� HOVND����A��~�A�2��byi�ҥ�z����q�̙#��'q�/�i�Q�袶�%Z�c���z{n�k���J�)'f$L���N/CZy��������q:�B!p,��������!$fHzDQ_ZU�t�…7jL��nT8�"���ũuu�X6f?�F��̄��C�Ԑ�q q��d��<k�tsQ~>�[�"������0m��浶:Y�����Ç�lƌ��/xȬ�+O�ʳ�n�;���0ǁ��3P^Zz����������of��c�\奥p
=�%"@�yhcoFwN�>�N���0˂J��Cބ	X�hQ�c�^��Ɂ�h+U}2A@MM
�J5� ���(�/,+{���<�G��4ҋ	!�RWJ)X�M�DL�	!�j�,�M\�h���}yzC��㸘O�%��c*�(�^���n�����%�/�{s6"Jc�yDx=�����rB�P�6)!�C �|���
�a6C'��"��k8A�;B!�s�����������2fl�d|�\�:o�;i�ّ���IiI	�
�M]�p;�o�6"�X�DT���#�>�p�>��b�y1���Q	�o�H�m��c�:�6 ��шo�I^�/�X�A�M�D�q5@9���q�2ʰ�x"Q�ن�m��:�o,K�n��^��6*���'�N*@�斖�*��{y�X�|7R�
�����>�i��
���TF=��0�f0���1
����%�!�I���
6�'k֬��V[�Gb����AT$��z��ѣ�ϜB4O��P0�χ�9s"�^p���H���ꑏ�U@)������?��9�`0T�=sF)�*����1��BA^ޜ��N���ۚ$�ĿHuo��a]k+�w;��.��^���R���J�q������B�fJi���`3��8�p�!��5��Q�cv/@��/��d���
�{��I>'���1�h�8��J������ٕ1�Jc")�hgƸ<D�8n�gç$���׺\��c����o����q?nH�
�n-���X�'�� ���2���
#f��6�һ@��"`BN6�h��y�x
������1�5}�Q�+�3�7��ҼMjh���>�|�nh�����v�yD��`4�
��H)�Rz�3����p�RJ�t?(�S�
i�} >��HI�8�ݟ&�	v@/����q����EaBk���M��q����q�ĉ�2�8�_�1BB��چR��H�Ǔ�L(+k����!���aƤDx
�l]U�5뮻�8���ߡվyW��NH�A�� �q�.�ĵa�V�	�(*,DWo/���x��N��LQ�RB@��O���:s1(�A(4��by���p��}�{��mܸ��-���p�N��8���;x�`1��e���!=R�����N�l�'�B�/�řh�s�5�!1K��O���&j| R��|�xQ1�!w(}��q ��dח���y@v�K��8��1'�� f&��q�%?AnA���Xω�.2��^/��.!��t�� |��,Ǎ�3�ȟ�~������?Ȉ���˻϶��"�6}Š�.��g4���T�V�����������X��/P���>������D�S]_�b}A<��Z(��9^��ki�"f7��dF�� �*�'�jk�f͚Z��	���c���\$�U�Ʉ�K���h��Ѐ��#��f^q��@��Oee���칃�{]�VN?�9�T2ꄞ@`{ww3��L�&�q �&�&�;����{+��f�`r{2�ßϽ�u}�Q���TTTTTTTTT�Ws@��Vz�I����zӅ�����d��\Dz���*�G:?+Lj�C�H�I�f$�wm�"�� ���h���o��~{|�oHn#�@��3gt����,�ɭj���I��P��8)��hI5��ϱ�	)���AiFr��������0�:�B&�lP�J�R�����F�h��u--U�
��y��5��n_{͒%0�8�w��0iKJi���T}@�W��OL�hn#�'�(űC�"�*�ӭ/�Tk�D�	?~��7�}�+�&���ɓJymO�'�8 �[�����#|�ԩ�$	#I���d}A��fJ��Lf�TW��Z[�� ս �sCL �짔΀�+5
�@&���$^��%$v±2f�~�TC�|�/P�/`LƁlP�

DC���q���3�T>���J7#�y q�ј?��"C���`��M����{���`x����2ժk@]_���������<ux$Th��4�|�M(,xO'��i
�p�{-NgUEy9J��1a�\�t	]/����B0x+�vx��7��m�df.Z���'����;	�`�{�����F�z�l6q�Vi�:�h�Z����s���#Xv�
<��ה���>�b��]�p�ĉ 
�wA4L��^�R9q�����&M� �a�G-��$B����6�::4�h�j��護b�;�	�B -X���{z��V���|B�s~d��doɼ�}���Vl��|}v���fYJ�0&��Dv��1[
�{=����GM��7�%
�8���'�m��<cU��N���Fj��H�#���
P�K8"�f�8�R�!��J@\
�섙v�q G��y~T�������c��� �]i/�q�Y]iF�tE��1ƬtW�q�8��L�
��<RsRPA��h����j! ֘��r��׋��
!b�Ď������,�`0�ǃ���.��xj���Bkk���w��=�2���&�U=Ӹ
�~�o�x�o��uKKs-4M�&xi\��|:�΃�<�uƌ���y]81��A�X,�]'Oj�n�,�8�{���X2՟���9�q\��ba�Z-x�G B�Щ{キ���~3č2�����q����E��{�O��
jg���ħ�j�˖�H)�f�z�?��s�=�g���)���2J�SJ�(f$��B)=��4}:?i���EJ�Kʜ����=�ҿ��&XN��e���(�jj⫚�"Ru�R3�:���7~�B�T66�p��A�'�h!~{�cLH;�7�����h���k ~�+. 
]�"��hxh4���C�����********�X����
�}؊Q��Tcϗ���/�O�\Z\T�	tvu����

����#3?ï ��No��m{n�_�5�L�9.wB�0`4x<:r���>�$1[���X���s�~�y���)Ǩr��>vӪU`���1D��F��bVKfϚ�=}���N���l{{���{�h�^�:���8���>_$ECe��٭��B1q��Ұ,�aP^V���JPJ�=��s8��0(,(�c^N���5²�8D�lQ���i�p��8W8� ��GV��h����/`OE��
��Ićt� �Y���"�r��V-h<M�����`,�B�g)k �2o�A��p��_W��_�K����m�x/��@�)/�xiDdYV�&��h4`#�;R�8��j (���e�x�z9��jʔ)�^{�v׮]�m۶1�`���r�l6�F�t:0R�rY�\��^�eko��ppp�|��>�,<��l��|E�oxϞ=G|�AoWWWcNN��b�@��ETr�|>�wt�詧��v����x��I�>�x�TD�ħ�q@1�s �����/��B��`�6�L�F��q�|�V��z���rU$Y;���%��IJi�b�%�y?e�ܾ}���{n����?��z��{(�7&�+��O)}�RjM� V�S�%�I�k�oJ�+:MB5���G�$�b�pL2�Ǡx��ccK���^�M�'�+.�s��x{��������/PQQQQQQQQQQ���.o�D��u�?�8�S��.���M4��h^�<y򢼼<�Fh5�������>���j�N}�a�T����ɫ��<�� ���p�����; μMDc2�����%K:�}���)��4	�ׯ秷���[Z��������=�쳯/Y���իy���~��k�ʕ/����?���ZQ�ĪU���<1�O__�~��t/^l5��7l��/��S�~�^���5k6�>���Hٛ,v�V������V�E�8�{�~��`]�f�f�^��j ��������[����F��٭N���p8a~����`���lƮ�;wQJ���ܶ��3]]ݽg�����9�o�>���������K�ӧO�IѾ)9}��%K�����$�����:�D�ht:4��}38\.�G{,#̲p�"�����('h��C�^����` p��yL�2�9�>��)S�4�<�` pDn�ݎp(�Gj@o0�c&↹�������S�TTT�G�5
,\.,���a``>�/><�ϝ;���a!���E�@o0�K��=��ƖY�x���	 �R�3U�666�˖-�-[�766�(�t'�|����2k������i�o=�`���w�IJ�B�֭_�.��	J%�� �n7�n7��`��`��׾�ee�}������	(��PJ=%�������Ɨ+++�z�z����Ҟ_^^Η����E���)��O�~zwUU�n����t:����p�F����[>��[n��h4����?�d2uVUU���O廉��}��%Œ�L��td����T��oQJ/�*<�T".Jy)W����������������J����/�j_�\[�ȕ��ɔ�_p���:z�P=e�#������q��+V��-^��sϥ�\�v-�<}:�<}:�ڵ)��=���/�\�rej�5�^�B���ݲeKZ�ʕ+c�6lH�/X�`��d���;
��n�V�źu�6#�0�x<�x<��>��`ݺu��
��%��**:���wl��̚5���tF��3�i�� z�=�0��CCؽ{w�_�:wn�ً����c��[Z�i��Ayu5�hɒQ�-^̗M��TTW���#�H�
�z@�����1�؜��-�����ov�#�D��`�7'''_�F���HH��)SR�#7���,�`č���Ϙ�����@颔�	Z�}�AQ}�a��O�l���{���:�<m��j�&�	f��pػ߾�#�T@�.WqI�&�F�\RZ�}��mm�l�{(�Z�&̮��_���8s��>J��ÇW8�[X�����R�/��<�����M)�3�)�o�M���Q�Y߹vݺ(da��HE�/�ok�o��f>��
8sr�E�����n�k&O�������?��O�����o���;�t�R�����G�uR֏UM�įY��_�`�:g�Ƌn�Y�7Q�_��'t1 IDAT����m�X:].�}���6��79���uJ�`Yy�х�k֬���^����[���;w.?���c�V�.�%q��1�~:��BNQq��*����+*+km6z��QPX���0���>h�8�+�3~B�!K���S�!!䔔n�x�ԩS�C���p(���<��A�,{P��-�RWum�Ky&,sD��<��.�\����?�/��1�?**+��8�`�`�m6��:����#�����.:�XN�~�����100�^�}߾}¹s�Nx�^���2�����2#�sIe%�`�"~ZC�:{��ۇ)��y��Gg̘�/Y��������U
��k4…�v��;w�;�$�z{z
O�>}�|{;�v��ScT���_��s�*++?�~�/���4c����=��(�t�X��^^�)<��J)��'�k4">_x��M���1/\EEEEEEEEE�/�w��n���N�����R�)��\���K�
,[�8&G*(!�Ӈ�K��5f��K��K�Ź��]]7o|������|�ɑ�sJ�F�dT�eދ��K��7����j�y<�ӟ����'��������#
!
��cY���/�??���"۵�	�;����ۀ���p��?��ΙHy���];v$���tv�,h�b�����tvğ��+�웄���nٰ�pZc�����j6��@�ߏ��n�����<��y�رc��;���Cz���@)-�ʾ�aJ��X0^"^�����L�*�����&VW#�@<��S���r��z�������޼���a�7�n8�#!�Ǘ-^l7h�GgQ~>�-^l���[�#�n8���EE8����"�������c��`@8��#���0	��@Nn.4FZ�)�`���eeeCCC�N�=�n8�v�������9ec��l�Rhw:�e%%V�U���zq�����2wC�А��p;|�p��Ç���1�Аz7T�***********Y������(������Ϡ�.����~����l�%�	����ֲ�  [{?0:?C��l���(%T��C�ς�n�����AI@V��ю�	��������n�����!A@���q���~�n������������y�6�#��Jx>���h��X�d��˶�ȶ��m������7��͆�v��ѯD�1qw?��Q����b~�N����k�ɵ��8z4��c>�R�.p�|�)�1�\���ey$��B��B�X)��u	�T�S�SJ;<�i�Q�������U3cB Ix�+VCCCI��_dCS��W��w��X�
��I�:@���:TTWC��l��f��ązO�N-`�F�|�L��٭V��'̲�C㶜O*`������)V�����������EE˪KJ����Egg'�Z�ƪ��v�̩S�y�ğ7n#!˲`���!�qp�� �pQ_'�ǯ��.]j��l�R���w<.T�q�x���OEEEEEEEEEe�D[82��dmII�fd2�+`�ٰ�رeGw����E��p]�@6oْ�(��3�K���+������c��6_0-3~/PIs&�,'����>V���5@&2�5���gg�>ݹ3��P��;f���p
���$��pb�/cgII+`����?Vd҉TK�'#;����n����BZ[�Ԇ�a�'���H��<�,KɆ����Yw��1�ڋ��M��>��v~`l�
��
��ɓ)���X��xܜeA� �cY8,��v�q��B������c��C�z�SQQQQQQ���d[�W,6�z�6�i.�q�y<�pӸ
��d	?��L��@)>ٻ�?� �W�턅��� �^�O��c|>��xb���L��c �����)�B(����(�;�s��[�-����]I!Hb�&1v�%�q��$vO^�;/���I2/�q�!��8^�,/c�����1b7F $ђZ��ݵ�GU5խ�$�g��}�!��r��[��~k���~0���I	�;�w�	!rUs�����Ⱥ̯�["` �z�]?x�D)e�tt�R���ř˗i6�|�M��ڑ�_��
�yy���f�^/|����8x�^x�n&?/Ok7���_��kkGn��&'��qG����BCyy�/��T���Wx���遅e�hF̔�E�/Z�_��?��c��o�	�:���ۛ�����}�|J�`՗۞t��)�[��ϧ3;:�[�Zm6���c�S��$Ƌ�pe���%� !���8d���U�i�󐕴�!�䄐��$^�0!��.L̸}`p0�E���e#
�������W�h"�Hw�cW�h���`/!$�����٫���.=���8��6[r2|�(!A/��
jW@l8��m϶m̍T^����ʛ���o���&:��F*ojj;u�Pd��$��`tll2}F�Ɛ�͈�H6�!"HTWc�v⎀,�!��Ԅl����bA��
���<xQĐۍ��SY���DŽR��C�L���,��;"��h�,���Ḙ��Տ;��>��X�x��.�hs4e�t
��<A��Ap+�)�����|R��a�+��j�8���R�;I� �Xh/]��K����D1�Bk3Y��9mm�)���H�����T�WVJ�JJ� '��$���J5uu�R�^��m(��*)���%�Ҫ*�#����
&�5w�\���>JV��`���WUQ(O�	�ʫ�(���_k/‹�'T�y�ߏ�}���p,�&�JF)�(�(*,ğ_��)�����C���X
�0�w�x!jQ�#Z`��6��w�d]0`��c�C_`���������9��`�O�߈��MZ%��J����B	\3�����?@)؉Z��ǐ�q��)ZԜ+ŧG���?W���!�-BE��C���	:=D�^a����8ɒ6{J
|<,S�@)��%%���y뭠^!�"���6�l�ֿ�eJ�
�a��T�&<S�W��]0�z�	/B:�z�	OA���+LxN�^a�#0�z�������v�Sw
(�H��4��r*�q��6
v�"���=+xA��[�?����68&�uc$WQ�d�WSWGKJK%&)I�D0�z�H��G�`�ܹ#��+c�4@�w˒�B4}2?�:
�F �*���o�S�W��E)m���_���@�X�0��_C�`���RLF_�=%�F��u��"Z��y	��W���%K�X��=۶E
O���ಜ�9Bc}=��8���|�6�׳P��ӵ�	&�/�X��Ϟ�`߮]I��@�3f�ae]޻`C��1� Ȳ��wp��A3��i��J���󳐈��n�m��w���"T}AA~>�q��1�^�Dž��^/��nx�n� ?_{��~��Wņ�z�M7ܐ�D����}��������8@��[ߢ���3�Ɣ	
�����O~rY_���n��'Ο;z� Ju-]]t~W�S�/���E[�����v;����DJ����c܇�?�D���,Z�X���b�I�`��>��C���DKE�D�����!��	!vL<��\���"���Ck�'̿�G�G$϶������,�|��	=L4ttw���mgG��߲:55c�s��Ř�-jC$D��Bl��I�E���$�4�o]/�ʼ��>oࣷ#'�?/S�?)��/.1�%u�yI�b�{RJCV*��qo=!	W>��61n� �/�}�����ӣq�����$�{Ϋ������W[S8���cG� �jŘN;"�Y��"�3�L����^UUUP�Z[U�=�)T%D�tI��_��,ː%	%���8���@����+)-� !
�#�IJ�FH��6�>��7�;~��ݏ�v�s������s��-8��q��-�DT����8}�<������辝;���y\���_�ǡ-�AnU��WQ1��OyB^u���@`�����R�v�tJc�Ȓ��+�/(��D@��ۑf���0�����<�Ll�sz�{����VTPsz�{Z{^�c��߿���{0t��:��a��'����2��7�&ÿ��0``���A}��/��d�4w�,��7h�B Q����c϶mW׿`Fm-�x���-p�݌��afL�A��9N���v�̙!L,}�D��C��(����N�b�;�L̿���f���^����2���L<}���(����/x������	�TW_�QU����Ϗ�/xw��M��b\J)IBۂ�n������}ǎ�/h��s;;)�b}������6�
�U�XU�[="[�+����H��G��$�IYm�D���T!a��xf�W��j�������&�_o
�ۈɄ���VjGw�T���vZ�+Lx�L�^!E�W��A��S�h#r>\�0)���+Lκ~
�
���aW@e�;'CH�E��?�} ��v�'�W����+l��6$�W��'�_��6D�+l��W��2��yB"�����7$�WG �鄤(��~>�^�0�†	�����tFs35�l;�� ��&�<ߒ�#�UU]Ϋ��,99R���@)���E%%�򪫥���I?��**�\�0�(��>����IOIq�ee:�I�ؿ@��aӿ��p�/)/��^�������&�_��k_�r�^!!�z�Ғ��u��_`�0`��흺@���q��E"`�Z�l���ĢI3���eab���J!�2$Q~S(�\  ���Y�c�鵼P
�=s��U�N����dO�Ȩg��}
@E\����Y
p!IR�R�JykB#@)e���?��Gu��PA�e��Ӧ�|���Fh[�F��"��#Br�_���K�.�HB�$x<|���9��!g\v8e~G�%F�K)/�:���M�^��&�K��YJ�"��e�$Y>`�d;b$\!�A)dI�,ː$	�χ�+V�D�&��F����[E@~A��x�o~�\XīB�������W��4<|.����*�v���^�e��~TVW���"����
�λ,�D^���^�"����,�kj����p���ko���;�O�����F@�e�<^�"r�)'��@0���qX�l�@�=~J���t˪�A[�n��|����l�� �ȭ��h�C)� ��x<#-��Di��1�˄"�K��RGJ
$I�(�E>��YY�0����by.���O�,3v2VkO�ӹ�-�`�>�^�G�����­_���������te�̙(���F"ߒ�ܳt�†��V�<�ƒ��=m����)eddH��@�d���R�O>�dccc`Yw�TY[�H�Y�О�ֻ��[Z�h�TVQ�1�t]"��R�L)�"�m��^x��]u����k��f45I����Y�BZ�h�TPP�K)�H)�O�L�b�QJ���a!d(B�����K/����t:m�8{��?��Eº�������5�j�3լ�Ή�r�,ބ�p�7�X�]~��$!`zC�yC��;����0Pu{|F���@p�/�_������=��y�j���{�vB~��@�N.}A�}g'k�n���Z.
>���3��v�ٿ��/]%%%��tߧ�O�<u��0��Ξ5��p���s�.]�XȘL;�����d������)�7�Ƣ�����F)##��R�)���R���>��C;***���3%[`�LmNJi��s�^NMM=Iu�iJi�z�>J)���������J�#Sڹ0`��[��&��d^������Ԅ1��gc���n������[^|�<\^[�����Yy�X�:q;��˗C�lw8)�UWo���dV]��y�Q[�~�#ܴo"x���FZq���͛���&��%KhNJ�"u^ZU���������������^�0��yqe�ʲ2�[o�]w�9��=O�Υ�˖�'7m�԰�1g�R:g���؝N�{�
��������m�ڶd�8Q�`ƌ�kxw�YLr��f�u
��� �����=4^ �H�łH��ձ dsvy���c����/�ڤ��j;: ������?���X[SU<��Ѐ���כl����Q"�D% KR�
�պeɢE+

��z��_\X��������$?�T��	PJU�e�Z��{�/^�1-;�ccܡݻ��Nر�V��+gggc�EMVktb>�Ll
B��T&����^����p����[_y�z�tU����wz}>d��c��%-f�}�b�)�)q!p$'@qjf��%KJm6DQ��w�"�<��}t��A@rr2�-^\���]���ƜU#~֑���>������x�QL���R�<�Rf�#�>Eљ8Aqɭ<m�N���+o��57�ɒ$�������w ����X�[�kkeYƘ�ǿ������^�/��@T�$�z�x��ܳu�ͣ^��l6cagg9��*[vvV2�`xl�{k˖�A^�_ЄnC*��C�S���[�.��v��	MM�ک���Y���۶-𦾪<эH��h�o����p�Κty,V+\���{zz ���^ԇQ�{V�����(.J����;uj����h�E%���Y������O��p>Z�	?
)�1Â�п�F�PÈMh'`5O*N^DX��ꙨS 
�dž)�L2���}���i��FQ�\Q�꣘qq�4KiuU�OI���z-�*�*
0`��$���"��Ÿw��7݄t���8�`=�.��$��:������'@��!�onْp#O��w�qdY�p���	�G@E��{�o�kV�v�饗*�N;�0���~�bŸ�(J�}���g /��B6���M�D�p@�lB~N)�u�~Fe�?�<CeyÙ��㒘�h<��֯����F�t��'b���l�Aw�3��g�e�%�hr��@3��SO��+����=N> �	��T	��w�Y��0f̘] ~ �\?q�	^!�H�8�@q������@vy��@�悺�H�*?'K��)��b�ٞ��Ҳʔ�����PMU�

��ݻ7J&�����d�N|���H2�&)鵅�����=^�HAA�,Z���Z��y-��)	��'�6Y�=K-Z���
��+ر#������׍��qӲ��|��Krrt����	� jN
�f�}��%KZ2������w"Աi��W^������݋7&���P	(qjbɘ���¢�`HJڵl�����d�����!<��Eh筽��5Qa��нdIijf�.Ŏ���i�H����
���RY�`-T
H���4=�����g5Ϝ�	H�>���g�o�q���˲����B�j�
���R���;��%I����W�|�k}'N|.���dՑ!Ax�-[>7<6�1�`agg%��ʎ����f��^��g�֛��vr���h;&����͝۶-��v��f3J�Oo�NT45�2&.�ݮ�[�.��WE1�.�D����ӳ�5:�o��4�,\��{zz:��,F{&�>��{�tf��=��Ϟ]���	�7��t�T�@�D}��^ĝ0=�^7��5�� *��JO�a�k�g�'�0��g�'�J��h��rZ0`����ɾ��h��	���8�>j�I�����%99;g�4dge!336�
.��\.�\.
��}P�a�?���_�ϝ[9c��Rx���z��RJ�DQ����t�:��lr��ƶm����P��#�4�G �c%%�,[�֤$��ܹ�<��7Lo� IDATU�V�BgC|��:���������||�(���5@y�k^� 6���W�]�욲�p�˅�.~��w�Վe�|��C5�ӟ���������Ğ���R��m�|���e��߬���>/'>�����<���ܺu�3�`'!ģU�JƇ{�7<:z��/��Ϸ&''�l���_��	�|4)�������N�����p�����֭�Pd��!��;�l
���ܐ���,*.~��v��C�yܰre��f{F�o$�Ԭ�g;��Y���ߏQ��s��*!䆘I�"��駞j>��7��`b\�ݽ�7cX�rŊB���7\�.����?��X��8��7�x�Q�� �"x�Gvv6�����r��e!���DI�(�g��Qn��&٫�$	� �����&6�븪��E@~#()/wxb����QJ������(�d2�R
�����q#P^\�լ[�	���9C�#41���5M��d�?�J�,�L&$�lO�s�'Q�*��eY	�o6��#@)������<&�	?|�!O���$)S�&�"8�Ciu��q0�	����T2Y���Ź���Eccc��wgG�—VT�95��F"3''F�ԸhIw8��nA�����t7�l~��.�K��Y�P]Q��1�lB`ٯi1����y~;�	�������Ɣ��R�������p�̙7j�/`phH����r�H�c;{zj�Ο��n7�@�(�a���V&ܵ������bV��~�������6����s	B���~�/^=DA@yq1�����
��e�y]�("`dd}}}z�mk�Z�hO��|~�����������Q<����)iYY�|%Fׅ^kli�rZj*8�åK�p�ܹ��U�WBHP��} @=�4��[�x����o�/**rfff�j����q����+�nII����HOM�����>}����>�g��r;#��99yo���C)���ݍ���)����ϝ;�q^/*++�m\�\��82��n\�p��_����O��%��{v��ɜ6����D }agg���.�y&!�,�~�'=zt���A��A���a���o�8q��������&���Ν[>��
�ZgQ��(-.�>}��T�A��y�n�3���Ţ(�C��烉a���[\\\����?66f�4˲�T��@PE�!*�������iiLVff��f+մh�&-�W��q���f�B���p0����&���n�+aF�td�׫��e�8�?���^���=;w�$%%��t"ڶ|��E���]�����U���Vz|r�,�ccCT��q|J��R*E���H�&R��R��Rz�R:����
꟤�FL�g��0`�"}�4�Z��Y���g�����'�V����v����`��'�9w�A(2d=V�WWcz}};k6�ǎ;|�С?�?Z�H_��RR�i��6�sA��4�
V+�?~�;w�A�������V(A�5ܶ殻^�lm�8z���v�^^ްz��G`2�A����9I���l�s��k�ѣ��~�駞����ڻ{73t�"W��[�#���^��cΝ=}�����~�sޑ�s�V}C�{����d�%��rvzz6�2�QU|���y(��r~AA���c�

/�����c�ҥ�P�I���
Ϝ91�P�@e�Ñ���+fee���!bGX��flݶ�%B�"%� p�aN[[p
�X(�رg�K��9��N��~��W_~���kOE"�A%	���e��G�>r+*V�Ȕ�l6C�L����^���ylڼ9(��ґ~�ק7��2H����ߖa��3f\'�"���O̞=�}Y�����Z��n(!�48�z�ڵ_�%	<�3K�,AAZ�1}9@1�#P��=4n�JJ�L��{N��;6��99��ًk��]�c�{z����}��ylٲ����	�Հ��O�ܬ�4����w1�����HR��xP�d=~�qc匆�J�o��V���z�(�����j"�8&���,�eY�\������MN�S��|H/(Xvyd)DIB���B�!l�HO�$	ٙ��\�VNo�@1|�Ev6B�YV���q(,*�W���}�����z<h����
#X��ݻ�B�%���?��A˂�%T���6�e��λ��u��>
U����[��8�
�"�/�����JO���ׄ@��gf^��6mڔ.�2����p:���8u��e9@RR�{x'����c�)@�BJ9�iYYG	!������@�9UY(�aQ �L�ٺ�Ƭ��Fl��Z}�-_(	Tp��w�߾�~�$˷���˲�^S�z��yfŊ�k���
�s��ӂ����~�Y��cO=���bZ��@AHUW��zZ����!7/�c���D)�F�R��ɧ�J�˗������+,*��㏇��MT��m�c��1�Rڠ��o��J�.J�W=�Q�ZZ���������=ʅ��%
�ưr�/@)}�^�V�6o��kW��/^L[ZZh^^����Ka堭��D��{���KeIb�^/��܌͛6�`MxⅉJ����s�n+��-�D��8CCCh�=�7m����S�%J`-t�3;�?��0/�\�$��8���O<���)wB�9$B���+Wn��޾-
������;�����܌'�xB�H��s�;_��3��̤��d��Ү���{	��G̟��ޓ7mZ�,ˌO��Y���O�P�����9o,�΀��}>Ȓ����Κ3G�ܖ9s��뼥O���2���:�;T�}�kz���lk2GjjVVV�uEEEw�:�5T��χ��A̚5�7o�:�#^�@�ېR���֬Y�8pN�V��� �2��180�ٳg�7����Pn��\7�`<��ؿ?�M������W���O��p{���%��ᅬ�l%����Z[['�y �����(�Қ�kiYY-++�k֮���T�Wz�֭��֭��:7`���/
�)�,د�wE�Я����J�0�T~�Dž,�2Q,h�aƅ�� �0�$�,&B����Ȓ6��9���&��r�f'�%R�����cF!�z122���EK0�L���p8��=%���ӑ��VE���筷b.���Nv��5%�-^�$%%)8�60�ӂ��ӄ�SR�2EQK	ѢpeŪ�<o0e��,X@)!���a��2	FeH���'+�2�B$&*�r����E�<4a�w_O���/KU-X<$�cB���R$%�t1���\��N�e.'J��^�f�iNI��!�N(�|him���)�0�v;�Bj��	>�v;X��184��E�}�ᔔ��҂��\�6���	��Hh',��Kh�K�\MS� �;!aYP���a�wB�_�F��	S�R�l�9�z'�deY�T�11�;�٬L��|�ܹ�ꔔ�0�@d��I��$�r� �h:�))�0CQ��?@h���f�uB��܅�9j����#��q9�
0`��008<���<'��ڮX�5Q=��켼��qGiEy���?��ץ�X��7gμ�3����i��?_������sdfd (1�@����/˪�����Kq�WeT�aMP0Y�`2=�x��Ҳ����"�Tt)�S���g]�NMX���o���d�BƖ����E/�!��l2���d������Y(I6{�XӞ�G \�Pj�Z�nij�W_[��M�f2����J�#Y������Ł||��3�.Q��	|��Zy�e�̌���h�/-‚&�'j�{F
��i_v�����%��ުv������6[�v�Z�~��O��D�$������Z˘߿r����N �T{����g�Ӧ5���!))	�DUhh���k2��>kX���O=�B��~'��<q����f�ٳge��
��� �J�~?FGG�r�022��
���㔽B��<����F䕔lD�yxȥQJK�X��;~���Ύ�����B�����YS�H��˅|�ݽ���G?����Q;!�:%%�MNN��jU���fȔ����D$���
������0(���!��|����#=OF6��'G~��cv��ܐ��ͤ�� �j��O>�?:x0jp�XiF穣Q��M��nÆƂ�����T�,��q��Y�>~|�:�y꿅P���6y���x(##�1++�$���C���
J��R�U�INNΡ3fH���R�Rimm�DZZo-���w�~���v���y�̛'��8(�_R�H��~{OQQ����,TW�}��RJ�RJ�%��㜼�10̮	P*U=e��'%��X��~!���/J��-[��0��R��jQ=���3nc�S��R:v���t��QJOӄ��!u���^�"jCJ����_�b0`��0`@����t�}��NB��LW�WRQ^��︣4;/o���j�	�|>�&n��f��Ų@�gF�����؈[n�q�55�_�LX-P��qHII��n��QVU�4X��"�Y^�(��a�)�Zj����I�x�,^��K0�>@��h �B(�@(�gdf2)��X�p!���Rs��_ �m۷�C.|J@��<�~���������q:������d�	fd��FT�aYG�ŁC�ޖ��5�Ep�E����7v̝�RTP�H�ub|!b�H�d��h�����֭n��PeD��MIU��ϝ=���?�㉀R
��I��Ѐ�_No���+jk����� �ץ�r	��FGG188��'X�x��r�JJ6�ll���h�b�K������w�ek�x���ںs�޽]8�b8�������!
5�����)�����8������an{;�q�ƶ��̠_���v�q�̙s�v����\%��j�~���1���bEI�%����`hhH�ï�{/�෾U����PWW'!)))���|p�\!o>t�@
�G���0!��� 7�2�v�ҥK>|���l�	O�dh�E���~�(>�eg�24�y��Gߵ~}�[n�>b4<3g�<����݇ڥ�U濖RqK-���:,�:;;�3fH999�(������Vo<fWN^��%��c��VJia�j��Rcs�TXT$�^��G���RJz��ʖ-{)�>J�J��5;[J��?9~��!��U�51��QJ�h���ѐ���G�'QJ���������Iԣ��`R�d��&%ß�B3`��0`��W�����C_`��������`�}��/0`��0`�����0��xDF<"#��ȈGd�#2��NӉ�Pa�#2`��0`��@D�<o\�f��,��<s�D*m+VH�v;L��`hp����o��;� tֲ*V�WWcz}};k6�ǎ;|�С?A1�YX�1-%�v�ls:��L�ِa�����G�۹s�I�뻻o\���o��+zۚ��z���������ڵozyy������pT���>'�"����vΝ{�8z�2���<��S����]{w�f�.^�
ss��Ԋ�VU��|lcCù��O7\�p���>x�;2�|nժoh}�#P��۞l����X�NOφ"�ܿ,C�$�_���'��
R�>�VP�(x!uu�~���.-�!�}
MM�gΜ�d��D�2��H�������Q�b�#���l��m�^"�,P"�q洵��0��R�{��D�C�t��7ؿ_~��]_X��T$T�P���_VZz���!��b���L)�f3��PKY�x��Ǧ͛�Z9I�EZz^W���o����m9&�.�1�:IQ]]}b����˲|MmU���'us�d��48�z�ڵ_�%	<�3K�,AAZ�1}90���<�@�{h����t��=��|�w8lV+�sr��3�e| �a������{{{��y[�lA~EE�zB����ү�����JKsʁz{{X����%_��UE�?ٸ�rFCC%��ȷ�z+S_]�j����E@V�!�#�Y˲X�r勭����N���^P����R������?�"ߔ��> I�33ӹ��j��Lix�I�,1�١�-�ee�}�¢"|��_���G]���	�ǃ���n�0�eYl߽{;!�^B�ݿ��4�,85ͬ�T����yT�y��}��^݇����yy������!_��܂��~�Y������w�L&df^��6mڔ.�2�5Q/�N'~?N�8qY8��T�����=���q
Э��R��CZV�QB��p��w�?hNE��qX�&z�n�1+?��V�ǃe˗�w�}7���H�|KAyy�,��55��ϟgV�XḶ���� 9gy9-()���w�Վ=��S_.(.��

��@Qu5����u�O���r��?��_I��am(�=�|��Խ|��������¢��_=�xH9ݔQA@ަ;V��(�
�1�F)�z�cժ����}�z�q�߯JY�˅��%
�ưr�/@)}�Rz�Z��m޼�׮\)-^�����м�<��믗��A[SS��9����ʒ�x�^����7mz	�B��p�^�Q8{��m����(2�ahh��gc�M2����J�X�0]ϸ����)��+�%��8hii��?.CQb��]�(��w�\�yf{��($����ߖ�t;Dss3�x�	��"u��
#v����gv��IKIɲ��]����������i�*eYf|ڕϚ�'�|R�;�u���3��0~��$1��������F"�eΜm�:oi�����œ��X��*���5�G�*�7��8RS�����+**�#�鬡��|>b֬Yؼy���:�܆���ܴf��p:��Z�`FY��ߏ��̞=���od(ڰ5�t����5k�0���Ǵi�`U2�����駟�<ő)aӊ�Q8��������筭��<aPJYJ�s�Ri�ڵ��������5k�j{�s*ѫ=�u���u��}v�0`���K�����Wl�<PB��L�~�R0�߆��?Ka���&�	�K�!�����A�?�̎��~�]����á��+��p���r>��~?�n�b�MiP�B�d2��p���V��*�E~�G��ӧOW*������bj|��Ax�jz�jW�0�V+�V+


`Q��y�G__l6����h����
��a��,,K�p�j9�����>�)�8����?� !# �2DQ��c<���n����N�Ȳ	M�~
��~Ha��j�������"�F��P���$	�g��߆����
c��q�R����mQNf#���}�n����^96�],μ��H�x"Y�����?�>����������3�����:��U{���]�>�o$���,� "w(��d^��uu	=�>���f��<K|>FFF�$J!���Y����):����㰰l��T{)�)���zC03n
��&Y��a�V"Do�M�p$88W�'8�,�������!�{�R��է$�l�)(e Ĺ)�&:����C��d���% �D��o1BA)@	���^!�Ґ�O����]�a@u�V�=-
�]�t%��$�juW*Y32����@��K�x�������6r22�b�!E���0`���I!��6wh�ew*�p��x1��ŕ�kg55!''Ì�pL�(I�{�ܩSO�7���-�mKcc0���\��&�IJx���o��[����/�����:%@�N�M�����BE�DM

طw���P�

-~�b+���G%I�@RR���ޘ����$I�������ġC!����"�"��)�Ƣ��ܹ�}{�V�r�+�1�IDAT��Ξ}�����j�E�ؠ�B���َ�1�G�"�!Ԥ(�����C�w{�W����/�l6���'I��^<��}aY.�]���(����C�u�w<��_�$����6T�N!��P~���"������-}�*~[PPp��:�����d}�?Q1���o7l�x<���_Lw��E1f(9��0�i���y�*!�XxBG)��f232#i`���I� ��o}�A��x���z4��WX�����[��]�`[�Y
;q�]OϐR
A1<2"�����
����i�6��ŋs�Q8L)����8RS�M��"��#u�d~��,��_5��|�gΘQ>����M�>~[V^~�㸨�1���k���<FGG��O�n��ٹ��cM&�m6���~`���F���ᑑq�|$]��G�
eYF��184tv��y�	!Zh��쬬���\�x�������zu�v���Q���?��a.�M��F�����}���A)��g�}��ݻ����x�Gt����ۿm��c����T�/T'1�h�;W*�ʂE�F)����O���9`�f1K)]%�3	!u�TTV6VVT��l���Ë">�?z�][�׀��J��ǃT��}/��u��<��3?������.��sݺp��暺��F]��e��R��@������������x���b!dH-�6-3s3�IV+���X%�(�V�$�mmnn,��Ft�Eg.^�{mB��\r���VT�u��q��E��p��	���~�v@Y��ҝ������e�W�X���K���׋����~�醵tF}}���!��A~UW]}#Bs�<�����z�A֤��0�F���}�Y	!�u
�͝6-�,��$���� �$C9r�����4m#
NA��9Y��R0�$������;���[�MQ�CKV������K�㎌����׆_�e�9H��x�S�@���>�,��������8h����|a��Ԕ%	
uu�����"�2�II�;+�e�3��������8�� `YYYY���@fz:2���� |>�u#�J43=����
F��z�ķ��m��ƒk`GM}=+��홙��X,Q����mX{�r�\pdd�}�!�pk��g���o��GS�/�X,���M�$q&�=�����=��p!���
��1Ȯ&��ɖ*�vP%3�TaLms�T��0`��n��NbF1��ZM���k͚.��F�>6�˿�M�� &k�V�����IMG�l����z�D�,�{J�� �߉� @�yt͟�
��j��̙�V�c������p��&p[���Iױ��JQ=}����„m�'L���u��d� �|���?�zyQ!�"Zg���;�2~K�#�����*
�FFG��C����8� (����D	ܓ��I�yȔ�ܱz�Z��BȢ��H0��D8Z�̹���7�v�!�w�[����s(),\�!�����4�p�]w�^=�'˾KQdΒ����u�X�.Ƅ	�:��PJ!
�D��B�<KY1���`�$̂(���.<��x�&z�t�����U�IKJWW�-�aJa�+�J���III`SR�=��b5��rOVF����{��	�ip:�HNN�I�f�Z
%9wT$2�3gϾQV�\M�P��9X,$''+WO)
��e1~�J��,+��ꕏ����;�DaQË��h&RSR��$7''�0XYFym�S�O�@D��ʪ��a��=6ƭ_�K�����r�e2����55�SG��B��D�B����kjJE��9���dB�����;��<��:���`����Al&ӽ��8N��{�9Ao ���-_~v`p���8�T'������T'�N��Yy�ye�
�����Ix�j�V���g��`bY����n�N�@�E���!FEF��Jkj�	��~���{�-[���$�v�b���|�����TՁR�u�dm���`�g"�}8~��п�_y~�+!�O����i�Ŵ�����廀���$��ҟ3F�T}�	��>��e��yq0`���s�K�L�q�IEND�B`�admin/ckeditor/skins/moono/editor_ie.css0000644000352000025440000010725112450564214021063 0ustar  thediannthediann/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none}.cke_reset_all,.cke_reset_all *{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;position:static;-webkit-transition:none;-moz-transition:none;-ms-transition:none;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#cfd1cf));background-image:-moz-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-webkit-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-o-linear-gradient(top,#ebebeb,#cfd1cf);background-image:-ms-linear-gradient(top,#ebebeb,#cfd1cf);background-image:linear-gradient(top,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.3);-webkit-box-shadow:0 1px 0 rgba(255,255,255,.3);box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,.15);-webkit-box-shadow:0 0 3px rgba(0,0,0,.15);box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;-moz-box-shadow:0 1px 0 #fff inset;-webkit-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#cfd1cf));background-image:-moz-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-webkit-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-o-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:-ms-linear-gradient(top,#f5f5f5,#cfd1cf);background-image:linear-gradient(top,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{-moz-border-radius:0 2px 2px 0;-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{-moz-border-radius:2px 0 0 2px;-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}.cke_button_on{-moz-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{-moz-box-shadow:0 0 1px rgba(0,0,0,.3) inset;-webkit-box-shadow:0 0 1px rgba(0,0,0,.3) inset;box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;-webkit-box-shadow:1px 0 1px rgba(255,255,255,.5);-moz-box-shadow:1px 0 1px rgba(255,255,255,.5);box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;-webkit-box-shadow:-1px 0 1px rgba(255,255,255,.1);-moz-box-shadow:-1px 0 1px rgba(255,255,255,.1);box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;-moz-box-shadow:0 0 2px rgba(0,0,0,.1) inset;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1) inset;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e4e4e4));background-image:-moz-linear-gradient(top,#fff,#e4e4e4);background-image:-webkit-linear-gradient(top,#fff,#e4e4e4);background-image:-o-linear-gradient(top,#fff,#e4e4e4);background-image:-ms-linear-gradient(top,#fff,#e4e4e4);background-image:linear-gradient(top,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:-webkit-gradient(linear,left top,left bottom,from(#f2f2f2),to(#ccc));background-image:-moz-linear-gradient(top,#f2f2f2,#ccc);background-image:-webkit-linear-gradient(top,#f2f2f2,#ccc);background-image:-o-linear-gradient(top,#f2f2f2,#ccc);background-image:-ms-linear-gradient(top,#f2f2f2,#ccc);background-image:linear-gradient(top,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;-moz-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:-webkit-gradient(linear,left top,left bottom,from(#aaa),to(#cacaca));background-image:-moz-linear-gradient(top,#aaa,#cacaca);background-image:-webkit-linear-gradient(top,#aaa,#cacaca);background-image:-o-linear-gradient(top,#aaa,#cacaca);background-image:-ms-linear-gradient(top,#aaa,#cacaca);background-image:linear-gradient(top,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{-moz-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);-webkit-box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2);box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}.cke_path_item,.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-moz-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);-webkit-box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5);box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_button__bold_icon {background: url(icons.png) no-repeat 0 -0px !important;}.cke_button__italic_icon {background: url(icons.png) no-repeat 0 -24px !important;}.cke_button__strike_icon {background: url(icons.png) no-repeat 0 -48px !important;}.cke_button__subscript_icon {background: url(icons.png) no-repeat 0 -72px !important;}.cke_button__superscript_icon {background: url(icons.png) no-repeat 0 -96px !important;}.cke_button__underline_icon {background: url(icons.png) no-repeat 0 -120px !important;}.cke_button__blockquote_icon {background: url(icons.png) no-repeat 0 -144px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -168px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png) no-repeat 0 -192px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -216px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png) no-repeat 0 -240px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -264px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png) no-repeat 0 -288px !important;}.cke_button__horizontalrule_icon {background: url(icons.png) no-repeat 0 -312px !important;}.cke_button__image_icon {background: url(icons.png) no-repeat 0 -336px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -360px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png) no-repeat 0 -384px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -408px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png) no-repeat 0 -432px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -456px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png) no-repeat 0 -480px !important;}.cke_button__link_icon {background: url(icons.png) no-repeat 0 -504px !important;}.cke_button__unlink_icon {background: url(icons.png) no-repeat 0 -528px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -552px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png) no-repeat 0 -576px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -600px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png) no-repeat 0 -624px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -648px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png) no-repeat 0 -672px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -696px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png) no-repeat 0 -720px !important;}.cke_button__removeformat_icon {background: url(icons.png) no-repeat 0 -744px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png) no-repeat 0 -768px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png) no-repeat 0 -792px !important;}.cke_button__specialchar_icon {background: url(icons.png) no-repeat 0 -816px !important;}.cke_button__scayt_icon {background: url(icons.png) no-repeat 0 -840px !important;}.cke_button__table_icon {background: url(icons.png) no-repeat 0 -864px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -888px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png) no-repeat 0 -912px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -936px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png) no-repeat 0 -960px !important;}.cke_button__spellchecker_icon {background: url(icons.png) no-repeat 0 -984px !important;}.cke_button__selectall_icon {background: url(icons.png) no-repeat 0 -1008px !important;}.cke_button__bgcolor_icon {background: url(icons.png) no-repeat 0 -1032px !important;}.cke_button__textcolor_icon {background: url(icons.png) no-repeat 0 -1056px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_hidpi .cke_button__spellchecker_icon {background: url(icons_hidpi.png) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_button__selectall_icon {background: url(icons_hidpi.png) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bgcolor_icon {background: url(icons_hidpi.png) no-repeat 0 -1032px !important;background-size: 16px !important;}.cke_hidpi .cke_button__textcolor_icon {background: url(icons_hidpi.png) no-repeat 0 -1056px !important;background-size: 16px !important;}admin/ckeditor/plugins/0000755000352000025440000000000014373776770015625 5ustar  thediannthediannadmin/ckeditor/plugins/wsc/0000755000352000025440000000000014373776770016421 5ustar  thediannthediannadmin/ckeditor/plugins/wsc/LICENSE.md0000644000352000025440000000270212450564214020004 0ustar  thediannthediannSoftware License Agreement
==========================

**CKEditor WSC Plugin**
Copyright &copy; 2012, [CKSource](http://cksource.com) - Frederico Knabben. All rights reserved.

Licensed under the terms of any of the following licenses at your choice:

*   GNU General Public License Version 2 or later (the "GPL"):
    http://www.gnu.org/licenses/gpl.html

*   GNU Lesser General Public License Version 2.1 or later (the "LGPL"):
    http://www.gnu.org/licenses/lgpl.html

*   Mozilla Public License Version 1.1 or later (the "MPL"):
    http://www.mozilla.org/MPL/MPL-1.1.html

You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing this software, just include a text file titled "legal.txt" in your version of this software, indicating your license choice.

Sources of Intellectual Property Included in this plugin
--------------------------------------------------------

Where not otherwise indicated, all plugin content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, the plugin will incorporate work done by developers outside of CKSource with their express permission.

Trademarks
----------

CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders.
admin/ckeditor/plugins/wsc/README.md0000644000352000025440000000171212450564214017657 0ustar  thediannthediannCKEditor WebSpellChecker Plugin
===============================

This plugin brings Web Spell Checker (WSC) into CKEditor.

WSC is "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution.

Installation
------------

1. Clone/copy this repository contents in a new "plugins/wsc" folder in your CKEditor installation.
2. Enable the "wsc" plugin in the CKEditor configuration file (config.js):

        config.extraPlugins = 'wsc';

That's all. WSC will appear on the editor toolbar and will be ready to use.

License
-------

Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html).

See LICENSE.md for more information.

Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/).
admin/ckeditor/plugins/wsc/dialogs/0000755000352000025440000000000014373776770020043 5ustar  thediannthediannadmin/ckeditor/plugins/wsc/dialogs/tmpFrameset.html0000644000352000025440000000361712450564214023205 0ustar  thediannthediann<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<!--
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html>
<head>
	<title></title>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<script type="text/javascript">

function doLoadScript( url )
{
	if ( !url )
		return false ;

	var s = document.createElement( "script" ) ;
	s.type = "text/javascript" ;
	s.src = url ;
	document.getElementsByTagName( "head" )[ 0 ].appendChild( s ) ;

	return true ;
}

var opener;
function tryLoad()
{
	opener = window.parent;

	// get access to global parameters
	var oParams = window.opener.oldFramesetPageParams;

	// make frameset rows string prepare
	var sFramesetRows = ( parseInt( oParams.firstframeh, 10 ) || '30') + ",*," + ( parseInt( oParams.thirdframeh, 10 ) || '150' ) + ',0' ;
	document.getElementById( 'itFrameset' ).rows = sFramesetRows ;

	// dynamic including init frames and crossdomain transport code
	// from config sproxy_js_frameset url
	var addScriptUrl = oParams.sproxy_js_frameset ;
	doLoadScript( addScriptUrl ) ;
}

	</script>
</head>

<frameset id="itFrameset" onload="tryLoad();" border="0" rows="30,*,*,0">
    <frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="0" marginwidth="2" src="" name="navbar"></frame>
    <frame scrolling="auto" framespacing="0" frameborder="0" noresize="noresize" marginheight="0" marginwidth="0" src="" name="mid"></frame>
    <frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="1" marginwidth="1" src="" name="bot"></frame>
    <frame scrolling="no" framespacing="0" frameborder="0" noresize="noresize" marginheight="1" marginwidth="1" src="" name="spellsuggestall"></frame>
</frameset>
</html>
admin/ckeditor/plugins/wsc/dialogs/ciframe.html0000644000352000025440000000323212450564214022315 0ustar  thediannthediann<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<!--
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html>
<head>
	<title></title>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<script type="text/javascript">

function gup( name )
{
	name = name.replace( /[\[]/, '\\\[' ).replace( /[\]]/, '\\\]' ) ;
	var regexS = '[\\?&]' + name + '=([^&#]*)' ;
	var regex = new RegExp( regexS ) ;
	var results = regex.exec( window.location.href ) ;

	if ( results )
		return results[ 1 ] ;
	else
		return '' ;
}

var interval;

function sendData2Master()
{
	var destination = window.parent.parent ;
	try
	{
		if ( destination.XDTMaster )
		{
			var t = destination.XDTMaster.read( [ gup( 'cmd' ), gup( 'data' ) ] ) ;
			window.clearInterval( interval ) ;
		}
	}
	catch (e) {}
}

function OnMessage (event) {
	        var message = event.data;
	        var destination = window.parent.parent;
	        destination.XDTMaster.read( [ 'end', message, 'fpm' ] ) ;
}

function listenPostMessage() {
    if (window.addEventListener) { // all browsers except IE before version 9
            window.addEventListener ("message", OnMessage, false);
    }else {
            if (window.attachEvent) { // IE before version 9
                        window.attachEvent("onmessage", OnMessage);
                }
        }
}

function onLoad()
{
	interval = window.setInterval( sendData2Master, 100 );
	listenPostMessage();
}

</script>
</head>
<body onload="onLoad()"><p></p></body>
</html>
admin/ckeditor/plugins/wsc/dialogs/wsc_ie.js0000644000352000025440000000637412450564214021642 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.dialog.add("checkspell",function(a){function c(a,c){var d=0;return function(){"function"==typeof window.doSpell?("undefined"!=typeof e&&window.clearInterval(e),j(a)):180==d++&&window._cancelOnError(c)}}function j(c){var f=new window._SP_FCK_LangCompare,b=CKEDITOR.getUrl(a.plugins.wsc.path+"dialogs/"),e=b+"tmpFrameset.html";window.gFCKPluginName="wsc";f.setDefaulLangCode(a.config.defaultLanguage);window.doSpell({ctrl:g,lang:a.config.wsc_lang||f.getSPLangCode(a.langCode),intLang:a.config.wsc_uiLang||
f.getSPLangCode(a.langCode),winType:d,onCancel:function(){c.hide()},onFinish:function(b){a.focus();c.getParentEditor().setData(b.value);c.hide()},staticFrame:e,framesetPath:e,iframePath:b+"ciframe.html",schemaURI:b+"wsc.css",userDictionaryName:a.config.wsc_userDictionaryName,customDictionaryName:a.config.wsc_customDictionaryIds&&a.config.wsc_customDictionaryIds.split(","),domainName:a.config.wsc_domainName});CKEDITOR.document.getById(h).setStyle("display","none");CKEDITOR.document.getById(d).setStyle("display",
"block")}var b=CKEDITOR.tools.getNextNumber(),d="cke_frame_"+b,g="cke_data_"+b,h="cke_error_"+b,e,b=document.location.protocol||"http:",i=a.lang.wsc.notAvailable,k='<textarea style="display: none" id="'+g+'" rows="10" cols="40"> </textarea><div id="'+h+'" style="display:none;color:red;font-size:16px;font-weight:bold;padding-top:160px;text-align:center;z-index:11;"></div><iframe src="" style="width:100%;background-color:#f1f1e3;" frameborder="0" name="'+d+'" id="'+d+'" allowtransparency="1"></iframe>',
l=a.config.wsc_customLoaderScript||b+"//loader.webspellchecker.net/sproxy_fck/sproxy.php?plugin=fck2&customerid="+a.config.wsc_customerId+"&cmd=script&doc=wsc&schema=22";a.config.wsc_customLoaderScript&&(i+='<p style="color:#000;font-size:11px;font-weight: normal;text-align:center;padding-top:10px">'+a.lang.wsc.errorLoading.replace(/%s/g,a.config.wsc_customLoaderScript)+"</p>");window._cancelOnError=function(c){if("undefined"==typeof window.WSC_Error){CKEDITOR.document.getById(d).setStyle("display",
"none");var b=CKEDITOR.document.getById(h);b.setStyle("display","block");b.setHtml(c||a.lang.wsc.notAvailable)}};return{title:a.config.wsc_dialogTitle||a.lang.wsc.title,minWidth:485,minHeight:380,buttons:[CKEDITOR.dialog.cancelButton],onShow:function(){var b=this.getContentElement("general","content").getElement();b.setHtml(k);b.getChild(2).setStyle("height",this._.contentSize.height+"px");"function"!=typeof window.doSpell&&CKEDITOR.document.getHead().append(CKEDITOR.document.createElement("script",
{attributes:{type:"text/javascript",src:l}}));b=a.getData();CKEDITOR.document.getById(g).setValue(b);e=window.setInterval(c(this,i),250)},onHide:function(){window.ooo=void 0;window.int_framsetLoaded=void 0;window.framesetLoaded=void 0;window.is_window_opened=!1},contents:[{id:"general",label:a.config.wsc_dialogTitle||a.lang.wsc.title,padding:0,elements:[{type:"html",id:"content",html:""}]}]}});
CKEDITOR.dialog.on("resize",function(a){var a=a.data,c=a.dialog;"checkspell"==c._.name&&((c=(c=c.getContentElement("general","content").getElement())&&c.getChild(2))&&c.setSize("height",a.height),c&&c.setSize("width",a.width))});admin/ckeditor/plugins/wsc/dialogs/wsc.js0000644000352000025440000011351612450564214021162 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.html or http://ckeditor.com/license
*/
(function(){function q(a){return a&&a.domId&&a.getInputElement().$?a.getInputElement():a&&a.$?a:!1}function z(a){if(!a)throw"Languages-by-groups list are required for construct selectbox";var c=[],d="",f;for(f in a)for(var g in a[f]){var h=a[f][g];"en_US"==h?d=h:c.push(h)}c.sort();d&&c.unshift(d);return{getCurrentLangGroup:function(c){a:{for(var d in a)for(var f in a[d])if(f.toUpperCase()===c.toUpperCase()){c=d;break a}c=""}return c},setLangList:function(){var c={},d;for(d in a)for(var f in a[d])c[a[d][f]]=
f;return c}()}}var e=function(){var a=function(a,b,f){var f=f||{},g=f.expires;if("number"==typeof g&&g){var h=new Date;h.setTime(h.getTime()+1E3*g);g=f.expires=h}g&&g.toUTCString&&(f.expires=g.toUTCString());var b=encodeURIComponent(b),a=a+"="+b,e;for(e in f)b=f[e],a+="; "+e,!0!==b&&(a+="="+b);document.cookie=a};return{postMessage:{init:function(a){window.addEventListener?window.addEventListener("message",a,!1):window.attachEvent("onmessage",a)},send:function(a){var b=Object.prototype.toString,f=
a.fn||null,g=a.id||"",e=a.target||window,i=a.message||{id:g};a.message&&"[object Object]"==b.call(a.message)&&(a.message.id||(a.message.id=g),i=a.message);a=window.JSON.stringify(i,f);e.postMessage(a,"*")},unbindHandler:function(a){window.removeEventListener?window.removeEventListener("message",a,!1):window.detachEvent("onmessage",a)}},hash:{create:function(){},parse:function(){}},cookie:{set:a,get:function(a){return(a=document.cookie.match(RegExp("(?:^|; )"+a.replace(/([\.$?*|{}\(\)\[\]\\\/\+^])/g,
"\\$1")+"=([^;]*)")))?decodeURIComponent(a[1]):void 0},remove:function(c){a(c,"",{expires:-1})}},misc:{findFocusable:function(a){var b=null;a&&(b=a.find("a[href], area[href], input, select, textarea, button, *[tabindex], *[contenteditable]"));return b},isVisible:function(a){return!(0===a.offsetWidth||0==a.offsetHeight||"none"===(document.defaultView&&document.defaultView.getComputedStyle?document.defaultView.getComputedStyle(a,null).display:a.currentStyle?a.currentStyle.display:a.style.display))},
hasClass:function(a,b){return!(!a.className||!a.className.match(RegExp("(\\s|^)"+b+"(\\s|$)")))}}}}(),a=a||{};a.TextAreaNumber=null;a.load=!0;a.cmd={SpellTab:"spell",Thesaurus:"thes",GrammTab:"grammar"};a.dialog=null;a.optionNode=null;a.selectNode=null;a.grammerSuggest=null;a.textNode={};a.iframeMain=null;a.dataTemp="";a.div_overlay=null;a.textNodeInfo={};a.selectNode={};a.selectNodeResponce={};a.langList=null;a.langSelectbox=null;a.banner="";a.show_grammar=null;a.div_overlay_no_check=null;a.targetFromFrame=
{};a.onLoadOverlay=null;a.LocalizationComing={};a.OverlayPlace=null;a.LocalizationButton={ChangeTo:{instance:null,text:"Change to"},ChangeAll:{instance:null,text:"Change All"},IgnoreWord:{instance:null,text:"Ignore word"},IgnoreAllWords:{instance:null,text:"Ignore all words"},Options:{instance:null,text:"Options",optionsDialog:{instance:null}},AddWord:{instance:null,text:"Add word"},FinishChecking:{instance:null,text:"Finish Checking"}};a.LocalizationLabel={ChangeTo:{instance:null,text:"Change to"},
Suggestions:{instance:null,text:"Suggestions"}};var A=function(b){var c,d;for(d in b)c=b[d].instance.getElement().getFirst()||b[d].instance.getElement(),c.setText(a.LocalizationComing[d])},B=function(b){for(var c in b){if(!b[c].instance.setLabel)break;b[c].instance.setLabel(a.LocalizationComing[c])}},j,r;a.framesetHtml=function(b){return"<iframe id="+a.iframeNumber+"_"+b+' frameborder="0" allowtransparency="1" style="width:100%;border: 1px solid #AEB3B9;overflow: auto;background:#fff; border-radius: 3px;"></iframe>'};
a.setIframe=function(b,c){var d;d=a.framesetHtml(c);var f=a.iframeNumber+"_"+c;b.getElement().setHtml(d);d=document.getElementById(f);d=d.contentWindow?d.contentWindow:d.contentDocument.document?d.contentDocument.document:d.contentDocument;d.document.open();d.document.write('<!DOCTYPE html><html><head><meta charset="UTF-8"><title>iframe</title><style>html,body{margin: 0;height: 100%;font: 13px/1.555 "Trebuchet MS", sans-serif;}a{color: #888;font-weight: bold;text-decoration: none;border-bottom: 1px solid #888;}.main-box {color:#252525;padding: 3px 5px;text-align: justify;}.main-box p{margin: 0 0 14px;}.main-box .cerr{color: #f00000;border-bottom-color: #f00000;}</style></head><body><div id="content" class="main-box"></div><iframe src="" frameborder="0" id="spelltext" name="spelltext" style="display:none; width: 100%" ></iframe><iframe src="" frameborder="0" id="loadsuggestfirst" name="loadsuggestfirst" style="display:none; width: 100%" ></iframe><iframe src="" frameborder="0" id="loadspellsuggestall" name="loadspellsuggestall" style="display:none; width: 100%" ></iframe><iframe src="" frameborder="0" id="loadOptionsForm" name="loadOptionsForm" style="display:none; width: 100%" ></iframe><script>(function(window) {var ManagerPostMessage = function() {var _init = function(handler) {if (document.addEventListener) {window.addEventListener("message", handler, false);} else {window.attachEvent("onmessage", handler);};};var _sendCmd = function(o) {var str,type = Object.prototype.toString,fn = o.fn || null,id = o.id || "",target = o.target || window,message = o.message || { "id": id };if (o.message && type.call(o.message) == "[object Object]") {(o.message["id"]) ? o.message["id"] : o.message["id"] = id;message = o.message;};str = JSON.stringify(message, fn);target.postMessage(str, "*");};return {init: _init,send: _sendCmd};};var manageMessageTmp = new ManagerPostMessage;var appString = (function(){var spell = parent.CKEDITOR.config.wsc.DefaultParams.scriptPath;var serverUrl = parent.CKEDITOR.config.wsc.DefaultParams.serviceHost;return serverUrl + spell;})();function loadScript(src, callback) {var scriptTag = document.createElement("script");scriptTag.type = "text/javascript";callback ? callback : callback = function() {};if(scriptTag.readyState) {scriptTag.onreadystatechange = function() {if (scriptTag.readyState == "loaded" ||scriptTag.readyState == "complete") {scriptTag.onreadystatechange = null;setTimeout(function(){scriptTag.parentNode.removeChild(scriptTag)},1);callback();}};}else{scriptTag.onload = function() {setTimeout(function(){scriptTag.parentNode.removeChild(scriptTag)},1);callback();};};scriptTag.src = src;document.getElementsByTagName("head")[0].appendChild(scriptTag);};window.onload = function(){loadScript(appString, function(){manageMessageTmp.send({"id": "iframeOnload","target": window.parent});});}})(this);<\/script></body></html>');
d.document.close()};a.setCurrentIframe=function(b){a.setIframe(a.dialog._.contents[b].Content,b)};a.setHeightBannerFrame=function(){var b=a.dialog.getContentElement("SpellTab","banner").getElement(),c=a.dialog.getContentElement("GrammTab","banner").getElement(),d=a.dialog.getContentElement("Thesaurus","banner").getElement();b.setStyle("height","90px");c.setStyle("height","90px");d.setStyle("height","90px")};a.setHeightFrame=function(){document.getElementById(a.iframeNumber+"_"+a.dialog._.currentTabId).style.height=
"240px"};a.sendData=function(b){var c=b._.currentTabId,d=b._.contents[c].Content,f,g;a.setIframe(d,c);var e=function(e){e=e||window.event;e.data.getTarget().is("a")&&c!=b._.currentTabId&&(c=b._.currentTabId,d=b._.contents[c].Content,f=a.iframeNumber+"_"+c,a.div_overlay.setEnable(),d.getElement().getChildCount()?v(a.targetFromFrame[f],a.cmd[c]):(a.setIframe(d,c),g=document.getElementById(f),a.targetFromFrame[f]=g.contentWindow))};b.parts.tabs.removeListener("click",e);b.parts.tabs.on("click",e)};a.buildSelectLang=
function(a){var c=new CKEDITOR.dom.element("div"),d=new CKEDITOR.dom.element("select"),a="wscLang"+a;c.addClass("cke_dialog_ui_input_select");c.setAttribute("role","presentation");c.setStyles({height:"auto",position:"absolute",right:"0",top:"-1px",width:"160px","white-space":"normal"});d.setAttribute("id",a);d.addClass("cke_dialog_ui_input_select");d.setStyles({width:"160px"});c.append(d);return c};a.buildOptionLang=function(b,c){var d=document.getElementById("wscLang"+c),f=document.createDocumentFragment(),
g,e,i=[];if(0===d.options.length){for(g in b)i.push([g,b[g]]);i.sort();for(var k=0;k<i.length;k++)g=document.createElement("option"),g.setAttribute("value",i[k][1]),e=document.createTextNode(i[k][0]),g.appendChild(e),i[k][1]==a.selectingLang&&g.setAttribute("selected","selected"),f.appendChild(g);d.appendChild(f)}};a.buildOptionSynonyms=function(b){var b=a.selectNodeResponce[b],c=q(a.selectNode.synonyms);a.selectNode.synonyms.clear();for(var d=0;d<b.length;d++){var f=document.createElement("option");
f.text=b[d];f.value=b[d];c.$.add(f,d)}a.selectNode.synonyms.getInputElement().$.firstChild.selected=!0;a.textNode.Thesaurus.setValue(a.selectNode.synonyms.getInputElement().getValue())};var s=function(a){var c=document,d=a.target||c.body,f=a.id||"overlayBlock",g=a.opacity||"0.9",a=a.background||"#f1f1f1",e=c.getElementById(f),i=e||c.createElement("div");i.style.cssText="position: absolute;top:30px;bottom:41px;left:1px;right:1px;z-index: 10020;padding:0;margin:0;background:"+a+";opacity: "+g+";filter: alpha(opacity="+
100*g+");display: none;";i.id=f;e||d.appendChild(i);return{setDisable:function(){i.style.display="none"},setEnable:function(){i.style.display="block"}}},C=function(b,c,d){var f=new CKEDITOR.dom.element("div"),e=new CKEDITOR.dom.element("input"),h=new CKEDITOR.dom.element("label"),i="wscGrammerSuggest"+b+"_"+c;f.addClass("cke_dialog_ui_input_radio");f.setAttribute("role","presentation");f.setStyles({width:"97%",padding:"5px","white-space":"normal"});e.setAttributes({type:"radio",value:c,name:"wscGrammerSuggest",
id:i});e.setStyles({"float":"left"});e.on("click",function(b){a.textNode.GrammTab.setValue(b.sender.getValue())});d&&e.setAttribute("checked",!0);e.addClass("cke_dialog_ui_radio_input");h.appendText(b);h.setAttribute("for",i);h.setStyles({display:"block","line-height":"16px","margin-left":"18px","white-space":"normal"});f.append(e);f.append(h);return f},w=function(a){a=a||"true";null!==a&&"false"==a&&m()},n=function(b){var c=new z(b),b="wscLang"+a.dialog.getParentEditor().name,b=document.getElementById(b),
d=a.iframeNumber+"_"+a.dialog._.currentTabId;a.buildOptionLang(c.setLangList,a.dialog.getParentEditor().name);x[c.getCurrentLangGroup(a.selectingLang)]();w(a.show_grammar);b.onchange=function(){x[c.getCurrentLangGroup(this.value)]();w(a.show_grammar);a.div_overlay.setEnable();a.selectingLang=this.value;e.postMessage.send({message:{changeLang:a.selectingLang,text:a.dataTemp},target:a.targetFromFrame[d],id:"selectionLang_outer__page"})}},D=function(b){if("no_any_suggestions"==b){b="No suggestions";
a.LocalizationButton.ChangeTo.instance.disable();a.LocalizationButton.ChangeAll.instance.disable();var c=function(b){b=a.LocalizationButton[b].instance;b.getElement().hasClass("cke_disabled")?b.getElement().setStyle("color","#a0a0a0"):b.disable()};c("ChangeTo");c("ChangeAll")}else a.LocalizationButton.ChangeTo.instance.enable(),a.LocalizationButton.ChangeAll.instance.enable(),a.LocalizationButton.ChangeTo.instance.getElement().setStyle("color","#333"),a.LocalizationButton.ChangeAll.instance.getElement().setStyle("color",
"#333");return b},F={iframeOnload:function(){a.div_overlay.setEnable();var b=a.dialog._.currentTabId;v(a.targetFromFrame[a.iframeNumber+"_"+b],a.cmd[b])},suggestlist:function(b){delete b.id;a.div_overlay_no_check.setDisable();t();n(a.langList);var c=D(b.word),d="";c instanceof Array&&(c=b.word[0]);d=c=c.split(",");a.textNode.SpellTab.setValue(d[0]);b=q(r);r.clear();for(c=0;c<d.length;c++){var f=document.createElement("option");f.text=d[c];f.value=d[c];b.$.add(f,c)}l();a.div_overlay.setDisable()},
grammerSuggest:function(b){delete b.id;delete b.mocklangs;t();n(a.langList);var c=b.grammSuggest[0];a.grammerSuggest.getElement().setHtml("");a.textNode.GrammTab.reset();a.textNode.GrammTab.setValue(c);a.textNodeInfo.GrammTab.getElement().setHtml("");a.textNodeInfo.GrammTab.getElement().setText(b.info);for(var b=b.grammSuggest,c=b.length,d=!0,f=0;f<c;f++)a.grammerSuggest.getElement().append(C(b[f],b[f],d)),d=!1;l();a.div_overlay.setDisable()},thesaurusSuggest:function(b){delete b.id;delete b.mocklangs;
t();n(a.langList);a.selectNodeResponce=b;a.textNode.Thesaurus.reset();var c=q(a.selectNode.categories),d=0;a.selectNode.categories.clear();for(var f in b){var e=document.createElement("option");e.text=f;e.value=f;c.$.add(e,d);d++}b=a.selectNode.categories.getInputElement().getChildren().$[0].value;a.selectNode.categories.getInputElement().getChildren().$[0].selected=!0;a.buildOptionSynonyms(b);l();a.div_overlay.setDisable()},finish:function(b){delete b.id;E();b=a.dialog.getContentElement(a.dialog._.currentTabId,
"BlockFinishChecking").getElement();b.removeStyle("display");b.removeStyle("position");b.removeStyle("left");b.show();a.div_overlay.setDisable()},settext:function(b){delete b.id;a.dialog.getParentEditor().getCommand("checkspell");var c=a.dialog.getParentEditor();try{c.focus()}catch(d){}c.setData(b.text,function(){a.dataTemp="";c.unlockSelection();c.fire("saveSnapshot");a.dialog.hide()})},ReplaceText:function(b){delete b.id;a.div_overlay.setEnable();a.dataTemp=b.text;a.selectingLang=b.currentLang;
window.setTimeout(function(){try{a.div_overlay.setDisable()}catch(b){}},500);A(a.LocalizationButton);B(a.LocalizationLabel)},options_checkbox_send:function(b){delete b.id;b={osp:e.cookie.get("osp"),udn:e.cookie.get("udn"),cust_dic_ids:a.cust_dic_ids};e.postMessage.send({message:b,target:a.targetFromFrame[a.iframeNumber+"_"+a.dialog._.currentTabId],id:"options_outer__page"})},getOptions:function(b){var c=b.DefOptions.udn;a.LocalizationComing=b.DefOptions.localizationButtonsAndText;a.show_grammar=b.show_grammar;
a.langList=b.lang;if(a.bnr=b.bannerId){a.setHeightBannerFrame();var d=b.banner;a.dialog.getContentElement(a.dialog._.currentTabId,"banner").getElement().setHtml(d)}else a.setHeightFrame();"undefined"==c&&(a.userDictionaryName?(c=a.userDictionaryName,d={osp:e.cookie.get("osp"),udn:a.userDictionaryName,cust_dic_ids:a.cust_dic_ids,id:"options_dic_send",udnCmd:"create"},e.postMessage.send({message:d,target:a.targetFromFrame[void 0]})):c="");e.cookie.set("osp",b.DefOptions.osp);e.cookie.set("udn",c);e.cookie.set("cust_dic_ids",
b.DefOptions.cust_dic_ids);e.postMessage.send({id:"giveOptions"})},options_dic_send:function(){var b={osp:e.cookie.get("osp"),udn:e.cookie.get("udn"),cust_dic_ids:a.cust_dic_ids,id:"options_dic_send",udnCmd:e.cookie.get("udnCmd")};e.postMessage.send({message:b,target:a.targetFromFrame[a.iframeNumber+"_"+a.dialog._.currentTabId]})},data:function(a){delete a.id},giveOptions:function(){},setOptionsConfirmF:function(){},setOptionsConfirmT:function(){j.setValue("")},clickBusy:function(){a.div_overlay.setEnable()},
suggestAllCame:function(){a.div_overlay.setDisable();a.div_overlay_no_check.setDisable()},TextCorrect:function(){n(a.langList)}},y=function(a){a=a||window.event;if((a=window.JSON.parse(a.data))&&a.id)F[a.id](a)},v=function(b,c,d,f){c=c||CKEDITOR.config.wsc_cmd;d=d||a.dataTemp;e.postMessage.send({message:{customerId:a.wsc_customerId,text:d,txt_ctrl:a.TextAreaNumber,cmd:c,cust_dic_ids:a.cust_dic_ids,udn:a.userDictionaryName,slang:a.selectingLang,reset_suggest:f||!1},target:b,id:"data_outer__page"});
a.div_overlay.setEnable()},x={superset:function(){a.dialog.showPage("Thesaurus");a.dialog.showPage("GrammTab");o()},usual:function(){u();m();o()},rtl:function(){u();m();o()}},G=function(b){var c=new function(a){var b={};return{getCmdByTab:function(c){for(var e in a)b[a[e]]=e;return b[c]}}}(a.cmd);b.selectPage(c.getCmdByTab(CKEDITOR.config.wsc_cmd));a.sendData(b)},u=function(){a.dialog.hidePage("Thesaurus")},m=function(){a.dialog.hidePage("GrammTab")},o=function(){a.dialog.showPage("SpellTab")},l=
function(){var b=a.dialog.getContentElement(a.dialog._.currentTabId,"bottomGroup").getElement();b.removeStyle("display");b.removeStyle("position");b.removeStyle("left");b.show()},E=function(){var b=a.dialog.getContentElement(a.dialog._.currentTabId,"bottomGroup").getElement(),c=document.activeElement,d;b.setStyles({display:"block",position:"absolute",left:"-9999px"});setTimeout(function(){b.removeStyle("display");b.removeStyle("position");b.removeStyle("left");b.hide();a.dialog._.editor.focusManager.currentActive.focusNext();
d=e.misc.findFocusable(a.dialog.parts.contents);if(!e.misc.hasClass(c,"cke_dialog_tab")&&!e.misc.hasClass(c,"cke_dialog_contents_body")&&e.misc.isVisible(c))try{c.focus()}catch(f){}else for(var g=0,h;g<d.count();g++)if(h=d.getItem(g),e.misc.isVisible(h.$)){try{h.$.focus()}catch(i){}break}},0)},t=function(){var b=a.dialog.getContentElement(a.dialog._.currentTabId,"BlockFinishChecking").getElement(),c=document.activeElement,d;b.setStyles({display:"block",position:"absolute",left:"-9999px"});setTimeout(function(){b.removeStyle("display");
b.removeStyle("position");b.removeStyle("left");b.hide();a.dialog._.editor.focusManager.currentActive.focusNext();d=e.misc.findFocusable(a.dialog.parts.contents);if(!e.misc.hasClass(c,"cke_dialog_tab")&&!e.misc.hasClass(c,"cke_dialog_contents_body")&&e.misc.isVisible(c))try{c.focus()}catch(f){}else for(var g=0,h;g<d.count();g++)if(h=d.getItem(g),e.misc.isVisible(h.$)){try{h.$.focus()}catch(i){}break}},0)};CKEDITOR.dialog.add("checkspell",function(b){var c=function(){this.getElement().focus();a.div_overlay.setEnable();
var c=a.dialog._.currentTabId,f=a.iframeNumber+"_"+c,g=a.textNode[c].getValue(),h=this.getElement().getAttribute("title-cmd");e.postMessage.send({message:{cmd:h,tabId:c,new_word:g},target:a.targetFromFrame[f],id:"cmd_outer__page"});("ChangeTo"==h||"ChangeAll"==h)&&b.fire("saveSnapshot");"FinishChecking"==h&&b.config.wsc_onFinish.call(CKEDITOR.document.getWindow().getFrame())};return{title:b.config.wsc_dialogTitle||b.lang.wsc.title,minWidth:560,minHeight:444,buttons:[CKEDITOR.dialog.cancelButton],
onLoad:function(){a.dialog=this;u();m();o()},onShow:function(){b.lockSelection(b.getSelection());a.TextAreaNumber="cke_textarea_"+CKEDITOR.currentInstance.name;e.postMessage.init(y);a.dataTemp=CKEDITOR.currentInstance.getData();a.OverlayPlace=a.dialog.parts.tabs.getParent().$;if(CKEDITOR&&CKEDITOR.config){a.wsc_customerId=b.config.wsc_customerId;a.cust_dic_ids=b.config.wsc_customDictionaryIds;a.userDictionaryName=b.config.wsc_userDictionaryName;a.defaultLanguage=CKEDITOR.config.defaultLanguage;var c=
"file:"==document.location.protocol?"http:":document.location.protocol;CKEDITOR.scriptLoader.load(b.config.wsc_customLoaderScript||c+"//loader.webspellchecker.net/sproxy_fck/sproxy.php?plugin=fck2&customerid="+a.wsc_customerId+"&cmd=script&doc=wsc&schema=22",function(c){CKEDITOR.config&&CKEDITOR.config.wsc&&CKEDITOR.config.wsc.DefaultParams?(a.serverLocationHash=CKEDITOR.config.wsc.DefaultParams.serviceHost,a.logotype=CKEDITOR.config.wsc.DefaultParams.logoPath,a.loadIcon=CKEDITOR.config.wsc.DefaultParams.iconPath,
a.loadIconEmptyEditor=CKEDITOR.config.wsc.DefaultParams.iconPathEmptyEditor,a.LangComparer=new CKEDITOR.config.wsc.DefaultParams._SP_FCK_LangCompare):(a.serverLocationHash=DefaultParams.serviceHost,a.logotype=DefaultParams.logoPath,a.loadIcon=DefaultParams.iconPath,a.loadIconEmptyEditor=DefaultParams.iconPathEmptyEditor,a.LangComparer=new _SP_FCK_LangCompare);a.pluginPath=CKEDITOR.getUrl(b.plugins.wsc.path);a.iframeNumber=a.TextAreaNumber;a.templatePath=a.pluginPath+"dialogs/tmp.html";a.LangComparer.setDefaulLangCode(a.defaultLanguage);
a.currentLang=b.config.wsc_lang||a.LangComparer.getSPLangCode(b.langCode);a.selectingLang=a.currentLang;a.div_overlay=new s({opacity:"1",background:"#fff url("+a.loadIcon+") no-repeat 50% 50%",target:a.OverlayPlace});var d=a.dialog.parts.tabs.getId(),d=CKEDITOR.document.getById(d);d.setStyle("width","97%");d.getElementsByTag("DIV").count()||d.append(a.buildSelectLang(a.dialog.getParentEditor().name));a.div_overlay_no_check=new s({opacity:"1",id:"no_check_over",background:"#fff url("+a.loadIconEmptyEditor+
") no-repeat 50% 50%",target:a.OverlayPlace});c&&(G(a.dialog),a.dialog.setupContent(a.dialog))})}else a.dialog.hide()},onHide:function(){var c=CKEDITOR.plugins.scayt,f=b.scayt;b.unlockSelection();c&&(f&&c.state[b.name]&&f.setMarkupPaused)&&f.setMarkupPaused(!1);a.dataTemp="";e.postMessage.unbindHandler(y)},contents:[{id:"SpellTab",label:"SpellChecker",accessKey:"S",elements:[{type:"html",id:"banner",label:"banner",style:"",html:"<div></div>"},{type:"html",id:"Content",label:"spellContent",html:"",
setup:function(b){var b=a.iframeNumber+"_"+b._.currentTabId,c=document.getElementById(b);a.targetFromFrame[b]=c.contentWindow}},{type:"hbox",id:"bottomGroup",style:"width:560px; margin: 0 auto;",widths:["50%","50%"],children:[{type:"hbox",id:"leftCol",align:"left",width:"50%",children:[{type:"vbox",id:"rightCol1",widths:["50%","50%"],children:[{type:"text",id:"text",label:a.LocalizationLabel.ChangeTo.text+":",labelLayout:"horizontal",labelStyle:"font: 12px/25px arial, sans-serif;",width:"140px","default":"",
onShow:function(){a.textNode.SpellTab=this;a.LocalizationLabel.ChangeTo.instance=this},onHide:function(){this.reset()}},{type:"hbox",id:"rightCol",align:"right",width:"30%",children:[{type:"vbox",id:"rightCol_col__left",children:[{type:"text",id:"labelSuggestions",label:a.LocalizationLabel.Suggestions.text+":",onShow:function(){a.LocalizationLabel.Suggestions.instance=this;this.getInputElement().setStyles({display:"none"})}},{type:"html",id:"logo",html:'<img width="99" height="68" border="0" src="" title="WebSpellChecker.net" alt="WebSpellChecker.net" style="display: inline-block;">',
setup:function(){this.getElement().$.src=a.logotype;this.getElement().getParent().setStyles({"text-align":"left"})}}]},{type:"select",id:"list_of_suggestions",labelStyle:"font: 12px/25px arial, sans-serif;",size:"6",inputStyle:"width: 140px; height: auto;",items:[["loading..."]],onShow:function(){r=this},onChange:function(){a.textNode.SpellTab.setValue(this.getValue())}}]}]}]},{type:"hbox",id:"rightCol",align:"right",width:"50%",children:[{type:"vbox",id:"rightCol_col__left",widths:["50%","50%","50%",
"50%"],children:[{type:"button",id:"ChangeTo",label:a.LocalizationButton.ChangeTo.text,title:"Change to",style:"width: 100%;",onLoad:function(){this.getElement().setAttribute("title-cmd",this.id);a.LocalizationButton.ChangeTo.instance=this},onClick:c},{type:"button",id:"ChangeAll",label:a.LocalizationButton.ChangeAll.text,title:"Change All",style:"width: 100%;",onLoad:function(){this.getElement().setAttribute("title-cmd",this.id);a.LocalizationButton.ChangeAll.instance=this},onClick:c},{type:"button",
id:"AddWord",label:a.LocalizationButton.AddWord.text,title:"Add word",style:"width: 100%;",onLoad:function(){this.getElement().setAttribute("title-cmd",this.id);a.LocalizationButton.AddWord.instance=this},onClick:c},{type:"button",id:"FinishChecking",label:a.LocalizationButton.FinishChecking.text,title:"Finish Checking",style:"width: 100%;margin-top: 9px;",onLoad:function(){this.getElement().setAttribute("title-cmd",this.id);a.LocalizationButton.FinishChecking.instance=this},onClick:c}]},{type:"vbox",
id:"rightCol_col__right",widths:["50%","50%","50%"],children:[{type:"button",id:"IgnoreWord",label:a.LocalizationButton.IgnoreWord.text,title:"Ignore word",style:"width: 100%;",onLoad:function(){this.getElement().setAttribute("title-cmd",this.id);a.LocalizationButton.IgnoreWord.instance=this},onClick:c},{type:"button",id:"IgnoreAllWords",label:a.LocalizationButton.IgnoreAllWords.text,title:"Ignore all words",style:"width: 100%;",onLoad:function(){this.getElement().setAttribute("title-cmd",this.id);
a.LocalizationButton.IgnoreAllWords.instance=this},onClick:c},{type:"button",id:"option",label:a.LocalizationButton.Options.text,title:"Option",style:"width: 100%;",onLoad:function(){a.LocalizationButton.Options.instance=this;"file:"==document.location.protocol&&this.disable()},onClick:function(){this.getElement().focus();"file:"==document.location.protocol?alert("WSC: Options functionality is disabled when runing from file system"):(p=document.activeElement,b.openDialog("options"))}}]}]}]},{type:"hbox",
id:"BlockFinishChecking",style:"width:560px; margin: 0 auto;",widths:["70%","30%"],onShow:function(){this.getElement().setStyles({display:"block",position:"absolute",left:"-9999px"})},onHide:l,children:[{type:"hbox",id:"leftCol",align:"left",width:"70%",children:[{type:"vbox",id:"rightCol1",setup:function(){this.getChild()[0].getElement().$.src=a.logotype;this.getChild()[0].getElement().getParent().setStyles({"text-align":"center"})},children:[{type:"html",id:"logo",html:'<img width="99" height="68" border="0" src="" title="WebSpellChecker.net" alt="WebSpellChecker.net" style="display: inline-block;">'}]}]},
{type:"hbox",id:"rightCol",align:"right",width:"30%",children:[{type:"vbox",id:"rightCol_col__left",children:[{type:"button",id:"Option_button",label:a.LocalizationButton.Options.text,title:"Option",style:"width: 100%;",onLoad:function(){this.getElement().setAttribute("title-cmd",this.id);"file:"==document.location.protocol&&this.disable()},onClick:function(){this.getElement().focus();"file:"==document.location.protocol?alert("WSC: Options functionality is disabled when runing from file system"):
(p=document.activeElement,b.openDialog("options"))}},{type:"button",id:"FinishChecking",label:a.LocalizationButton.FinishChecking.text,title:"Finish Checking",style:"width: 100%;",onLoad:function(){this.getElement().setAttribute("title-cmd",this.id)},onClick:c}]}]}]}]},{id:"GrammTab",label:"Grammar",accessKey:"G",elements:[{type:"html",id:"banner",label:"banner",style:"",html:"<div></div>"},{type:"html",id:"Content",label:"GrammarContent",html:"",setup:function(){var b=a.iframeNumber+"_"+a.dialog._.currentTabId,
c=document.getElementById(b);a.targetFromFrame[b]=c.contentWindow}},{type:"vbox",id:"bottomGroup",style:"width:560px; margin: 0 auto;",children:[{type:"hbox",id:"leftCol",widths:["66%","34%"],children:[{type:"vbox",children:[{type:"text",id:"text",label:"Change to:",labelLayout:"horizontal",labelStyle:"font: 12px/25px arial, sans-serif;",inputStyle:"float: right; width: 200px;","default":"",onShow:function(){a.textNode.GrammTab=this},onHide:function(){this.reset()}},{type:"html",id:"html_text",html:"<div style='min-height: 17px; line-height: 17px; padding: 5px; text-align: left;background: #F1F1F1;color: #595959; white-space: normal!important;'></div>",
onShow:function(){a.textNodeInfo.GrammTab=this}},{type:"html",id:"radio",html:"",onShow:function(){a.grammerSuggest=this}}]},{type:"vbox",children:[{type:"button",id:"ChangeTo",label:"Change to",title:"Change to",style:"width: 133px; float: right;",onLoad:function(){this.getElement().setAttribute("title-cmd",this.id)},onClick:c},{type:"button",id:"IgnoreWord",label:"Ignore word",title:"Ignore word",style:"width: 133px; float: right;",onLoad:function(){this.getElement().setAttribute("title-cmd",this.id)},
onClick:c},{type:"button",id:"IgnoreAllWords",label:"Ignore Problem",title:"Ignore Problem",style:"width: 133px; float: right;",onLoad:function(){this.getElement().setAttribute("title-cmd",this.id)},onClick:c},{type:"button",id:"FinishChecking",label:"Finish Checking",title:"Finish Checking",style:"width: 133px; float: right; margin-top: 9px;",onLoad:function(){this.getElement().setAttribute("title-cmd",this.id)},onClick:c}]}]}]},{type:"hbox",id:"BlockFinishChecking",style:"width:560px; margin: 0 auto;",
widths:["70%","30%"],onShow:function(){this.getElement().setStyles({display:"block",position:"absolute",left:"-9999px"})},onHide:l,children:[{type:"hbox",id:"leftCol",align:"left",width:"70%",children:[{type:"vbox",id:"rightCol1",children:[{type:"html",id:"logo",html:'<img width="99" height="68" border="0" src="" title="WebSpellChecker.net" alt="WebSpellChecker.net" style="display: inline-block;">',setup:function(){this.getElement().$.src=a.logotype;this.getElement().getParent().setStyles({"text-align":"center"})}}]}]},
{type:"hbox",id:"rightCol",align:"right",width:"30%",children:[{type:"vbox",id:"rightCol_col__left",children:[{type:"button",id:"FinishChecking",label:"Finish Checking",title:"Finish Checking",style:"width: 100%;",onLoad:function(){this.getElement().setAttribute("title-cmd",this.id)},onClick:c}]}]}]}]},{id:"Thesaurus",label:"Thesaurus",accessKey:"T",elements:[{type:"html",id:"banner",label:"banner",style:"",html:"<div></div>"},{type:"html",id:"Content",label:"spellContent",html:"",setup:function(){var b=
a.iframeNumber+"_"+a.dialog._.currentTabId,c=document.getElementById(b);a.targetFromFrame[b]=c.contentWindow}},{type:"vbox",id:"bottomGroup",style:"width:560px; margin: -10px auto; overflow: hidden;",children:[{type:"hbox",widths:["75%","25%"],children:[{type:"vbox",children:[{type:"hbox",widths:["65%","35%"],children:[{type:"text",id:"ChangeTo",label:"Change to:",labelLayout:"horizontal",inputStyle:"width: 160px;",labelStyle:"font: 12px/25px arial, sans-serif;","default":"",onShow:function(){a.textNode.Thesaurus=
this},onHide:function(){this.reset()}},{type:"button",id:"ChangeTo",label:"Change to",title:"Change to",style:"width: 121px; margin-top: 1px;",onLoad:function(){this.getElement().setAttribute("title-cmd",this.id)},onClick:c}]},{type:"hbox",children:[{type:"select",id:"categories",label:"Categories:",labelStyle:"font: 12px/25px arial, sans-serif;",size:"5",inputStyle:"width: 180px; height: auto;",items:[],onShow:function(){a.selectNode.categories=this},onChange:function(){a.buildOptionSynonyms(this.getValue())}},
{type:"select",id:"synonyms",label:"Synonyms:",labelStyle:"font: 12px/25px arial, sans-serif;",size:"5",inputStyle:"width: 180px; height: auto;",items:[],onShow:function(){a.selectNode.synonyms=this;a.textNode.Thesaurus.setValue(this.getValue())},onChange:function(){a.textNode.Thesaurus.setValue(this.getValue())}}]}]},{type:"vbox",width:"120px",style:"margin-top:46px;",children:[{type:"html",id:"logotype",label:"WebSpellChecker.net",html:'<img width="99" height="68" border="0" src="" title="WebSpellChecker.net" alt="WebSpellChecker.net" style="display: inline-block;">',
setup:function(){this.getElement().$.src=a.logotype;this.getElement().getParent().setStyles({"text-align":"center"})}},{type:"button",id:"FinishChecking",label:"Finish Checking",title:"Finish Checking",style:"width: 121px; float: right; margin-top: 9px;",onLoad:function(){this.getElement().setAttribute("title-cmd",this.id)},onClick:c}]}]}]},{type:"hbox",id:"BlockFinishChecking",style:"width:560px; margin: 0 auto;",widths:["70%","30%"],onShow:function(){this.getElement().setStyles({display:"block",
position:"absolute",left:"-9999px"})},children:[{type:"hbox",id:"leftCol",align:"left",width:"70%",children:[{type:"vbox",id:"rightCol1",children:[{type:"html",id:"logo",html:'<img width="99" height="68" border="0" src="" title="WebSpellChecker.net" alt="WebSpellChecker.net" style="display: inline-block;">',setup:function(){this.getElement().$.src=a.logotype;this.getElement().getParent().setStyles({"text-align":"center"})}}]}]},{type:"hbox",id:"rightCol",align:"right",width:"30%",children:[{type:"vbox",
id:"rightCol_col__left",children:[{type:"button",id:"FinishChecking",label:"Finish Checking",title:"Finish Checking",style:"width: 100%;",onLoad:function(){this.getElement().setAttribute("title-cmd",this.id)},onClick:c}]}]}]}]}]}});var p=null;CKEDITOR.dialog.add("options",function(){var b=null,c={},d={},f=null,g=null;e.cookie.get("udn");e.cookie.get("osp");var h=function(){g=this.getElement().getAttribute("title-cmd");var a=[];a[0]=d.IgnoreAllCapsWords;a[1]=d.IgnoreWordsNumbers;a[2]=d.IgnoreMixedCaseWords;
a[3]=d.IgnoreDomainNames;a=a.toString().replace(/,/g,"");e.cookie.set("osp",a);e.cookie.set("udnCmd",g?g:"ignore");"delete"!=g&&(a="",""!==j.getValue()&&(a=j.getValue()),e.cookie.set("udn",a));e.postMessage.send({id:"options_dic_send"})},i=function(){f.getElement().setHtml(a.LocalizationComing.error);f.getElement().show()};return{title:a.LocalizationComing.Options,minWidth:430,minHeight:130,resizable:CKEDITOR.DIALOG_RESIZE_NONE,contents:[{id:"OptionsTab",label:"Options",accessKey:"O",elements:[{type:"hbox",
id:"options_error",children:[{type:"html",style:"display: block;text-align: center;white-space: normal!important; font-size: 12px;color:red",html:"<div></div>",onShow:function(){f=this}}]},{type:"vbox",id:"Options_content",children:[{type:"hbox",id:"Options_manager",widths:["52%","48%"],children:[{type:"fieldset",label:"Spell Checking Options",style:"border: none;margin-top: 13px;padding: 10px 0 10px 10px",onShow:function(){this.getInputElement().$.children[0].innerHTML=a.LocalizationComing.SpellCheckingOptions},
children:[{type:"vbox",id:"Options_checkbox",children:[{type:"checkbox",id:"IgnoreAllCapsWords",label:"Ignore All-Caps Words",labelStyle:"margin-left: 5px; font: 12px/16px arial, sans-serif;display: inline-block;white-space: normal;",style:"float:left; min-height: 16px;","default":"",onClick:function(){d[this.id]=!this.getValue()?0:1}},{type:"checkbox",id:"IgnoreWordsNumbers",label:"Ignore Words with Numbers",labelStyle:"margin-left: 5px; font: 12px/16px arial, sans-serif;display: inline-block;white-space: normal;",
style:"float:left; min-height: 16px;","default":"",onClick:function(){d[this.id]=!this.getValue()?0:1}},{type:"checkbox",id:"IgnoreMixedCaseWords",label:"Ignore Mixed-Case Words",labelStyle:"margin-left: 5px; font: 12px/16px arial, sans-serif;display: inline-block;white-space: normal;",style:"float:left; min-height: 16px;","default":"",onClick:function(){d[this.id]=!this.getValue()?0:1}},{type:"checkbox",id:"IgnoreDomainNames",label:"Ignore Domain Names",labelStyle:"margin-left: 5px; font: 12px/16px arial, sans-serif;display: inline-block;white-space: normal;",
style:"float:left; min-height: 16px;","default":"",onClick:function(){d[this.id]=!this.getValue()?0:1}}]}]},{type:"vbox",id:"Options_DictionaryName",children:[{type:"text",id:"DictionaryName",style:"margin-bottom: 10px",label:"Dictionary Name:",labelLayout:"vertical",labelStyle:"font: 12px/25px arial, sans-serif;","default":"",onLoad:function(){j=this;this.setValue(a.userDictionaryName?a.userDictionaryName:(e.cookie.get("udn"),this.getValue()))},onShow:function(){j=this;this.setValue(!e.cookie.get("udn")?
this.getValue():e.cookie.get("udn"));this.setLabel(a.LocalizationComing.DictionaryName)},onHide:function(){this.reset()}},{type:"hbox",id:"Options_buttons",children:[{type:"vbox",id:"Options_leftCol_col",widths:["50%","50%"],children:[{type:"button",id:"create",label:"Create",title:"Create",style:"width: 100%;",onLoad:function(){this.getElement().setAttribute("title-cmd",this.id)},onShow:function(){(this.getElement().getFirst()||this.getElement()).setText(a.LocalizationComing.Create)},onClick:h},
{type:"button",id:"restore",label:"Restore",title:"Restore",style:"width: 100%;",onLoad:function(){this.getElement().setAttribute("title-cmd",this.id)},onShow:function(){(this.getElement().getFirst()||this.getElement()).setText(a.LocalizationComing.Restore)},onClick:h}]},{type:"vbox",id:"Options_rightCol_col",widths:["50%","50%"],children:[{type:"button",id:"rename",label:"Rename",title:"Rename",style:"width: 100%;",onLoad:function(){this.getElement().setAttribute("title-cmd",this.id)},onShow:function(){(this.getElement().getFirst()||
this.getElement()).setText(a.LocalizationComing.Rename)},onClick:h},{type:"button",id:"delete",label:"Remove",title:"Remove",style:"width: 100%;",onLoad:function(){this.getElement().setAttribute("title-cmd",this.id)},onShow:function(){(this.getElement().getFirst()||this.getElement()).setText(a.LocalizationComing.Remove)},onClick:h}]}]}]}]},{type:"hbox",id:"Options_text",children:[{type:"html",style:"text-align: justify;margin-top: 15px;white-space: normal!important; font-size: 12px;color:#777;",html:"<div>"+
a.LocalizationComing.OptionsTextIntro+"</div>",onShow:function(){this.getElement().setText(a.LocalizationComing.OptionsTextIntro)}}]}]}]}],buttons:[CKEDITOR.dialog.okButton,CKEDITOR.dialog.cancelButton],onOk:function(){var a=[];a[0]=d.IgnoreAllCapsWords;a[1]=d.IgnoreWordsNumbers;a[2]=d.IgnoreMixedCaseWords;a[3]=d.IgnoreDomainNames;a=a.toString().replace(/,/g,"");e.cookie.set("osp",a);e.cookie.set("udn",j.getValue());e.postMessage.send({id:"options_checkbox_send"});f.getElement().hide();f.getElement().setHtml(" ")},
onLoad:function(){b=this;c.IgnoreAllCapsWords=b.getContentElement("OptionsTab","IgnoreAllCapsWords");c.IgnoreWordsNumbers=b.getContentElement("OptionsTab","IgnoreWordsNumbers");c.IgnoreMixedCaseWords=b.getContentElement("OptionsTab","IgnoreMixedCaseWords");c.IgnoreDomainNames=b.getContentElement("OptionsTab","IgnoreDomainNames")},onShow:function(){e.postMessage.init(i);var b=e.cookie.get("osp").split("");d.IgnoreAllCapsWords=b[0];d.IgnoreWordsNumbers=b[1];d.IgnoreMixedCaseWords=b[2];d.IgnoreDomainNames=
b[3];!parseInt(d.IgnoreAllCapsWords,10)?c.IgnoreAllCapsWords.setValue("",!1):c.IgnoreAllCapsWords.setValue("checked",!1);!parseInt(d.IgnoreWordsNumbers,10)?c.IgnoreWordsNumbers.setValue("",!1):c.IgnoreWordsNumbers.setValue("checked",!1);!parseInt(d.IgnoreMixedCaseWords,10)?c.IgnoreMixedCaseWords.setValue("",!1):c.IgnoreMixedCaseWords.setValue("checked",!1);!parseInt(d.IgnoreDomainNames,10)?c.IgnoreDomainNames.setValue("",!1):c.IgnoreDomainNames.setValue("checked",!1);d.IgnoreAllCapsWords=!c.IgnoreAllCapsWords.getValue()?
0:1;d.IgnoreWordsNumbers=!c.IgnoreWordsNumbers.getValue()?0:1;d.IgnoreMixedCaseWords=!c.IgnoreMixedCaseWords.getValue()?0:1;d.IgnoreDomainNames=!c.IgnoreDomainNames.getValue()?0:1;c.IgnoreAllCapsWords.getElement().$.lastChild.innerHTML=a.LocalizationComing.IgnoreAllCapsWords;c.IgnoreWordsNumbers.getElement().$.lastChild.innerHTML=a.LocalizationComing.IgnoreWordsWithNumbers;c.IgnoreMixedCaseWords.getElement().$.lastChild.innerHTML=a.LocalizationComing.IgnoreMixedCaseWords;c.IgnoreDomainNames.getElement().$.lastChild.innerHTML=
a.LocalizationComing.IgnoreDomainNames},onHide:function(){e.postMessage.unbindHandler(i);if(p)try{p.focus()}catch(a){}}}});CKEDITOR.dialog.on("resize",function(b){var b=b.data,c=b.dialog,d=CKEDITOR.document.getById(a.iframeNumber+"_"+c._.currentTabId);"checkspell"==c._.name&&(a.bnr?d&&d.setSize("height",b.height-310):d&&d.setSize("height",b.height-220))});CKEDITOR.on("dialogDefinition",function(b){if("checkspell"===b.data.name){var c=b.data.definition;a.onLoadOverlay=new s({opacity:"1",background:"#fff",
target:c.dialog.parts.tabs.getParent().$});a.onLoadOverlay.setEnable();c.dialog.on("cancel",function(){c.dialog.getParentEditor().config.wsc_onClose.call(this.document.getWindow().getFrame());a.div_overlay.setDisable();a.onLoadOverlay.setDisable();return!1},this,null,-1)}})})();admin/ckeditor/plugins/wsc/dialogs/wsc.css0000644000352000025440000000232012450564214021324 0ustar  thediannthediann/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/

html, body
{
	background-color: transparent;
	margin: 0px;
	padding: 0px;
}

body
{
	padding: 10px;
}

body, td, input, select, textarea
{
	font-size: 11px;
	font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana;
}

.midtext
{
	padding:0px;
	margin:10px;
}

.midtext p
{
	padding:0px;
	margin:10px;
}

.Button
{
	border: #737357 1px solid;
	color: #3b3b1f;
	background-color: #c7c78f;
}

.PopupTabArea
{
	color: #737357;
	background-color: #e3e3c7;
}

.PopupTitleBorder
{
	border-bottom: #d5d59d 1px solid;
}
.PopupTabEmptyArea
{
	padding-left: 10px;
	border-bottom: #d5d59d 1px solid;
}

.PopupTab, .PopupTabSelected
{
	border-right: #d5d59d 1px solid;
	border-top: #d5d59d 1px solid;
	border-left: #d5d59d 1px solid;
	padding: 3px 5px 3px 5px;
	color: #737357;
}

.PopupTab
{
	margin-top: 1px;
	border-bottom: #d5d59d 1px solid;
	cursor: pointer;
}

.PopupTabSelected
{
	font-weight: bold;
	cursor: default;
	padding-top: 4px;
	border-bottom: #f1f1e3 1px solid;
	background-color: #f1f1e3;
}
admin/ckeditor/plugins/image/0000755000352000025440000000000014373776770016707 5ustar  thediannthediannadmin/ckeditor/plugins/image/images/0000755000352000025440000000000014373776770020154 5ustar  thediannthediannadmin/ckeditor/plugins/image/images/noimage.png0000644000352000025440000000410312450564214022255 0ustar  thediannthediann�PNG


IHDR((� H_PLTE�VV�\\�TT⟟�XX⠠���▖�bb��II�ff�``�CC�FF�MM�ZZ㮮㳳����SSᆆ቉⚚�ww�WW�xx�~~���⑑���ጌ���㭭㣣����DD㻻����nn⨨ᐐ�ⓓ����^^�XX���ᗗ�NN�oo�KK�AA�ll�tt�UU└����JJᎎ������㵵㱱㽽����uv�ee㲲�����⥥㼼����PP���ፍ㪪�[[㺺㶶�mm㾾�qq�}}�������yy����PP�QQ������㰰㷷�⛛☘�ss❝�rr�ss㯯✜ᄄኊ���㫫ዋ���⭭ለ�]]�||㝝�GG♙㘘�dd�ii�kk潽�pp�zz�HH➞�����������NN䟞㴴���⣣�^^�����??����������;;����aa⦦��ᕕ�SS����>>��������||������ᇇᅅ�⸸ⱱ⪪㢢⬬ႂ人�QQ㸸���䱱㿿�hh㧧�RR⎎�jj���㜜����������ab���毮���䥥������⽽⮮���⫫洴⢢㬬���汱䵵䷷⧧㦦庹����绺�����������䨨�������ᄃ���RR���ᓓ㹹䠟�UU����99�@@�JJ����77䪪�SS�PP�ff躹似���䲲᜜����Ⲳ���❞ᘘ⋋纹⍍㚚��ⷷ�rs�zzYp��IDATx^=���H���6�m۶m��o۶m۶͵����WS����[I�ʯ���PP�رc?BQQ�`4
M<b%:������m�
�V�ă�^��jWlKL�rtq9�F=��a�yyj���S��yp���FQУ�Z���y�x���Ř19���|�#���9fǎ����и�L�Bp4f��
��������JM}m݊]S7�Z�řpΙ(�;\Y��������	������Ѐ����^�	
###C�R(��V��S3��Ե%0F)�\0 ���]/��}����MR\��������x��ۧ[��?[S��~�y�p]q����zC�Ȃ*��o��j!*j�nk��A�]YW|�ecc��)###E��"�P�`k1%��j�]A�O��M��u��h:Am�Q(�F�	l���x�mr�Ɩ���W��N�P�6��>G��ˆSP��Z��;�v�v$E���k��Xಹ�ҥ�f���SY%�B9k@���-��:f����A�;�4���r�D9�)z@U^N�i�̲�����\˻�j+I��ʲ�r������$M��W��h|i�]�o��
��i^��H�I:���s��]R@���/͵k"��L���J[��"�ew3V�J뛒�0JB�1��$m�HV׵��`�>c{]�j�*i�����I筮+��|}�x���)�/��b�u���e�c���1 �Q�����e��=����޻�1U�w�]�4ƻ�x�g�pz��ݜ_��j���]��u�YJ��g��vh0�`��Z���x�'T��/�Z�;�����Jy�ׯ��������M͛/�*�1��G��*�+2ݽ^X�nv:����>��/���0*Au�����[Sq�K`C�^\�ߢ���gz�+KQ6.����\:�~�������l���;�z��Ĩ�q{Y=�̣K�|�|gg�3��C��hf
=��C�(k����AgOv|��I�&����#`��r4hӷ�E��&����X�%!!av�-}�|�ꕋ�{�qN)d2Q�;�͍g��-�@LT��m����t�6>-,�w�y��3�:;;����<���(��9,oT��Wb����ZZr8�K.w���|!"���Bt6�� ��}�r9�iX�=9���W`��Ȇ݆;&�j�,s���p� ?��騷-E�w���f�z��S�b�,Y�2=s&û��y<��{<O�����[Q�'����TF�WgZIEND�B`�admin/ckeditor/plugins/image/dialogs/0000755000352000025440000000000014373776770020331 5ustar  thediannthediannadmin/ckeditor/plugins/image/dialogs/image.js0000644000352000025440000005032012450564214021727 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
(function(){var r=function(c,j){function r(){var a=arguments,b=this.getContentElement("advanced","txtdlgGenStyle");b&&b.commit.apply(b,a);this.foreach(function(b){b.commit&&"txtdlgGenStyle"!=b.id&&b.commit.apply(b,a)})}function i(a){if(!s){s=1;var b=this.getDialog(),d=b.imageElement;if(d){this.commit(f,d);for(var a=[].concat(a),e=a.length,c,g=0;g<e;g++)(c=b.getContentElement.apply(b,a[g].split(":")))&&c.setup(f,d)}s=0}}var f=1,k=/^\s*(\d+)((px)|\%)?\s*$/i,v=/(^\s*(\d+)((px)|\%)?\s*$)|^$/i,o=/^\d+px$/,
w=function(){var a=this.getValue(),b=this.getDialog(),d=a.match(k);d&&("%"==d[2]&&l(b,!1),a=d[1]);b.lockRatio&&(d=b.originalElement,"true"==d.getCustomData("isReady")&&("txtHeight"==this.id?(a&&"0"!=a&&(a=Math.round(d.$.width*(a/d.$.height))),isNaN(a)||b.setValueOf("info","txtWidth",a)):(a&&"0"!=a&&(a=Math.round(d.$.height*(a/d.$.width))),isNaN(a)||b.setValueOf("info","txtHeight",a))));g(b)},g=function(a){if(!a.originalElement||!a.preview)return 1;a.commitContent(4,a.preview);return 0},s,l=function(a,
b){if(!a.getContentElement("info","ratioLock"))return null;var d=a.originalElement;if(!d)return null;if("check"==b){if(!a.userlockRatio&&"true"==d.getCustomData("isReady")){var e=a.getValueOf("info","txtWidth"),c=a.getValueOf("info","txtHeight"),d=1E3*d.$.width/d.$.height,f=1E3*e/c;a.lockRatio=!1;!e&&!c?a.lockRatio=!0:!isNaN(d)&&!isNaN(f)&&Math.round(d)==Math.round(f)&&(a.lockRatio=!0)}}else void 0!=b?a.lockRatio=b:(a.userlockRatio=1,a.lockRatio=!a.lockRatio);e=CKEDITOR.document.getById(p);a.lockRatio?
e.removeClass("cke_btn_unlocked"):e.addClass("cke_btn_unlocked");e.setAttribute("aria-checked",a.lockRatio);CKEDITOR.env.hc&&e.getChild(0).setHtml(a.lockRatio?CKEDITOR.env.ie?"■":"▣":CKEDITOR.env.ie?"□":"▢");return a.lockRatio},x=function(a){var b=a.originalElement;if("true"==b.getCustomData("isReady")){var d=a.getContentElement("info","txtWidth"),e=a.getContentElement("info","txtHeight");d&&d.setValue(b.$.width);e&&e.setValue(b.$.height)}g(a)},y=function(a,b){function d(a,b){var d=a.match(k);return d?
("%"==d[2]&&(d[1]+="%",l(e,!1)),d[1]):b}if(a==f){var e=this.getDialog(),c="",g="txtWidth"==this.id?"width":"height",h=b.getAttribute(g);h&&(c=d(h,c));c=d(b.getStyle(g),c);this.setValue(c)}},t,q=function(){var a=this.originalElement,b=CKEDITOR.document.getById(m);a.setCustomData("isReady","true");a.removeListener("load",q);a.removeListener("error",h);a.removeListener("abort",h);b&&b.setStyle("display","none");this.dontResetSize||x(this);this.firstLoad&&CKEDITOR.tools.setTimeout(function(){l(this,"check")},
0,this);this.dontResetSize=this.firstLoad=!1},h=function(){var a=this.originalElement,b=CKEDITOR.document.getById(m);a.removeListener("load",q);a.removeListener("error",h);a.removeListener("abort",h);a=CKEDITOR.getUrl(CKEDITOR.plugins.get("image").path+"images/noimage.png");this.preview&&this.preview.setAttribute("src",a);b&&b.setStyle("display","none");l(this,!1)},n=function(a){return CKEDITOR.tools.getNextId()+"_"+a},p=n("btnLockSizes"),u=n("btnResetSize"),m=n("ImagePreviewLoader"),A=n("previewLink"),
z=n("previewImage");return{title:c.lang.image["image"==j?"title":"titleButton"],minWidth:420,minHeight:360,onShow:function(){this.linkEditMode=this.imageEditMode=this.linkElement=this.imageElement=!1;this.lockRatio=!0;this.userlockRatio=0;this.dontResetSize=!1;this.firstLoad=!0;this.addLink=!1;var a=this.getParentEditor(),b=a.getSelection(),d=(b=b&&b.getSelectedElement())&&a.elementPath(b).contains("a",1),c=CKEDITOR.document.getById(m);c&&c.setStyle("display","none");t=new CKEDITOR.dom.element("img",
a.document);this.preview=CKEDITOR.document.getById(z);this.originalElement=a.document.createElement("img");this.originalElement.setAttribute("alt","");this.originalElement.setCustomData("isReady","false");if(d){this.linkElement=d;this.linkEditMode=!0;c=d.getChildren();if(1==c.count()){var g=c.getItem(0).getName();if("img"==g||"input"==g)this.imageElement=c.getItem(0),"img"==this.imageElement.getName()?this.imageEditMode="img":"input"==this.imageElement.getName()&&(this.imageEditMode="input")}"image"==
j&&this.setupContent(2,d)}if(this.customImageElement)this.imageEditMode="img",this.imageElement=this.customImageElement,delete this.customImageElement;else if(b&&"img"==b.getName()&&!b.data("cke-realelement")||b&&"input"==b.getName()&&"image"==b.getAttribute("type"))this.imageEditMode=b.getName(),this.imageElement=b;this.imageEditMode?(this.cleanImageElement=this.imageElement,this.imageElement=this.cleanImageElement.clone(!0,!0),this.setupContent(f,this.imageElement)):this.imageElement=a.document.createElement("img");
l(this,!0);CKEDITOR.tools.trim(this.getValueOf("info","txtUrl"))||(this.preview.removeAttribute("src"),this.preview.setStyle("display","none"))},onOk:function(){if(this.imageEditMode){var a=this.imageEditMode;"image"==j&&"input"==a&&confirm(c.lang.image.button2Img)?(this.imageElement=c.document.createElement("img"),this.imageElement.setAttribute("alt",""),c.insertElement(this.imageElement)):"image"!=j&&"img"==a&&confirm(c.lang.image.img2Button)?(this.imageElement=c.document.createElement("input"),
this.imageElement.setAttributes({type:"image",alt:""}),c.insertElement(this.imageElement)):(this.imageElement=this.cleanImageElement,delete this.cleanImageElement)}else"image"==j?this.imageElement=c.document.createElement("img"):(this.imageElement=c.document.createElement("input"),this.imageElement.setAttribute("type","image")),this.imageElement.setAttribute("alt","");this.linkEditMode||(this.linkElement=c.document.createElement("a"));this.commitContent(f,this.imageElement);this.commitContent(2,this.linkElement);
this.imageElement.getAttribute("style")||this.imageElement.removeAttribute("style");this.imageEditMode?!this.linkEditMode&&this.addLink?(c.insertElement(this.linkElement),this.imageElement.appendTo(this.linkElement)):this.linkEditMode&&!this.addLink&&(c.getSelection().selectElement(this.linkElement),c.insertElement(this.imageElement)):this.addLink?this.linkEditMode?c.insertElement(this.imageElement):(c.insertElement(this.linkElement),this.linkElement.append(this.imageElement,!1)):c.insertElement(this.imageElement)},
onLoad:function(){"image"!=j&&this.hidePage("Link");var a=this._.element.getDocument();this.getContentElement("info","ratioLock")&&(this.addFocusable(a.getById(u),5),this.addFocusable(a.getById(p),5));this.commitContent=r},onHide:function(){this.preview&&this.commitContent(8,this.preview);this.originalElement&&(this.originalElement.removeListener("load",q),this.originalElement.removeListener("error",h),this.originalElement.removeListener("abort",h),this.originalElement.remove(),this.originalElement=
!1);delete this.imageElement},contents:[{id:"info",label:c.lang.image.infoTab,accessKey:"I",elements:[{type:"vbox",padding:0,children:[{type:"hbox",widths:["280px","110px"],align:"right",children:[{id:"txtUrl",type:"text",label:c.lang.common.url,required:!0,onChange:function(){var a=this.getDialog(),b=this.getValue();if(0<b.length){var a=this.getDialog(),d=a.originalElement;a.preview&&a.preview.removeStyle("display");d.setCustomData("isReady","false");var c=CKEDITOR.document.getById(m);c&&c.setStyle("display",
"");d.on("load",q,a);d.on("error",h,a);d.on("abort",h,a);d.setAttribute("src",b);a.preview&&(t.setAttribute("src",b),a.preview.setAttribute("src",t.$.src),g(a))}else a.preview&&(a.preview.removeAttribute("src"),a.preview.setStyle("display","none"))},setup:function(a,b){if(a==f){var d=b.data("cke-saved-src")||b.getAttribute("src");this.getDialog().dontResetSize=!0;this.setValue(d);this.setInitValue()}},commit:function(a,b){a==f&&(this.getValue()||this.isChanged())?(b.data("cke-saved-src",this.getValue()),
b.setAttribute("src",this.getValue())):8==a&&(b.setAttribute("src",""),b.removeAttribute("src"))},validate:CKEDITOR.dialog.validate.notEmpty(c.lang.image.urlMissing)},{type:"button",id:"browse",style:"display:inline-block;margin-top:14px;",align:"center",label:c.lang.common.browseServer,hidden:!0,filebrowser:"info:txtUrl"}]}]},{id:"txtAlt",type:"text",label:c.lang.image.alt,accessKey:"T","default":"",onChange:function(){g(this.getDialog())},setup:function(a,b){a==f&&this.setValue(b.getAttribute("alt"))},
commit:function(a,b){a==f?(this.getValue()||this.isChanged())&&b.setAttribute("alt",this.getValue()):4==a?b.setAttribute("alt",this.getValue()):8==a&&b.removeAttribute("alt")}},{type:"hbox",children:[{id:"basic",type:"vbox",children:[{type:"hbox",requiredContent:"img{width,height}",widths:["50%","50%"],children:[{type:"vbox",padding:1,children:[{type:"text",width:"45px",id:"txtWidth",label:c.lang.common.width,onKeyUp:w,onChange:function(){i.call(this,"advanced:txtdlgGenStyle")},validate:function(){var a=
this.getValue().match(v);(a=!!(a&&0!==parseInt(a[1],10)))||alert(c.lang.common.invalidWidth);return a},setup:y,commit:function(a,b,d){var e=this.getValue();a==f?(e&&c.activeFilter.check("img{width,height}")?b.setStyle("width",CKEDITOR.tools.cssLength(e)):b.removeStyle("width"),!d&&b.removeAttribute("width")):4==a?e.match(k)?b.setStyle("width",CKEDITOR.tools.cssLength(e)):(a=this.getDialog().originalElement,"true"==a.getCustomData("isReady")&&b.setStyle("width",a.$.width+"px")):8==a&&(b.removeAttribute("width"),
b.removeStyle("width"))}},{type:"text",id:"txtHeight",width:"45px",label:c.lang.common.height,onKeyUp:w,onChange:function(){i.call(this,"advanced:txtdlgGenStyle")},validate:function(){var a=this.getValue().match(v);(a=!!(a&&0!==parseInt(a[1],10)))||alert(c.lang.common.invalidHeight);return a},setup:y,commit:function(a,b,d){var e=this.getValue();a==f?(e&&c.activeFilter.check("img{width,height}")?b.setStyle("height",CKEDITOR.tools.cssLength(e)):b.removeStyle("height"),!d&&b.removeAttribute("height")):
4==a?e.match(k)?b.setStyle("height",CKEDITOR.tools.cssLength(e)):(a=this.getDialog().originalElement,"true"==a.getCustomData("isReady")&&b.setStyle("height",a.$.height+"px")):8==a&&(b.removeAttribute("height"),b.removeStyle("height"))}}]},{id:"ratioLock",type:"html",style:"margin-top:30px;width:40px;height:40px;",onLoad:function(){var a=CKEDITOR.document.getById(u),b=CKEDITOR.document.getById(p);a&&(a.on("click",function(a){x(this);a.data&&a.data.preventDefault()},this.getDialog()),a.on("mouseover",
function(){this.addClass("cke_btn_over")},a),a.on("mouseout",function(){this.removeClass("cke_btn_over")},a));b&&(b.on("click",function(a){l(this);var b=this.originalElement,c=this.getValueOf("info","txtWidth");if(b.getCustomData("isReady")=="true"&&c){b=b.$.height/b.$.width*c;if(!isNaN(b)){this.setValueOf("info","txtHeight",Math.round(b));g(this)}}a.data&&a.data.preventDefault()},this.getDialog()),b.on("mouseover",function(){this.addClass("cke_btn_over")},b),b.on("mouseout",function(){this.removeClass("cke_btn_over")},
b))},html:'<div><a href="javascript:void(0)" tabindex="-1" title="'+c.lang.image.lockRatio+'" class="cke_btn_locked" id="'+p+'" role="checkbox"><span class="cke_icon"></span><span class="cke_label">'+c.lang.image.lockRatio+'</span></a><a href="javascript:void(0)" tabindex="-1" title="'+c.lang.image.resetSize+'" class="cke_btn_reset" id="'+u+'" role="button"><span class="cke_label">'+c.lang.image.resetSize+"</span></a></div>"}]},{type:"vbox",padding:1,children:[{type:"text",id:"txtBorder",requiredContent:"img{border-width}",
width:"60px",label:c.lang.image.border,"default":"",onKeyUp:function(){g(this.getDialog())},onChange:function(){i.call(this,"advanced:txtdlgGenStyle")},validate:CKEDITOR.dialog.validate.integer(c.lang.image.validateBorder),setup:function(a,b){if(a==f){var d;d=(d=(d=b.getStyle("border-width"))&&d.match(/^(\d+px)(?: \1 \1 \1)?$/))&&parseInt(d[1],10);isNaN(parseInt(d,10))&&(d=b.getAttribute("border"));this.setValue(d)}},commit:function(a,b,d){var c=parseInt(this.getValue(),10);a==f||4==a?(isNaN(c)?!c&&
this.isChanged()&&b.removeStyle("border"):(b.setStyle("border-width",CKEDITOR.tools.cssLength(c)),b.setStyle("border-style","solid")),!d&&a==f&&b.removeAttribute("border")):8==a&&(b.removeAttribute("border"),b.removeStyle("border-width"),b.removeStyle("border-style"),b.removeStyle("border-color"))}},{type:"text",id:"txtHSpace",requiredContent:"img{margin-left,margin-right}",width:"60px",label:c.lang.image.hSpace,"default":"",onKeyUp:function(){g(this.getDialog())},onChange:function(){i.call(this,
"advanced:txtdlgGenStyle")},validate:CKEDITOR.dialog.validate.integer(c.lang.image.validateHSpace),setup:function(a,b){if(a==f){var d,c;d=b.getStyle("margin-left");c=b.getStyle("margin-right");d=d&&d.match(o);c=c&&c.match(o);d=parseInt(d,10);c=parseInt(c,10);d=d==c&&d;isNaN(parseInt(d,10))&&(d=b.getAttribute("hspace"));this.setValue(d)}},commit:function(a,b,d){var c=parseInt(this.getValue(),10);a==f||4==a?(isNaN(c)?!c&&this.isChanged()&&(b.removeStyle("margin-left"),b.removeStyle("margin-right")):
(b.setStyle("margin-left",CKEDITOR.tools.cssLength(c)),b.setStyle("margin-right",CKEDITOR.tools.cssLength(c))),!d&&a==f&&b.removeAttribute("hspace")):8==a&&(b.removeAttribute("hspace"),b.removeStyle("margin-left"),b.removeStyle("margin-right"))}},{type:"text",id:"txtVSpace",requiredContent:"img{margin-top,margin-bottom}",width:"60px",label:c.lang.image.vSpace,"default":"",onKeyUp:function(){g(this.getDialog())},onChange:function(){i.call(this,"advanced:txtdlgGenStyle")},validate:CKEDITOR.dialog.validate.integer(c.lang.image.validateVSpace),
setup:function(a,b){if(a==f){var c,e;c=b.getStyle("margin-top");e=b.getStyle("margin-bottom");c=c&&c.match(o);e=e&&e.match(o);c=parseInt(c,10);e=parseInt(e,10);c=c==e&&c;isNaN(parseInt(c,10))&&(c=b.getAttribute("vspace"));this.setValue(c)}},commit:function(a,b,c){var e=parseInt(this.getValue(),10);a==f||4==a?(isNaN(e)?!e&&this.isChanged()&&(b.removeStyle("margin-top"),b.removeStyle("margin-bottom")):(b.setStyle("margin-top",CKEDITOR.tools.cssLength(e)),b.setStyle("margin-bottom",CKEDITOR.tools.cssLength(e))),
!c&&a==f&&b.removeAttribute("vspace")):8==a&&(b.removeAttribute("vspace"),b.removeStyle("margin-top"),b.removeStyle("margin-bottom"))}},{id:"cmbAlign",requiredContent:"img{float}",type:"select",widths:["35%","65%"],style:"width:90px",label:c.lang.common.align,"default":"",items:[[c.lang.common.notSet,""],[c.lang.common.alignLeft,"left"],[c.lang.common.alignRight,"right"]],onChange:function(){g(this.getDialog());i.call(this,"advanced:txtdlgGenStyle")},setup:function(a,b){if(a==f){var c=b.getStyle("float");
switch(c){case "inherit":case "none":c=""}!c&&(c=(b.getAttribute("align")||"").toLowerCase());this.setValue(c)}},commit:function(a,b,c){var e=this.getValue();if(a==f||4==a){if(e?b.setStyle("float",e):b.removeStyle("float"),!c&&a==f)switch(e=(b.getAttribute("align")||"").toLowerCase(),e){case "left":case "right":b.removeAttribute("align")}}else 8==a&&b.removeStyle("float")}}]}]},{type:"vbox",height:"250px",children:[{type:"html",id:"htmlPreview",style:"width:95%;",html:"<div>"+CKEDITOR.tools.htmlEncode(c.lang.common.preview)+
'<br><div id="'+m+'" class="ImagePreviewLoader" style="display:none"><div class="loading">&nbsp;</div></div><div class="ImagePreviewBox"><table><tr><td><a href="javascript:void(0)" target="_blank" onclick="return false;" id="'+A+'"><img id="'+z+'" alt="" /></a>'+(c.config.image_previewText||"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas feugiat consequat diam. Maecenas metus. Vivamus diam purus, cursus a, commodo non, facilisis vitae, nulla. Aenean dictum lacinia tortor. Nunc iaculis, nibh non iaculis aliquam, orci felis euismod neque, sed ornare massa mauris sed velit. Nulla pretium mi et risus. Fusce mi pede, tempor id, cursus ac, ullamcorper nec, enim. Sed tortor. Curabitur molestie. Duis velit augue, condimentum at, ultrices a, luctus ut, orci. Donec pellentesque egestas eros. Integer cursus, augue in cursus faucibus, eros pede bibendum sem, in tempus tellus justo quis ligula. Etiam eget tortor. Vestibulum rutrum, est ut placerat elementum, lectus nisl aliquam velit, tempor aliquam eros nunc nonummy metus. In eros metus, gravida a, gravida sed, lobortis id, turpis. Ut ultrices, ipsum at venenatis fringilla, sem nulla lacinia tellus, eget aliquet turpis mauris non enim. Nam turpis. Suspendisse lacinia. Curabitur ac tortor ut ipsum egestas elementum. Nunc imperdiet gravida mauris.")+
"</td></tr></table></div></div>"}]}]}]},{id:"Link",requiredContent:"a[href]",label:c.lang.image.linkTab,padding:0,elements:[{id:"txtUrl",type:"text",label:c.lang.common.url,style:"width: 100%","default":"",setup:function(a,b){if(2==a){var c=b.data("cke-saved-href");c||(c=b.getAttribute("href"));this.setValue(c)}},commit:function(a,b){if(2==a&&(this.getValue()||this.isChanged())){var d=this.getValue();b.data("cke-saved-href",d);b.setAttribute("href",d);if(this.getValue()||!c.config.image_removeLinkByEmptyURL)this.getDialog().addLink=
!0}}},{type:"button",id:"browse",filebrowser:{action:"Browse",target:"Link:txtUrl",url:c.config.filebrowserImageBrowseLinkUrl},style:"float:right",hidden:!0,label:c.lang.common.browseServer},{id:"cmbTarget",type:"select",requiredContent:"a[target]",label:c.lang.common.target,"default":"",items:[[c.lang.common.notSet,""],[c.lang.common.targetNew,"_blank"],[c.lang.common.targetTop,"_top"],[c.lang.common.targetSelf,"_self"],[c.lang.common.targetParent,"_parent"]],setup:function(a,b){2==a&&this.setValue(b.getAttribute("target")||
"")},commit:function(a,b){2==a&&(this.getValue()||this.isChanged())&&b.setAttribute("target",this.getValue())}}]},{id:"Upload",hidden:!0,filebrowser:"uploadButton",label:c.lang.image.upload,elements:[{type:"file",id:"upload",label:c.lang.image.btnUpload,style:"height:40px",size:38},{type:"fileButton",id:"uploadButton",filebrowser:"info:txtUrl",label:c.lang.image.btnUpload,"for":["Upload","upload"]}]},{id:"advanced",label:c.lang.common.advancedTab,elements:[{type:"hbox",widths:["50%","25%","25%"],
children:[{type:"text",id:"linkId",requiredContent:"img[id]",label:c.lang.common.id,setup:function(a,b){a==f&&this.setValue(b.getAttribute("id"))},commit:function(a,b){a==f&&(this.getValue()||this.isChanged())&&b.setAttribute("id",this.getValue())}},{id:"cmbLangDir",type:"select",requiredContent:"img[dir]",style:"width : 100px;",label:c.lang.common.langDir,"default":"",items:[[c.lang.common.notSet,""],[c.lang.common.langDirLtr,"ltr"],[c.lang.common.langDirRtl,"rtl"]],setup:function(a,b){a==f&&this.setValue(b.getAttribute("dir"))},
commit:function(a,b){a==f&&(this.getValue()||this.isChanged())&&b.setAttribute("dir",this.getValue())}},{type:"text",id:"txtLangCode",requiredContent:"img[lang]",label:c.lang.common.langCode,"default":"",setup:function(a,b){a==f&&this.setValue(b.getAttribute("lang"))},commit:function(a,b){a==f&&(this.getValue()||this.isChanged())&&b.setAttribute("lang",this.getValue())}}]},{type:"text",id:"txtGenLongDescr",requiredContent:"img[longdesc]",label:c.lang.common.longDescr,setup:function(a,b){a==f&&this.setValue(b.getAttribute("longDesc"))},
commit:function(a,b){a==f&&(this.getValue()||this.isChanged())&&b.setAttribute("longDesc",this.getValue())}},{type:"hbox",widths:["50%","50%"],children:[{type:"text",id:"txtGenClass",requiredContent:"img(cke-xyz)",label:c.lang.common.cssClass,"default":"",setup:function(a,b){a==f&&this.setValue(b.getAttribute("class"))},commit:function(a,b){a==f&&(this.getValue()||this.isChanged())&&b.setAttribute("class",this.getValue())}},{type:"text",id:"txtGenTitle",requiredContent:"img[title]",label:c.lang.common.advisoryTitle,
"default":"",onChange:function(){g(this.getDialog())},setup:function(a,b){a==f&&this.setValue(b.getAttribute("title"))},commit:function(a,b){a==f?(this.getValue()||this.isChanged())&&b.setAttribute("title",this.getValue()):4==a?b.setAttribute("title",this.getValue()):8==a&&b.removeAttribute("title")}}]},{type:"text",id:"txtdlgGenStyle",requiredContent:"img{cke-xyz}",label:c.lang.common.cssStyle,validate:CKEDITOR.dialog.validate.inlineStyle(c.lang.common.invalidInlineStyle),"default":"",setup:function(a,
b){if(a==f){var c=b.getAttribute("style");!c&&b.$.style.cssText&&(c=b.$.style.cssText);this.setValue(c);var e=b.$.style.height,c=b.$.style.width,e=(e?e:"").match(k),c=(c?c:"").match(k);this.attributesInStyle={height:!!e,width:!!c}}},onChange:function(){i.call(this,"info:cmbFloat info:cmbAlign info:txtVSpace info:txtHSpace info:txtBorder info:txtWidth info:txtHeight".split(" "));g(this)},commit:function(a,b){a==f&&(this.getValue()||this.isChanged())&&b.setAttribute("style",this.getValue())}}]}]}};
CKEDITOR.dialog.add("image",function(c){return r(c,"image")});CKEDITOR.dialog.add("imagebutton",function(c){return r(c,"imagebutton")})})();admin/ckeditor/plugins/link/0000755000352000025440000000000014373776770016562 5ustar  thediannthediannadmin/ckeditor/plugins/link/images/0000755000352000025440000000000014373776770020027 5ustar  thediannthediannadmin/ckeditor/plugins/link/images/anchor.png0000644000352000025440000000111512450564214021763 0ustar  thediannthediann�PNG


IHDR�aIDAT8�u��jSA�gnڊMc)���)�(�Zԝ�>@�O�+�.]tS��X*R��k)4H����T�"1D�If>w�6���0s��7s>˲� ��s�_X��vk��Q�=`��H� MS$�V�MIoZ��������$Hz*�F�I���F=� �2$	�$����:h������jwwv“�[�sJf���,S''ܪT8�t��$��kf��u�G!KJqM�{gf��w2>�X��B����$�SS|=:b��4��Wp%�P0c`F�9lb���'r~ �X������H�H�pf8�b���9�pa�G��7�W�DŽ��cf$Α���޶Z�f�C�J�ͣv���*�@�۽�-Q�F�e�3�����*����j4�F�3�N�^�C��#A��-�f��DRI�cI/%�VW%�L�sI�4��<�Z��̐D������s�;?�_>�y'	�Č���'8�9�0�4POӟ��c��+�B(��r�Ҹ�!,�]�Ft���OWf�W
�2C@Xʿ�IEND�B`�admin/ckeditor/plugins/link/images/hidpi/0000755000352000025440000000000014373776770021124 5ustar  thediannthediannadmin/ckeditor/plugins/link/images/hidpi/anchor.png0000644000352000025440000000254312450564214023066 0ustar  thediannthediann�PNG


IHDR  szz�*IDATXýW]lTE>�g�(�-K�(DI)j[R�	5�D!���bbĀ`)Ƈ�$F���ᥦ�!1FH�@xT�F�@7�Ҕ4%
YS�I+��b��ݿ�����ݽ{�ˮ@��۝;3��oΜ3�\ejh�L�$3�#t��x<�ɐ�J���.�'E!M�I�xHs�IQU)b�Dd�������BI:M��E�̴)�Yy�#*_^v:0��c���:�}>R]�"K䳜o�׸x-��<w���Ӷ��_�\�)�_>��V*�2r�k�a
�ܲ�$e	������O�O��ٽj��ٳ4:0�;���B!㗖c�H�r{�v�{��+}}�@�|�X7�:Y��?���|萑?�p�V����A�J���zذn�>;k�J���xx��>-傀�[�F�#��ttt�8�0e�Q����\��W����w���\�H�;w2��-�Ǐ�@w7e�O���a%����-��[X�(�eb���\�F�x����%��Ү]B�Gn�I��_%��eO�����FDI�r�V��9��k�Yx�<��.��
I�l��(�W&��@�B��,wO �x.K0�
�ד�
$a��5���.B�s g��v$�u�Th<�k�z)�y<�W�&��O&�d0n:�����ֲ�)M^K�,b���
<HF�#x��
Y��X���3
,��*.QX�{U��RcS?���=G'U��jz�(p6��t���N@��C�
�pA���~
c�|.'
�<_���0�a�A�9 ��zk~���F�@�?�˧	�:�2�(Q|�0�}�G8L�F""iR	7@����hoj"/�� �KR��⿂�j"�����`#g@a\��F@b�mjE����H�L}M��oHV)���=pxxwb�<[�.p��A���	����]��!��>��G �T���ZЪ;ʆ�i�q.�aL*�t]�i.6#�wc��P�^�@��B����sq�޽�q޺l��To�j~��
t��;�0�����f|K;�6���i�
-\�@Wv���6TR�8`������[_�i.ɒ���eI��h4j�t8z���{2���/�"وr�I�+����{���bC|�BN܋,�ū�[�	/���1[`��������L�㟂��~��(4�뫰^ֽreQ���vq���&��7�-� �����'
Xg���1�(V
/69U-�LU�Kί#����H�H�5�s�#�)R@-����R�=ɶ�,���‘,3��Q���!�Wxԡ0(>N��(��/|W�EIEND�B`�admin/ckeditor/plugins/link/dialogs/0000755000352000025440000000000014373776770020204 5ustar  thediannthediannadmin/ckeditor/plugins/link/dialogs/link.js0000644000352000025440000002552312450564214021464 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
(function(){CKEDITOR.dialog.add("link",function(g){var l=CKEDITOR.plugins.link,m=function(){var a=this.getDialog(),b=a.getContentElement("target","popupFeatures"),a=a.getContentElement("target","linkTargetName"),k=this.getValue();if(b&&a)switch(b=b.getElement(),b.hide(),a.setValue(""),k){case "frame":a.setLabel(g.lang.link.targetFrameName);a.getElement().show();break;case "popup":b.show();a.setLabel(g.lang.link.targetPopupName);a.getElement().show();break;default:a.setValue(k),a.getElement().hide()}},
f=function(a){a.target&&this.setValue(a.target[this.id]||"")},h=function(a){a.advanced&&this.setValue(a.advanced[this.id]||"")},i=function(a){a.target||(a.target={});a.target[this.id]=this.getValue()||""},j=function(a){a.advanced||(a.advanced={});a.advanced[this.id]=this.getValue()||""},c=g.lang.common,b=g.lang.link,d;return{title:b.title,minWidth:350,minHeight:230,contents:[{id:"info",label:b.info,title:b.info,elements:[{id:"linkType",type:"select",label:b.type,"default":"url",items:[[b.toUrl,"url"],
[b.toAnchor,"anchor"],[b.toEmail,"email"]],onChange:function(){var a=this.getDialog(),b=["urlOptions","anchorOptions","emailOptions"],k=this.getValue(),e=a.definition.getContents("upload"),e=e&&e.hidden;"url"==k?(g.config.linkShowTargetTab&&a.showPage("target"),e||a.showPage("upload")):(a.hidePage("target"),e||a.hidePage("upload"));for(e=0;e<b.length;e++){var c=a.getContentElement("info",b[e]);c&&(c=c.getElement().getParent().getParent(),b[e]==k+"Options"?c.show():c.hide())}a.layout()},setup:function(a){this.setValue(a.type||
"url")},commit:function(a){a.type=this.getValue()}},{type:"vbox",id:"urlOptions",children:[{type:"hbox",widths:["25%","75%"],children:[{id:"protocol",type:"select",label:c.protocol,"default":"http://",items:[["http://‎","http://"],["https://‎","https://"],["ftp://‎","ftp://"],["news://‎","news://"],[b.other,""]],setup:function(a){a.url&&this.setValue(a.url.protocol||"")},commit:function(a){a.url||(a.url={});a.url.protocol=this.getValue()}},{type:"text",id:"url",label:c.url,required:!0,onLoad:function(){this.allowOnChange=
!0},onKeyUp:function(){this.allowOnChange=!1;var a=this.getDialog().getContentElement("info","protocol"),b=this.getValue(),k=/^((javascript:)|[#\/\.\?])/i,c=/^(http|https|ftp|news):\/\/(?=.)/i.exec(b);c?(this.setValue(b.substr(c[0].length)),a.setValue(c[0].toLowerCase())):k.test(b)&&a.setValue("");this.allowOnChange=!0},onChange:function(){if(this.allowOnChange)this.onKeyUp()},validate:function(){var a=this.getDialog();return a.getContentElement("info","linkType")&&"url"!=a.getValueOf("info","linkType")?
!0:!g.config.linkJavaScriptLinksAllowed&&/javascript\:/.test(this.getValue())?(alert(c.invalidValue),!1):this.getDialog().fakeObj?!0:CKEDITOR.dialog.validate.notEmpty(b.noUrl).apply(this)},setup:function(a){this.allowOnChange=!1;a.url&&this.setValue(a.url.url);this.allowOnChange=!0},commit:function(a){this.onChange();a.url||(a.url={});a.url.url=this.getValue();this.allowOnChange=!1}}],setup:function(){this.getDialog().getContentElement("info","linkType")||this.getElement().show()}},{type:"button",
id:"browse",hidden:"true",filebrowser:"info:url",label:c.browseServer}]},{type:"vbox",id:"anchorOptions",width:260,align:"center",padding:0,children:[{type:"fieldset",id:"selectAnchorText",label:b.selectAnchor,setup:function(){d=l.getEditorAnchors(g);this.getElement()[d&&d.length?"show":"hide"]()},children:[{type:"hbox",id:"selectAnchor",children:[{type:"select",id:"anchorName","default":"",label:b.anchorName,style:"width: 100%;",items:[[""]],setup:function(a){this.clear();this.add("");if(d)for(var b=
0;b<d.length;b++)d[b].name&&this.add(d[b].name);a.anchor&&this.setValue(a.anchor.name);(a=this.getDialog().getContentElement("info","linkType"))&&"email"==a.getValue()&&this.focus()},commit:function(a){a.anchor||(a.anchor={});a.anchor.name=this.getValue()}},{type:"select",id:"anchorId","default":"",label:b.anchorId,style:"width: 100%;",items:[[""]],setup:function(a){this.clear();this.add("");if(d)for(var b=0;b<d.length;b++)d[b].id&&this.add(d[b].id);a.anchor&&this.setValue(a.anchor.id)},commit:function(a){a.anchor||
(a.anchor={});a.anchor.id=this.getValue()}}],setup:function(){this.getElement()[d&&d.length?"show":"hide"]()}}]},{type:"html",id:"noAnchors",style:"text-align: center;",html:'<div role="note" tabIndex="-1">'+CKEDITOR.tools.htmlEncode(b.noAnchors)+"</div>",focus:!0,setup:function(){this.getElement()[d&&d.length?"hide":"show"]()}}],setup:function(){this.getDialog().getContentElement("info","linkType")||this.getElement().hide()}},{type:"vbox",id:"emailOptions",padding:1,children:[{type:"text",id:"emailAddress",
label:b.emailAddress,required:!0,validate:function(){var a=this.getDialog();return!a.getContentElement("info","linkType")||"email"!=a.getValueOf("info","linkType")?!0:CKEDITOR.dialog.validate.notEmpty(b.noEmail).apply(this)},setup:function(a){a.email&&this.setValue(a.email.address);(a=this.getDialog().getContentElement("info","linkType"))&&"email"==a.getValue()&&this.select()},commit:function(a){a.email||(a.email={});a.email.address=this.getValue()}},{type:"text",id:"emailSubject",label:b.emailSubject,
setup:function(a){a.email&&this.setValue(a.email.subject)},commit:function(a){a.email||(a.email={});a.email.subject=this.getValue()}},{type:"textarea",id:"emailBody",label:b.emailBody,rows:3,"default":"",setup:function(a){a.email&&this.setValue(a.email.body)},commit:function(a){a.email||(a.email={});a.email.body=this.getValue()}}],setup:function(){this.getDialog().getContentElement("info","linkType")||this.getElement().hide()}}]},{id:"target",requiredContent:"a[target]",label:b.target,title:b.target,
elements:[{type:"hbox",widths:["50%","50%"],children:[{type:"select",id:"linkTargetType",label:c.target,"default":"notSet",style:"width : 100%;",items:[[c.notSet,"notSet"],[b.targetFrame,"frame"],[b.targetPopup,"popup"],[c.targetNew,"_blank"],[c.targetTop,"_top"],[c.targetSelf,"_self"],[c.targetParent,"_parent"]],onChange:m,setup:function(a){a.target&&this.setValue(a.target.type||"notSet");m.call(this)},commit:function(a){a.target||(a.target={});a.target.type=this.getValue()}},{type:"text",id:"linkTargetName",
label:b.targetFrameName,"default":"",setup:function(a){a.target&&this.setValue(a.target.name)},commit:function(a){a.target||(a.target={});a.target.name=this.getValue().replace(/\W/gi,"")}}]},{type:"vbox",width:"100%",align:"center",padding:2,id:"popupFeatures",children:[{type:"fieldset",label:b.popupFeatures,children:[{type:"hbox",children:[{type:"checkbox",id:"resizable",label:b.popupResizable,setup:f,commit:i},{type:"checkbox",id:"status",label:b.popupStatusBar,setup:f,commit:i}]},{type:"hbox",
children:[{type:"checkbox",id:"location",label:b.popupLocationBar,setup:f,commit:i},{type:"checkbox",id:"toolbar",label:b.popupToolbar,setup:f,commit:i}]},{type:"hbox",children:[{type:"checkbox",id:"menubar",label:b.popupMenuBar,setup:f,commit:i},{type:"checkbox",id:"fullscreen",label:b.popupFullScreen,setup:f,commit:i}]},{type:"hbox",children:[{type:"checkbox",id:"scrollbars",label:b.popupScrollBars,setup:f,commit:i},{type:"checkbox",id:"dependent",label:b.popupDependent,setup:f,commit:i}]},{type:"hbox",
children:[{type:"text",widths:["50%","50%"],labelLayout:"horizontal",label:c.width,id:"width",setup:f,commit:i},{type:"text",labelLayout:"horizontal",widths:["50%","50%"],label:b.popupLeft,id:"left",setup:f,commit:i}]},{type:"hbox",children:[{type:"text",labelLayout:"horizontal",widths:["50%","50%"],label:c.height,id:"height",setup:f,commit:i},{type:"text",labelLayout:"horizontal",label:b.popupTop,widths:["50%","50%"],id:"top",setup:f,commit:i}]}]}]}]},{id:"upload",label:b.upload,title:b.upload,hidden:!0,
filebrowser:"uploadButton",elements:[{type:"file",id:"upload",label:c.upload,style:"height:40px",size:29},{type:"fileButton",id:"uploadButton",label:c.uploadSubmit,filebrowser:"info:url","for":["upload","upload"]}]},{id:"advanced",label:b.advanced,title:b.advanced,elements:[{type:"vbox",padding:1,children:[{type:"hbox",widths:["45%","35%","20%"],children:[{type:"text",id:"advId",requiredContent:"a[id]",label:b.id,setup:h,commit:j},{type:"select",id:"advLangDir",requiredContent:"a[dir]",label:b.langDir,
"default":"",style:"width:110px",items:[[c.notSet,""],[b.langDirLTR,"ltr"],[b.langDirRTL,"rtl"]],setup:h,commit:j},{type:"text",id:"advAccessKey",requiredContent:"a[accesskey]",width:"80px",label:b.acccessKey,maxLength:1,setup:h,commit:j}]},{type:"hbox",widths:["45%","35%","20%"],children:[{type:"text",label:b.name,id:"advName",requiredContent:"a[name]",setup:h,commit:j},{type:"text",label:b.langCode,id:"advLangCode",requiredContent:"a[lang]",width:"110px","default":"",setup:h,commit:j},{type:"text",
label:b.tabIndex,id:"advTabIndex",requiredContent:"a[tabindex]",width:"80px",maxLength:5,setup:h,commit:j}]}]},{type:"vbox",padding:1,children:[{type:"hbox",widths:["45%","55%"],children:[{type:"text",label:b.advisoryTitle,requiredContent:"a[title]","default":"",id:"advTitle",setup:h,commit:j},{type:"text",label:b.advisoryContentType,requiredContent:"a[type]","default":"",id:"advContentType",setup:h,commit:j}]},{type:"hbox",widths:["45%","55%"],children:[{type:"text",label:b.cssClasses,requiredContent:"a(cke-xyz)",
"default":"",id:"advCSSClasses",setup:h,commit:j},{type:"text",label:b.charset,requiredContent:"a[charset]","default":"",id:"advCharset",setup:h,commit:j}]},{type:"hbox",widths:["45%","55%"],children:[{type:"text",label:b.rel,requiredContent:"a[rel]","default":"",id:"advRel",setup:h,commit:j},{type:"text",label:b.styles,requiredContent:"a{cke-xyz}","default":"",id:"advStyles",validate:CKEDITOR.dialog.validate.inlineStyle(g.lang.common.invalidInlineStyle),setup:h,commit:j}]}]}]}],onShow:function(){var a=
this.getParentEditor(),b=a.getSelection(),c=null;(c=l.getSelectedLink(a))&&c.hasAttribute("href")?b.getSelectedElement()||b.selectElement(c):c=null;a=l.parseLinkAttributes(a,c);this._.selectedElement=c;this.setupContent(a)},onOk:function(){var a={};this.commitContent(a);var b=g.getSelection(),c=l.getLinkAttributes(g,a);if(this._.selectedElement){var e=this._.selectedElement,d=e.data("cke-saved-href"),f=e.getHtml();e.setAttributes(c.set);e.removeAttributes(c.removed);if(d==f||"email"==a.type&&-1!=
f.indexOf("@"))e.setHtml("email"==a.type?a.email.address:c.set["data-cke-saved-href"]),b.selectElement(e);delete this._.selectedElement}else b=b.getRanges()[0],b.collapsed&&(a=new CKEDITOR.dom.text("email"==a.type?a.email.address:c.set["data-cke-saved-href"],g.document),b.insertNode(a),b.selectNodeContents(a)),c=new CKEDITOR.style({element:"a",attributes:c.set}),c.type=CKEDITOR.STYLE_INLINE,c.applyToRange(b,g),b.select()},onLoad:function(){g.config.linkShowAdvancedTab||this.hidePage("advanced");g.config.linkShowTargetTab||
this.hidePage("target")},onFocus:function(){var a=this.getContentElement("info","linkType");a&&"url"==a.getValue()&&(a=this.getContentElement("info","url"),a.select())}}})})();admin/ckeditor/plugins/link/dialogs/anchor.js0000644000352000025440000000312412450564214021772 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.dialog.add("anchor",function(c){function d(a,b){return a.createFakeElement(a.document.createElement("a",{attributes:b}),"cke_anchor","anchor")}return{title:c.lang.link.anchor.title,minWidth:300,minHeight:60,onOk:function(){var a=CKEDITOR.tools.trim(this.getValueOf("info","txtName")),a={id:a,name:a,"data-cke-saved-name":a};if(this._.selectedElement)this._.selectedElement.data("cke-realelement")?(a=d(c,a),a.replace(this._.selectedElement),CKEDITOR.env.ie&&c.getSelection().selectElement(a)):
this._.selectedElement.setAttributes(a);else{var b=c.getSelection(),b=b&&b.getRanges()[0];b.collapsed?(a=d(c,a),b.insertNode(a)):(CKEDITOR.env.ie&&9>CKEDITOR.env.version&&(a["class"]="cke_anchor"),a=new CKEDITOR.style({element:"a",attributes:a}),a.type=CKEDITOR.STYLE_INLINE,c.applyStyle(a))}},onHide:function(){delete this._.selectedElement},onShow:function(){var a=c.getSelection(),b=a.getSelectedElement(),d=b&&b.data("cke-realelement"),e=d?CKEDITOR.plugins.link.tryRestoreFakeAnchor(c,b):CKEDITOR.plugins.link.getSelectedLink(c);
e&&(this._.selectedElement=e,this.setValueOf("info","txtName",e.data("cke-saved-name")||""),!d&&a.selectElement(e),b&&(this._.selectedElement=b));this.getContentElement("info","txtName").focus()},contents:[{id:"info",label:c.lang.link.anchor.title,accessKey:"I",elements:[{type:"text",id:"txtName",label:c.lang.link.anchor.name,required:!0,validate:function(){return!this.getValue()?(alert(c.lang.link.anchor.errorName),!1):!0}}]}]}});admin/ckeditor/plugins/dialog/0000755000352000025440000000000014373776770017064 5ustar  thediannthediannadmin/ckeditor/plugins/dialog/dialogDefinition.js0000644000352000025440000000022412450564214022646 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
admin/ckeditor/plugins/clipboard/0000755000352000025440000000000014373776770017564 5ustar  thediannthediannadmin/ckeditor/plugins/clipboard/dialogs/0000755000352000025440000000000014373776770021206 5ustar  thediannthediannadmin/ckeditor/plugins/clipboard/dialogs/paste.js0000644000352000025440000000665312450564214022650 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.dialog.add("paste",function(c){function h(a){var b=new CKEDITOR.dom.document(a.document),f=b.getBody(),d=b.getById("cke_actscrpt");d&&d.remove();f.setAttribute("contenteditable",!0);if(CKEDITOR.env.ie&&8>CKEDITOR.env.version)b.getWindow().on("blur",function(){b.$.selection.empty()});b.on("keydown",function(a){var a=a.data,b;switch(a.getKeystroke()){case 27:this.hide();b=1;break;case 9:case CKEDITOR.SHIFT+9:this.changeFocus(1),b=1}b&&a.preventDefault()},this);c.fire("ariaWidget",new CKEDITOR.dom.element(a.frameElement));
b.getWindow().getFrame().removeCustomData("pendingFocus")&&f.focus()}var e=c.lang.clipboard;c.on("pasteDialogCommit",function(a){a.data&&c.fire("paste",{type:"auto",dataValue:a.data})},null,null,1E3);return{title:e.title,minWidth:CKEDITOR.env.ie&&CKEDITOR.env.quirks?370:350,minHeight:CKEDITOR.env.quirks?250:245,onShow:function(){this.parts.dialog.$.offsetHeight;this.setupContent();this.parts.title.setHtml(this.customTitle||e.title);this.customTitle=null},onLoad:function(){(CKEDITOR.env.ie7Compat||
CKEDITOR.env.ie6Compat)&&"rtl"==c.lang.dir&&this.parts.contents.setStyle("overflow","hidden")},onOk:function(){this.commitContent()},contents:[{id:"general",label:c.lang.common.generalTab,elements:[{type:"html",id:"securityMsg",html:'<div style="white-space:normal;width:340px">'+e.securityMsg+"</div>"},{type:"html",id:"pasteMsg",html:'<div style="white-space:normal;width:340px">'+e.pasteMsg+"</div>"},{type:"html",id:"editing_area",style:"width:100%;height:100%",html:"",focus:function(){var a=this.getInputElement(),
b=a.getFrameDocument().getBody();!b||b.isReadOnly()?a.setCustomData("pendingFocus",1):b.focus()},setup:function(){var a=this.getDialog(),b='<html dir="'+c.config.contentsLangDirection+'" lang="'+(c.config.contentsLanguage||c.langCode)+'"><head><style>body{margin:3px;height:95%}</style></head><body><script id="cke_actscrpt" type="text/javascript">window.parent.CKEDITOR.tools.callFunction('+CKEDITOR.tools.addFunction(h,a)+",this);<\/script></body></html>",f=CKEDITOR.env.air?"javascript:void(0)":CKEDITOR.env.ie?
"javascript:void((function(){"+encodeURIComponent("document.open();("+CKEDITOR.tools.fixDomain+")();document.close();")+'})())"':"",d=CKEDITOR.dom.element.createFromHtml('<iframe class="cke_pasteframe" frameborder="0"  allowTransparency="true" src="'+f+'" role="region" aria-label="'+e.pasteArea+'" aria-describedby="'+a.getContentElement("general","pasteMsg").domId+'" aria-multiple="true"></iframe>');d.on("load",function(a){a.removeListener();a=d.getFrameDocument();a.write(b);c.focusManager.add(a.getBody());
CKEDITOR.env.air&&h.call(this,a.getWindow().$)},a);d.setCustomData("dialog",a);a=this.getElement();a.setHtml("");a.append(d);if(CKEDITOR.env.ie){var g=CKEDITOR.dom.element.createFromHtml('<span tabindex="-1" style="position:absolute" role="presentation"></span>');g.on("focus",function(){setTimeout(function(){d.$.contentWindow.focus()})});a.append(g);this.focus=function(){g.focus();this.fire("focus")}}this.getInputElement=function(){return d};CKEDITOR.env.ie&&(a.setStyle("display","block"),a.setStyle("height",
d.$.offsetHeight+2+"px"))},commit:function(){var a=this.getDialog().getParentEditor(),b=this.getInputElement().getFrameDocument().getBody(),c=b.getBogus(),d;c&&c.remove();d=b.getHtml();setTimeout(function(){a.fire("pasteDialogCommit",d)},0)}}]}]}});admin/ckeditor/plugins/icons.png0000644000352000025440000002474012450564214017433 0ustar  thediannthediann�PNG


IHDR8C\) IDATx��}ytՙ��V�Z�Ԓ���!ɲ�����%8$������7@N�7����0���p�f�&���c��J��؀1 o�dY�V�����Q����Z-	���sOw���ު���|���W�*��6���33�̈��ҍW\qŊx<���	��a�R)LNNb���A��H�o�$`�Z�����<y2����k֬��\��Ǐ�Y�p��w�IxY��e�  �J@9��U�V=
�R���Y��" ���1��`�-�8�������̙S�A��l�mw�\�3g���w�[���/�$@D����b������`����Ѩ����'��د�9�v��e˖Q{{;OD/�V"
tvv��l�2*//O�趁\�T*��Ō���wuu�)����sV����x�@�1�\XX���ڊ���8M2ƴ	$	D"X,��b9�q�v;jkkq��q�����D�ؿ?,����J�"�Tj4y�G��K�nc��rU�WEY8D<���:ַ@Df5a���z�R�F�T�I�k��W\q���rA?~\زeK���p��эD4�z�j����W��'�fu>]�����A��S�&���~��1v /�1�y�1LLL�`�֧�����,�y�g��16��'��zo(�\�N���K.������Dԯ�)���d2����|�� ���>��V�9�
~������Kn�;`�^�L���5k��d2!�J��y�G"��Z�^e"J��'dU6 "�F�8c,�I����4V�
`@�Q�z=2D����%%%�����8$�I�<�D"���TTT�v��ѽ���\y啴j�*z��w��T*1<<����~�\�|9�}��u�L�===���R���
w�y�_A�X{��.��cJ70�>D���烈�i�&3c�;����(c�A�X���f���ׯ_��v�1<<���!

�FGG������䤠U�mH����Jf�Y�
P�4I�eQ����#�<��ڵ�s8�8�?�� ��|��>������W�^ǎî]��rZz�C/��1���3�Ƣ�(��0�̙�&�8�;w.��f���"�!�J���555��>��y�w�.���~;���/s������� JJJPYY����Rs��Y�{A�sD����#��Dt��BD�!=CD}�
0�-���?��s5P�*��q������>�l�2***
��W\\Z�l��Ӳ�}�������/�����{���~����'N����{;�(��:��%K�4������͛?pc�99`���[��b�H$)�o�����
�q��~���힜�'"�\���;wN��.="2�͛G>��4��;'''����ZZZ���-��L�i��V���:u��N"ZDD����|�t:7H�$�x����QI�.P�u�!"z@�R��骤�9 �O����1ƬR8�;k�^��$U\ob��WY�`F��p�9��hȩXc
���D�ef�V����g�����>EEEG1�[��˥X��ݻ���n`��%c�Z`�	3R,�1�1�����H�E���j�0-�<��Td-��0s'�)Ȱ�H�s�n�2フ����ՑYb|Ŋ���a2�37�|�t�M())I��"099�P(�d2��D
���M�d���Y�q=:�CҧY4�\�Ek�x�����w&8�ӎ�  H�OK�Z��d2�T*�FE�O
�����:_YYYY"���n��I �|�QSS�����f�߹�nw @CC�`f�4��������===TZZJN���:�,������CD�F�_kr�krr������x<^�q�;�J�����>��3ݲZӅ�X~OD���4�#M
yrDz(W�"�\��#}�Z�X��7.���2�9����Ƙ{���s͚5� NLgJ�'�V+�}��q�c	0%P6��?XUXX�>��3lܸq%����{zzz�-\��!
�W��՛������Y���#����Wݽ���
�@�@�T
���=�����?~�8���099�`0����o��cǎM�8q�B�B�ȩ�b���k{�вe���ϧ��Nj�
@D7m۶��ҥKO]|��TYY���>��ŋSyy��Dtef:755
-Z��n��L�/6fccc��1]������H���ۈhYf�2�˕������N��
ེ���D�pfb#����+D�|Z��<�dɒO��9���e�Db-��V��7m��]��n��Wz=��y���������`^D���(3�����f������"�&��9�L�l6�����شr:A�*��4N�S�Q�f�n{hq�U���i������
TA��LD�Τȩ�K�6-P�0g_7�cS��tv?��@��骡O`�7��-z��yPѼ�*�����
�`��h��4���Y�w����


�3Q�t:�+++�䈬�����+W�,����C�s
��d2m\�zu���ۥK��+�� bŊ
v��7r��ĪU��B����?��kML�hll�g޼y
�x[�n�?�J���������{�w�w0�M��U��,\������;44�D"���:>|x��g�}����j�؄fcq��6nܸtt4��P[[�����=�ܳ����v��&��g^��Q��'�%�x<+--�ۛ�W�ĵ���x�?)���x��o�1�Nc�8X`cGG�"���޽{���?QPP�FWWW=ę��!.\e���5��߿���-�y��������s�=�����YXXx�t:�.�+L�u��o�y3�ݖ2�joo�MD��a�ϗ�h�,��<�g��l~��պ���=*�wuu��r������JJJ�<Ϸ@�7�|�i;�jjj^!���\����=��=��#�'"w"�!q7a���$�2UGDѰT���р�/�^0�C/z��7
�\.I4��2e��p��/��ٳgN�<������+����<x����8���7ɨ	�l�#l۶������$hJc��r
���8$�
����ٳ���3_�H�4`ʅ@ ��W$��|/AgBJ������� �
�[�J׭�jc�J�2��Y�h4*���r�zc\ZGZUar��$��J��c�
���`@#�fdMԼ��1e>�ɔ�l$�}D�S�W�j��0gΜ�;(��1�Y�)<6
�0�BNz��0�o&��;� ����t���T
�pw�u��R�P���[�n�O�FD��bX�~��-��BV��6�C*�B<ǿ��~EV�d6�Vk���`�ZQRR��2]�@=}�4��l̟����b=�U:D�?7�pÌ�C=�%��6�-/x��^�?��l����-�8�7o^�^�|Bs���p8�.��`��1��(�t�ĄjgVMM�\��^x!A�����S�u�e��^���?<�f�]�2Ҷ�����)"��F�K��|�z���vO��JKK


у�Rm-x-�=��6��f����_�p�B�|�'4�\.(l6�\������r��q��V�����m�d�Xn�ӹQ{jkkipp���xv/^���l6C<x%%%�={6A��8�A�СC�n�:�͛7�9���\Q[[@t��q(������H&�9���� @z��ي��>�r5`���?Wi��̕.�4-q���LY�[��@�� �ݥqƘ������1�7
Dd&q��L�^��U��KQ�2�\�D��z�t��v�<'�KK��6�
�����N��r��J/"ѱF�6����7�.3 =i��@D1�a��X=�6�9���2�z2�,�ȳ8��@+��T_�;D���9T���oC�MҴ~����n7�����O"[^|
���}�c�	�ܙ$�
dˋϦu�0w��}�28��r��EPmmm���f��̴Y�
�^��:��-;a��Pyj�W���R���z���~��DT��7>�,�2d��$mծ��:�6P��n�{�p8�ʨ$G�|FFF�6���6��yŹ�FΆ��bVi(��
�>��/��O$��4�F�6p�\��<Ҹ�9��\�yyX_PP�My<�s���;f2^P�����(�x����:�?Wi��:��Ef?q��W��Ȗ�,D�C���	А�����U��R���2�3	�:�����G��Tư��V?�fr5�m@Do������rH�	{r�y$Y�)�m�� ���2�%�7�6PUe��##^�
��ק�P�lƘ��!�����zÀ@�j&�^������+�0�g��6��������v��ojj�������(�!@�-����'�|����1�XqEEZZZp��gCrΊx<���z
�`�577Ӂ��-���`���P�p8@DH&��F��z"�@ww7^|�EEb+x�G4��f�j�GY:$"$	��,p�l4��xNA�H�W! y*��*H&���Ͳь��H$�
I6'�
�́n&&&099�d2	���l���g6�m4�H��P�&�੧�z�����狀��hEE�ֵk�n&ї� �;��WUUm�Ñe�y
��y~��sh6�-DԨ��!��S\���Hyx-ř=���;�8c�΀@_/Ԕ��_�p8fE"��ٹ����n7�p�Bjjj"���C��聨/QlTzA�󅅅t�UW�j��1�T*�C�a���8q��h�����~�ݻ���D@4?���5�q������c�h��9@%e'W`�q���R���bA�e��H$ BV!5�7I��o2���d�% �{�*D�Q$	��ɔ�/�*.�@ @(�X,�<�u�\u.���D�h4�4�,`J�WUUm!��$��k׮�\QQ����.������SO=�vYΫ爤�FI?l"���7N�5�m3���K��`��WH/rހ�/f�����>G��a�:n��7M�\[[[���>U�T𵵵T]]M�8"����v�DD��H$��ݾS}���.���J�����;#��o$NDu���P,{;�J��bo���uɓT8����TUU��ݾ@����v�����=�����:��{������%�'�(E���!�
v�*�AD�nݺ-OQV�f͚Mk֬y%�)�[�n�"�K53]G�)껭��:�)�8/��B�ʇ6�N�֊3`��7_#�`��v���3����DD]&��00��c,UYY��̌���;w�\��%v��a``�5��AF��ºu�6m޼�6�U�V��攞�x�]�^�뮻���Ѣ���m�6�����޻w�Z5=�p=Y�虁���~��,X$��D��HELY���,Ksuu�p{{{��������^����Ϛ5k���kmm���W�B.<��#'�9�	��۷�dqq�˖-�NWV��l"�&�Yj�
�qJ���n�E���#���Z	A�3�+�l;W�\I+W�$��)k ��5cLq�V^^n�X,�X,(//O��ȇ�^x����}���^x�'2	h��-�Q?�B�����1vvvRggg�c��y��ħę�f��d2��i�C��ॗ^z�b��X,�^z�o�c4`�=�����#���ԕn����GgЗ�y�;}��������?F-�?]#*
a2��o6���K>:���3{�|5����@98m�N/�KQ����F�N���Gp����T�����4�Oy�S3�hU!o#F�����y�r���|]PPP$���12�X���g�k�|�|�0d>Fٗ��.3z�D$H\�;��#M�#!�iv����Q_O'd2%�%��yML�ccBIIIG�CWdB����,����t��,���<F-�?�Ǩ%�g��d�Lc�̟�cԒ�ƾ_�n~��v;Q�~�5��:MTj�܊DR�Ξ�Ii��K�'�%�>��|r��S[��'7ϔQ�FP�gU����*_����%��L�ԙ2ӵ����ZM�L�D$��9益N>�|rO���.�Om��6�Wz'e��>�
|i����/���,Y?S]���Lu��I��^�s�B~�<A㎙HO��� ��
]a�¡��"�䟮^Pw���B+�C����}}}���Cggg�DĊ��DM������f��L�\.���zb*/��/5o������	�Z8��f$}���t:�QFz8`�kk������q+d�η�;��Ӡ��I# �Jmmm@z����H# t�޽{�;��2�T���M���;*g��ㅦ���:����/����N/�e�\i:$���4������ _]�K _]��[3�NW(��NW($Y��d]��+��9^��`-_ i�I��
I�������9�})<�YHYk���gaΜ9ox�^�{ウKKK��(JJJ^���7ONN����T{{{EQ�F\ww�z��_4<<�z��W�	S�qc�Mc;�е|��"��q����K^�5�%T/q:��y{s�$��x�
��P(�+V��*�E�����˗SKKK@j����`iII	��`6���k�.��G}}�c�Hc-Dۀ��?��.0Gkkk��һᄏF����q� ��y��pII�Ҭ�R�BޚW#�y�hK[[�!�۝�;wnxlll��cOsV���l�팱A[����r7���j�8nrhh�!�؛�;���L&3�
.�+���nsii� D3�:5�겲2Oyy���~{+���������bŊ3�63``&X��">wᢢ��^ߦ��9'�����A���ieȜ�N+\PP��0�|>]4]a(--�pH�2���Ϥ�{�ߟ���Y[[KP]]m�xeeeJJJ�c�
�̙�]�y��;�q���QAA�5PTTtcww7Y��
�R��*H�$�ttt\�t:��B������_~�`��UVh,��(++#��?\�hQ�磻�I���1
~t/�x<<H���䛂�K�.�&�4	9�e�f2ze@�Y�`VӰS5�!�X������f�1nQQQpZ"z�����xaaan"��:":^PP�ODWLeA�'�U
Y/�{@���~T��� ��%]��,H��j�Z7twwSQQэPPPpM__q��Z'�UA��+,X��������_@(�/�ӹ����R����9�����#	`���E�%9��!0�;��e�Y�M�o��i�e�u�n��iC'����Q�@+�%O����v�<��8
|��
ę],pj����bŊ�D4$���w߽���#�K�N���f���+h```7��c�ea�߿���/���J��Lw_v�et��'b�ؿk݁�n���:|�5����P-**�Z���f�ݡS�{�D"����6���9s��qLLLa��*�K�����f��c��8�ґ�u:w���;e�d�`?��S�/��ѣG���a���z5zJKK/�F����{?P����O�2<<�r8p�N��~��n||�-z�16奉�ڞ|��m, ��p�G4���v����V�\���~�I�&"��ԩS�vww�γ�TJ�z<�d___�׿���D�37A��`����?���˿����
LIm��s0�L{c�<�;^�ukAA�>��?�7�L�w�y�Rx뭷�n�;-���0���K�s$��R#@D
9���'ʀ�?:�}�DҔq��ˊ���$	$��I@OO2���xQ`477��*�&e��B�������(qR�w�%v,X0U?��@Dc<�g9�=�(u��
�pXޢ�D��ZF=���)��#b���nEEdN���'�-KJKK�WI"�`ppp��Ӑ3��S���R�X���7�裏nV�I�V*�'�9�m6[���/900����Z]&��W]/��lᮮ.��C�
`���L�\��DܖsD	�IDATd���wvv&�,Y����,�5��t��7������@mm���p��iӦ�c�+�� �xtɒ%�S�N-����͛?f��O-��\�r�袋���+��6`��̆�Y0_{�gl���9�A�)˖�3irř�f�����D@D����l�y^�Yq�18�N̚5��� "J�CEEE^qd��`���k��F��͝;�4W����8-#���	:q�E�j��m6[^q�,�4��p8�|�9���dV#B\�6���R�gNK��Y{�5�L&��7㌂�n'Q�>b�3ۉ���6�_x F��4���9�^��']t��<>�裼	�1ƞ����;w.���3�h��˙da��C�ַ<^��D�T
��O>A,C(��Ç����2,]�t����t��VA�����n7���QUU���ڲ`0xU8~�A��B����:��Za6��F!Ž�'OzT���bǎ��Ph!��"�z"�~��W�R__�loo���F"�N�=":��[o�ljj�)�rd���h���СC��N�Q��I�4+]JD����?ߌ��l���}�ժy�2]w��o�% e*&�gr�_����x<	QG�$��)D]��i;�---����^�V��9��ћ�Y
`%��{�V+�����b��ĉx
�8�=�
�]g�uVKAA�v;�~��#,FGG���O@���O�f�����E���v+�h4����0A@KKWQQ1��_VT[CAA���{�Ň~8���ٳ'�fs��� �z��ѣ�C�1��w����ǎ��c�����@
�dSS


R����ڵ�
�{����u��|��D.%"�}���$��y�СC���g��K��o�@D��OV�u+�O�<[��D��6`���^0�0�)�~�zz��H���=���3摌y$��e��2����{�DS~�	P������/�)*�6��=�l�@�G�K�V`z{�8����h��e7Iij{��-���=���K?��f��=�R����룥K�Nk��#�֟".��l���n�Ly�#���KD����hgg']p�y�#�>>>ޯ�G�����k��#����O�>�%%%�����3�G�����ꫯ�H�{����8Y���@D`�i��R)��h4�o����q<l6�x���d��bQɄy���Ąb�c6�L�x<8��s�����V���zK��fƘl���R8

��p��"%�ILLL`hhH!f&"œi0T�N|>�.;v�H'��<N�8��A��<FGGa�Z�R6�O�@nYYt�,��
sۢjq ��������(P��cL�)�	۶mS�d.�<ϣ��2�޹s'��ϋ�Iy
��D:;;5��̂  �`׮]0�͈D"������qU�1f�5�A��f���+
�ƘE�D��@���\փ�5�j��NB��PLuq����_��ب(�x<�|�6�M��18po��Ư�uuu����#�L*R9��w^���������lϚL&��Ѐ������]SSc
�È�b�y�P�@`�ʕ+�x�1�#
)�HUUUv�@<G"�� ��㘜���_��1�K�ؿ��?�î��	%_<Wd��T�������ꫯ~��O{{������x\�'�
�R7��{c/C�3����=˗/�399�p*Q���H&�H$�=��[��uV��&����O�:5���80��w8�<%�q��]��g�n8��f��s �:b�֭[��16�����t���l�1v%cl��!MNM�J����G�w�֊��u>���1���644�


�f�*AZ�.���h<�LZ+**N2�jL&�����"َ����*�c���.�lddd�H$��ʍ��[-K_<��8<�����2�L���$�n7�N'R��k��_08r��/����FGG�l6e�(�,�1�O��|���ڶm���w3���D�];i9ZR�(=M�xm1`ૅm��Z.���馛h��A�Ζs-�P]]
��1o�<�+gB����zM$Aaa�A`��4���X������=���k��S===7�OO��p�o��>������c����5��E�����-�all���>�E$�I$�;w�5�hL-7x<�>}z�������;��������g�u��U�̙�4E~���ӧOc���{n��f����ֶ��@\2��V��o�������}��bu��ի����6���htC"��h4z83��~�F)�J�3�<ӡ�����o'�ә5��x�� 5���DAA�2`��L��m����IEND�B`�admin/ckeditor/plugins/Thumbs.db0000644000352000025440000001000012450625126017343 0ustar  thediannthediann��ࡱ�>��	������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Root Entry��������0L��)$�1������������5Catalog������������
h2����*	
����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������)���JFIF``��C




��C		

��`"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�����a� �
*_��?m�W���>�q�?����+��˱����O�W�@~�/�w���Š�~�i�A��o���P]���Y��(�gͼ�����tPeҿ��O���U���s�>w?����Ew���~�?���Ey�#�%��6��'�+h���``&���$�icons.png2����JFIF``��C




��C		

��`"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?��f��@���
7�n?�����(_��_��_��񢹯�7������4P#��i���Q\������A���P=N�̹����rQX��u���ȴP"/����� ��TU/�ɿ���W������?W��������^��S�����$�icons_hidpi.pngadmin/ckeditor/plugins/specialchar/0000755000352000025440000000000014373776770020103 5ustar  thediannthediannadmin/ckeditor/plugins/specialchar/dialogs/0000755000352000025440000000000014373776770021525 5ustar  thediannthediannadmin/ckeditor/plugins/specialchar/dialogs/specialchar.js0000644000352000025440000001133012450564214024315 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.dialog.add("specialchar",function(i){var e,l=i.lang.specialchar,k=function(c){var b,c=c.data?c.data.getTarget():new CKEDITOR.dom.element(c);if("a"==c.getName()&&(b=c.getChild(0).getHtml()))c.removeClass("cke_light_background"),e.hide(),c=i.document.createElement("span"),c.setHtml(b),i.insertText(c.getText())},m=CKEDITOR.tools.addFunction(k),j,g=function(c,b){var a,b=b||c.data.getTarget();"span"==b.getName()&&(b=b.getParent());if("a"==b.getName()&&(a=b.getChild(0).getHtml())){j&&d(null,j);
var f=e.getContentElement("info","htmlPreview").getElement();e.getContentElement("info","charPreview").getElement().setHtml(a);f.setHtml(CKEDITOR.tools.htmlEncode(a));b.getParent().addClass("cke_light_background");j=b}},d=function(c,b){b=b||c.data.getTarget();"span"==b.getName()&&(b=b.getParent());"a"==b.getName()&&(e.getContentElement("info","charPreview").getElement().setHtml("&nbsp;"),e.getContentElement("info","htmlPreview").getElement().setHtml("&nbsp;"),b.getParent().removeClass("cke_light_background"),
j=void 0)},n=CKEDITOR.tools.addFunction(function(c){var c=new CKEDITOR.dom.event(c),b=c.getTarget(),a;a=c.getKeystroke();var f="rtl"==i.lang.dir;switch(a){case 38:if(a=b.getParent().getParent().getPrevious())a=a.getChild([b.getParent().getIndex(),0]),a.focus(),d(null,b),g(null,a);c.preventDefault();break;case 40:if(a=b.getParent().getParent().getNext())if((a=a.getChild([b.getParent().getIndex(),0]))&&1==a.type)a.focus(),d(null,b),g(null,a);c.preventDefault();break;case 32:k({data:c});c.preventDefault();
break;case f?37:39:if(a=b.getParent().getNext())a=a.getChild(0),1==a.type?(a.focus(),d(null,b),g(null,a),c.preventDefault(!0)):d(null,b);else if(a=b.getParent().getParent().getNext())(a=a.getChild([0,0]))&&1==a.type?(a.focus(),d(null,b),g(null,a),c.preventDefault(!0)):d(null,b);break;case f?39:37:(a=b.getParent().getPrevious())?(a=a.getChild(0),a.focus(),d(null,b),g(null,a),c.preventDefault(!0)):(a=b.getParent().getParent().getPrevious())?(a=a.getLast().getChild(0),a.focus(),d(null,b),g(null,a),c.preventDefault(!0)):
d(null,b)}});return{title:l.title,minWidth:430,minHeight:280,buttons:[CKEDITOR.dialog.cancelButton],charColumns:17,onLoad:function(){for(var c=this.definition.charColumns,b=i.config.specialChars,a=CKEDITOR.tools.getNextId()+"_specialchar_table_label",f=['<table role="listbox" aria-labelledby="'+a+'" style="width: 320px; height: 100%; border-collapse: separate;" align="center" cellspacing="2" cellpadding="2" border="0">'],d=0,g=b.length,h,e;d<g;){f.push('<tr role="presentation">');for(var j=0;j<c;j++,
d++){if(h=b[d]){h instanceof Array?(e=h[1],h=h[0]):(e=h.replace("&","").replace(";","").replace("#",""),e=l[e]||h);var k="cke_specialchar_label_"+d+"_"+CKEDITOR.tools.getNextNumber();f.push('<td class="cke_dark_background" style="cursor: default" role="presentation"><a href="javascript: void(0);" role="option" aria-posinset="'+(d+1)+'"',' aria-setsize="'+g+'"',' aria-labelledby="'+k+'"',' class="cke_specialchar" title="',CKEDITOR.tools.htmlEncode(e),'" onkeydown="CKEDITOR.tools.callFunction( '+n+
', event, this )" onclick="CKEDITOR.tools.callFunction('+m+', this); return false;" tabindex="-1"><span style="margin: 0 auto;cursor: inherit">'+h+'</span><span class="cke_voice_label" id="'+k+'">'+e+"</span></a>")}else f.push('<td class="cke_dark_background">&nbsp;');f.push("</td>")}f.push("</tr>")}f.push("</tbody></table>",'<span id="'+a+'" class="cke_voice_label">'+l.options+"</span>");this.getContentElement("info","charContainer").getElement().setHtml(f.join(""))},contents:[{id:"info",label:i.lang.common.generalTab,
title:i.lang.common.generalTab,padding:0,align:"top",elements:[{type:"hbox",align:"top",widths:["320px","90px"],children:[{type:"html",id:"charContainer",html:"",onMouseover:g,onMouseout:d,focus:function(){var c=this.getElement().getElementsByTag("a").getItem(0);setTimeout(function(){c.focus();g(null,c)},0)},onShow:function(){var c=this.getElement().getChild([0,0,0,0,0]);setTimeout(function(){c.focus();g(null,c)},0)},onLoad:function(c){e=c.sender}},{type:"hbox",align:"top",widths:["100%"],children:[{type:"vbox",
align:"top",children:[{type:"html",html:"<div></div>"},{type:"html",id:"charPreview",className:"cke_dark_background",style:"border:1px solid #eeeeee;font-size:28px;height:40px;width:70px;padding-top:9px;font-family:'Microsoft Sans Serif',Arial,Helvetica,Verdana;text-align:center;",html:"<div>&nbsp;</div>"},{type:"html",id:"htmlPreview",className:"cke_dark_background",style:"border:1px solid #eeeeee;font-size:14px;height:20px;width:70px;padding-top:2px;font-family:'Microsoft Sans Serif',Arial,Helvetica,Verdana;text-align:center;",
html:"<div>&nbsp;</div>"}]}]}]}]}]}});admin/ckeditor/plugins/specialchar/dialogs/lang/0000755000352000025440000000000014373776770022446 5ustar  thediannthediannadmin/ckeditor/plugins/specialchar/dialogs/lang/it.js0000644000352000025440000001163012450564214023377 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","it",{euro:"Simbolo Euro",lsquo:"Virgoletta singola sinistra",rsquo:"Virgoletta singola destra",ldquo:"Virgolette aperte",rdquo:"Virgolette chiuse",ndash:"Trattino",mdash:"Trattino lungo",iexcl:"Punto esclavamativo invertito",cent:"Simbolo Cent",pound:"Simbolo Sterlina",curren:"Simbolo Moneta",yen:"Simbolo Yen",brvbar:"Barra interrotta",sect:"Simbolo di sezione",uml:"Dieresi",copy:"Simbolo Copyright",ordf:"Indicatore ordinale femminile",laquo:"Virgolette basse aperte",
not:"Nessun segno",reg:"Simbolo Registrato",macr:"Macron",deg:"Simbolo Grado",sup2:"Apice Due",sup3:"Apice Tre",acute:"Accento acuto",micro:"Simbolo Micro",para:"Simbolo Paragrafo",middot:"Punto centrale",cedil:"Cediglia",sup1:"Apice Uno",ordm:"Indicatore ordinale maschile",raquo:"Virgolette basse chiuse",frac14:"Frazione volgare un quarto",frac12:"Frazione volgare un mezzo",frac34:"Frazione volgare tre quarti",iquest:"Punto interrogativo invertito",Agrave:"Lettera maiuscola latina A con accento grave",
Aacute:"Lettera maiuscola latina A con accento acuto",Acirc:"Lettera maiuscola latina A con accento circonflesso",Atilde:"Lettera maiuscola latina A con tilde",Auml:"Lettera maiuscola latina A con dieresi",Aring:"Lettera maiuscola latina A con anello sopra",AElig:"Lettera maiuscola latina AE",Ccedil:"Lettera maiuscola latina C con cediglia",Egrave:"Lettera maiuscola latina E con accento grave",Eacute:"Lettera maiuscola latina E con accento acuto",Ecirc:"Lettera maiuscola latina E con accento circonflesso",
Euml:"Lettera maiuscola latina E con dieresi",Igrave:"Lettera maiuscola latina I con accento grave",Iacute:"Lettera maiuscola latina I con accento acuto",Icirc:"Lettera maiuscola latina I con accento circonflesso",Iuml:"Lettera maiuscola latina I con dieresi",ETH:"Lettera maiuscola latina Eth",Ntilde:"Lettera maiuscola latina N con tilde",Ograve:"Lettera maiuscola latina O con accento grave",Oacute:"Lettera maiuscola latina O con accento acuto",Ocirc:"Lettera maiuscola latina O con accento circonflesso",
Otilde:"Lettera maiuscola latina O con tilde",Ouml:"Lettera maiuscola latina O con dieresi",times:"Simbolo di moltiplicazione",Oslash:"Lettera maiuscola latina O barrata",Ugrave:"Lettera maiuscola latina U con accento grave",Uacute:"Lettera maiuscola latina U con accento acuto",Ucirc:"Lettera maiuscola latina U con accento circonflesso",Uuml:"Lettera maiuscola latina U con accento circonflesso",Yacute:"Lettera maiuscola latina Y con accento acuto",THORN:"Lettera maiuscola latina Thorn",szlig:"Lettera latina minuscola doppia S",
agrave:"Lettera minuscola latina a con accento grave",aacute:"Lettera minuscola latina a con accento acuto",acirc:"Lettera minuscola latina a con accento circonflesso",atilde:"Lettera minuscola latina a con tilde",auml:"Lettera minuscola latina a con dieresi",aring:"Lettera minuscola latina a con anello superiore",aelig:"Lettera minuscola latina ae",ccedil:"Lettera minuscola latina c con cediglia",egrave:"Lettera minuscola latina e con accento grave",eacute:"Lettera minuscola latina e con accento acuto",
ecirc:"Lettera minuscola latina e con accento circonflesso",euml:"Lettera minuscola latina e con dieresi",igrave:"Lettera minuscola latina i con accento grave",iacute:"Lettera minuscola latina i con accento acuto",icirc:"Lettera minuscola latina i con accento circonflesso",iuml:"Lettera minuscola latina i con dieresi",eth:"Lettera minuscola latina eth",ntilde:"Lettera minuscola latina n con tilde",ograve:"Lettera minuscola latina o con accento grave",oacute:"Lettera minuscola latina o con accento acuto",
ocirc:"Lettera minuscola latina o con accento circonflesso",otilde:"Lettera minuscola latina o con tilde",ouml:"Lettera minuscola latina o con dieresi",divide:"Simbolo di divisione",oslash:"Lettera minuscola latina o barrata",ugrave:"Lettera minuscola latina u con accento grave",uacute:"Lettera minuscola latina u con accento acuto",ucirc:"Lettera minuscola latina u con accento circonflesso",uuml:"Lettera minuscola latina u con dieresi",yacute:"Lettera minuscola latina y con accento acuto",thorn:"Lettera minuscola latina thorn",
yuml:"Lettera minuscola latina y con dieresi",OElig:"Legatura maiuscola latina OE",oelig:"Legatura minuscola latina oe",372:"Lettera maiuscola latina W con accento circonflesso",374:"Lettera maiuscola latina Y con accento circonflesso",373:"Lettera minuscola latina w con accento circonflesso",375:"Lettera minuscola latina y con accento circonflesso",sbquo:"Singola virgoletta bassa low-9",8219:"Singola virgoletta bassa low-9 inversa",bdquo:"Doppia virgoletta bassa low-9",hellip:"Ellissi orizzontale",
trade:"Simbolo TM",9658:"Puntatore nero rivolto verso destra",bull:"Punto",rarr:"Freccia verso destra",rArr:"Doppia freccia verso destra",hArr:"Doppia freccia sinistra destra",diams:"Simbolo nero diamante",asymp:"Quasi uguale a"});admin/ckeditor/plugins/specialchar/dialogs/lang/sk.js0000644000352000025440000001123012450564214023374 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","sk",{euro:"Znak eura",lsquo:"Ľavá jednoduchá úvodzovka",rsquo:"Pravá jednoduchá úvodzovka",ldquo:"Pravá dvojitá úvodzovka",rdquo:"Pravá dvojitá úvodzovka",ndash:"En pomlčka",mdash:"Em pomlčka",iexcl:"Obrátený výkričník",cent:"Znak centu",pound:"Znak libry",curren:"Znak meny",yen:"Znak jenu",brvbar:"Prerušená zvislá čiara",sect:"Znak odseku",uml:"Prehláska",copy:"Znak copyrightu",ordf:"Ženský indikátor rodu",laquo:"Znak dvojitých lomených úvodzoviek vľavo",not:"Logistický zápor",
reg:"Znak registrácie",macr:"Pomlčka nad",deg:"Znak stupňa",sup2:"Dvojka ako horný index",sup3:"Trojka ako horný index",acute:"Dĺžeň",micro:"Znak mikro",para:"Znak odstavca",middot:"Bodka uprostred",cedil:"Chvost vľavo",sup1:"Jednotka ako horný index",ordm:"Mužský indikátor rodu",raquo:"Znak dvojitých lomených úvodzoviek vpravo",frac14:"Obyčajný zlomok jedna štvrtina",frac12:"Obyčajný zlomok jedna polovica",frac34:"Obyčajný zlomok tri štvrtiny",iquest:"Otočený otáznik",Agrave:"Veľké písmeno latinky A s accentom",
Aacute:"Veľké písmeno latinky A s dĺžňom",Acirc:"Veľké písmeno latinky A s mäkčeňom",Atilde:"Veľké písmeno latinky A s tildou",Auml:"Veľké písmeno latinky A s dvoma bodkami",Aring:"Veľké písmeno latinky A s krúžkom nad",AElig:"Veľké písmeno latinky Æ",Ccedil:"Veľké písmeno latinky C s chvostom vľavo",Egrave:"Veľké písmeno latinky E s accentom",Eacute:"Veľké písmeno latinky E s dĺžňom",Ecirc:"Veľké písmeno latinky E s mäkčeňom",Euml:"Veľké písmeno latinky E s dvoma bodkami",Igrave:"Veľké písmeno latinky I s accentom",
Iacute:"Veľké písmeno latinky I s dĺžňom",Icirc:"Veľké písmeno latinky I s mäkčeňom",Iuml:"Veľké písmeno latinky I s dvoma bodkami",ETH:"Veľké písmeno latinky Eth",Ntilde:"Veľké písmeno latinky N s tildou",Ograve:"Veľké písmeno latinky O s accentom",Oacute:"Veľké písmeno latinky O s dĺžňom",Ocirc:"Veľké písmeno latinky O s mäkčeňom",Otilde:"Veľké písmeno latinky O s tildou",Ouml:"Veľké písmeno latinky O s dvoma bodkami",times:"Znak násobenia",Oslash:"Veľké písmeno latinky O preškrtnuté",Ugrave:"Veľké písmeno latinky U s accentom",
Uacute:"Veľké písmeno latinky U s dĺžňom",Ucirc:"Veľké písmeno latinky U s mäkčeňom",Uuml:"Veľké písmeno latinky U s dvoma bodkami",Yacute:"Veľké písmeno latinky Y s dĺžňom",THORN:"Veľké písmeno latinky Thorn",szlig:"Malé písmeno latinky ostré s",agrave:"Malé písmeno latinky a s accentom",aacute:"Malé písmeno latinky a s dĺžňom",acirc:"Malé písmeno latinky a s mäkčeňom",atilde:"Malé písmeno latinky a s tildou",auml:"Malé písmeno latinky a s dvoma bodkami",aring:"Malé písmeno latinky a s krúžkom nad",
aelig:"Malé písmeno latinky æ",ccedil:"Malé písmeno latinky c s chvostom vľavo",egrave:"Malé písmeno latinky e s accentom",eacute:"Malé písmeno latinky e s dĺžňom",ecirc:"Malé písmeno latinky e s mäkčeňom",euml:"Malé písmeno latinky e s dvoma bodkami",igrave:"Malé písmeno latinky i s accentom",iacute:"Malé písmeno latinky i s dĺžňom",icirc:"Malé písmeno latinky i s mäkčeňom",iuml:"Malé písmeno latinky i s dvoma bodkami",eth:"Malé písmeno latinky eth",ntilde:"Malé písmeno latinky n s tildou",ograve:"Malé písmeno latinky o s accentom",
oacute:"Malé písmeno latinky o s dĺžňom",ocirc:"Malé písmeno latinky o s mäkčeňom",otilde:"Malé písmeno latinky o s tildou",ouml:"Malé písmeno latinky o s dvoma bodkami",divide:"Znak delenia",oslash:"Malé písmeno latinky o preškrtnuté",ugrave:"Malé písmeno latinky u s accentom",uacute:"Malé písmeno latinky u s dĺžňom",ucirc:"Malé písmeno latinky u s mäkčeňom",uuml:"Malé písmeno latinky u s dvoma bodkami",yacute:"Malé písmeno latinky y s dĺžňom",thorn:"Malé písmeno latinky thorn",yuml:"Malé písmeno latinky y s dvoma bodkami",
OElig:"Veľká ligatúra latinky OE",oelig:"Malá ligatúra latinky OE",372:"Veľké písmeno latinky W s mäkčeňom",374:"Veľké písmeno latinky Y s mäkčeňom",373:"Malé písmeno latinky w s mäkčeňom",375:"Malé písmeno latinky y s mäkčeňom",sbquo:"Dolná jednoduchá 9-úvodzovka",8219:"Horná jednoduchá otočená 9-úvodzovka",bdquo:"Dolná dvojitá 9-úvodzovka",hellip:"Trojbodkový úvod",trade:"Znak ibchodnej značky",9658:"Čierny ukazovateľ smerujúci vpravo",bull:"Kruh",rarr:"Šípka vpravo",rArr:"Dvojitá šipka vpravo",
hArr:"Dvojitá šipka vľavo a vpravo",diams:"Čierne piky",asymp:"Skoro sa rovná"});admin/ckeditor/plugins/specialchar/dialogs/lang/tr.js0000644000352000025440000001057312450564214023415 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","tr",{euro:"Euro işareti",lsquo:"Sol tek tırnak işareti",rsquo:"Sağ tek tırnak işareti",ldquo:"Sol çift tırnak işareti",rdquo:"Sağ çift tırnak işareti",ndash:"En tire",mdash:"Em tire",iexcl:"Ters ünlem işareti",cent:"Cent işareti",pound:"Pound işareti",curren:"Para birimi işareti",yen:"Yen işareti",brvbar:"Kırık bar",sect:"Bölüm işareti",uml:"İki sesli harfin ayrılması",copy:"Telif hakkı işareti",ordf:"Dişil sıralı gösterge",laquo:"Sol-işaret çift açı tırnak işareti",
not:"Not işareti",reg:"Kayıtlı işareti",macr:"Makron",deg:"Derece işareti",sup2:"İkili üstsimge",sup3:"Üçlü üstsimge",acute:"Aksan işareti",micro:"Mikro işareti",para:"Pilcrow işareti",middot:"Orta nokta",cedil:"Kedilla",sup1:"Üstsimge",ordm:"Eril sıralı gösterge",raquo:"Sağ işaret çift açı tırnak işareti",frac14:"Bayağı kesrin dörtte biri",frac12:"Bayağı kesrin bir yarım",frac34:"Bayağı kesrin dörtte üç",iquest:"Ters soru işareti",Agrave:"Aksanlı latin harfi",Aacute:"Aşırı aksanıyla Latin harfi",
Acirc:"Çarpık Latin harfi",Atilde:"Tilde latin harfi",Auml:"Sesli harf ayrılımlıı latin harfi",Aring:"Halkalı latin büyük A harfi",AElig:"Latin büyük Æ harfi",Ccedil:"Latin büyük C harfi ile kedilla",Egrave:"Aksanlı latin büyük E harfi",Eacute:"Aşırı vurgulu latin büyük E harfi",Ecirc:"Çarpık latin büyük E harfi",Euml:"Sesli harf ayrılımlıı latin büyük E harfi",Igrave:"Aksanlı latin büyük I harfi",Iacute:"Aşırı aksanlı latin büyük I harfi",Icirc:"Çarpık latin büyük I harfi",Iuml:"Sesli harf ayrılımlıı latin büyük I harfi",
ETH:"Latin büyük Eth harfi",Ntilde:"Tildeli latin büyük N harfi",Ograve:"Aksanlı latin büyük O harfi",Oacute:"Aşırı aksanlı latin büyük O harfi",Ocirc:"Çarpık latin büyük O harfi",Otilde:"Tildeli latin büyük O harfi",Ouml:"Sesli harf ayrılımlı latin büyük O harfi",times:"Çarpma işareti",Oslash:"Vurgulu latin büyük O harfi",Ugrave:"Aksanlı latin büyük U harfi",Uacute:"Aşırı aksanlı latin büyük U harfi",Ucirc:"Çarpık latin büyük U harfi",Uuml:"Sesli harf ayrılımlı latin büyük U harfi",Yacute:"Aşırı aksanlı latin büyük Y harfi",
THORN:"Latin büyük Thorn harfi",szlig:"Latin küçük keskin s harfi",agrave:"Aksanlı latin küçük a harfi",aacute:"Aşırı aksanlı latin küçük a harfi",acirc:"Çarpık latin küçük a harfi",atilde:"Tildeli latin küçük a harfi",auml:"Sesli harf ayrılımlı latin küçük a harfi",aring:"Halkalı latin küçük a harfi",aelig:"Latin büyük æ harfi",ccedil:"Kedillalı latin küçük c harfi",egrave:"Aksanlı latin küçük e harfi",eacute:"Aşırı aksanlı latin küçük e harfi",ecirc:"Çarpık latin küçük e harfi",euml:"Sesli harf ayrılımlı latin küçük e harfi",
igrave:"Aksanlı latin küçük i harfi",iacute:"Aşırı aksanlı latin küçük i harfi",icirc:"Çarpık latin küçük i harfi",iuml:"Sesli harf ayrılımlı latin küçük i harfi",eth:"Latin küçük eth harfi",ntilde:"Tildeli latin küçük n harfi",ograve:"Aksanlı latin küçük o harfi",oacute:"Aşırı aksanlı latin küçük o harfi",ocirc:"Çarpık latin küçük o harfi",otilde:"Tildeli latin küçük o harfi",ouml:"Sesli harf ayrılımlı latin küçük o harfi",divide:"Bölme işareti",oslash:"Vurgulu latin küçük o harfi",ugrave:"Aksanlı latin küçük u harfi",
uacute:"Aşırı aksanlı latin küçük u harfi",ucirc:"Çarpık latin küçük u harfi",uuml:"Sesli harf ayrılımlı latin küçük u harfi",yacute:"Aşırı aksanlı latin küçük y harfi",thorn:"Latin küçük thorn harfi",yuml:"Sesli harf ayrılımlı latin küçük y harfi",OElig:"Latin büyük bağlı OE harfi",oelig:"Latin küçük bağlı oe harfi",372:"Çarpık latin büyük W harfi",374:"Çarpık latin büyük Y harfi",373:"Çarpık latin küçük w harfi",375:"Çarpık latin küçük y harfi",sbquo:"Tek düşük-9 tırnak işareti",8219:"Tek yüksek-ters-9 tırnak işareti",
bdquo:"Çift düşük-9 tırnak işareti",hellip:"Yatay elips",trade:"Marka tescili işareti",9658:"Siyah sağ işaret işaretçisi",bull:"Koyu nokta",rarr:"Sağa doğru ok",rArr:"Sağa doğru çift ok",hArr:"Sol, sağ çift ok",diams:"Siyah elmas takımı",asymp:"Hemen hemen eşit"});admin/ckeditor/plugins/specialchar/dialogs/lang/de.js0000644000352000025440000001115512450564214023355 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","de",{euro:"Euro Zeichen",lsquo:"Hochkomma links",rsquo:"Hochkomma rechts",ldquo:"Anführungszeichen links",rdquo:"Anführungszeichen rechts",ndash:"kleiner Strich",mdash:"mittlerer Strich",iexcl:"invertiertes Ausrufezeichen",cent:"Cent",pound:"Pfund",curren:"Währung",yen:"Yen",brvbar:"gestrichelte Linie",sect:"§ Zeichen",uml:"Diäresis",copy:"Copyright",ordf:"Feminine ordinal Anzeige",laquo:"Nach links zeigenden Doppel-Winkel Anführungszeichen",not:"Not-Zeichen",
reg:"Registriert",macr:"Längezeichen",deg:"Grad",sup2:"Hoch 2",sup3:"Hoch 3",acute:"Akzentzeichen ",micro:"Micro",para:"Pilcrow-Zeichen",middot:"Mittelpunkt",cedil:"Cedilla",sup1:"Hoch 1",ordm:"Männliche Ordnungszahl Anzeige",raquo:"Nach rechts zeigenden Doppel-Winkel Anführungszeichen",frac14:"ein Viertel",frac12:"Hälfte",frac34:"Dreiviertel",iquest:"Umgekehrtes Fragezeichen",Agrave:"Lateinischer Buchstabe A mit AkzentGrave",Aacute:"Lateinischer Buchstabe A mit Akutakzent",Acirc:"Lateinischer Buchstabe A mit Zirkumflex",
Atilde:"Lateinischer Buchstabe A mit Tilde",Auml:"Lateinischer Buchstabe A mit Trema",Aring:"Lateinischer Buchstabe A mit Ring oben",AElig:"Lateinischer Buchstabe Æ",Ccedil:"Lateinischer Buchstabe C mit Cedille",Egrave:"Lateinischer Buchstabe E mit AkzentGrave",Eacute:"Lateinischer Buchstabe E mit Akutakzent",Ecirc:"Lateinischer Buchstabe E mit Zirkumflex",Euml:"Lateinischer Buchstabe E Trema",Igrave:"Lateinischer Buchstabe I mit AkzentGrave",Iacute:"Lateinischer Buchstabe I mit Akutakzent",Icirc:"Lateinischer Buchstabe I mit Zirkumflex",
Iuml:"Lateinischer Buchstabe I mit Trema",ETH:"Lateinischer Buchstabe Eth",Ntilde:"Lateinischer Buchstabe N mit Tilde",Ograve:"Lateinischer Buchstabe O mit AkzentGrave",Oacute:"Lateinischer Buchstabe O mit Akutakzent",Ocirc:"Lateinischer Buchstabe O mit Zirkumflex",Otilde:"Lateinischer Buchstabe O mit Tilde",Ouml:"Lateinischer Buchstabe O mit Trema",times:"Multiplikation",Oslash:"Lateinischer Buchstabe O durchgestrichen",Ugrave:"Lateinischer Buchstabe U mit Akzentgrave",Uacute:"Lateinischer Buchstabe U mit Akutakzent",
Ucirc:"Lateinischer Buchstabe U mit Zirkumflex",Uuml:"Lateinischer Buchstabe a mit Trema",Yacute:"Lateinischer Buchstabe a mit Akzent",THORN:"Lateinischer Buchstabe mit Dorn",szlig:"Kleiner lateinischer Buchstabe scharfe s",agrave:"Kleiner lateinischer Buchstabe a mit Accent grave",aacute:"Kleiner lateinischer Buchstabe a mit Akut",acirc:"Lateinischer Buchstabe a mit Zirkumflex",atilde:"Lateinischer Buchstabe a mit Tilde",auml:"Kleiner lateinischer Buchstabe a mit Trema",aring:"Kleiner lateinischer Buchstabe a mit Ring oben",
aelig:"Lateinischer Buchstabe æ",ccedil:"Kleiner lateinischer Buchstabe c mit Cedille",egrave:"Kleiner lateinischer Buchstabe e mit Accent grave",eacute:"Kleiner lateinischer Buchstabe e mit Akut",ecirc:"Kleiner lateinischer Buchstabe e mit Zirkumflex",euml:"Kleiner lateinischer Buchstabe e mit Trema",igrave:"Kleiner lateinischer Buchstabe i mit AkzentGrave",iacute:"Kleiner lateinischer Buchstabe i mit Akzent",icirc:"Kleiner lateinischer Buchstabe i mit Zirkumflex",iuml:"Kleiner lateinischer Buchstabe i mit Trema",
eth:"Kleiner lateinischer Buchstabe eth",ntilde:"Kleiner lateinischer Buchstabe n mit Tilde",ograve:"Kleiner lateinischer Buchstabe o mit Accent grave",oacute:"Kleiner lateinischer Buchstabe o mit Akzent",ocirc:"Kleiner lateinischer Buchstabe o mit Zirkumflex",otilde:"Lateinischer Buchstabe i mit Tilde",ouml:"Kleiner lateinischer Buchstabe o mit Trema",divide:"Divisionszeichen",oslash:"Kleiner lateinischer Buchstabe o durchgestrichen",ugrave:"Kleiner lateinischer Buchstabe u mit Accent grave",uacute:"Kleiner lateinischer Buchstabe u mit Akut",
ucirc:"Kleiner lateinischer Buchstabe u mit Zirkumflex",uuml:"Kleiner lateinischer Buchstabe u mit Trema",yacute:"Kleiner lateinischer Buchstabe y mit Akut",thorn:"Kleiner lateinischer Buchstabe Dorn",yuml:"Kleiner lateinischer Buchstabe y mit Trema",OElig:"Lateinischer Buchstabe Ligatur OE",oelig:"Kleiner lateinischer Buchstabe Ligatur OE",372:"Lateinischer Buchstabe W mit Zirkumflex",374:"Lateinischer Buchstabe Y mit Zirkumflex",373:"Kleiner lateinischer Buchstabe w mit Zirkumflex",375:"Kleiner lateinischer Buchstabe y mit Zirkumflex",
sbquo:"Tiefergestelltes Komma",8219:"Rumgedrehtes Komma",bdquo:"Doppeltes Anführungszeichen unten",hellip:"horizontale Auslassungspunkte",trade:"Handelszeichen",9658:"Dreickspfeil rechts",bull:"Bullet",rarr:"Pfeil rechts",rArr:"Doppelpfeil rechts",hArr:"Doppelpfeil links",diams:"Karo",asymp:"Ungefähr"});admin/ckeditor/plugins/specialchar/dialogs/lang/af.js0000644000352000025440000001066112450564214023354 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","af",{euro:"Euroteken",lsquo:"Linker enkelkwotasie",rsquo:"Regter enkelkwotasie",ldquo:"Linker dubbelkwotasie",rdquo:"Regter dubbelkwotasie",ndash:"Kortkoppelteken",mdash:"Langkoppelteken",iexcl:"Omgekeerdeuitroepteken",cent:"Centteken",pound:"Pondteken",curren:"Geldeenheidteken",yen:"Yenteken",brvbar:"Gebreekte balk",sect:"Afdeelingsteken",uml:"Deelteken",copy:"Kopieregteken",ordf:"Vroulikekenteken",laquo:"Linkgeoorienteerde aanhaalingsteken",not:"Verbodeteken",
reg:"Regestrasieteken",macr:"Lengteteken",deg:"Gradeteken",sup2:"Kwadraatteken",sup3:"Kubiekteken",acute:"Akuutaksentteken",micro:"Mikroteken",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent",
Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin Capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",
Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke",
Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",
aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",
ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",
yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",
trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"});admin/ckeditor/plugins/specialchar/dialogs/lang/hu.js0000644000352000025440000001004312450564214023374 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","hu",{euro:"Euró jel",lsquo:"Bal szimpla idézőjel",rsquo:"Jobb szimpla idézőjel",ldquo:"Bal dupla idézőjel",rdquo:"Jobb dupla idézőjel",ndash:"Rövid gondolatjel",mdash:"Hosszú gondolatjel",iexcl:"Fordított felkiáltójel",cent:"Cent jel",pound:"Font jel",curren:"Valuta jel",yen:"Yen jel",brvbar:"Hosszú kettőspont",sect:"Paragrafus jel",uml:"Kettős hangzó jel",copy:"Szerzői jog jel",ordf:"Női sorrend mutatója",laquo:"Balra mutató duplanyíl",not:"Feltételes kötőjel",
reg:"Bejegyzett védjegy jele",macr:"Hosszúsági jel",deg:"Fok jel",sup2:"Négyzeten jel",sup3:"Köbön jel",acute:"Éles ékezet",micro:"Mikro-jel",para:"Bekezdés jel",middot:"Közép pont",cedil:"Cédille",sup1:"Elsőn jel",ordm:"Férfi sorrend mutatója",raquo:"Jobbra mutató duplanyíl",frac14:"Egy negyed jel",frac12:"Egy ketted jel",frac34:"Három negyed jel",iquest:"Fordított kérdőjel",Agrave:"Latin nagy A fordított ékezettel",Aacute:"Latin nagy A normál ékezettel",Acirc:"Latin nagy A hajtott ékezettel",Atilde:"Latin nagy A hullámjellel",
Auml:"Latin nagy A kettőspont ékezettel",Aring:"Latin nagy A gyűrű ékezettel",AElig:"Latin nagy Æ betű",Ccedil:"Latin nagy C cedillával",Egrave:"Latin nagy E fordított ékezettel",Eacute:"Latin nagy E normál ékezettel",Ecirc:"Latin nagy E hajtott ékezettel",Euml:"Latin nagy E dupla kettőspont ékezettel",Igrave:"Latin nagy I fordított ékezettel",Iacute:"Latin nagy I normál ékezettel",Icirc:"Latin nagy I hajtott ékezettel",Iuml:"Latin nagy I kettőspont ékezettel",ETH:"Latin nagy Eth betű",Ntilde:"Latin nagy N hullámjellel",
Ograve:"Latin nagy O fordított ékezettel",Oacute:"Latin nagy O normál ékezettel",Ocirc:"Latin nagy O hajtott ékezettel",Otilde:"Latin nagy O hullámjellel",Ouml:"Latin nagy O kettőspont ékezettel",times:"Szorzás jel",Oslash:"Latin O betű áthúzással",Ugrave:"Latin nagy U fordított ékezettel",Uacute:"Latin nagy U normál ékezettel",Ucirc:"Latin nagy U hajtott ékezettel",Uuml:"Latin nagy U kettőspont ékezettel",Yacute:"Latin nagy Y normál ékezettel",THORN:"Latin nagy Thorn betű",szlig:"Latin kis s betű",
agrave:"Latin kis a fordított ékezettel",aacute:"Latin kis a normál ékezettel",acirc:"Latin kis a hajtott ékezettel",atilde:"Latin kis a hullámjellel",auml:"Latin kis a kettőspont ékezettel",aring:"Latin kis a gyűrű ékezettel",aelig:"Latin kis æ betű",ccedil:"Latin kis c cedillával",egrave:"Latin kis e fordított ékezettel",eacute:"Latin kis e normál ékezettel",ecirc:"Latin kis e hajtott ékezettel",euml:"Latin kis e dupla kettőspont ékezettel",igrave:"Latin kis i fordított ékezettel",iacute:"Latin kis i normál ékezettel",
icirc:"Latin kis i hajtott ékezettel",iuml:"Latin kis i kettőspont ékezettel",eth:"Latin kis eth betű",ntilde:"Latin kis n hullámjellel",ograve:"Latin kis o fordított ékezettel",oacute:"Latin kis o normál ékezettel",ocirc:"Latin kis o hajtott ékezettel",otilde:"Latin kis o hullámjellel",ouml:"Latin kis o kettőspont ékezettel",divide:"Osztásjel",oslash:"Latin kis o betű áthúzással",ugrave:"Latin kis u fordított ékezettel",uacute:"Latin kis u normál ékezettel",ucirc:"Latin kis u hajtott ékezettel",
uuml:"Latin kis u kettőspont ékezettel",yacute:"Latin kis y normál ékezettel",thorn:"Latin kis thorn jel",yuml:"Latin kis y kettőspont ékezettel",OElig:"Latin nagy OE-jel",oelig:"Latin kis oe-jel",372:"Latin nagy W hajtott ékezettel",374:"Latin nagy Y hajtott ékezettel",373:"Latin kis w hajtott ékezettel",375:"Latin kis y hajtott ékezettel",sbquo:"Nyitó nyomdai szimpla idézőjel",8219:"Záró nyomdai záró idézőjel",bdquo:"Nyitó nyomdai dupla idézőjel",hellip:"Három pont",trade:"Kereskedelmi védjegy jele",
9658:"Jobbra mutató fekete mutató",bull:"Golyó",rarr:"Jobbra mutató nyíl",rArr:"Jobbra mutató duplanyíl",hArr:"Bal-jobb duplanyíl",diams:"Fekete gyémánt jel",asymp:"Majdnem egyenlő jel"});admin/ckeditor/plugins/specialchar/dialogs/lang/lt.js0000644000352000025440000001075412450564214023410 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","lt",{euro:"Euro ženklas",lsquo:"Left single quotation mark",rsquo:"Right single quotation mark",ldquo:"Left double quotation mark",rdquo:"Right double quotation mark",ndash:"En dash",mdash:"Em dash",iexcl:"Inverted exclamation mark",cent:"Cento ženklas",pound:"Svaro ženklas",curren:"Valiutos ženklas",yen:"Jenos ženklas",brvbar:"Broken bar",sect:"Section sign",uml:"Diaeresis",copy:"Copyright sign",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark",
not:"Ne ženklas",reg:"Registered sign",macr:"Makronas",deg:"Laipsnio ženklas",sup2:"Superscript two",sup3:"Superscript three",acute:"Acute accent",micro:"Mikro ženklas",para:"Pilcrow sign",middot:"Vidurinis taškas",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent",
Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin Capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",
Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke",
Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",
aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",
ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",
yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",
trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"});admin/ckeditor/plugins/specialchar/dialogs/lang/pt.js0000644000352000025440000001126412450564214023411 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","pt",{euro:"Símbolo do Euro",lsquo:"Aspa esquerda simples",rsquo:"Aspa direita simples",ldquo:"Aspa esquerda dupla",rdquo:"Aspa direita dupla",ndash:"Travessão Simples",mdash:"Travessão Longo",iexcl:"Ponto de exclamação invertido",cent:"Símbolo do Cêntimo",pound:"Símbolo da Libra",curren:"Símbolo de Moeda",yen:"Símbolo do Iene",brvbar:"Barra quebrada",sect:"Símbolo de Secção",uml:"Trema",copy:"Símbolo dos Direitos de Autor",ordf:"Indicador ordinal feminino",
laquo:"Aspa esquerda ângulo duplo",not:"Não Símbolo",reg:"Símbolo de Registado",macr:"Mácron",deg:"Símbolo de Grau",sup2:"Expoente 2",sup3:"Expoente 3",acute:"Acento agudo",micro:"Símbolo de Micro",para:"Símbolo de Parágrafo",middot:"Ponto do Meio",cedil:"Cedilha",sup1:"Expoente 1",ordm:"Indicador ordinal masculino",raquo:"Aspas ângulo duplo pra Direita",frac14:"Fração vulgar 1/4",frac12:"Fração vulgar 1/2",frac34:"Fração vulgar 3/4",iquest:"Ponto de interrugação invertido",Agrave:"Letra maiúscula latina A com acento grave",
Aacute:"Letra maiúscula latina A com acento agudo",Acirc:"Letra maiúscula latina A com circunflexo",Atilde:"Letra maiúscula latina A com til",Auml:"Letra maiúscula latina A com trema",Aring:"Letra maiúscula latina A com sinal diacrítico",AElig:"Letra Maiúscula Latina Æ",Ccedil:"Letra maiúscula latina C com cedilha",Egrave:"Letra maiúscula latina E com acento grave",Eacute:"Letra maiúscula latina E com acento agudo",Ecirc:"Letra maiúscula latina E com circunflexo",Euml:"Letra maiúscula latina E com trema",
Igrave:"Letra maiúscula latina I com acento grave",Iacute:"Letra maiúscula latina I com acento agudo",Icirc:"Letra maiúscula latina I com cincunflexo",Iuml:"Letra maiúscula latina I com trema",ETH:"Letra maiúscula latina Eth (Ðð)",Ntilde:"Letra maiúscula latina N com til",Ograve:"Letra maiúscula latina O com acento grave",Oacute:"Letra maiúscula latina O com acento agudo",Ocirc:"Letra maiúscula latina I com circunflexo",Otilde:"Letra maiúscula latina O com til",Ouml:"Letra maiúscula latina O com trema",
times:"Símbolo de Multiplicação",Oslash:"Letra maiúscula O com barra",Ugrave:"Letra maiúscula latina U com acento grave",Uacute:"Letra maiúscula latina U com acento agudo",Ucirc:"Letra maiúscula latina U com circunflexo",Uuml:"Letra maiúscula latina E com trema",Yacute:"Letra maiúscula latina Y com acento agudo",THORN:"Letra maiúscula latina Rúnico",szlig:"Letra minúscula latina s forte",agrave:"Letra minúscula latina a com acento grave",aacute:"Letra minúscula latina a com acento agudo",acirc:"Letra minúscula latina a com circunflexo",
atilde:"Letra minúscula latina a com til",auml:"Letra minúscula latina a com trema",aring:"Letra minúscula latina a com sinal diacrítico",aelig:"Letra minúscula latina æ",ccedil:"Letra minúscula latina c com cedilha",egrave:"Letra minúscula latina e com acento grave",eacute:"Letra minúscula latina e com acento agudo",ecirc:"Letra minúscula latina e com circunflexo",euml:"Letra minúscula latina e com trema",igrave:"Letra minúscula latina i com acento grave",iacute:"Letra minúscula latina i com acento agudo",
icirc:"Letra minúscula latina i com circunflexo",iuml:"Letra pequena latina i com trema",eth:"Letra minúscula latina eth",ntilde:"Letra minúscula latina n com til",ograve:"Letra minúscula latina o com acento grave",oacute:"Letra minúscula latina o com acento agudo",ocirc:"Letra minúscula latina o com circunflexo",otilde:"Letra minúscula latina o com til",ouml:"Letra minúscula latina o com trema",divide:"Símbolo de Divisão",oslash:"Letra minúscula latina o com barra",ugrave:"Letra minúscula latina u com acento grave",
uacute:"Letra minúscula latina u com acento agudo",ucirc:"Letra minúscula latina u com circunflexo",uuml:"Letra minúscula latina u com trema",yacute:"Letra minúscula latina y com acento agudo",thorn:"Letra minúscula latina Rúnico",yuml:"Letra minúscula latina y com trema",OElig:"Ligadura maiúscula latina OE",oelig:"Ligadura minúscula latina oe",372:"Letra maiúscula latina W com circunflexo",374:"Letra maiúscula latina Y com circunflexo",373:"Letra minúscula latina w com circunflexo",375:"Letra minúscula latina y com circunflexo",
sbquo:"Aspa Simples inferior-9",8219:"Aspa Simples superior invertida-9",bdquo:"Aspa Duplas inferior-9",hellip:"Elipse Horizontal ",trade:"Símbolo de Marca Registada",9658:"Ponteiro preto direito",bull:"Marca",rarr:"Seta para a direita",rArr:"Seta dupla para a direita",hArr:"Seta dupla direita esquerda",diams:"Naipe diamante preto",asymp:"Quase igual a "});admin/ckeditor/plugins/specialchar/dialogs/lang/el.js0000644000352000025440000001661012450564214023366 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","el",{euro:"Σύμβολο Ευρώ",lsquo:"Αριστερός χαρακτήρας μονού εισαγωγικού",rsquo:"Δεξιός χαρακτήρας μονού εισαγωγικού",ldquo:"Αριστερός χαρακτήρας διπλού εισαγωγικού",rdquo:"Δεξιός χαρακτήρας διπλού εισαγωγικού",ndash:"Παύλα en",mdash:"Παύλα em",iexcl:"Ανάποδο θαυμαστικό",cent:"Σύμβολο σεντ",pound:"Σύμβολο λίρας",curren:"Σύμβολο συναλλαγματικής μονάδας",yen:"Σύμβολο Γιεν",brvbar:"Σπασμένη μπάρα",sect:"Σύμβολο τμήματος",uml:"Διαίρεση",copy:"Σύμβολο πνευματικών δικαιωμάτων",
ordf:"Feminine ordinal indicator",laquo:"Αριστερός χαρακτήρας διπλού εισαγωγικού",not:"Σύμβολο άρνησης",reg:"Σύμβολο σημάτων κατατεθέν",macr:"Μακρόν",deg:"Σύμβολο βαθμού",sup2:"Εκτεθειμένο δύο",sup3:"Εκτεθειμένο τρία",acute:"Οξεία",micro:"Σύμβολο μικρού",para:"Σύμβολο παραγράφου",middot:"Μέση τελεία",cedil:"Υπογεγραμμένη",sup1:"Εκτεθειμένο ένα",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Γνήσιο κλάσμα ενός τετάρτου",frac12:"Γνήσιο κλάσμα ενός δεύτερου",
frac34:"Γνήσιο κλάσμα τριών τετάρτων",iquest:"Ανάποδο θαυμαστικό",Agrave:"Λατινικό κεφαλαίο γράμμα A με βαρεία",Aacute:"Λατινικό κεφαλαίο γράμμα A με οξεία",Acirc:"Λατινικό κεφαλαίο γράμμα A με περισπωμένη",Atilde:"Λατινικό κεφαλαίο γράμμα A με περισπωμένη",Auml:"Λατινικό κεφαλαίο γράμμα A με διαλυτικά",Aring:"Λατινικό κεφαλαίο γράμμα A με δακτύλιο επάνω",AElig:"Λατινικό κεφαλαίο γράμμα Æ",Ccedil:"Λατινικό κεφαλαίο γράμμα C με υπογεγραμμένη",Egrave:"Λατινικό κεφαλαίο γράμμα E με βαρεία",Eacute:"Λατινικό κεφαλαίο γράμμα E με οξεία",
Ecirc:"Λατινικό κεφαλαίο γράμμα Ε με περισπωμένη ",Euml:"Λατινικό κεφαλαίο γράμμα Ε με διαλυτικά",Igrave:"Λατινικό κεφαλαίο γράμμα I με βαρεία",Iacute:"Λατινικό κεφαλαίο γράμμα I με οξεία",Icirc:"Λατινικό κεφαλαίο γράμμα I  με περισπωμένη",Iuml:"Λατινικό κεφαλαίο γράμμα I με διαλυτικά ",ETH:"Λατινικό κεφαλαίο γράμμα Eth",Ntilde:"Λατινικό κεφαλαίο γράμμα N με περισπωμένη",Ograve:"Λατινικό κεφαλαίο γράμμα O με βαρεία",Oacute:"Λατινικό κεφαλαίο γράμμα O με οξεία",Ocirc:"Λατινικό κεφαλαίο γράμμα O με περισπωμένη ",
Otilde:"Λατινικό κεφαλαίο γράμμα O με περισπωμένη",Ouml:"Λατινικό κεφαλαίο γράμμα O με διαλυτικά",times:"Σύμβολο πολλαπλασιασμού",Oslash:"Λατινικό κεφαλαίο γράμμα O με μολυβιά",Ugrave:"Λατινικό κεφαλαίο γράμμα U με βαρεία",Uacute:"Λατινικό κεφαλαίο γράμμα U με οξεία",Ucirc:"Λατινικό κεφαλαίο γράμμα U με περισπωμένη",Uuml:"Λατινικό κεφαλαίο γράμμα U με διαλυτικά",Yacute:"Λατινικό κεφαλαίο γράμμα Y με οξεία",THORN:"Λατινικό κεφαλαίο γράμμα Thorn",szlig:"Λατινικό μικρό γράμμα απότομο s",agrave:"Λατινικό μικρό γράμμα a με βαρεία",
aacute:"Λατινικό μικρό γράμμα a με οξεία",acirc:"Λατινικό μικρό γράμμα a με περισπωμένη",atilde:"Λατινικό μικρό γράμμα a με περισπωμένη",auml:"Λατινικό μικρό γράμμα a με διαλυτικά",aring:"Λατινικό μικρό γράμμα a με δακτύλιο πάνω",aelig:"Λατινικό μικρό γράμμα æ",ccedil:"Λατινικό μικρό γράμμα c με υπογεγραμμένη",egrave:"Λατινικό μικρό γράμμα ε με βαρεία",eacute:"Λατινικό μικρό γράμμα e με οξεία",ecirc:"Λατινικό μικρό γράμμα e με περισπωμένη",euml:"Λατινικό μικρό γράμμα e με διαλυτικά",igrave:"Λατινικό μικρό γράμμα i με βαρεία",
iacute:"Λατινικό μικρό γράμμα i με οξεία",icirc:"Λατινικό μικρό γράμμα i με περισπωμένη",iuml:"Λατινικό μικρό γράμμα i με διαλυτικά",eth:"Λατινικό μικρό γράμμα eth",ntilde:"Λατινικό μικρό γράμμα n με περισπωμένη",ograve:"Λατινικό μικρό γράμμα o με βαρεία",oacute:"Λατινικό μικρό γράμμα o με οξεία ",ocirc:"Λατινικό πεζό γράμμα o με περισπωμένη",otilde:"Λατινικό μικρό γράμμα o με περισπωμένη ",ouml:"Λατινικό μικρό γράμμα o με διαλυτικά",divide:"Σύμβολο διαίρεσης",oslash:"Λατινικό μικρό γράμμα o με περισπωμένη",
ugrave:"Λατινικό μικρό γράμμα u με βαρεία",uacute:"Λατινικό μικρό γράμμα u με οξεία",ucirc:"Λατινικό μικρό γράμμα u με περισπωμένη",uuml:"Λατινικό μικρό γράμμα u με διαλυτικά",yacute:"Λατινικό μικρό γράμμα y με οξεία",thorn:"Λατινικό μικρό γράμμα thorn",yuml:"Λατινικό μικρό γράμμα y με διαλυτικά",OElig:"Λατινικό κεφαλαίο σύμπλεγμα ΟΕ",oelig:"Λατινικό μικρό σύμπλεγμα oe",372:"Λατινικό κεφαλαίο γράμμα W με περισπωμένη",374:"Λατινικό κεφαλαίο γράμμα Y με περισπωμένη",373:"Λατινικό μικρό γράμμα w με περισπωμένη",
375:"Λατινικό μικρό γράμμα y με περισπωμένη",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Οριζόντια αποσιωπητικά",trade:"Σύμβολο εμπορικού κατατεθέν",9658:"Μαύρος δείκτης που δείχνει προς τα δεξιά",bull:"Κουκκίδα",rarr:"Δεξί βελάκι",rArr:"Διπλό δεξί βελάκι",hArr:"Διπλό βελάκι αριστερά-δεξιά",diams:"Μαύρο διαμάντι",asymp:"Σχεδόν ίσο με"});admin/ckeditor/plugins/specialchar/dialogs/lang/lv.js0000644000352000025440000001163212450564214023406 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","lv",{euro:"Euro zīme",lsquo:"Kreisā  vienkārtīga pēdiņa",rsquo:"Labā  vienkārtīga pēdiņa",ldquo:"Kreisā  dubult pēdiņa",rdquo:"Labā dubult pēdiņa",ndash:"En svītra",mdash:"Em svītra",iexcl:"Apgriezta izsaukuma zīme",cent:"Centu naudas zīme",pound:"Sterliņu mārciņu naudas zīme",curren:"Valūtas zīme",yen:"Jenu naudas zīme",brvbar:"Vertikāla pārrauta līnija",sect:"Paragrāfa zīme",uml:"Diakritiska zīme",copy:"Autortiesību zīme",ordf:"Sievišķas kārtas rādītājs",
laquo:"Kreisā dubult stūra pēdiņu zīme",not:"Neparakstīts",reg:"Reģistrēta zīme",macr:"Garumzīme",deg:"Grādu zīme",sup2:"Augšraksts divi",sup3:"Augšraksts trīs",acute:"Akūta uzsvara zīme",micro:"Mikro zīme",para:"Rindkopas zīme ",middot:"Vidējs punkts",cedil:"Āķītis zem burta",sup1:"Augšraksts viens",ordm:"Vīrišķīgas kārtas rādītājs",raquo:"Labā dubult stūra pēdiņu zīme",frac14:"Vulgāra frakcija 1/4",frac12:"Vulgāra frakcija 1/2",frac34:"Vulgāra frakcija 3/4",iquest:"Apgriezta jautājuma zīme",Agrave:"Lielais latīņu burts A ar uzsvara zīmi",
Aacute:"Lielais  latīņu burts A ar akūtu uzsvara zīmi",Acirc:"Lielais latīņu burts A ar diakritisku zīmi",Atilde:"Lielais latīņu burts A ar tildi ",Auml:"Lielais latīņu burts A ar diakritisko zīmi",Aring:"Lielais latīņu burts A ar aplīti augšā",AElig:"Lielais latīņu burts Æ",Ccedil:"Lielais latīņu burts C ar āķīti zem burta",Egrave:"Lielais latīņu burts E ar apostrofu",Eacute:"Lielais latīņu burts E ar akūtu uzsvara zīmi",Ecirc:"Lielais latīņu burts E ar diakritisko zīmi",Euml:"Lielais latīņu burts E ar diakritisko zīmi",
Igrave:"Lielais latīņu burts I ar uzsvaras  zīmi",Iacute:"Lielais latīņu burts I ar akūtu uzsvara zīmi",Icirc:"Lielais latīņu burts I ar diakritisko zīmi",Iuml:"Lielais latīņu burts I ar diakritisko zīmi",ETH:"Lielais latīņu burts Eth",Ntilde:"Lielais latīņu burts N ar tildi",Ograve:"Lielais latīņu burts O ar uzsvara zīmi",Oacute:"Lielais latīņu burts O ar akūto uzsvara zīmi",Ocirc:"Lielais latīņu burts O ar diakritisko zīmi",Otilde:"Lielais latīņu burts O ar tildi",Ouml:"Lielais latīņu burts O ar diakritisko zīmi",
times:"Reizināšanas zīme ",Oslash:"Lielais latīņu burts O ar iesvītrojumu",Ugrave:"Lielais latīņu burts U ar uzsvaras zīmi",Uacute:"Lielais latīņu burts U ar akūto uzsvars zīmi",Ucirc:"Lielais latīņu burts U ar diakritisko zīmi",Uuml:"Lielais latīņu burts U ar diakritisko zīmi",Yacute:"Lielais latīņu burts Y ar akūto uzsvaras zīmi",THORN:"Lielais latīņu burts torn",szlig:"Mazs latīņu burts ar ligatūru",agrave:"Mazs latīņu burts a ar uzsvara zīmi",aacute:"Mazs latīņu burts a ar akūto uzsvara zīmi",
acirc:"Mazs latīņu burts a ar diakritisko zīmi",atilde:"Mazs latīņu burts a ar tildi",auml:"Mazs latīņu burts a ar diakritisko zīmi",aring:"Mazs latīņu burts a ar aplīti augšā",aelig:"Mazs latīņu burts æ",ccedil:"Mazs latīņu burts c ar āķīti zem burta",egrave:"Mazs latīņu burts e ar uzsvara zīmi ",eacute:"Mazs latīņu burts e ar akūtu uzsvara zīmi",ecirc:"Mazs latīņu burts e ar diakritisko zīmi",euml:"Mazs latīņu burts e ar diakritisko zīmi",igrave:"Mazs latīņu burts i ar uzsvara zīmi ",iacute:"Mazs latīņu burts i ar akūtu uzsvara zīmi",
icirc:"Mazs latīņu burts i ar diakritisko zīmi",iuml:"Mazs latīņu burts i ar diakritisko zīmi",eth:"Mazs latīņu burts eth",ntilde:"Mazs latīņu burts n ar tildi",ograve:"Mazs latīņu burts o ar uzsvara zīmi ",oacute:"Mazs latīņu burts o ar akūtu uzsvara zīmi",ocirc:"Mazs latīņu burts o ar diakritisko zīmi",otilde:"Mazs latīņu burts o ar tildi",ouml:"Mazs latīņu burts o ar diakritisko zīmi",divide:"Dalīšanas zīme",oslash:"Mazs latīņu burts o ar iesvītrojumu",ugrave:"Mazs latīņu burts u ar uzsvara zīmi ",
uacute:"Mazs latīņu burts u ar  akūtu uzsvara zīmi",ucirc:"Mazs latīņu burts u ar diakritisko zīmi",uuml:"Mazs latīņu burts u ar diakritisko zīmi",yacute:"Mazs latīņu burts y ar  akūtu uzsvaras zīmi",thorn:"Mazs latīņu burts torns",yuml:"Mazs latīņu burts y ar diakritisko zīmi",OElig:"Liela latīņu ligatūra OE",oelig:"Maza latīņu ligatūra oe",372:"Liels latīņu burts W ar diakritisko zīmi ",374:"Liels latīņu burts Y ar diakritisko zīmi ",373:"Mazs latīņu burts w ar diakritisko zīmi ",375:"Mazs latīņu burts y ar diakritisko zīmi ",
sbquo:"Mazas-9 vienkārtīgas pēdiņas",8219:"Lielas-9 vienkārtīgas apgrieztas pēdiņas",bdquo:"Mazas-9 dubultas pēdiņas",hellip:"Horizontāli daudzpunkti",trade:"Preču zīmes zīme",9658:"Melns pa labi pagriezts radītājs",bull:"Lode",rarr:"Bulta pa labi",rArr:"Dubulta Bulta pa labi",hArr:"Bulta pa kreisi",diams:"Dubulta Bulta pa kreisi",asymp:"Gandrīz vienāds ar"});admin/ckeditor/plugins/specialchar/dialogs/lang/ku.js0000644000352000025440000001661012450564214023405 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","ku",{euro:"نیشانەی یۆرۆ",lsquo:"نیشانەی فاریزەی سەرووژێری تاکی چەپ",rsquo:"نیشانەی فاریزەی سەرووژێری تاکی ڕاست",ldquo:"نیشانەی فاریزەی سەرووژێری دووهێندەی چه‌پ",rdquo:"نیشانەی فاریزەی سەرووژێری دووهێندەی ڕاست",ndash:"تەقەڵی کورت",mdash:"تەقەڵی درێژ",iexcl:"نیشانەی هەڵەوگێڕی سەرسوڕهێنەر",cent:"نیشانەی سەنت",pound:"نیشانەی پاوەند",curren:"نیشانەی دراو",yen:"نیشانەی یەنی ژاپۆنی",brvbar:"شریتی ئەستوونی پچڕاو",sect:"نیشانەی دوو s لەسەریەک",uml:"خاڵ",copy:"نیشانەی مافی چاپ",
ordf:"هێڵ لەسەر پیتی a",laquo:"دوو تیری بەدووایەکی چەپ",not:"نیشانەی نەخێر",reg:"نیشانەی R لەناو بازنەدا",macr:"ماکڕۆن",deg:"نیشانەی پلە",sup2:"سەرنووسی دوو",sup3:"سەرنووسی سێ",acute:"لاری تیژ",micro:"نیشانەی u لق درێژی چەپی خواروو",para:"نیشانەی پەڕەگراف",middot:"ناوەڕاستی خاڵ",cedil:"نیشانەی c ژێر چووکرە",sup1:"سەرنووسی یەک",ordm:"هێڵ لەژێر پیتی o",raquo:"دوو تیری بەدووایەکی ڕاست",frac14:"یەک لەسەر چووار",frac12:"یەک لەسەر دوو",frac34:"سێ لەسەر چووار",iquest:"هێمای هەڵەوگێری پرسیار",Agrave:"پیتی لاتینی A-ی گەورە لەگەڵ ڕوومەتداری لار",
Aacute:"پیتی لاتینی A-ی گەورە لەگەڵ ڕوومەتداری تیژ",Acirc:"پیتی لاتینی A-ی گەورە لەگەڵ نیشانە لەسەری",Atilde:"پیتی لاتینی A-ی گەورە لەگەڵ زەڕە",Auml:"پیتی لاتینی A-ی گەورە لەگەڵ نیشانە لەسەری",Aring:"پیتی لاتینی گەورەی Å",AElig:"پیتی لاتینی گەورەی Æ",Ccedil:"پیتی لاتینی C-ی گەورە لەگەڵ ژێر چووکرە",Egrave:"پیتی لاتینی E-ی گەورە لەگەڵ ڕوومەتداری لار",Eacute:"پیتی لاتینی E-ی گەورە لەگەڵ ڕوومەتداری تیژ",Ecirc:"پیتی لاتینی E-ی گەورە لەگەڵ نیشانە لەسەری",Euml:"پیتی لاتینی E-ی گەورە لەگەڵ نیشانە لەسەری",
Igrave:"پیتی لاتینی I-ی گەورە لەگەڵ ڕوومەتداری لار",Iacute:"پیتی لاتینی I-ی گەورە لەگەڵ ڕوومەتداری تیژ",Icirc:"پیتی لاتینی I-ی گەورە لەگەڵ نیشانە لەسەری",Iuml:"پیتی لاتینی I-ی گەورە لەگەڵ نیشانە لەسەری",ETH:"پیتی لاتینی E-ی گەورەی",Ntilde:"پیتی لاتینی N-ی گەورە لەگەڵ زەڕە",Ograve:"پیتی لاتینی O-ی گەورە لەگەڵ ڕوومەتداری لار",Oacute:"پیتی لاتینی O-ی گەورە لەگەڵ ڕوومەتداری تیژ",Ocirc:"پیتی لاتینی O-ی گەورە لەگەڵ نیشانە لەسەری",Otilde:"پیتی لاتینی O-ی گەورە لەگەڵ زەڕە",Ouml:"پیتی لاتینی O-ی گەورە لەگەڵ نیشانە لەسەری",
times:"نیشانەی لێکدان",Oslash:"پیتی لاتینی گەورەی Ø لەگەڵ هێمای دڵ وەستان",Ugrave:"پیتی لاتینی U-ی گەورە لەگەڵ ڕوومەتداری لار",Uacute:"پیتی لاتینی U-ی گەورە لەگەڵ ڕوومەتداری تیژ",Ucirc:"پیتی لاتینی U-ی گەورە لەگەڵ نیشانە لەسەری",Uuml:"پیتی لاتینی U-ی گەورە لەگەڵ نیشانە لەسەری",Yacute:"پیتی لاتینی Y-ی گەورە لەگەڵ ڕوومەتداری تیژ",THORN:"پیتی لاتینی دڕکی گەورە",szlig:"پیتی لاتنی نووک تیژی s",agrave:"پیتی لاتینی a-ی بچووک لەگەڵ ڕوومەتداری لار",aacute:"پیتی لاتینی a-ی بچووك لەگەڵ ڕوومەتداری تیژ",acirc:"پیتی لاتینی a-ی بچووك لەگەڵ نیشانە لەسەری",
atilde:"پیتی لاتینی a-ی بچووك لەگەڵ زەڕە",auml:"پیتی لاتینی a-ی بچووك لەگەڵ نیشانە لەسەری",aring:"پیتی لاتینی å-ی بچووك",aelig:"پیتی لاتینی æ-ی بچووك",ccedil:"پیتی لاتینی c-ی بچووك لەگەڵ ژێر چووکرە",egrave:"پیتی لاتینی e-ی بچووك لەگەڵ ڕوومەتداری لار",eacute:"پیتی لاتینی e-ی بچووك لەگەڵ ڕوومەتداری تیژ",ecirc:"پیتی لاتینی e-ی بچووك لەگەڵ نیشانە لەسەری",euml:"پیتی لاتینی e-ی بچووك لەگەڵ نیشانە لەسەری",igrave:"پیتی لاتینی i-ی بچووك لەگەڵ ڕوومەتداری لار",iacute:"پیتی لاتینی i-ی بچووك لەگەڵ ڕوومەتداری تیژ",
icirc:"پیتی لاتینی i-ی بچووك لەگەڵ نیشانە لەسەری",iuml:"پیتی لاتینی i-ی بچووك لەگەڵ نیشانە لەسەری",eth:"پیتی لاتینی e-ی بچووك",ntilde:"پیتی لاتینی n-ی بچووك لەگەڵ زەڕە",ograve:"پیتی لاتینی o-ی بچووك لەگەڵ ڕوومەتداری لار",oacute:"پیتی لاتینی o-ی بچووك له‌گەڵ ڕوومەتداری تیژ",ocirc:"پیتی لاتینی o-ی بچووك لەگەڵ نیشانە لەسەری",otilde:"پیتی لاتینی o-ی بچووك لەگەڵ زەڕە",ouml:"پیتی لاتینی o-ی بچووك لەگەڵ نیشانە لەسەری",divide:"نیشانەی دابەش",oslash:"پیتی لاتینی گەورەی ø لەگەڵ هێمای دڵ وەستان",ugrave:"پیتی لاتینی u-ی بچووك لەگەڵ ڕوومەتداری لار",
uacute:"پیتی لاتینی u-ی بچووك لەگەڵ ڕوومەتداری تیژ",ucirc:"پیتی لاتینی u-ی بچووك لەگەڵ نیشانە لەسەری",uuml:"پیتی لاتینی u-ی بچووك لەگەڵ نیشانە لەسەری",yacute:"پیتی لاتینی y-ی بچووك لەگەڵ ڕوومەتداری تیژ",thorn:"پیتی لاتینی دڕکی بچووك",yuml:"پیتی لاتینی y-ی بچووك لەگەڵ نیشانە لەسەری",OElig:"پیتی لاتینی گەورەی پێکەوەنووسراوی OE",oelig:"پیتی لاتینی بچووکی پێکەوەنووسراوی oe",372:"پیتی لاتینی W-ی گەورە لەگەڵ نیشانە لەسەری",374:"پیتی لاتینی Y-ی گەورە لەگەڵ نیشانە لەسەری",373:"پیتی لاتینی w-ی بچووکی لەگەڵ نیشانە لەسەری",
375:"پیتی لاتینی y-ی بچووکی لەگەڵ نیشانە لەسەری",sbquo:"نیشانەی فاریزەی نزم",8219:"نیشانەی فاریزەی بەرزی پێچەوانە",bdquo:"دوو فاریزەی تەنیش یەك",hellip:"ئاسۆیی بازنە",trade:"نیشانەی بازرگانی",9658:"ئاراستەی ڕەشی دەستی ڕاست",bull:"فیشەك",rarr:"تیری دەستی ڕاست",rArr:"دووتیری دەستی ڕاست",hArr:"دوو تیری ڕاست و چەپ",diams:"ڕەشی پاقڵاوەیی",asymp:"نیشانەی یەکسانە"});admin/ckeditor/plugins/specialchar/dialogs/lang/bg.js0000644000352000025440000001117712450564214023361 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","bg",{euro:"Евро знак",lsquo:"Лява маркировка за цитат",rsquo:"Дясна маркировка за цитат",ldquo:"Лява двойна кавичка за цитат",rdquo:"Дясна двойна кавичка за цитат",ndash:"\\\\",mdash:"/",iexcl:"Обърната питанка",cent:"Знак за цент",pound:"Знак за паунд",curren:"Валутен знак",yen:"Знак за йена",brvbar:"Прекъсната линия",sect:"Знак за секция",uml:"Diaeresis",copy:"Знак за Copyright",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark",
not:"Not sign",reg:"Registered sign",macr:"Macron",deg:"Degree sign",sup2:"Superscript two",sup3:"Superscript three",acute:"Acute accent",micro:"Micro sign",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent",
Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin Capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",
Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke",
Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",
aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",
ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",
yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",
trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"});admin/ckeditor/plugins/specialchar/dialogs/lang/cs.js0000644000352000025440000001154712450564214023377 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","cs",{euro:"Znak eura",lsquo:"Počáteční uvozovka jednoduchá",rsquo:"Koncová uvozovka jednoduchá",ldquo:"Počáteční uvozovka dvojitá",rdquo:"Koncová uvozovka dvojitá",ndash:"En pomlčka",mdash:"Em pomlčka",iexcl:"Obrácený vykřičník",cent:"Znak centu",pound:"Znak libry",curren:"Znak měny",yen:"Znak jenu",brvbar:"Přerušená svislá čára",sect:"Znak oddílu",uml:"Přehláska",copy:"Znak copyrightu",ordf:"Ženský indikátor rodu",laquo:"Znak dvojitých lomených uvozovek vlevo",
not:"Logistický zápor",reg:"Znak registrace",macr:"Pomlčka nad",deg:"Znak stupně",sup2:"Dvojka jako horní index",sup3:"Trojka jako horní index",acute:"Čárka nad vpravo",micro:"Znak mikro",para:"Znak odstavce",middot:"Tečka uprostřed",cedil:"Ocásek vlevo",sup1:"Jednička jako horní index",ordm:"Mužský indikátor rodu",raquo:"Znak dvojitých lomených uvozovek vpravo",frac14:"Obyčejný zlomek jedna čtvrtina",frac12:"Obyčejný zlomek jedna polovina",frac34:"Obyčejný zlomek tři čtvrtiny",iquest:"Znak obráceného otazníku",
Agrave:"Velké písmeno latinky A s čárkou nad vlevo",Aacute:"Velké písmeno latinky A s čárkou nad vpravo",Acirc:"Velké písmeno latinky A s vokáněm",Atilde:"Velké písmeno latinky A s tildou",Auml:"Velké písmeno latinky A s dvěma tečkami",Aring:"Velké písmeno latinky A s kroužkem nad",AElig:"Velké písmeno latinky Ae",Ccedil:"Velké písmeno latinky C s ocáskem vlevo",Egrave:"Velké písmeno latinky E s čárkou nad vlevo",Eacute:"Velké písmeno latinky E s čárkou nad vpravo",Ecirc:"Velké písmeno latinky E s vokáněm",
Euml:"Velké písmeno latinky E s dvěma tečkami",Igrave:"Velké písmeno latinky I s čárkou nad vlevo",Iacute:"Velké písmeno latinky I s čárkou nad vpravo",Icirc:"Velké písmeno latinky I s vokáněm",Iuml:"Velké písmeno latinky I s dvěma tečkami",ETH:"Velké písmeno latinky Eth",Ntilde:"Velké písmeno latinky N s tildou",Ograve:"Velké písmeno latinky O s čárkou nad vlevo",Oacute:"Velké písmeno latinky O s čárkou nad vpravo",Ocirc:"Velké písmeno latinky O s vokáněm",Otilde:"Velké písmeno latinky O s tildou",
Ouml:"Velké písmeno latinky O s dvěma tečkami",times:"Znak násobení",Oslash:"Velké písmeno latinky O přeškrtnuté",Ugrave:"Velké písmeno latinky U s čárkou nad vlevo",Uacute:"Velké písmeno latinky U s čárkou nad vpravo",Ucirc:"Velké písmeno latinky U s vokáněm",Uuml:"Velké písmeno latinky U s dvěma tečkami",Yacute:"Velké písmeno latinky Y s čárkou nad vpravo",THORN:"Velké písmeno latinky Thorn",szlig:"Malé písmeno latinky ostré s",agrave:"Malé písmeno latinky a s čárkou nad vlevo",aacute:"Malé písmeno latinky a s čárkou nad vpravo",
acirc:"Malé písmeno latinky a s vokáněm",atilde:"Malé písmeno latinky a s tildou",auml:"Malé písmeno latinky a s dvěma tečkami",aring:"Malé písmeno latinky a s kroužkem nad",aelig:"Malé písmeno latinky ae",ccedil:"Malé písmeno latinky c s ocáskem vlevo",egrave:"Malé písmeno latinky e s čárkou nad vlevo",eacute:"Malé písmeno latinky e s čárkou nad vpravo",ecirc:"Malé písmeno latinky e s vokáněm",euml:"Malé písmeno latinky e s dvěma tečkami",igrave:"Malé písmeno latinky i s čárkou nad vlevo",iacute:"Malé písmeno latinky i s čárkou nad vpravo",
icirc:"Malé písmeno latinky i s vokáněm",iuml:"Malé písmeno latinky i s dvěma tečkami",eth:"Malé písmeno latinky eth",ntilde:"Malé písmeno latinky n s tildou",ograve:"Malé písmeno latinky o s čárkou nad vlevo",oacute:"Malé písmeno latinky o s čárkou nad vpravo",ocirc:"Malé písmeno latinky o s vokáněm",otilde:"Malé písmeno latinky o s tildou",ouml:"Malé písmeno latinky o s dvěma tečkami",divide:"Znak dělení",oslash:"Malé písmeno latinky o přeškrtnuté",ugrave:"Malé písmeno latinky u s čárkou nad vlevo",
uacute:"Malé písmeno latinky u s čárkou nad vpravo",ucirc:"Malé písmeno latinky u s vokáněm",uuml:"Malé písmeno latinky u s dvěma tečkami",yacute:"Malé písmeno latinky y s čárkou nad vpravo",thorn:"Malé písmeno latinky thorn",yuml:"Malé písmeno latinky y s dvěma tečkami",OElig:"Velká ligatura latinky OE",oelig:"Malá ligatura latinky OE",372:"Velké písmeno latinky W s vokáněm",374:"Velké písmeno latinky Y s vokáněm",373:"Malé písmeno latinky w s vokáněm",375:"Malé písmeno latinky y s vokáněm",sbquo:"Dolní 9 uvozovka jednoduchá",
8219:"Horní obrácená 9 uvozovka jednoduchá",bdquo:"Dolní 9 uvozovka dvojitá",hellip:"Trojtečkový úvod",trade:"Obchodní značka",9658:"Černý ukazatel směřující vpravo",bull:"Kolečko",rarr:"Šipka vpravo",rArr:"Dvojitá šipka vpravo",hArr:"Dvojitá šipka vlevo a vpravo",diams:"Černé piky",asymp:"Téměř se rovná"});admin/ckeditor/plugins/specialchar/dialogs/lang/ja.js0000644000352000025440000000761412450564214023364 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","ja",{euro:"ユーロ記号",lsquo:"左シングル引用符",rsquo:"右シングル引用符",ldquo:"左ダブル引用符",rdquo:"右ダブル引用符",ndash:"半角ダッシュ",mdash:"全角ダッシュ",iexcl:"逆さ感嘆符",cent:"セント記号",pound:"ポンド記号",curren:"通貨記号",yen:"円記号",brvbar:"上下に分かれた縦棒",sect:"節記号",uml:"分音記号(ウムラウト)",copy:"著作権表示記号",ordf:"女性序数標識",laquo:" 始め二重山括弧引用記号",not:"論理否定記号",reg:"登録商標記号",macr:"長音符",deg:"度記号",sup2:"上つき2, 2乗",sup3:"上つき3, 3乗",acute:"揚音符",micro:"ミクロン記号",para:"段落記号",middot:"中黒",cedil:"セディラ",sup1:"上つき1",ordm:"男性序数標識",raquo:"終わり二重山括弧引用記号",
frac14:"四分の一",frac12:"二分の一",frac34:"四分の三",iquest:"逆疑問符",Agrave:"抑音符つき大文字A",Aacute:"揚音符つき大文字A",Acirc:"曲折アクセントつき大文字A",Atilde:"チルダつき大文字A",Auml:"分音記号つき大文字A",Aring:"リングつき大文字A",AElig:"AとEの合字",Ccedil:"セディラつき大文字C",Egrave:"抑音符つき大文字E",Eacute:"揚音符つき大文字E",Ecirc:"曲折アクセントつき大文字E",Euml:"分音記号つき大文字E",Igrave:"抑音符つき大文字I",Iacute:"揚音符つき大文字I",Icirc:"曲折アクセントつき大文字I",Iuml:"分音記号つき大文字I",ETH:"[アイスランド語]大文字ETH",Ntilde:"チルダつき大文字N",Ograve:"抑音符つき大文字O",Oacute:"揚音符つき大文字O",Ocirc:"曲折アクセントつき大文字O",Otilde:"チルダつき大文字O",Ouml:" 分音記号つき大文字O",
times:"乗算記号",Oslash:"打ち消し線つき大文字O",Ugrave:"抑音符つき大文字U",Uacute:"揚音符つき大文字U",Ucirc:"曲折アクセントつき大文字U",Uuml:"分音記号つき大文字U",Yacute:"揚音符つき大文字Y",THORN:"[アイスランド語]大文字THORN",szlig:"ドイツ語エスツェット",agrave:"抑音符つき小文字a",aacute:"揚音符つき小文字a",acirc:"曲折アクセントつき小文字a",atilde:"チルダつき小文字a",auml:"分音記号つき小文字a",aring:"リングつき小文字a",aelig:"aとeの合字",ccedil:"セディラつき小文字c",egrave:"抑音符つき小文字e",eacute:"揚音符つき小文字e",ecirc:"曲折アクセントつき小文字e",euml:"分音記号つき小文字e",igrave:"抑音符つき小文字i",iacute:"揚音符つき小文字i",icirc:"曲折アクセントつき小文字i",iuml:"分音記号つき小文字i",eth:"アイスランド語小文字eth",
ntilde:"チルダつき小文字n",ograve:"抑音符つき小文字o",oacute:"揚音符つき小文字o",ocirc:"曲折アクセントつき小文字o",otilde:"チルダつき小文字o",ouml:"分音記号つき小文字o",divide:"除算記号",oslash:"打ち消し線つき小文字o",ugrave:"抑音符つき小文字u",uacute:"揚音符つき小文字u",ucirc:"曲折アクセントつき小文字u",uuml:"分音記号つき小文字u",yacute:"揚音符つき小文字y",thorn:"アイスランド語小文字thorn",yuml:"分音記号つき小文字y",OElig:"OとEの合字",oelig:"oとeの合字",372:"曲折アクセントつき大文字W",374:"曲折アクセントつき大文字Y",373:"曲折アクセントつき小文字w",375:"曲折アクセントつき小文字y",sbquo:"シングル下引用符",8219:"左右逆の左引用符",bdquo:"ダブル下引用符",hellip:"三点リーダ",trade:"商標記号",9658:"右黒三角ポインタ",bull:"黒丸",
rarr:"右矢印",rArr:"右二重矢印",hArr:"左右二重矢印",diams:"ダイヤ",asymp:"漸近"});admin/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js0000644000352000025440000000622012450564214023752 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","fr-ca",{euro:"Symbole Euro",lsquo:"Guillemet simple ouvrant",rsquo:"Guillemet simple fermant",ldquo:"Guillemet double ouvrant",rdquo:"Guillemet double fermant",ndash:"Tiret haut",mdash:"Tiret",iexcl:"Point d'exclamation inversé",cent:"Symbole de cent",pound:"Symbole de Livre Sterling",curren:"Symbole monétaire",yen:"Symbole du Yen",brvbar:"Barre scindée",sect:"Symbole de section",uml:"Tréma",copy:"Symbole de copyright",ordf:"Indicateur ordinal féminin",laquo:"Guillemet français ouvrant",
not:"Indicateur de négation",reg:"Symbole de marque déposée",macr:"Macron",deg:"Degré",sup2:"Exposant 2",sup3:"Exposant 3",acute:"Accent aigüe",micro:"Symbole micro",para:"Paragraphe",middot:"Point médian",cedil:"Cédille",sup1:"Exposant 1",ordm:"Indicateur ordinal masculin",raquo:"Guillemet français fermant",frac14:"Un quart",frac12:"Une demi",frac34:"Trois quart",iquest:"Point d'interrogation inversé",Agrave:"A accent grave",Aacute:"A accent aigüe",Acirc:"A circonflexe",Atilde:"A tilde",Auml:"A tréma",
Aring:"A avec un rond au dessus",AElig:"Æ majuscule",Ccedil:"C cédille",Egrave:"E accent grave",Eacute:"E accent aigüe",Ecirc:"E accent circonflexe",Euml:"E tréma",Igrave:"I accent grave",Iacute:"I accent aigüe",Icirc:"I accent circonflexe",Iuml:"I tréma",ETH:"Lettre majuscule islandaise ED",Ntilde:"N tilde",Ograve:"O accent grave",Oacute:"O accent aigüe",Ocirc:"O accent circonflexe",Otilde:"O tilde",Ouml:"O tréma",times:"Symbole de multiplication",Oslash:"O barré",Ugrave:"U accent grave",Uacute:"U accent aigüe",
Ucirc:"U accent circonflexe",Uuml:"U tréma",Yacute:"Y accent aigüe",THORN:"Lettre islandaise Thorn majuscule",szlig:"Lettre minuscule allemande s dur",agrave:"a accent grave",aacute:"a accent aigüe",acirc:"a accent circonflexe",atilde:"a tilde",auml:"a tréma",aring:"a avec un cercle au dessus",aelig:"æ",ccedil:"c cédille",egrave:"e accent grave",eacute:"e accent aigüe",ecirc:"e accent circonflexe",euml:"e tréma",igrave:"i accent grave",iacute:"i accent aigüe",icirc:"i accent circonflexe",iuml:"i tréma",
eth:"Lettre minuscule islandaise ED",ntilde:"n tilde",ograve:"o accent grave",oacute:"o accent aigüe",ocirc:"O accent circonflexe",otilde:"O tilde",ouml:"O tréma",divide:"Symbole de division",oslash:"o barré",ugrave:"u accent grave",uacute:"u accent aigüe",ucirc:"u accent circonflexe",uuml:"u tréma",yacute:"y accent aigüe",thorn:"Lettre islandaise thorn minuscule",yuml:"y tréma",OElig:"ligature majuscule latine Œ",oelig:"ligature minuscule latine œ",372:"W accent circonflexe",374:"Y accent circonflexe",
373:"w accent circonflexe",375:"y accent circonflexe",sbquo:"Guillemet simple fermant",8219:"Guillemet-virgule supérieur culbuté",bdquo:"Guillemet-virgule double inférieur",hellip:"Points de suspension",trade:"Symbole de marque déposée",9658:"Flèche noire pointant vers la droite",bull:"Puce",rarr:"Flèche vers la droite",rArr:"Flèche double vers la droite",hArr:"Flèche double vers la gauche",diams:"Carreau",asymp:"Presque égal"});admin/ckeditor/plugins/specialchar/dialogs/lang/et.js0000644000352000025440000001061012450564214023370 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","et",{euro:"Euromärk",lsquo:"Alustav ühekordne jutumärk",rsquo:"Lõpetav ühekordne jutumärk",ldquo:"Alustav kahekordne jutumärk",rdquo:"Lõpetav kahekordne jutumärk",ndash:"Enn-kriips",mdash:"Emm-kriips",iexcl:"Pööratud hüüumärk",cent:"Sendimärk",pound:"Naela märk",curren:"Valuutamärk",yen:"Jeeni märk",brvbar:"Katkestatud kriips",sect:"Lõigu märk",uml:"Täpid",copy:"Autoriõiguse märk",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark",
not:"Ei-märk",reg:"Registered sign",macr:"Macron",deg:"Kraadimärk",sup2:"Ülaindeks kaks",sup3:"Ülaindeks kolm",acute:"Acute accent",micro:"Mikro-märk",para:"Pilcrow sign",middot:"Keskpunkt",cedil:"Cedilla",sup1:"Ülaindeks üks",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent",
Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Ladina suur A tildega",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin Capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",
Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Täppidega ladina suur O",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke",
Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Kandilise katusega suur ladina U",Uuml:"Täppidega ladina suur U",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Ladina väike terav s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Kandilise katusega ladina väike a",atilde:"Tildega ladina väike a",auml:"Täppidega ladina väike a",aring:"Latin small letter a with ring above",
aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",ntilde:"Latin small letter n with tilde",
ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Jagamismärk",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",yacute:"Latin small letter y with acute accent",
thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",trade:"Kaubamärgi märk",9658:"Black right-pointing pointer",
bull:"Kuul",rarr:"Nool paremale",rArr:"Topeltnool paremale",hArr:"Topeltnool vasakule",diams:"Black diamond suit",asymp:"Ligikaudu võrdne"});admin/ckeditor/plugins/specialchar/dialogs/lang/tt.js0000644000352000025440000001476512450564214023426 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","tt",{euro:"Евро тамгасы",lsquo:"Сул бер иңле куштырнаклар",rsquo:"Уң бер иңле куштырнаклар",ldquo:"Сул ике иңле куштырнаклар",rdquo:"Уң ике иңле куштырнаклар",ndash:"Кыска сызык",mdash:"Озын сызык",iexcl:"Әйләндерелгән өндәү билгесе",cent:"Цент тамгасы",pound:"Фунт тамгасы",curren:"Акча берәмлеге тамгасы",yen:"Иена тамгасы",brvbar:"Broken bar",sect:"Section sign",uml:"Диерезис",copy:"Хокук иясе булу билгесе",ordf:"Feminine ordinal indicator",laquo:"Ачылучы чыршысыман җәя",
not:"Not sign",reg:"Теркәләнгән булу билгесе",macr:"Макрон",deg:"Градус билгесе",sup2:"Икенче өске индекс",sup3:"Өченче өске индекс",acute:"Басым билгесе",micro:"Микро билгесе",para:"Параграф билгесе",middot:"Middle dot",cedil:"Седиль",sup1:"Беренче өске индекс",ordm:"Masculine ordinal indicator",raquo:"Ябылучы чыршысыман җәя",frac14:"Гади дүрттән бер билгесе",frac12:"Гади икедән бер билгесе",frac34:"Гади дүрттән өч билгесе",iquest:"Әйләндерелгән өндәү билгесе",Agrave:"Гравис белән латин A баш хәрефе",
Aacute:"Басым билгесе белән латин A баш хәрефе",Acirc:"Циркумфлекс белән латин A баш хәрефе",Atilde:"Тильда белән латин A баш хәрефе",Auml:"Диерезис белән латин A баш хәрефе",Aring:"Өстендә боҗра булган латин A баш хәрефе",AElig:"Латин Æ баш хәрефе",Ccedil:"Седиль белән латин C баш хәрефе",Egrave:"Гравис белән латин E баш хәрефе",Eacute:"Басым билгесе белән латин E баш хәрефе",Ecirc:"Циркумфлекс белән латин E баш хәрефе",Euml:"Диерезис белән латин E баш хәрефе",Igrave:"Гравис белән латин I баш хәрефе",
Iacute:"Басым билгесе белән латин I баш хәрефе",Icirc:"Циркумфлекс белән латин I баш хәрефе",Iuml:"Диерезис белән латин I баш хәрефе",ETH:"Латин Eth баш хәрефе",Ntilde:"Тильда белән латин N баш хәрефе",Ograve:"Гравис белән латин O баш хәрефе",Oacute:"Басым билгесе белән латин O баш хәрефе",Ocirc:"Циркумфлекс белән латин O баш хәрефе",Otilde:"Тильда белән латин O баш хәрефе",Ouml:"Диерезис белән латин O баш хәрефе",times:"Тапкырлау билгесе",Oslash:"Сызык белән латин O баш хәрефе",Ugrave:"Гравис белән латин U баш хәрефе",
Uacute:"Басым билгесе белән латин U баш хәрефе",Ucirc:"Циркумфлекс белән латин U баш хәрефе",Uuml:"Диерезис белән латин U баш хәрефе",Yacute:"Басым билгесе белән латин Y баш хәрефе",THORN:"Латин Thorn баш хәрефе",szlig:"Латин beta юл хәрефе",agrave:"Гравис белән латин a юл хәрефе",aacute:"Басым билгесе белән латин a юл хәрефе",acirc:"Циркумфлекс белән латин a юл хәрефе",atilde:"Тильда белән латин a юл хәрефе",auml:"Диерезис белән латин a юл хәрефе",aring:"Өстендә боҗра булган латин a юл хәрефе",aelig:"Латин æ юл хәрефе",
ccedil:"Седиль белән латин c юл хәрефе",egrave:"Гравис белән латин e юл хәрефе",eacute:"Басым билгесе белән латин e юл хәрефе",ecirc:"Циркумфлекс белән латин e юл хәрефе",euml:"Диерезис белән латин e юл хәрефе",igrave:"Гравис белән латин i юл хәрефе",iacute:"Басым билгесе белән латин i юл хәрефе",icirc:"Циркумфлекс белән латин i юл хәрефе",iuml:"Диерезис белән латин i юл хәрефе",eth:"Латин eth юл хәрефе",ntilde:"Тильда белән латин n юл хәрефе",ograve:"Гравис белән латин o юл хәрефе",oacute:"Басым билгесе белән латин o юл хәрефе",
ocirc:"Циркумфлекс белән латин o юл хәрефе",otilde:"Тильда белән латин o юл хәрефе",ouml:"Диерезис белән латин o юл хәрефе",divide:"Бүлү билгесе",oslash:"Сызык белән латин o юл хәрефе",ugrave:"Гравис белән латин u юл хәрефе",uacute:"Басым билгесе белән латин u юл хәрефе",ucirc:"Циркумфлекс белән латин u юл хәрефе",uuml:"Диерезис белән латин u юл хәрефе",yacute:"Басым билгесе белән латин y юл хәрефе",thorn:"Латин thorn юл хәрефе",yuml:"Диерезис белән латин y юл хәрефе",OElig:"Латин лигатура OE баш хәрефе",
oelig:"Латин лигатура oe юл хәрефе",372:"Циркумфлекс белән латин W баш хәрефе",374:"Циркумфлекс белән латин Y баш хәрефе",373:"Циркумфлекс белән латин w юл хәрефе",375:"Циркумфлекс белән латин y юл хәрефе",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Ятма эллипс",trade:"Сәүдә маркасы билгесе",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",
diams:"Black diamond suit",asymp:"Almost equal to"});admin/ckeditor/plugins/specialchar/dialogs/lang/he.js0000644000352000025440000001156612450564214023367 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","he",{euro:"יורו",lsquo:"סימן ציטוט יחיד שמאלי",rsquo:"סימן ציטוט יחיד ימני",ldquo:"סימן ציטוט כפול שמאלי",rdquo:"סימן ציטוט כפול ימני",ndash:"קו מפריד קצר",mdash:"קו מפריד ארוך",iexcl:"סימן קריאה הפוך",cent:"סנט",pound:"פאונד",curren:"מטבע",yen:"ין",brvbar:"קו שבור",sect:"סימן מקטע",uml:"שתי נקודות אופקיות (Diaeresis)",copy:"סימן זכויות יוצרים (Copyright)",ordf:"סימן אורדינאלי נקבי",laquo:"סימן ציטוט זווית כפולה לשמאל",not:"סימן שלילה מתמטי",reg:"סימן רשום",
macr:"מקרון (הגיה ארוכה)",deg:"מעלות",sup2:"2 בכתיב עילי",sup3:"3 בכתיב עילי",acute:"סימן דגוש (Acute)",micro:"מיקרו",para:"סימון פסקה",middot:"נקודה אמצעית",cedil:"סדיליה",sup1:"1 בכתיב עילי",ordm:"סימן אורדינאלי זכרי",raquo:"סימן ציטוט זווית כפולה לימין",frac14:"רבע בשבר פשוט",frac12:"חצי בשבר פשוט",frac34:"שלושה רבעים בשבר פשוט",iquest:"סימן שאלה הפוך",Agrave:"אות לטינית A עם גרש (Grave)",Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",
Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"אות לטינית Æ גדולה",Ccedil:"Latin capital letter C with cedilla",Egrave:"אות לטינית E עם גרש (Grave)",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"אות לטינית I עם גרש (Grave)",Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",
ETH:"אות לטינית Eth גדולה",Ntilde:"Latin capital letter N with tilde",Ograve:"אות לטינית O עם גרש (Grave)",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"סימן כפל",Oslash:"Latin capital letter O with stroke",Ugrave:"אות לטינית U עם גרש (Grave)",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",
Yacute:"Latin capital letter Y with acute accent",THORN:"אות לטינית Thorn גדולה",szlig:"אות לטינית s חדה קטנה",agrave:"אות לטינית a עם גרש (Grave)",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",aring:"Latin small letter a with ring above",aelig:"אות לטינית æ קטנה",ccedil:"Latin small letter c with cedilla",egrave:"אות לטינית e עם גרש (Grave)",eacute:"Latin small letter e with acute accent",
ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"אות לטינית i עם גרש (Grave)",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"אות לטינית eth קטנה",ntilde:"Latin small letter n with tilde",ograve:"אות לטינית o עם גרש (Grave)",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",
divide:"סימן חלוקה",oslash:"Latin small letter o with stroke",ugrave:"אות לטינית u עם גרש (Grave)",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",yacute:"Latin small letter y with acute accent",thorn:"אות לטינית thorn קטנה",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",
373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"סימן ציטוט נמוך יחיד",8219:"סימן ציטוט",bdquo:"סימן ציטוט נמוך כפול",hellip:"שלוש נקודות",trade:"סימן טריידמארק",9658:"סמן שחור לצד ימין",bull:"תבליט (רשימה)",rarr:"חץ לימין",rArr:"חץ כפול לימין",hArr:"חץ כפול לימין ושמאל",diams:"יהלום מלא",asymp:"כמעט שווה"});admin/ckeditor/plugins/specialchar/dialogs/lang/th.js0000644000352000025440000001110012450564214023366 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","th",{euro:"Euro sign",lsquo:"Left single quotation mark",rsquo:"Right single quotation mark",ldquo:"Left double quotation mark",rdquo:"Right double quotation mark",ndash:"En dash",mdash:"Em dash",iexcl:"Inverted exclamation mark",cent:"Cent sign",pound:"Pound sign",curren:"สัญลักษณ์สกุลเงิน",yen:"สัญลักษณ์เงินเยน",brvbar:"Broken bar",sect:"Section sign",uml:"Diaeresis",copy:"Copyright sign",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark",
not:"Not sign",reg:"Registered sign",macr:"Macron",deg:"Degree sign",sup2:"Superscript two",sup3:"Superscript three",acute:"Acute accent",micro:"Micro sign",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent",
Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin Capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",
Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke",
Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",
aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",
ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",
yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",
trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"สัญลักษณ์หัวข้อย่อย",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"});admin/ckeditor/plugins/specialchar/dialogs/lang/id.js0000644000352000025440000001071012450564214023355 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","id",{euro:"Tanda Euro",lsquo:"Left single quotation mark",rsquo:"Right single quotation mark",ldquo:"Left double quotation mark",rdquo:"Right double quotation mark",ndash:"En dash",mdash:"Em dash",iexcl:"Inverted exclamation mark",cent:"Cent sign",pound:"Pound sign",curren:"Currency sign",yen:"Tanda Yen",brvbar:"Broken bar",sect:"Section sign",uml:"Diaeresis",copy:"Tanda Hak Cipta",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark",
not:"Not sign",reg:"Tanda Telah Terdaftar",macr:"Macron",deg:"Degree sign",sup2:"Superscript two",sup3:"Superscript three",acute:"Acute accent",micro:"Micro sign",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent",
Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin Capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",
Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke",
Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",
aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",
ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",
yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",
trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"});admin/ckeditor/plugins/specialchar/dialogs/lang/km.js0000644000352000025440000001121312450564214023367 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","km",{euro:"សញ្ញា​អឺរ៉ូ",lsquo:"Left single quotation mark",rsquo:"Right single quotation mark",ldquo:"Left double quotation mark",rdquo:"Right double quotation mark",ndash:"En dash",mdash:"Em dash",iexcl:"Inverted exclamation mark",cent:"សញ្ញា​សេន",pound:"សញ្ញា​ផោន",curren:"សញ្ញា​រូបិយបណ្ណ",yen:"សញ្ញា​យ៉េន",brvbar:"Broken bar",sect:"Section sign",uml:"Diaeresis",copy:"សញ្ញា​រក្សា​សិទ្ធិ",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark",
not:"Not sign",reg:"Registered sign",macr:"Macron",deg:"សញ្ញា​ដឺក្រេ",sup2:"Superscript two",sup3:"Superscript three",acute:"Acute accent",micro:"សញ្ញា​មីក្រូ",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent",
Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin Capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",
Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke",
Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",
aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",
ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",
yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",
trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"});admin/ckeditor/plugins/specialchar/dialogs/lang/ru.js0000644000352000025440000001656712450564214023427 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","ru",{euro:"Знак евро",lsquo:"Левая одинарная кавычка",rsquo:"Правая одинарная кавычка",ldquo:"Левая двойная кавычка",rdquo:"Левая двойная кавычка",ndash:"Среднее тире",mdash:"Длинное тире",iexcl:"перевёрнутый восклицательный знак",cent:"Цент",pound:"Фунт",curren:"Знак валюты",yen:"Йена",brvbar:"Вертикальная черта с разрывом",sect:"Знак параграфа",uml:"Умлаут",copy:"Знак охраны авторского права",ordf:"Указатель окончания женского рода ...ая",laquo:"Левая кавычка-«ёлочка»",
not:"Отрицание",reg:"Знак охраны смежных прав\\t",macr:"Макрон",deg:"Градус",sup2:"Надстрочное два",sup3:"Надстрочное три",acute:"Акут",micro:"Микро",para:"Абзац",middot:"Интерпункт",cedil:"Седиль",sup1:"Надстрочная единица",ordm:"Порядковое числительное",raquo:"Правая кавычка-«ёлочка»",frac14:"Одна четвертая",frac12:"Одна вторая",frac34:"Три четвёртых",iquest:"Перевёрнутый вопросительный знак",Agrave:"Латинская заглавная буква А с апострофом",Aacute:"Латинская заглавная буква A с ударением",Acirc:"Латинская заглавная буква А с циркумфлексом",
Atilde:"Латинская заглавная буква А с тильдой",Auml:"Латинская заглавная буква А с тремой",Aring:"Латинская заглавная буква А с кольцом над ней",AElig:"Латинская большая буква Æ",Ccedil:"Латинская заглавная буква C с седилью",Egrave:"Латинская заглавная буква Е с апострофом",Eacute:"Латинская заглавная буква Е с ударением",Ecirc:"Латинская заглавная буква Е с циркумфлексом",Euml:"Латинская заглавная буква Е с тремой",Igrave:"Латинская заглавная буква I с апострофом",Iacute:"Латинская заглавная буква I с ударением",
Icirc:"Латинская заглавная буква I с циркумфлексом",Iuml:"Латинская заглавная буква I с тремой",ETH:"Латинская большая буква Eth",Ntilde:"Латинская заглавная буква N с тильдой",Ograve:"Латинская заглавная буква O с апострофом",Oacute:"Латинская заглавная буква O с ударением",Ocirc:"Латинская заглавная буква O с циркумфлексом",Otilde:"Латинская заглавная буква O с тильдой",Ouml:"Латинская заглавная буква O с тремой",times:"Знак умножения",Oslash:"Латинская большая перечеркнутая O",Ugrave:"Латинская заглавная буква U с апострофом",
Uacute:"Латинская заглавная буква U с ударением",Ucirc:"Латинская заглавная буква U с циркумфлексом",Uuml:"Латинская заглавная буква U с тремой",Yacute:"Латинская заглавная буква Y с ударением",THORN:"Латинская заглавная буква Thorn",szlig:"Знак диеза",agrave:"Латинская маленькая буква a с апострофом",aacute:"Латинская маленькая буква a с ударением",acirc:"Латинская маленькая буква a с циркумфлексом",atilde:"Латинская маленькая буква a с тильдой",auml:"Латинская маленькая буква a с тремой",aring:"Латинская маленькая буква a с кольцом",
aelig:"Латинская маленькая буква æ",ccedil:"Латинская маленькая буква с с седилью",egrave:"Латинская маленькая буква е с апострофом",eacute:"Латинская маленькая буква е с ударением",ecirc:"Латинская маленькая буква е с циркумфлексом",euml:"Латинская маленькая буква е с тремой",igrave:"Латинская маленькая буква i с апострофом",iacute:"Латинская маленькая буква i с ударением",icirc:"Латинская маленькая буква i с циркумфлексом",iuml:"Латинская маленькая буква i с тремой",eth:"Латинская маленькая буква eth",
ntilde:"Латинская маленькая буква n с тильдой",ograve:"Латинская маленькая буква o с апострофом",oacute:"Латинская маленькая буква o с ударением",ocirc:"Латинская маленькая буква o с циркумфлексом",otilde:"Латинская маленькая буква o с тильдой",ouml:"Латинская маленькая буква o с тремой",divide:"Знак деления",oslash:"Латинская строчная перечеркнутая o",ugrave:"Латинская маленькая буква u с апострофом",uacute:"Латинская маленькая буква u с ударением",ucirc:"Латинская маленькая буква u с циркумфлексом",
uuml:"Латинская маленькая буква u с тремой",yacute:"Латинская маленькая буква y с ударением",thorn:"Латинская маленькая буква thorn",yuml:"Латинская маленькая буква y с тремой",OElig:"Латинская прописная лигатура OE",oelig:"Латинская строчная лигатура oe",372:"Латинская заглавная буква W с циркумфлексом",374:"Латинская заглавная буква Y с циркумфлексом",373:"Латинская маленькая буква w с циркумфлексом",375:"Латинская маленькая буква y с циркумфлексом",sbquo:"Нижняя одинарная кавычка",8219:"Правая одинарная кавычка",
bdquo:"Левая двойная кавычка",hellip:"Горизонтальное многоточие",trade:"Товарный знак",9658:"Черный указатель вправо",bull:"Маркер списка",rarr:"Стрелка вправо",rArr:"Двойная стрелка вправо",hArr:"Двойная стрелка влево-вправо",diams:"Черный ромб",asymp:"Примерно равно"});admin/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js0000644000352000025440000001043112450564214024000 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","zh-cn",{euro:"欧元符号",lsquo:"左单引号",rsquo:"右单引号",ldquo:"左双引号",rdquo:"右双引号",ndash:"短划线",mdash:"长划线",iexcl:"竖翻叹号",cent:"分币符号",pound:"英镑符号",curren:"货币符号",yen:"日元符号",brvbar:"间断条",sect:"节标记",uml:"分音符",copy:"版权所有标记",ordf:"阴性顺序指示符",laquo:"左指双尖引号",not:"非标记",reg:"注册标记",macr:"长音符",deg:"度标记",sup2:"上标二",sup3:"上标三",acute:"锐音符",micro:"微符",para:"段落标记",middot:"中间点",cedil:"下加符",sup1:"上标一",ordm:"阳性顺序指示符",raquo:"右指双尖引号",frac14:"普通分数四分之一",frac12:"普通分数二分之一",frac34:"普通分数四分之三",iquest:"竖翻问号",
Agrave:"带抑音符的拉丁文大写字母 A",Aacute:"带锐音符的拉丁文大写字母 A",Acirc:"带扬抑符的拉丁文大写字母 A",Atilde:"带颚化符的拉丁文大写字母 A",Auml:"带分音符的拉丁文大写字母 A",Aring:"带上圆圈的拉丁文大写字母 A",AElig:"拉丁文大写字母 Ae",Ccedil:"带下加符的拉丁文大写字母 C",Egrave:"带抑音符的拉丁文大写字母 E",Eacute:"带锐音符的拉丁文大写字母 E",Ecirc:"带扬抑符的拉丁文大写字母 E",Euml:"带分音符的拉丁文大写字母 E",Igrave:"带抑音符的拉丁文大写字母 I",Iacute:"带锐音符的拉丁文大写字母 I",Icirc:"带扬抑符的拉丁文大写字母 I",Iuml:"带分音符的拉丁文大写字母 I",ETH:"拉丁文大写字母 Eth",Ntilde:"带颚化符的拉丁文大写字母 N",Ograve:"带抑音符的拉丁文大写字母 O",Oacute:"带锐音符的拉丁文大写字母 O",Ocirc:"带扬抑符的拉丁文大写字母 O",Otilde:"带颚化符的拉丁文大写字母 O",
Ouml:"带分音符的拉丁文大写字母 O",times:"乘号",Oslash:"带粗线的拉丁文大写字母 O",Ugrave:"带抑音符的拉丁文大写字母 U",Uacute:"带锐音符的拉丁文大写字母 U",Ucirc:"带扬抑符的拉丁文大写字母 U",Uuml:"带分音符的拉丁文大写字母 U",Yacute:"带抑音符的拉丁文大写字母 Y",THORN:"拉丁文大写字母 Thorn",szlig:"拉丁文小写字母清音 S",agrave:"带抑音符的拉丁文小写字母 A",aacute:"带锐音符的拉丁文小写字母 A",acirc:"带扬抑符的拉丁文小写字母 A",atilde:"带颚化符的拉丁文小写字母 A",auml:"带分音符的拉丁文小写字母 A",aring:"带上圆圈的拉丁文小写字母 A",aelig:"拉丁文小写字母 Ae",ccedil:"带下加符的拉丁文小写字母 C",egrave:"带抑音符的拉丁文小写字母 E",eacute:"带锐音符的拉丁文小写字母 E",ecirc:"带扬抑符的拉丁文小写字母 E",euml:"带分音符的拉丁文小写字母 E",igrave:"带抑音符的拉丁文小写字母 I",
iacute:"带锐音符的拉丁文小写字母 I",icirc:"带扬抑符的拉丁文小写字母 I",iuml:"带分音符的拉丁文小写字母 I",eth:"拉丁文小写字母 Eth",ntilde:"带颚化符的拉丁文小写字母 N",ograve:"带抑音符的拉丁文小写字母 O",oacute:"带锐音符的拉丁文小写字母 O",ocirc:"带扬抑符的拉丁文小写字母 O",otilde:"带颚化符的拉丁文小写字母 O",ouml:"带分音符的拉丁文小写字母 O",divide:"除号",oslash:"带粗线的拉丁文小写字母 O",ugrave:"带抑音符的拉丁文小写字母 U",uacute:"带锐音符的拉丁文小写字母 U",ucirc:"带扬抑符的拉丁文小写字母 U",uuml:"带分音符的拉丁文小写字母 U",yacute:"带抑音符的拉丁文小写字母 Y",thorn:"拉丁文小写字母 Thorn",yuml:"带分音符的拉丁文小写字母 Y",OElig:"拉丁文大写连字 Oe",oelig:"拉丁文小写连字 Oe",372:"带扬抑符的拉丁文大写字母 W",374:"带扬抑符的拉丁文大写字母 Y",
373:"带扬抑符的拉丁文小写字母 W",375:"带扬抑符的拉丁文小写字母 Y",sbquo:"单下 9 形引号",8219:"单高横翻 9 形引号",bdquo:"双下 9 形引号",hellip:"水平省略号",trade:"商标标志",9658:"实心右指指针",bull:"加重号",rarr:"向右箭头",rArr:"向右双线箭头",hArr:"左右双线箭头",diams:"实心方块纸牌",asymp:"约等于"});admin/ckeditor/plugins/specialchar/dialogs/lang/fr.js0000644000352000025440000000737612450564214023406 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","fr",{euro:"Symbole Euro",lsquo:"Guillemet simple ouvrant",rsquo:"Guillemet simple fermant",ldquo:"Guillemet double ouvrant",rdquo:"Guillemet double fermant",ndash:"Tiret haut",mdash:"Tiret cadratin",iexcl:"Point d'exclamation inversé",cent:"Symbole Cent",pound:"Symbole Livre Sterling",curren:"Symbole monétaire",yen:"Symbole Yen",brvbar:"Barre verticale scindée",sect:"Section",uml:"Tréma",copy:"Symbole Copyright",ordf:"Indicateur ordinal féminin",laquo:"Guillemet français ouvrant",
not:"Crochet de négation",reg:"Marque déposée",macr:"Macron",deg:"Degré",sup2:"Exposant 2",sup3:"\\tExposant 3",acute:"Accent aigu",micro:"Omicron",para:"Paragraphe",middot:"Point médian",cedil:"Cédille",sup1:"\\tExposant 1",ordm:"Indicateur ordinal masculin",raquo:"Guillemet français fermant",frac14:"Un quart",frac12:"Un demi",frac34:"Trois quarts",iquest:"Point d'interrogation inversé",Agrave:"A majuscule accent grave",Aacute:"A majuscule accent aigu",Acirc:"A majuscule accent circonflexe",Atilde:"A majuscule avec caron",
Auml:"A majuscule tréma",Aring:"A majuscule avec un rond au-dessus",AElig:"Æ majuscule ligaturés",Ccedil:"C majuscule cédille",Egrave:"E majuscule accent grave",Eacute:"E majuscule accent aigu",Ecirc:"E majuscule accent circonflexe",Euml:"E majuscule tréma",Igrave:"I majuscule accent grave",Iacute:"I majuscule accent aigu",Icirc:"I majuscule accent circonflexe",Iuml:"I majuscule tréma",ETH:"Lettre majuscule islandaise ED",Ntilde:"N majuscule avec caron",Ograve:"O majuscule accent grave",Oacute:"O majuscule accent aigu",
Ocirc:"O majuscule accent circonflexe",Otilde:"O majuscule avec caron",Ouml:"O majuscule tréma",times:"Multiplication",Oslash:"O majuscule barré",Ugrave:"U majuscule accent grave",Uacute:"U majuscule accent aigu",Ucirc:"U majuscule accent circonflexe",Uuml:"U majuscule tréma",Yacute:"Y majuscule accent aigu",THORN:"Lettre islandaise Thorn majuscule",szlig:"Lettre minuscule allemande s dur",agrave:"a minuscule accent grave",aacute:"a minuscule accent aigu",acirc:"a minuscule accent circonflexe",atilde:"a minuscule avec caron",
auml:"a minuscule tréma",aring:"a minuscule avec un rond au-dessus",aelig:"æ minuscule ligaturés",ccedil:"c minuscule cédille",egrave:"e minuscule accent grave",eacute:"e minuscule accent aigu",ecirc:"e minuscule accent circonflexe",euml:"e minuscule tréma",igrave:"i minuscule accent grave",iacute:"i minuscule accent aigu",icirc:"i minuscule accent circonflexe",iuml:"i minuscule tréma",eth:"Lettre minuscule islandaise ED",ntilde:"n minuscule avec caron",ograve:"o minuscule accent grave",oacute:"o minuscule accent aigu",
ocirc:"o minuscule accent circonflexe",otilde:"o minuscule avec caron",ouml:"o minuscule tréma",divide:"Division",oslash:"o minuscule barré",ugrave:"u minuscule accent grave",uacute:"u minuscule accent aigu",ucirc:"u minuscule accent circonflexe",uuml:"u minuscule tréma",yacute:"y minuscule accent aigu",thorn:"Lettre islandaise thorn minuscule",yuml:"y minuscule tréma",OElig:"ligature majuscule latine Œ",oelig:"ligature minuscule latine œ",372:"W majuscule accent circonflexe",374:"Y majuscule accent circonflexe",
373:"w minuscule accent circonflexe",375:"y minuscule accent circonflexe",sbquo:"Guillemet simple fermant (anglais)",8219:"Guillemet-virgule supérieur culbuté",bdquo:"Guillemet-virgule double inférieur",hellip:"Points de suspension",trade:"Marque commerciale (trade mark)",9658:"Flèche noire pointant vers la droite",bull:"Gros point médian",rarr:"Flèche vers la droite",rArr:"Double flèche vers la droite",hArr:"Double flèche vers la gauche",diams:"Carreau noir",asymp:"Presque égal"});admin/ckeditor/plugins/specialchar/dialogs/lang/ca.js0000644000352000025440000001162212450564214023347 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","ca",{euro:"Símbol d'euro",lsquo:"Signe de cometa simple esquerra",rsquo:"Signe de cometa simple dreta",ldquo:"Signe de cometa doble esquerra",rdquo:"Signe de cometa doble dreta",ndash:"Guió",mdash:"Guió baix",iexcl:"Signe d'exclamació inversa",cent:"Símbol de percentatge",pound:"Símbol de lliura",curren:"Símbol de moneda",yen:"Símbol de Yen",brvbar:"Barra trencada",sect:"Símbol de secció",uml:"Dièresi",copy:"Símbol de Copyright",ordf:"Indicador ordinal femení",
laquo:"Signe de cometes angulars esquerra",not:"Símbol de negació",reg:"Símbol registrat",macr:"Macron",deg:"Símbol de grau",sup2:"Superíndex dos",sup3:"Superíndex tres",acute:"Accent agut",micro:"Símbol de micro",para:"Símbol de calderó",middot:"Punt volat",cedil:"Ce trencada",sup1:"Superíndex u",ordm:"Indicador ordinal masculí",raquo:"Signe de cometes angulars dreta",frac14:"Fracció vulgar un quart",frac12:"Fracció vulgar una meitat",frac34:"Fracció vulgar tres quarts",iquest:"Símbol d'interrogació invertit",
Agrave:"Lletra majúscula llatina A amb accent greu",Aacute:"Lletra majúscula llatina A amb accent agut",Acirc:"Lletra majúscula llatina A amb circumflex",Atilde:"Lletra majúscula llatina A amb titlla",Auml:"Lletra majúscula llatina A amb dièresi",Aring:"Lletra majúscula llatina A amb anell superior",AElig:"Lletra majúscula llatina Æ",Ccedil:"Lletra majúscula llatina C amb ce trencada",Egrave:"Lletra majúscula llatina E amb accent greu",Eacute:"Lletra majúscula llatina E amb accent agut",Ecirc:"Lletra majúscula llatina E amb circumflex",
Euml:"Lletra majúscula llatina E amb dièresi",Igrave:"Lletra majúscula llatina I amb accent greu",Iacute:"Lletra majúscula llatina I amb accent agut",Icirc:"Lletra majúscula llatina I amb circumflex",Iuml:"Lletra majúscula llatina I amb dièresi",ETH:"Lletra majúscula llatina Eth",Ntilde:"Lletra majúscula llatina N amb titlla",Ograve:"Lletra majúscula llatina O amb accent greu",Oacute:"Lletra majúscula llatina O amb accent agut",Ocirc:"Lletra majúscula llatina O amb circumflex",Otilde:"Lletra majúscula llatina O amb titlla",
Ouml:"Lletra majúscula llatina O amb dièresi",times:"Símbol de multiplicació",Oslash:"Lletra majúscula llatina O amb barra",Ugrave:"Lletra majúscula llatina U amb accent greu",Uacute:"Lletra majúscula llatina U amb accent agut",Ucirc:"Lletra majúscula llatina U amb circumflex",Uuml:"Lletra majúscula llatina U amb dièresi",Yacute:"Lletra majúscula llatina Y amb accent agut",THORN:"Lletra majúscula llatina Thorn",szlig:"Lletra minúscula llatina sharp s",agrave:"Lletra minúscula llatina a amb accent greu",
aacute:"Lletra minúscula llatina a amb accent agut",acirc:"Lletra minúscula llatina a amb circumflex",atilde:"Lletra minúscula llatina a amb titlla",auml:"Lletra minúscula llatina a amb dièresi",aring:"Lletra minúscula llatina a amb anell superior",aelig:"Lletra minúscula llatina æ",ccedil:"Lletra minúscula llatina c amb ce trencada",egrave:"Lletra minúscula llatina e amb accent greu",eacute:"Lletra minúscula llatina e amb accent agut",ecirc:"Lletra minúscula llatina e amb circumflex",euml:"Lletra minúscula llatina e amb dièresi",
igrave:"Lletra minúscula llatina i amb accent greu",iacute:"Lletra minúscula llatina i amb accent agut",icirc:"Lletra minúscula llatina i amb circumflex",iuml:"Lletra minúscula llatina i amb dièresi",eth:"Lletra minúscula llatina eth",ntilde:"Lletra minúscula llatina n amb titlla",ograve:"Lletra minúscula llatina o amb accent greu",oacute:"Lletra minúscula llatina o amb accent agut",ocirc:"Lletra minúscula llatina o amb circumflex",otilde:"Lletra minúscula llatina o amb titlla",ouml:"Lletra minúscula llatina o amb dièresi",
divide:"Símbol de divisió",oslash:"Lletra minúscula llatina o amb barra",ugrave:"Lletra minúscula llatina u amb accent greu",uacute:"Lletra minúscula llatina u amb accent agut",ucirc:"Lletra minúscula llatina u amb circumflex",uuml:"Lletra minúscula llatina u amb dièresi",yacute:"Lletra minúscula llatina y amb accent agut",thorn:"Lletra minúscula llatina thorn",yuml:"Lletra minúscula llatina y amb dièresi",OElig:"Lligadura majúscula llatina OE",oelig:"Lligadura minúscula llatina oe",372:"Lletra majúscula llatina W amb circumflex",
374:"Lletra majúscula llatina Y amb circumflex",373:"Lletra minúscula llatina w amb circumflex",375:"Lletra minúscula llatina y amb circumflex",sbquo:"Signe de cita simple baixa-9",8219:"Signe de cita simple alta-invertida-9",bdquo:"Signe de cita doble baixa-9",hellip:"Punts suspensius",trade:"Símbol de marca registrada",9658:"Punter negre apuntant cap a la dreta",bull:"Vinyeta",rarr:"Fletxa cap a la dreta",rArr:"Doble fletxa cap a la dreta",hArr:"Doble fletxa esquerra dreta",diams:"Vestit negre diamant",
asymp:"Gairebé igual a"});admin/ckeditor/plugins/specialchar/dialogs/lang/es.js0000644000352000025440000001151712450564214023376 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","es",{euro:"Símbolo de euro",lsquo:"Comilla simple izquierda",rsquo:"Comilla simple derecha",ldquo:"Comilla doble izquierda",rdquo:"Comilla doble derecha",ndash:"Guión corto",mdash:"Guión medio largo",iexcl:"Signo de admiración invertido",cent:"Símbolo centavo",pound:"Símbolo libra",curren:"Símbolo moneda",yen:"Símbolo yen",brvbar:"Barra vertical rota",sect:"Símbolo sección",uml:"Diéresis",copy:"Signo de derechos de autor",ordf:"Indicador ordinal femenino",laquo:"Abre comillas angulares",
not:"Signo negación",reg:"Signo de marca registrada",macr:"Guión alto",deg:"Signo de grado",sup2:"Superíndice dos",sup3:"Superíndice tres",acute:"Acento agudo",micro:"Signo micro",para:"Signo de pi",middot:"Punto medio",cedil:"Cedilla",sup1:"Superíndice uno",ordm:"Indicador orginal masculino",raquo:"Cierra comillas angulares",frac14:"Fracción ordinaria de un quarto",frac12:"Fracción ordinaria de una mitad",frac34:"Fracción ordinaria de tres cuartos",iquest:"Signo de interrogación invertido",Agrave:"Letra A latina mayúscula con acento grave",
Aacute:"Letra A latina  mayúscula con acento agudo",Acirc:"Letra A latina mayúscula con acento circunflejo",Atilde:"Letra A latina mayúscula con tilde",Auml:"Letra A latina mayúscula con diéresis",Aring:"Letra A latina mayúscula con aro arriba",AElig:"Letra Æ latina mayúscula",Ccedil:"Letra C latina mayúscula con cedilla",Egrave:"Letra E latina mayúscula con acento grave",Eacute:"Letra E latina mayúscula con acento agudo",Ecirc:"Letra E latina mayúscula con acento circunflejo",Euml:"Letra E latina mayúscula con diéresis",
Igrave:"Letra I latina mayúscula con acento grave",Iacute:"Letra I latina mayúscula con acento agudo",Icirc:"Letra I latina mayúscula con acento circunflejo",Iuml:"Letra I latina mayúscula con diéresis",ETH:"Letra Eth latina mayúscula",Ntilde:"Letra N latina mayúscula con tilde",Ograve:"Letra O latina mayúscula con acento grave",Oacute:"Letra O latina mayúscula con acento agudo",Ocirc:"Letra O latina mayúscula con acento circunflejo",Otilde:"Letra O latina mayúscula con tilde",Ouml:"Letra O latina mayúscula con diéresis",
times:"Signo de multiplicación",Oslash:"Letra O latina mayúscula con barra inclinada",Ugrave:"Letra U latina mayúscula con acento grave",Uacute:"Letra U latina mayúscula con acento agudo",Ucirc:"Letra U latina mayúscula con acento circunflejo",Uuml:"Letra U latina mayúscula con diéresis",Yacute:"Letra Y latina mayúscula con acento agudo",THORN:"Letra Thorn latina mayúscula",szlig:"Letra s latina fuerte pequeña",agrave:"Letra a latina pequeña con acento grave",aacute:"Letra a latina pequeña con acento agudo",
acirc:"Letra a latina pequeña con acento circunflejo",atilde:"Letra a latina pequeña con tilde",auml:"Letra a latina pequeña con diéresis",aring:"Letra a latina pequeña con aro arriba",aelig:"Letra æ latina pequeña",ccedil:"Letra c latina pequeña con cedilla",egrave:"Letra e latina pequeña con acento grave",eacute:"Letra e latina pequeña con acento agudo",ecirc:"Letra e latina pequeña con acento circunflejo",euml:"Letra e latina pequeña con diéresis",igrave:"Letra i latina pequeña con acento grave",
iacute:"Letra i latina pequeña con acento agudo",icirc:"Letra i latina pequeña con acento circunflejo",iuml:"Letra i latina pequeña con diéresis",eth:"Letra eth latina pequeña",ntilde:"Letra n latina pequeña con tilde",ograve:"Letra o latina pequeña con acento grave",oacute:"Letra o latina pequeña con acento agudo",ocirc:"Letra o latina pequeña con acento circunflejo",otilde:"Letra o latina pequeña con tilde",ouml:"Letra o latina pequeña con diéresis",divide:"Signo de división",oslash:"Letra o latina minúscula con barra inclinada",
ugrave:"Letra u latina pequeña con acento grave",uacute:"Letra u latina pequeña con acento agudo",ucirc:"Letra u latina pequeña con acento circunflejo",uuml:"Letra u latina pequeña con diéresis",yacute:"Letra u latina pequeña con acento agudo",thorn:"Letra thorn latina minúscula",yuml:"Letra y latina pequeña con diéresis",OElig:"Diptongo OE latino en mayúscula",oelig:"Diptongo oe latino en minúscula",372:"Letra W latina mayúscula con acento circunflejo",374:"Letra Y latina mayúscula con acento circunflejo",
373:"Letra w latina pequeña con acento circunflejo",375:"Letra y latina pequeña con acento circunflejo",sbquo:"Comilla simple baja-9",8219:"Comilla simple alta invertida-9",bdquo:"Comillas dobles bajas-9",hellip:"Puntos suspensivos horizontales",trade:"Signo de marca registrada",9658:"Apuntador negro apuntando a la derecha",bull:"Viñeta",rarr:"Flecha a la derecha",rArr:"Flecha doble a la derecha",hArr:"Flecha izquierda derecha doble",diams:"Diamante negro",asymp:"Casi igual a"});admin/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt0000644000352000025440000000132012450564214027122 0ustar  thediannthediannCopyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license

cs.js      Found: 118 Missing: 0
cy.js      Found: 118 Missing: 0
de.js      Found: 118 Missing: 0
el.js      Found: 16 Missing: 102
eo.js      Found: 118 Missing: 0
et.js      Found: 31 Missing: 87
fa.js      Found: 24 Missing: 94
fi.js      Found: 23 Missing: 95
fr.js      Found: 118 Missing: 0
hr.js      Found: 23 Missing: 95
it.js      Found: 118 Missing: 0
nb.js      Found: 118 Missing: 0
nl.js      Found: 118 Missing: 0
no.js      Found: 118 Missing: 0
tr.js      Found: 118 Missing: 0
ug.js      Found: 39 Missing: 79
zh-cn.js   Found: 118 Missing: 0
admin/ckeditor/plugins/specialchar/dialogs/lang/fi.js0000644000352000025440000001074512450564214023367 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","fi",{euro:"Euron merkki",lsquo:"Vasen yksittäinen lainausmerkki",rsquo:"Oikea yksittäinen lainausmerkki",ldquo:"Vasen kaksoislainausmerkki",rdquo:"Oikea kaksoislainausmerkki",ndash:"En dash",mdash:"Em dash",iexcl:"Inverted exclamation mark",cent:"Sentin merkki",pound:"Punnan merkki",curren:"Valuuttamerkki",yen:"Yenin merkki",brvbar:"Broken bar",sect:"Section sign",uml:"Diaeresis",copy:"Copyright sign",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark",
not:"Not sign",reg:"Rekisteröity merkki",macr:"Macron",deg:"Asteen merkki",sup2:"Yläindeksi kaksi",sup3:"Yläindeksi kolme",acute:"Acute accent",micro:"Mikron merkki",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Yläindeksi yksi",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Ylösalaisin oleva kysymysmerkki",Agrave:"Latin capital letter A with grave accent",
Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin Capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",
Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Kertomerkki",Oslash:"Latin capital letter O with stroke",
Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",
aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",
ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Jakomerkki",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",
yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",
trade:"Tavaramerkki merkki",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Nuoli oikealle",rArr:"Kaksoisnuoli oikealle",hArr:"Kaksoisnuoli oikealle ja vasemmalle",diams:"Black diamond suit",asymp:"Noin"});admin/ckeditor/plugins/specialchar/dialogs/lang/no.js0000644000352000025440000000654412450564214023407 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","no",{euro:"Eurosymbol",lsquo:"Venstre enkelt anførselstegn",rsquo:"Høyre enkelt anførselstegn",ldquo:"Venstre dobbelt anførselstegn",rdquo:"Høyre anførsesltegn",ndash:"Kort tankestrek",mdash:"Lang tankestrek",iexcl:"Omvendt utropstegn",cent:"Centsymbol",pound:"Pundsymbol",curren:"Valutategn",yen:"Yensymbol",brvbar:"Brutt loddrett strek",sect:"Paragraftegn",uml:"Tøddel",copy:"Copyrighttegn",ordf:"Feminin ordensindikator",laquo:"Venstre anførselstegn",not:"Negasjonstegn",
reg:"Registrert varemerke-tegn",macr:"Makron",deg:"Gradsymbol",sup2:"Hevet totall",sup3:"Hevet tretall",acute:"Akutt aksent",micro:"Mikrosymbol",para:"Avsnittstegn",middot:"Midtstilt prikk",cedil:"Cedille",sup1:"Hevet ettall",ordm:"Maskulin ordensindikator",raquo:"Høyre anførselstegn",frac14:"Fjerdedelsbrøk",frac12:"Halvbrøk",frac34:"Tre fjerdedelers brøk",iquest:"Omvendt spørsmålstegn",Agrave:"Stor A med grav aksent",Aacute:"Stor A med akutt aksent",Acirc:"Stor A med cirkumfleks",Atilde:"Stor A med tilde",
Auml:"Stor A med tøddel",Aring:"Stor Å",AElig:"Stor Æ",Ccedil:"Stor C med cedille",Egrave:"Stor E med grav aksent",Eacute:"Stor E med akutt aksent",Ecirc:"Stor E med cirkumfleks",Euml:"Stor E med tøddel",Igrave:"Stor I med grav aksent",Iacute:"Stor I med akutt aksent",Icirc:"Stor I med cirkumfleks",Iuml:"Stor I med tøddel",ETH:"Stor Edd/stungen D",Ntilde:"Stor N med tilde",Ograve:"Stor O med grav aksent",Oacute:"Stor O med akutt aksent",Ocirc:"Stor O med cirkumfleks",Otilde:"Stor O med tilde",Ouml:"Stor O med tøddel",
times:"Multiplikasjonstegn",Oslash:"Stor Ø",Ugrave:"Stor U med grav aksent",Uacute:"Stor U med akutt aksent",Ucirc:"Stor U med cirkumfleks",Uuml:"Stor U med tøddel",Yacute:"Stor Y med akutt aksent",THORN:"Stor Thorn",szlig:"Liten dobbelt-s/Eszett",agrave:"Liten a med grav aksent",aacute:"Liten a med akutt aksent",acirc:"Liten a med cirkumfleks",atilde:"Liten a med tilde",auml:"Liten a med tøddel",aring:"Liten å",aelig:"Liten æ",ccedil:"Liten c med cedille",egrave:"Liten e med grav aksent",eacute:"Liten e med akutt aksent",
ecirc:"Liten e med cirkumfleks",euml:"Liten e med tøddel",igrave:"Liten i med grav aksent",iacute:"Liten i med akutt aksent",icirc:"Liten i med cirkumfleks",iuml:"Liten i med tøddel",eth:"Liten edd/stungen d",ntilde:"Liten n med tilde",ograve:"Liten o med grav aksent",oacute:"Liten o med akutt aksent",ocirc:"Liten o med cirkumfleks",otilde:"Liten o med tilde",ouml:"Liten o med tøddel",divide:"Divisjonstegn",oslash:"Liten ø",ugrave:"Liten u med grav aksent",uacute:"Liten u med akutt aksent",ucirc:"Liten u med cirkumfleks",
uuml:"Liten u med tøddel",yacute:"Liten y med akutt aksent",thorn:"Liten thorn",yuml:"Liten y med tøddel",OElig:"Stor ligatur av O og E",oelig:"Liten ligatur av o og e",372:"Stor W med cirkumfleks",374:"Stor Y med cirkumfleks",373:"Liten w med cirkumfleks",375:"Liten y med cirkumfleks",sbquo:"Enkelt lavt 9-anførselstegn",8219:"Enkelt høyt reversert 9-anførselstegn",bdquo:"Dobbelt lavt 9-anførselstegn",hellip:"Ellipse",trade:"Varemerkesymbol",9658:"Svart høyrevendt peker",bull:"Tykk interpunkt",rarr:"Høyrevendt pil",
rArr:"Dobbel høyrevendt pil",hArr:"Dobbel venstrevendt pil",diams:"Svart ruter",asymp:"Omtrent likhetstegn"});admin/ckeditor/plugins/specialchar/dialogs/lang/fa.js0000644000352000025440000001321012450564214023345 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","fa",{euro:"نشان یورو",lsquo:"علامت نقل قول تکی چپ",rsquo:"علامت نقل قول تکی راست",ldquo:"علامت نقل قول دوتایی چپ",rdquo:"علامت نقل قول دوتایی راست",ndash:"خط تیره En",mdash:"خط تیره Em",iexcl:"علامت تعجب وارونه",cent:"نشان سنت",pound:"نشان پوند",curren:"نشان ارز",yen:"نشان ین",brvbar:"نوار شکسته",sect:"نشان بخش",uml:"نشان سواگیری",copy:"نشان کپی رایت",ordf:"شاخص ترتیبی مونث",laquo:"اشاره چپ مکرر برای زاویه علامت نقل قول",not:"نشان ثبت نشده",reg:"نشان ثبت شده",
macr:"نشان خط بالای حرف",deg:"نشان درجه",sup2:"بالانویس دو",sup3:"بالانویس سه",acute:"لهجه غلیظ",micro:"نشان مایکرو",para:"نشان محل بند",middot:"نقطه میانی",cedil:"سدیل",sup1:"بالانویس 1",ordm:"شاخص ترتیبی مذکر",raquo:"نشان زاویه‌دار دوتایی نقل قول راست چین",frac14:"واحد عامیانه 1/4",frac12:"واحد عامینه نصف",frac34:"واحد عامیانه 3/4",iquest:"علامت سوال معکوس",Agrave:"حرف A بزرگ لاتین با تلفظ غلیظ",Aacute:"حرف A بزرگ لاتین با تلفظ شدید",Acirc:"حرف A بزرگ لاتین با دور",Atilde:"حرف A بزرگ لاتین با صدای کامی",
Auml:"حرف A بزرگ لاتین با نشان سواگیری",Aring:"حرف A بزرگ لاتین با حلقه بالا",AElig:"حرف Æ بزرگ لاتین",Ccedil:"حرف C بزرگ لاتین با نشان سواگیری",Egrave:"حرف E بزرگ لاتین با تلفظ درشت",Eacute:"حرف E بزرگ لاتین با تلفظ زیر",Ecirc:"حرف E بزرگ لاتین با خمان",Euml:"حرف E بزرگ لاتین با نشان سواگیری",Igrave:"حرف I بزرگ لاتین با تلفظ درشت",Iacute:"حرف I بزرگ لاتین با تلفظ ریز",Icirc:"حرف I بزرگ لاتین با خمان",Iuml:"حرف I بزرگ لاتین با نشان سواگیری",ETH:"حرف لاتین بزرگ واکه ترتیبی",Ntilde:"حرف N بزرگ لاتین با مد",
Ograve:"حرف O بزرگ لاتین با تلفظ درشت",Oacute:"حرف O بزرگ لاتین با تلفظ ریز",Ocirc:"حرف O بزرگ لاتین با خمان",Otilde:"حرف O بزرگ لاتین با مد",Ouml:"حرف O بزرگ لاتین با نشان سواگیری",times:"نشان ضربدر",Oslash:"حرف O بزرگ لاتین با میان خط",Ugrave:"حرف U بزرگ لاتین با تلفظ درشت",Uacute:"حرف U بزرگ لاتین با تلفظ ریز",Ucirc:"حرف U بزرگ لاتین با خمان",Uuml:"حرف U بزرگ لاتین با نشان سواگیری",Yacute:"حرف Y بزرگ لاتین با تلفظ ریز",THORN:"حرف بزرگ لاتین خاردار",szlig:"حرف کوچک لاتین شارپ s",agrave:"حرف a کوچک لاتین با تلفظ درشت",
aacute:"حرف a کوچک لاتین با تلفظ ریز",acirc:"حرف a کوچک لاتین با خمان",atilde:"حرف a کوچک لاتین با صدای کامی",auml:"حرف a کوچک لاتین با نشان سواگیری",aring:"حرف a کوچک لاتین گوشواره دار",aelig:"حرف کوچک لاتین æ",ccedil:"حرف c کوچک لاتین با نشان سدیل",egrave:"حرف e کوچک لاتین با تلفظ درشت",eacute:"حرف e کوچک لاتین با تلفظ ریز",ecirc:"حرف e کوچک لاتین با خمان",euml:"حرف e کوچک لاتین با نشان سواگیری",igrave:"حرف i کوچک لاتین با تلفظ درشت",iacute:"حرف i کوچک لاتین با تلفظ ریز",icirc:"حرف i کوچک لاتین با خمان",
iuml:"حرف i کوچک لاتین با نشان سواگیری",eth:"حرف کوچک لاتین eth",ntilde:"حرف n کوچک لاتین با صدای کامی",ograve:"حرف o کوچک لاتین با تلفظ درشت",oacute:"حرف o کوچک لاتین با تلفظ زیر",ocirc:"حرف o کوچک لاتین با خمان",otilde:"حرف o کوچک لاتین با صدای کامی",ouml:"حرف o کوچک لاتین با نشان سواگیری",divide:"نشان بخش",oslash:"حرف o کوچک لاتین با میان خط",ugrave:"حرف u کوچک لاتین با تلفظ درشت",uacute:"حرف u کوچک لاتین با تلفظ ریز",ucirc:"حرف u کوچک لاتین با خمان",uuml:"حرف u کوچک لاتین با نشان سواگیری",yacute:"حرف y کوچک لاتین با تلفظ ریز",
thorn:"حرف کوچک لاتین خاردار",yuml:"حرف y کوچک لاتین با نشان سواگیری",OElig:"بند بزرگ لاتین OE",oelig:"بند کوچک لاتین oe",372:"حرف W بزرگ لاتین با خمان",374:"حرف Y بزرگ لاتین با خمان",373:"حرف w کوچک لاتین با خمان",375:"حرف y کوچک لاتین با خمان",sbquo:"نشان نقل قول تکی زیر-9",8219:"نشان نقل قول تکی high-reversed-9",bdquo:"نقل قول دوتایی پایین-9",hellip:"حذف افقی",trade:"نشان تجاری",9658:"نشانگر سیاه جهت راست",bull:"گلوله",rarr:"فلش راست",rArr:"فلش دوتایی راست",hArr:"فلش دوتایی چپ راست",diams:"نشان الماس سیاه",
asymp:"تقریبا برابر با"});admin/ckeditor/plugins/specialchar/dialogs/lang/zh.js0000644000352000025440000001046612450564214023412 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","zh",{euro:"歐元符號",lsquo:"左單引號",rsquo:"右單引號",ldquo:"左雙引號",rdquo:"右雙引號",ndash:"短破折號",mdash:"長破折號",iexcl:"倒置的驚嘆號",cent:"美分符號",pound:"英鎊符號",curren:"貨幣符號",yen:"日圓符號",brvbar:"Broken bar",sect:"章節符號",uml:"分音符號",copy:"版權符號",ordf:"雌性符號",laquo:"左雙角括號",not:"Not 符號",reg:"註冊商標符號",macr:"長音符號",deg:"度數符號",sup2:"上標字 2",sup3:"上標字 3",acute:"尖音符號",micro:"Micro sign",para:"段落符號",middot:"中間點",cedil:"字母 C 下面的尾型符號 ",sup1:"上標",ordm:"雄性符號",raquo:"右雙角括號",frac14:"四分之一符號",frac12:"Vulgar fraction one half",
frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent",Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"拉丁大寫字母 E 帶分音符號",Aring:"拉丁大寫字母 A 帶上圓圈",AElig:"拉丁大寫字母 Æ",Ccedil:"拉丁大寫字母 C 帶下尾符號",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",
Igrave:"Latin capital letter I with grave accent",Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",
times:"乘號",Oslash:"拉丁大寫字母 O 帶粗線符號",Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",
auml:"Latin small letter a with diaeresis",aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",
eth:"Latin small letter eth",ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",
uuml:"Latin small letter u with diaeresis",yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",
hellip:"Horizontal ellipsis",trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"});admin/ckeditor/plugins/specialchar/dialogs/lang/si.js0000644000352000025440000001142412450564214023377 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","si",{euro:"යුරෝ සලකුණ",lsquo:"වමේ තනි උපුටා දක්වීම ",rsquo:"දකුණේ තනි උපුටා දක්වීම ",ldquo:"වමේ දිත්ව  උපුටා දක්වීම ",rdquo:"දකුණේ දිත්ව  උපුටා දක්වීම ",ndash:"En dash",mdash:"Em dash",iexcl:"යටිකුරු හර්ෂදී ",cent:"Cent sign",pound:"Pound sign",curren:"මුල්‍යමය ",yen:"යෙන් ",brvbar:"Broken bar",sect:"තෙරේම් ",uml:"Diaeresis",copy:"පිටපත් අයිතිය ",ordf:"දර්ශකය",laquo:"Left-pointing double angle quotation mark",not:"සලකුණක් නොවේ",reg:"සලකුණක් ලියාපදිංචි කිරීම",
macr:"මුද්‍රිත ",deg:"සලකුණේ ",sup2:"උඩු ලකුණු දෙක",sup3:"Superscript three",acute:"Acute accent",micro:"Micro sign",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent",Aacute:"Latin capital letter A with acute accent",
Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin Capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",Iacute:"Latin capital letter I with acute accent",
Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke",Ugrave:"Latin capital letter U with grave accent",
Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",aring:"Latin small letter a with ring above",
aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",ntilde:"Latin small letter n with tilde",
ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",yacute:"Latin small letter y with acute accent",
thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",trade:"Trade mark sign",9658:"Black right-pointing pointer",
bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"});admin/ckeditor/plugins/specialchar/dialogs/lang/hr.js0000644000352000025440000001065012450564214023375 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","hr",{euro:"Euro znak",lsquo:"Lijevi jednostruki navodnik",rsquo:"Desni jednostruki navodnik",ldquo:"Lijevi dvostruki navodnik",rdquo:"Desni dvostruki navodnik",ndash:"En crtica",mdash:"Em crtica",iexcl:"Naopaki uskličnik",cent:"Cent znak",pound:"Funta znak",curren:"Znak valute",yen:"Yen znak",brvbar:"Potrgana prečka",sect:"Znak odjeljka",uml:"Prijeglasi",copy:"Copyright znak",ordf:"Feminine ordinal indicator",laquo:"Lijevi dvostruki uglati navodnik",not:"Not znak",
reg:"Registered znak",macr:"Macron",deg:"Stupanj znak",sup2:"Superscript two",sup3:"Superscript three",acute:"Acute accent",micro:"Mikro znak",para:"Pilcrow sign",middot:"Srednja točka",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Desni dvostruku uglati navodnik",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Naopaki upitnik",Agrave:"Veliko latinsko slovo A s akcentom",Aacute:"Latinično veliko slovo A sa oštrim naglaskom",
Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin Capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",Iacute:"Latin capital letter I with acute accent",
Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke",Ugrave:"Latin capital letter U with grave accent",
Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",aring:"Latin small letter a with ring above",
aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",ntilde:"Latin small letter n with tilde",
ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",yacute:"Latin small letter y with acute accent",
thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",trade:"Trade mark sign",9658:"Black right-pointing pointer",
bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"});admin/ckeditor/plugins/specialchar/dialogs/lang/da.js0000644000352000025440000001070712450564214023353 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","da",{euro:"Euro-tegn",lsquo:"Left single quotation mark",rsquo:"Right single quotation mark",ldquo:"Left double quotation mark",rdquo:"Right double quotation mark",ndash:"Bindestreg",mdash:"Tankestreg",iexcl:"Inverted exclamation mark",cent:"Cent-tegn",pound:"Pund-tegn",curren:"Kurs-tegn",yen:"Yen-tegn",brvbar:"Brudt streg",sect:"Paragraftegn",uml:"Diaeresis",copy:"Copyright-tegn",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark",
not:"Not sign",reg:"Registreret varemærke tegn",macr:"Macron",deg:"Grad-tegn",sup2:"Superscript to",sup3:"Superscript tre",acute:"Acute accent",micro:"Mikro-tegn",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript et",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent",
Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin Capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",
Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke",
Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",
aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",
ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",
yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",
trade:"Varemærke-tegn",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"});admin/ckeditor/plugins/specialchar/dialogs/lang/en-gb.js0000644000352000025440000001070212450564214023752 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","en-gb",{euro:"Euro sign",lsquo:"Left single quotation mark",rsquo:"Right single quotation mark",ldquo:"Left double quotation mark",rdquo:"Right double quotation mark",ndash:"En dash",mdash:"Em dash",iexcl:"Inverted exclamation mark",cent:"Cent sign",pound:"Pound sign",curren:"Currency sign",yen:"Yen sign",brvbar:"Broken bar",sect:"Section sign",uml:"Diaeresis",copy:"Copyright sign",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark",
not:"Not sign",reg:"Registered sign",macr:"Macron",deg:"Degree sign",sup2:"Superscript two",sup3:"Superscript three",acute:"Acute accent",micro:"Micro sign",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent",
Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin Capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",
Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke",
Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",
aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",
ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",
yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",
trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"});admin/ckeditor/plugins/specialchar/dialogs/lang/gl.js0000644000352000025440000001161012450564214023363 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","gl",{euro:"Símbolo do euro",lsquo:"Comiña simple esquerda",rsquo:"Comiña simple dereita",ldquo:"Comiñas dobres esquerda",rdquo:"Comiñas dobres dereita",ndash:"Guión",mdash:"Raia",iexcl:"Signo de admiración invertido",cent:"Símbolo do centavo",pound:"Símbolo da libra",curren:"Símbolo de moeda",yen:"Símbolo do yen",brvbar:"Barra vertical rota",sect:"Símbolo de sección",uml:"Diérese",copy:"Símbolo de dereitos de autoría",ordf:"Indicador ordinal feminino",laquo:"Comiñas latinas, apertura",
not:"Signo negación",reg:"Símbolo de marca rexistrada",macr:"Guión alto",deg:"Signo de grao",sup2:"Superíndice dous",sup3:"Superíndice tres",acute:"Acento agudo",micro:"Signo de micro",para:"Signo de pi",middot:"Punto medio",cedil:"Cedilla",sup1:"Superíndice un",ordm:"Indicador ordinal masculino",raquo:"Comiñas latinas, peche",frac14:"Fracción ordinaria de un cuarto",frac12:"Fracción ordinaria de un medio",frac34:"Fracción ordinaria de tres cuartos",iquest:"Signo de interrogación invertido",Agrave:"Letra A latina maiúscula con acento grave",
Aacute:"Letra A latina maiúscula con acento agudo",Acirc:"Letra A latina maiúscula con acento circunflexo",Atilde:"Letra A latina maiúscula con til",Auml:"Letra A latina maiúscula con diérese",Aring:"Letra A latina maiúscula con aro enriba",AElig:"Letra Æ latina maiúscula",Ccedil:"Letra C latina maiúscula con cedilla",Egrave:"Letra E latina maiúscula con acento grave",Eacute:"Letra E latina maiúscula con acento agudo",Ecirc:"Letra E latina maiúscula con acento circunflexo",Euml:"Letra E latina maiúscula con diérese",
Igrave:"Letra I latina maiúscula con acento grave",Iacute:"Letra I latina maiúscula con acento agudo",Icirc:"Letra I latina maiúscula con acento circunflexo",Iuml:"Letra I latina maiúscula con diérese",ETH:"Letra Ed latina maiúscula",Ntilde:"Letra N latina maiúscula con til",Ograve:"Letra O latina maiúscula con acento grave",Oacute:"Letra O latina maiúscula con acento agudo",Ocirc:"Letra O latina maiúscula con acento circunflexo",Otilde:"Letra O latina maiúscula con til",Ouml:"Letra O latina maiúscula con diérese",
times:"Signo de multiplicación",Oslash:"Letra O latina maiúscula con barra transversal",Ugrave:"Letra U latina maiúscula con acento grave",Uacute:"Letra U latina maiúscula con acento agudo",Ucirc:"Letra U latina maiúscula con acento circunflexo",Uuml:"Letra U latina maiúscula con diérese",Yacute:"Letra Y latina maiúscula con acento agudo",THORN:"Letra Thorn latina maiúscula",szlig:"Letra s latina forte minúscula",agrave:"Letra a latina minúscula con acento grave",aacute:"Letra a latina minúscula con acento agudo",
acirc:"Letra a latina minúscula con acento circunflexo",atilde:"Letra a latina minúscula con til",auml:"Letra a latina minúscula con diérese",aring:"Letra a latina minúscula con aro enriba",aelig:"Letra æ latina minúscula",ccedil:"Letra c latina minúscula con cedilla",egrave:"Letra e latina minúscula con acento grave",eacute:"Letra e latina minúscula con acento agudo",ecirc:"Letra e latina minúscula con acento circunflexo",euml:"Letra e latina minúscula con diérese",igrave:"Letra i latina minúscula con acento grave",
iacute:"Letra i latina minúscula con acento agudo",icirc:"Letra i latina minúscula con acento circunflexo",iuml:"Letra i latina minúscula con diérese",eth:"Letra ed latina minúscula",ntilde:"Letra n latina minúscula con til",ograve:"Letra o latina minúscula con acento grave",oacute:"Letra o latina minúscula con acento agudo",ocirc:"Letra o latina minúscula con acento circunflexo",otilde:"Letra o latina minúscula con til",ouml:"Letra o latina minúscula con diérese",divide:"Signo de división",oslash:"Letra o latina minúscula con barra transversal",
ugrave:"Letra u latina minúscula con acento grave",uacute:"Letra u latina minúscula con acento agudo",ucirc:"Letra u latina minúscula con acento circunflexo",uuml:"Letra u latina minúscula con diérese",yacute:"Letra y latina minúscula con acento agudo",thorn:"Letra Thorn latina minúscula",yuml:"Letra y latina minúscula con diérese",OElig:"Ligadura OE latina maiúscula",oelig:"Ligadura oe latina minúscula",372:"Letra W latina maiúscula con acento circunflexo",374:"Letra Y latina maiúscula con acento circunflexo",
373:"Letra w latina minúscula con acento circunflexo",375:"Letra y latina minúscula con acento circunflexo",sbquo:"Comiña simple baixa, de apertura",8219:"Comiña simple alta, de peche",bdquo:"Comiñas dobres baixas, de apertura",hellip:"Elipse, puntos suspensivos",trade:"Signo de marca rexistrada",9658:"Apuntador negro apuntando á dereita",bull:"Viñeta",rarr:"Frecha á dereita",rArr:"Frecha dobre á dereita",hArr:"Frecha dobre da esquerda á dereita",diams:"Diamante negro",asymp:"Case igual a"});admin/ckeditor/plugins/specialchar/dialogs/lang/uk.js0000644000352000025440000001433612450564214023410 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","uk",{euro:"Знак євро",lsquo:"Ліві одинарні лапки",rsquo:"Праві одинарні лапки",ldquo:"Ліві подвійні лапки",rdquo:"Праві подвійні лапки",ndash:"Середнє тире",mdash:"Довге тире",iexcl:"Перевернутий знак оклику",cent:"Знак цента",pound:"Знак фунта",curren:"Знак валюти",yen:"Знак єни",brvbar:"Переривчаста вертикальна лінія",sect:"Знак параграфу",uml:"Умлаут",copy:"Знак авторських прав",ordf:"Жіночий порядковий вказівник",laquo:"ліві вказівні подвійні кутові дужки",
not:"Заперечення",reg:"Знак охорони суміжних прав",macr:"Макрон",deg:"Знак градуса",sup2:"два у верхньому індексі",sup3:"три у верхньому індексі",acute:"Знак акута",micro:"Знак мікро",para:"Знак абзацу",middot:"Інтерпункт",cedil:"Седиль",sup1:"Один у верхньому індексі",ordm:"Чоловічий порядковий вказівник",raquo:"праві вказівні подвійні кутові дужки",frac14:"Одна четвертина",frac12:"Одна друга",frac34:"три четвертих",iquest:"Перевернутий знак питання",Agrave:"Велика латинська A з гравісом",Aacute:"Велика латинська А з акутом",
Acirc:"Велика латинська А з циркумфлексом",Atilde:"Велика латинська А з тильдою",Auml:"Велике латинське А з умлаутом",Aring:"Велика латинська A з кільцем згори",AElig:"Велика латинська Æ",Ccedil:"Велика латинська C з седиллю",Egrave:"Велика латинська E з гравісом",Eacute:"Велика латинська E з акутом",Ecirc:"Велика латинська E з циркумфлексом",Euml:"Велика латинська А з умлаутом",Igrave:"Велика латинська I з гравісом",Iacute:"Велика латинська I з акутом",Icirc:"Велика латинська I з циркумфлексом",
Iuml:"Велика латинська І з умлаутом",ETH:"Велика латинська Eth",Ntilde:"Велика латинська N з тильдою",Ograve:"Велика латинська O з гравісом",Oacute:"Велика латинська O з акутом",Ocirc:"Велика латинська O з циркумфлексом",Otilde:"Велика латинська O з тильдою",Ouml:"Велика латинська О з умлаутом",times:"Знак множення",Oslash:"Велика латинська перекреслена O ",Ugrave:"Велика латинська U з гравісом",Uacute:"Велика латинська U з акутом",Ucirc:"Велика латинська U з циркумфлексом",Uuml:"Велика латинська U з умлаутом",
Yacute:"Велика латинська Y з акутом",THORN:"Велика латинська Торн",szlig:"Мала латинська есцет",agrave:"Мала латинська a з гравісом",aacute:"Мала латинська a з акутом",acirc:"Мала латинська a з циркумфлексом",atilde:"Мала латинська a з тильдою",auml:"Мала латинська a з умлаутом",aring:"Мала латинська a з кільцем згори",aelig:"Мала латинська æ",ccedil:"Мала латинська C з седиллю",egrave:"Мала латинська e з гравісом",eacute:"Мала латинська e з акутом",ecirc:"Мала латинська e з циркумфлексом",euml:"Мала латинська e з умлаутом",
igrave:"Мала латинська i з гравісом",iacute:"Мала латинська i з акутом",icirc:"Мала латинська i з циркумфлексом",iuml:"Мала латинська i з умлаутом",eth:"Мала латинська Eth",ntilde:"Мала латинська n з тильдою",ograve:"Мала латинська o з гравісом",oacute:"Мала латинська o з акутом",ocirc:"Мала латинська o з циркумфлексом",otilde:"Мала латинська o з тильдою",ouml:"Мала латинська o з умлаутом",divide:"Знак ділення",oslash:"Мала латинська перекреслена o",ugrave:"Мала латинська u з гравісом",uacute:"Мала латинська u з акутом",
ucirc:"Мала латинська u з циркумфлексом",uuml:"Мала латинська u з умлаутом",yacute:"Мала латинська y з акутом",thorn:"Мала латинська торн",yuml:"Мала латинська y з умлаутом",OElig:"Велика латинська лігатура OE",oelig:"Мала латинська лігатура oe",372:"Велика латинська W з циркумфлексом",374:"Велика латинська Y з циркумфлексом",373:"Мала латинська w з циркумфлексом",375:"Мала латинська y з циркумфлексом",sbquo:"Одиничні нижні лабки",8219:"Верхні одиничні обернені лабки",bdquo:"Подвійні нижні лабки",
hellip:"Три крапки",trade:"Знак торгової марки",9658:"Чорний правий вказівник",bull:"Маркер списку",rarr:"Стрілка вправо",rArr:"Подвійна стрілка вправо",hArr:"Подвійна стрілка вліво-вправо",diams:"Чорний діамонт",asymp:"Наближено дорівнює"});admin/ckeditor/plugins/specialchar/dialogs/lang/eo.js0000644000352000025440000000774012450564214023375 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","eo",{euro:"Eŭrosigno",lsquo:"Supra 6-citilo",rsquo:"Supra 9-citilo",ldquo:"Supra 66-citilo",rdquo:"Supra 99-citilo",ndash:"Streketo",mdash:"Substreko",iexcl:"Renversita krisigno",cent:"Cendosigno",pound:"Pundosigno",curren:"Monersigno",yen:"Enosigno",brvbar:"Rompita vertikala streko",sect:"Kurba paragrafo",uml:"Tremao",copy:"Kopirajtosigno",ordf:"Adjektiva numerfinaĵo",laquo:"Duobla malplio-citilo",not:"Negohoko",reg:"Registrita marko",macr:"Superstreko",deg:"Gradosigno",
sup2:"Supra indico 2",sup3:"Supra indico 3",acute:"Dekstra korno",micro:"Mikrosigno",para:"Rekta paragrafo",middot:"Meza punkto",cedil:"Zoeto",sup1:"Supra indico 1",ordm:"Substantiva numerfinaĵo",raquo:"Duobla plio-citilo",frac14:"Kvaronosigno",frac12:"Duonosigno",frac34:"Trikvaronosigno",iquest:"renversita demandosigno",Agrave:"Latina ĉeflitero A kun liva korno",Aacute:"Latina ĉeflitero A kun dekstra korno",Acirc:"Latina ĉeflitero A kun ĉapelo",Atilde:"Latina ĉeflitero A kun tildo",Auml:"Latina ĉeflitero A kun tremao",
Aring:"Latina ĉeflitero A kun superringo",AElig:"Latina ĉeflitera ligaturo Æ",Ccedil:"Latina ĉeflitero C kun zoeto",Egrave:"Latina ĉeflitero E kun liva korno",Eacute:"Latina ĉeflitero E kun dekstra korno",Ecirc:"Latina ĉeflitero E kun ĉapelo",Euml:"Latina ĉeflitero E kun tremao",Igrave:"Latina ĉeflitero I kun liva korno",Iacute:"Latina ĉeflitero I kun dekstra korno",Icirc:"Latina ĉeflitero I kun ĉapelo",Iuml:"Latina ĉeflitero I kun tremao",ETH:"Latina ĉeflitero islanda edo",Ntilde:"Latina ĉeflitero N kun tildo",
Ograve:"Latina ĉeflitero O kun liva korno",Oacute:"Latina ĉeflitero O kun dekstra korno",Ocirc:"Latina ĉeflitero O kun ĉapelo",Otilde:"Latina ĉeflitero O kun tildo",Ouml:"Latina ĉeflitero O kun tremao",times:"Multipliko",Oslash:"Latina ĉeflitero O trastrekita",Ugrave:"Latina ĉeflitero U kun liva korno",Uacute:"Latina ĉeflitero U kun dekstra korno",Ucirc:"Latina ĉeflitero U kun ĉapelo",Uuml:"Latina ĉeflitero U kun tremao",Yacute:"Latina ĉeflitero Y kun dekstra korno",THORN:"Latina ĉeflitero islanda dorno",
szlig:"Latina etlitero germana sozo (akra s)",agrave:"Latina etlitero a kun liva korno",aacute:"Latina etlitero a kun dekstra korno",acirc:"Latina etlitero a kun ĉapelo",atilde:"Latina etlitero a kun tildo",auml:"Latina etlitero a kun tremao",aring:"Latina etlitero a kun superringo",aelig:"Latina etlitera ligaturo æ",ccedil:"Latina etlitero c kun zoeto",egrave:"Latina etlitero e kun liva korno",eacute:"Latina etlitero e kun dekstra korno",ecirc:"Latina etlitero e kun ĉapelo",euml:"Latina etlitero e kun tremao",
igrave:"Latina etlitero i kun liva korno",iacute:"Latina etlitero i kun dekstra korno",icirc:"Latina etlitero i kun ĉapelo",iuml:"Latina etlitero i kun tremao",eth:"Latina etlitero islanda edo",ntilde:"Latina etlitero n kun tildo",ograve:"Latina etlitero o kun liva korno",oacute:"Latina etlitero o kun dekstra korno",ocirc:"Latina etlitero o kun ĉapelo",otilde:"Latina etlitero o kun tildo",ouml:"Latina etlitero o kun tremao",divide:"Dividosigno",oslash:"Latina etlitero o trastrekita",ugrave:"Latina etlitero u kun liva korno",
uacute:"Latina etlitero u kun dekstra korno",ucirc:"Latina etlitero u kun ĉapelo",uuml:"Latina etlitero u kun tremao",yacute:"Latina etlitero y kun dekstra korno",thorn:"Latina etlitero islanda dorno",yuml:"Latina etlitero y kun tremao",OElig:"Latina ĉeflitera ligaturo Œ",oelig:"Latina etlitera ligaturo œ",372:"Latina ĉeflitero W kun ĉapelo",374:"Latina ĉeflitero Y kun ĉapelo",373:"Latina etlitero w kun ĉapelo",375:"Latina etlitero y kun ĉapelo",sbquo:"Suba 9-citilo",8219:"Supra renversita 9-citilo",
bdquo:"Suba 99-citilo",hellip:"Tripunkto",trade:"Varmarka signo",9658:"Nigra sago dekstren",bull:"Bulmarko",rarr:"Sago dekstren",rArr:"Duobla sago dekstren",hArr:"Duobla sago maldekstren",diams:"Nigra kvadrato",asymp:"Preskaŭ egala"});admin/ckeditor/plugins/specialchar/dialogs/lang/vi.js0000644000352000025440000001370112450564214023402 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","vi",{euro:"Ký hiệu Euro",lsquo:"Dấu ngoặc đơn trái",rsquo:"Dấu ngoặc đơn phải",ldquo:"Dấu ngoặc đôi trái",rdquo:"Dấu ngoặc đôi phải",ndash:"Gạch ngang tiếng anh",mdash:"Gạch ngang Em",iexcl:"Chuyển đổi dấu chấm than",cent:"Ký tự tiền Mỹ",pound:"Ký tự tiền Anh",curren:"Ký tự tiền tệ",yen:"Ký tự tiền Yên Nhật",brvbar:"Thanh hỏng",sect:"Ký tự khu vực",uml:"Dấu tách đôi",copy:"Ký tự bản quyền",ordf:"Phần chỉ thị giống cái",laquo:"Chọn dấu ngoặc đôi trái",not:"Không có ký tự",
reg:"Ký tự đăng ký",macr:"Dấu nguyên âm dài",deg:"Ký tự độ",sup2:"Chữ trồi lên trên dạng 2",sup3:"Chữ trồi lên trên dạng 3",acute:"Dấu trọng âm",micro:"Ký tự micro",para:"Ký tự đoạn văn",middot:"Dấu chấm tròn",cedil:"Dấu móc lưới",sup1:"Ký tự trồi lên cấp 1",ordm:"Ký tự biểu hiện giống đực",raquo:"Chọn dấu ngoặc đôi phải",frac14:"Tỉ lệ một phần tư",frac12:"Tỉ lệ một nửa",frac34:"Tỉ lệ ba phần tư",iquest:"Chuyển đổi dấu chấm hỏi",Agrave:"Ký tự la-tinh viết hoa A với dấu huyền",Aacute:"Ký tự la-tinh viết hoa A với dấu sắc",
Acirc:"Ký tự la-tinh viết hoa A với dấu mũ",Atilde:"Ký tự la-tinh viết hoa A với dấu ngã",Auml:"Ký tự la-tinh viết hoa A với dấu hai chấm trên đầu",Aring:"Ký tự la-tinh viết hoa A với biểu tượng vòng tròn trên đầu",AElig:"Ký tự la-tinh viết hoa của Æ",Ccedil:"Ký tự la-tinh viết hoa C với dấu móc bên dưới",Egrave:"Ký tự la-tinh viết hoa E với dấu huyền",Eacute:"Ký tự la-tinh viết hoa E với dấu sắc",Ecirc:"Ký tự la-tinh viết hoa E với dấu mũ",Euml:"Ký tự la-tinh viết hoa E với dấu hai chấm trên đầu",
Igrave:"Ký tự la-tinh viết hoa I với dấu huyền",Iacute:"Ký tự la-tinh viết hoa I với dấu sắc",Icirc:"Ký tự la-tinh viết hoa I với dấu mũ",Iuml:"Ký tự la-tinh viết hoa I với dấu hai chấm trên đầu",ETH:"Viết hoa của ký tự Eth",Ntilde:"Ký tự la-tinh viết hoa N với dấu ngã",Ograve:"Ký tự la-tinh viết hoa O với dấu huyền",Oacute:"Ký tự la-tinh viết hoa O với dấu sắc",Ocirc:"Ký tự la-tinh viết hoa O với dấu mũ",Otilde:"Ký tự la-tinh viết hoa O với dấu ngã",Ouml:"Ký tự la-tinh viết hoa O với dấu hai chấm trên đầu",
times:"Ký tự phép toán nhân",Oslash:"Ký tự la-tinh viết hoa A với dấu ngã xuống",Ugrave:"Ký tự la-tinh viết hoa U với dấu huyền",Uacute:"Ký tự la-tinh viết hoa U với dấu sắc",Ucirc:"Ký tự la-tinh viết hoa U với dấu mũ",Uuml:"Ký tự la-tinh viết hoa U với dấu hai chấm trên đầu",Yacute:"Ký tự la-tinh viết hoa Y với dấu sắc",THORN:"Phần viết hoa của ký tự Thorn",szlig:"Ký tự viết nhỏ la-tinh của chữ s",agrave:"Ký tự la-tinh thường với dấu huyền",aacute:"Ký tự la-tinh thường với dấu sắc",acirc:"Ký tự la-tinh thường với dấu mũ",
atilde:"Ký tự la-tinh thường với dấu ngã",auml:"Ký tự la-tinh thường với dấu hai chấm trên đầu",aring:"Ký tự la-tinh viết thường với biểu tượng vòng tròn trên đầu",aelig:"Ký tự la-tinh viết thường của æ",ccedil:"Ký tự la-tinh viết thường của c với dấu móc bên dưới",egrave:"Ký tự la-tinh viết thường e với dấu huyền",eacute:"Ký tự la-tinh viết thường e với dấu sắc",ecirc:"Ký tự la-tinh viết thường e với dấu mũ",euml:"Ký tự la-tinh viết thường e với dấu hai chấm trên đầu",igrave:"Ký tự la-tinh viết thường i với dấu huyền",
iacute:"Ký tự la-tinh viết thường i với dấu sắc",icirc:"Ký tự la-tinh viết thường i với dấu mũ",iuml:"Ký tự la-tinh viết thường i với dấu hai chấm trên đầu",eth:"Ký tự la-tinh viết thường của eth",ntilde:"Ký tự la-tinh viết thường n với dấu ngã",ograve:"Ký tự la-tinh viết thường o với dấu huyền",oacute:"Ký tự la-tinh viết thường o với dấu sắc",ocirc:"Ký tự la-tinh viết thường o với dấu mũ",otilde:"Ký tự la-tinh viết thường o với dấu ngã",ouml:"Ký tự la-tinh viết thường o với dấu hai chấm trên đầu",
divide:"Ký hiệu phép tính chia",oslash:"Ký tự la-tinh viết thường o với dấu ngã",ugrave:"Ký tự la-tinh viết thường u với dấu huyền",uacute:"Ký tự la-tinh viết thường u với dấu sắc",ucirc:"Ký tự la-tinh viết thường u với dấu mũ",uuml:"Ký tự la-tinh viết thường u với dấu hai chấm trên đầu",yacute:"Ký tự la-tinh viết thường y với dấu sắc",thorn:"Ký tự la-tinh viết thường của chữ thorn",yuml:"Ký tự la-tinh viết thường y với dấu hai chấm trên đầu",OElig:"Ký tự la-tinh viết hoa gạch nối OE",oelig:"Ký tự la-tinh viết thường gạch nối OE",
372:"Ký tự la-tinh viết hoa W với dấu mũ",374:"Ký tự la-tinh viết hoa Y với dấu mũ",373:"Ký tự la-tinh viết thường w với dấu mũ",375:"Ký tự la-tinh viết thường y với dấu mũ",sbquo:"Dấu ngoặc đơn thấp số-9",8219:"Dấu ngoặc đơn đảo ngược số-9",bdquo:"Gấp đôi dấu ngoặc đơn số-9",hellip:"Tĩnh dược chiều ngang",trade:"Ký tự thương hiệu",9658:"Ký tự trỏ về hướng bên phải màu đen",bull:"Ký hiệu",rarr:"Mũi tên hướng bên phải",rArr:"Mũi tên hướng bên phải dạng đôi",hArr:"Mũi tên hướng bên trái dạng đôi",diams:"Ký hiệu hình thoi",
asymp:"Gần bằng với"});admin/ckeditor/plugins/specialchar/dialogs/lang/en.js0000644000352000025440000001067712450564214023377 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","en",{euro:"Euro sign",lsquo:"Left single quotation mark",rsquo:"Right single quotation mark",ldquo:"Left double quotation mark",rdquo:"Right double quotation mark",ndash:"En dash",mdash:"Em dash",iexcl:"Inverted exclamation mark",cent:"Cent sign",pound:"Pound sign",curren:"Currency sign",yen:"Yen sign",brvbar:"Broken bar",sect:"Section sign",uml:"Diaeresis",copy:"Copyright sign",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark",
not:"Not sign",reg:"Registered sign",macr:"Macron",deg:"Degree sign",sup2:"Superscript two",sup3:"Superscript three",acute:"Acute accent",micro:"Micro sign",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent",
Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin Capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",
Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke",
Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",
aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",
ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",
yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",
trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"});admin/ckeditor/plugins/specialchar/dialogs/lang/sv.js0000644000352000025440000000663012450564214023417 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","sv",{euro:"Eurotecken",lsquo:"Enkelt vänster citattecken",rsquo:"Enkelt höger citattecken",ldquo:"Dubbelt vänster citattecken",rdquo:"Dubbelt höger citattecken",ndash:"Snedstreck",mdash:"Långt tankstreck",iexcl:"Inverterad utropstecken",cent:"Centtecken",pound:"Pundtecken",curren:"Valutatecken",yen:"Yentecken",brvbar:"Brutet lodrätt streck",sect:"Paragraftecken",uml:"Diaeresis",copy:"Upphovsrättstecken",ordf:"Feminit ordningstalsindikator",laquo:"Vänsterställt dubbelt vinkelcitationstecken",
not:"Icke-tecken",reg:"Registrerad",macr:"Macron",deg:"Grader",sup2:"Upphöjt två",sup3:"Upphöjt tre",acute:"Akut accent",micro:"Mikrotecken",para:"Alinea",middot:"Centrerad prick",cedil:"Cedilj",sup1:"Upphöjt en",ordm:"Maskulina ordningsändelsen",raquo:"Högerställt dubbelt vinkelcitationstecken",frac14:"Bråktal - en kvart",frac12:"Bråktal - en halv",frac34:"Bråktal - tre fjärdedelar",iquest:"Inverterat frågetecken",Agrave:"Stort A med grav accent",Aacute:"Stort A med akutaccent",Acirc:"Stort A med circumflex",
Atilde:"Stort A med tilde",Auml:"Stort A med diaresis",Aring:"Stort A med ring ovan",AElig:"Stort Æ",Ccedil:"Stort C med cedilj",Egrave:"Stort E med grav accent",Eacute:"Stort E med aktuaccent",Ecirc:"Stort E med circumflex",Euml:"Stort E med diaeresis",Igrave:"Stort I med grav accent",Iacute:"Stort I med akutaccent",Icirc:"Stort I med circumflex",Iuml:"Stort I med diaeresis",ETH:"Stort Eth",Ntilde:"Stort N med tilde",Ograve:"Stort O med grav accent",Oacute:"Stort O med aktuaccent",Ocirc:"Stort O med circumflex",
Otilde:"Stort O med tilde",Ouml:"Stort O med diaeresis",times:"Multiplicera",Oslash:"Stor Ø",Ugrave:"Stort U med grav accent",Uacute:"Stort U med akutaccent",Ucirc:"Stort U med circumflex",Uuml:"Stort U med diaeresis",Yacute:"Stort Y med akutaccent",THORN:"Stort Thorn",szlig:"Litet dubbel-s/Eszett",agrave:"Litet a med grav accent",aacute:"Litet a med akutaccent",acirc:"Litet a med circumflex",atilde:"Litet a med tilde",auml:"Litet a med diaeresis",aring:"Litet a med ring ovan",aelig:"Bokstaven æ",
ccedil:"Litet c med cedilj",egrave:"Litet e med grav accent",eacute:"Litet e med akutaccent",ecirc:"Litet e med circumflex",euml:"Litet e med diaeresis",igrave:"Litet i med grav accent",iacute:"Litet i med akutaccent",icirc:"LItet i med circumflex",iuml:"Litet i med didaeresis",eth:"Litet eth",ntilde:"Litet n med tilde",ograve:"LItet o med grav accent",oacute:"LItet o med akutaccent",ocirc:"Litet o med circumflex",otilde:"LItet o med tilde",ouml:"Litet o med diaeresis",divide:"Division",oslash:"ø",
ugrave:"Litet u med grav accent",uacute:"Litet u med akutaccent",ucirc:"LItet u med circumflex",uuml:"Litet u med diaeresis",yacute:"Litet y med akutaccent",thorn:"Litet thorn",yuml:"Litet y med diaeresis",OElig:"Stor ligatur av OE",oelig:"Liten ligatur av oe",372:"Stort W med circumflex",374:"Stort Y med circumflex",373:"Litet w med circumflex",375:"Litet y med circumflex",sbquo:"Enkelt lågt 9-citationstecken",8219:"Enkelt högt bakvänt 9-citationstecken",bdquo:"Dubbelt lågt 9-citationstecken",hellip:"Horisontellt uteslutningstecken",
trade:"Varumärke",9658:"Svart högervänd pekare",bull:"Listpunkt",rarr:"Högerpil",rArr:"Dubbel högerpil",hArr:"Dubbel vänsterpil",diams:"Svart ruter",asymp:"Ungefär lika med"});admin/ckeditor/plugins/specialchar/dialogs/lang/ar.js0000644000352000025440000001125212450564214023365 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","ar",{euro:"رمز اليورو",lsquo:"علامة تنصيص فردية علي اليسار",rsquo:"علامة تنصيص فردية علي اليمين",ldquo:"علامة تنصيص مزدوجة علي اليسار",rdquo:"علامة تنصيص مزدوجة علي اليمين",ndash:"En dash",mdash:"Em dash",iexcl:"علامة تعجب مقلوبة",cent:"رمز السنت",pound:"رمز الاسترليني",curren:"رمز العملة",yen:"رمز الين",brvbar:"شريط مقطوع",sect:"رمز القسم",uml:"Diaeresis",copy:"علامة حقوق الطبع",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark",
not:"ليست علامة",reg:"علامة مسجّلة",macr:"Macron",deg:"Degree sign",sup2:"Superscript two",sup3:"Superscript three",acute:"Acute accent",micro:"Micro sign",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"علامة الإستفهام غير صحيحة",Agrave:"Latin capital letter A with grave accent",
Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin Capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",
Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke",
Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",
aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",
ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",
yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",
trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"});admin/ckeditor/plugins/specialchar/dialogs/lang/ug.js0000644000352000025440000001160712450564214023402 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","ug",{euro:"ياۋرو بەلگىسى",lsquo:"يالاڭ پەش سول",rsquo:"يالاڭ پەش ئوڭ",ldquo:"قوش پەش سول",rdquo:"قوش پەش ئوڭ",ndash:"سىزىقچە",mdash:"سىزىق",iexcl:"ئۈندەش",cent:"تىيىن بەلگىسى",pound:"فوند ستېرلىڭ",curren:"پۇل بەلگىسى",yen:"ياپونىيە يىنى",brvbar:"ئۈزۈك بالداق",sect:"پاراگراف بەلگىسى",uml:"تاۋۇش ئايرىش بەلگىسى",copy:"نەشر ھوقۇقى بەلگىسى",ordf:"Feminine ordinal indicator",laquo:"قوش تىرناق سول",not:"غەيرى بەلگە",reg:"خەتلەتكەن تاۋار ماركىسى",macr:"سوزۇش بەلگىسى",
deg:"گىرادۇس بەلگىسى",sup2:"يۇقىرى ئىندېكىس 2",sup3:"يۇقىرى ئىندېكىس 3",acute:"ئۇرغۇ بەلگىسى",micro:"Micro sign",para:"ئابزاس بەلگىسى",middot:"ئوتتۇرا چېكىت",cedil:"ئاستىغا قوشۇلىدىغان بەلگە",sup1:"يۇقىرى ئىندېكىس 1",ordm:"Masculine ordinal indicator",raquo:"قوش تىرناق ئوڭ",frac14:"ئاددىي كەسىر تۆتتىن بىر",frac12:"ئاددىي كەسىر ئىككىدىن بىر",frac34:"ئاددىي كەسىر ئۈچتىن تۆرت",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent",Aacute:"Latin capital letter A with acute accent",
Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin Capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",Iacute:"Latin capital letter I with acute accent",
Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"قوش پەش ئوڭ",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke",Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",
Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",
ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",ntilde:"تىك موللاق سوئال بەلگىسى",ograve:"Latin small letter o with grave accent",
oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"بۆلۈش بەلگىسى",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",
yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",trade:"خەتلەتكەن تاۋار ماركىسى بەلگىسى",9658:"Black right-pointing pointer",
bull:"Bullet",rarr:"ئوڭ يا ئوق",rArr:"ئوڭ قوش سىزىق يا ئوق",hArr:"ئوڭ سول قوش سىزىق يا ئوق",diams:"ئۇيۇل غىچ",asymp:"تەخمىنەن تەڭ"});admin/ckeditor/plugins/specialchar/dialogs/lang/cy.js0000644000352000025440000001143312450564214023377 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","cy",{euro:"Arwydd yr Ewro",lsquo:"Dyfynnod chwith unigol",rsquo:"Dyfynnod dde unigol",ldquo:"Dyfynnod chwith dwbl",rdquo:"Dyfynnod dde dwbl",ndash:"Cysylltnod en",mdash:"Cysylltnod em",iexcl:"Ebychnod gwrthdro",cent:"Arwydd sent",pound:"Arwydd punt",curren:"Arwydd arian cyfred",yen:"Arwydd yen",brvbar:"Bar toriedig",sect:"Arwydd adran",uml:"Didolnod",copy:"Arwydd hawlfraint",ordf:"Dangosydd benywaidd",laquo:"Dyfynnod dwbl ar ongl i'r chwith",not:"Arwydd Nid",
reg:"Arwydd cofrestredig",macr:"Macron",deg:"Arwydd gradd",sup2:"Dau uwchsgript",sup3:"Tri uwchsgript",acute:"Acen ddyrchafedig",micro:"Arwydd micro",para:"Arwydd pilcrow",middot:"Dot canol",cedil:"Sedila",sup1:"Un uwchsgript",ordm:"Dangosydd gwrywaidd",raquo:"Dyfynnod dwbl ar ongl i'r dde",frac14:"Ffracsiwn cyffredin un cwarter",frac12:"Ffracsiwn cyffredin un hanner",frac34:"Ffracsiwn cyffredin tri chwarter",iquest:"Marc cwestiwn gwrthdroëdig",Agrave:"Priflythyren A Lladinaidd gydag acen ddisgynedig",
Aacute:"Priflythyren A Lladinaidd gydag acen ddyrchafedig",Acirc:"Priflythyren A Lladinaidd gydag acen grom",Atilde:"Priflythyren A Lladinaidd gyda thild",Auml:"Priflythyren A Lladinaidd gyda didolnod",Aring:"Priflythyren A Lladinaidd gyda chylch uwchben",AElig:"Priflythyren Æ Lladinaidd",Ccedil:"Priflythyren C Lladinaidd gyda sedila",Egrave:"Priflythyren E Lladinaidd gydag acen ddisgynedig",Eacute:"Priflythyren E Lladinaidd gydag acen ddyrchafedig",Ecirc:"Priflythyren E Lladinaidd gydag acen grom",
Euml:"Priflythyren E Lladinaidd gyda didolnod",Igrave:"Priflythyren I Lladinaidd gydag acen ddisgynedig",Iacute:"Priflythyren I Lladinaidd gydag acen ddyrchafedig",Icirc:"Priflythyren I Lladinaidd gydag acen grom",Iuml:"Priflythyren I Lladinaidd gyda didolnod",ETH:"Priflythyren Eth",Ntilde:"Priflythyren N Lladinaidd gyda thild",Ograve:"Priflythyren O Lladinaidd gydag acen ddisgynedig",Oacute:"Priflythyren O Lladinaidd gydag acen ddyrchafedig",Ocirc:"Priflythyren O Lladinaidd gydag acen grom",Otilde:"Priflythyren O Lladinaidd gyda thild",
Ouml:"Priflythyren O Lladinaidd gyda didolnod",times:"Arwydd lluosi",Oslash:"Priflythyren O Lladinaidd gyda strôc",Ugrave:"Priflythyren U Lladinaidd gydag acen ddisgynedig",Uacute:"Priflythyren U Lladinaidd gydag acen ddyrchafedig",Ucirc:"Priflythyren U Lladinaidd gydag acen grom",Uuml:"Priflythyren U Lladinaidd gyda didolnod",Yacute:"Priflythyren Y Lladinaidd gydag acen ddyrchafedig",THORN:"Priflythyren Thorn",szlig:"Llythyren s fach Lladinaidd siarp ",agrave:"Llythyren a fach Lladinaidd gydag acen ddisgynedig",
aacute:"Llythyren a fach Lladinaidd gydag acen ddyrchafedig",acirc:"Llythyren a fach Lladinaidd gydag acen grom",atilde:"Llythyren a fach Lladinaidd gyda thild",auml:"Llythyren a fach Lladinaidd gyda didolnod",aring:"Llythyren a fach Lladinaidd gyda chylch uwchben",aelig:"Llythyren æ fach Lladinaidd",ccedil:"Llythyren c fach Lladinaidd gyda sedila",egrave:"Llythyren e fach Lladinaidd gydag acen ddisgynedig",eacute:"Llythyren e fach Lladinaidd gydag acen ddyrchafedig",ecirc:"Llythyren e fach Lladinaidd gydag acen grom",
euml:"Llythyren e fach Lladinaidd gyda didolnod",igrave:"Llythyren i fach Lladinaidd gydag acen ddisgynedig",iacute:"Llythyren i fach Lladinaidd gydag acen ddyrchafedig",icirc:"Llythyren i fach Lladinaidd gydag acen grom",iuml:"Llythyren i fach Lladinaidd gyda didolnod",eth:"Llythyren eth fach",ntilde:"Llythyren n fach Lladinaidd gyda thild",ograve:"Llythyren o fach Lladinaidd gydag acen ddisgynedig",oacute:"Llythyren o fach Lladinaidd gydag acen ddyrchafedig",ocirc:"Llythyren o fach Lladinaidd gydag acen grom",
otilde:"Llythyren o fach Lladinaidd gyda thild",ouml:"Llythyren o fach Lladinaidd gyda didolnod",divide:"Arwydd rhannu",oslash:"Llythyren o fach Lladinaidd gyda strôc",ugrave:"Llythyren u fach Lladinaidd gydag acen ddisgynedig",uacute:"Llythyren u fach Lladinaidd gydag acen ddyrchafedig",ucirc:"Llythyren u fach Lladinaidd gydag acen grom",uuml:"Llythyren u fach Lladinaidd gyda didolnod",yacute:"Llythyren y fach Lladinaidd gydag acen ddisgynedig",thorn:"Llythyren o fach Lladinaidd gyda strôc",yuml:"Llythyren y fach Lladinaidd gyda didolnod",
OElig:"Priflythyren cwlwm OE Lladinaidd ",oelig:"Priflythyren cwlwm oe Lladinaidd ",372:"Priflythyren W gydag acen grom",374:"Priflythyren Y gydag acen grom",373:"Llythyren w fach gydag acen grom",375:"Llythyren y fach gydag acen grom",sbquo:"Dyfynnod sengl 9-isel",8219:"Dyfynnod sengl 9-uchel cildro",bdquo:"Dyfynnod dwbl 9-isel",hellip:"Coll geiriau llorweddol",trade:"Arwydd marc masnachol",9658:"Pwyntydd du i'r dde",bull:"Bwled",rarr:"Saeth i'r dde",rArr:"Saeth ddwbl i'r dde",hArr:"Saeth ddwbl i'r chwith",
diams:"Siwt diemwnt du",asymp:"Bron yn hafal iddo"});admin/ckeditor/plugins/specialchar/dialogs/lang/sq.js0000644000352000025440000001155612450564214023415 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","sq",{euro:"Shenja e Euros",lsquo:"Thonjëza majtas me një vi",rsquo:"Thonjëza djathtas me një vi",ldquo:"Thonjëza majtas",rdquo:"Thonjëza djathtas",ndash:"En viza lidhëse",mdash:"Em viza lidhëse",iexcl:"Pikëçuditëse e përmbysur",cent:"Shenja e Centit",pound:"Shejna e Funtit",curren:"Shenja e valutës",yen:"Shenja e Jenit",brvbar:"Viza e këputur",sect:"Shenja e pjesës",uml:"Diaeresis",copy:"Shenja e të drejtave të kopjimit",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark",
not:"Nuk ka shenjë",reg:"Shenja e të regjistruarit",macr:"Macron",deg:"Shenja e shkallës",sup2:"Super-skripta dy",sup3:"Super-skripta tre",acute:"Theks i mprehtë",micro:"Shjenja e Mikros",para:"Pilcrow sign",middot:"Pika e Mesme",cedil:"Hark nën shkronja",sup1:"Super-skripta një",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Thyesa një të katrat",frac12:"Thyesa një të dytat",frac34:"Thyesa tre të katrat",iquest:"Pikëpyetje e përmbysur",Agrave:"Shkronja e madhe latine A me theks të rëndë",
Aacute:"Shkronja e madhe latine A me theks akute",Acirc:"Shkronja e madhe latine A me theks lakor",Atilde:"Shkronja e madhe latine A me tildë",Auml:"Shkronja e madhe latine A me dy pika",Aring:"Shkronja e madhe latine A me unazë mbi",AElig:"Shkronja e madhe latine Æ",Ccedil:"Shkronja e madhe latine C me hark poshtë",Egrave:"Shkronja e madhe latine E me theks të rëndë",Eacute:"Shkronja e madhe latine E me theks akute",Ecirc:"Shkronja e madhe latine E me theks lakor",Euml:"Shkronja e madhe latine E me dy pika",
Igrave:"Shkronja e madhe latine I me theks të rëndë",Iacute:"Shkronja e madhe latine I me theks akute",Icirc:"Shkronja e madhe latine I me theks lakor",Iuml:"Shkronja e madhe latine I me dy pika",ETH:"Shkronja e madhe latine Eth",Ntilde:"Shkronja e madhe latine N me tildë",Ograve:"Shkronja e madhe latine O me theks të rëndë",Oacute:"Shkronja e madhe latine O me theks akute",Ocirc:"Shkronja e madhe latine O me theks lakor",Otilde:"Shkronja e madhe latine O me tildë",Ouml:"Shkronja e madhe latine O me dy pika",
times:"Shenja e shumëzimit",Oslash:"Shkronja e madhe latine O me vizë në mes",Ugrave:"Shkronja e madhe latine U me theks të rëndë",Uacute:"Shkronja e madhe latine U me theks akute",Ucirc:"Shkronja e madhe latine U me theks lakor",Uuml:"Shkronja e madhe latine U me dy pika",Yacute:"Shkronja e madhe latine Y me theks akute",THORN:"Shkronja e madhe latine Thorn",szlig:"Shkronja e vogë latine s e mprehtë",agrave:"Shkronja e vogë latine a me theks të rëndë",aacute:"Shkronja e vogë latine a me theks të mprehtë",
acirc:"Shkronja e vogël latine a me theks lakor",atilde:"Shkronja e vogël latine a me tildë",auml:"Shkronja e vogël latine a me dy pika",aring:"Shkronja e vogë latine a me unazë mbi",aelig:"Shkronja e vogë latine æ",ccedil:"Shkronja e vogël latine c me hark poshtë",egrave:"Shkronja e vogë latine e me theks të rëndë",eacute:"Shkronja e vogë latine e me theks të mprehtë",ecirc:"Shkronja e vogël latine e me theks lakor",euml:"Shkronja e vogël latine e me dy pika",igrave:"Shkronja e vogë latine i me theks të rëndë",
iacute:"Shkronja e vogë latine i me theks të mprehtë",icirc:"Shkronja e vogël latine i me theks lakor",iuml:"Shkronja e vogël latine i me dy pika",eth:"Shkronja e vogë latine eth",ntilde:"Shkronja e vogël latine n me tildë",ograve:"Shkronja e vogë latine o me theks të rëndë",oacute:"Shkronja e vogë latine o me theks të mprehtë",ocirc:"Shkronja e vogël latine o me theks lakor",otilde:"Shkronja e vogël latine o me tildë",ouml:"Shkronja e vogël latine o me dy pika",divide:"Shenja ndarëse",oslash:"Shkronja e vogël latine o me vizë në mes",
ugrave:"Shkronja e vogë latine u me theks të rëndë",uacute:"Shkronja e vogë latine u me theks të mprehtë",ucirc:"Shkronja e vogël latine u me theks lakor",uuml:"Shkronja e vogël latine u me dy pika",yacute:"Shkronja e vogë latine y me theks të mprehtë",thorn:"Shkronja e vogël latine thorn",yuml:"Shkronja e vogël latine y me dy pika",OElig:"Shkronja e madhe e bashkuar latine OE",oelig:"Shkronja e vogël e bashkuar latine oe",372:"Shkronja e madhe latine W me theks lakor",374:"Shkronja e madhe latine Y me theks lakor",
373:"Shkronja e vogël latine w me theks lakor",375:"Shkronja e vogël latine y me theks lakor",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",trade:"Shenja e Simbolit Tregtarë",9658:"Black right-pointing pointer",bull:"Pulla",rarr:"Shigjeta djathtas",rArr:"Shenja të dyfishta djathtas",hArr:"Shigjeta e dyfishë majtas-djathtas",diams:"Black diamond suit",asymp:"Gati e barabar me"});admin/ckeditor/plugins/specialchar/dialogs/lang/nl.js0000644000352000025440000001116212450564214023374 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","nl",{euro:"Euro-teken",lsquo:"Linker enkel aanhalingsteken",rsquo:"Rechter enkel aanhalingsteken",ldquo:"Linker dubbel aanhalingsteken",rdquo:"Rechter dubbel aanhalingsteken",ndash:"En dash",mdash:"Em dash",iexcl:"Omgekeerd uitroepteken",cent:"Cent-teken",pound:"Pond-teken",curren:"Valuta-teken",yen:"Yen-teken",brvbar:"Gebroken streep",sect:"Paragraaf-teken",uml:"Trema",copy:"Copyright-teken",ordf:"Vrouwelijk ordinaal",laquo:"Linker guillemet",not:"Ongelijk-teken",
reg:"Geregistreerd handelsmerk-teken",macr:"Macron",deg:"Graden-teken",sup2:"Superscript twee",sup3:"Superscript drie",acute:"Accent aigu",micro:"Micro-teken",para:"Alinea-teken",middot:"Halfhoge punt",cedil:"Cedille",sup1:"Superscript een",ordm:"Mannelijk ordinaal",raquo:"Rechter guillemet",frac14:"Breuk kwart",frac12:"Breuk half",frac34:"Breuk driekwart",iquest:"Omgekeerd vraagteken",Agrave:"Latijnse hoofdletter A met een accent grave",Aacute:"Latijnse hoofdletter A met een accent aigu",Acirc:"Latijnse hoofdletter A met een circonflexe",
Atilde:"Latijnse hoofdletter A met een tilde",Auml:"Latijnse hoofdletter A met een trema",Aring:"Latijnse hoofdletter A met een corona",AElig:"Latijnse hoofdletter Æ",Ccedil:"Latijnse hoofdletter C met een cedille",Egrave:"Latijnse hoofdletter E met een accent grave",Eacute:"Latijnse hoofdletter E met een accent aigu",Ecirc:"Latijnse hoofdletter E met een circonflexe",Euml:"Latijnse hoofdletter E met een trema",Igrave:"Latijnse hoofdletter I met een accent grave",Iacute:"Latijnse hoofdletter I met een accent aigu",
Icirc:"Latijnse hoofdletter I met een circonflexe",Iuml:"Latijnse hoofdletter I met een trema",ETH:"Latijnse hoofdletter Eth",Ntilde:"Latijnse hoofdletter N met een tilde",Ograve:"Latijnse hoofdletter O met een accent grave",Oacute:"Latijnse hoofdletter O met een accent aigu",Ocirc:"Latijnse hoofdletter O met een circonflexe",Otilde:"Latijnse hoofdletter O met een tilde",Ouml:"Latijnse hoofdletter O met een trema",times:"Maal-teken",Oslash:"Latijnse hoofdletter O met een schuine streep",Ugrave:"Latijnse hoofdletter U met een accent grave",
Uacute:"Latijnse hoofdletter U met een accent aigu",Ucirc:"Latijnse hoofdletter U met een circonflexe",Uuml:"Latijnse hoofdletter U met een trema",Yacute:"Latijnse hoofdletter Y met een accent aigu",THORN:"Latijnse hoofdletter Thorn",szlig:"Latijnse kleine ringel-s",agrave:"Latijnse kleine letter a met een accent grave",aacute:"Latijnse kleine letter a met een accent aigu",acirc:"Latijnse kleine letter a met een circonflexe",atilde:"Latijnse kleine letter a met een tilde",auml:"Latijnse kleine letter a met een trema",
aring:"Latijnse kleine letter a met een corona",aelig:"Latijnse kleine letter æ",ccedil:"Latijnse kleine letter c met een cedille",egrave:"Latijnse kleine letter e met een accent grave",eacute:"Latijnse kleine letter e met een accent aigu",ecirc:"Latijnse kleine letter e met een circonflexe",euml:"Latijnse kleine letter e met een trema",igrave:"Latijnse kleine letter i met een accent grave",iacute:"Latijnse kleine letter i met een accent aigu",icirc:"Latijnse kleine letter i met een circonflexe",
iuml:"Latijnse kleine letter i met een trema",eth:"Latijnse kleine letter eth",ntilde:"Latijnse kleine letter n met een tilde",ograve:"Latijnse kleine letter o met een accent grave",oacute:"Latijnse kleine letter o met een accent aigu",ocirc:"Latijnse kleine letter o met een circonflexe",otilde:"Latijnse kleine letter o met een tilde",ouml:"Latijnse kleine letter o met een trema",divide:"Deel-teken",oslash:"Latijnse kleine letter o met een schuine streep",ugrave:"Latijnse kleine letter u met een accent grave",
uacute:"Latijnse kleine letter u met een accent aigu",ucirc:"Latijnse kleine letter u met een circonflexe",uuml:"Latijnse kleine letter u met een trema",yacute:"Latijnse kleine letter y met een accent aigu",thorn:"Latijnse kleine letter thorn",yuml:"Latijnse kleine letter y met een trema",OElig:"Latijnse hoofdletter Œ",oelig:"Latijnse kleine letter œ",372:"Latijnse hoofdletter W met een circonflexe",374:"Latijnse hoofdletter Y met een circonflexe",373:"Latijnse kleine letter w met een circonflexe",
375:"Latijnse kleine letter y met een circonflexe",sbquo:"Lage enkele aanhalingsteken",8219:"Hoge omgekeerde enkele aanhalingsteken",bdquo:"Lage dubbele aanhalingsteken",hellip:"Beletselteken",trade:"Trademark-teken",9658:"Zwarte driehoek naar rechts",bull:"Bullet",rarr:"Pijl naar rechts",rArr:"Dubbele pijl naar rechts",hArr:"Dubbele pijl naar links",diams:"Zwart ruitje",asymp:"Benaderingsteken"});admin/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js0000644000352000025440000000736212450564214024016 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","pt-br",{euro:"Euro",lsquo:"Aspas simples esquerda",rsquo:"Aspas simples direita",ldquo:"Aspas duplas esquerda",rdquo:"Aspas duplas direita",ndash:"Traço",mdash:"Travessão",iexcl:"Ponto de exclamação invertido",cent:"Cent",pound:"Cerquilha",curren:"Dinheiro",yen:"Yen",brvbar:"Bara interrompida",sect:"Símbolo de Parágrafo",uml:"Trema",copy:"Direito de Cópia",ordf:"Indicador ordinal feminino",laquo:"Aspas duplas angulares esquerda",not:"Negação",reg:"Marca Registrada",
macr:"Mácron",deg:"Grau",sup2:"2 Superscrito",sup3:"3 Superscrito",acute:"Acento agudo",micro:"Micro",para:"Pé de mosca",middot:"Ponto mediano",cedil:"Cedilha",sup1:"1 Superscrito",ordm:"Indicador ordinal masculino",raquo:"Aspas duplas angulares direita",frac14:"Um quarto",frac12:"Um meio",frac34:"Três quartos",iquest:"Interrogação invertida",Agrave:"A maiúsculo com acento grave",Aacute:"A maiúsculo com acento agudo",Acirc:"A maiúsculo com acento circunflexo",Atilde:"A maiúsculo com til",Auml:"A maiúsculo com trema",
Aring:"A maiúsculo com anel acima",AElig:"Æ maiúsculo",Ccedil:"Ç maiúlculo",Egrave:"E maiúsculo com acento grave",Eacute:"E maiúsculo com acento agudo",Ecirc:"E maiúsculo com acento circumflexo",Euml:"E maiúsculo com trema",Igrave:"I maiúsculo com acento grave",Iacute:"I maiúsculo com acento agudo",Icirc:"I maiúsculo com acento circunflexo",Iuml:"I maiúsculo com crase",ETH:"Eth maiúsculo",Ntilde:"N maiúsculo com til",Ograve:"O maiúsculo com acento grave",Oacute:"O maiúsculo com acento agudo",Ocirc:"O maiúsculo com acento circunflexo",
Otilde:"O maiúsculo com til",Ouml:"O maiúsculo com trema",times:"Multiplicação",Oslash:"Diâmetro",Ugrave:"U maiúsculo com acento grave",Uacute:"U maiúsculo com acento agudo",Ucirc:"U maiúsculo com acento circunflexo",Uuml:"U maiúsculo com trema",Yacute:"Y maiúsculo com acento agudo",THORN:"Thorn maiúsculo",szlig:"Eszett minúsculo",agrave:"a minúsculo com acento grave",aacute:"a minúsculo com acento agudo",acirc:"a minúsculo com acento circunflexo",atilde:"a minúsculo com til",auml:"a minúsculo com trema",
aring:"a minúsculo com anel acima",aelig:"æ minúsculo",ccedil:"ç minúsculo",egrave:"e minúsculo com acento grave",eacute:"e minúsculo com acento agudo",ecirc:"e minúsculo com acento circunflexo",euml:"e minúsculo com trema",igrave:"i minúsculo com acento grave",iacute:"i minúsculo com acento agudo",icirc:"i minúsculo com acento circunflexo",iuml:"i minúsculo com trema",eth:"eth minúsculo",ntilde:"n minúsculo com til",ograve:"o minúsculo com acento grave",oacute:"o minúsculo com acento agudo",ocirc:"o minúsculo com acento circunflexo",
otilde:"o minúsculo com til",ouml:"o minúsculo com trema",divide:"Divisão",oslash:"o minúsculo com cortado ou diâmetro",ugrave:"u minúsculo com acento grave",uacute:"u minúsculo com acento agudo",ucirc:"u minúsculo com acento circunflexo",uuml:"u minúsculo com trema",yacute:"y minúsculo com acento agudo",thorn:"thorn minúsculo",yuml:"y minúsculo com trema",OElig:"Ligação tipográfica OE maiúscula",oelig:"Ligação tipográfica oe minúscula",372:"W maiúsculo com acento circunflexo",374:"Y maiúsculo com acento circunflexo",
373:"w minúsculo com acento circunflexo",375:"y minúsculo com acento circunflexo",sbquo:"Aspas simples inferior direita",8219:"Aspas simples superior esquerda",bdquo:"Aspas duplas inferior direita",hellip:"Reticências",trade:"Trade mark",9658:"Ponta de seta preta para direita",bull:"Ponto lista",rarr:"Seta para direita",rArr:"Seta dupla para direita",hArr:"Seta dupla direita e esquerda",diams:"Ouros",asymp:"Aproximadamente"});admin/ckeditor/plugins/specialchar/dialogs/lang/pl.js0000644000352000025440000001034112450564214023374 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","pl",{euro:"Znak euro",lsquo:"Cudzysłów pojedynczy otwierający",rsquo:"Cudzysłów pojedynczy zamykający",ldquo:"Cudzysłów apostrofowy otwierający",rdquo:"Cudzysłów apostrofowy zamykający",ndash:"Półpauza",mdash:"Pauza",iexcl:"Odwrócony wykrzyknik",cent:"Znak centa",pound:"Znak funta",curren:"Znak waluty",yen:"Znak jena",brvbar:"Przerwana pionowa kreska",sect:"Paragraf",uml:"Diereza",copy:"Znak praw autorskich",ordf:"Wskaźnik rodzaju żeńskiego liczebnika porządkowego",
laquo:"Lewy cudzysłów ostrokątny",not:"Znak negacji",reg:"Zastrzeżony znak towarowy",macr:"Makron",deg:"Znak stopnia",sup2:"Druga potęga",sup3:"Trzecia potęga",acute:"Akcent ostry",micro:"Znak mikro",para:"Znak akapitu",middot:"Kropka środkowa",cedil:"Cedylla",sup1:"Pierwsza potęga",ordm:"Wskaźnik rodzaju męskiego liczebnika porządkowego",raquo:"Prawy cudzysłów ostrokątny",frac14:"Ułamek zwykły jedna czwarta",frac12:"Ułamek zwykły jedna druga",frac34:"Ułamek zwykły trzy czwarte",iquest:"Odwrócony znak zapytania",
Agrave:"Wielka litera A z akcentem ciężkim",Aacute:"Wielka litera A z akcentem ostrym",Acirc:"Wielka litera A z akcentem przeciągłym",Atilde:"Wielka litera A z tyldą",Auml:"Wielka litera A z dierezą",Aring:"Wielka litera A z kółkiem",AElig:"Wielka ligatura Æ",Ccedil:"Wielka litera C z cedyllą",Egrave:"Wielka litera E z akcentem ciężkim",Eacute:"Wielka litera E z akcentem ostrym",Ecirc:"Wielka litera E z akcentem przeciągłym",Euml:"Wielka litera E z dierezą",Igrave:"Wielka litera I z akcentem ciężkim",
Iacute:"Wielka litera I z akcentem ostrym",Icirc:"Wielka litera I z akcentem przeciągłym",Iuml:"Wielka litera I z dierezą",ETH:"Wielka litera Eth",Ntilde:"Wielka litera N z tyldą",Ograve:"Wielka litera O z akcentem ciężkim",Oacute:"Wielka litera O z akcentem ostrym",Ocirc:"Wielka litera O z akcentem przeciągłym",Otilde:"Wielka litera O z tyldą",Ouml:"Wielka litera O z dierezą",times:"Znak mnożenia wektorowego",Oslash:"Wielka litera O z przekreśleniem",Ugrave:"Wielka litera U z akcentem ciężkim",Uacute:"Wielka litera U z akcentem ostrym",
Ucirc:"Wielka litera U z akcentem przeciągłym",Uuml:"Wielka litera U z dierezą",Yacute:"Wielka litera Y z akcentem ostrym",THORN:"Wielka litera Thorn",szlig:"Mała litera ostre s (eszet)",agrave:"Mała litera a z akcentem ciężkim",aacute:"Mała litera a z akcentem ostrym",acirc:"Mała litera a z akcentem przeciągłym",atilde:"Mała litera a z tyldą",auml:"Mała litera a z dierezą",aring:"Mała litera a z kółkiem",aelig:"Mała ligatura æ",ccedil:"Mała litera c z cedyllą",egrave:"Mała litera e z akcentem ciężkim",
eacute:"Mała litera e z akcentem ostrym",ecirc:"Mała litera e z akcentem przeciągłym",euml:"Mała litera e z dierezą",igrave:"Mała litera i z akcentem ciężkim",iacute:"Mała litera i z akcentem ostrym",icirc:"Mała litera i z akcentem przeciągłym",iuml:"Mała litera i z dierezą",eth:"Mała litera eth",ntilde:"Mała litera n z tyldą",ograve:"Mała litera o z akcentem ciężkim",oacute:"Mała litera o z akcentem ostrym",ocirc:"Mała litera o z akcentem przeciągłym",otilde:"Mała litera o z tyldą",ouml:"Mała litera o z dierezą",
divide:"Anglosaski znak dzielenia",oslash:"Mała litera o z przekreśleniem",ugrave:"Mała litera u z akcentem ciężkim",uacute:"Mała litera u z akcentem ostrym",ucirc:"Mała litera u z akcentem przeciągłym",uuml:"Mała litera u z dierezą",yacute:"Mała litera y z akcentem ostrym",thorn:"Mała litera thorn",yuml:"Mała litera y z dierezą",OElig:"Wielka ligatura OE",oelig:"Mała ligatura oe",372:"Wielka litera W z akcentem przeciągłym",374:"Wielka litera Y z akcentem przeciągłym",373:"Mała litera w z akcentem przeciągłym",
375:"Mała litera y z akcentem przeciągłym",sbquo:"Pojedynczy apostrof dolny",8219:"Pojedynczy apostrof górny",bdquo:"Podwójny apostrof dolny",hellip:"Wielokropek",trade:"Znak towarowy",9658:"Czarny wskaźnik wskazujący w prawo",bull:"Punktor",rarr:"Strzałka w prawo",rArr:"Podwójna strzałka w prawo",hArr:"Podwójna strzałka w lewo",diams:"Czarny znak karo",asymp:"Znak prawie równe"});admin/ckeditor/plugins/specialchar/dialogs/lang/sl.js0000644000352000025440000001033712450564214023404 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","sl",{euro:"Evro znak",lsquo:"Levi enojni narekovaj",rsquo:"Desni enojni narekovaj",ldquo:"Levi dvojni narekovaj",rdquo:"Desni dvojni narekovaj",ndash:"En pomišljaj",mdash:"Em pomišljaj",iexcl:"Obrnjen klicaj",cent:"Cent znak",pound:"Funt znak",curren:"Znak valute",yen:"Jen znak",brvbar:"Zlomljena črta",sect:"Znak oddelka",uml:"Diaeresis",copy:"Znak avtorskih pravic",ordf:"Ženski zaporedni kazalnik",laquo:"Levi obrnjen dvojni kotni narekovaj",not:"Ne znak",reg:"Registrirani znak",
macr:"Macron",deg:"Znak stopinj",sup2:"Nadpisano dva",sup3:"Nadpisano tri",acute:"Ostrivec",micro:"Mikro znak",para:"Pilcrow znak",middot:"Sredinska pika",cedil:"Cedilla",sup1:"Nadpisano ena",ordm:"Moški zaporedni kazalnik",raquo:"Desno obrnjen dvojni kotni narekovaj",frac14:"Ena četrtina",frac12:"Ena polovica",frac34:"Tri četrtine",iquest:"Obrnjen vprašaj",Agrave:"Velika latinska črka A s krativcem",Aacute:"Velika latinska črka A z ostrivcem",Acirc:"Velika latinska črka A s strešico",Atilde:"Velika latinska črka A z tildo",
Auml:"Velika latinska črka A z diaeresis-om",Aring:"Velika latinska črka A z obročem",AElig:"Velika latinska črka Æ",Ccedil:"Velika latinska črka C s cedillo",Egrave:"Velika latinska črka E s krativcem",Eacute:"Velika latinska črka E z ostrivcem",Ecirc:"Velika latinska črka E s strešico",Euml:"Velika latinska črka E z diaeresis-om",Igrave:"Velika latinska črka I s krativcem",Iacute:"Velika latinska črka I z ostrivcem",Icirc:"Velika latinska črka I s strešico",Iuml:"Velika latinska črka I z diaeresis-om",
ETH:"Velika latinska črka Eth",Ntilde:"Velika latinska črka N s tildo",Ograve:"Velika latinska črka O s krativcem",Oacute:"Velika latinska črka O z ostrivcem",Ocirc:"Velika latinska črka O s strešico",Otilde:"Velika latinska črka O s tildo",Ouml:"Velika latinska črka O z diaeresis-om",times:"Znak za množenje",Oslash:"Velika prečrtana latinska črka O",Ugrave:"Velika latinska črka U s krativcem",Uacute:"Velika latinska črka U z ostrivcem",Ucirc:"Velika latinska črka U s strešico",Uuml:"Velika latinska črka U z diaeresis-om",
Yacute:"Velika latinska črka Y z ostrivcem",THORN:"Velika latinska črka Thorn",szlig:"Mala ostra latinska črka s",agrave:"Mala latinska črka a s krativcem",aacute:"Mala latinska črka a z ostrivcem",acirc:"Mala latinska črka a s strešico",atilde:"Mala latinska črka a s tildo",auml:"Mala latinska črka a z diaeresis-om",aring:"Mala latinska črka a z obročem",aelig:"Mala latinska črka æ",ccedil:"Mala latinska črka c s cedillo",egrave:"Mala latinska črka e s krativcem",eacute:"Mala latinska črka e z ostrivcem",
ecirc:"Mala latinska črka e s strešico",euml:"Mala latinska črka e z diaeresis-om",igrave:"Mala latinska črka i s krativcem",iacute:"Mala latinska črka i z ostrivcem",icirc:"Mala latinska črka i s strešico",iuml:"Mala latinska črka i z diaeresis-om",eth:"Mala latinska črka eth",ntilde:"Mala latinska črka n s tildo",ograve:"Mala latinska črka o s krativcem",oacute:"Mala latinska črka o z ostrivcem",ocirc:"Mala latinska črka o s strešico",otilde:"Mala latinska črka o s tildo",ouml:"Mala latinska črka o z diaeresis-om",
divide:"Znak za deljenje",oslash:"Mala prečrtana latinska črka o",ugrave:"Mala latinska črka u s krativcem",uacute:"Mala latinska črka u z ostrivcem",ucirc:"Mala latinska črka u s strešico",uuml:"Mala latinska črka u z diaeresis-om",yacute:"Mala latinska črka y z ostrivcem",thorn:"Mala latinska črka thorn",yuml:"Mala latinska črka y z diaeresis-om",OElig:"Velika latinska ligatura OE",oelig:"Mala latinska ligatura oe",372:"Velika latinska črka W s strešico",374:"Velika latinska črka Y s strešico",
373:"Mala latinska črka w s strešico",375:"Mala latinska črka y s strešico",sbquo:"Enojni nizki-9 narekovaj",8219:"Enojni visoki-obrnjen-9 narekovaj",bdquo:"Dvojni nizki-9 narekovaj",hellip:"Horizontalni izpust",trade:"Znak blagovne znamke",9658:"Črni desno-usmerjen kazalec",bull:"Krogla",rarr:"Desno-usmerjena puščica",rArr:"Desno-usmerjena dvojna puščica",hArr:"Leva in desna dvojna puščica",diams:"Črna kara",asymp:"Skoraj enako"});admin/ckeditor/plugins/specialchar/dialogs/lang/nb.js0000644000352000025440000000654412450564214023372 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang("specialchar","nb",{euro:"Eurosymbol",lsquo:"Venstre enkelt anførselstegn",rsquo:"Høyre enkelt anførselstegn",ldquo:"Venstre dobbelt anførselstegn",rdquo:"Høyre anførsesltegn",ndash:"Kort tankestrek",mdash:"Lang tankestrek",iexcl:"Omvendt utropstegn",cent:"Centsymbol",pound:"Pundsymbol",curren:"Valutategn",yen:"Yensymbol",brvbar:"Brutt loddrett strek",sect:"Paragraftegn",uml:"Tøddel",copy:"Copyrighttegn",ordf:"Feminin ordensindikator",laquo:"Venstre anførselstegn",not:"Negasjonstegn",
reg:"Registrert varemerke-tegn",macr:"Makron",deg:"Gradsymbol",sup2:"Hevet totall",sup3:"Hevet tretall",acute:"Akutt aksent",micro:"Mikrosymbol",para:"Avsnittstegn",middot:"Midtstilt prikk",cedil:"Cedille",sup1:"Hevet ettall",ordm:"Maskulin ordensindikator",raquo:"Høyre anførselstegn",frac14:"Fjerdedelsbrøk",frac12:"Halvbrøk",frac34:"Tre fjerdedelers brøk",iquest:"Omvendt spørsmålstegn",Agrave:"Stor A med grav aksent",Aacute:"Stor A med akutt aksent",Acirc:"Stor A med cirkumfleks",Atilde:"Stor A med tilde",
Auml:"Stor A med tøddel",Aring:"Stor Å",AElig:"Stor Æ",Ccedil:"Stor C med cedille",Egrave:"Stor E med grav aksent",Eacute:"Stor E med akutt aksent",Ecirc:"Stor E med cirkumfleks",Euml:"Stor E med tøddel",Igrave:"Stor I med grav aksent",Iacute:"Stor I med akutt aksent",Icirc:"Stor I med cirkumfleks",Iuml:"Stor I med tøddel",ETH:"Stor Edd/stungen D",Ntilde:"Stor N med tilde",Ograve:"Stor O med grav aksent",Oacute:"Stor O med akutt aksent",Ocirc:"Stor O med cirkumfleks",Otilde:"Stor O med tilde",Ouml:"Stor O med tøddel",
times:"Multiplikasjonstegn",Oslash:"Stor Ø",Ugrave:"Stor U med grav aksent",Uacute:"Stor U med akutt aksent",Ucirc:"Stor U med cirkumfleks",Uuml:"Stor U med tøddel",Yacute:"Stor Y med akutt aksent",THORN:"Stor Thorn",szlig:"Liten dobbelt-s/Eszett",agrave:"Liten a med grav aksent",aacute:"Liten a med akutt aksent",acirc:"Liten a med cirkumfleks",atilde:"Liten a med tilde",auml:"Liten a med tøddel",aring:"Liten å",aelig:"Liten æ",ccedil:"Liten c med cedille",egrave:"Liten e med grav aksent",eacute:"Liten e med akutt aksent",
ecirc:"Liten e med cirkumfleks",euml:"Liten e med tøddel",igrave:"Liten i med grav aksent",iacute:"Liten i med akutt aksent",icirc:"Liten i med cirkumfleks",iuml:"Liten i med tøddel",eth:"Liten edd/stungen d",ntilde:"Liten n med tilde",ograve:"Liten o med grav aksent",oacute:"Liten o med akutt aksent",ocirc:"Liten o med cirkumfleks",otilde:"Liten o med tilde",ouml:"Liten o med tøddel",divide:"Divisjonstegn",oslash:"Liten ø",ugrave:"Liten u med grav aksent",uacute:"Liten u med akutt aksent",ucirc:"Liten u med cirkumfleks",
uuml:"Liten u med tøddel",yacute:"Liten y med akutt aksent",thorn:"Liten thorn",yuml:"Liten y med tøddel",OElig:"Stor ligatur av O og E",oelig:"Liten ligatur av o og e",372:"Stor W med cirkumfleks",374:"Stor Y med cirkumfleks",373:"Liten w med cirkumfleks",375:"Liten y med cirkumfleks",sbquo:"Enkelt lavt 9-anførselstegn",8219:"Enkelt høyt reversert 9-anførselstegn",bdquo:"Dobbelt lavt 9-anførselstegn",hellip:"Ellipse",trade:"Varemerkesymbol",9658:"Svart høyrevendt peker",bull:"Tykk interpunkt",rarr:"Høyrevendt pil",
rArr:"Dobbel høyrevendt pil",hArr:"Dobbel venstrevendt pil",diams:"Svart ruter",asymp:"Omtrent likhetstegn"});admin/ckeditor/plugins/table/0000755000352000025440000000000014373776770016714 5ustar  thediannthediannadmin/ckeditor/plugins/table/dialogs/0000755000352000025440000000000014373776770020336 5ustar  thediannthediannadmin/ckeditor/plugins/table/dialogs/table.js0000644000352000025440000002112412450564214021741 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
(function(){function r(a){for(var e=0,l=0,k=0,m,g=a.$.rows.length;k<g;k++){m=a.$.rows[k];for(var d=e=0,c,b=m.cells.length;d<b;d++)c=m.cells[d],e+=c.colSpan;e>l&&(l=e)}return l}function o(a){return function(){var e=this.getValue(),e=!!(CKEDITOR.dialog.validate.integer()(e)&&0<e);e||(alert(a),this.select());return e}}function n(a,e){var l=function(g){return new CKEDITOR.dom.element(g,a.document)},n=a.editable(),m=a.plugins.dialogadvtab;return{title:a.lang.table.title,minWidth:310,minHeight:CKEDITOR.env.ie?
310:280,onLoad:function(){var g=this,a=g.getContentElement("advanced","advStyles");if(a)a.on("change",function(){var a=this.getStyle("width",""),b=g.getContentElement("info","txtWidth");b&&b.setValue(a,!0);a=this.getStyle("height","");(b=g.getContentElement("info","txtHeight"))&&b.setValue(a,!0)})},onShow:function(){var g=a.getSelection(),d=g.getRanges(),c,b=this.getContentElement("info","txtRows"),h=this.getContentElement("info","txtCols"),p=this.getContentElement("info","txtWidth"),f=this.getContentElement("info",
"txtHeight");"tableProperties"==e&&((g=g.getSelectedElement())&&g.is("table")?c=g:0<d.length&&(CKEDITOR.env.webkit&&d[0].shrink(CKEDITOR.NODE_ELEMENT),c=a.elementPath(d[0].getCommonAncestor(!0)).contains("table",1)),this._.selectedElement=c);c?(this.setupContent(c),b&&b.disable(),h&&h.disable()):(b&&b.enable(),h&&h.enable());p&&p.onChange();f&&f.onChange()},onOk:function(){var g=a.getSelection(),d=this._.selectedElement&&g.createBookmarks(),c=this._.selectedElement||l("table"),b={};this.commitContent(b,
c);if(b.info){b=b.info;if(!this._.selectedElement)for(var h=c.append(l("tbody")),e=parseInt(b.txtRows,10)||0,f=parseInt(b.txtCols,10)||0,i=0;i<e;i++)for(var j=h.append(l("tr")),k=0;k<f;k++)j.append(l("td")).appendBogus();e=b.selHeaders;if(!c.$.tHead&&("row"==e||"both"==e)){j=new CKEDITOR.dom.element(c.$.createTHead());h=c.getElementsByTag("tbody").getItem(0);h=h.getElementsByTag("tr").getItem(0);for(i=0;i<h.getChildCount();i++)f=h.getChild(i),f.type==CKEDITOR.NODE_ELEMENT&&!f.data("cke-bookmark")&&
(f.renameNode("th"),f.setAttribute("scope","col"));j.append(h.remove())}if(null!==c.$.tHead&&!("row"==e||"both"==e)){j=new CKEDITOR.dom.element(c.$.tHead);h=c.getElementsByTag("tbody").getItem(0);for(k=h.getFirst();0<j.getChildCount();){h=j.getFirst();for(i=0;i<h.getChildCount();i++)f=h.getChild(i),f.type==CKEDITOR.NODE_ELEMENT&&(f.renameNode("td"),f.removeAttribute("scope"));h.insertBefore(k)}j.remove()}if(!this.hasColumnHeaders&&("col"==e||"both"==e))for(j=0;j<c.$.rows.length;j++)f=new CKEDITOR.dom.element(c.$.rows[j].cells[0]),
f.renameNode("th"),f.setAttribute("scope","row");if(this.hasColumnHeaders&&!("col"==e||"both"==e))for(i=0;i<c.$.rows.length;i++)j=new CKEDITOR.dom.element(c.$.rows[i]),"tbody"==j.getParent().getName()&&(f=new CKEDITOR.dom.element(j.$.cells[0]),f.renameNode("td"),f.removeAttribute("scope"));b.txtHeight?c.setStyle("height",b.txtHeight):c.removeStyle("height");b.txtWidth?c.setStyle("width",b.txtWidth):c.removeStyle("width");c.getAttribute("style")||c.removeAttribute("style")}if(this._.selectedElement)try{g.selectBookmarks(d)}catch(m){}else a.insertElement(c),
setTimeout(function(){var g=new CKEDITOR.dom.element(c.$.rows[0].cells[0]),b=a.createRange();b.moveToPosition(g,CKEDITOR.POSITION_AFTER_START);b.select()},0)},contents:[{id:"info",label:a.lang.table.title,elements:[{type:"hbox",widths:[null,null],styles:["vertical-align:top"],children:[{type:"vbox",padding:0,children:[{type:"text",id:"txtRows","default":3,label:a.lang.table.rows,required:!0,controlStyle:"width:5em",validate:o(a.lang.table.invalidRows),setup:function(a){this.setValue(a.$.rows.length)},
commit:k},{type:"text",id:"txtCols","default":2,label:a.lang.table.columns,required:!0,controlStyle:"width:5em",validate:o(a.lang.table.invalidCols),setup:function(a){this.setValue(r(a))},commit:k},{type:"html",html:"&nbsp;"},{type:"select",id:"selHeaders",requiredContent:"th","default":"",label:a.lang.table.headers,items:[[a.lang.table.headersNone,""],[a.lang.table.headersRow,"row"],[a.lang.table.headersColumn,"col"],[a.lang.table.headersBoth,"both"]],setup:function(a){var d=this.getDialog();d.hasColumnHeaders=
!0;for(var c=0;c<a.$.rows.length;c++){var b=a.$.rows[c].cells[0];if(b&&"th"!=b.nodeName.toLowerCase()){d.hasColumnHeaders=!1;break}}null!==a.$.tHead?this.setValue(d.hasColumnHeaders?"both":"row"):this.setValue(d.hasColumnHeaders?"col":"")},commit:k},{type:"text",id:"txtBorder",requiredContent:"table[border]","default":a.filter.check("table[border]")?1:0,label:a.lang.table.border,controlStyle:"width:3em",validate:CKEDITOR.dialog.validate.number(a.lang.table.invalidBorder),setup:function(a){this.setValue(a.getAttribute("border")||
"")},commit:function(a,d){this.getValue()?d.setAttribute("border",this.getValue()):d.removeAttribute("border")}},{id:"cmbAlign",type:"select",requiredContent:"table[align]","default":"",label:a.lang.common.align,items:[[a.lang.common.notSet,""],[a.lang.common.alignLeft,"left"],[a.lang.common.alignCenter,"center"],[a.lang.common.alignRight,"right"]],setup:function(a){this.setValue(a.getAttribute("align")||"")},commit:function(a,d){this.getValue()?d.setAttribute("align",this.getValue()):d.removeAttribute("align")}}]},
{type:"vbox",padding:0,children:[{type:"hbox",widths:["5em"],children:[{type:"text",id:"txtWidth",requiredContent:"table{width}",controlStyle:"width:5em",label:a.lang.common.width,title:a.lang.common.cssLengthTooltip,"default":a.filter.check("table{width}")?500>n.getSize("width")?"100%":500:0,getValue:q,validate:CKEDITOR.dialog.validate.cssLength(a.lang.common.invalidCssLength.replace("%1",a.lang.common.width)),onChange:function(){var a=this.getDialog().getContentElement("advanced","advStyles");a&&
a.updateStyle("width",this.getValue())},setup:function(a){this.setValue(a.getStyle("width"))},commit:k}]},{type:"hbox",widths:["5em"],children:[{type:"text",id:"txtHeight",requiredContent:"table{height}",controlStyle:"width:5em",label:a.lang.common.height,title:a.lang.common.cssLengthTooltip,"default":"",getValue:q,validate:CKEDITOR.dialog.validate.cssLength(a.lang.common.invalidCssLength.replace("%1",a.lang.common.height)),onChange:function(){var a=this.getDialog().getContentElement("advanced","advStyles");
a&&a.updateStyle("height",this.getValue())},setup:function(a){(a=a.getStyle("height"))&&this.setValue(a)},commit:k}]},{type:"html",html:"&nbsp;"},{type:"text",id:"txtCellSpace",requiredContent:"table[cellspacing]",controlStyle:"width:3em",label:a.lang.table.cellSpace,"default":a.filter.check("table[cellspacing]")?1:0,validate:CKEDITOR.dialog.validate.number(a.lang.table.invalidCellSpacing),setup:function(a){this.setValue(a.getAttribute("cellSpacing")||"")},commit:function(a,d){this.getValue()?d.setAttribute("cellSpacing",
this.getValue()):d.removeAttribute("cellSpacing")}},{type:"text",id:"txtCellPad",requiredContent:"table[cellpadding]",controlStyle:"width:3em",label:a.lang.table.cellPad,"default":a.filter.check("table[cellpadding]")?1:0,validate:CKEDITOR.dialog.validate.number(a.lang.table.invalidCellPadding),setup:function(a){this.setValue(a.getAttribute("cellPadding")||"")},commit:function(a,d){this.getValue()?d.setAttribute("cellPadding",this.getValue()):d.removeAttribute("cellPadding")}}]}]},{type:"html",align:"right",
html:""},{type:"vbox",padding:0,children:[{type:"text",id:"txtCaption",requiredContent:"caption",label:a.lang.table.caption,setup:function(a){this.enable();a=a.getElementsByTag("caption");if(0<a.count()){var a=a.getItem(0),d=a.getFirst(CKEDITOR.dom.walker.nodeType(CKEDITOR.NODE_ELEMENT));d&&!d.equals(a.getBogus())?(this.disable(),this.setValue(a.getText())):(a=CKEDITOR.tools.trim(a.getText()),this.setValue(a))}},commit:function(e,d){if(this.isEnabled()){var c=this.getValue(),b=d.getElementsByTag("caption");
if(c)0<b.count()?(b=b.getItem(0),b.setHtml("")):(b=new CKEDITOR.dom.element("caption",a.document),d.getChildCount()?b.insertBefore(d.getFirst()):b.appendTo(d)),b.append(new CKEDITOR.dom.text(c,a.document));else if(0<b.count())for(c=b.count()-1;0<=c;c--)b.getItem(c).remove()}}},{type:"text",id:"txtSummary",requiredContent:"table[summary]",label:a.lang.table.summary,setup:function(a){this.setValue(a.getAttribute("summary")||"")},commit:function(a,d){this.getValue()?d.setAttribute("summary",this.getValue()):
d.removeAttribute("summary")}}]}]},m&&m.createAdvancedTab(a,null,"table")]}}var q=CKEDITOR.tools.cssLength,k=function(a){var e=this.id;a.info||(a.info={});a.info[e]=this.getValue()};CKEDITOR.dialog.add("table",function(a){return n(a,"table")});CKEDITOR.dialog.add("tableProperties",function(a){return n(a,"tableProperties")})})();admin/ckeditor/plugins/scayt/0000755000352000025440000000000014373776770016750 5ustar  thediannthediannadmin/ckeditor/plugins/scayt/LICENSE.md0000644000352000025440000000270412450564214020335 0ustar  thediannthediannSoftware License Agreement
==========================

**CKEditor SCAYT Plugin**
Copyright &copy; 2012, [CKSource](http://cksource.com) - Frederico Knabben. All rights reserved.

Licensed under the terms of any of the following licenses at your choice:

*   GNU General Public License Version 2 or later (the "GPL"):
    http://www.gnu.org/licenses/gpl.html

*   GNU Lesser General Public License Version 2.1 or later (the "LGPL"):
    http://www.gnu.org/licenses/lgpl.html

*   Mozilla Public License Version 1.1 or later (the "MPL"):
    http://www.mozilla.org/MPL/MPL-1.1.html

You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing this software, just include a text file titled "legal.txt" in your version of this software, indicating your license choice.

Sources of Intellectual Property Included in this plugin
--------------------------------------------------------

Where not otherwise indicated, all plugin content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, the plugin will incorporate work done by developers outside of CKSource with their express permission.

Trademarks
----------

CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders.
admin/ckeditor/plugins/scayt/README.md0000644000352000025440000000172312450564214020210 0ustar  thediannthediannCKEditor SCAYT Plugin
=====================

This plugin brings Spell Check As You Type (SCAYT) into up to CKEditor 4+.

SCAYT is a "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution.

Installation
------------

1. Clone/copy this repository contents in a new "plugins/scayt" folder in your CKEditor installation.
2. Enable the "scayt" plugin in the CKEditor configuration file (config.js):

        config.extraPlugins = 'scayt';

That's all. SCAYT will appear on the editor toolbar and will be ready to use.

License
-------

Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html).

See LICENSE.md for more information.

Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/).
admin/ckeditor/plugins/scayt/dialogs/0000755000352000025440000000000014373776770020372 5ustar  thediannthediannadmin/ckeditor/plugins/scayt/dialogs/options.js0000644000352000025440000002100712450564214022401 0ustar  thediannthediannCKEDITOR.dialog.add("scaytDialog",function(f){var g=f.scayt,k='<p><img src="'+g.getLogo()+'" /></p><p>'+g.getLocal("version")+g.getVersion()+"</p><p>"+g.getLocal("text_copyrights")+"</p>",l=CKEDITOR.document,i={isChanged:function(){return null===this.newLang||this.currentLang===this.newLang?!1:!0},currentLang:g.getLang(),newLang:null,reset:function(){this.currentLang=g.getLang();this.newLang=null},id:"lang"},k=[{id:"options",label:g.getLocal("tab_options"),onShow:function(){},elements:[{type:"vbox",
id:"scaytOptions",children:function(){var a=g.getApplicationConfig(),e=[],c={"ignore-all-caps-words":"label_allCaps","ignore-domain-names":"label_ignoreDomainNames","ignore-words-with-mixed-cases":"label_mixedCase","ignore-words-with-numbers":"label_mixedWithDigits"},d;for(d in a){var b={type:"checkbox"};b.id=d;b.label=g.getLocal(c[d]);e.push(b)}return e}(),onShow:function(){this.getChild();for(var a=f.scayt,e=0;e<this.getChild().length;e++)this.getChild()[e].setValue(a.getApplicationConfig()[this.getChild()[e].id])}}]},
{id:"langs",label:g.getLocal("tab_languages"),elements:[{id:"leftLangColumn",type:"vbox",align:"left",widths:["100"],children:[{type:"html",id:"langBox",style:"overflow: hidden; white-space: normal;",html:'<div><div style="float:left;width:45%;margin-left:5px;" id="left-col-'+f.name+'"></div><div style="float:left;width:45%;margin-left:15px;" id="right-col-'+f.name+'"></div></div>',onShow:function(){var a=f.scayt.getLang();l.getById("scaytLang_"+a).$.checked=!0}}]}]},{id:"dictionaries",label:g.getLocal("tab_dictionaries"),
elements:[{type:"vbox",id:"rightCol_col__left",children:[{type:"html",id:"dictionaryNote",html:""},{type:"text",id:"dictionaryName",label:g.getLocal("label_fieldNameDic")||"Dictionary name",onShow:function(a){var e=a.sender,c=f.scayt;setTimeout(function(){e.getContentElement("dictionaries","dictionaryNote").getElement().setText("");null!=c.getUserDictionaryName()&&""!=c.getUserDictionaryName()&&e.getContentElement("dictionaries","dictionaryName").setValue(c.getUserDictionaryName())},0)}},{type:"hbox",
id:"notExistDic",align:"left",style:"width:auto;",widths:["50%","50%"],children:[{type:"button",id:"createDic",label:g.getLocal("btn_createDic"),title:g.getLocal("btn_createDic"),onClick:function(){var a=this.getDialog(),e=j,c=f.scayt,d=a.getContentElement("dictionaries","dictionaryName").getValue();c.createUserDictionary(d,function(b){b.error||e.toggleDictionaryButtons.call(a,!0);b.dialog=a;b.command="create";b.name=d;f.fire("scaytUserDictionaryAction",b)},function(b){b.dialog=a;b.command="create";
b.name=d;f.fire("scaytUserDictionaryActionError",b)})}},{type:"button",id:"restoreDic",label:g.getLocal("btn_restoreDic"),title:g.getLocal("btn_restoreDic"),onClick:function(){var a=this.getDialog(),e=f.scayt,c=j,d=a.getContentElement("dictionaries","dictionaryName").getValue();e.restoreUserDictionary(d,function(b){b.dialog=a;b.error||c.toggleDictionaryButtons.call(a,!0);b.command="restore";b.name=d;f.fire("scaytUserDictionaryAction",b)},function(b){b.dialog=a;b.command="restore";b.name=d;f.fire("scaytUserDictionaryActionError",
b)})}}]},{type:"hbox",id:"existDic",align:"left",style:"width:auto;",widths:["50%","50%"],children:[{type:"button",id:"removeDic",label:g.getLocal("btn_deleteDic"),title:g.getLocal("btn_deleteDic"),onClick:function(){var a=this.getDialog(),e=f.scayt,c=j,d=a.getContentElement("dictionaries","dictionaryName"),b=d.getValue();e.removeUserDictionary(b,function(e){d.setValue("");e.error||c.toggleDictionaryButtons.call(a,!1);e.dialog=a;e.command="remove";e.name=b;f.fire("scaytUserDictionaryAction",e)},function(c){c.dialog=
a;c.command="remove";c.name=b;f.fire("scaytUserDictionaryActionError",c)})}},{type:"button",id:"renameDic",label:g.getLocal("btn_renameDic"),title:g.getLocal("btn_renameDic"),onClick:function(){var a=this.getDialog(),e=f.scayt,c=a.getContentElement("dictionaries","dictionaryName").getValue();e.renameUserDictionary(c,function(d){d.dialog=a;d.command="rename";d.name=c;f.fire("scaytUserDictionaryAction",d)},function(d){d.dialog=a;d.command="rename";d.name=c;f.fire("scaytUserDictionaryActionError",d)})}}]},
{type:"html",id:"dicInfo",html:'<div id="dic_info_editor1" style="margin:5px auto; width:95%;white-space:normal;">'+g.getLocal("text_descriptionDic")+"</div>"}]}]},{id:"about",label:g.getLocal("tab_about"),elements:[{type:"html",id:"about",style:"margin: 5px 5px;",html:'<div><div id="scayt_about_">'+k+"</div></div>"}]}];f.on("scaytUserDictionaryAction",function(a){var e=SCAYT.prototype.UILib,c=a.data.dialog,d=c.getContentElement("dictionaries","dictionaryNote").getElement(),b=a.editor.scayt,f;void 0===
a.data.error?(f=b.getLocal("message_success_"+a.data.command+"Dic"),f=f.replace("%s",a.data.name),d.setText(f),e.css(d.$,{color:"blue"})):(""===a.data.name?d.setText(b.getLocal("message_info_emptyDic")):(f=b.getLocal("message_error_"+a.data.command+"Dic"),f=f.replace("%s",a.data.name),d.setText(f)),e.css(d.$,{color:"red"}),null!=b.getUserDictionaryName()&&""!=b.getUserDictionaryName()?c.getContentElement("dictionaries","dictionaryName").setValue(b.getUserDictionaryName()):c.getContentElement("dictionaries",
"dictionaryName").setValue(""))});f.on("scaytUserDictionaryActionError",function(a){var e=SCAYT.prototype.UILib,c=a.data.dialog,d=c.getContentElement("dictionaries","dictionaryNote").getElement(),b=a.editor.scayt,f;""===a.data.name?d.setText(b.getLocal("message_info_emptyDic")):(f=b.getLocal("message_error_"+a.data.command+"Dic"),f=f.replace("%s",a.data.name),d.setText(f));e.css(d.$,{color:"red"});null!=b.getUserDictionaryName()&&""!=b.getUserDictionaryName()?c.getContentElement("dictionaries","dictionaryName").setValue(b.getUserDictionaryName()):
c.getContentElement("dictionaries","dictionaryName").setValue("")});var j={title:g.getLocal("text_title"),resizable:CKEDITOR.DIALOG_RESIZE_BOTH,minWidth:340,minHeight:260,onLoad:function(){if(0!=f.config.scayt_uiTabs[1]){var a=j,e=a.getLangBoxes.call(this);e.getParent().setStyle("white-space","normal");a.renderLangList(e);this.definition.minWidth=this.getSize().width;this.resize(this.definition.minWidth,this.definition.minHeight)}},onCancel:function(){i.reset()},onHide:function(){f.unlockSelection()},
onShow:function(){f.fire("scaytDialogShown",this);if(0!=f.config.scayt_uiTabs[2]){var a=f.scayt,e=this.getContentElement("dictionaries","dictionaryName"),c=this.getContentElement("dictionaries","existDic").getElement().getParent(),d=this.getContentElement("dictionaries","notExistDic").getElement().getParent();c.hide();d.hide();null!=a.getUserDictionaryName()&&""!=a.getUserDictionaryName()?(this.getContentElement("dictionaries","dictionaryName").setValue(a.getUserDictionaryName()),c.show()):(e.setValue(""),
d.show())}},onOk:function(){var a=j,e=f.scayt;this.getContentElement("options","scaytOptions");a=a.getChangedOption.call(this);e.commitOption({changedOptions:a})},toggleDictionaryButtons:function(a){var e=this.getContentElement("dictionaries","existDic").getElement().getParent(),c=this.getContentElement("dictionaries","notExistDic").getElement().getParent();a?(e.show(),c.hide()):(e.hide(),c.show())},getChangedOption:function(){var a={};if(1==f.config.scayt_uiTabs[0])for(var e=this.getContentElement("options",
"scaytOptions").getChild(),c=0;c<e.length;c++)e[c].isChanged()&&(a[e[c].id]=e[c].getValue());i.isChanged()&&(a[i.id]=f.config.scayt_sLang=i.currentLang=i.newLang);return a},buildRadioInputs:function(a,e){var c=new CKEDITOR.dom.element("div");CKEDITOR.document.createElement("div");var d="scaytLang_"+e,b=CKEDITOR.dom.element.createFromHtml('<input id="'+d+'" type="radio"  value="'+e+'" name="scayt_lang" />'),g=new CKEDITOR.dom.element("label"),h=f.scayt;c.setStyles({"white-space":"normal",position:"relative",
"padding-bottom":"2px"});b.on("click",function(a){i.newLang=a.sender.getValue()});g.appendText(a);g.setAttribute("for",d);c.append(b);c.append(g);e===h.getLang()&&(b.setAttribute("checked",!0),b.setAttribute("defaultChecked","defaultChecked"));return c},renderLangList:function(a){var e=a.find("#left-col-"+f.name).getItem(0),a=a.find("#right-col-"+f.name).getItem(0),c=g.getLangList(),d={},b=[],i=0,h;for(h in c.ltr)d[h]=c.ltr[h];for(h in c.rtl)d[h]=c.rtl[h];for(h in d)b.push([h,d[h]]);b.sort(function(a,
c){var b=0;a[1]>c[1]?b=1:a[1]<c[1]&&(b=-1);return b});d={};for(c=0;c<b.length;c++)d[b[c][0]]=b[c][1];b=Math.round(b.length/2);for(h in d)i++,this.buildRadioInputs(d[h],h).appendTo(i<=b?e:a)},getLangBoxes:function(){return this.getContentElement("langs","langBox").getElement()},contents:function(a,e){var c=[],d=e.config.scayt_uiTabs;if(d){for(var b in d)1==d[b]&&c.push(a[b]);c.push(a[a.length-1])}else return a;return c}(k,f)};return j});admin/ckeditor/plugins/scayt/dialogs/toolbar.css0000644000352000025440000000242612450564214022530 0ustar  thediannthedianna
{
	text-decoration:none;
	padding: 2px 4px 4px 6px;
	display : block;
	border-width: 1px;
	border-style: solid;
	margin : 0px;
}

a.cke_scayt_toogle:hover,
a.cke_scayt_toogle:focus,
a.cke_scayt_toogle:active
{
	border-color: #316ac5;
	background-color: #dff1ff;
	color : #000;
	cursor: pointer;
	margin : 0px;
}
a.cke_scayt_toogle {
	color : #316ac5;
	border-color: #fff;
}
.scayt_enabled a.cke_scayt_item {
	color : #316ac5;
	border-color: #fff;
	margin : 0px;
}
.scayt_disabled a.cke_scayt_item {
	color : gray;
	border-color : #fff;
}
.scayt_enabled a.cke_scayt_item:hover,
.scayt_enabled a.cke_scayt_item:focus,
.scayt_enabled a.cke_scayt_item:active
{
	border-color: #316ac5;
	background-color: #dff1ff;
	color : #000;
	cursor: pointer;
}
.scayt_disabled a.cke_scayt_item:hover,
.scayt_disabled a.cke_scayt_item:focus,
.scayt_disabled a.cke_scayt_item:active
{
	border-color: gray;
	background-color: #dff1ff;
	color : gray;
	cursor: no-drop;
}
.cke_scayt_set_on, .cke_scayt_set_off
{
	display: none;
}
.scayt_enabled .cke_scayt_set_on
{
	display: none;
}
.scayt_disabled .cke_scayt_set_on
{
	display: inline;
}
.scayt_disabled .cke_scayt_set_off
{
	display: none;
}
.scayt_enabled  .cke_scayt_set_off
{
	display: inline;
}
admin/ckeditor/plugins/pastefromword/0000755000352000025440000000000014373776770020521 5ustar  thediannthediannadmin/ckeditor/plugins/pastefromword/filter/0000755000352000025440000000000014373776770022006 5ustar  thediannthediannadmin/ckeditor/plugins/pastefromword/filter/default.js0000644000352000025440000003320412450564214023750 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
(function(){function y(a){for(var a=a.toUpperCase(),c=z.length,b=0,f=0;f<c;++f)for(var d=z[f],e=d[1].length;a.substr(0,e)==d[1];a=a.substr(e))b+=d[0];return b}function A(a){for(var a=a.toUpperCase(),c=B.length,b=1,f=1;0<a.length;f*=c)b+=B.indexOf(a.charAt(a.length-1))*f,a=a.substr(0,a.length-1);return b}var C=CKEDITOR.htmlParser.fragment.prototype,o=CKEDITOR.htmlParser.element.prototype;C.onlyChild=o.onlyChild=function(){var a=this.children;return 1==a.length&&a[0]||null};o.removeAnyChildWithName=
function(a){for(var c=this.children,b=[],f,d=0;d<c.length;d++)f=c[d],f.name&&(f.name==a&&(b.push(f),c.splice(d--,1)),b=b.concat(f.removeAnyChildWithName(a)));return b};o.getAncestor=function(a){for(var c=this.parent;c&&(!c.name||!c.name.match(a));)c=c.parent;return c};C.firstChild=o.firstChild=function(a){for(var c,b=0;b<this.children.length;b++)if(c=this.children[b],a(c)||c.name&&(c=c.firstChild(a)))return c;return null};o.addStyle=function(a,c,b){var f="";if("string"==typeof c)f+=a+":"+c+";";else{if("object"==
typeof a)for(var d in a)a.hasOwnProperty(d)&&(f+=d+":"+a[d]+";");else f+=a;b=c}this.attributes||(this.attributes={});a=this.attributes.style||"";a=(b?[f,a]:[a,f]).join(";");this.attributes.style=a.replace(/^;+|;(?=;)/g,"")};o.getStyle=function(a){var c=this.attributes.style;if(c)return c=CKEDITOR.tools.parseCssText(c,1),c[a]};CKEDITOR.dtd.parentOf=function(a){var c={},b;for(b in this)-1==b.indexOf("$")&&this[b][a]&&(c[b]=1);return c};var H=/^([.\d]*)+(em|ex|px|gd|rem|vw|vh|vm|ch|mm|cm|in|pt|pc|deg|rad|ms|s|hz|khz){1}?/i,
D=/^(?:\b0[^\s]*\s*){1,4}$/,x={ol:{decimal:/\d+/,"lower-roman":/^m{0,4}(cm|cd|d?c{0,3})(xc|xl|l?x{0,3})(ix|iv|v?i{0,3})$/,"upper-roman":/^M{0,4}(CM|CD|D?C{0,3})(XC|XL|L?X{0,3})(IX|IV|V?I{0,3})$/,"lower-alpha":/^[a-z]+$/,"upper-alpha":/^[A-Z]+$/},ul:{disc:/[l\u00B7\u2002]/,circle:/[\u006F\u00D8]/,square:/[\u006E\u25C6]/}},z=[[1E3,"M"],[900,"CM"],[500,"D"],[400,"CD"],[100,"C"],[90,"XC"],[50,"L"],[40,"XL"],[10,"X"],[9,"IX"],[5,"V"],[4,"IV"],[1,"I"]],B="ABCDEFGHIJKLMNOPQRSTUVWXYZ",s=0,t=null,w,E=CKEDITOR.plugins.pastefromword=
{utils:{createListBulletMarker:function(a,c){var b=new CKEDITOR.htmlParser.element("cke:listbullet");b.attributes={"cke:listsymbol":a[0]};b.add(new CKEDITOR.htmlParser.text(c));return b},isListBulletIndicator:function(a){if(/mso-list\s*:\s*Ignore/i.test(a.attributes&&a.attributes.style))return!0},isContainingOnlySpaces:function(a){var c;return(c=a.onlyChild())&&/^(:?\s|&nbsp;)+$/.test(c.value)},resolveList:function(a){var c=a.attributes,b;if((b=a.removeAnyChildWithName("cke:listbullet"))&&b.length&&
(b=b[0]))return a.name="cke:li",c.style&&(c.style=E.filters.stylesFilter([["text-indent"],["line-height"],[/^margin(:?-left)?$/,null,function(a){a=a.split(" ");a=CKEDITOR.tools.convertToPx(a[3]||a[1]||a[0]);!s&&(null!==t&&a>t)&&(s=a-t);t=a;c["cke:indent"]=s&&Math.ceil(a/s)+1||1}],[/^mso-list$/,null,function(a){var a=a.split(" "),b=Number(a[0].match(/\d+/)),a=Number(a[1].match(/\d+/));1==a&&(b!==w&&(c["cke:reset"]=1),w=b);c["cke:indent"]=a}]])(c.style,a)||""),c["cke:indent"]||(t=0,c["cke:indent"]=
1),CKEDITOR.tools.extend(c,b.attributes),!0;w=t=s=null;return!1},getStyleComponents:function(){var a=CKEDITOR.dom.element.createFromHtml('<div style="position:absolute;left:-9999px;top:-9999px;"></div>',CKEDITOR.document);CKEDITOR.document.getBody().append(a);return function(c,b,f){a.setStyle(c,b);for(var c={},b=f.length,d=0;d<b;d++)c[f[d]]=a.getStyle(f[d]);return c}}(),listDtdParents:CKEDITOR.dtd.parentOf("ol")},filters:{flattenList:function(a,c){var c="number"==typeof c?c:1,b=a.attributes,f;switch(b.type){case "a":f=
"lower-alpha";break;case "1":f="decimal"}for(var d=a.children,e,h=0;h<d.length;h++)if(e=d[h],e.name in CKEDITOR.dtd.$listItem){var j=e.attributes,g=e.children,m=g[g.length-1];m.name in CKEDITOR.dtd.$list&&(a.add(m,h+1),--g.length||d.splice(h--,1));e.name="cke:li";b.start&&!h&&(j.value=b.start);E.filters.stylesFilter([["tab-stops",null,function(a){(a=a.split(" ")[1].match(H))&&(t=CKEDITOR.tools.convertToPx(a[0]))}],1==c?["mso-list",null,function(a){a=a.split(" ");a=Number(a[0].match(/\d+/));a!==w&&
(j["cke:reset"]=1);w=a}]:null])(j.style);j["cke:indent"]=c;j["cke:listtype"]=a.name;j["cke:list-style-type"]=f}else if(e.name in CKEDITOR.dtd.$list){arguments.callee.apply(this,[e,c+1]);d=d.slice(0,h).concat(e.children).concat(d.slice(h+1));a.children=[];e=0;for(g=d.length;e<g;e++)a.add(d[e]);d=a.children}delete a.name;b["cke:list"]=1},assembleList:function(a){for(var c=a.children,b,f,d,e,h,j,a=[],g,m,i,l,k,p,n=0;n<c.length;n++)if(b=c[n],"cke:li"==b.name)if(b.name="li",f=b.attributes,i=(i=f["cke:listsymbol"])&&
i.match(/^(?:[(]?)([^\s]+?)([.)]?)$/),l=k=p=null,f["cke:ignored"])c.splice(n--,1);else{f["cke:reset"]&&(j=e=h=null);d=Number(f["cke:indent"]);d!=e&&(m=g=null);if(i){if(m&&x[m][g].test(i[1]))l=m,k=g;else for(var q in x)for(var u in x[q])if(x[q][u].test(i[1]))if("ol"==q&&/alpha|roman/.test(u)){if(g=/roman/.test(u)?y(i[1]):A(i[1]),!p||g<p)p=g,l=q,k=u}else{l=q;k=u;break}!l&&(l=i[2]?"ol":"ul")}else l=f["cke:listtype"]||"ol",k=f["cke:list-style-type"];m=l;g=k||("ol"==l?"decimal":"disc");k&&k!=("ol"==l?
"decimal":"disc")&&b.addStyle("list-style-type",k);if("ol"==l&&i){switch(k){case "decimal":p=Number(i[1]);break;case "lower-roman":case "upper-roman":p=y(i[1]);break;case "lower-alpha":case "upper-alpha":p=A(i[1])}b.attributes.value=p}if(j){if(d>e)a.push(j=new CKEDITOR.htmlParser.element(l)),j.add(b),h.add(j);else{if(d<e){e-=d;for(var r;e--&&(r=j.parent);)j=r.parent}j.add(b)}c.splice(n--,1)}else a.push(j=new CKEDITOR.htmlParser.element(l)),j.add(b),c[n]=j;h=b;e=d}else j&&(j=e=h=null);for(n=0;n<a.length;n++)if(j=
a[n],q=j.children,g=g=void 0,u=j.children.length,r=g=void 0,c=/list-style-type:(.*?)(?:;|$)/,e=CKEDITOR.plugins.pastefromword.filters.stylesFilter,g=j.attributes,!c.exec(g.style)){for(h=0;h<u;h++)if(g=q[h],g.attributes.value&&Number(g.attributes.value)==h+1&&delete g.attributes.value,g=c.exec(g.attributes.style))if(g[1]==r||!r)r=g[1];else{r=null;break}if(r){for(h=0;h<u;h++)g=q[h].attributes,g.style&&(g.style=e([["list-style-type"]])(g.style)||"");j.addStyle("list-style-type",r)}}w=t=s=null},falsyFilter:function(){return!1},
stylesFilter:function(a,c){return function(b,f){var d=[];(b||"").replace(/&quot;/g,'"').replace(/\s*([^ :;]+)\s*:\s*([^;]+)\s*(?=;|$)/g,function(b,e,g){e=e.toLowerCase();"font-family"==e&&(g=g.replace(/["']/g,""));for(var m,i,l,k=0;k<a.length;k++)if(a[k]&&(b=a[k][0],m=a[k][1],i=a[k][2],l=a[k][3],e.match(b)&&(!m||g.match(m)))){e=l||e;c&&(i=i||g);"function"==typeof i&&(i=i(g,f,e));i&&i.push&&(e=i[0],i=i[1]);"string"==typeof i&&d.push([e,i]);return}!c&&d.push([e,g])});for(var e=0;e<d.length;e++)d[e]=
d[e].join(":");return d.length?d.join(";")+";":!1}},elementMigrateFilter:function(a,c){return a?function(b){var f=c?(new CKEDITOR.style(a,c))._.definition:a;b.name=f.element;CKEDITOR.tools.extend(b.attributes,CKEDITOR.tools.clone(f.attributes));b.addStyle(CKEDITOR.style.getStyleText(f))}:function(){}},styleMigrateFilter:function(a,c){var b=this.elementMigrateFilter;return a?function(f,d){var e=new CKEDITOR.htmlParser.element(null),h={};h[c]=f;b(a,h)(e);e.children=d.children;d.children=[e];e.filter=
function(){};e.parent=d}:function(){}},bogusAttrFilter:function(a,c){if(-1==c.name.indexOf("cke:"))return!1},applyStyleFilter:null},getRules:function(a,c){var b=CKEDITOR.dtd,f=CKEDITOR.tools.extend({},b.$block,b.$listItem,b.$tableContent),d=a.config,e=this.filters,h=e.falsyFilter,j=e.stylesFilter,g=e.elementMigrateFilter,m=CKEDITOR.tools.bind(this.filters.styleMigrateFilter,this.filters),i=this.utils.createListBulletMarker,l=e.flattenList,k=e.assembleList,p=this.utils.isListBulletIndicator,n=this.utils.isContainingOnlySpaces,
q=this.utils.resolveList,u=function(a){a=CKEDITOR.tools.convertToPx(a);return isNaN(a)?a:a+"px"},r=this.utils.getStyleComponents,t=this.utils.listDtdParents,o=!1!==d.pasteFromWordRemoveFontStyles,s=!1!==d.pasteFromWordRemoveStyles;return{elementNames:[[/meta|link|script/,""]],root:function(a){a.filterChildren(c);k(a)},elements:{"^":function(a){var c;CKEDITOR.env.gecko&&(c=e.applyStyleFilter)&&c(a)},$:function(a){var v=a.name||"",e=a.attributes;v in f&&e.style&&(e.style=j([[/^(:?width|height)$/,null,
u]])(e.style)||"");if(v.match(/h\d/)){a.filterChildren(c);if(q(a))return;g(d["format_"+v])(a)}else if(v in b.$inline)a.filterChildren(c),n(a)&&delete a.name;else if(-1!=v.indexOf(":")&&-1==v.indexOf("cke")){a.filterChildren(c);if("v:imagedata"==v){if(v=a.attributes["o:href"])a.attributes.src=v;a.name="img";return}delete a.name}v in t&&(a.filterChildren(c),k(a))},style:function(a){if(CKEDITOR.env.gecko){var a=(a=a.onlyChild().value.match(/\/\* Style Definitions \*\/([\s\S]*?)\/\*/))&&a[1],c={};a&&
(a.replace(/[\n\r]/g,"").replace(/(.+?)\{(.+?)\}/g,function(a,b,F){for(var b=b.split(","),a=b.length,d=0;d<a;d++)CKEDITOR.tools.trim(b[d]).replace(/^(\w+)(\.[\w-]+)?$/g,function(a,b,d){b=b||"*";d=d.substring(1,d.length);d.match(/MsoNormal/)||(c[b]||(c[b]={}),d?c[b][d]=F:c[b]=F)})}),e.applyStyleFilter=function(a){var b=c["*"]?"*":a.name,d=a.attributes&&a.attributes["class"];b in c&&(b=c[b],"object"==typeof b&&(b=b[d]),b&&a.addStyle(b,!0))})}return!1},p:function(a){if(/MsoListParagraph/i.exec(a.attributes["class"])||
a.getStyle("mso-list")){var b=a.firstChild(function(a){return a.type==CKEDITOR.NODE_TEXT&&!n(a.parent)});(b=b&&b.parent)&&b.addStyle("mso-list","Ignore")}a.filterChildren(c);q(a)||(d.enterMode==CKEDITOR.ENTER_BR?(delete a.name,a.add(new CKEDITOR.htmlParser.element("br"))):g(d["format_"+(d.enterMode==CKEDITOR.ENTER_P?"p":"div")])(a))},div:function(a){var c=a.onlyChild();if(c&&"table"==c.name){var b=a.attributes;c.attributes=CKEDITOR.tools.extend(c.attributes,b);b.style&&c.addStyle(b.style);c=new CKEDITOR.htmlParser.element("div");
c.addStyle("clear","both");a.add(c);delete a.name}},td:function(a){a.getAncestor("thead")&&(a.name="th")},ol:l,ul:l,dl:l,font:function(a){if(p(a.parent))delete a.name;else{a.filterChildren(c);var b=a.attributes,d=b.style,e=a.parent;"font"==e.name?(CKEDITOR.tools.extend(e.attributes,a.attributes),d&&e.addStyle(d),delete a.name):(d=(d||"").split(";"),b.color&&("#000000"!=b.color&&d.push("color:"+b.color),delete b.color),b.face&&(d.push("font-family:"+b.face),delete b.face),b.size&&(d.push("font-size:"+
(3<b.size?"large":3>b.size?"small":"medium")),delete b.size),a.name="span",a.addStyle(d.join(";")))}},span:function(a){if(p(a.parent))return!1;a.filterChildren(c);if(n(a))return delete a.name,null;if(p(a)){var b=a.firstChild(function(a){return a.value||"img"==a.name}),e=(b=b&&(b.value||"l."))&&b.match(/^(?:[(]?)([^\s]+?)([.)]?)$/);if(e)return b=i(e,b),(a=a.getAncestor("span"))&&/ mso-hide:\s*all|display:\s*none /.test(a.attributes.style)&&(b.attributes["cke:ignored"]=1),b}if(e=(b=a.attributes)&&b.style)b.style=
j([["line-height"],[/^font-family$/,null,!o?m(d.font_style,"family"):null],[/^font-size$/,null,!o?m(d.fontSize_style,"size"):null],[/^color$/,null,!o?m(d.colorButton_foreStyle,"color"):null],[/^background-color$/,null,!o?m(d.colorButton_backStyle,"color"):null]])(e,a)||"";b.style||delete b.style;CKEDITOR.tools.isEmpty(b)&&delete a.name;return null},b:g(d.coreStyles_bold),i:g(d.coreStyles_italic),u:g(d.coreStyles_underline),s:g(d.coreStyles_strike),sup:g(d.coreStyles_superscript),sub:g(d.coreStyles_subscript),
a:function(a){a=a.attributes;a.href&&a.href.match(/^file:\/\/\/[\S]+#/i)&&(a.href=a.href.replace(/^file:\/\/\/[^#]+/i,""))},"cke:listbullet":function(a){a.getAncestor(/h\d/)&&!d.pasteFromWordNumberedHeadingToList&&delete a.name}},attributeNames:[[/^onmouse(:?out|over)/,""],[/^onload$/,""],[/(?:v|o):\w+/,""],[/^lang/,""]],attributes:{style:j(s?[[/^list-style-type$/,null],[/^margin$|^margin-(?!bottom|top)/,null,function(a,b,c){if(b.name in{p:1,div:1}){b="ltr"==d.contentsLangDirection?"margin-left":
"margin-right";if("margin"==c)a=r(c,a,[b])[b];else if(c!=b)return null;if(a&&!D.test(a))return[b,a]}return null}],[/^clear$/],[/^border.*|margin.*|vertical-align|float$/,null,function(a,b){if("img"==b.name)return a}],[/^width|height$/,null,function(a,b){if(b.name in{table:1,td:1,th:1,img:1})return a}]]:[[/^mso-/],[/-color$/,null,function(a){if("transparent"==a)return!1;if(CKEDITOR.env.gecko)return a.replace(/-moz-use-text-color/g,"transparent")}],[/^margin$/,D],["text-indent","0cm"],["page-break-before"],
["tab-stops"],["display","none"],o?[/font-?/]:null],s),width:function(a,c){if(c.name in b.$tableContent)return!1},border:function(a,c){if(c.name in b.$tableContent)return!1},"class":h,bgcolor:h,valign:s?h:function(a,b){b.addStyle("vertical-align",a);return!1}},comment:!CKEDITOR.env.ie?function(a,b){var c=a.match(/<img.*?>/),d=a.match(/^\[if !supportLists\]([\s\S]*?)\[endif\]$/);return d?(d=(c=d[1]||c&&"l.")&&c.match(/>(?:[(]?)([^\s]+?)([.)]?)</),i(d,c)):CKEDITOR.env.gecko&&c?(c=CKEDITOR.htmlParser.fragment.fromHtml(c[0]).children[0],
(d=(d=(d=b.previous)&&d.value.match(/<v:imagedata[^>]*o:href=['"](.*?)['"]/))&&d[1])&&(c.attributes.src=d),c):!1}:h}}},G=function(){this.dataFilter=new CKEDITOR.htmlParser.filter};G.prototype={toHtml:function(a){var a=CKEDITOR.htmlParser.fragment.fromHtml(a),c=new CKEDITOR.htmlParser.basicWriter;a.writeHtml(c,this.dataFilter);return c.getHtml(!0)}};CKEDITOR.cleanWord=function(a,c){CKEDITOR.env.gecko&&(a=a.replace(/(<\!--\[if[^<]*?\])--\>([\S\s]*?)<\!--(\[endif\]--\>)/gi,"$1$2$3"));CKEDITOR.env.webkit&&
(a=a.replace(/(class="MsoListParagraph[^>]+><\!--\[if !supportLists\]--\>)([^<]+<span[^<]+<\/span>)(<\!--\[endif\]--\>)/gi,"$1<span>$2</span>$3"));var b=new G,f=b.dataFilter;f.addRules(CKEDITOR.plugins.pastefromword.getRules(c,f));c.fire("beforeCleanWord",{filter:f});try{a=b.toHtml(a)}catch(d){alert(c.lang.pastefromword.error)}a=a.replace(/cke:.*?".*?"/g,"");a=a.replace(/style=""/g,"");return a=a.replace(/<span>/g,"")}})();admin/ckeditor/plugins/icons_hidpi.png0000644000352000025440000010437612450564214020614 0ustar  thediannthediann�PNG


IHDR pL<d IDATx��y|ř��sߣ��˒,ɲl�m������6W�@8���&��l�MvI��%���.H�%ǒ
!@����|�-ɺ�c�>���s�\:L6��ϧ?����~SU]�<UO*�3$�s��I���F�6�s�2��?�2L̗� ����^�q�a�046_�����@)@)���"
Y�nw����z�����g<	�t�@|8A@)�<�C�Q��5?��bhu:̟;׾����lپ}����l8�e!H���R
�N�������N���FTTT���?�)�/�J/��Y�E__�wӦM`����|��S��O�TZUUUn6��q�&,]��-�U$鬌җ���N)� ���Q�f͚�;w��v��8�<6Ɣɓ�1Y�	�� ('~�C!tJ��"x}�!���<��0|^/XG%��@)��d!d!!���lYm4�r�`0���^�����]`V�E��e����ÀeY���{W-Z�%�;�NH� ��a��|[�s%�6��P�`�|0�p(�ǃ���>\�����c��zcCS�c��E����l�9�"�l6o=|��oB�F.@�σJ� !���B�y�>_��@(��T�g�����X�E0˲b&Zm̡a�<{v�x��a�J��&��gL���N���q�t�R���[QQ�YSS���x�Ξ=�P��j�(,,DSSt���
>q
�HM�q����w�y��S�˗/�`hhhINN(���<!���ȁ@�O��e(�+P
�����[~��q��%����,ˊ�!ˢ��*@ۈk@�y �N(h4 ��RA�7��h4�<��r�����d_�Č���IN%a_�t�R)�������Y�4�5._!0�)�%��6r��7����l�yI�Xu`0p�8'x�
�����r��@p<�χ����u�\3B�F@,F�5������&�	\.��yp�@ �����/��PA��̚1À��JC���G__�p�m[���%�����'>�K#" ��� %?�
������}|-Y�	8z��t*�a@�ӹ
�wڴi��|Rl�Xꤿ?L�ɈPJ�H}�����r���_��?�H>�������_B�g������������ʈ�:����Re�ћQ<�	���������$D�9	<�`8�_��W{��F C�@�h�Μ�&�,� x�$3x|8�p ��ߏ��~�qӦ�T�e_��1��v
X,�z�}��cpp^�ݽ��UK���=YJ�G�������l6��ߏa���6n�9�	!��4�lK������~��.�������o��ܜ*����`���M��U�}�����yg�7� �Nx��ٳ��ڈ5�bw�}�d2s*����.
���s��+%` �=˲����w!Z��_���h!�q������x����;�ĈFB�t��UUsx�� 9��{zN��6�����,)*2C���P�����;@�V��q>���v�@�v�	�L��X�ڟeY��~|��;!�Zc"�����'�h��y\8�N� �	h,*(���P(�����A��T������cݍ7B�\�ca�0�q�����I�#PWS�F��Ttdv���S� =��L���\^r�k4�|B��9e+ �9$�/]j�k����C"��a�3.��C!|�c��l���	K�P~�>��^��@^��@�`���k�������p���L���8x<�R�cB�w��J��9kǺ�iYN)�Y7�����������Jv�b�E��NW(P���~��y��h��)f�g+�0�wˋ��a�X`��a4fY��AC!��~����.p`Yřt��?�ӧ?6k�X�f�F~C�=B�h4�0���pXx�g?�A��H&v�y
--�.lkc8�e�~dƜ|��a��j�����F�A b��8ao�����o�1C�`��
�Ʉ��*�~�T�TW���gϞEgg's��q@��0p�R���
��h�L*'Y��f̜)|��GbLr��ϗ�+�믿��3�0�87)�k�
7\rZ������a����ܜ�O!��� ��)�8ѽ�2�Ry�R%�Հ]�р�8q#!0���w�g���,��UYq�qJ�eJ	�4800 ���y�Rl���Z?�h�Oȃ&��JYEq�*#ePJ�o���v��
���F#�#e�ܹs��\���g��O!>�lO��3�ݾ�֯7�`0��s0�F#�YV�t	����Ş�����g�0�:k�ҏ7m�4��gL�ڒ�CC4
�,+ttv����8��!�;O��JI�;�D}f�Ye�Xt�Rm���0X�|~?���^�\$�
�O#�zJ�N'h�ZF�CB@z�F�f�&�	:�Z�6z�1
��a���~?XA�g{/�PJs�س$�X�>���/cǎ����n��`��T(b\.���]���T�ā$��b�z�)淿�-�r����@)E8�����[�D��?BnU�
�Y�
�
�9s�N�3R,ǡ��Oػk��r�L��?P��B�!�MBȗ .�z�nʔ�Z١QR^�t\H+@���w��t�+%;��'��=r��Z�k�K���ixN ��pRe%S����=}���K�ݽNH�q��c��:'L���ˋX�C����QZ^> ��H�N@uS-�χ�`�@�
��@ �`(�����`�Z��a�XP����������ɶmoB�Q
��0Y,��t�V�el6 ]����C��2?�ǃ��ّ#��"i<���_}�ٳk4
�f3�z���J�a��Y� W��3�7���'L8�d�gr/`�8po����с��^���/^��jEYY


���b�w��BYi) >��'�LWN*�PJ_���QJ����&�Rόk J��ܑE&B|!)��y�s;�WG�GTQQQQQQQQQQQ��"y��ѝ��y�@��@�'�����h|�hɶ��wC��kִ�88u�4>ڶm;��U��.�ɴiQ[[see%.vw��7��`u6�mDL���uF��PU��X�j�<�ɴ� �Kk6oZw�u�奥�Z,ȝ8�Y�`���������!��f��ګ�n5Z��8��6ۦ�+V4��F��~x�^����O�
P2T�Lmh8_����p8`0�����x���{�a�.Y�l2#N���Ax��]��ڕO�4ZOx����`AAA���^��N��W���1�H+jv�۷o&�G	!�8ZFoXT__������p@��F쿲rxxn�{מ={f��[�]_��n	���#G�4�<��e��J��3�aT�+
��Ǯ�.+��"I���ٳf�i�IH"̄�����Z�F�� ��i��RBȈG�dF*��`ش����l6Gڜ����&���;�
,�
�f*PI�Kk6����v�B�J�����:�>ޱc+�B��
���Ѷ�s�MC�R�t����?ݹsg�;���� 
�eYجV̞9�
�����|����xS-STYy�N�E0�\�@�ӓ'O6Ct61�O�^TVV������wd0�X�_�^�<�Z�[X�XQ�0�X����8��y���SQ��w���,�2�n7A�u���ޅ�a�q�…E���{�@��fC��@!�ȉR*(�pŤI��bI��E�Q��l��O4M�W��%���J��R��R��_�P��]�TS���t[�9�+M�.���&MJ�R���K�d��?Oͦ�S�@m]�*/O)`��uJ�YJ鷕
����v�8]-��8a_?m_VVƻ\.��p�������h�|ި�f�(�4��sΟ;�l�%��Vۥ�
)����b��xNq-����w�&�
��v����PR<��y<�U�e��?D�(�7n}Q����������y1"���a0`��� �;�00�Ͱ�l�{��5Gv�_4d��ؿ|�J����,��$���b�^L!��a2��s�M��j��K3ҝ[��pMcM
��>_�����	7˦�S0&�yW_�_�p!���P>/���֯Y�,yL��mۦe�1��o��DŽ�y0ɣqE���c†�Ћs���|^�dcZS_����4�d6�����|g�2.~��h�mZ�|y��lF0D ��� �&��q����5�V=����B�@:�

���{���1�ng�& �,����������<��t:��<L&^uU�u�Kj��$�פ�d5�zLT�	�zL��c2"1�χ��>x��O�?.{L6�>}����oo?�~?�� �`�~1[c�1A��dČ��dČ��d���c������������?�L&29�s#y�
3�=�/��x�@do�Xx���;\.��r���$�u���;rrxGNo��y��	Ik-_�(q�`��V��˿$=�l��|�u�k7! ���I�O+��ë�!��@��$�\Q& M�&R�"�N��d	��`R[�e�h��
H��� ������v���i�O+ �ٲd�d���y� �H5����Lv����7�/��~��Y�f��R�c��$M�ے�WҜ?�M�\u��@�T�T�:��]A	!@꩝����?�N(_�b�\�H@t���>'bsi�@Z�e �&��[���&@��8�m�9����GAUU�;aZTzc�A�R{����@$6������ȃ�P�_�G��n���'+�����H8����7��դ!�
�j4�~���%��w'I��ܜ���n0D��Q�Y82z�}��K�9
� �:y�<�պ��0
�2�DeMͿ3�U��,�^//]z@�m�3	�
��s�F��S���cxx.\����h���@�ĉ�۱��Ź����ۇ!����d����>�dMUyyoeEE��n���a1�1���pdG���Eoo/w��B�ݾ3��^��v��#T�ȡ!u:]D'�� -|;q��i��p��*:_����p�m{_}���C��s��Y�^��d2�KJJ�


\[[���o�)%}�򟙔����d���C3���`��t�f�TC���
���cU�a���hR����Hy8&L�&jw(*����N���
3S�c��&~���\_������������?�wC=��������Лa�F����)�xq[J�h�w����EE�����!��bێ�B0�o�)�Z�fΘQ[XX�	.��Ӄ]{��C8|���	�V�k�Mk�Vج����h�Z�9o��N��ܹY%)<�6a��>�n��cYѲ&���[o
��N��6����׬�0��B�K ��W�ԃ�gS���oZ�>�d0 �#
E�@ �^�֮u�9AD@Ym�2�^�P0y&5��աP���ի[��PY�ظ���CC]}�"����qmuuu�eAes{���0/�P��m���UU��p8bU�G�����Ѱq>R��Y��qP�O��y\8���{4C�`�|8/��<¡|^/rJK�b�`ߎ/�aPA`���3`Yn�
���p���y��R�p]]]ށ�c��:x�諾`�`�	�Ñv�ttt�RJ��l�Ν�()/�z����
9�ɶľ��~9}L5���[�ϙ�K�ߏ���v3�p���_=vl�
ͯ,�=�o�v��z�}}�x�"3<<̄��H�`(����H��"�ҿ���6o�B���Z�~�z��n�W�X���R�l�ٶߡb�l�����X��_�~=�f�~�ܹ��M�ޒ�'[_�/��Ͳ�p8�����0�2�B~��w�x�D�t��\�lـ�>�����z�F�x����ž}��*+-}�[I�/*=!��~�Q�V�˲�}����>��j�̖�
�a
�p���nJ�n����N��5���N*�x<����η���>����[�v;¡B�8����$=&������AGG��
z��$}U͔)��+V�f��sss�U����9����ŋ���Z��^|���R�,��.Z�746�N�����T�r�0�������'�?|��l�gjC_V^>����R꣔�dj��x������4i��s,��"�4a�T�~���[m�=��O$��,~9�;���׭�ҿC)��$����T��JJ6�ܯxv�����t	����Td��s�^�6?O����1���lҫ����������$���כL�1L�I��PB�~ ���JD�
��q\&�^/���B�z=lv;v����g��a�""<^/�t	�v�D���߈At��GN=:*,�!��F������0*1��D�!đ.����I�Ro���>r�ر����(!��(���$����y����'��v�n��}�����~��
=���J@�œ
B����"<��;�����QRR�����@�J)Μ<���9��Ų%s�" ^=i���J����r�!�J�F}��ȸ	�-_��>�~��<<j�9��C�;8z�DFWE��p���⓭[���k���?�q�t�=�R�ei������/~���/�<�q�LR��t�WT�ȓ�Hy�=�<)P�_���G:ϝS��eH���1�/ͯ�{����F����	".D�$Қ�L��/�{/��>L��`&<^��e�+�8����w�q1y�䄑2�CZ��T�� ljKƒ	���…�vL��Aum-*���(��ɯ0��At:�&��a)�?�E��ިDHA��
@��[�WW��Ȩ�L@��fyd�>�#�S�K����v�t�?w?B�QvBy����i��¨�)^�7DzЛ�@��
z��0�&|�y���a6�fU8��a�cg����z�\`��l�f�ī��������	��@����_��T��/P���@����_��?w��@����L(�RG�OG�MC�d����]�l�H��2c�[�n��V��	N�~�̙u��ո�曧��L�ĠѼx��7O+��GӼy-�N�� �>�f3�_�j%�Dz(��׮^��b���C��%�H+�������PTX�Ys��l#x�����"�#(:�"7�����|�,¡f47�|Ҥ��I�������g�@8B�ePVV��n�V����O]===�]�
��|�R�=7�u��d�)��\o\{�5FV
�Š��
�?�|�M���n�;��8�[�:_o�����zb0��n��b^�A���x���#��߼�buwww0FB�hkW�n֚L/F�����+�h��H,�p8���Alx��\�g-�����w޹pp0[�
�a�X�|�ҵZ��Qh4�\�d�]99`�sX��ð�l*p�N)�#�4dt1�.�6��:���G�A Z�Ogd�����BGǩC�}V`!!$a��l^ϗx�~�ԡҒ��n�V��F�^D�vn���|8���=z��_B�3J�f<�B���6wtt�|�Har� 9tP @ggg�6�lHVxV$��>8x�788��8.�'��nw���_>3����+��I��;��-*.>%�yJ��IJ'�N�R����BȐ�n�ĉ-�d��!%R�Fy5�(�y�cYTPX��͍���(B���0�N'�i���� �&��
�p��oZ��faDL�� IDATY^����BMM����,a���t(.*�;��=4�@{������V,]���<�q�̙����;��~&�?��ܹs��9.�>ںu`���Z$�L��g�,��f�j������ɴ����.�3�����vvv�Z��^�<�b��ٮ����D���	`A�5PL�=MӦ�;l�H�<�4����r����&�lJi+��[[[�N��.�
:��`���p_�}�3]
��t��|���1�l}�g?��:k����],����n�s͚5�����@!��b�(�[���]�

���gM�����'T��zgCK�p�"��>�Qt���ijj�Z���M���S�N��͛�/Y�4&��wΘ9�_r��<� �Ik�.��@8¿<��bdū|� ?�4�2�2MJi������O��i����}>�W�'
I|��?��_!X�z�!䫄�?B����;���@��||�ﺫkxx�`�UW��N�|ժ�L&�����I�R:�bҤO�����bǺ���Fㅙ�f�%ee��}}?UH����x_SS_1iR��Vx�h�tΜ5�/*-v��X)�gMf���S��uu|^A?�����������{�m��o+�ͧ��5[,}


|���|n^_QU�746����=��G���
�2z�R�3���c���SPP��\����<���O�PJ���$i?��v655ms8}|nn���p8q��n)�VE:���ΨN|I�S%�W)ҖR1��RZ�RzW�£2rRJ���~]�w9�+I�֌
WQQQQQQQQ�B����_��T��/����˨��_��T��/P���@���������e1����Xl����`a����=���U��%K��--`�֝
�⓽{����z�N�bR�q���x?����|���9|>3�����*���|.Hy)nΦT��j��nmͧ�`�֭:B�P���_��

������0>޵'���PJ��mm,�;w���Mc�V��'n�������w�}7 ������|>�~��������f����|s�}��p}]��M7ޘ�5P2y��iUU����*lfsd���7tLJB����S�0�a���ٿ�+�����oġ3g�;�/RN,1���Ι?�RqS�ȋ͒�t���Ms�ϧ����.'4��d��{��BND����p9�N�1����DR�R
�ɔ�>S���`�{ܛXg�!�l�?!�(�(2���
��>��𣌶����:!�Kb
��$Y���	i��'m7�N�)������H
���ti��jE ����"�!��d0 ��n��'�U��ף�������7Fbg�U+V�UMM�g���t�F,V+�=���
�x`�^vAg]
3�I�..}�W� 1�]�Ԅ	v;tI�ڱ<�Kn7:�*�r4�d�uBS��Mgҳ��?�&H��tħϺ��ħϾ!fLwM��\��$�����vc���G���	%C������$x���(k���n8��Lq�8����,�S4(��(~��"?��j�٭�����O���)��c��TR�\�Z�&�f(ā�x)��qɟ)�_�9y�:���g��_P<y2_\]=�P���|��ɑ�J���cG�`�ܹC.�} '/����;rևN��5࢔�'{��:�{�jj(������Z�sO$�x��Ji��qU��ك�}���xZ1\`�_��q�JK�w�E�I�S��l�����G$s�^d6�I�_���UQQQQQQ�D����_���/P�������_��T��/P���@���������,���X���h+�B(��,8q3ߘ����ڮ�yR|��)^z?�8����c��_
�}`��L�ZW���fS|�)�;�ǃ]6�=�~}`�ʕ�`�A�0��㳁Rp��Kv�}@%��^6�}D�GD]W�\��z�n�F�x(�0ˢs`KWCD@o/�,��ycM���?8�|��Z,|��(^��'�O# �v%����sU2���n�>]i�>��T��}OH���u�ފ���5�1}*�<.�/�46y�������������c%[��/�a0���  ��WL�̞�UGz�ff�	f�
á��o#��"80�?m�8�f�e˗�8[/V��`E�ڸ�cf�F~-/�85KFG���K:T�����
��5R~�z����|�ԉ������*Ϩx|T�"V���
��,�ZM�81Z��Y{��z�����̖e9.���)#��%���}��c&>�绺�048���Atuu�H�М-r�����w*�]}���9x��eW_����|�b��.�hjk�����R�xW�����J�/'i�8��*��t�w�ȵ��\YYYz`׮� HOVND����A��~�A�2��byi�ҥ�z����q�̙#��'q�/�i�Q�袶�%Z�c���z{n�k���J�)'f$L���N/CZy��������q:�B!p,��������!$fHzDQ_ZU�t�…7jL��nT8�"���ũuu�X6f?�F��̄��C�Ԑ�q q��d��<k�tsQ~>�[�"������0m��浶:Y�����Ç�lƌ��/xȬ�+O�ʳ�n�;���0ǁ��3P^Zz����������of��c�\奥p
=�%"@�yhcoFwN�>�N���0˂J��Cބ	X�hQ�c�^��Ɂ�h+U}2A@MM
�J5� ���(�/,+{���<�G��4ҋ	!�RWJ)X�M�DL�	!�j�,�M\�h���}yzC��㸘O�%��c*�(�^���n�����%�/�{s6"Jc�yDx=�����rB�P�6)!�C �|���
�a6C'��"��k8A�;B!�s�����������2fl�d|�\�:o�;i�ّ���IiI	�
�M]�p;�o�6"�X�DT���#�>�p�>��b�y1���Q	�o�H�m��c�:�6 ��шo�I^�/�X�A�M�D�q5@9���q�2ʰ�x"Q�ن�m��:�o,K�n��^��6*���'�N*@�斖�*��{y�X�|7R�
�����>�i��
���TF=��0�f0���1
����%�!�I���
6�'k֬��V[�Gb����AT$��z��ѣ�ϜB4O��P0�χ�9s"�^p���H���ꑏ�U@)������?��9�`0T�=sF)�*����1��BA^ޜ��N���ۚ$�ĿHuo��a]k+�w;��.��^���R���J�q������B�fJi���`3��8�p�!��5��Q�cv/@��/��d���
�{��I>'���1�h�8��J������ٕ1�Jc")�hgƸ<D�8n�gç$���׺\��c����o����q?nH�
�n-���X�'�� ���2���
#f��6�һ@��"`BN6�h��y�x
������1�5}�Q�+�3�7��ҼMjh���>�|�nh�����v�yD��`4�
��H)�Rz�3����p�RJ�t?(�S�
i�} >��HI�8�ݟ&�	v@/����q����EaBk���M��q����q�ĉ�2�8�_�1BB��چR��H�Ǔ�L(+k����!���aƤDx
�l]U�5뮻�8���ߡվyW��NH�A�� �q�.�ĵa�V�	�(*,DWo/���x��N��LQ�RB@��O���:s1(�A(4��by���p��}�{��mܸ��-���p�N��8���;x�`1��e���!=R�����N�l�'�B�/�řh�s�5�!1K��O���&j| R��|�xQ1�!w(}��q ��dח���y@v�K��8��1'�� f&��q�%?AnA���Xω�.2��^/��.!��t�� |��,Ǎ�3�ȟ�~������?Ȉ���˻϶��"�6}Š�.��g4���T�V�����������X��/P���>������D�S]_�b}A<��Z(��9^��ki�"f7��dF�� �*�'�jk�f͚Z��	���c���\$�U�Ʉ�K���h��Ѐ��#��f^q��@��Oee���칃�{]�VN?�9�T2ꄞ@`{ww3��L�&�q �&�&�;����{+��f�`r{2�ßϽ�u}�Q���TTTTTTTTT�Ws@��Vz�I����zӅ�����d��\Dz���*�G:?+Lj�C�H�I�f$�wm�"�� ���h���o��~{|�oHn#�@��3gt����,�ɭj���I��P��8)��hI5��ϱ�	)���AiFr��������0�:�B&�lP�J�R�����F�h��u--U�
��y��5��n_{͒%0�8�w��0iKJi���T}@�W��OL�hn#�'�(űC�"�*�ӭ/�Tk�D�	?~��7�}�+�&���ɓJymO�'�8 �[�����#|�ԩ�$	#I���d}A��fJ��Lf�TW��Z[�� ս �sCL �짔΀�+5
�@&���$^��%$v±2f�~�TC�|�/P�/`LƁlP�

DC���q���3�T>���J7#�y q�ј?��"C���`��M����{���`x����2ժk@]_���������<ux$Th��4�|�M(,xO'��i
�p�{-NgUEy9J��1a�\�t	]/����B0x+�vx��7��m�df.Z���'����;	�`�{�����F�z�l6q�Vi�:�h�Z����s���#Xv�
<��ה���>�b��]�p�ĉ 
�wA4L��^�R9q�����&M� �a�G-��$B����6�::4�h�j��護b�;�	�B -X���{z��V���|B�s~d��doɼ�}���Vl��|}v���fYJ�0&��Dv��1[
�{=����GM��7�%
�8���'�m��<cU��N���Fj��H�#���
P�K8"�f�8�R�!��J@\
�섙v�q G��y~T�������c��� �]i/�q�Y]iF�tE��1ƬtW�q�8��L�
��<RsRPA��h����j! ֘��r��׋��
!b�Ď������,�`0�ǃ���.��xj���Bkk���w��=�2���&�U=Ӹ
�~�o�x�o��uKKs-4M�&xi\��|:�΃�<�uƌ���y]81��A�X,�]'Oj�n�,�8�{���X2՟���9�q\��ba�Z-x�G B�Щ{キ���~3č2�����q����E��{�O��
jg���ħ�j�˖�H)�f�z�?��s�=�g���)���2J�SJ�(f$��B)=��4}:?i���EJ�Kʜ����=�ҿ��&XN��e���(�jj⫚�"Ru�R3�:���7~�B�T66�p��A�'�h!~{�cLH;�7�����h���k ~�+. 
]�"��hxh4���C�����********�X����
�}؊Q��Tcϗ���/�O�\Z\T�	tvu����

����#3?ï ��No��m{n�_�5�L�9.wB�0`4x<:r���>�$1[���X���s�~�y���)Ǩr��>vӪU`���1D��F��bVKfϚ�=}���N���l{{���{�h�^�:���8���>_$ECe��٭��B1q��Ұ,�aP^V���JPJ�=��s8��0(,(�c^N���5²�8D�lQ���i�p��8W8� ��GV��h����/`OE��
��Ićt� �Y���"�r��V-h<M�����`,�B�g)k �2o�A��p��_W��_�K����m�x/��@�)/�xiDdYV�&��h4`#�;R�8��j (���e�x�z9��jʔ)�^{�v׮]�m۶1�`���r�l6�F�t:0R�rY�\��^�eko��ppp�|��>�,<��l��|E�oxϞ=G|�AoWWWcNN��b�@��ETr�|>�wt�詧��v����x��I�>�x�TD�ħ�q@1�s �����/��B��`�6�L�F��q�|�V��z���rU$Y;���%��IJi�b�%�y?e�ܾ}���{n����?��z��{(�7&�+��O)}�RjM� V�S�%�I�k�oJ�+:MB5���G�$�b�pL2�Ǡx��ccK���^�M�'�+.�s��x{��������/PQQQQQQQQQQ���.o�D��u�?�8�S��.���M4��h^�<y򢼼<�Fh5�������>���j�N}�a�T����ɫ��<�� ���p�����; μMDc2�����%K:�}���)��4	�ׯ秷���[Z��������=�쳯/Y���իy���~��k�ʕ/����?���ZQ�ĪU���<1�O__�~��t/^l5��7l��/��S�~�^���5k6�>���Hٛ,v�V������V�E�8�{�~��`]�f�f�^��j ��������[����F��٭N���p8a~����`���lƮ�;wQJ���ܶ��3]]ݽg�����9�o�>���������K�ӧO�IѾ)9}��%K�����$�����:�D�ht:4��}38\.�G{,#̲p�"�����('h��C�^����` p��yL�2�9�>��)S�4�<�` pDn�ݎp(�Gj@o0�c&↹�������S�TTT�G�5
,\.,���a``>�/><�ϝ;���a!���E�@o0�K��=��ƖY�x���	 �R�3U�666�˖-�-[�766�(�t'�|����2k������i�o=�`���w�IJ�B�֭_�.��	J%�� �n7�n7��`��`��׾�ee�}������	(��PJ=%�������Ɨ+++�z�z����Ҟ_^^Η����E���)��O�~zwUU�n����t:����p�F����[>��[n��h4����?�d2uVUU���O廉��}��%Œ�L��td����T��oQJ/�*<�T".Jy)W����������������J����/�j_�\[�ȕ��ɔ�_p���:z�P=e�#������q��+V��-^��sϥ�\�v-�<}:�<}:�ڵ)��=���/�\�rej�5�^�B���ݲeKZ�ʕ+c�6lH�/X�`��d���;
��n�V�źu�6#�0�x<�x<��>��`ݺu��
��%��**:���wl��̚5���tF��3�i�� z�=�0��CCؽ{w�_�:wn�ً����c��[Z�i��Ayu5�hɒQ�-^̗M��TTW���#�H�
�z@�����1�؜��-�����ov�#�D��`�7'''_�F���HH��)SR�#7���,�`č���Ϙ�����@颔�	Z�}�AQ}�a��O�l���{���:�<m��j�&�	f��pػ߾�#�T@�.WqI�&�F�\RZ�}��mm�l�{(�Z�&̮��_���8s��>J��ÇW8�[X�����R�/��<�����M)�3�)�o�M���Q�Y߹vݺ(da��HE�/�ok�o��f>��
8sr�E�����n�k&O�������?��O�����o���;�t�R�����G�uR֏UM�įY��_�`�:g�Ƌn�Y�7Q�_��'t1 IDAT����m�X:].�}���6��79���uJ�`Yy�х�k֬���^����[���;w.?���c�V�.�%q��1�~:��BNQq��*����+*+km6z��QPX���0���>h�8�+�3~B�!K���S�!!䔔n�x�ԩS�C���p(���<��A�,{P��-�RWum�Ky&,sD��<��.�\����?�/��1�?**+��8�`�`�m6��:����#�����.:�XN�~�����100�^�}߾}¹s�Nx�^���2�����2#�sIe%�`�"~ZC�:{��ۇ)��y��Gg̘�/Y��������U
��k4…�v��;w�;�$�z{z
O�>}�|{;�v��ScT���_��s�*++?�~�/���4c����=��(�t�X��^^�)<��J)��'�k4">_x��M���1/\EEEEEEEEE�/�w��n���N�����R�)��\���K�
,[�8&G*(!�Ӈ�K��5f��K��K�Ź��]]7o|������|�ɑ�sJ�F�dT�eދ��K��7����j�y<�ӟ����'��������#
!
��cY���/�??���"۵�	�;����ۀ���p��?��ΙHy���];v$���tv�,h�b�����tvğ��+�웄���nٰ�pZc�����j6��@�ߏ��n�����<��y�رc��;���Cz���@)-�ʾ�aJ��X0^"^�����L�*�����&VW#�@<��S���r��z�������޼���a�7�n8�#!�Ǘ-^l7h�GgQ~>�-^l���[�#�n8���EE8����"�������c��`@8��#���0	��@Nn.4FZ�)�`���eeeCCC�N�=�n8�v�������9ec��l�Rhw:�e%%V�U���zq�����2wC�А��p;|�p��Ç���1�Аz7T�***********Y������(������Ϡ�.����~����l�%�	����ֲ�  [{?0:?C��l���(%T��C�ς�n�����AI@V��ю�	��������n�����!A@���q���~�n������������y�6�#��Jx>���h��X�d��˶�ȶ��m������7��͆�v��ѯD�1qw?��Q����b~�N����k�ɵ��8z4��c>�R�.p�|�)�1�\���ey$��B��B�X)��u	�T�S�SJ;<�i�Q�������U3cB Ix�+VCCCI��_dCS��W��w��X�
��I�:@���:TTWC��l��f��ązO�N-`�F�|�L��٭V��'̲�C㶜O*`������)V�����������EE˪KJ����Egg'�Z�ƪ��v�̩S�y�ğ7n#!˲`���!�qp�� �pQ_'�ǯ��.]j��l�R���w<.T�q�x���OEEEEEEEEEe�D[82��dmII�fd2�+`�ٰ�رeGw����E��p]�@6oْ�(��3�K���+������c��6_0-3~/PIs&�,'����>V���5@&2�5���gg�>ݹ3��P��;f���p
���$��pb�/cgII+`����?Vd҉TK�'#;����n����BZ[�Ԇ�a�'���H��<�,KɆ����Yw��1�ڋ��M��>��v~`l�
��
��ɓ)���X��xܜeA� �cY8,��v�q��B������c��C�z�SQQQQQQ���d[�W,6�z�6�i.�q�y<�pӸ
��d	?��L��@)>ٻ�?� �W�턅��� �^�O��c|>��xb���L��c �����)�B(����(�;�s��[�-����]I!Hb�&1v�%�q��$vO^�;/���I2/�q�!��8^�,/c�����1b7F $ђZ��ݵ�GU5խ�$�g��}�!��r��[��~k���~0���I	�;�w�	!rUs�����Ⱥ̯�["` �z�]?x�D)e�tt�R���ř˗i6�|�M��ڑ�_��
�yy���f�^/|����8x�^x�n&?/Ok7���_��kkGn��&'��qG����BCyy�/��T���Wx���遅e�hF̔�E�/Z�_��?��c��o�	�:���ۛ�����}�|J�`՗۞t��)�[��ϧ3;:�[�Zm6���c�S��$Ƌ�pe���%� !���8d���U�i�󐕴�!�䄐��$^�0!��.L̸}`p0�E���e#
�������W�h"�Hw�cW�h���`/!$�����٫���.=���8��6[r2|�(!A/��
jW@l8��m϶m̍T^����ʛ���o���&:��F*ojj;u�Pd��$��`tll2}F�Ɛ�͈�H6�!"HTWc�v⎀,�!��Ԅl����bA��
���<xQĐۍ��SY���DŽR��C�L���,��;"��h�,���Ḙ��Տ;��>��X�x��.�hs4e�t
��<A��Ap+�)�����|R��a�+��j�8���R�;I� �Xh/]��K����D1�Bk3Y��9mm�)���H�����T�WVJ�JJ� '��$���J5uu�R�^��m(��*)���%�Ҫ*�#����
&�5w�\���>JV��`���WUQ(O�	�ʫ�(���_k/‹�'T�y�ߏ�}���p,�&�JF)�(�(*,ğ_��)�����C���X
�0�w�x!jQ�#Z`��6��w�d]0`��c�C_`���������9��`�O�߈��MZ%��J����B	\3�����?@)؉Z��ǐ�q��)ZԜ+ŧG���?W���!�-BE��C���	:=D�^a����8ɒ6{J
|<,S�@)��%%���y뭠^!�"���6�l�ֿ�eJ�
�a��T�&<S�W��]0�z�	/B:�z�	OA���+LxN�^a�#0�z�������v�Sw
(�H��4��r*�q��6
v�"���=+xA��[�?����68&�uc$WQ�d�WSWGKJK%&)I�D0�z�H��G�`�ܹ#��+c�4@�w˒�B4}2?�:
�F �*���o�S�W��E)m���_���@�X�0��_C�`���RLF_�=%�F��u��"Z��y	��W���%K�X��=۶E
O���ಜ�9Bc}=��8���|�6�׳P��ӵ�	&�/�X��Ϟ�`߮]I��@�3f�ae]޻`C��1� Ȳ��wp��A3��i��J���󳐈��n�m��w���"T}AA~>�q��1�^�Dž��^/��nx�n� ?_{��~��Wņ�z�M7ܐ�D����}��������8@��[ߢ���3�Ɣ	
�����O~rY_���n��'Ο;z� Ju-]]t~W�S�/���E[�����v;����DJ����c܇�?�D���,Z�X���b�I�`��>��C���DKE�D�����!��	!vL<��\���"���Ck�'̿�G�G$϶������,�|��	=L4ttw���mgG��߲:55c�s��Ř�-jC$D��Bl��I�E���$�4�o]/�ʼ��>oࣷ#'�?/S�?)��/.1�%u�yI�b�{RJCV*��qo=!	W>��61n� �/�}�����ӣq�����$�{Ϋ������W[S8���cG� �jŘN;"�Y��"�3�L����^UUUP�Z[U�=�)T%D�tI��_��,ː%	%���8���@����+)-� !
�#�IJ�FH��6�>��7�;~��ݏ�v�s������s��-8��q��-�DT����8}�<������辝;���y\���_�ǡ-�AnU��WQ1��OyB^u���@`�����R�v�tJc�Ȓ��+�/(��D@��ۑf���0�����<�Ll�sz�{����VTPsz�{Z{^�c��߿���{0t��:��a��'����2��7�&ÿ��0``���A}��/��d�4w�,��7h�B Q����c϶mW׿`Fm-�x���-p�݌��afL�A��9N���v�̙!L,}�D��C��(����N�b�;�L̿���f���^����2���L<}���(����/x������	�TW_�QU����Ϗ�/xw��M��b\J)IBۂ�n������}ǎ�/h��s;;)�b}������6�
�U�XU�[="[�+����H��G��$�IYm�D���T!a��xf�W��j�������&�_o
�ۈɄ���VjGw�T���vZ�+Lx�L�^!E�W��A��S�h#r>\�0)���+Lκ~
�
���aW@e�;'CH�E��?�} ��v�'�W����+l��6$�W��'�_��6D�+l��W��2��yB"�����7$�WG �鄤(��~>�^�0�†	�����tFs35�l;�� ��&�<ߒ�#�UU]Ϋ��,99R���@)���E%%�򪫥���I?��**�\�0�(��>����IOIq�ee:�I�ؿ@��aӿ��p�/)/��^�������&�_��k_�r�^!!�z�Ғ��u��_`�0`��흺@���q��E"`�Z�l���ĢI3���eab���J!�2$Q~S(�\  ���Y�c�鵼P
�=s��U�N����dO�Ȩg��}
@E\����Y
p!IR�R�JykB#@)e���?��Gu��PA�e��Ӧ�|���Fh[�F��"��#Br�_���K�.�HB�$x<|���9��!g\v8e~G�%F�K)/�:���M�^��&�K��YJ�"��e�$Y>`�d;b$\!�A)dI�,ː$	�χ�+V�D�&��F����[E@~A��x�o~�\XīB�������W��4<|.����*�v���^�e��~TVW���"����
�λ,�D^���^�"����,�kj����p���ko���;�O�����F@�e�<^�"r�)'��@0���qX�l�@�=~J���t˪�A[�n��|����l�� �ȭ��h�C)� ��x<#-��Di��1�˄"�K��RGJ
$I�(�E>��YY�0����by.���O�,3v2VkO�ӹ�-�`�>�^�G�����­_���������te�̙(���F"ߒ�ܳt�†��V�<�ƒ��=m����)eddH��@�d���R�O>�dccc`Yw�TY[�H�Y�О�ֻ��[Z�h�TVQ�1�t]"��R�L)�"�m��^x��]u����k��f45I����Y�BZ�h�TPP�K)�H)�O�L�b�QJ���a!d(B�����K/����t:m�8{��?��Eº�������5�j�3լ�Ή�r�,ބ�p�7�X�]~��$!`zC�yC��;����0Pu{|F���@p�/�_������=��y�j���{�vB~��@�N.}A�}g'k�n���Z.
>���3��v�ٿ��/]%%%��tߧ�O�<u��0��Ξ5��p���s�.]�XȘL;�����d������)�7�Ƣ�����F)##��R�)���R���>��C;***���3%[`�LmNJi��s�^NMM=Iu�iJi�z�>J)���������J�#Sڹ0`��[��&��d^������Ԅ1��gc���n������[^|�<\^[�����Yy�X�:q;��˗C�lw8)�UWo���dV]��y�Q[�~�#ܴo"x���FZq���͛���&��%KhNJ�"u^ZU���������������^�0��yqe�ʲ2�[o�]w�9��=O�Υ�˖�'7m�԰�1g�R:g���؝N�{�
��������m�ڶd�8Q�`ƌ�kxw�YLr��f�u
��� �����=4^ �H�łH��ձ dsvy���c����/�ڤ��j;: ������?���X[SU<��Ѐ���כl����Q"�D% KR�
�պeɢE+

��z��_\X��������$?�T��	PJU�e�Z��{�/^�1-;�ccܡݻ��Nر�V��+gggc�EMVktb>�Ll
B��T&����^����p����[_y�z�tU����wz}>d��c��%-f�}�b�)�)q!p$'@qjf��%KJm6DQ��w�"�<��}t��A@rr2�-^\���]���ƜU#~֑���>������x�QL���R�<�Rf�#�>Eљ8Aqɭ<m�N���+o��57�ɒ$�������w ����X�[�kkeYƘ�ǿ������^�/��@T�$�z�x��ܳu�ͣ^��l6cagg9��*[vvV2�`xl�{k˖�A^�_ЄnC*��C�S���[�.��v��	MM�ک���Y���۶-𦾪<эH��h�o����p�Κty,V+\���{zz ���^ԇQ�{V�����(.J����;uj����h�E%���Y������O��p>Z�	?
)�1Â�п�F�PÈMh'`5O*N^DX��ꙨS 
�dž)�L2���}���i��FQ�\Q�꣘qq�4KiuU�OI���z-�*�*
0`��$���"��Ÿw��7݄t���8�`=�.��$��:������'@��!�onْp#O��w�qdY�p���	�G@E��{�o�kV�v�饗*�N;�0���~�bŸ�(J�}���g /��B6���M�D�p@�lB~N)�u�~Fe�?�<CeyÙ��㒘�h<��֯����F�t��'b���l�Aw�3��g�e�%�hr��@3��SO��+����=N> �	��T	��w�Y��0f̘] ~ �\?q�	^!�H�8�@q������@vy��@�悺�H�*?'K��)��b�ٞ��Ҳʔ�����PMU�

��ݻ7J&�����d�N|���H2�&)鵅�����=^�HAA�,Z���Z��y-��)	��'�6Y�=K-Z���
��+ر#������׍��qӲ��|��Krrt����	� jN
�f�}��%KZ2������w"Աi��W^������݋7&���P	(qjbɘ���¢�`HJڵl�����d�����!<��Eh筽��5Qa��нdIijf�.Ŏ���i�H����
���RY�`-T
H���4=�����g5Ϝ�	H�>���g�o�q���˲����B�j�
���R���;��%I����W�|�k}'N|.���dՑ!Ax�-[>7<6�1�`agg%��ʎ����f��^��g�֛��vr���h;&����͝۶-��v��f3J�Oo�NT45�2&.�ݮ�[�.��WE1�.�D����ӳ�5:�o��4�,\��{zz:��,F{&�>��{�tf��=��Ϟ]���	�7��t�T�@�D}��^ĝ0=�^7��5�� *��JO�a�k�g�'�0��g�'�J��h��rZ0`����ɾ��h��	���8�>j�I�����%99;g�4dge!336�
.��\.�\.
��}P�a�?���_�ϝ[9c��Rx���z��RJ�DQ����t�:��lr��ƶm����P��#�4�G �c%%�,[�֤$��ܹ�<��7Lo� IDATU�V�BgC|��:���������||�(���5@y�k^� 6���W�]�욲�p�˅�.~��w�Վe�|��C5�ӟ���������Ğ���R��m�|���e��߬���>/'>�����<���ܺu�3�`'!ģU�JƇ{�7<:z��/��Ϸ&''�l���_��	�|4)�������N�����p�����֭�Pd��!��;�l
���ܐ���,*.~��v��C�yܰre��f{F�o$�Ԭ�g;��Y���ߏQ��s��*!䆘I�"��駞j>��7��`b\�ݽ�7cX�rŊB���7\�.����?��X��8��7�x�Q�� �"x�Gvv6�����r��e!���DI�(�g��Qn��&٫�$	� �����&6�븪��E@~#()/wxb����QJ������(�d2�R
�����q#P^\�լ[�	���9C�#41���5M��d�?�J�,�L&$�lO�s�'Q�*��eY	�o6��#@)������<&�	?|�!O���$)S�&�"8�Ciu��q0�	����T2Y���Ź���Eccc��wgG�—VT�95��F"3''F�ԸhIw8��nA�����t7�l~��.�K��Y�P]Q��1�lB`ٯi1����y~;�	�������Ɣ��R�������p�̙7j�/`phH����r�H�c;{zj�Ο��n7�@�(�a���V&ܵ������bV��~�������6����s	B���~�/^=DA@yq1�����
��e�y]�("`dd}}}z�mk�Z�hO��|~�����������Q<����)iYY�|%Fׅ^kli�rZj*8�åK�p�ܹ��U�WBHP��} @=�4��[�x����o�/**rfff�j����q����+�nII����HOM�����>}����>�g��r;#��99yo���C)���ݍ���)����ϝ;�q^/*++�m\�\��82��n\�p��_����O��%��{v��ɜ6����D }agg���.�y&!�,�~�'=zt���A��A���a���o�8q��������&���Ν[>��
�ZgQ��(-.�>}��T�A��y�n�3���Ţ(�C��烉a���[\\\����?66f�4˲�T��@PE�!*�������iiLVff��f+մh�&-�W��q���f�B���p0����&���n�+aF�td�׫��e�8�?���^���=;w�$%%��t"ڶ|��E���]�����U���Vz|r�,�ccCT��q|J��R*E���H�&R��R��Rz�R:����
꟤�FL�g��0`�"}�4�Z��Y���g�����'�V����v����`��'�9w�A(2d=V�WWcz}};k6�ǎ;|�С?�?Z�H_��RR�i��6�sA��4�
V+�?~�;w�A�������V(A�5ܶ殻^�lm�8z���v�^^ްz��G`2�A����9I���l�s��k�ѣ��~�駞����ڻ{73t�"W��[�#���^��cΝ=}�����~�sޑ�s�V}C�{����d�%��rvzz6�2�QU|���y(��r~AA���c�

/�����c�ҥ�P�I���
Ϝ91�P�@e�Ñ���+fee���!bGX��flݶ�%B�"%� p�aN[[p
�X(�رg�K��9��N��~��W_~���kOE"�A%	���e��G�>r+*V�Ȕ�l6C�L����^���ylڼ9(��ґ~�ק7��2H����ߖa��3f\'�"���O̞=�}Y�����Z��n(!�48�z�ڵ_�%	<�3K�,AAZ�1}9@1�#P��=4n�JJ�L��{N��;6��99��ًk��]�c�{z����}��ylٲ����	�Հ��O�ܬ�4����w1�����HR��xP�d=~�qc匆�J�o��V���z�(�����j"�8&���,�eY�\������MN�S��|H/(Xvyd)DIB���B�!l�HO�$	ٙ��\�VNo�@1|�Ev6B�YV���q(,*�W���}�����z<h����
#X��ݻ�B�%���?��A˂�%T���6�e��λ��u��>
U����[��8�
�"�/�����JO���ׄ@��gf^��6mڔ.�2����p:���8u��e9@RR�{x'����c�)@�BJ9�iYYG	!������@�9UY(�aQ �L�ٺ�Ƭ��Fl��Z}�-_(	Tp��w�߾�~�$˷���˲�^S�z��yfŊ�k���
�s��ӂ����~�Y��cO=���bZ��@AHUW��zZ����!7/�c���D)�F�R��ɧ�J�˗������+,*��㏇��MT��m�c��1�Rڠ��o��J�.J�W=�Q�ZZ���������=ʅ��%
�ưr�/@)}�^�V�6o��kW��/^L[ZZh^^����Ka堭��D��{���KeIb�^/��܌͛6�`MxⅉJ����s�n+��-�D��8CCCh�=�7m����S�%J`-t�3;�?��0/�\�$��8���O<���)wB�9$B���+Wn��޾-
������;�����܌'�xB�H��s�;_��3��̤��d��Ү���{	��G̟��ޓ7mZ�,ˌO��Y���O�P�����9o,�΀��}>Ȓ����Κ3G�ܖ9s��뼥O���2���:�;T�}�kz���lk2GjjVVV�uEEEw�:�5T��χ��A̚5�7o�:�#^�@�ېR���֬Y�8pN�V��� �2��180�ٳg�7����Pn��\7�`<��ؿ?�M������W���O��p{���%��ᅬ�l%����Z[['�y �����(�Қ�kiYY-++�k֮���T�Wz�֭��֭��:7`���/
�)�,د�wE�Я����J�0�T~�Dž,�2Q,h�aƅ�� �0�$�,&B����Ȓ6��9���&��r�f'�%R�����cF!�z122���EK0�L���p8��=%���ӑ��VE���筷b.���Nv��5%�-^�$%%)8�60�ӂ��ӄ�SR�2EQK	ѢpeŪ�<o0e��,X@)!���a��2	FeH���'+�2�B$&*�r����E�<4a�w_O���/KU-X<$�cB���R$%�t1���\��N�e.'J��^�f�iNI��!�N(�|him���)�0�v;�Bj��	>�v;X��184��E�}�ᔔ��҂��\�6���	��Hh',��Kh�K�\MS� �;!aYP���a�wB�_�F��	S�R�l�9�z'�deY�T�11�;�٬L��|�ܹ�ꔔ�0�@d��I��$�r� �h:�))�0CQ��?@h���f�uB��܅�9j����#��q9�
0`��008<���<'��ڮX�5Q=��켼��qGiEy���?��ץ�X��7gμ�3����i��?_������sdfd (1�@����/˪�����Kq�WeT�aMP0Y�`2=�x��Ҳ����"�Tt)�S���g]�NMX���o���d�BƖ����E/�!��l2���d������Y(I6{�XӞ�G \�Pj�Z�nij�W_[��M�f2����J�#Y������Ł||��3�.Q��	|��Zy�e�̌���h�/-‚&�'j�{F
��i_v�����%��ުv������6[�v�Z�~��O��D�$������Z˘߿r����N �T{����g�Ӧ5���!))	�DUhh���k2��>kX���O=�B��~'��<q����f�ٳge��
��� �J�~?FGG�r�022��
���㔽B��<����F䕔lD�yxȥQJK�X��;~���Ύ�����B�����YS�H��˅|�ݽ���G?����Q;!�:%%�MNN��jU���fȔ����D$���
������0(���!��|����#=OF6��'G~��cv��ܐ��ͤ�� �j��O>�?:x0jp�XiF穣Q��M��nÆƂ�����T�,��q��Y�>~|�:�y꿅P���6y���x(##�1++�$���C���
J��R�U�INNΡ3fH���R�Rimm�DZZo-���w�~���v���y�̛'��8(�_R�H��~{OQQ����,TW�}��RJ�RJ�%��㜼�10̮	P*U=e��'%��X��~!���/J��-[��0��R��jQ=���3nc�S��R:v���t��QJOӄ��!u���^�"jCJ����_�b0`��0`@����t�}��NB��LW�WRQ^��︣4;/o���j�	�|>�&n��f��Ų@�gF�����؈[n�q�55�_�LX-P��qHII��n��QVU�4X��"�Y^�(��a�)�Zj����I�x�,^��K0�>@��h �B(�@(�gdf2)��X�p!���Rs��_ �m۷�C.|J@��<�~���������q:������d�	fd��FT�aYG�ŁC�ޖ��5�Ep�E����7v̝�RTP�H�ub|!b�H�d��h�����֭n��PeD��MIU��ϝ=���?�㉀R
��I��Ѐ�_No���+jk����� �ץ�r	��FGG188��'X�x��r�JJ6�ll���h�b�K������w�ek�x���ںs�޽]8�b8�������!
5�����)�����8������an{;�q�ƶ��̠_���v�q�̙s�v����\%��j�~���1���bEI�%����`hhH�ï�{/�෾U����PWW'!)))���|p�\!o>t�@
�G���0!��� 7�2�v�ҥK>|���l�	O�dh�E���~�(>�eg�24�y��Gߵ~}�[n�>b4<3g�<����݇ڥ�U濖RqK-���:,�:;;�3fH999�(������Vo<fWN^��%��c��VJia�j��Rcs�TXT$�^��G���RJz��ʖ-{)�>J�J��5;[J��?9~��!��U�51��QJ�h���ѐ���G�'QJ���������Iԣ��`R�d��&%ß�B3`��0`��W�����C_`��������`�}��/0`��0`�����0��xDF<"#��ȈGd�#2��NӉ�Pa�#2`��0`��@D�<o\�f��,��<s�D*m+VH�v;L��`hp����o��;� tֲ*V�WWcz}};k6�ǎ;|�С?A1�YX�1-%�v�ls:��L�ِa�����G�۹s�I�뻻o\���o��+zۚ��z���������ڵozyy������pT���>'�"����vΝ{�8z�2���<��S����]{w�f�.^�
ss��Ԋ�VU��|lcCù��O7\�p���>x�;2�|nժoh}�#P��۞l����X�NOφ"�ܿ,C�$�_���'��
R�>�VP�(x!uu�~���.-�!�}
MM�gΜ�d��D�2��H�������Q�b�#���l��m�^"�,P"�q洵��0��R�{��D�C�t��7ؿ_~��]_X��T$T�P���_VZz���!��b���L)�f3��PKY�x��Ǧ͛�Z9I�EZz^W���o����m9&�.�1�:IQ]]}b����˲|MmU���'us�d��48�z�ڵ_�%	<�3K�,AAZ�1}90���<�@�{h����t��=��|�w8lV+�sr��3�e| �a������{{{��y[�lA~EE�zB����ү�����JKsʁz{{X����%_��UE�?ٸ�rFCC%��ȷ�z+S_]�j����E@V�!�#�Y˲X�r勭����N���^P����R������?�"ߔ��> I�33ӹ��j��Lix�I�,1�١�-�ee�}�¢"|��_���G]���	�ǃ���n�0�eYl߽{;!�^B�ݿ��4�,85ͬ�T����yT�y��}��^݇����yy������!_��܂��~�Y������w�L&df^��6mڔ.�2�5Q/�N'~?N�8qY8��T�����=���q
Э��R��CZV�QB��p��w�?hNE��qX�&z�n�1+?��V�ǃe˗�w�}7���H�|KAyy�,��55��ϟgV�XḶ���� 9gy9-()���w�Վ=��S_.(.��

��@Qu5����u�O���r��?��_I��am(�=�|��Խ|��������¢��_=�xH9ݔQA@ަ;V��(�
�1�F)�z�cժ����}�z�q�߯JY�˅��%
�ưr�/@)}�Rz�Z��m޼�׮\)-^�����м�<��믗��A[SS��9����ʒ�x�^����7mz	�B��p�^�Q8{��m����(2�ahh��gc�M2����J�X�0]ϸ����)��+�%��8hii��?.CQb��]�(��w�\�yf{��($����ߖ�t;Dss3�x�	��"u��
#v����gv��IKIɲ��]����������i�*eYf|ڕϚ�'�|R�;�u���3��0~��$1��������F"�eΜm�:oi�����œ��X��*���5�G�*�7��8RS�����+**�#�鬡��|>b֬Yؼy���:�܆���ܴf��p:��Z�`FY��ߏ��̞=���od(ڰ5�t����5k�0���Ǵi�`U2�����駟�<ő)aӊ�Q8��������筭��<aPJYJ�s�Ri�ڵ��������5k�j{�s*ѫ=�u���u��}v�0`���K�����Wl�<PB��L�~�R0�߆��?Ka���&�	�K�!�����A�?�̎��~�]����á��+��p���r>��~?�n�b�MiP�B�d2��p���V��*�E~�G��ӧOW*������bj|��Ax�jz�jW�0�V+�V+


`Q��y�G__l6����h����
��a��,,K�p�j9�����>�)�8����?� !# �2DQ��c<���n����N�Ȳ	M�~
��~Ha��j�������"�F��P���$	�g��߆����
c��q�R����mQNf#���}�n����^96�],μ��H�x"Y�����?�>����������3�����:��U{���]�>�o$���,� "w(��d^��uu	=�>���f��<K|>FFF�$J!���Y����):����㰰l��T{)�)���zC03n
��&Y��a�V"Do�M�p$88W�'8�,�������!�{�R��է$�l�)(e Ĺ)�&:����C��d���% �D��o1BA)@	���^!�Ґ�O����]�a@u�V�=-
�]�t%��$�juW*Y32����@��K�x�������6r22�b�!E���0`���I!��6wh�ew*�p��x1��ŕ�kg55!''Ì�pL�(I�{�ܩSO�7���-�mKcc0���\��&�IJx���o��[����/�����:%@�N�M�����BE�DM

طw���P�

-~�b+���G%I�@RR���ޘ����$I�������ġC!����"�"��)�Ƣ��ܹ�}{�V�r�+�1�IDAT��Ξ}�����j�E�ؠ�B���َ�1�G�"�!Ԥ(�����C�w{�W����/�l6���'I��^<��}aY.�]���(����C�u�w<��_�$����6T�N!��P~���"������-}�*~[PPp��:�����d}�?Q1���o7l�x<���_Lw��E1f(9��0�i���y�*!�XxBG)��f232#i`���I� ��o}�A��x���z4��WX�����[��]�`[�Y
;q�]OϐR
A1<2"�����
����i�6��ŋs�Q8L)����8RS�M��"��#u�d~��,��_5��|�gΘQ>����M�>~[V^~�㸨�1���k���<FGG��O�n��ٹ��cM&�m6���~`���F���ᑑq�|$]��G�
eYF��184tv��y�	!Zh��쬬���\�x�������zu�v���Q���?��a.�M��F�����}���A)��g�}��ݻ����x�Gt����ۿm��c����T�/T'1�h�;W*�ʂE�F)����O���9`�f1K)]%�3	!u�TTV6VVT��l���Ë">�?z�][�׀��J��ǃT��}/��u��<��3?������.��sݺp��暺��F]��e��R��@������������x���b!dH-�6-3s3�IV+���X%�(�V�$�mmnn,��Ft�Eg.^�{mB��\r���VT�u��q��E��p��	���~�v@Y��ҝ������e�W�X���K���׋����~�醵tF}}���!��A~UW]}#Bs�<�����z�A֤��0�F���}�Y	!�u
�͝6-�,��$���� �$C9r�����4m#
NA��9Y��R0�$������;���[�MQ�CKV������K�㎌����׆_�e�9H��x�S�@���>�,��������8h����|a��Ԕ%	
uu�����"�2�II�;+�e�3��������8�� `YYYY���@fz:2���� |>�u#�J43=����
F��z�ķ��m��ƒk`GM}=+��홙��X,Q����mX{�r�\pdd�}�!�pk��g���o��GS�/�X,���M�$q&�=�����=��p!���
��1Ȯ&��ɖ*�vP%3�TaLms�T��0`��n��NbF1��ZM���k͚.��F�>6�˿�M�� &k�V�����IMG�l����z�D�,�{J�� �߉� @�yt͟�
��j��̙�V�c������p��&p[���Iױ��JQ=}����„m�'L���u��d� �|���?�zyQ!�"Zg���;�2~K�#�����*
�FFG��C����8� (����D	ܓ��I�yȔ�ܱz�Z��BȢ��H0��D8Z�̹���7�v�!�w�[����s(),\�!�����4�p�]w�^=�'˾KQdΒ����u�X�.Ƅ	�:��PJ!
�D��B�<KY1���`�$̂(���.<��x�&z�t�����U�IKJWW�-�aJa�+�J���III`SR�=��b5��rOVF����{��	�ip:�HNN�I�f�Z
%9wT$2�3gϾQV�\M�P��9X,$''+WO)
��e1~�J��,+��ꕏ����;�DaQË��h&RSR��$7''�0XYFym�S�O�@D��ʪ��a��=6ƭ_�K�����r�e2����55�SG��B��D�B����kjJE��9���dB�����;��<��:���`����Al&ӽ��8N��{�9Ao ���-_~v`p���8�T'������T'�N��Yy�ye�
�����Ix�j�V���g��`bY����n�N�@�E���!FEF��Jkj�	��~���{�-[���$�v�b���|�����TՁR�u�dm���`�g"�}8~��п�_y~�+!�O����i�Ŵ�����廀���$��ҟ3F�T}�	��>��e��yq0`���s�K�L�q�IEND�B`�admin/ckeditor/plugins/tabletools/0000755000352000025440000000000014373776770017775 5ustar  thediannthediannadmin/ckeditor/plugins/tabletools/dialogs/0000755000352000025440000000000014373776770021417 5ustar  thediannthediannadmin/ckeditor/plugins/tabletools/dialogs/tableCell.js0000644000352000025440000001506612450564214023632 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.dialog.add("cellProperties",function(g){function d(a){return function(b){for(var c=a(b[0]),d=1;d<b.length;d++)if(a(b[d])!==c){c=null;break}"undefined"!=typeof c&&(this.setValue(c),CKEDITOR.env.gecko&&("select"==this.type&&!c)&&(this.getInputElement().$.selectedIndex=-1))}}function j(a){if(a=l.exec(a.getStyle("width")||a.getAttribute("width")))return a[2]}var h=g.lang.table,c=h.cell,e=g.lang.common,i=CKEDITOR.dialog.validate,l=/^(\d+(?:\.\d+)?)(px|%)$/,f={type:"html",html:"&nbsp;"},m="rtl"==
g.lang.dir,k=g.plugins.colordialog;return{title:c.title,minWidth:CKEDITOR.env.ie&&CKEDITOR.env.quirks?450:410,minHeight:CKEDITOR.env.ie&&(CKEDITOR.env.ie7Compat||CKEDITOR.env.quirks)?230:220,contents:[{id:"info",label:c.title,accessKey:"I",elements:[{type:"hbox",widths:["40%","5%","40%"],children:[{type:"vbox",padding:0,children:[{type:"hbox",widths:["70%","30%"],children:[{type:"text",id:"width",width:"100px",label:e.width,validate:i.number(c.invalidWidth),onLoad:function(){var a=this.getDialog().getContentElement("info",
"widthType").getElement(),b=this.getInputElement(),c=b.getAttribute("aria-labelledby");b.setAttribute("aria-labelledby",[c,a.$.id].join(" "))},setup:d(function(a){var b=parseInt(a.getAttribute("width"),10),a=parseInt(a.getStyle("width"),10);return!isNaN(a)?a:!isNaN(b)?b:""}),commit:function(a){var b=parseInt(this.getValue(),10),c=this.getDialog().getValueOf("info","widthType")||j(a);isNaN(b)?a.removeStyle("width"):a.setStyle("width",b+c);a.removeAttribute("width")},"default":""},{type:"select",id:"widthType",
label:g.lang.table.widthUnit,labelStyle:"visibility:hidden","default":"px",items:[[h.widthPx,"px"],[h.widthPc,"%"]],setup:d(j)}]},{type:"hbox",widths:["70%","30%"],children:[{type:"text",id:"height",label:e.height,width:"100px","default":"",validate:i.number(c.invalidHeight),onLoad:function(){var a=this.getDialog().getContentElement("info","htmlHeightType").getElement(),b=this.getInputElement(),c=b.getAttribute("aria-labelledby");b.setAttribute("aria-labelledby",[c,a.$.id].join(" "))},setup:d(function(a){var b=
parseInt(a.getAttribute("height"),10),a=parseInt(a.getStyle("height"),10);return!isNaN(a)?a:!isNaN(b)?b:""}),commit:function(a){var b=parseInt(this.getValue(),10);isNaN(b)?a.removeStyle("height"):a.setStyle("height",CKEDITOR.tools.cssLength(b));a.removeAttribute("height")}},{id:"htmlHeightType",type:"html",html:"<br />"+h.widthPx}]},f,{type:"select",id:"wordWrap",label:c.wordWrap,"default":"yes",items:[[c.yes,"yes"],[c.no,"no"]],setup:d(function(a){var b=a.getAttribute("noWrap");if("nowrap"==a.getStyle("white-space")||
b)return"no"}),commit:function(a){"no"==this.getValue()?a.setStyle("white-space","nowrap"):a.removeStyle("white-space");a.removeAttribute("noWrap")}},f,{type:"select",id:"hAlign",label:c.hAlign,"default":"",items:[[e.notSet,""],[e.alignLeft,"left"],[e.alignCenter,"center"],[e.alignRight,"right"],[e.alignJustify,"justify"]],setup:d(function(a){var b=a.getAttribute("align");return a.getStyle("text-align")||b||""}),commit:function(a){var b=this.getValue();b?a.setStyle("text-align",b):a.removeStyle("text-align");
a.removeAttribute("align")}},{type:"select",id:"vAlign",label:c.vAlign,"default":"",items:[[e.notSet,""],[e.alignTop,"top"],[e.alignMiddle,"middle"],[e.alignBottom,"bottom"],[c.alignBaseline,"baseline"]],setup:d(function(a){var b=a.getAttribute("vAlign"),a=a.getStyle("vertical-align");switch(a){case "top":case "middle":case "bottom":case "baseline":break;default:a=""}return a||b||""}),commit:function(a){var b=this.getValue();b?a.setStyle("vertical-align",b):a.removeStyle("vertical-align");a.removeAttribute("vAlign")}}]},
f,{type:"vbox",padding:0,children:[{type:"select",id:"cellType",label:c.cellType,"default":"td",items:[[c.data,"td"],[c.header,"th"]],setup:d(function(a){return a.getName()}),commit:function(a){a.renameNode(this.getValue())}},f,{type:"text",id:"rowSpan",label:c.rowSpan,"default":"",validate:i.integer(c.invalidRowSpan),setup:d(function(a){if((a=parseInt(a.getAttribute("rowSpan"),10))&&1!=a)return a}),commit:function(a){var b=parseInt(this.getValue(),10);b&&1!=b?a.setAttribute("rowSpan",this.getValue()):
a.removeAttribute("rowSpan")}},{type:"text",id:"colSpan",label:c.colSpan,"default":"",validate:i.integer(c.invalidColSpan),setup:d(function(a){if((a=parseInt(a.getAttribute("colSpan"),10))&&1!=a)return a}),commit:function(a){var b=parseInt(this.getValue(),10);b&&1!=b?a.setAttribute("colSpan",this.getValue()):a.removeAttribute("colSpan")}},f,{type:"hbox",padding:0,widths:["60%","40%"],children:[{type:"text",id:"bgColor",label:c.bgColor,"default":"",setup:d(function(a){var b=a.getAttribute("bgColor");
return a.getStyle("background-color")||b}),commit:function(a){this.getValue()?a.setStyle("background-color",this.getValue()):a.removeStyle("background-color");a.removeAttribute("bgColor")}},k?{type:"button",id:"bgColorChoose","class":"colorChooser",label:c.chooseColor,onLoad:function(){this.getElement().getParent().setStyle("vertical-align","bottom")},onClick:function(){g.getColorFromDialog(function(a){a&&this.getDialog().getContentElement("info","bgColor").setValue(a);this.focus()},this)}}:f]},f,
{type:"hbox",padding:0,widths:["60%","40%"],children:[{type:"text",id:"borderColor",label:c.borderColor,"default":"",setup:d(function(a){var b=a.getAttribute("borderColor");return a.getStyle("border-color")||b}),commit:function(a){this.getValue()?a.setStyle("border-color",this.getValue()):a.removeStyle("border-color");a.removeAttribute("borderColor")}},k?{type:"button",id:"borderColorChoose","class":"colorChooser",label:c.chooseColor,style:(m?"margin-right":"margin-left")+": 10px",onLoad:function(){this.getElement().getParent().setStyle("vertical-align",
"bottom")},onClick:function(){g.getColorFromDialog(function(a){a&&this.getDialog().getContentElement("info","borderColor").setValue(a);this.focus()},this)}}:f]}]}]}]}],onShow:function(){this.cells=CKEDITOR.plugins.tabletools.getSelectedCells(this._.editor.getSelection());this.setupContent(this.cells)},onOk:function(){for(var a=this._.editor.getSelection(),b=a.createBookmarks(),c=this.cells,d=0;d<c.length;d++)this.commitContent(c[d]);this._.editor.forceNextSelectionCheck();a.selectBookmarks(b);this._.editor.selectionChange()},
onLoad:function(){var a={};this.foreach(function(b){b.setup&&b.commit&&(b.setup=CKEDITOR.tools.override(b.setup,function(c){return function(){c.apply(this,arguments);a[b.id]=b.getValue()}}),b.commit=CKEDITOR.tools.override(b.commit,function(c){return function(){a[b.id]!==b.getValue()&&c.apply(this,arguments)}}))})}}});admin/ckeditor/ckeditor.js0000644000352000025440000161300712450564214016274 0ustar  thediannthediann/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
(function(){if(window.CKEDITOR&&window.CKEDITOR.dom)return;window.CKEDITOR||(window.CKEDITOR=function(){var a=/(^|.*[\\\/])ckeditor\.js(?:\?.*|;.*)?$/i,e={timestamp:"EAPE",version:"4.4.6",revision:"08188c4",rnd:Math.floor(900*Math.random())+100,_:{pending:[],basePathSrcPattern:a},status:"unloaded",basePath:function(){var f=window.CKEDITOR_BASEPATH||"";if(!f)for(var d=document.getElementsByTagName("script"),c=0;c<d.length;c++){var b=d[c].src.match(a);if(b){f=b[1];break}}-1==f.indexOf(":/")&&"//"!=f.slice(0,2)&&(f=0===f.indexOf("/")?location.href.match(/^.*?:\/\/[^\/]*/)[0]+
f:location.href.match(/^[^\?]*\/(?:)/)[0]+f);if(!f)throw'The CKEditor installation path could not be automatically detected. Please set the global variable "CKEDITOR_BASEPATH" before creating editor instances.';return f}(),getUrl:function(a){-1==a.indexOf(":/")&&0!==a.indexOf("/")&&(a=this.basePath+a);this.timestamp&&("/"!=a.charAt(a.length-1)&&!/[&?]t=/.test(a))&&(a+=(0<=a.indexOf("?")?"&":"?")+"t="+this.timestamp);return a},domReady:function(){function a(){try{document.addEventListener?(document.removeEventListener("DOMContentLoaded",
a,!1),d()):document.attachEvent&&"complete"===document.readyState&&(document.detachEvent("onreadystatechange",a),d())}catch(c){}}function d(){for(var a;a=c.shift();)a()}var c=[];return function(d){function b(){try{document.documentElement.doScroll("left")}catch(m){setTimeout(b,1);return}a()}c.push(d);"complete"===document.readyState&&setTimeout(a,1);if(1==c.length)if(document.addEventListener)document.addEventListener("DOMContentLoaded",a,!1),window.addEventListener("load",a,!1);else if(document.attachEvent){document.attachEvent("onreadystatechange",
a);window.attachEvent("onload",a);d=!1;try{d=!window.frameElement}catch(e){}document.documentElement.doScroll&&d&&b()}}}()},b=window.CKEDITOR_GETURL;if(b){var c=e.getUrl;e.getUrl=function(a){return b.call(e,a)||c.call(e,a)}}return e}());
CKEDITOR.event||(CKEDITOR.event=function(){},CKEDITOR.event.implementOn=function(a){var e=CKEDITOR.event.prototype,b;for(b in e)a[b]==null&&(a[b]=e[b])},CKEDITOR.event.prototype=function(){function a(a){var f=e(this);return f[a]||(f[a]=new b(a))}var e=function(a){a=a.getPrivate&&a.getPrivate()||a._||(a._={});return a.events||(a.events={})},b=function(a){this.name=a;this.listeners=[]};b.prototype={getListenerIndex:function(a){for(var f=0,d=this.listeners;f<d.length;f++)if(d[f].fn==a)return f;return-1}};
return{define:function(b,f){var d=a.call(this,b);CKEDITOR.tools.extend(d,f,true)},on:function(b,f,d,e,l){function i(a,m,t,j){a={name:b,sender:this,editor:a,data:m,listenerData:e,stop:t,cancel:j,removeListener:g};return f.call(d,a)===false?false:a.data}function g(){t.removeListener(b,f)}var m=a.call(this,b);if(m.getListenerIndex(f)<0){m=m.listeners;d||(d=this);isNaN(l)&&(l=10);var t=this;i.fn=f;i.priority=l;for(var s=m.length-1;s>=0;s--)if(m[s].priority<=l){m.splice(s+1,0,i);return{removeListener:g}}m.unshift(i)}return{removeListener:g}},
once:function(){var a=Array.prototype.slice.call(arguments),f=a[1];a[1]=function(a){a.removeListener();return f.apply(this,arguments)};return this.on.apply(this,a)},capture:function(){CKEDITOR.event.useCapture=1;var a=this.on.apply(this,arguments);CKEDITOR.event.useCapture=0;return a},fire:function(){var a=0,f=function(){a=1},d=0,b=function(){d=1};return function(l,i,g){var m=e(this)[l],l=a,t=d;a=d=0;if(m){var s=m.listeners;if(s.length)for(var s=s.slice(0),y,p=0;p<s.length;p++){if(m.errorProof)try{y=
s[p].call(this,g,i,f,b)}catch(q){}else y=s[p].call(this,g,i,f,b);y===false?d=1:typeof y!="undefined"&&(i=y);if(a||d)break}}i=d?false:typeof i=="undefined"?true:i;a=l;d=t;return i}}(),fireOnce:function(a,f,d){f=this.fire(a,f,d);delete e(this)[a];return f},removeListener:function(a,f){var d=e(this)[a];if(d){var b=d.getListenerIndex(f);b>=0&&d.listeners.splice(b,1)}},removeAllListeners:function(){var a=e(this),f;for(f in a)delete a[f]},hasListeners:function(a){return(a=e(this)[a])&&a.listeners.length>
0}}}());CKEDITOR.editor||(CKEDITOR.editor=function(){CKEDITOR._.pending.push([this,arguments]);CKEDITOR.event.call(this)},CKEDITOR.editor.prototype.fire=function(a,e){a in{instanceReady:1,loaded:1}&&(this[a]=true);return CKEDITOR.event.prototype.fire.call(this,a,e,this)},CKEDITOR.editor.prototype.fireOnce=function(a,e){a in{instanceReady:1,loaded:1}&&(this[a]=true);return CKEDITOR.event.prototype.fireOnce.call(this,a,e,this)},CKEDITOR.event.implementOn(CKEDITOR.editor.prototype));
CKEDITOR.env||(CKEDITOR.env=function(){var a=navigator.userAgent.toLowerCase(),e={ie:a.indexOf("trident/")>-1,webkit:a.indexOf(" applewebkit/")>-1,air:a.indexOf(" adobeair/")>-1,mac:a.indexOf("macintosh")>-1,quirks:document.compatMode=="BackCompat"&&(!document.documentMode||document.documentMode<10),mobile:a.indexOf("mobile")>-1,iOS:/(ipad|iphone|ipod)/.test(a),isCustomDomain:function(){if(!this.ie)return false;var a=document.domain,d=window.location.hostname;return a!=d&&a!="["+d+"]"},secure:location.protocol==
"https:"};e.gecko=navigator.product=="Gecko"&&!e.webkit&&!e.ie;if(e.webkit)a.indexOf("chrome")>-1?e.chrome=true:e.safari=true;var b=0;if(e.ie){b=e.quirks||!document.documentMode?parseFloat(a.match(/msie (\d+)/)[1]):document.documentMode;e.ie9Compat=b==9;e.ie8Compat=b==8;e.ie7Compat=b==7;e.ie6Compat=b<7||e.quirks}if(e.gecko){var c=a.match(/rv:([\d\.]+)/);if(c){c=c[1].split(".");b=c[0]*1E4+(c[1]||0)*100+(c[2]||0)*1}}e.air&&(b=parseFloat(a.match(/ adobeair\/(\d+)/)[1]));e.webkit&&(b=parseFloat(a.match(/ applewebkit\/(\d+)/)[1]));
e.version=b;e.isCompatible=e.iOS&&b>=534||!e.mobile&&(e.ie&&b>6||e.gecko&&b>=2E4||e.air&&b>=1||e.webkit&&b>=522||false);e.hidpi=window.devicePixelRatio>=2;e.needsBrFiller=e.gecko||e.webkit||e.ie&&b>10;e.needsNbspFiller=e.ie&&b<11;e.cssClass="cke_browser_"+(e.ie?"ie":e.gecko?"gecko":e.webkit?"webkit":"unknown");if(e.quirks)e.cssClass=e.cssClass+" cke_browser_quirks";if(e.ie)e.cssClass=e.cssClass+(" cke_browser_ie"+(e.quirks?"6 cke_browser_iequirks":e.version));if(e.air)e.cssClass=e.cssClass+" cke_browser_air";
if(e.iOS)e.cssClass=e.cssClass+" cke_browser_ios";if(e.hidpi)e.cssClass=e.cssClass+" cke_hidpi";return e}());
"unloaded"==CKEDITOR.status&&function(){CKEDITOR.event.implementOn(CKEDITOR);CKEDITOR.loadFullCore=function(){if(CKEDITOR.status!="basic_ready")CKEDITOR.loadFullCore._load=1;else{delete CKEDITOR.loadFullCore;var a=document.createElement("script");a.type="text/javascript";a.src=CKEDITOR.basePath+"ckeditor.js";document.getElementsByTagName("head")[0].appendChild(a)}};CKEDITOR.loadFullCoreTimeout=0;CKEDITOR.add=function(a){(this._.pending||(this._.pending=[])).push(a)};(function(){CKEDITOR.domReady(function(){var a=
CKEDITOR.loadFullCore,e=CKEDITOR.loadFullCoreTimeout;if(a){CKEDITOR.status="basic_ready";a&&a._load?a():e&&setTimeout(function(){CKEDITOR.loadFullCore&&CKEDITOR.loadFullCore()},e*1E3)}})})();CKEDITOR.status="basic_loaded"}();CKEDITOR.dom={};
(function(){var a=[],e=CKEDITOR.env.gecko?"-moz-":CKEDITOR.env.webkit?"-webkit-":CKEDITOR.env.ie?"-ms-":"",b=/&/g,c=/>/g,f=/</g,d=/"/g,h=/&amp;/g,l=/&gt;/g,i=/&lt;/g,g=/&quot;/g;CKEDITOR.on("reset",function(){a=[]});CKEDITOR.tools={arrayCompare:function(a,f){if(!a&&!f)return true;if(!a||!f||a.length!=f.length)return false;for(var d=0;d<a.length;d++)if(a[d]!=f[d])return false;return true},clone:function(a){var f;if(a&&a instanceof Array){f=[];for(var d=0;d<a.length;d++)f[d]=CKEDITOR.tools.clone(a[d]);
return f}if(a===null||typeof a!="object"||a instanceof String||a instanceof Number||a instanceof Boolean||a instanceof Date||a instanceof RegExp||a.nodeType||a.window===a)return a;f=new a.constructor;for(d in a)f[d]=CKEDITOR.tools.clone(a[d]);return f},capitalize:function(a,f){return a.charAt(0).toUpperCase()+(f?a.slice(1):a.slice(1).toLowerCase())},extend:function(a){var f=arguments.length,d,b;if(typeof(d=arguments[f-1])=="boolean")f--;else if(typeof(d=arguments[f-2])=="boolean"){b=arguments[f-1];
f=f-2}for(var c=1;c<f;c++){var e=arguments[c],j;for(j in e)if(d===true||a[j]==null)if(!b||j in b)a[j]=e[j]}return a},prototypedCopy:function(a){var f=function(){};f.prototype=a;return new f},copy:function(a){var f={},d;for(d in a)f[d]=a[d];return f},isArray:function(a){return Object.prototype.toString.call(a)=="[object Array]"},isEmpty:function(a){for(var f in a)if(a.hasOwnProperty(f))return false;return true},cssVendorPrefix:function(a,f,d){if(d)return e+a+":"+f+";"+a+":"+f;d={};d[a]=f;d[e+a]=f;
return d},cssStyleToDomStyle:function(){var a=document.createElement("div").style,f=typeof a.cssFloat!="undefined"?"cssFloat":typeof a.styleFloat!="undefined"?"styleFloat":"float";return function(a){return a=="float"?f:a.replace(/-./g,function(a){return a.substr(1).toUpperCase()})}}(),buildStyleHtml:function(a){for(var a=[].concat(a),f,d=[],b=0;b<a.length;b++)if(f=a[b])/@import|[{}]/.test(f)?d.push("<style>"+f+"</style>"):d.push('<link type="text/css" rel=stylesheet href="'+f+'">');return d.join("")},
htmlEncode:function(a){return(""+a).replace(b,"&amp;").replace(c,"&gt;").replace(f,"&lt;")},htmlDecode:function(a){return a.replace(h,"&").replace(l,">").replace(i,"<")},htmlEncodeAttr:function(a){return a.replace(d,"&quot;").replace(f,"&lt;").replace(c,"&gt;")},htmlDecodeAttr:function(a){return a.replace(g,'"').replace(i,"<").replace(l,">")},getNextNumber:function(){var a=0;return function(){return++a}}(),getNextId:function(){return"cke_"+this.getNextNumber()},override:function(a,f){var d=f(a);d.prototype=
a.prototype;return d},setTimeout:function(a,f,d,b,c){c||(c=window);d||(d=c);return c.setTimeout(function(){b?a.apply(d,[].concat(b)):a.apply(d)},f||0)},trim:function(){var a=/(?:^[ \t\n\r]+)|(?:[ \t\n\r]+$)/g;return function(f){return f.replace(a,"")}}(),ltrim:function(){var a=/^[ \t\n\r]+/g;return function(f){return f.replace(a,"")}}(),rtrim:function(){var a=/[ \t\n\r]+$/g;return function(f){return f.replace(a,"")}}(),indexOf:function(a,f){if(typeof f=="function")for(var d=0,b=a.length;d<b;d++){if(f(a[d]))return d}else{if(a.indexOf)return a.indexOf(f);
d=0;for(b=a.length;d<b;d++)if(a[d]===f)return d}return-1},search:function(a,f){var d=CKEDITOR.tools.indexOf(a,f);return d>=0?a[d]:null},bind:function(a,f){return function(){return a.apply(f,arguments)}},createClass:function(a){var f=a.$,d=a.base,b=a.privates||a._,c=a.proto,a=a.statics;!f&&(f=function(){d&&this.base.apply(this,arguments)});if(b)var e=f,f=function(){var a=this._||(this._={}),f;for(f in b){var d=b[f];a[f]=typeof d=="function"?CKEDITOR.tools.bind(d,this):d}e.apply(this,arguments)};if(d){f.prototype=
this.prototypedCopy(d.prototype);f.prototype.constructor=f;f.base=d;f.baseProto=d.prototype;f.prototype.base=function(){this.base=d.prototype.base;d.apply(this,arguments);this.base=arguments.callee}}c&&this.extend(f.prototype,c,true);a&&this.extend(f,a,true);return f},addFunction:function(f,d){return a.push(function(){return f.apply(d||this,arguments)})-1},removeFunction:function(f){a[f]=null},callFunction:function(f){var d=a[f];return d&&d.apply(window,Array.prototype.slice.call(arguments,1))},cssLength:function(){var a=
/^-?\d+\.?\d*px$/,f;return function(d){f=CKEDITOR.tools.trim(d+"")+"px";return a.test(f)?f:d||""}}(),convertToPx:function(){var a;return function(f){if(!a){a=CKEDITOR.dom.element.createFromHtml('<div style="position:absolute;left:-9999px;top:-9999px;margin:0px;padding:0px;border:0px;"></div>',CKEDITOR.document);CKEDITOR.document.getBody().append(a)}if(!/%$/.test(f)){a.setStyle("width",f);return a.$.clientWidth}return f}}(),repeat:function(a,f){return Array(f+1).join(a)},tryThese:function(){for(var a,
f=0,d=arguments.length;f<d;f++){var b=arguments[f];try{a=b();break}catch(c){}}return a},genKey:function(){return Array.prototype.slice.call(arguments).join("-")},defer:function(a){return function(){var f=arguments,d=this;window.setTimeout(function(){a.apply(d,f)},0)}},normalizeCssText:function(a,f){var d=[],b,c=CKEDITOR.tools.parseCssText(a,true,f);for(b in c)d.push(b+":"+c[b]);d.sort();return d.length?d.join(";")+";":""},convertRgbToHex:function(a){return a.replace(/(?:rgb\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\))/gi,
function(a,f,d,b){a=[f,d,b];for(f=0;f<3;f++)a[f]=("0"+parseInt(a[f],10).toString(16)).slice(-2);return"#"+a.join("")})},parseCssText:function(a,f,d){var b={};if(d){d=new CKEDITOR.dom.element("span");d.setAttribute("style",a);a=CKEDITOR.tools.convertRgbToHex(d.getAttribute("style")||"")}if(!a||a==";")return b;a.replace(/&quot;/g,'"').replace(/\s*([^:;\s]+)\s*:\s*([^;]+)\s*(?=;|$)/g,function(a,d,m){if(f){d=d.toLowerCase();d=="font-family"&&(m=m.toLowerCase().replace(/["']/g,"").replace(/\s*,\s*/g,","));
m=CKEDITOR.tools.trim(m)}b[d]=m});return b},writeCssText:function(a,f){var d,b=[];for(d in a)b.push(d+":"+a[d]);f&&b.sort();return b.join("; ")},objectCompare:function(a,f,d){var b;if(!a&&!f)return true;if(!a||!f)return false;for(b in a)if(a[b]!=f[b])return false;if(!d)for(b in f)if(a[b]!=f[b])return false;return true},objectKeys:function(a){var f=[],d;for(d in a)f.push(d);return f},convertArrayToObject:function(a,f){var d={};arguments.length==1&&(f=true);for(var b=0,c=a.length;b<c;++b)d[a[b]]=f;
return d},fixDomain:function(){for(var a;;)try{a=window.parent.document.domain;break}catch(f){a=a?a.replace(/.+?(?:\.|$)/,""):document.domain;if(!a)break;document.domain=a}return!!a},eventsBuffer:function(a,f){function d(){c=(new Date).getTime();b=false;f()}var b,c=0;return{input:function(){if(!b){var f=(new Date).getTime()-c;f<a?b=setTimeout(d,a-f):d()}},reset:function(){b&&clearTimeout(b);b=c=0}}},enableHtml5Elements:function(a,f){for(var d=["abbr","article","aside","audio","bdi","canvas","data",
"datalist","details","figcaption","figure","footer","header","hgroup","mark","meter","nav","output","progress","section","summary","time","video"],b=d.length,c;b--;){c=a.createElement(d[b]);f&&a.appendChild(c)}},checkIfAnyArrayItemMatches:function(a,f){for(var d=0,b=a.length;d<b;++d)if(a[d].match(f))return true;return false},checkIfAnyObjectPropertyMatches:function(a,f){for(var d in a)if(d.match(f))return true;return false},transparentImageData:"data:image/gif;base64,R0lGODlhAQABAPABAP///wAAACH5BAEKAAAALAAAAAABAAEAAAICRAEAOw=="}})();
CKEDITOR.dtd=function(){var a=CKEDITOR.tools.extend,e=function(a,f){for(var d=CKEDITOR.tools.clone(a),b=1;b<arguments.length;b++){var f=arguments[b],c;for(c in f)delete d[c]}return d},b={},c={},f={address:1,article:1,aside:1,blockquote:1,details:1,div:1,dl:1,fieldset:1,figure:1,footer:1,form:1,h1:1,h2:1,h3:1,h4:1,h5:1,h6:1,header:1,hgroup:1,hr:1,main:1,menu:1,nav:1,ol:1,p:1,pre:1,section:1,table:1,ul:1},d={command:1,link:1,meta:1,noscript:1,script:1,style:1},h={},l={"#":1},i={center:1,dir:1,noframes:1};
a(b,{a:1,abbr:1,area:1,audio:1,b:1,bdi:1,bdo:1,br:1,button:1,canvas:1,cite:1,code:1,command:1,datalist:1,del:1,dfn:1,em:1,embed:1,i:1,iframe:1,img:1,input:1,ins:1,kbd:1,keygen:1,label:1,map:1,mark:1,meter:1,noscript:1,object:1,output:1,progress:1,q:1,ruby:1,s:1,samp:1,script:1,select:1,small:1,span:1,strong:1,sub:1,sup:1,textarea:1,time:1,u:1,"var":1,video:1,wbr:1},l,{acronym:1,applet:1,basefont:1,big:1,font:1,isindex:1,strike:1,style:1,tt:1});a(c,f,b,i);e={a:e(b,{a:1,button:1}),abbr:b,address:c,
area:h,article:c,aside:c,audio:a({source:1,track:1},c),b:b,base:h,bdi:b,bdo:b,blockquote:c,body:c,br:h,button:e(b,{a:1,button:1}),canvas:b,caption:c,cite:b,code:b,col:h,colgroup:{col:1},command:h,datalist:a({option:1},b),dd:c,del:b,details:a({summary:1},c),dfn:b,div:c,dl:{dt:1,dd:1},dt:c,em:b,embed:h,fieldset:a({legend:1},c),figcaption:c,figure:a({figcaption:1},c),footer:c,form:c,h1:b,h2:b,h3:b,h4:b,h5:b,h6:b,head:a({title:1,base:1},d),header:c,hgroup:{h1:1,h2:1,h3:1,h4:1,h5:1,h6:1},hr:h,html:a({head:1,
body:1},c,d),i:b,iframe:l,img:h,input:h,ins:b,kbd:b,keygen:h,label:b,legend:b,li:c,link:h,main:c,map:c,mark:b,menu:a({li:1},c),meta:h,meter:e(b,{meter:1}),nav:c,noscript:a({link:1,meta:1,style:1},b),object:a({param:1},b),ol:{li:1},optgroup:{option:1},option:l,output:b,p:b,param:h,pre:b,progress:e(b,{progress:1}),q:b,rp:b,rt:b,ruby:a({rp:1,rt:1},b),s:b,samp:b,script:l,section:c,select:{optgroup:1,option:1},small:b,source:h,span:b,strong:b,style:l,sub:b,summary:b,sup:b,table:{caption:1,colgroup:1,thead:1,
tfoot:1,tbody:1,tr:1},tbody:{tr:1},td:c,textarea:l,tfoot:{tr:1},th:c,thead:{tr:1},time:e(b,{time:1}),title:l,tr:{th:1,td:1},track:h,u:b,ul:{li:1},"var":b,video:a({source:1,track:1},c),wbr:h,acronym:b,applet:a({param:1},c),basefont:h,big:b,center:c,dialog:h,dir:{li:1},font:b,isindex:h,noframes:c,strike:b,tt:b};a(e,{$block:a({audio:1,dd:1,dt:1,figcaption:1,li:1,video:1},f,i),$blockLimit:{article:1,aside:1,audio:1,body:1,caption:1,details:1,dir:1,div:1,dl:1,fieldset:1,figcaption:1,figure:1,footer:1,
form:1,header:1,hgroup:1,main:1,menu:1,nav:1,ol:1,section:1,table:1,td:1,th:1,tr:1,ul:1,video:1},$cdata:{script:1,style:1},$editable:{address:1,article:1,aside:1,blockquote:1,body:1,details:1,div:1,fieldset:1,figcaption:1,footer:1,form:1,h1:1,h2:1,h3:1,h4:1,h5:1,h6:1,header:1,hgroup:1,main:1,nav:1,p:1,pre:1,section:1},$empty:{area:1,base:1,basefont:1,br:1,col:1,command:1,dialog:1,embed:1,hr:1,img:1,input:1,isindex:1,keygen:1,link:1,meta:1,param:1,source:1,track:1,wbr:1},$inline:b,$list:{dl:1,ol:1,
ul:1},$listItem:{dd:1,dt:1,li:1},$nonBodyContent:a({body:1,head:1,html:1},e.head),$nonEditable:{applet:1,audio:1,button:1,embed:1,iframe:1,map:1,object:1,option:1,param:1,script:1,textarea:1,video:1},$object:{applet:1,audio:1,button:1,hr:1,iframe:1,img:1,input:1,object:1,select:1,table:1,textarea:1,video:1},$removeEmpty:{abbr:1,acronym:1,b:1,bdi:1,bdo:1,big:1,cite:1,code:1,del:1,dfn:1,em:1,font:1,i:1,ins:1,label:1,kbd:1,mark:1,meter:1,output:1,q:1,ruby:1,s:1,samp:1,small:1,span:1,strike:1,strong:1,
sub:1,sup:1,time:1,tt:1,u:1,"var":1},$tabIndex:{a:1,area:1,button:1,input:1,object:1,select:1,textarea:1},$tableContent:{caption:1,col:1,colgroup:1,tbody:1,td:1,tfoot:1,th:1,thead:1,tr:1},$transparent:{a:1,audio:1,canvas:1,del:1,ins:1,map:1,noscript:1,object:1,video:1},$intermediate:{caption:1,colgroup:1,dd:1,dt:1,figcaption:1,legend:1,li:1,optgroup:1,option:1,rp:1,rt:1,summary:1,tbody:1,td:1,tfoot:1,th:1,thead:1,tr:1}});return e}();CKEDITOR.dom.event=function(a){this.$=a};
CKEDITOR.dom.event.prototype={getKey:function(){return this.$.keyCode||this.$.which},getKeystroke:function(){var a=this.getKey();if(this.$.ctrlKey||this.$.metaKey)a=a+CKEDITOR.CTRL;this.$.shiftKey&&(a=a+CKEDITOR.SHIFT);this.$.altKey&&(a=a+CKEDITOR.ALT);return a},preventDefault:function(a){var e=this.$;e.preventDefault?e.preventDefault():e.returnValue=false;a&&this.stopPropagation()},stopPropagation:function(){var a=this.$;a.stopPropagation?a.stopPropagation():a.cancelBubble=true},getTarget:function(){var a=
this.$.target||this.$.srcElement;return a?new CKEDITOR.dom.node(a):null},getPhase:function(){return this.$.eventPhase||2},getPageOffset:function(){var a=this.getTarget().getDocument().$;return{x:this.$.pageX||this.$.clientX+(a.documentElement.scrollLeft||a.body.scrollLeft),y:this.$.pageY||this.$.clientY+(a.documentElement.scrollTop||a.body.scrollTop)}}};CKEDITOR.CTRL=1114112;CKEDITOR.SHIFT=2228224;CKEDITOR.ALT=4456448;CKEDITOR.EVENT_PHASE_CAPTURING=1;CKEDITOR.EVENT_PHASE_AT_TARGET=2;
CKEDITOR.EVENT_PHASE_BUBBLING=3;CKEDITOR.dom.domObject=function(a){if(a)this.$=a};
CKEDITOR.dom.domObject.prototype=function(){var a=function(a,b){return function(c){typeof CKEDITOR!="undefined"&&a.fire(b,new CKEDITOR.dom.event(c))}};return{getPrivate:function(){var a;if(!(a=this.getCustomData("_")))this.setCustomData("_",a={});return a},on:function(e){var b=this.getCustomData("_cke_nativeListeners");if(!b){b={};this.setCustomData("_cke_nativeListeners",b)}if(!b[e]){b=b[e]=a(this,e);this.$.addEventListener?this.$.addEventListener(e,b,!!CKEDITOR.event.useCapture):this.$.attachEvent&&
this.$.attachEvent("on"+e,b)}return CKEDITOR.event.prototype.on.apply(this,arguments)},removeListener:function(a){CKEDITOR.event.prototype.removeListener.apply(this,arguments);if(!this.hasListeners(a)){var b=this.getCustomData("_cke_nativeListeners"),c=b&&b[a];if(c){this.$.removeEventListener?this.$.removeEventListener(a,c,false):this.$.detachEvent&&this.$.detachEvent("on"+a,c);delete b[a]}}},removeAllListeners:function(){var a=this.getCustomData("_cke_nativeListeners"),b;for(b in a){var c=a[b];this.$.detachEvent?
this.$.detachEvent("on"+b,c):this.$.removeEventListener&&this.$.removeEventListener(b,c,false);delete a[b]}CKEDITOR.event.prototype.removeAllListeners.call(this)}}}();
(function(a){var e={};CKEDITOR.on("reset",function(){e={}});a.equals=function(a){try{return a&&a.$===this.$}catch(c){return false}};a.setCustomData=function(a,c){var f=this.getUniqueId();(e[f]||(e[f]={}))[a]=c;return this};a.getCustomData=function(a){var c=this.$["data-cke-expando"];return(c=c&&e[c])&&a in c?c[a]:null};a.removeCustomData=function(a){var c=this.$["data-cke-expando"],c=c&&e[c],f,d;if(c){f=c[a];d=a in c;delete c[a]}return d?f:null};a.clearCustomData=function(){this.removeAllListeners();
var a=this.$["data-cke-expando"];a&&delete e[a]};a.getUniqueId=function(){return this.$["data-cke-expando"]||(this.$["data-cke-expando"]=CKEDITOR.tools.getNextNumber())};CKEDITOR.event.implementOn(a)})(CKEDITOR.dom.domObject.prototype);
CKEDITOR.dom.node=function(a){return a?new CKEDITOR.dom[a.nodeType==CKEDITOR.NODE_DOCUMENT?"document":a.nodeType==CKEDITOR.NODE_ELEMENT?"element":a.nodeType==CKEDITOR.NODE_TEXT?"text":a.nodeType==CKEDITOR.NODE_COMMENT?"comment":a.nodeType==CKEDITOR.NODE_DOCUMENT_FRAGMENT?"documentFragment":"domObject"](a):this};CKEDITOR.dom.node.prototype=new CKEDITOR.dom.domObject;CKEDITOR.NODE_ELEMENT=1;CKEDITOR.NODE_DOCUMENT=9;CKEDITOR.NODE_TEXT=3;CKEDITOR.NODE_COMMENT=8;CKEDITOR.NODE_DOCUMENT_FRAGMENT=11;
CKEDITOR.POSITION_IDENTICAL=0;CKEDITOR.POSITION_DISCONNECTED=1;CKEDITOR.POSITION_FOLLOWING=2;CKEDITOR.POSITION_PRECEDING=4;CKEDITOR.POSITION_IS_CONTAINED=8;CKEDITOR.POSITION_CONTAINS=16;
CKEDITOR.tools.extend(CKEDITOR.dom.node.prototype,{appendTo:function(a,e){a.append(this,e);return a},clone:function(a,e){var b=this.$.cloneNode(a),c=function(f){f["data-cke-expando"]&&(f["data-cke-expando"]=false);if(f.nodeType==CKEDITOR.NODE_ELEMENT){e||f.removeAttribute("id",false);if(a)for(var f=f.childNodes,d=0;d<f.length;d++)c(f[d])}};c(b);return new CKEDITOR.dom.node(b)},hasPrevious:function(){return!!this.$.previousSibling},hasNext:function(){return!!this.$.nextSibling},insertAfter:function(a){a.$.parentNode.insertBefore(this.$,
a.$.nextSibling);return a},insertBefore:function(a){a.$.parentNode.insertBefore(this.$,a.$);return a},insertBeforeMe:function(a){this.$.parentNode.insertBefore(a.$,this.$);return a},getAddress:function(a){for(var e=[],b=this.getDocument().$.documentElement,c=this.$;c&&c!=b;){var f=c.parentNode;f&&e.unshift(this.getIndex.call({$:c},a));c=f}return e},getDocument:function(){return new CKEDITOR.dom.document(this.$.ownerDocument||this.$.parentNode.ownerDocument)},getIndex:function(a){function e(a,f){var b=
f?a.nextSibling:a.previousSibling;return!b||b.nodeType!=CKEDITOR.NODE_TEXT?null:b.nodeValue?b:e(b,f)}var b=this.$,c=-1,f;if(!this.$.parentNode||a&&b.nodeType==CKEDITOR.NODE_TEXT&&!b.nodeValue&&!e(b)&&!e(b,true))return-1;do if(!a||!(b!=this.$&&b.nodeType==CKEDITOR.NODE_TEXT&&(f||!b.nodeValue))){c++;f=b.nodeType==CKEDITOR.NODE_TEXT}while(b=b.previousSibling);return c},getNextSourceNode:function(a,e,b){if(b&&!b.call)var c=b,b=function(a){return!a.equals(c)};var a=!a&&this.getFirst&&this.getFirst(),f;
if(!a){if(this.type==CKEDITOR.NODE_ELEMENT&&b&&b(this,true)===false)return null;a=this.getNext()}for(;!a&&(f=(f||this).getParent());){if(b&&b(f,true)===false)return null;a=f.getNext()}return!a||b&&b(a)===false?null:e&&e!=a.type?a.getNextSourceNode(false,e,b):a},getPreviousSourceNode:function(a,e,b){if(b&&!b.call)var c=b,b=function(a){return!a.equals(c)};var a=!a&&this.getLast&&this.getLast(),f;if(!a){if(this.type==CKEDITOR.NODE_ELEMENT&&b&&b(this,true)===false)return null;a=this.getPrevious()}for(;!a&&
(f=(f||this).getParent());){if(b&&b(f,true)===false)return null;a=f.getPrevious()}return!a||b&&b(a)===false?null:e&&a.type!=e?a.getPreviousSourceNode(false,e,b):a},getPrevious:function(a){var e=this.$,b;do b=(e=e.previousSibling)&&e.nodeType!=10&&new CKEDITOR.dom.node(e);while(b&&a&&!a(b));return b},getNext:function(a){var e=this.$,b;do b=(e=e.nextSibling)&&new CKEDITOR.dom.node(e);while(b&&a&&!a(b));return b},getParent:function(a){var e=this.$.parentNode;return e&&(e.nodeType==CKEDITOR.NODE_ELEMENT||
a&&e.nodeType==CKEDITOR.NODE_DOCUMENT_FRAGMENT)?new CKEDITOR.dom.node(e):null},getParents:function(a){var e=this,b=[];do b[a?"push":"unshift"](e);while(e=e.getParent());return b},getCommonAncestor:function(a){if(a.equals(this))return this;if(a.contains&&a.contains(this))return a;var e=this.contains?this:this.getParent();do if(e.contains(a))return e;while(e=e.getParent());return null},getPosition:function(a){var e=this.$,b=a.$;if(e.compareDocumentPosition)return e.compareDocumentPosition(b);if(e==
b)return CKEDITOR.POSITION_IDENTICAL;if(this.type==CKEDITOR.NODE_ELEMENT&&a.type==CKEDITOR.NODE_ELEMENT){if(e.contains){if(e.contains(b))return CKEDITOR.POSITION_CONTAINS+CKEDITOR.POSITION_PRECEDING;if(b.contains(e))return CKEDITOR.POSITION_IS_CONTAINED+CKEDITOR.POSITION_FOLLOWING}if("sourceIndex"in e)return e.sourceIndex<0||b.sourceIndex<0?CKEDITOR.POSITION_DISCONNECTED:e.sourceIndex<b.sourceIndex?CKEDITOR.POSITION_PRECEDING:CKEDITOR.POSITION_FOLLOWING}for(var e=this.getAddress(),a=a.getAddress(),
b=Math.min(e.length,a.length),c=0;c<=b-1;c++)if(e[c]!=a[c]){if(c<b)return e[c]<a[c]?CKEDITOR.POSITION_PRECEDING:CKEDITOR.POSITION_FOLLOWING;break}return e.length<a.length?CKEDITOR.POSITION_CONTAINS+CKEDITOR.POSITION_PRECEDING:CKEDITOR.POSITION_IS_CONTAINED+CKEDITOR.POSITION_FOLLOWING},getAscendant:function(a,e){var b=this.$,c,f;if(!e)b=b.parentNode;if(typeof a=="function"){f=true;c=a}else{f=false;c=function(f){f=typeof f.nodeName=="string"?f.nodeName.toLowerCase():"";return typeof a=="string"?f==
a:f in a}}for(;b;){if(c(f?new CKEDITOR.dom.node(b):b))return new CKEDITOR.dom.node(b);try{b=b.parentNode}catch(d){b=null}}return null},hasAscendant:function(a,e){var b=this.$;if(!e)b=b.parentNode;for(;b;){if(b.nodeName&&b.nodeName.toLowerCase()==a)return true;b=b.parentNode}return false},move:function(a,e){a.append(this.remove(),e)},remove:function(a){var e=this.$,b=e.parentNode;if(b){if(a)for(;a=e.firstChild;)b.insertBefore(e.removeChild(a),e);b.removeChild(e)}return this},replace:function(a){this.insertBefore(a);
a.remove()},trim:function(){this.ltrim();this.rtrim()},ltrim:function(){for(var a;this.getFirst&&(a=this.getFirst());){if(a.type==CKEDITOR.NODE_TEXT){var e=CKEDITOR.tools.ltrim(a.getText()),b=a.getLength();if(e){if(e.length<b){a.split(b-e.length);this.$.removeChild(this.$.firstChild)}}else{a.remove();continue}}break}},rtrim:function(){for(var a;this.getLast&&(a=this.getLast());){if(a.type==CKEDITOR.NODE_TEXT){var e=CKEDITOR.tools.rtrim(a.getText()),b=a.getLength();if(e){if(e.length<b){a.split(e.length);
this.$.lastChild.parentNode.removeChild(this.$.lastChild)}}else{a.remove();continue}}break}if(CKEDITOR.env.needsBrFiller)(a=this.$.lastChild)&&(a.type==1&&a.nodeName.toLowerCase()=="br")&&a.parentNode.removeChild(a)},isReadOnly:function(){var a=this;this.type!=CKEDITOR.NODE_ELEMENT&&(a=this.getParent());if(a&&typeof a.$.isContentEditable!="undefined")return!(a.$.isContentEditable||a.data("cke-editable"));for(;a;){if(a.data("cke-editable"))break;if(a.getAttribute("contentEditable")=="false")return true;
if(a.getAttribute("contentEditable")=="true")break;a=a.getParent()}return!a}});CKEDITOR.dom.window=function(a){CKEDITOR.dom.domObject.call(this,a)};CKEDITOR.dom.window.prototype=new CKEDITOR.dom.domObject;
CKEDITOR.tools.extend(CKEDITOR.dom.window.prototype,{focus:function(){this.$.focus()},getViewPaneSize:function(){var a=this.$.document,e=a.compatMode=="CSS1Compat";return{width:(e?a.documentElement.clientWidth:a.body.clientWidth)||0,height:(e?a.documentElement.clientHeight:a.body.clientHeight)||0}},getScrollPosition:function(){var a=this.$;if("pageXOffset"in a)return{x:a.pageXOffset||0,y:a.pageYOffset||0};a=a.document;return{x:a.documentElement.scrollLeft||a.body.scrollLeft||0,y:a.documentElement.scrollTop||
a.body.scrollTop||0}},getFrame:function(){var a=this.$.frameElement;return a?new CKEDITOR.dom.element.get(a):null}});CKEDITOR.dom.document=function(a){CKEDITOR.dom.domObject.call(this,a)};CKEDITOR.dom.document.prototype=new CKEDITOR.dom.domObject;
CKEDITOR.tools.extend(CKEDITOR.dom.document.prototype,{type:CKEDITOR.NODE_DOCUMENT,appendStyleSheet:function(a){if(this.$.createStyleSheet)this.$.createStyleSheet(a);else{var e=new CKEDITOR.dom.element("link");e.setAttributes({rel:"stylesheet",type:"text/css",href:a});this.getHead().append(e)}},appendStyleText:function(a){if(this.$.createStyleSheet){var e=this.$.createStyleSheet("");e.cssText=a}else{var b=new CKEDITOR.dom.element("style",this);b.append(new CKEDITOR.dom.text(a,this));this.getHead().append(b)}return e||
b.$.sheet},createElement:function(a,e){var b=new CKEDITOR.dom.element(a,this);if(e){e.attributes&&b.setAttributes(e.attributes);e.styles&&b.setStyles(e.styles)}return b},createText:function(a){return new CKEDITOR.dom.text(a,this)},focus:function(){this.getWindow().focus()},getActive:function(){var a;try{a=this.$.activeElement}catch(e){return null}return new CKEDITOR.dom.element(a)},getById:function(a){return(a=this.$.getElementById(a))?new CKEDITOR.dom.element(a):null},getByAddress:function(a,e){for(var b=
this.$.documentElement,c=0;b&&c<a.length;c++){var f=a[c];if(e)for(var d=-1,h=0;h<b.childNodes.length;h++){var l=b.childNodes[h];if(!(e===true&&l.nodeType==3&&l.previousSibling&&l.previousSibling.nodeType==3)){d++;if(d==f){b=l;break}}}else b=b.childNodes[f]}return b?new CKEDITOR.dom.node(b):null},getElementsByTag:function(a,e){!(CKEDITOR.env.ie&&document.documentMode<=8)&&e&&(a=e+":"+a);return new CKEDITOR.dom.nodeList(this.$.getElementsByTagName(a))},getHead:function(){var a=this.$.getElementsByTagName("head")[0];
return a=a?new CKEDITOR.dom.element(a):this.getDocumentElement().append(new CKEDITOR.dom.element("head"),true)},getBody:function(){return new CKEDITOR.dom.element(this.$.body)},getDocumentElement:function(){return new CKEDITOR.dom.element(this.$.documentElement)},getWindow:function(){return new CKEDITOR.dom.window(this.$.parentWindow||this.$.defaultView)},write:function(a){this.$.open("text/html","replace");CKEDITOR.env.ie&&(a=a.replace(/(?:^\s*<!DOCTYPE[^>]*?>)|^/i,'$&\n<script data-cke-temp="1">('+
CKEDITOR.tools.fixDomain+")();<\/script>"));this.$.write(a);this.$.close()},find:function(a){return new CKEDITOR.dom.nodeList(this.$.querySelectorAll(a))},findOne:function(a){return(a=this.$.querySelector(a))?new CKEDITOR.dom.element(a):null},_getHtml5ShivFrag:function(){var a=this.getCustomData("html5ShivFrag");if(!a){a=this.$.createDocumentFragment();CKEDITOR.tools.enableHtml5Elements(a,true);this.setCustomData("html5ShivFrag",a)}return a}});CKEDITOR.dom.nodeList=function(a){this.$=a};
CKEDITOR.dom.nodeList.prototype={count:function(){return this.$.length},getItem:function(a){if(a<0||a>=this.$.length)return null;return(a=this.$[a])?new CKEDITOR.dom.node(a):null}};CKEDITOR.dom.element=function(a,e){typeof a=="string"&&(a=(e?e.$:document).createElement(a));CKEDITOR.dom.domObject.call(this,a)};CKEDITOR.dom.element.get=function(a){return(a=typeof a=="string"?document.getElementById(a)||document.getElementsByName(a)[0]:a)&&(a.$?a:new CKEDITOR.dom.element(a))};
CKEDITOR.dom.element.prototype=new CKEDITOR.dom.node;CKEDITOR.dom.element.createFromHtml=function(a,e){var b=new CKEDITOR.dom.element("div",e);b.setHtml(a);return b.getFirst().remove()};
CKEDITOR.dom.element.setMarker=function(a,e,b,c){var f=e.getCustomData("list_marker_id")||e.setCustomData("list_marker_id",CKEDITOR.tools.getNextNumber()).getCustomData("list_marker_id"),d=e.getCustomData("list_marker_names")||e.setCustomData("list_marker_names",{}).getCustomData("list_marker_names");a[f]=e;d[b]=1;return e.setCustomData(b,c)};CKEDITOR.dom.element.clearAllMarkers=function(a){for(var e in a)CKEDITOR.dom.element.clearMarkers(a,a[e],1)};
CKEDITOR.dom.element.clearMarkers=function(a,e,b){var c=e.getCustomData("list_marker_names"),f=e.getCustomData("list_marker_id"),d;for(d in c)e.removeCustomData(d);e.removeCustomData("list_marker_names");if(b){e.removeCustomData("list_marker_id");delete a[f]}};
(function(){function a(a){var d=true;if(!a.$.id){a.$.id="cke_tmp_"+CKEDITOR.tools.getNextNumber();d=false}return function(){d||a.removeAttribute("id")}}function e(a,d){return"#"+a.$.id+" "+d.split(/,\s*/).join(", #"+a.$.id+" ")}function b(a){for(var d=0,b=0,e=c[a].length;b<e;b++)d=d+(parseInt(this.getComputedStyle(c[a][b])||0,10)||0);return d}CKEDITOR.tools.extend(CKEDITOR.dom.element.prototype,{type:CKEDITOR.NODE_ELEMENT,addClass:function(a){var d=this.$.className;d&&(RegExp("(?:^|\\s)"+a+"(?:\\s|$)",
"").test(d)||(d=d+(" "+a)));this.$.className=d||a;return this},removeClass:function(a){var d=this.getAttribute("class");if(d){a=RegExp("(?:^|\\s+)"+a+"(?=\\s|$)","i");if(a.test(d))(d=d.replace(a,"").replace(/^\s+/,""))?this.setAttribute("class",d):this.removeAttribute("class")}return this},hasClass:function(a){return RegExp("(?:^|\\s+)"+a+"(?=\\s|$)","").test(this.getAttribute("class"))},append:function(a,d){typeof a=="string"&&(a=this.getDocument().createElement(a));d?this.$.insertBefore(a.$,this.$.firstChild):
this.$.appendChild(a.$);return a},appendHtml:function(a){if(this.$.childNodes.length){var d=new CKEDITOR.dom.element("div",this.getDocument());d.setHtml(a);d.moveChildren(this)}else this.setHtml(a)},appendText:function(a){this.$.text!=null?this.$.text=this.$.text+a:this.append(new CKEDITOR.dom.text(a))},appendBogus:function(a){if(a||CKEDITOR.env.needsBrFiller){for(a=this.getLast();a&&a.type==CKEDITOR.NODE_TEXT&&!CKEDITOR.tools.rtrim(a.getText());)a=a.getPrevious();if(!a||!a.is||!a.is("br")){a=this.getDocument().createElement("br");
CKEDITOR.env.gecko&&a.setAttribute("type","_moz");this.append(a)}}},breakParent:function(a){var d=new CKEDITOR.dom.range(this.getDocument());d.setStartAfter(this);d.setEndAfter(a);a=d.extractContents();d.insertNode(this.remove());a.insertAfterNode(this)},contains:CKEDITOR.env.ie||CKEDITOR.env.webkit?function(a){var d=this.$;return a.type!=CKEDITOR.NODE_ELEMENT?d.contains(a.getParent().$):d!=a.$&&d.contains(a.$)}:function(a){return!!(this.$.compareDocumentPosition(a.$)&16)},focus:function(){function a(){try{this.$.focus()}catch(f){}}
return function(d){d?CKEDITOR.tools.setTimeout(a,100,this):a.call(this)}}(),getHtml:function(){var a=this.$.innerHTML;return CKEDITOR.env.ie?a.replace(/<\?[^>]*>/g,""):a},getOuterHtml:function(){if(this.$.outerHTML)return this.$.outerHTML.replace(/<\?[^>]*>/,"");var a=this.$.ownerDocument.createElement("div");a.appendChild(this.$.cloneNode(true));return a.innerHTML},getClientRect:function(){var a=CKEDITOR.tools.extend({},this.$.getBoundingClientRect());!a.width&&(a.width=a.right-a.left);!a.height&&
(a.height=a.bottom-a.top);return a},setHtml:CKEDITOR.env.ie&&CKEDITOR.env.version<9?function(a){try{var d=this.$;if(this.getParent())return d.innerHTML=a;var b=this.getDocument()._getHtml5ShivFrag();b.appendChild(d);d.innerHTML=a;b.removeChild(d);return a}catch(c){this.$.innerHTML="";d=new CKEDITOR.dom.element("body",this.getDocument());d.$.innerHTML=a;for(d=d.getChildren();d.count();)this.append(d.getItem(0));return a}}:function(a){return this.$.innerHTML=a},setText:function(){var a=document.createElement("p");
a.innerHTML="x";a=a.textContent;return function(d){this.$[a?"textContent":"innerText"]=d}}(),getAttribute:function(){var a=function(a){return this.$.getAttribute(a,2)};return CKEDITOR.env.ie&&(CKEDITOR.env.ie7Compat||CKEDITOR.env.quirks)?function(a){switch(a){case "class":a="className";break;case "http-equiv":a="httpEquiv";break;case "name":return this.$.name;case "tabindex":a=this.$.getAttribute(a,2);a!==0&&this.$.tabIndex===0&&(a=null);return a;case "checked":a=this.$.attributes.getNamedItem(a);
return(a.specified?a.nodeValue:this.$.checked)?"checked":null;case "hspace":case "value":return this.$[a];case "style":return this.$.style.cssText;case "contenteditable":case "contentEditable":return this.$.attributes.getNamedItem("contentEditable").specified?this.$.getAttribute("contentEditable"):null}return this.$.getAttribute(a,2)}:a}(),getChildren:function(){return new CKEDITOR.dom.nodeList(this.$.childNodes)},getComputedStyle:CKEDITOR.env.ie?function(a){return this.$.currentStyle[CKEDITOR.tools.cssStyleToDomStyle(a)]}:
function(a){var d=this.getWindow().$.getComputedStyle(this.$,null);return d?d.getPropertyValue(a):""},getDtd:function(){var a=CKEDITOR.dtd[this.getName()];this.getDtd=function(){return a};return a},getElementsByTag:CKEDITOR.dom.document.prototype.getElementsByTag,getTabIndex:CKEDITOR.env.ie?function(){var a=this.$.tabIndex;a===0&&(!CKEDITOR.dtd.$tabIndex[this.getName()]&&parseInt(this.getAttribute("tabindex"),10)!==0)&&(a=-1);return a}:CKEDITOR.env.webkit?function(){var a=this.$.tabIndex;if(a===void 0){a=
parseInt(this.getAttribute("tabindex"),10);isNaN(a)&&(a=-1)}return a}:function(){return this.$.tabIndex},getText:function(){return this.$.textContent||this.$.innerText||""},getWindow:function(){return this.getDocument().getWindow()},getId:function(){return this.$.id||null},getNameAtt:function(){return this.$.name||null},getName:function(){var a=this.$.nodeName.toLowerCase();if(CKEDITOR.env.ie&&document.documentMode<=8){var d=this.$.scopeName;d!="HTML"&&(a=d.toLowerCase()+":"+a)}this.getName=function(){return a};
return this.getName()},getValue:function(){return this.$.value},getFirst:function(a){var d=this.$.firstChild;(d=d&&new CKEDITOR.dom.node(d))&&(a&&!a(d))&&(d=d.getNext(a));return d},getLast:function(a){var d=this.$.lastChild;(d=d&&new CKEDITOR.dom.node(d))&&(a&&!a(d))&&(d=d.getPrevious(a));return d},getStyle:function(a){return this.$.style[CKEDITOR.tools.cssStyleToDomStyle(a)]},is:function(){var a=this.getName();if(typeof arguments[0]=="object")return!!arguments[0][a];for(var d=0;d<arguments.length;d++)if(arguments[d]==
a)return true;return false},isEditable:function(a){var d=this.getName();if(this.isReadOnly()||this.getComputedStyle("display")=="none"||this.getComputedStyle("visibility")=="hidden"||CKEDITOR.dtd.$nonEditable[d]||CKEDITOR.dtd.$empty[d]||this.is("a")&&(this.data("cke-saved-name")||this.hasAttribute("name"))&&!this.getChildCount())return false;if(a!==false){a=CKEDITOR.dtd[d]||CKEDITOR.dtd.span;return!(!a||!a["#"])}return true},isIdentical:function(a){var d=this.clone(0,1),a=a.clone(0,1);d.removeAttributes(["_moz_dirty",
"data-cke-expando","data-cke-saved-href","data-cke-saved-name"]);a.removeAttributes(["_moz_dirty","data-cke-expando","data-cke-saved-href","data-cke-saved-name"]);if(d.$.isEqualNode){d.$.style.cssText=CKEDITOR.tools.normalizeCssText(d.$.style.cssText);a.$.style.cssText=CKEDITOR.tools.normalizeCssText(a.$.style.cssText);return d.$.isEqualNode(a.$)}d=d.getOuterHtml();a=a.getOuterHtml();if(CKEDITOR.env.ie&&CKEDITOR.env.version<9&&this.is("a")){var b=this.getParent();if(b.type==CKEDITOR.NODE_ELEMENT){b=
b.clone();b.setHtml(d);d=b.getHtml();b.setHtml(a);a=b.getHtml()}}return d==a},isVisible:function(){var a=(this.$.offsetHeight||this.$.offsetWidth)&&this.getComputedStyle("visibility")!="hidden",d,b;if(a&&CKEDITOR.env.webkit){d=this.getWindow();if(!d.equals(CKEDITOR.document.getWindow())&&(b=d.$.frameElement))a=(new CKEDITOR.dom.element(b)).isVisible()}return!!a},isEmptyInlineRemoveable:function(){if(!CKEDITOR.dtd.$removeEmpty[this.getName()])return false;for(var a=this.getChildren(),d=0,b=a.count();d<
b;d++){var c=a.getItem(d);if(!(c.type==CKEDITOR.NODE_ELEMENT&&c.data("cke-bookmark"))&&(c.type==CKEDITOR.NODE_ELEMENT&&!c.isEmptyInlineRemoveable()||c.type==CKEDITOR.NODE_TEXT&&CKEDITOR.tools.trim(c.getText())))return false}return true},hasAttributes:CKEDITOR.env.ie&&(CKEDITOR.env.ie7Compat||CKEDITOR.env.quirks)?function(){for(var a=this.$.attributes,d=0;d<a.length;d++){var b=a[d];switch(b.nodeName){case "class":if(this.getAttribute("class"))return true;case "data-cke-expando":continue;default:if(b.specified)return true}}return false}:
function(){var a=this.$.attributes,d=a.length,b={"data-cke-expando":1,_moz_dirty:1};return d>0&&(d>2||!b[a[0].nodeName]||d==2&&!b[a[1].nodeName])},hasAttribute:function(){function a(d){var f=this.$.attributes.getNamedItem(d);if(this.getName()=="input")switch(d){case "class":return this.$.className.length>0;case "checked":return!!this.$.checked;case "value":d=this.getAttribute("type");return d=="checkbox"||d=="radio"?this.$.value!="on":!!this.$.value}return!f?false:f.specified}return CKEDITOR.env.ie?
CKEDITOR.env.version<8?function(d){return d=="name"?!!this.$.name:a.call(this,d)}:a:function(a){return!!this.$.attributes.getNamedItem(a)}}(),hide:function(){this.setStyle("display","none")},moveChildren:function(a,d){var b=this.$,a=a.$;if(b!=a){var c;if(d)for(;c=b.lastChild;)a.insertBefore(b.removeChild(c),a.firstChild);else for(;c=b.firstChild;)a.appendChild(b.removeChild(c))}},mergeSiblings:function(){function a(d,b,f){if(b&&b.type==CKEDITOR.NODE_ELEMENT){for(var c=[];b.data("cke-bookmark")||b.isEmptyInlineRemoveable();){c.push(b);
b=f?b.getNext():b.getPrevious();if(!b||b.type!=CKEDITOR.NODE_ELEMENT)return}if(d.isIdentical(b)){for(var e=f?d.getLast():d.getFirst();c.length;)c.shift().move(d,!f);b.moveChildren(d,!f);b.remove();e&&e.type==CKEDITOR.NODE_ELEMENT&&e.mergeSiblings()}}}return function(d){if(d===false||CKEDITOR.dtd.$removeEmpty[this.getName()]||this.is("a")){a(this,this.getNext(),true);a(this,this.getPrevious())}}}(),show:function(){this.setStyles({display:"",visibility:""})},setAttribute:function(){var a=function(a,
b){this.$.setAttribute(a,b);return this};return CKEDITOR.env.ie&&(CKEDITOR.env.ie7Compat||CKEDITOR.env.quirks)?function(d,b){d=="class"?this.$.className=b:d=="style"?this.$.style.cssText=b:d=="tabindex"?this.$.tabIndex=b:d=="checked"?this.$.checked=b:d=="contenteditable"?a.call(this,"contentEditable",b):a.apply(this,arguments);return this}:CKEDITOR.env.ie8Compat&&CKEDITOR.env.secure?function(d,b){if(d=="src"&&b.match(/^http:\/\//))try{a.apply(this,arguments)}catch(c){}else a.apply(this,arguments);
return this}:a}(),setAttributes:function(a){for(var d in a)this.setAttribute(d,a[d]);return this},setValue:function(a){this.$.value=a;return this},removeAttribute:function(){var a=function(a){this.$.removeAttribute(a)};return CKEDITOR.env.ie&&(CKEDITOR.env.ie7Compat||CKEDITOR.env.quirks)?function(a){a=="class"?a="className":a=="tabindex"?a="tabIndex":a=="contenteditable"&&(a="contentEditable");this.$.removeAttribute(a)}:a}(),removeAttributes:function(a){if(CKEDITOR.tools.isArray(a))for(var b=0;b<
a.length;b++)this.removeAttribute(a[b]);else for(b in a)a.hasOwnProperty(b)&&this.removeAttribute(b)},removeStyle:function(a){var b=this.$.style;if(!b.removeProperty&&(a=="border"||a=="margin"||a=="padding")){var c=["top","left","right","bottom"],e;a=="border"&&(e=["color","style","width"]);for(var b=[],i=0;i<c.length;i++)if(e)for(var g=0;g<e.length;g++)b.push([a,c[i],e[g]].join("-"));else b.push([a,c[i]].join("-"));for(a=0;a<b.length;a++)this.removeStyle(b[a])}else{b.removeProperty?b.removeProperty(a):
b.removeAttribute(CKEDITOR.tools.cssStyleToDomStyle(a));this.$.style.cssText||this.removeAttribute("style")}},setStyle:function(a,b){this.$.style[CKEDITOR.tools.cssStyleToDomStyle(a)]=b;return this},setStyles:function(a){for(var b in a)this.setStyle(b,a[b]);return this},setOpacity:function(a){if(CKEDITOR.env.ie&&CKEDITOR.env.version<9){a=Math.round(a*100);this.setStyle("filter",a>=100?"":"progid:DXImageTransform.Microsoft.Alpha(opacity="+a+")")}else this.setStyle("opacity",a)},unselectable:function(){this.setStyles(CKEDITOR.tools.cssVendorPrefix("user-select",
"none"));if(CKEDITOR.env.ie){this.setAttribute("unselectable","on");for(var a,b=this.getElementsByTag("*"),c=0,e=b.count();c<e;c++){a=b.getItem(c);a.setAttribute("unselectable","on")}}},getPositionedAncestor:function(){for(var a=this;a.getName()!="html";){if(a.getComputedStyle("position")!="static")return a;a=a.getParent()}return null},getDocumentPosition:function(a){var b=0,c=0,e=this.getDocument(),i=e.getBody(),g=e.$.compatMode=="BackCompat";if(document.documentElement.getBoundingClientRect){var m=
this.$.getBoundingClientRect(),t=e.$.documentElement,s=t.clientTop||i.$.clientTop||0,y=t.clientLeft||i.$.clientLeft||0,p=true;if(CKEDITOR.env.ie){p=e.getDocumentElement().contains(this);e=e.getBody().contains(this);p=g&&e||!g&&p}if(p){b=m.left+(!g&&t.scrollLeft||i.$.scrollLeft);b=b-y;c=m.top+(!g&&t.scrollTop||i.$.scrollTop);c=c-s}}else{i=this;for(e=null;i&&!(i.getName()=="body"||i.getName()=="html");){b=b+(i.$.offsetLeft-i.$.scrollLeft);c=c+(i.$.offsetTop-i.$.scrollTop);if(!i.equals(this)){b=b+(i.$.clientLeft||
0);c=c+(i.$.clientTop||0)}for(;e&&!e.equals(i);){b=b-e.$.scrollLeft;c=c-e.$.scrollTop;e=e.getParent()}e=i;i=(m=i.$.offsetParent)?new CKEDITOR.dom.element(m):null}}if(a){i=this.getWindow();e=a.getWindow();if(!i.equals(e)&&i.$.frameElement){a=(new CKEDITOR.dom.element(i.$.frameElement)).getDocumentPosition(a);b=b+a.x;c=c+a.y}}if(!document.documentElement.getBoundingClientRect&&CKEDITOR.env.gecko&&!g){b=b+(this.$.clientLeft?1:0);c=c+(this.$.clientTop?1:0)}return{x:b,y:c}},scrollIntoView:function(a){var b=
this.getParent();if(b){do{(b.$.clientWidth&&b.$.clientWidth<b.$.scrollWidth||b.$.clientHeight&&b.$.clientHeight<b.$.scrollHeight)&&!b.is("body")&&this.scrollIntoParent(b,a,1);if(b.is("html")){var c=b.getWindow();try{var e=c.$.frameElement;e&&(b=new CKEDITOR.dom.element(e))}catch(i){}}}while(b=b.getParent())}},scrollIntoParent:function(a,b,c){var e,i,g,m;function t(b,d){if(/body|html/.test(a.getName()))a.getWindow().$.scrollBy(b,d);else{a.$.scrollLeft=a.$.scrollLeft+b;a.$.scrollTop=a.$.scrollTop+d}}
function s(a,b){var d={x:0,y:0};if(!a.is(p?"body":"html")){var c=a.$.getBoundingClientRect();d.x=c.left;d.y=c.top}c=a.getWindow();if(!c.equals(b)){c=s(CKEDITOR.dom.element.get(c.$.frameElement),b);d.x=d.x+c.x;d.y=d.y+c.y}return d}function y(a,b){return parseInt(a.getComputedStyle("margin-"+b)||0,10)||0}!a&&(a=this.getWindow());g=a.getDocument();var p=g.$.compatMode=="BackCompat";a instanceof CKEDITOR.dom.window&&(a=p?g.getBody():g.getDocumentElement());g=a.getWindow();i=s(this,g);var q=s(a,g),j=this.$.offsetHeight;
e=this.$.offsetWidth;var u=a.$.clientHeight,v=a.$.clientWidth;g=i.x-y(this,"left")-q.x||0;m=i.y-y(this,"top")-q.y||0;e=i.x+e+y(this,"right")-(q.x+v)||0;i=i.y+j+y(this,"bottom")-(q.y+u)||0;if(m<0||i>0)t(0,b===true?m:b===false?i:m<0?m:i);if(c&&(g<0||e>0))t(g<0?g:e,0)},setState:function(a,b,c){b=b||"cke";switch(a){case CKEDITOR.TRISTATE_ON:this.addClass(b+"_on");this.removeClass(b+"_off");this.removeClass(b+"_disabled");c&&this.setAttribute("aria-pressed",true);c&&this.removeAttribute("aria-disabled");
break;case CKEDITOR.TRISTATE_DISABLED:this.addClass(b+"_disabled");this.removeClass(b+"_off");this.removeClass(b+"_on");c&&this.setAttribute("aria-disabled",true);c&&this.removeAttribute("aria-pressed");break;default:this.addClass(b+"_off");this.removeClass(b+"_on");this.removeClass(b+"_disabled");c&&this.removeAttribute("aria-pressed");c&&this.removeAttribute("aria-disabled")}},getFrameDocument:function(){var a=this.$;try{a.contentWindow.document}catch(b){a.src=a.src}return a&&new CKEDITOR.dom.document(a.contentWindow.document)},
copyAttributes:function(a,b){for(var c=this.$.attributes,b=b||{},e=0;e<c.length;e++){var i=c[e],g=i.nodeName.toLowerCase(),m;if(!(g in b))if(g=="checked"&&(m=this.getAttribute(g)))a.setAttribute(g,m);else if(!CKEDITOR.env.ie||this.hasAttribute(g)){m=this.getAttribute(g);if(m===null)m=i.nodeValue;a.setAttribute(g,m)}}if(this.$.style.cssText!=="")a.$.style.cssText=this.$.style.cssText},renameNode:function(a){if(this.getName()!=a){var b=this.getDocument(),a=new CKEDITOR.dom.element(a,b);this.copyAttributes(a);
this.moveChildren(a);this.getParent()&&this.$.parentNode.replaceChild(a.$,this.$);a.$["data-cke-expando"]=this.$["data-cke-expando"];this.$=a.$;delete this.getName}},getChild:function(){function a(b,c){var f=b.childNodes;if(c>=0&&c<f.length)return f[c]}return function(b){var c=this.$;if(b.slice)for(;b.length>0&&c;)c=a(c,b.shift());else c=a(c,b);return c?new CKEDITOR.dom.node(c):null}}(),getChildCount:function(){return this.$.childNodes.length},disableContextMenu:function(){this.on("contextmenu",function(a){a.data.getTarget().hasClass("cke_enable_context_menu")||
a.data.preventDefault()})},getDirection:function(a){return a?this.getComputedStyle("direction")||this.getDirection()||this.getParent()&&this.getParent().getDirection(1)||this.getDocument().$.dir||"ltr":this.getStyle("direction")||this.getAttribute("dir")},data:function(a,b){a="data-"+a;if(b===void 0)return this.getAttribute(a);b===false?this.removeAttribute(a):this.setAttribute(a,b);return null},getEditor:function(){var a=CKEDITOR.instances,b,c;for(b in a){c=a[b];if(c.element.equals(this)&&c.elementMode!=
CKEDITOR.ELEMENT_MODE_APPENDTO)return c}return null},find:function(b){var c=a(this),b=new CKEDITOR.dom.nodeList(this.$.querySelectorAll(e(this,b)));c();return b},findOne:function(b){var c=a(this),b=this.$.querySelector(e(this,b));c();return b?new CKEDITOR.dom.element(b):null},forEach:function(a,b,c){if(!c&&(!b||this.type==b))var e=a(this);if(e!==false)for(var c=this.getChildren(),i=0;i<c.count();i++){e=c.getItem(i);e.type==CKEDITOR.NODE_ELEMENT?e.forEach(a,b):(!b||e.type==b)&&a(e)}}});var c={width:["border-left-width",
"border-right-width","padding-left","padding-right"],height:["border-top-width","border-bottom-width","padding-top","padding-bottom"]};CKEDITOR.dom.element.prototype.setSize=function(a,c,e){if(typeof c=="number"){if(e&&(!CKEDITOR.env.ie||!CKEDITOR.env.quirks))c=c-b.call(this,a);this.setStyle(a,c+"px")}};CKEDITOR.dom.element.prototype.getSize=function(a,c){var e=Math.max(this.$["offset"+CKEDITOR.tools.capitalize(a)],this.$["client"+CKEDITOR.tools.capitalize(a)])||0;c&&(e=e-b.call(this,a));return e}})();
CKEDITOR.dom.documentFragment=function(a){a=a||CKEDITOR.document;this.$=a.type==CKEDITOR.NODE_DOCUMENT?a.$.createDocumentFragment():a};
CKEDITOR.tools.extend(CKEDITOR.dom.documentFragment.prototype,CKEDITOR.dom.element.prototype,{type:CKEDITOR.NODE_DOCUMENT_FRAGMENT,insertAfterNode:function(a){a=a.$;a.parentNode.insertBefore(this.$,a.nextSibling)}},!0,{append:1,appendBogus:1,getFirst:1,getLast:1,getParent:1,getNext:1,getPrevious:1,appendTo:1,moveChildren:1,insertBefore:1,insertAfterNode:1,replace:1,trim:1,type:1,ltrim:1,rtrim:1,getDocument:1,getChildCount:1,getChild:1,getChildren:1});
(function(){function a(a,b){var c=this.range;if(this._.end)return null;if(!this._.start){this._.start=1;if(c.collapsed){this.end();return null}c.optimize()}var d,f=c.startContainer;d=c.endContainer;var m=c.startOffset,e=c.endOffset,h,E=this.guard,k=this.type,n=a?"getPreviousSourceNode":"getNextSourceNode";if(!a&&!this._.guardLTR){var r=d.type==CKEDITOR.NODE_ELEMENT?d:d.getParent(),o=d.type==CKEDITOR.NODE_ELEMENT?d.getChild(e):d.getNext();this._.guardLTR=function(a,b){return(!b||!r.equals(a))&&(!o||
!a.equals(o))&&(a.type!=CKEDITOR.NODE_ELEMENT||!b||!a.equals(c.root))}}if(a&&!this._.guardRTL){var g=f.type==CKEDITOR.NODE_ELEMENT?f:f.getParent(),D=f.type==CKEDITOR.NODE_ELEMENT?m?f.getChild(m-1):null:f.getPrevious();this._.guardRTL=function(a,b){return(!b||!g.equals(a))&&(!D||!a.equals(D))&&(a.type!=CKEDITOR.NODE_ELEMENT||!b||!a.equals(c.root))}}var i=a?this._.guardRTL:this._.guardLTR;h=E?function(a,b){return i(a,b)===false?false:E(a,b)}:i;if(this.current)d=this.current[n](false,k,h);else{if(a)d.type==
CKEDITOR.NODE_ELEMENT&&(d=e>0?d.getChild(e-1):h(d,true)===false?null:d.getPreviousSourceNode(true,k,h));else{d=f;if(d.type==CKEDITOR.NODE_ELEMENT&&!(d=d.getChild(m)))d=h(f,true)===false?null:f.getNextSourceNode(true,k,h)}d&&h(d)===false&&(d=null)}for(;d&&!this._.end;){this.current=d;if(!this.evaluator||this.evaluator(d)!==false){if(!b)return d}else if(b&&this.evaluator)return false;d=d[n](false,k,h)}this.end();return this.current=null}function e(b){for(var c,d=null;c=a.call(this,b);)d=c;return d}
function b(a){if(g(a))return false;if(a.type==CKEDITOR.NODE_TEXT)return true;if(a.type==CKEDITOR.NODE_ELEMENT){if(a.is(CKEDITOR.dtd.$inline)||a.is("hr")||a.getAttribute("contenteditable")=="false")return true;var b;if(b=!CKEDITOR.env.needsBrFiller)if(b=a.is(m))a:{b=0;for(var c=a.getChildCount();b<c;++b)if(!g(a.getChild(b))){b=false;break a}b=true}if(b)return true}return false}CKEDITOR.dom.walker=CKEDITOR.tools.createClass({$:function(a){this.range=a;this._={}},proto:{end:function(){this._.end=1},
next:function(){return a.call(this)},previous:function(){return a.call(this,1)},checkForward:function(){return a.call(this,0,1)!==false},checkBackward:function(){return a.call(this,1,1)!==false},lastForward:function(){return e.call(this)},lastBackward:function(){return e.call(this,1)},reset:function(){delete this.current;this._={}}}});var c={block:1,"list-item":1,table:1,"table-row-group":1,"table-header-group":1,"table-footer-group":1,"table-row":1,"table-column-group":1,"table-column":1,"table-cell":1,
"table-caption":1},f={absolute:1,fixed:1};CKEDITOR.dom.element.prototype.isBlockBoundary=function(a){return this.getComputedStyle("float")=="none"&&!(this.getComputedStyle("position")in f)&&c[this.getComputedStyle("display")]?true:!!(this.is(CKEDITOR.dtd.$block)||a&&this.is(a))};CKEDITOR.dom.walker.blockBoundary=function(a){return function(b){return!(b.type==CKEDITOR.NODE_ELEMENT&&b.isBlockBoundary(a))}};CKEDITOR.dom.walker.listItemBoundary=function(){return this.blockBoundary({br:1})};CKEDITOR.dom.walker.bookmark=
function(a,b){function c(a){return a&&a.getName&&a.getName()=="span"&&a.data("cke-bookmark")}return function(d){var f,m;f=d&&d.type!=CKEDITOR.NODE_ELEMENT&&(m=d.getParent())&&c(m);f=a?f:f||c(d);return!!(b^f)}};CKEDITOR.dom.walker.whitespaces=function(a){return function(b){var c;b&&b.type==CKEDITOR.NODE_TEXT&&(c=!CKEDITOR.tools.trim(b.getText())||CKEDITOR.env.webkit&&b.getText()=="​");return!!(a^c)}};CKEDITOR.dom.walker.invisible=function(a){var b=CKEDITOR.dom.walker.whitespaces(),c=CKEDITOR.env.webkit?
1:0;return function(d){if(b(d))d=1;else{d.type==CKEDITOR.NODE_TEXT&&(d=d.getParent());d=d.$.offsetWidth<=c}return!!(a^d)}};CKEDITOR.dom.walker.nodeType=function(a,b){return function(c){return!!(b^c.type==a)}};CKEDITOR.dom.walker.bogus=function(a){function b(a){return!h(a)&&!l(a)}return function(c){var f=CKEDITOR.env.needsBrFiller?c.is&&c.is("br"):c.getText&&d.test(c.getText());if(f){f=c.getParent();c=c.getNext(b);f=f.isBlockBoundary()&&(!c||c.type==CKEDITOR.NODE_ELEMENT&&c.isBlockBoundary())}return!!(a^
f)}};CKEDITOR.dom.walker.temp=function(a){return function(b){b.type!=CKEDITOR.NODE_ELEMENT&&(b=b.getParent());b=b&&b.hasAttribute("data-cke-temp");return!!(a^b)}};var d=/^[\t\r\n ]*(?:&nbsp;|\xa0)$/,h=CKEDITOR.dom.walker.whitespaces(),l=CKEDITOR.dom.walker.bookmark(),i=CKEDITOR.dom.walker.temp();CKEDITOR.dom.walker.ignored=function(a){return function(b){b=h(b)||l(b)||i(b);return!!(a^b)}};var g=CKEDITOR.dom.walker.ignored(),m=function(a){var b={},c;for(c in a)CKEDITOR.dtd[c]["#"]&&(b[c]=1);return b}(CKEDITOR.dtd.$block);
CKEDITOR.dom.walker.editable=function(a){return function(c){return!!(a^b(c))}};CKEDITOR.dom.element.prototype.getBogus=function(){var a=this;do a=a.getPreviousSourceNode();while(l(a)||h(a)||a.type==CKEDITOR.NODE_ELEMENT&&a.is(CKEDITOR.dtd.$inline)&&!a.is(CKEDITOR.dtd.$empty));return a&&(CKEDITOR.env.needsBrFiller?a.is&&a.is("br"):a.getText&&d.test(a.getText()))?a:false}})();
CKEDITOR.dom.range=function(a){this.endOffset=this.endContainer=this.startOffset=this.startContainer=null;this.collapsed=true;var e=a instanceof CKEDITOR.dom.document;this.document=e?a:a.getDocument();this.root=e?a.getBody():a};
(function(){function a(){var a=false,b=CKEDITOR.dom.walker.whitespaces(),c=CKEDITOR.dom.walker.bookmark(true),f=CKEDITOR.dom.walker.bogus();return function(e){if(c(e)||b(e))return true;if(f(e)&&!a)return a=true;return e.type==CKEDITOR.NODE_TEXT&&(e.hasAscendant("pre")||CKEDITOR.tools.trim(e.getText()).length)||e.type==CKEDITOR.NODE_ELEMENT&&!e.is(d)?false:true}}function e(a){var b=CKEDITOR.dom.walker.whitespaces(),c=CKEDITOR.dom.walker.bookmark(1);return function(d){return c(d)||b(d)?true:!a&&h(d)||
d.type==CKEDITOR.NODE_ELEMENT&&d.is(CKEDITOR.dtd.$removeEmpty)}}function b(a){return function(){var b;return this[a?"getPreviousNode":"getNextNode"](function(a){!b&&g(a)&&(b=a);return i(a)&&!(h(a)&&a.equals(b))})}}var c=function(a){a.collapsed=a.startContainer&&a.endContainer&&a.startContainer.equals(a.endContainer)&&a.startOffset==a.endOffset},f=function(a,b,c,d){a.optimizeBookmark();var f=a.startContainer,e=a.endContainer,j=a.startOffset,u=a.endOffset,h,g;if(e.type==CKEDITOR.NODE_TEXT)e=e.split(u);
else if(e.getChildCount()>0)if(u>=e.getChildCount()){e=e.append(a.document.createText(""));g=true}else e=e.getChild(u);if(f.type==CKEDITOR.NODE_TEXT){f.split(j);f.equals(e)&&(e=f.getNext())}else if(j)if(j>=f.getChildCount()){f=f.append(a.document.createText(""));h=true}else f=f.getChild(j).getPrevious();else{f=f.append(a.document.createText(""),1);h=true}var j=f.getParents(),u=e.getParents(),k,n,r;for(k=0;k<j.length;k++){n=j[k];r=u[k];if(!n.equals(r))break}for(var o=c,i,D,l,z=k;z<j.length;z++){i=
j[z];o&&!i.equals(f)&&(D=o.append(i.clone()));for(i=i.getNext();i;){if(i.equals(u[z])||i.equals(e))break;l=i.getNext();if(b==2)o.append(i.clone(true));else{i.remove();b==1&&o.append(i)}i=l}o&&(o=D)}o=c;for(c=k;c<u.length;c++){i=u[c];b>0&&!i.equals(e)&&(D=o.append(i.clone()));if(!j[c]||i.$.parentNode!=j[c].$.parentNode)for(i=i.getPrevious();i;){if(i.equals(j[c])||i.equals(f))break;l=i.getPrevious();if(b==2)o.$.insertBefore(i.$.cloneNode(true),o.$.firstChild);else{i.remove();b==1&&o.$.insertBefore(i.$,
o.$.firstChild)}i=l}o&&(o=D)}if(b==2){n=a.startContainer;if(n.type==CKEDITOR.NODE_TEXT){n.$.data=n.$.data+n.$.nextSibling.data;n.$.parentNode.removeChild(n.$.nextSibling)}a=a.endContainer;if(a.type==CKEDITOR.NODE_TEXT&&a.$.nextSibling){a.$.data=a.$.data+a.$.nextSibling.data;a.$.parentNode.removeChild(a.$.nextSibling)}}else{if(n&&r&&(f.$.parentNode!=n.$.parentNode||e.$.parentNode!=r.$.parentNode)){b=r.getIndex();h&&r.$.parentNode==f.$.parentNode&&b--;if(d&&n.type==CKEDITOR.NODE_ELEMENT){d=CKEDITOR.dom.element.createFromHtml('<span data-cke-bookmark="1" style="display:none">&nbsp;</span>',
a.document);d.insertAfter(n);n.mergeSiblings(false);a.moveToBookmark({startNode:d})}else a.setStart(r.getParent(),b)}a.collapse(true)}h&&f.remove();g&&e.$.parentNode&&e.remove()},d={abbr:1,acronym:1,b:1,bdo:1,big:1,cite:1,code:1,del:1,dfn:1,em:1,font:1,i:1,ins:1,label:1,kbd:1,q:1,samp:1,small:1,span:1,strike:1,strong:1,sub:1,sup:1,tt:1,u:1,"var":1},h=CKEDITOR.dom.walker.bogus(),l=/^[\t\r\n ]*(?:&nbsp;|\xa0)$/,i=CKEDITOR.dom.walker.editable(),g=CKEDITOR.dom.walker.ignored(true);CKEDITOR.dom.range.prototype=
{clone:function(){var a=new CKEDITOR.dom.range(this.root);a._setStartContainer(this.startContainer);a.startOffset=this.startOffset;a._setEndContainer(this.endContainer);a.endOffset=this.endOffset;a.collapsed=this.collapsed;return a},collapse:function(a){if(a){this._setEndContainer(this.startContainer);this.endOffset=this.startOffset}else{this._setStartContainer(this.endContainer);this.startOffset=this.endOffset}this.collapsed=true},cloneContents:function(){var a=new CKEDITOR.dom.documentFragment(this.document);
this.collapsed||f(this,2,a);return a},deleteContents:function(a){this.collapsed||f(this,0,null,a)},extractContents:function(a){var b=new CKEDITOR.dom.documentFragment(this.document);this.collapsed||f(this,1,b,a);return b},createBookmark:function(a){var b,c,d,f,e=this.collapsed;b=this.document.createElement("span");b.data("cke-bookmark",1);b.setStyle("display","none");b.setHtml("&nbsp;");if(a){d="cke_bm_"+CKEDITOR.tools.getNextNumber();b.setAttribute("id",d+(e?"C":"S"))}if(!e){c=b.clone();c.setHtml("&nbsp;");
a&&c.setAttribute("id",d+"E");f=this.clone();f.collapse();f.insertNode(c)}f=this.clone();f.collapse(true);f.insertNode(b);if(c){this.setStartAfter(b);this.setEndBefore(c)}else this.moveToPosition(b,CKEDITOR.POSITION_AFTER_END);return{startNode:a?d+(e?"C":"S"):b,endNode:a?d+"E":c,serializable:a,collapsed:e}},createBookmark2:function(){function a(c){var d=c.container,f=c.offset,e;e=d;var m=f;e=e.type!=CKEDITOR.NODE_ELEMENT||m===0||m==e.getChildCount()?0:e.getChild(m-1).type==CKEDITOR.NODE_TEXT&&e.getChild(m).type==
CKEDITOR.NODE_TEXT;if(e){d=d.getChild(f-1);f=d.getLength()}d.type==CKEDITOR.NODE_ELEMENT&&f>1&&(f=d.getChild(f-1).getIndex(true)+1);if(d.type==CKEDITOR.NODE_TEXT){e=d;for(m=0;(e=e.getPrevious())&&e.type==CKEDITOR.NODE_TEXT;)m=m+e.getLength();e=m;if(d.getText())f=f+e;else{m=d.getPrevious(b);if(e){f=e;d=m?m.getNext():d.getParent().getFirst()}else{d=d.getParent();f=m?m.getIndex(true)+1:0}}}c.container=d;c.offset=f}var b=CKEDITOR.dom.walker.nodeType(CKEDITOR.NODE_TEXT,true);return function(b){var c=this.collapsed,
d={container:this.startContainer,offset:this.startOffset},f={container:this.endContainer,offset:this.endOffset};if(b){a(d);c||a(f)}return{start:d.container.getAddress(b),end:c?null:f.container.getAddress(b),startOffset:d.offset,endOffset:f.offset,normalized:b,collapsed:c,is2:true}}}(),moveToBookmark:function(a){if(a.is2){var b=this.document.getByAddress(a.start,a.normalized),c=a.startOffset,d=a.end&&this.document.getByAddress(a.end,a.normalized),a=a.endOffset;this.setStart(b,c);d?this.setEnd(d,a):
this.collapse(true)}else{b=(c=a.serializable)?this.document.getById(a.startNode):a.startNode;a=c?this.document.getById(a.endNode):a.endNode;this.setStartBefore(b);b.remove();if(a){this.setEndBefore(a);a.remove()}else this.collapse(true)}},getBoundaryNodes:function(){var a=this.startContainer,b=this.endContainer,c=this.startOffset,d=this.endOffset,f;if(a.type==CKEDITOR.NODE_ELEMENT){f=a.getChildCount();if(f>c)a=a.getChild(c);else if(f<1)a=a.getPreviousSourceNode();else{for(a=a.$;a.lastChild;)a=a.lastChild;
a=new CKEDITOR.dom.node(a);a=a.getNextSourceNode()||a}}if(b.type==CKEDITOR.NODE_ELEMENT){f=b.getChildCount();if(f>d)b=b.getChild(d).getPreviousSourceNode(true);else if(f<1)b=b.getPreviousSourceNode();else{for(b=b.$;b.lastChild;)b=b.lastChild;b=new CKEDITOR.dom.node(b)}}a.getPosition(b)&CKEDITOR.POSITION_FOLLOWING&&(a=b);return{startNode:a,endNode:b}},getCommonAncestor:function(a,b){var c=this.startContainer,d=this.endContainer,c=c.equals(d)?a&&c.type==CKEDITOR.NODE_ELEMENT&&this.startOffset==this.endOffset-
1?c.getChild(this.startOffset):c:c.getCommonAncestor(d);return b&&!c.is?c.getParent():c},optimize:function(){var a=this.startContainer,b=this.startOffset;a.type!=CKEDITOR.NODE_ELEMENT&&(b?b>=a.getLength()&&this.setStartAfter(a):this.setStartBefore(a));a=this.endContainer;b=this.endOffset;a.type!=CKEDITOR.NODE_ELEMENT&&(b?b>=a.getLength()&&this.setEndAfter(a):this.setEndBefore(a))},optimizeBookmark:function(){var a=this.startContainer,b=this.endContainer;a.is&&(a.is("span")&&a.data("cke-bookmark"))&&
this.setStartAt(a,CKEDITOR.POSITION_BEFORE_START);b&&(b.is&&b.is("span")&&b.data("cke-bookmark"))&&this.setEndAt(b,CKEDITOR.POSITION_AFTER_END)},trim:function(a,b){var c=this.startContainer,d=this.startOffset,f=this.collapsed;if((!a||f)&&c&&c.type==CKEDITOR.NODE_TEXT){if(d)if(d>=c.getLength()){d=c.getIndex()+1;c=c.getParent()}else{var e=c.split(d),d=c.getIndex()+1,c=c.getParent();if(this.startContainer.equals(this.endContainer))this.setEnd(e,this.endOffset-this.startOffset);else if(c.equals(this.endContainer))this.endOffset=
this.endOffset+1}else{d=c.getIndex();c=c.getParent()}this.setStart(c,d);if(f){this.collapse(true);return}}c=this.endContainer;d=this.endOffset;if(!b&&!f&&c&&c.type==CKEDITOR.NODE_TEXT){if(d){d>=c.getLength()||c.split(d);d=c.getIndex()+1}else d=c.getIndex();c=c.getParent();this.setEnd(c,d)}},enlarge:function(a,b){function c(a){return a&&a.type==CKEDITOR.NODE_ELEMENT&&a.hasAttribute("contenteditable")?null:a}var d=RegExp(/[^\s\ufeff]/);switch(a){case CKEDITOR.ENLARGE_INLINE:var f=1;case CKEDITOR.ENLARGE_ELEMENT:if(this.collapsed)break;
var e=this.getCommonAncestor(),j=this.root,h,i,g,k,n,r=false,o,l;o=this.startContainer;var D=this.startOffset;if(o.type==CKEDITOR.NODE_TEXT){if(D){o=!CKEDITOR.tools.trim(o.substring(0,D)).length&&o;r=!!o}if(o&&!(k=o.getPrevious()))g=o.getParent()}else{D&&(k=o.getChild(D-1)||o.getLast());k||(g=o)}for(g=c(g);g||k;){if(g&&!k){!n&&g.equals(e)&&(n=true);if(f?g.isBlockBoundary():!j.contains(g))break;if(!r||g.getComputedStyle("display")!="inline"){r=false;n?h=g:this.setStartBefore(g)}k=g.getPrevious()}for(;k;){o=
false;if(k.type==CKEDITOR.NODE_COMMENT)k=k.getPrevious();else{if(k.type==CKEDITOR.NODE_TEXT){l=k.getText();d.test(l)&&(k=null);o=/[\s\ufeff]$/.test(l)}else if((k.$.offsetWidth>(CKEDITOR.env.webkit?1:0)||b&&k.is("br"))&&!k.data("cke-bookmark"))if(r&&CKEDITOR.dtd.$removeEmpty[k.getName()]){l=k.getText();if(d.test(l))k=null;else for(var D=k.$.getElementsByTagName("*"),J=0,z;z=D[J++];)if(!CKEDITOR.dtd.$removeEmpty[z.nodeName.toLowerCase()]){k=null;break}k&&(o=!!l.length)}else k=null;o&&(r?n?h=g:g&&this.setStartBefore(g):
r=true);if(k){o=k.getPrevious();if(!g&&!o){g=k;k=null;break}k=o}else g=null}}g&&(g=c(g.getParent()))}o=this.endContainer;D=this.endOffset;g=k=null;n=r=false;var L=function(a,b){var c=new CKEDITOR.dom.range(j);c.setStart(a,b);c.setEndAt(j,CKEDITOR.POSITION_BEFORE_END);var c=new CKEDITOR.dom.walker(c),f;for(c.guard=function(a){return!(a.type==CKEDITOR.NODE_ELEMENT&&a.isBlockBoundary())};f=c.next();){if(f.type!=CKEDITOR.NODE_TEXT)return false;l=f!=a?f.getText():f.substring(b);if(d.test(l))return false}return true};
if(o.type==CKEDITOR.NODE_TEXT)if(CKEDITOR.tools.trim(o.substring(D)).length)r=true;else{r=!o.getLength();if(D==o.getLength()){if(!(k=o.getNext()))g=o.getParent()}else L(o,D)&&(g=o.getParent())}else(k=o.getChild(D))||(g=o);for(;g||k;){if(g&&!k){!n&&g.equals(e)&&(n=true);if(f?g.isBlockBoundary():!j.contains(g))break;if(!r||g.getComputedStyle("display")!="inline"){r=false;n?i=g:g&&this.setEndAfter(g)}k=g.getNext()}for(;k;){o=false;if(k.type==CKEDITOR.NODE_TEXT){l=k.getText();L(k,0)||(k=null);o=/^[\s\ufeff]/.test(l)}else if(k.type==
CKEDITOR.NODE_ELEMENT){if((k.$.offsetWidth>0||b&&k.is("br"))&&!k.data("cke-bookmark"))if(r&&CKEDITOR.dtd.$removeEmpty[k.getName()]){l=k.getText();if(d.test(l))k=null;else{D=k.$.getElementsByTagName("*");for(J=0;z=D[J++];)if(!CKEDITOR.dtd.$removeEmpty[z.nodeName.toLowerCase()]){k=null;break}}k&&(o=!!l.length)}else k=null}else o=1;o&&r&&(n?i=g:this.setEndAfter(g));if(k){o=k.getNext();if(!g&&!o){g=k;k=null;break}k=o}else g=null}g&&(g=c(g.getParent()))}if(h&&i){e=h.contains(i)?i:h;this.setStartBefore(e);
this.setEndAfter(e)}break;case CKEDITOR.ENLARGE_BLOCK_CONTENTS:case CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS:g=new CKEDITOR.dom.range(this.root);j=this.root;g.setStartAt(j,CKEDITOR.POSITION_AFTER_START);g.setEnd(this.startContainer,this.startOffset);g=new CKEDITOR.dom.walker(g);var B,w,H=CKEDITOR.dom.walker.blockBoundary(a==CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS?{br:1}:null),C=null,A=function(a){if(a.type==CKEDITOR.NODE_ELEMENT&&a.getAttribute("contenteditable")=="false")if(C){if(C.equals(a)){C=null;return}}else C=
a;else if(C)return;var b=H(a);b||(B=a);return b},f=function(a){var b=A(a);!b&&(a.is&&a.is("br"))&&(w=a);return b};g.guard=A;g=g.lastBackward();B=B||j;this.setStartAt(B,!B.is("br")&&(!g&&this.checkStartOfBlock()||g&&B.contains(g))?CKEDITOR.POSITION_AFTER_START:CKEDITOR.POSITION_AFTER_END);if(a==CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS){g=this.clone();g=new CKEDITOR.dom.walker(g);var x=CKEDITOR.dom.walker.whitespaces(),F=CKEDITOR.dom.walker.bookmark();g.evaluator=function(a){return!x(a)&&!F(a)};if((g=g.previous())&&
g.type==CKEDITOR.NODE_ELEMENT&&g.is("br"))break}g=this.clone();g.collapse();g.setEndAt(j,CKEDITOR.POSITION_BEFORE_END);g=new CKEDITOR.dom.walker(g);g.guard=a==CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS?f:A;B=C=w=null;g=g.lastForward();B=B||j;this.setEndAt(B,!g&&this.checkEndOfBlock()||g&&B.contains(g)?CKEDITOR.POSITION_BEFORE_END:CKEDITOR.POSITION_BEFORE_START);w&&this.setEndAfter(w)}},shrink:function(a,b,c){if(!this.collapsed){var a=a||CKEDITOR.SHRINK_TEXT,d=this.clone(),f=this.startContainer,e=this.endContainer,
j=this.startOffset,g=this.endOffset,h=1,i=1;if(f&&f.type==CKEDITOR.NODE_TEXT)if(j)if(j>=f.getLength())d.setStartAfter(f);else{d.setStartBefore(f);h=0}else d.setStartBefore(f);if(e&&e.type==CKEDITOR.NODE_TEXT)if(g)if(g>=e.getLength())d.setEndAfter(e);else{d.setEndAfter(e);i=0}else d.setEndBefore(e);var d=new CKEDITOR.dom.walker(d),k=CKEDITOR.dom.walker.bookmark();d.evaluator=function(b){return b.type==(a==CKEDITOR.SHRINK_ELEMENT?CKEDITOR.NODE_ELEMENT:CKEDITOR.NODE_TEXT)};var n;d.guard=function(b,d){if(k(b))return true;
if(a==CKEDITOR.SHRINK_ELEMENT&&b.type==CKEDITOR.NODE_TEXT||d&&b.equals(n)||c===false&&b.type==CKEDITOR.NODE_ELEMENT&&b.isBlockBoundary()||b.type==CKEDITOR.NODE_ELEMENT&&b.hasAttribute("contenteditable"))return false;!d&&b.type==CKEDITOR.NODE_ELEMENT&&(n=b);return true};if(h)(f=d[a==CKEDITOR.SHRINK_ELEMENT?"lastForward":"next"]())&&this.setStartAt(f,b?CKEDITOR.POSITION_AFTER_START:CKEDITOR.POSITION_BEFORE_START);if(i){d.reset();(d=d[a==CKEDITOR.SHRINK_ELEMENT?"lastBackward":"previous"]())&&this.setEndAt(d,
b?CKEDITOR.POSITION_BEFORE_END:CKEDITOR.POSITION_AFTER_END)}return!(!h&&!i)}},insertNode:function(a){this.optimizeBookmark();this.trim(false,true);var b=this.startContainer,c=b.getChild(this.startOffset);c?a.insertBefore(c):b.append(a);a.getParent()&&a.getParent().equals(this.endContainer)&&this.endOffset++;this.setStartBefore(a)},moveToPosition:function(a,b){this.setStartAt(a,b);this.collapse(true)},moveToRange:function(a){this.setStart(a.startContainer,a.startOffset);this.setEnd(a.endContainer,
a.endOffset)},selectNodeContents:function(a){this.setStart(a,0);this.setEnd(a,a.type==CKEDITOR.NODE_TEXT?a.getLength():a.getChildCount())},setStart:function(a,b){if(a.type==CKEDITOR.NODE_ELEMENT&&CKEDITOR.dtd.$empty[a.getName()]){b=a.getIndex();a=a.getParent()}this._setStartContainer(a);this.startOffset=b;if(!this.endContainer){this._setEndContainer(a);this.endOffset=b}c(this)},setEnd:function(a,b){if(a.type==CKEDITOR.NODE_ELEMENT&&CKEDITOR.dtd.$empty[a.getName()]){b=a.getIndex()+1;a=a.getParent()}this._setEndContainer(a);
this.endOffset=b;if(!this.startContainer){this._setStartContainer(a);this.startOffset=b}c(this)},setStartAfter:function(a){this.setStart(a.getParent(),a.getIndex()+1)},setStartBefore:function(a){this.setStart(a.getParent(),a.getIndex())},setEndAfter:function(a){this.setEnd(a.getParent(),a.getIndex()+1)},setEndBefore:function(a){this.setEnd(a.getParent(),a.getIndex())},setStartAt:function(a,b){switch(b){case CKEDITOR.POSITION_AFTER_START:this.setStart(a,0);break;case CKEDITOR.POSITION_BEFORE_END:a.type==
CKEDITOR.NODE_TEXT?this.setStart(a,a.getLength()):this.setStart(a,a.getChildCount());break;case CKEDITOR.POSITION_BEFORE_START:this.setStartBefore(a);break;case CKEDITOR.POSITION_AFTER_END:this.setStartAfter(a)}c(this)},setEndAt:function(a,b){switch(b){case CKEDITOR.POSITION_AFTER_START:this.setEnd(a,0);break;case CKEDITOR.POSITION_BEFORE_END:a.type==CKEDITOR.NODE_TEXT?this.setEnd(a,a.getLength()):this.setEnd(a,a.getChildCount());break;case CKEDITOR.POSITION_BEFORE_START:this.setEndBefore(a);break;
case CKEDITOR.POSITION_AFTER_END:this.setEndAfter(a)}c(this)},fixBlock:function(a,b){var c=this.createBookmark(),d=this.document.createElement(b);this.collapse(a);this.enlarge(CKEDITOR.ENLARGE_BLOCK_CONTENTS);this.extractContents().appendTo(d);d.trim();d.appendBogus();this.insertNode(d);this.moveToBookmark(c);return d},splitBlock:function(a){var b=new CKEDITOR.dom.elementPath(this.startContainer,this.root),c=new CKEDITOR.dom.elementPath(this.endContainer,this.root),d=b.block,f=c.block,e=null;if(!b.blockLimit.equals(c.blockLimit))return null;
if(a!="br"){if(!d){d=this.fixBlock(true,a);f=(new CKEDITOR.dom.elementPath(this.endContainer,this.root)).block}f||(f=this.fixBlock(false,a))}a=d&&this.checkStartOfBlock();b=f&&this.checkEndOfBlock();this.deleteContents();if(d&&d.equals(f))if(b){e=new CKEDITOR.dom.elementPath(this.startContainer,this.root);this.moveToPosition(f,CKEDITOR.POSITION_AFTER_END);f=null}else if(a){e=new CKEDITOR.dom.elementPath(this.startContainer,this.root);this.moveToPosition(d,CKEDITOR.POSITION_BEFORE_START);d=null}else{f=
this.splitElement(d);d.is("ul","ol")||d.appendBogus()}return{previousBlock:d,nextBlock:f,wasStartOfBlock:a,wasEndOfBlock:b,elementPath:e}},splitElement:function(a){if(!this.collapsed)return null;this.setEndAt(a,CKEDITOR.POSITION_BEFORE_END);var b=this.extractContents(),c=a.clone(false);b.appendTo(c);c.insertAfter(a);this.moveToPosition(a,CKEDITOR.POSITION_AFTER_END);return c},removeEmptyBlocksAtEnd:function(){function a(d){return function(a){return b(a)||(c(a)||a.type==CKEDITOR.NODE_ELEMENT&&a.isEmptyInlineRemoveable())||
d.is("table")&&a.is("caption")?false:true}}var b=CKEDITOR.dom.walker.whitespaces(),c=CKEDITOR.dom.walker.bookmark(false);return function(b){for(var c=this.createBookmark(),d=this[b?"endPath":"startPath"](),f=d.block||d.blockLimit,e;f&&!f.equals(d.root)&&!f.getFirst(a(f));){e=f.getParent();this[b?"setEndAt":"setStartAt"](f,CKEDITOR.POSITION_AFTER_END);f.remove(1);f=e}this.moveToBookmark(c)}}(),startPath:function(){return new CKEDITOR.dom.elementPath(this.startContainer,this.root)},endPath:function(){return new CKEDITOR.dom.elementPath(this.endContainer,
this.root)},checkBoundaryOfElement:function(a,b){var c=b==CKEDITOR.START,d=this.clone();d.collapse(c);d[c?"setStartAt":"setEndAt"](a,c?CKEDITOR.POSITION_AFTER_START:CKEDITOR.POSITION_BEFORE_END);d=new CKEDITOR.dom.walker(d);d.evaluator=e(c);return d[c?"checkBackward":"checkForward"]()},checkStartOfBlock:function(){var b=this.startContainer,c=this.startOffset;if(CKEDITOR.env.ie&&c&&b.type==CKEDITOR.NODE_TEXT){b=CKEDITOR.tools.ltrim(b.substring(0,c));l.test(b)&&this.trim(0,1)}this.trim();b=new CKEDITOR.dom.elementPath(this.startContainer,
this.root);c=this.clone();c.collapse(true);c.setStartAt(b.block||b.blockLimit,CKEDITOR.POSITION_AFTER_START);b=new CKEDITOR.dom.walker(c);b.evaluator=a();return b.checkBackward()},checkEndOfBlock:function(){var b=this.endContainer,c=this.endOffset;if(CKEDITOR.env.ie&&b.type==CKEDITOR.NODE_TEXT){b=CKEDITOR.tools.rtrim(b.substring(c));l.test(b)&&this.trim(1,0)}this.trim();b=new CKEDITOR.dom.elementPath(this.endContainer,this.root);c=this.clone();c.collapse(false);c.setEndAt(b.block||b.blockLimit,CKEDITOR.POSITION_BEFORE_END);
b=new CKEDITOR.dom.walker(c);b.evaluator=a();return b.checkForward()},getPreviousNode:function(a,b,c){var d=this.clone();d.collapse(1);d.setStartAt(c||this.root,CKEDITOR.POSITION_AFTER_START);c=new CKEDITOR.dom.walker(d);c.evaluator=a;c.guard=b;return c.previous()},getNextNode:function(a,b,c){var d=this.clone();d.collapse();d.setEndAt(c||this.root,CKEDITOR.POSITION_BEFORE_END);c=new CKEDITOR.dom.walker(d);c.evaluator=a;c.guard=b;return c.next()},checkReadOnly:function(){function a(b,c){for(;b;){if(b.type==
CKEDITOR.NODE_ELEMENT){if(b.getAttribute("contentEditable")=="false"&&!b.data("cke-editable"))return 0;if(b.is("html")||b.getAttribute("contentEditable")=="true"&&(b.contains(c)||b.equals(c)))break}b=b.getParent()}return 1}return function(){var b=this.startContainer,c=this.endContainer;return!(a(b,c)&&a(c,b))}}(),moveToElementEditablePosition:function(a,b){if(a.type==CKEDITOR.NODE_ELEMENT&&!a.isEditable(false)){this.moveToPosition(a,b?CKEDITOR.POSITION_AFTER_END:CKEDITOR.POSITION_BEFORE_START);return true}for(var c=
0;a;){if(a.type==CKEDITOR.NODE_TEXT){b&&this.endContainer&&this.checkEndOfBlock()&&l.test(a.getText())?this.moveToPosition(a,CKEDITOR.POSITION_BEFORE_START):this.moveToPosition(a,b?CKEDITOR.POSITION_AFTER_END:CKEDITOR.POSITION_BEFORE_START);c=1;break}if(a.type==CKEDITOR.NODE_ELEMENT)if(a.isEditable()){this.moveToPosition(a,b?CKEDITOR.POSITION_BEFORE_END:CKEDITOR.POSITION_AFTER_START);c=1}else if(b&&a.is("br")&&this.endContainer&&this.checkEndOfBlock())this.moveToPosition(a,CKEDITOR.POSITION_BEFORE_START);
else if(a.getAttribute("contenteditable")=="false"&&a.is(CKEDITOR.dtd.$block)){this.setStartBefore(a);this.setEndAfter(a);return true}var d=a,f=c,e=void 0;d.type==CKEDITOR.NODE_ELEMENT&&d.isEditable(false)&&(e=d[b?"getLast":"getFirst"](g));!f&&!e&&(e=d[b?"getPrevious":"getNext"](g));a=e}return!!c},moveToClosestEditablePosition:function(a,b){var c=new CKEDITOR.dom.range(this.root),d=0,f,e=[CKEDITOR.POSITION_AFTER_END,CKEDITOR.POSITION_BEFORE_START];c.moveToPosition(a,e[b?0:1]);if(a.is(CKEDITOR.dtd.$block)){if(f=
c[b?"getNextEditableNode":"getPreviousEditableNode"]()){d=1;if(f.type==CKEDITOR.NODE_ELEMENT&&f.is(CKEDITOR.dtd.$block)&&f.getAttribute("contenteditable")=="false"){c.setStartAt(f,CKEDITOR.POSITION_BEFORE_START);c.setEndAt(f,CKEDITOR.POSITION_AFTER_END)}else c.moveToPosition(f,e[b?1:0])}}else d=1;d&&this.moveToRange(c);return!!d},moveToElementEditStart:function(a){return this.moveToElementEditablePosition(a)},moveToElementEditEnd:function(a){return this.moveToElementEditablePosition(a,true)},getEnclosedNode:function(){var a=
this.clone();a.optimize();if(a.startContainer.type!=CKEDITOR.NODE_ELEMENT||a.endContainer.type!=CKEDITOR.NODE_ELEMENT)return null;var a=new CKEDITOR.dom.walker(a),b=CKEDITOR.dom.walker.bookmark(false,true),c=CKEDITOR.dom.walker.whitespaces(true);a.evaluator=function(a){return c(a)&&b(a)};var d=a.next();a.reset();return d&&d.equals(a.previous())?d:null},getTouchedStartNode:function(){var a=this.startContainer;return this.collapsed||a.type!=CKEDITOR.NODE_ELEMENT?a:a.getChild(this.startOffset)||a},getTouchedEndNode:function(){var a=
this.endContainer;return this.collapsed||a.type!=CKEDITOR.NODE_ELEMENT?a:a.getChild(this.endOffset-1)||a},getNextEditableNode:b(),getPreviousEditableNode:b(1),scrollIntoView:function(){var a=new CKEDITOR.dom.element.createFromHtml("<span>&nbsp;</span>",this.document),b,c,d,f=this.clone();f.optimize();if(d=f.startContainer.type==CKEDITOR.NODE_TEXT){c=f.startContainer.getText();b=f.startContainer.split(f.startOffset);a.insertAfter(f.startContainer)}else f.insertNode(a);a.scrollIntoView();if(d){f.startContainer.setText(c);
b.remove()}a.remove()},_setStartContainer:function(a){this.startContainer=a},_setEndContainer:function(a){this.endContainer=a}}})();CKEDITOR.POSITION_AFTER_START=1;CKEDITOR.POSITION_BEFORE_END=2;CKEDITOR.POSITION_BEFORE_START=3;CKEDITOR.POSITION_AFTER_END=4;CKEDITOR.ENLARGE_ELEMENT=1;CKEDITOR.ENLARGE_BLOCK_CONTENTS=2;CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS=3;CKEDITOR.ENLARGE_INLINE=4;CKEDITOR.START=1;CKEDITOR.END=2;CKEDITOR.SHRINK_ELEMENT=1;CKEDITOR.SHRINK_TEXT=2;"use strict";
(function(){function a(a){if(!(arguments.length<1)){this.range=a;this.forceBrBreak=0;this.enlargeBr=1;this.enforceRealBlocks=0;this._||(this._={})}}function e(a){var b=[];a.forEach(function(a){if(a.getAttribute("contenteditable")=="true"){b.push(a);return false}},CKEDITOR.NODE_ELEMENT,true);return b}function b(a,c,d,f){a:{f==null&&(f=e(d));for(var h;h=f.shift();)if(h.getDtd().p){f={element:h,remaining:f};break a}f=null}if(!f)return 0;if((h=CKEDITOR.filter.instances[f.element.data("cke-filter")])&&
!h.check(c))return b(a,c,d,f.remaining);c=new CKEDITOR.dom.range(f.element);c.selectNodeContents(f.element);c=c.createIterator();c.enlargeBr=a.enlargeBr;c.enforceRealBlocks=a.enforceRealBlocks;c.activeFilter=c.filter=h;a._.nestedEditable={element:f.element,container:d,remaining:f.remaining,iterator:c};return 1}function c(a,b,c){if(!b)return false;a=a.clone();a.collapse(!c);return a.checkBoundaryOfElement(b,c?CKEDITOR.START:CKEDITOR.END)}var f=/^[\r\n\t ]+$/,d=CKEDITOR.dom.walker.bookmark(false,true),
h=CKEDITOR.dom.walker.whitespaces(true),l=function(a){return d(a)&&h(a)},i={dd:1,dt:1,li:1};a.prototype={getNextParagraph:function(a){var e,h,s,y,p,a=a||"p";if(this._.nestedEditable){if(e=this._.nestedEditable.iterator.getNextParagraph(a)){this.activeFilter=this._.nestedEditable.iterator.activeFilter;return e}this.activeFilter=this.filter;if(b(this,a,this._.nestedEditable.container,this._.nestedEditable.remaining)){this.activeFilter=this._.nestedEditable.iterator.activeFilter;return this._.nestedEditable.iterator.getNextParagraph(a)}this._.nestedEditable=
null}if(!this.range.root.getDtd()[a])return null;if(!this._.started){var q=this.range.clone();h=q.startPath();var j=q.endPath(),u=!q.collapsed&&c(q,h.block),v=!q.collapsed&&c(q,j.block,1);q.shrink(CKEDITOR.SHRINK_ELEMENT,true);u&&q.setStartAt(h.block,CKEDITOR.POSITION_BEFORE_END);v&&q.setEndAt(j.block,CKEDITOR.POSITION_AFTER_START);h=q.endContainer.hasAscendant("pre",true)||q.startContainer.hasAscendant("pre",true);q.enlarge(this.forceBrBreak&&!h||!this.enlargeBr?CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS:
CKEDITOR.ENLARGE_BLOCK_CONTENTS);if(!q.collapsed){h=new CKEDITOR.dom.walker(q.clone());j=CKEDITOR.dom.walker.bookmark(true,true);h.evaluator=j;this._.nextNode=h.next();h=new CKEDITOR.dom.walker(q.clone());h.evaluator=j;h=h.previous();this._.lastNode=h.getNextSourceNode(true,null,q.root);if(this._.lastNode&&this._.lastNode.type==CKEDITOR.NODE_TEXT&&!CKEDITOR.tools.trim(this._.lastNode.getText())&&this._.lastNode.getParent().isBlockBoundary()){j=this.range.clone();j.moveToPosition(this._.lastNode,CKEDITOR.POSITION_AFTER_END);
if(j.checkEndOfBlock()){j=new CKEDITOR.dom.elementPath(j.endContainer,j.root);this._.lastNode=(j.block||j.blockLimit).getNextSourceNode(true)}}if(!this._.lastNode||!q.root.contains(this._.lastNode)){this._.lastNode=this._.docEndMarker=q.document.createText("");this._.lastNode.insertAfter(h)}q=null}this._.started=1;h=q}j=this._.nextNode;q=this._.lastNode;for(this._.nextNode=null;j;){var u=0,v=j.hasAscendant("pre"),E=j.type!=CKEDITOR.NODE_ELEMENT,k=0;if(E)j.type==CKEDITOR.NODE_TEXT&&f.test(j.getText())&&
(E=0);else{var n=j.getName();if(CKEDITOR.dtd.$block[n]&&j.getAttribute("contenteditable")=="false"){e=j;b(this,a,e);break}else if(j.isBlockBoundary(this.forceBrBreak&&!v&&{br:1})){if(n=="br")E=1;else if(!h&&!j.getChildCount()&&n!="hr"){e=j;s=j.equals(q);break}if(h){h.setEndAt(j,CKEDITOR.POSITION_BEFORE_START);if(n!="br")this._.nextNode=j}u=1}else{if(j.getFirst()){if(!h){h=this.range.clone();h.setStartAt(j,CKEDITOR.POSITION_BEFORE_START)}j=j.getFirst();continue}E=1}}if(E&&!h){h=this.range.clone();
h.setStartAt(j,CKEDITOR.POSITION_BEFORE_START)}s=(!u||E)&&j.equals(q);if(h&&!u)for(;!j.getNext(l)&&!s;){n=j.getParent();if(n.isBlockBoundary(this.forceBrBreak&&!v&&{br:1})){u=1;E=0;s||n.equals(q);h.setEndAt(n,CKEDITOR.POSITION_BEFORE_END);break}j=n;E=1;s=j.equals(q);k=1}E&&h.setEndAt(j,CKEDITOR.POSITION_AFTER_END);j=this._getNextSourceNode(j,k,q);if((s=!j)||u&&h)break}if(!e){if(!h){this._.docEndMarker&&this._.docEndMarker.remove();return this._.nextNode=null}e=new CKEDITOR.dom.elementPath(h.startContainer,
h.root);j=e.blockLimit;u={div:1,th:1,td:1};e=e.block;if(!e&&j&&!this.enforceRealBlocks&&u[j.getName()]&&h.checkStartOfBlock()&&h.checkEndOfBlock()&&!j.equals(h.root))e=j;else if(!e||this.enforceRealBlocks&&e.is(i)){e=this.range.document.createElement(a);h.extractContents().appendTo(e);e.trim();h.insertNode(e);y=p=true}else if(e.getName()!="li"){if(!h.checkStartOfBlock()||!h.checkEndOfBlock()){e=e.clone(false);h.extractContents().appendTo(e);e.trim();p=h.splitBlock();y=!p.wasStartOfBlock;p=!p.wasEndOfBlock;
h.insertNode(e)}}else if(!s)this._.nextNode=e.equals(q)?null:this._getNextSourceNode(h.getBoundaryNodes().endNode,1,q)}if(y)(y=e.getPrevious())&&y.type==CKEDITOR.NODE_ELEMENT&&(y.getName()=="br"?y.remove():y.getLast()&&y.getLast().$.nodeName.toLowerCase()=="br"&&y.getLast().remove());if(p)(y=e.getLast())&&y.type==CKEDITOR.NODE_ELEMENT&&y.getName()=="br"&&(!CKEDITOR.env.needsBrFiller||y.getPrevious(d)||y.getNext(d))&&y.remove();if(!this._.nextNode)this._.nextNode=s||e.equals(q)||!q?null:this._getNextSourceNode(e,
1,q);return e},_getNextSourceNode:function(a,b,c){function f(a){return!(a.equals(c)||a.equals(e))}for(var e=this.range.root,a=a.getNextSourceNode(b,null,f);!d(a);)a=a.getNextSourceNode(b,null,f);return a}};CKEDITOR.dom.range.prototype.createIterator=function(){return new a(this)}})();
CKEDITOR.command=function(a,e){this.uiItems=[];this.exec=function(b){if(this.state==CKEDITOR.TRISTATE_DISABLED||!this.checkAllowed())return false;this.editorFocus&&a.focus();return this.fire("exec")===false?true:e.exec.call(this,a,b)!==false};this.refresh=function(a,b){if(!this.readOnly&&a.readOnly)return true;if(this.context&&!b.isContextFor(this.context)){this.disable();return true}if(!this.checkAllowed(true)){this.disable();return true}this.startDisabled||this.enable();this.modes&&!this.modes[a.mode]&&
this.disable();return this.fire("refresh",{editor:a,path:b})===false?true:e.refresh&&e.refresh.apply(this,arguments)!==false};var b;this.checkAllowed=function(c){return!c&&typeof b=="boolean"?b:b=a.activeFilter.checkFeature(this)};CKEDITOR.tools.extend(this,e,{modes:{wysiwyg:1},editorFocus:1,contextSensitive:!!e.context,state:CKEDITOR.TRISTATE_DISABLED});CKEDITOR.event.call(this)};
CKEDITOR.command.prototype={enable:function(){this.state==CKEDITOR.TRISTATE_DISABLED&&this.checkAllowed()&&this.setState(!this.preserveState||typeof this.previousState=="undefined"?CKEDITOR.TRISTATE_OFF:this.previousState)},disable:function(){this.setState(CKEDITOR.TRISTATE_DISABLED)},setState:function(a){if(this.state==a||a!=CKEDITOR.TRISTATE_DISABLED&&!this.checkAllowed())return false;this.previousState=this.state;this.state=a;this.fire("state");return true},toggleState:function(){this.state==CKEDITOR.TRISTATE_OFF?
this.setState(CKEDITOR.TRISTATE_ON):this.state==CKEDITOR.TRISTATE_ON&&this.setState(CKEDITOR.TRISTATE_OFF)}};CKEDITOR.event.implementOn(CKEDITOR.command.prototype);CKEDITOR.ENTER_P=1;CKEDITOR.ENTER_BR=2;CKEDITOR.ENTER_DIV=3;
CKEDITOR.config={customConfig:"config.js",autoUpdateElement:!0,language:"",defaultLanguage:"en",contentsLangDirection:"",enterMode:CKEDITOR.ENTER_P,forceEnterMode:!1,shiftEnterMode:CKEDITOR.ENTER_BR,docType:"<!DOCTYPE html>",bodyId:"",bodyClass:"",fullPage:!1,height:200,extraPlugins:"",removePlugins:"",protectedSource:[],tabIndex:0,width:"",baseFloatZIndex:1E4,blockedKeystrokes:[CKEDITOR.CTRL+66,CKEDITOR.CTRL+73,CKEDITOR.CTRL+85]};
(function(){function a(a,b,c,d,f){var e,n,a=[];for(e in b){n=b[e];n=typeof n=="boolean"?{}:typeof n=="function"?{match:n}:L(n);if(e.charAt(0)!="$")n.elements=e;if(c)n.featureName=c.toLowerCase();var j=n;j.elements=h(j.elements,/\s+/)||null;j.propertiesOnly=j.propertiesOnly||j.elements===true;var k=/\s*,\s*/,r=void 0;for(r in C){j[r]=h(j[r],k)||null;var x=j,o=A[r],w=h(j[A[r]],k),p=j[r],g=[],i=true,F=void 0;w?i=false:w={};for(F in p)if(F.charAt(0)=="!"){F=F.slice(1);g.push(F);w[F]=true;i=false}for(;F=
g.pop();){p[F]=p["!"+F];delete p["!"+F]}x[o]=(i?false:w)||null}j.match=j.match||null;d.push(n);a.push(n)}for(var b=f.elements,f=f.generic,D,c=0,d=a.length;c<d;++c){e=L(a[c]);n=e.classes===true||e.styles===true||e.attributes===true;j=e;r=o=k=void 0;for(k in C)j[k]=u(j[k]);x=true;for(r in A){k=A[r];o=j[k];w=[];p=void 0;for(p in o)p.indexOf("*")>-1?w.push(RegExp("^"+p.replace(/\*/g,".*")+"$")):w.push(p);o=w;if(o.length){j[k]=o;x=false}}j.nothingRequired=x;j.noProperties=!(j.attributes||j.classes||j.styles);
if(e.elements===true||e.elements===null)f[n?"unshift":"push"](e);else{j=e.elements;delete e.elements;for(D in j)if(b[D])b[D][n?"unshift":"push"](e);else b[D]=[e]}}}function e(a,c,d,f){if(!a.match||a.match(c))if(f||l(a,c)){if(!a.propertiesOnly)d.valid=true;if(!d.allAttributes)d.allAttributes=b(a.attributes,c.attributes,d.validAttributes);if(!d.allStyles)d.allStyles=b(a.styles,c.styles,d.validStyles);if(!d.allClasses){a=a.classes;c=c.classes;f=d.validClasses;if(a)if(a===true)a=true;else{for(var e=0,
n=c.length,j;e<n;++e){j=c[e];f[j]||(f[j]=a(j))}a=false}else a=false;d.allClasses=a}}}function b(a,b,c){if(!a)return false;if(a===true)return true;for(var d in b)c[d]||(c[d]=a(d));return false}function c(a,b,c){if(!a.match||a.match(b)){if(a.noProperties)return false;c.hadInvalidAttribute=f(a.attributes,b.attributes)||c.hadInvalidAttribute;c.hadInvalidStyle=f(a.styles,b.styles)||c.hadInvalidStyle;a=a.classes;b=b.classes;if(a){for(var d=false,e=a===true,n=b.length;n--;)if(e||a(b[n])){b.splice(n,1);d=
true}a=d}else a=false;c.hadInvalidClass=a||c.hadInvalidClass}}function f(a,b){if(!a)return false;var c=false,d=a===true,f;for(f in b)if(d||a(f)){delete b[f];c=true}return c}function d(a,b,c){if(a.disabled||a.customConfig&&!c||!b)return false;a._.cachedChecks={};return true}function h(a,b){if(!a)return false;if(a===true)return a;if(typeof a=="string"){a=B(a);return a=="*"?true:CKEDITOR.tools.convertArrayToObject(a.split(b))}if(CKEDITOR.tools.isArray(a))return a.length?CKEDITOR.tools.convertArrayToObject(a):
false;var c={},d=0,f;for(f in a){c[f]=a[f];d++}return d?c:false}function l(a,b){if(a.nothingRequired)return true;var c,d,f,e;if(f=a.requiredClasses){e=b.classes;for(c=0;c<f.length;++c){d=f[c];if(typeof d=="string"){if(CKEDITOR.tools.indexOf(e,d)==-1)return false}else if(!CKEDITOR.tools.checkIfAnyArrayItemMatches(e,d))return false}}return i(b.styles,a.requiredStyles)&&i(b.attributes,a.requiredAttributes)}function i(a,b){if(!b)return true;for(var c=0,d;c<b.length;++c){d=b[c];if(typeof d=="string"){if(!(d in
a))return false}else if(!CKEDITOR.tools.checkIfAnyObjectPropertyMatches(a,d))return false}return true}function g(a){if(!a)return{};for(var a=a.split(/\s*,\s*/).sort(),b={};a.length;)b[a.shift()]=w;return b}function m(a){for(var b,c,d,f,e={},n=1,a=B(a);b=a.match(x);){if(c=b[2]){d=t(c,"styles");f=t(c,"attrs");c=t(c,"classes")}else d=f=c=null;e["$"+n++]={elements:b[1],classes:c,styles:d,attributes:f};a=a.slice(b[0].length)}return e}function t(a,b){var c=a.match(F[b]);return c?B(c[1]):null}function s(a){var b=
a.styleBackup=a.attributes.style,c=a.classBackup=a.attributes["class"];if(!a.styles)a.styles=CKEDITOR.tools.parseCssText(b||"",1);if(!a.classes)a.classes=c?c.split(/\s+/):[]}function y(a,b,d,f){var k=0,r;if(f.toHtml)b.name=b.name.replace(G,"$1");if(f.doCallbacks&&a.elementCallbacks){a:for(var x=a.elementCallbacks,h=0,o=x.length,w;h<o;++h)if(w=x[h](b)){r=w;break a}if(r)return r}if(f.doTransform)if(r=a._.transformations[b.name]){s(b);for(x=0;x<r.length;++x)n(a,b,r[x]);q(b)}if(f.doFilter){a:{x=b.name;
h=a._;a=h.allowedRules.elements[x];r=h.allowedRules.generic;x=h.disallowedRules.elements[x];h=h.disallowedRules.generic;o=f.skipRequired;w={valid:false,validAttributes:{},validClasses:{},validStyles:{},allAttributes:false,allClasses:false,allStyles:false,hadInvalidAttribute:false,hadInvalidClass:false,hadInvalidStyle:false};var p,g;if(!a&&!r)a=null;else{s(b);if(x){p=0;for(g=x.length;p<g;++p)if(c(x[p],b,w)===false){a=null;break a}}if(h){p=0;for(g=h.length;p<g;++p)c(h[p],b,w)}if(a){p=0;for(g=a.length;p<
g;++p)e(a[p],b,w,o)}if(r){p=0;for(g=r.length;p<g;++p)e(r[p],b,w,o)}a=w}}if(!a){d.push(b);return z}if(!a.valid){d.push(b);return z}g=a.validAttributes;var i=a.validStyles;r=a.validClasses;var x=b.attributes,F=b.styles,h=b.classes,o=b.classBackup,C=b.styleBackup,u,A,D=[];w=[];var v=/^data-cke-/;p=false;delete x.style;delete x["class"];delete b.classBackup;delete b.styleBackup;if(!a.allAttributes)for(u in x)if(!g[u])if(v.test(u)){if(u!=(A=u.replace(/^data-cke-saved-/,""))&&!g[A]){delete x[u];p=true}}else{delete x[u];
p=true}if(!a.allStyles||a.hadInvalidStyle){for(u in F)a.allStyles||i[u]?D.push(u+":"+F[u]):p=true;if(D.length)x.style=D.sort().join("; ")}else if(C)x.style=C;if(!a.allClasses||a.hadInvalidClass){for(u=0;u<h.length;++u)(a.allClasses||r[h[u]])&&w.push(h[u]);w.length&&(x["class"]=w.sort().join(" "));o&&w.length<o.split(/\s+/).length&&(p=true)}else o&&(x["class"]=o);p&&(k=z);if(!f.skipFinalValidation&&!j(b)){d.push(b);return z}}if(f.toHtml)b.name=b.name.replace($,"cke:$1");return k}function p(a){var b=
[],c;for(c in a)c.indexOf("*")>-1&&b.push(c.replace(/\*/g,".*"));return b.length?RegExp("^(?:"+b.join("|")+")$"):null}function q(a){var b=a.attributes,c;delete b.style;delete b["class"];if(c=CKEDITOR.tools.writeCssText(a.styles,true))b.style=c;a.classes.length&&(b["class"]=a.classes.sort().join(" "))}function j(a){switch(a.name){case "a":if(!a.children.length&&!a.attributes.name)return false;break;case "img":if(!a.attributes.src)return false}return true}function u(a){if(!a)return false;if(a===true)return true;
var b=p(a);return function(c){return c in a||b&&c.match(b)}}function v(){return new CKEDITOR.htmlParser.element("br")}function E(a){return a.type==CKEDITOR.NODE_ELEMENT&&(a.name=="br"||J.$block[a.name])}function k(a,b,c){var d=a.name;if(J.$empty[d]||!a.children.length)if(d=="hr"&&b=="br")a.replaceWith(v());else{a.parent&&c.push({check:"it",el:a.parent});a.remove()}else if(J.$block[d]||d=="tr")if(b=="br"){if(a.previous&&!E(a.previous)){b=v();b.insertBefore(a)}if(a.next&&!E(a.next)){b=v();b.insertAfter(a)}a.replaceWithChildren()}else{var d=
a.children,f;b:{f=J[b];for(var e=0,n=d.length,j;e<n;++e){j=d[e];if(j.type==CKEDITOR.NODE_ELEMENT&&!f[j.name]){f=false;break b}}f=true}if(f){a.name=b;a.attributes={};c.push({check:"parent-down",el:a})}else{f=a.parent;for(var e=f.type==CKEDITOR.NODE_DOCUMENT_FRAGMENT||f.name=="body",k,r,n=d.length;n>0;){j=d[--n];if(e&&(j.type==CKEDITOR.NODE_TEXT||j.type==CKEDITOR.NODE_ELEMENT&&J.$inline[j.name])){if(!k){k=new CKEDITOR.htmlParser.element(b);k.insertAfter(a);c.push({check:"parent-down",el:k})}k.add(j,
0)}else{k=null;r=J[f.name]||J.span;j.insertAfter(a);f.type!=CKEDITOR.NODE_DOCUMENT_FRAGMENT&&(j.type==CKEDITOR.NODE_ELEMENT&&!r[j.name])&&c.push({check:"el-up",el:j})}}a.remove()}}else if(d=="style")a.remove();else{a.parent&&c.push({check:"it",el:a.parent});a.replaceWithChildren()}}function n(a,b,c){var d,f;for(d=0;d<c.length;++d){f=c[d];if((!f.check||a.check(f.check,false))&&(!f.left||f.left(b))){f.right(b,aa);break}}}function r(a,b){var c=b.getDefinition(),d=c.attributes,f=c.styles,e,n,j,k;if(a.name!=
c.element)return false;for(e in d)if(e=="class"){c=d[e].split(/\s+/);for(j=a.classes.join("|");k=c.pop();)if(j.indexOf(k)==-1)return false}else if(a.attributes[e]!=d[e])return false;for(n in f)if(a.styles[n]!=f[n])return false;return true}function o(a,b){var c,d;if(typeof a=="string")c=a;else if(a instanceof CKEDITOR.style)d=a;else{c=a[0];d=a[1]}return[{element:c,left:d,right:function(a,c){c.transform(a,b)}}]}function M(a){return function(b){return r(b,a)}}function D(a){return function(b,c){c[a](b)}}
var J=CKEDITOR.dtd,z=1,L=CKEDITOR.tools.copy,B=CKEDITOR.tools.trim,w="cke-test",H=["","p","br","div"];CKEDITOR.FILTER_SKIP_TREE=2;CKEDITOR.filter=function(a){this.allowedContent=[];this.disallowedContent=[];this.elementCallbacks=null;this.disabled=false;this.editor=null;this.id=CKEDITOR.tools.getNextNumber();this._={allowedRules:{elements:{},generic:[]},disallowedRules:{elements:{},generic:[]},transformations:{},cachedTests:{}};CKEDITOR.filter.instances[this.id]=this;if(a instanceof CKEDITOR.editor){a=
this.editor=a;this.customConfig=true;var b=a.config.allowedContent;if(b===true)this.disabled=true;else{if(!b)this.customConfig=false;this.allow(b,"config",1);this.allow(a.config.extraAllowedContent,"extra",1);this.allow(H[a.enterMode]+" "+H[a.shiftEnterMode],"default",1);this.disallow(a.config.disallowedContent)}}else{this.customConfig=false;this.allow(a,"default",1)}};CKEDITOR.filter.instances={};CKEDITOR.filter.prototype={allow:function(b,c,f){if(!d(this,b,f))return false;var e,n;if(typeof b=="string")b=
m(b);else if(b instanceof CKEDITOR.style){if(b.toAllowedContentRules)return this.allow(b.toAllowedContentRules(this.editor),c,f);e=b.getDefinition();b={};f=e.attributes;b[e.element]=e={styles:e.styles,requiredStyles:e.styles&&CKEDITOR.tools.objectKeys(e.styles)};if(f){f=L(f);e.classes=f["class"]?f["class"].split(/\s+/):null;e.requiredClasses=e.classes;delete f["class"];e.attributes=f;e.requiredAttributes=f&&CKEDITOR.tools.objectKeys(f)}}else if(CKEDITOR.tools.isArray(b)){for(e=0;e<b.length;++e)n=
this.allow(b[e],c,f);return n}a(this,b,c,this.allowedContent,this._.allowedRules);return true},applyTo:function(a,b,c,d){if(this.disabled)return false;var f=this,e=[],n=this.editor&&this.editor.config.protectedSource,r,x=false,h={doFilter:!c,doTransform:true,doCallbacks:true,toHtml:b};a.forEach(function(a){if(a.type==CKEDITOR.NODE_ELEMENT){if(a.attributes["data-cke-filter"]=="off")return false;if(!b||!(a.name=="span"&&~CKEDITOR.tools.objectKeys(a.attributes).join("|").indexOf("data-cke-"))){r=y(f,
a,e,h);if(r&z)x=true;else if(r&2)return false}}else if(a.type==CKEDITOR.NODE_COMMENT&&a.value.match(/^\{cke_protected\}(?!\{C\})/)){var c;a:{var d=decodeURIComponent(a.value.replace(/^\{cke_protected\}/,""));c=[];var j,k,o;if(n)for(k=0;k<n.length;++k)if((o=d.match(n[k]))&&o[0].length==d.length){c=true;break a}d=CKEDITOR.htmlParser.fragment.fromHtml(d);d.children.length==1&&(j=d.children[0]).type==CKEDITOR.NODE_ELEMENT&&y(f,j,c,h);c=!c.length}c||e.push(a)}},null,true);e.length&&(x=true);for(var o,
a=[],d=H[d||(this.editor?this.editor.enterMode:CKEDITOR.ENTER_P)],p;c=e.pop();)c.type==CKEDITOR.NODE_ELEMENT?k(c,d,a):c.remove();for(;o=a.pop();){c=o.el;if(c.parent){p=J[c.parent.name]||J.span;switch(o.check){case "it":J.$removeEmpty[c.name]&&!c.children.length?k(c,d,a):j(c)||k(c,d,a);break;case "el-up":c.parent.type!=CKEDITOR.NODE_DOCUMENT_FRAGMENT&&!p[c.name]&&k(c,d,a);break;case "parent-down":c.parent.type!=CKEDITOR.NODE_DOCUMENT_FRAGMENT&&!p[c.name]&&k(c.parent,d,a)}}}return x},checkFeature:function(a){if(this.disabled||
!a)return true;a.toFeature&&(a=a.toFeature(this.editor));return!a.requiredContent||this.check(a.requiredContent)},disable:function(){this.disabled=true},disallow:function(b){if(!d(this,b,true))return false;typeof b=="string"&&(b=m(b));a(this,b,null,this.disallowedContent,this._.disallowedRules);return true},addContentForms:function(a){if(!this.disabled&&a){var b,c,d=[],f;for(b=0;b<a.length&&!f;++b){c=a[b];if((typeof c=="string"||c instanceof CKEDITOR.style)&&this.check(c))f=c}if(f){for(b=0;b<a.length;++b)d.push(o(a[b],
f));this.addTransformations(d)}}},addElementCallback:function(a){if(!this.elementCallbacks)this.elementCallbacks=[];this.elementCallbacks.push(a)},addFeature:function(a){if(this.disabled||!a)return true;a.toFeature&&(a=a.toFeature(this.editor));this.allow(a.allowedContent,a.name);this.addTransformations(a.contentTransformations);this.addContentForms(a.contentForms);return a.requiredContent&&(this.customConfig||this.disallowedContent.length)?this.check(a.requiredContent):true},addTransformations:function(a){var b,
c;if(!this.disabled&&a){var d=this._.transformations,f;for(f=0;f<a.length;++f){b=a[f];var e=void 0,n=void 0,j=void 0,k=void 0,r=void 0,x=void 0;c=[];for(n=0;n<b.length;++n){j=b[n];if(typeof j=="string"){j=j.split(/\s*:\s*/);k=j[0];r=null;x=j[1]}else{k=j.check;r=j.left;x=j.right}if(!e){e=j;e=e.element?e.element:k?k.match(/^([a-z0-9]+)/i)[0]:e.left.getDefinition().element}r instanceof CKEDITOR.style&&(r=M(r));c.push({check:k==e?null:k,left:r,right:typeof x=="string"?D(x):x})}b=e;d[b]||(d[b]=[]);d[b].push(c)}}},
check:function(a,b,c){if(this.disabled)return true;if(CKEDITOR.tools.isArray(a)){for(var d=a.length;d--;)if(this.check(a[d],b,c))return true;return false}var f,e;if(typeof a=="string"){e=a+"<"+(b===false?"0":"1")+(c?"1":"0")+">";if(e in this._.cachedChecks)return this._.cachedChecks[e];d=m(a).$1;f=d.styles;var j=d.classes;d.name=d.elements;d.classes=j=j?j.split(/\s*,\s*/):[];d.styles=g(f);d.attributes=g(d.attributes);d.children=[];j.length&&(d.attributes["class"]=j.join(" "));if(f)d.attributes.style=
CKEDITOR.tools.writeCssText(d.styles);f=d}else{d=a.getDefinition();f=d.styles;j=d.attributes||{};if(f){f=L(f);j.style=CKEDITOR.tools.writeCssText(f,true)}else f={};f={name:d.element,attributes:j,classes:j["class"]?j["class"].split(/\s+/):[],styles:f,children:[]}}var j=CKEDITOR.tools.clone(f),k=[],r;if(b!==false&&(r=this._.transformations[f.name])){for(d=0;d<r.length;++d)n(this,f,r[d]);q(f)}y(this,j,k,{doFilter:true,doTransform:b!==false,skipRequired:!c,skipFinalValidation:!c});b=k.length>0?false:
CKEDITOR.tools.objectCompare(f.attributes,j.attributes,true)?true:false;typeof a=="string"&&(this._.cachedChecks[e]=b);return b},getAllowedEnterMode:function(){var a=["p","div","br"],b={p:CKEDITOR.ENTER_P,div:CKEDITOR.ENTER_DIV,br:CKEDITOR.ENTER_BR};return function(c,d){var f=a.slice(),e;if(this.check(H[c]))return c;for(d||(f=f.reverse());e=f.pop();)if(this.check(e))return b[e];return CKEDITOR.ENTER_BR}}(),destroy:function(){delete CKEDITOR.filter.instances[this.id];delete this._;delete this.allowedContent;
delete this.disallowedContent}};var C={styles:1,attributes:1,classes:1},A={styles:"requiredStyles",attributes:"requiredAttributes",classes:"requiredClasses"},x=/^([a-z0-9\-*\s]+)((?:\s*\{[!\w\-,\s\*]+\}\s*|\s*\[[!\w\-,\s\*]+\]\s*|\s*\([!\w\-,\s\*]+\)\s*){0,3})(?:;\s*|$)/i,F={styles:/{([^}]+)}/,attrs:/\[([^\]]+)\]/,classes:/\(([^\)]+)\)/},G=/^cke:(object|embed|param)$/,$=/^(object|embed|param)$/,aa=CKEDITOR.filter.transformationsTools={sizeToStyle:function(a){this.lengthToStyle(a,"width");this.lengthToStyle(a,
"height")},sizeToAttribute:function(a){this.lengthToAttribute(a,"width");this.lengthToAttribute(a,"height")},lengthToStyle:function(a,b,c){c=c||b;if(!(c in a.styles)){var d=a.attributes[b];if(d){/^\d+$/.test(d)&&(d=d+"px");a.styles[c]=d}}delete a.attributes[b]},lengthToAttribute:function(a,b,c){c=c||b;if(!(c in a.attributes)){var d=a.styles[b],f=d&&d.match(/^(\d+)(?:\.\d*)?px$/);f?a.attributes[c]=f[1]:d==w&&(a.attributes[c]=w)}delete a.styles[b]},alignmentToStyle:function(a){if(!("float"in a.styles)){var b=
a.attributes.align;if(b=="left"||b=="right")a.styles["float"]=b}delete a.attributes.align},alignmentToAttribute:function(a){if(!("align"in a.attributes)){var b=a.styles["float"];if(b=="left"||b=="right")a.attributes.align=b}delete a.styles["float"]},matchesStyle:r,transform:function(a,b){if(typeof b=="string")a.name=b;else{var c=b.getDefinition(),d=c.styles,f=c.attributes,e,j,n,k;a.name=c.element;for(e in f)if(e=="class"){c=a.classes.join("|");for(n=f[e].split(/\s+/);k=n.pop();)c.indexOf(k)==-1&&
a.classes.push(k)}else a.attributes[e]=f[e];for(j in d)a.styles[j]=d[j]}}}})();
(function(){CKEDITOR.focusManager=function(a){if(a.focusManager)return a.focusManager;this.hasFocus=false;this.currentActive=null;this._={editor:a};return this};CKEDITOR.focusManager._={blurDelay:200};CKEDITOR.focusManager.prototype={focus:function(a){this._.timer&&clearTimeout(this._.timer);if(a)this.currentActive=a;if(!this.hasFocus&&!this._.locked){(a=CKEDITOR.currentInstance)&&a.focusManager.blur(1);this.hasFocus=true;(a=this._.editor.container)&&a.addClass("cke_focus");this._.editor.fire("focus")}},
lock:function(){this._.locked=1},unlock:function(){delete this._.locked},blur:function(a){function e(){if(this.hasFocus){this.hasFocus=false;var a=this._.editor.container;a&&a.removeClass("cke_focus");this._.editor.fire("blur")}}if(!this._.locked){this._.timer&&clearTimeout(this._.timer);var b=CKEDITOR.focusManager._.blurDelay;a||!b?e.call(this):this._.timer=CKEDITOR.tools.setTimeout(function(){delete this._.timer;e.call(this)},b,this)}},add:function(a,e){var b=a.getCustomData("focusmanager");if(!b||
b!=this){b&&b.remove(a);var b="focus",c="blur";if(e)if(CKEDITOR.env.ie){b="focusin";c="focusout"}else CKEDITOR.event.useCapture=1;var f={blur:function(){a.equals(this.currentActive)&&this.blur()},focus:function(){this.focus(a)}};a.on(b,f.focus,this);a.on(c,f.blur,this);if(e)CKEDITOR.event.useCapture=0;a.setCustomData("focusmanager",this);a.setCustomData("focusmanager_handlers",f)}},remove:function(a){a.removeCustomData("focusmanager");var e=a.removeCustomData("focusmanager_handlers");a.removeListener("blur",
e.blur);a.removeListener("focus",e.focus)}}})();CKEDITOR.keystrokeHandler=function(a){if(a.keystrokeHandler)return a.keystrokeHandler;this.keystrokes={};this.blockedKeystrokes={};this._={editor:a};return this};
(function(){var a,e=function(b){var b=b.data,f=b.getKeystroke(),d=this.keystrokes[f],e=this._.editor;a=e.fire("key",{keyCode:f,domEvent:b})===false;if(!a){d&&(a=e.execCommand(d,{from:"keystrokeHandler"})!==false);a||(a=!!this.blockedKeystrokes[f])}a&&b.preventDefault(true);return!a},b=function(b){if(a){a=false;b.data.preventDefault(true)}};CKEDITOR.keystrokeHandler.prototype={attach:function(a){a.on("keydown",e,this);if(CKEDITOR.env.gecko&&CKEDITOR.env.mac)a.on("keypress",b,this)}}})();
(function(){CKEDITOR.lang={languages:{af:1,ar:1,bg:1,bn:1,bs:1,ca:1,cs:1,cy:1,da:1,de:1,el:1,"en-au":1,"en-ca":1,"en-gb":1,en:1,eo:1,es:1,et:1,eu:1,fa:1,fi:1,fo:1,"fr-ca":1,fr:1,gl:1,gu:1,he:1,hi:1,hr:1,hu:1,id:1,is:1,it:1,ja:1,ka:1,km:1,ko:1,ku:1,lt:1,lv:1,mk:1,mn:1,ms:1,nb:1,nl:1,no:1,pl:1,"pt-br":1,pt:1,ro:1,ru:1,si:1,sk:1,sl:1,sq:1,"sr-latn":1,sr:1,sv:1,th:1,tr:1,tt:1,ug:1,uk:1,vi:1,"zh-cn":1,zh:1},rtl:{ar:1,fa:1,he:1,ku:1,ug:1},load:function(a,e,b){if(!a||!CKEDITOR.lang.languages[a])a=this.detect(e,
a);var c=this,e=function(){c[a].dir=c.rtl[a]?"rtl":"ltr";b(a,c[a])};this[a]?e():CKEDITOR.scriptLoader.load(CKEDITOR.getUrl("lang/"+a+".js"),e,this)},detect:function(a,e){var b=this.languages,e=e||navigator.userLanguage||navigator.language||a,c=e.toLowerCase().match(/([a-z]+)(?:-([a-z]+))?/),f=c[1],c=c[2];b[f+"-"+c]?f=f+"-"+c:b[f]||(f=null);CKEDITOR.lang.detect=f?function(){return f}:function(a){return a};return f||a}}})();
CKEDITOR.scriptLoader=function(){var a={},e={};return{load:function(b,c,f,d){var h=typeof b=="string";h&&(b=[b]);f||(f=CKEDITOR);var l=b.length,i=[],g=[],m=function(a){c&&(h?c.call(f,a):c.call(f,i,g))};if(l===0)m(true);else{var t=function(a,b){(b?i:g).push(a);if(--l<=0){d&&CKEDITOR.document.getDocumentElement().removeStyle("cursor");m(b)}},s=function(b,c){a[b]=1;var d=e[b];delete e[b];for(var f=0;f<d.length;f++)d[f](b,c)},y=function(b){if(a[b])t(b,true);else{var d=e[b]||(e[b]=[]);d.push(t);if(!(d.length>
1)){var f=new CKEDITOR.dom.element("script");f.setAttributes({type:"text/javascript",src:b});if(c)if(CKEDITOR.env.ie&&CKEDITOR.env.version<11)f.$.onreadystatechange=function(){if(f.$.readyState=="loaded"||f.$.readyState=="complete"){f.$.onreadystatechange=null;s(b,true)}};else{f.$.onload=function(){setTimeout(function(){s(b,true)},0)};f.$.onerror=function(){s(b,false)}}f.appendTo(CKEDITOR.document.getHead())}}};d&&CKEDITOR.document.getDocumentElement().setStyle("cursor","wait");for(var p=0;p<l;p++)y(b[p])}},
queue:function(){function a(){var b;(b=c[0])&&this.load(b.scriptUrl,b.callback,CKEDITOR,0)}var c=[];return function(f,d){var e=this;c.push({scriptUrl:f,callback:function(){d&&d.apply(this,arguments);c.shift();a.call(e)}});c.length==1&&a.call(this)}}()}}();CKEDITOR.resourceManager=function(a,e){this.basePath=a;this.fileName=e;this.registered={};this.loaded={};this.externals={};this._={waitingList:{}}};
CKEDITOR.resourceManager.prototype={add:function(a,e){if(this.registered[a])throw'[CKEDITOR.resourceManager.add] The resource name "'+a+'" is already registered.';var b=this.registered[a]=e||{};b.name=a;b.path=this.getPath(a);CKEDITOR.fire(a+CKEDITOR.tools.capitalize(this.fileName)+"Ready",b);return this.get(a)},get:function(a){return this.registered[a]||null},getPath:function(a){var e=this.externals[a];return CKEDITOR.getUrl(e&&e.dir||this.basePath+a+"/")},getFilePath:function(a){var e=this.externals[a];
return CKEDITOR.getUrl(this.getPath(a)+(e?e.file:this.fileName+".js"))},addExternal:function(a,e,b){for(var a=a.split(","),c=0;c<a.length;c++){var f=a[c];b||(e=e.replace(/[^\/]+$/,function(a){b=a;return""}));this.externals[f]={dir:e,file:b||this.fileName+".js"}}},load:function(a,e,b){CKEDITOR.tools.isArray(a)||(a=a?[a]:[]);for(var c=this.loaded,f=this.registered,d=[],h={},l={},i=0;i<a.length;i++){var g=a[i];if(g)if(!c[g]&&!f[g]){var m=this.getFilePath(g);d.push(m);m in h||(h[m]=[]);h[m].push(g)}else l[g]=
this.get(g)}CKEDITOR.scriptLoader.load(d,function(a,d){if(d.length)throw'[CKEDITOR.resourceManager.load] Resource name "'+h[d[0]].join(",")+'" was not found at "'+d[0]+'".';for(var f=0;f<a.length;f++)for(var p=h[a[f]],g=0;g<p.length;g++){var j=p[g];l[j]=this.get(j);c[j]=1}e.call(b,l)},this)}};CKEDITOR.plugins=new CKEDITOR.resourceManager("plugins/","plugin");
CKEDITOR.plugins.load=CKEDITOR.tools.override(CKEDITOR.plugins.load,function(a){var e={};return function(b,c,f){var d={},h=function(b){a.call(this,b,function(a){CKEDITOR.tools.extend(d,a);var b=[],m;for(m in a){var l=a[m],s=l&&l.requires;if(!e[m]){if(l.icons)for(var y=l.icons.split(","),p=y.length;p--;)CKEDITOR.skin.addIcon(y[p],l.path+"icons/"+(CKEDITOR.env.hidpi&&l.hidpi?"hidpi/":"")+y[p]+".png");e[m]=1}if(s){s.split&&(s=s.split(","));for(l=0;l<s.length;l++)d[s[l]]||b.push(s[l])}}if(b.length)h.call(this,
b);else{for(m in d){l=d[m];if(l.onLoad&&!l.onLoad._called){l.onLoad()===false&&delete d[m];l.onLoad._called=1}}c&&c.call(f||window,d)}},this)};h.call(this,b)}});CKEDITOR.plugins.setLang=function(a,e,b){var c=this.get(a),a=c.langEntries||(c.langEntries={}),c=c.lang||(c.lang=[]);c.split&&(c=c.split(","));CKEDITOR.tools.indexOf(c,e)==-1&&c.push(e);a[e]=b};CKEDITOR.ui=function(a){if(a.ui)return a.ui;this.items={};this.instances={};this.editor=a;this._={handlers:{}};return this};
CKEDITOR.ui.prototype={add:function(a,e,b){b.name=a.toLowerCase();var c=this.items[a]={type:e,command:b.command||null,args:Array.prototype.slice.call(arguments,2)};CKEDITOR.tools.extend(c,b)},get:function(a){return this.instances[a]},create:function(a){var e=this.items[a],b=e&&this._.handlers[e.type],c=e&&e.command&&this.editor.getCommand(e.command),b=b&&b.create.apply(this,e.args);this.instances[a]=b;c&&c.uiItems.push(b);if(b&&!b.type)b.type=e.type;return b},addHandler:function(a,e){this._.handlers[a]=
e},space:function(a){return CKEDITOR.document.getById(this.spaceId(a))},spaceId:function(a){return this.editor.id+"_"+a}};CKEDITOR.event.implementOn(CKEDITOR.ui);
(function(){function a(a,c,d){CKEDITOR.event.call(this);a=a&&CKEDITOR.tools.clone(a);if(c!==void 0){if(c instanceof CKEDITOR.dom.element){if(!d)throw Error("One of the element modes must be specified.");}else throw Error("Expect element of type CKEDITOR.dom.element.");if(CKEDITOR.env.ie&&CKEDITOR.env.quirks&&d==CKEDITOR.ELEMENT_MODE_INLINE)throw Error("Inline element mode is not supported on IE quirks.");if(!(d==CKEDITOR.ELEMENT_MODE_INLINE?c.is(CKEDITOR.dtd.$editable)||c.is("textarea"):d==CKEDITOR.ELEMENT_MODE_REPLACE?
!c.is(CKEDITOR.dtd.$nonBodyContent):1))throw Error('The specified element mode is not supported on element: "'+c.getName()+'".');this.element=c;this.elementMode=d;this.name=this.elementMode!=CKEDITOR.ELEMENT_MODE_APPENDTO&&(c.getId()||c.getNameAtt())}else this.elementMode=CKEDITOR.ELEMENT_MODE_NONE;this._={};this.commands={};this.templates={};this.name=this.name||e();this.id=CKEDITOR.tools.getNextId();this.status="unloaded";this.config=CKEDITOR.tools.prototypedCopy(CKEDITOR.config);this.ui=new CKEDITOR.ui(this);
this.focusManager=new CKEDITOR.focusManager(this);this.keystrokeHandler=new CKEDITOR.keystrokeHandler(this);this.on("readOnly",b);this.on("selectionChange",function(a){f(this,a.data.path)});this.on("activeFilterChange",function(){f(this,this.elementPath(),true)});this.on("mode",b);this.on("instanceReady",function(){this.config.startupFocus&&this.focus()});CKEDITOR.fire("instanceCreated",null,this);CKEDITOR.add(this);CKEDITOR.tools.setTimeout(function(){h(this,a)},0,this)}function e(){do var a="editor"+
++s;while(CKEDITOR.instances[a]);return a}function b(){var a=this.commands,b;for(b in a)c(this,a[b])}function c(a,b){b[b.startDisabled?"disable":a.readOnly&&!b.readOnly?"disable":b.modes[a.mode]?"enable":"disable"]()}function f(a,b,c){if(b){var d,f,e=a.commands;for(f in e){d=e[f];(c||d.contextSensitive)&&d.refresh(a,b)}}}function d(a){var b=a.config.customConfig;if(!b)return false;var b=CKEDITOR.getUrl(b),c=y[b]||(y[b]={});if(c.fn){c.fn.call(a,a.config);(CKEDITOR.getUrl(a.config.customConfig)==b||
!d(a))&&a.fireOnce("customConfigLoaded")}else CKEDITOR.scriptLoader.queue(b,function(){c.fn=CKEDITOR.editorConfig?CKEDITOR.editorConfig:function(){};d(a)});return true}function h(a,b){a.on("customConfigLoaded",function(){if(b){if(b.on)for(var c in b.on)a.on(c,b.on[c]);CKEDITOR.tools.extend(a.config,b,true);delete a.config.on}c=a.config;a.readOnly=!(!c.readOnly&&!(a.elementMode==CKEDITOR.ELEMENT_MODE_INLINE?a.element.is("textarea")?a.element.hasAttribute("disabled"):a.element.isReadOnly():a.elementMode==
CKEDITOR.ELEMENT_MODE_REPLACE&&a.element.hasAttribute("disabled")));a.blockless=a.elementMode==CKEDITOR.ELEMENT_MODE_INLINE?!(a.element.is("textarea")||CKEDITOR.dtd[a.element.getName()].p):false;a.tabIndex=c.tabIndex||a.element&&a.element.getAttribute("tabindex")||0;a.activeEnterMode=a.enterMode=a.blockless?CKEDITOR.ENTER_BR:c.enterMode;a.activeShiftEnterMode=a.shiftEnterMode=a.blockless?CKEDITOR.ENTER_BR:c.shiftEnterMode;if(c.skin)CKEDITOR.skinName=c.skin;a.fireOnce("configLoaded");a.dataProcessor=
new CKEDITOR.htmlDataProcessor(a);a.filter=a.activeFilter=new CKEDITOR.filter(a);l(a)});if(b&&b.customConfig!=null)a.config.customConfig=b.customConfig;d(a)||a.fireOnce("customConfigLoaded")}function l(a){CKEDITOR.skin.loadPart("editor",function(){i(a)})}function i(a){CKEDITOR.lang.load(a.config.language,a.config.defaultLanguage,function(b,c){var d=a.config.title;a.langCode=b;a.lang=CKEDITOR.tools.prototypedCopy(c);a.title=typeof d=="string"||d===false?d:[a.lang.editor,a.name].join(", ");if(!a.config.contentsLangDirection)a.config.contentsLangDirection=
a.elementMode==CKEDITOR.ELEMENT_MODE_INLINE?a.element.getDirection(1):a.lang.dir;a.fire("langLoaded");g(a)})}function g(a){a.getStylesSet(function(b){a.once("loaded",function(){a.fire("stylesSet",{styles:b})},null,null,1);m(a)})}function m(a){var b=a.config,c=b.plugins,d=b.extraPlugins,f=b.removePlugins;if(d)var e=RegExp("(?:^|,)(?:"+d.replace(/\s*,\s*/g,"|")+")(?=,|$)","g"),c=c.replace(e,""),c=c+(","+d);if(f)var k=RegExp("(?:^|,)(?:"+f.replace(/\s*,\s*/g,"|")+")(?=,|$)","g"),c=c.replace(k,"");CKEDITOR.env.air&&
(c=c+",adobeair");CKEDITOR.plugins.load(c.split(","),function(c){var d=[],f=[],e=[];a.plugins=c;for(var j in c){var h=c[j],g=h.lang,i=null,u=h.requires,w;CKEDITOR.tools.isArray(u)&&(u=u.join(","));if(u&&(w=u.match(k)))for(;u=w.pop();)CKEDITOR.tools.setTimeout(function(a,b){throw Error('Plugin "'+a.replace(",","")+'" cannot be removed from the plugins list, because it\'s required by "'+b+'" plugin.');},0,null,[u,j]);if(g&&!a.lang[j]){g.split&&(g=g.split(","));if(CKEDITOR.tools.indexOf(g,a.langCode)>=
0)i=a.langCode;else{i=a.langCode.replace(/-.*/,"");i=i!=a.langCode&&CKEDITOR.tools.indexOf(g,i)>=0?i:CKEDITOR.tools.indexOf(g,"en")>=0?"en":g[0]}if(!h.langEntries||!h.langEntries[i])e.push(CKEDITOR.getUrl(h.path+"lang/"+i+".js"));else{a.lang[j]=h.langEntries[i];i=null}}f.push(i);d.push(h)}CKEDITOR.scriptLoader.load(e,function(){for(var c=["beforeInit","init","afterInit"],e=0;e<c.length;e++)for(var n=0;n<d.length;n++){var j=d[n];e===0&&(f[n]&&j.lang&&j.langEntries)&&(a.lang[j.name]=j.langEntries[f[n]]);
if(j[c[e]])j[c[e]](a)}a.fireOnce("pluginsLoaded");b.keystrokes&&a.setKeystroke(a.config.keystrokes);for(n=0;n<a.config.blockedKeystrokes.length;n++)a.keystrokeHandler.blockedKeystrokes[a.config.blockedKeystrokes[n]]=1;a.status="loaded";a.fireOnce("loaded");CKEDITOR.fire("instanceLoaded",null,a)})})}function t(){var a=this.element;if(a&&this.elementMode!=CKEDITOR.ELEMENT_MODE_APPENDTO){var b=this.getData();this.config.htmlEncodeOutput&&(b=CKEDITOR.tools.htmlEncode(b));a.is("textarea")?a.setValue(b):
a.setHtml(b);return true}return false}a.prototype=CKEDITOR.editor.prototype;CKEDITOR.editor=a;var s=0,y={};CKEDITOR.tools.extend(CKEDITOR.editor.prototype,{addCommand:function(a,b){b.name=a.toLowerCase();var d=new CKEDITOR.command(this,b);this.mode&&c(this,d);return this.commands[a]=d},_attachToForm:function(){function a(d){b.updateElement();b._.required&&(!c.getValue()&&b.fire("required")===false)&&d.data.preventDefault()}var b=this,c=b.element,d=new CKEDITOR.dom.element(c.$.form);if(c.is("textarea")&&
d){d.on("submit",a);if(d.$.submit&&d.$.submit.call&&d.$.submit.apply)d.$.submit=CKEDITOR.tools.override(d.$.submit,function(b){return function(){a();b.apply?b.apply(this):b()}});b.on("destroy",function(){d.removeListener("submit",a)})}},destroy:function(a){this.fire("beforeDestroy");!a&&t.call(this);this.editable(null);this.filter.destroy();delete this.filter;delete this.activeFilter;this.status="destroyed";this.fire("destroy");this.removeAllListeners();CKEDITOR.remove(this);CKEDITOR.fire("instanceDestroyed",
null,this)},elementPath:function(a){if(!a){a=this.getSelection();if(!a)return null;a=a.getStartElement()}return a?new CKEDITOR.dom.elementPath(a,this.editable()):null},createRange:function(){var a=this.editable();return a?new CKEDITOR.dom.range(a):null},execCommand:function(a,b){var c=this.getCommand(a),d={name:a,commandData:b,command:c};if(c&&c.state!=CKEDITOR.TRISTATE_DISABLED&&this.fire("beforeCommandExec",d)!==false){d.returnValue=c.exec(d.commandData);if(!c.async&&this.fire("afterCommandExec",
d)!==false)return d.returnValue}return false},getCommand:function(a){return this.commands[a]},getData:function(a){!a&&this.fire("beforeGetData");var b=this._.data;if(typeof b!="string")b=(b=this.element)&&this.elementMode==CKEDITOR.ELEMENT_MODE_REPLACE?b.is("textarea")?b.getValue():b.getHtml():"";b={dataValue:b};!a&&this.fire("getData",b);return b.dataValue},getSnapshot:function(){var a=this.fire("getSnapshot");if(typeof a!="string"){var b=this.element;b&&this.elementMode==CKEDITOR.ELEMENT_MODE_REPLACE&&
(a=b.is("textarea")?b.getValue():b.getHtml())}return a},loadSnapshot:function(a){this.fire("loadSnapshot",a)},setData:function(a,b,c){var d=true,f=b;if(b&&typeof b=="object"){c=b.internal;f=b.callback;d=!b.noSnapshot}!c&&d&&this.fire("saveSnapshot");if(f||!c)this.once("dataReady",function(a){!c&&d&&this.fire("saveSnapshot");f&&f.call(a.editor)});a={dataValue:a};!c&&this.fire("setData",a);this._.data=a.dataValue;!c&&this.fire("afterSetData",a)},setReadOnly:function(a){a=a==null||a;if(this.readOnly!=
a){this.readOnly=a;this.keystrokeHandler.blockedKeystrokes[8]=+a;this.editable().setReadOnly(a);this.fire("readOnly")}},insertHtml:function(a,b){this.fire("insertHtml",{dataValue:a,mode:b})},insertText:function(a){this.fire("insertText",a)},insertElement:function(a){this.fire("insertElement",a)},focus:function(){this.fire("beforeFocus")},checkDirty:function(){return this.status=="ready"&&this._.previousValue!==this.getSnapshot()},resetDirty:function(){this._.previousValue=this.getSnapshot()},updateElement:function(){return t.call(this)},
setKeystroke:function(){for(var a=this.keystrokeHandler.keystrokes,b=CKEDITOR.tools.isArray(arguments[0])?arguments[0]:[[].slice.call(arguments,0)],c,d,f=b.length;f--;){c=b[f];d=0;if(CKEDITOR.tools.isArray(c)){d=c[1];c=c[0]}d?a[c]=d:delete a[c]}},addFeature:function(a){return this.filter.addFeature(a)},setActiveFilter:function(a){if(!a)a=this.filter;if(this.activeFilter!==a){this.activeFilter=a;this.fire("activeFilterChange");a===this.filter?this.setActiveEnterMode(null,null):this.setActiveEnterMode(a.getAllowedEnterMode(this.enterMode),
a.getAllowedEnterMode(this.shiftEnterMode,true))}},setActiveEnterMode:function(a,b){a=a?this.blockless?CKEDITOR.ENTER_BR:a:this.enterMode;b=b?this.blockless?CKEDITOR.ENTER_BR:b:this.shiftEnterMode;if(this.activeEnterMode!=a||this.activeShiftEnterMode!=b){this.activeEnterMode=a;this.activeShiftEnterMode=b;this.fire("activeEnterModeChange")}}})})();CKEDITOR.ELEMENT_MODE_NONE=0;CKEDITOR.ELEMENT_MODE_REPLACE=1;CKEDITOR.ELEMENT_MODE_APPENDTO=2;CKEDITOR.ELEMENT_MODE_INLINE=3;
CKEDITOR.htmlParser=function(){this._={htmlPartsRegex:/<(?:(?:\/([^>]+)>)|(?:!--([\S|\s]*?)--\>)|(?:([^\/\s>]+)((?:\s+[\w\-:.]+(?:\s*=\s*?(?:(?:"[^"]*")|(?:'[^']*')|[^\s"'\/>]+))?)*)[\S\s]*?(\/?)>))/g}};
(function(){var a=/([\w\-:.]+)(?:(?:\s*=\s*(?:(?:"([^"]*)")|(?:'([^']*)')|([^\s>]+)))|(?=\s|$))/g,e={checked:1,compact:1,declare:1,defer:1,disabled:1,ismap:1,multiple:1,nohref:1,noresize:1,noshade:1,nowrap:1,readonly:1,selected:1};CKEDITOR.htmlParser.prototype={onTagOpen:function(){},onTagClose:function(){},onText:function(){},onCDATA:function(){},onComment:function(){},parse:function(b){for(var c,f,d=0,h;c=this._.htmlPartsRegex.exec(b);){f=c.index;if(f>d){d=b.substring(d,f);if(h)h.push(d);else this.onText(d)}d=
this._.htmlPartsRegex.lastIndex;if(f=c[1]){f=f.toLowerCase();if(h&&CKEDITOR.dtd.$cdata[f]){this.onCDATA(h.join(""));h=null}if(!h){this.onTagClose(f);continue}}if(h)h.push(c[0]);else if(f=c[3]){f=f.toLowerCase();if(!/="/.test(f)){var l={},i,g=c[4];c=!!c[5];if(g)for(;i=a.exec(g);){var m=i[1].toLowerCase();i=i[2]||i[3]||i[4]||"";l[m]=!i&&e[m]?m:CKEDITOR.tools.htmlDecodeAttr(i)}this.onTagOpen(f,l,c);!h&&CKEDITOR.dtd.$cdata[f]&&(h=[])}}else if(f=c[2])this.onComment(f)}if(b.length>d)this.onText(b.substring(d,
b.length))}}})();
CKEDITOR.htmlParser.basicWriter=CKEDITOR.tools.createClass({$:function(){this._={output:[]}},proto:{openTag:function(a){this._.output.push("<",a)},openTagClose:function(a,e){e?this._.output.push(" />"):this._.output.push(">")},attribute:function(a,e){typeof e=="string"&&(e=CKEDITOR.tools.htmlEncodeAttr(e));this._.output.push(" ",a,'="',e,'"')},closeTag:function(a){this._.output.push("</",a,">")},text:function(a){this._.output.push(a)},comment:function(a){this._.output.push("<\!--",a,"--\>")},write:function(a){this._.output.push(a)},
reset:function(){this._.output=[];this._.indent=false},getHtml:function(a){var e=this._.output.join("");a&&this.reset();return e}}});"use strict";
(function(){CKEDITOR.htmlParser.node=function(){};CKEDITOR.htmlParser.node.prototype={remove:function(){var a=this.parent.children,e=CKEDITOR.tools.indexOf(a,this),b=this.previous,c=this.next;b&&(b.next=c);c&&(c.previous=b);a.splice(e,1);this.parent=null},replaceWith:function(a){var e=this.parent.children,b=CKEDITOR.tools.indexOf(e,this),c=a.previous=this.previous,f=a.next=this.next;c&&(c.next=a);f&&(f.previous=a);e[b]=a;a.parent=this.parent;this.parent=null},insertAfter:function(a){var e=a.parent.children,
b=CKEDITOR.tools.indexOf(e,a),c=a.next;e.splice(b+1,0,this);this.next=a.next;this.previous=a;a.next=this;c&&(c.previous=this);this.parent=a.parent},insertBefore:function(a){var e=a.parent.children,b=CKEDITOR.tools.indexOf(e,a);e.splice(b,0,this);this.next=a;(this.previous=a.previous)&&(a.previous.next=this);a.previous=this;this.parent=a.parent},getAscendant:function(a){var e=typeof a=="function"?a:typeof a=="string"?function(b){return b.name==a}:function(b){return b.name in a},b=this.parent;for(;b&&
b.type==CKEDITOR.NODE_ELEMENT;){if(e(b))return b;b=b.parent}return null},wrapWith:function(a){this.replaceWith(a);a.add(this);return a},getIndex:function(){return CKEDITOR.tools.indexOf(this.parent.children,this)},getFilterContext:function(a){return a||{}}}})();"use strict";CKEDITOR.htmlParser.comment=function(a){this.value=a;this._={isBlockLike:false}};
CKEDITOR.htmlParser.comment.prototype=CKEDITOR.tools.extend(new CKEDITOR.htmlParser.node,{type:CKEDITOR.NODE_COMMENT,filter:function(a,e){var b=this.value;if(!(b=a.onComment(e,b,this))){this.remove();return false}if(typeof b!="string"){this.replaceWith(b);return false}this.value=b;return true},writeHtml:function(a,e){e&&this.filter(e);a.comment(this.value)}});"use strict";
(function(){CKEDITOR.htmlParser.text=function(a){this.value=a;this._={isBlockLike:false}};CKEDITOR.htmlParser.text.prototype=CKEDITOR.tools.extend(new CKEDITOR.htmlParser.node,{type:CKEDITOR.NODE_TEXT,filter:function(a,e){if(!(this.value=a.onText(e,this.value,this))){this.remove();return false}},writeHtml:function(a,e){e&&this.filter(e);a.text(this.value)}})})();"use strict";
(function(){CKEDITOR.htmlParser.cdata=function(a){this.value=a};CKEDITOR.htmlParser.cdata.prototype=CKEDITOR.tools.extend(new CKEDITOR.htmlParser.node,{type:CKEDITOR.NODE_TEXT,filter:function(){},writeHtml:function(a){a.write(this.value)}})})();"use strict";CKEDITOR.htmlParser.fragment=function(){this.children=[];this.parent=null;this._={isBlockLike:true,hasInlineStarted:false}};
(function(){function a(a){return a.attributes["data-cke-survive"]?false:a.name=="a"&&a.attributes.href||CKEDITOR.dtd.$removeEmpty[a.name]}var e=CKEDITOR.tools.extend({table:1,ul:1,ol:1,dl:1},CKEDITOR.dtd.table,CKEDITOR.dtd.ul,CKEDITOR.dtd.ol,CKEDITOR.dtd.dl),b={ol:1,ul:1},c=CKEDITOR.tools.extend({},{html:1},CKEDITOR.dtd.html,CKEDITOR.dtd.body,CKEDITOR.dtd.head,{style:1,script:1}),f={ul:"li",ol:"li",dl:"dd",table:"tbody",tbody:"tr",thead:"tr",tfoot:"tr",tr:"td"};CKEDITOR.htmlParser.fragment.fromHtml=
function(d,h,l){function i(a){var b;if(j.length>0)for(var c=0;c<j.length;c++){var d=j[c],f=d.name,e=CKEDITOR.dtd[f],k=v.name&&CKEDITOR.dtd[v.name];if((!k||k[f])&&(!a||!e||e[a]||!CKEDITOR.dtd[a])){if(!b){g();b=1}d=d.clone();d.parent=v;v=d;j.splice(c,1);c--}else if(f==v.name){t(v,v.parent,1);c--}}}function g(){for(;u.length;)t(u.shift(),v)}function m(a){if(a._.isBlockLike&&a.name!="pre"&&a.name!="textarea"){var b=a.children.length,c=a.children[b-1],d;if(c&&c.type==CKEDITOR.NODE_TEXT)(d=CKEDITOR.tools.rtrim(c.value))?
c.value=d:a.children.length=b-1}}function t(b,c,d){var c=c||v||q,f=v;if(b.previous===void 0){if(s(c,b)){v=c;p.onTagOpen(l,{});b.returnPoint=c=v}m(b);(!a(b)||b.children.length)&&c.add(b);b.name=="pre"&&(k=false);b.name=="textarea"&&(E=false)}if(b.returnPoint){v=b.returnPoint;delete b.returnPoint}else v=d?c:f}function s(a,b){if((a==q||a.name=="body")&&l&&(!a.name||CKEDITOR.dtd[a.name][l])){var c,d;return(c=b.attributes&&(d=b.attributes["data-cke-real-element-type"])?d:b.name)&&c in CKEDITOR.dtd.$inline&&
!(c in CKEDITOR.dtd.head)&&!b.isOrphan||b.type==CKEDITOR.NODE_TEXT}}function y(a,b){return a in CKEDITOR.dtd.$listItem||a in CKEDITOR.dtd.$tableContent?a==b||a=="dt"&&b=="dd"||a=="dd"&&b=="dt":false}var p=new CKEDITOR.htmlParser,q=h instanceof CKEDITOR.htmlParser.element?h:typeof h=="string"?new CKEDITOR.htmlParser.element(h):new CKEDITOR.htmlParser.fragment,j=[],u=[],v=q,E=q.name=="textarea",k=q.name=="pre";p.onTagOpen=function(d,f,h,l){f=new CKEDITOR.htmlParser.element(d,f);if(f.isUnknown&&h)f.isEmpty=
true;f.isOptionalClose=l;if(a(f))j.push(f);else{if(d=="pre")k=true;else{if(d=="br"&&k){v.add(new CKEDITOR.htmlParser.text("\n"));return}d=="textarea"&&(E=true)}if(d=="br")u.push(f);else{for(;;){l=(h=v.name)?CKEDITOR.dtd[h]||(v._.isBlockLike?CKEDITOR.dtd.div:CKEDITOR.dtd.span):c;if(!f.isUnknown&&!v.isUnknown&&!l[d])if(v.isOptionalClose)p.onTagClose(h);else if(d in b&&h in b){h=v.children;(h=h[h.length-1])&&h.name=="li"||t(h=new CKEDITOR.htmlParser.element("li"),v);!f.returnPoint&&(f.returnPoint=v);
v=h}else if(d in CKEDITOR.dtd.$listItem&&!y(d,h))p.onTagOpen(d=="li"?"ul":"dl",{},0,1);else if(h in e&&!y(d,h)){!f.returnPoint&&(f.returnPoint=v);v=v.parent}else{h in CKEDITOR.dtd.$inline&&j.unshift(v);if(v.parent)t(v,v.parent,1);else{f.isOrphan=1;break}}else break}i(d);g();f.parent=v;f.isEmpty?t(f):v=f}}};p.onTagClose=function(a){for(var b=j.length-1;b>=0;b--)if(a==j[b].name){j.splice(b,1);return}for(var c=[],d=[],f=v;f!=q&&f.name!=a;){f._.isBlockLike||d.unshift(f);c.push(f);f=f.returnPoint||f.parent}if(f!=
q){for(b=0;b<c.length;b++){var e=c[b];t(e,e.parent)}v=f;f._.isBlockLike&&g();t(f,f.parent);if(f==v)v=v.parent;j=j.concat(d)}a=="body"&&(l=false)};p.onText=function(a){if((!v._.hasInlineStarted||u.length)&&!k&&!E){a=CKEDITOR.tools.ltrim(a);if(a.length===0)return}var b=v.name,d=b?CKEDITOR.dtd[b]||(v._.isBlockLike?CKEDITOR.dtd.div:CKEDITOR.dtd.span):c;if(!E&&!d["#"]&&b in e){p.onTagOpen(f[b]||"");p.onText(a)}else{g();i();!k&&!E&&(a=a.replace(/[\t\r\n ]{2,}|[\t\r\n]/g," "));a=new CKEDITOR.htmlParser.text(a);
if(s(v,a))this.onTagOpen(l,{},0,1);v.add(a)}};p.onCDATA=function(a){v.add(new CKEDITOR.htmlParser.cdata(a))};p.onComment=function(a){g();i();v.add(new CKEDITOR.htmlParser.comment(a))};p.parse(d);for(g();v!=q;)t(v,v.parent,1);m(q);return q};CKEDITOR.htmlParser.fragment.prototype={type:CKEDITOR.NODE_DOCUMENT_FRAGMENT,add:function(a,b){isNaN(b)&&(b=this.children.length);var c=b>0?this.children[b-1]:null;if(c){if(a._.isBlockLike&&c.type==CKEDITOR.NODE_TEXT){c.value=CKEDITOR.tools.rtrim(c.value);if(c.value.length===
0){this.children.pop();this.add(a);return}}c.next=a}a.previous=c;a.parent=this;this.children.splice(b,0,a);if(!this._.hasInlineStarted)this._.hasInlineStarted=a.type==CKEDITOR.NODE_TEXT||a.type==CKEDITOR.NODE_ELEMENT&&!a._.isBlockLike},filter:function(a,b){b=this.getFilterContext(b);a.onRoot(b,this);this.filterChildren(a,false,b)},filterChildren:function(a,b,c){if(this.childrenFilteredBy!=a.id){c=this.getFilterContext(c);if(b&&!this.parent)a.onRoot(c,this);this.childrenFilteredBy=a.id;for(b=0;b<this.children.length;b++)this.children[b].filter(a,
c)===false&&b--}},writeHtml:function(a,b){b&&this.filter(b);this.writeChildrenHtml(a)},writeChildrenHtml:function(a,b,c){var f=this.getFilterContext();if(c&&!this.parent&&b)b.onRoot(f,this);b&&this.filterChildren(b,false,f);b=0;c=this.children;for(f=c.length;b<f;b++)c[b].writeHtml(a)},forEach:function(a,b,c){if(!c&&(!b||this.type==b))var f=a(this);if(f!==false)for(var c=this.children,e=0;e<c.length;e++){f=c[e];f.type==CKEDITOR.NODE_ELEMENT?f.forEach(a,b):(!b||f.type==b)&&a(f)}},getFilterContext:function(a){return a||
{}}}})();"use strict";
(function(){function a(){this.rules=[]}function e(b,c,f,d){var e,l;for(e in c){(l=b[e])||(l=b[e]=new a);l.add(c[e],f,d)}}CKEDITOR.htmlParser.filter=CKEDITOR.tools.createClass({$:function(b){this.id=CKEDITOR.tools.getNextNumber();this.elementNameRules=new a;this.attributeNameRules=new a;this.elementsRules={};this.attributesRules={};this.textRules=new a;this.commentRules=new a;this.rootRules=new a;b&&this.addRules(b,10)},proto:{addRules:function(a,c){var f;if(typeof c=="number")f=c;else if(c&&"priority"in
c)f=c.priority;typeof f!="number"&&(f=10);typeof c!="object"&&(c={});a.elementNames&&this.elementNameRules.addMany(a.elementNames,f,c);a.attributeNames&&this.attributeNameRules.addMany(a.attributeNames,f,c);a.elements&&e(this.elementsRules,a.elements,f,c);a.attributes&&e(this.attributesRules,a.attributes,f,c);a.text&&this.textRules.add(a.text,f,c);a.comment&&this.commentRules.add(a.comment,f,c);a.root&&this.rootRules.add(a.root,f,c)},applyTo:function(a){a.filter(this)},onElementName:function(a,c){return this.elementNameRules.execOnName(a,
c)},onAttributeName:function(a,c){return this.attributeNameRules.execOnName(a,c)},onText:function(a,c,f){return this.textRules.exec(a,c,f)},onComment:function(a,c,f){return this.commentRules.exec(a,c,f)},onRoot:function(a,c){return this.rootRules.exec(a,c)},onElement:function(a,c){for(var f=[this.elementsRules["^"],this.elementsRules[c.name],this.elementsRules.$],d,e=0;e<3;e++)if(d=f[e]){d=d.exec(a,c,this);if(d===false)return null;if(d&&d!=c)return this.onNode(a,d);if(c.parent&&!c.name)break}return c},
onNode:function(a,c){var f=c.type;return f==CKEDITOR.NODE_ELEMENT?this.onElement(a,c):f==CKEDITOR.NODE_TEXT?new CKEDITOR.htmlParser.text(this.onText(a,c.value)):f==CKEDITOR.NODE_COMMENT?new CKEDITOR.htmlParser.comment(this.onComment(a,c.value)):null},onAttribute:function(a,c,f,d){return(f=this.attributesRules[f])?f.exec(a,d,c,this):d}}});CKEDITOR.htmlParser.filterRulesGroup=a;a.prototype={add:function(a,c,f){this.rules.splice(this.findIndex(c),0,{value:a,priority:c,options:f})},addMany:function(a,
c,f){for(var d=[this.findIndex(c),0],e=0,l=a.length;e<l;e++)d.push({value:a[e],priority:c,options:f});this.rules.splice.apply(this.rules,d)},findIndex:function(a){for(var c=this.rules,f=c.length-1;f>=0&&a<c[f].priority;)f--;return f+1},exec:function(a,c){var f=c instanceof CKEDITOR.htmlParser.node||c instanceof CKEDITOR.htmlParser.fragment,d=Array.prototype.slice.call(arguments,1),e=this.rules,l=e.length,i,g,m,t;for(t=0;t<l;t++){if(f){i=c.type;g=c.name}m=e[t];if(!(a.nonEditable&&!m.options.applyToAll||
a.nestedEditable&&m.options.excludeNestedEditable)){m=m.value.apply(null,d);if(m===false||f&&m&&(m.name!=g||m.type!=i))return m;m!=null&&(d[0]=c=m)}}return c},execOnName:function(a,c){for(var f=0,d=this.rules,e=d.length,l;c&&f<e;f++){l=d[f];!(a.nonEditable&&!l.options.applyToAll||a.nestedEditable&&l.options.excludeNestedEditable)&&(c=c.replace(l.value[0],l.value[1]))}return c}}})();
(function(){function a(a,e){function n(a){return a||CKEDITOR.env.needsNbspFiller?new CKEDITOR.htmlParser.text(" "):new CKEDITOR.htmlParser.element("br",{"data-cke-bogus":1})}function r(a,f){return function(e){if(e.type!=CKEDITOR.NODE_DOCUMENT_FRAGMENT){var j=[],k=b(e),x,r;if(k)for(w(k,1)&&j.push(k);k;){if(d(k)&&(x=c(k))&&w(x))if((r=c(x))&&!d(r))j.push(x);else{n(o).insertAfter(x);x.remove()}k=k.previous}for(k=0;k<j.length;k++)j[k].remove();if(j=(typeof f=="function"?f(e):f)!==false)if(!o&&!CKEDITOR.env.needsBrFiller&&
e.type==CKEDITOR.NODE_DOCUMENT_FRAGMENT)j=false;else if(!o&&!CKEDITOR.env.needsBrFiller&&(document.documentMode>7||e.name in CKEDITOR.dtd.tr||e.name in CKEDITOR.dtd.$listItem))j=false;else{j=b(e);j=!j||e.name=="form"&&j.name=="input"}j&&e.add(n(a))}}}function w(a,b){if((!o||CKEDITOR.env.needsBrFiller)&&a.type==CKEDITOR.NODE_ELEMENT&&a.name=="br"&&!a.attributes["data-cke-eol"])return true;var c;if(a.type==CKEDITOR.NODE_TEXT&&(c=a.value.match(j))){if(c.index){(new CKEDITOR.htmlParser.text(a.value.substring(0,
c.index))).insertBefore(a);a.value=c[0]}if(!CKEDITOR.env.needsBrFiller&&o&&(!b||a.parent.name in i))return true;if(!o)if((c=a.previous)&&c.name=="br"||!c||d(c))return true}return false}var g={elements:{}},o=e=="html",i=CKEDITOR.tools.extend({},k),C;for(C in i)"#"in v[C]||delete i[C];for(C in i)g.elements[C]=r(o,a.config.fillEmptyBlocks);g.root=r(o,false);g.elements.br=function(a){return function(b){if(b.parent.type!=CKEDITOR.NODE_DOCUMENT_FRAGMENT){var e=b.attributes;if("data-cke-bogus"in e||"data-cke-eol"in
e)delete e["data-cke-bogus"];else{for(e=b.next;e&&f(e);)e=e.next;var j=c(b);!e&&d(b.parent)?h(b.parent,n(a)):d(e)&&(j&&!d(j))&&n(a).insertBefore(e)}}}}(o);return g}function e(a,b){return a!=CKEDITOR.ENTER_BR&&b!==false?a==CKEDITOR.ENTER_DIV?"div":"p":false}function b(a){for(a=a.children[a.children.length-1];a&&f(a);)a=a.previous;return a}function c(a){for(a=a.previous;a&&f(a);)a=a.previous;return a}function f(a){return a.type==CKEDITOR.NODE_TEXT&&!CKEDITOR.tools.trim(a.value)||a.type==CKEDITOR.NODE_ELEMENT&&
a.attributes["data-cke-bookmark"]}function d(a){return a&&(a.type==CKEDITOR.NODE_ELEMENT&&a.name in k||a.type==CKEDITOR.NODE_DOCUMENT_FRAGMENT)}function h(a,b){var c=a.children[a.children.length-1];a.children.push(b);b.parent=a;if(c){c.next=b;b.previous=c}}function l(a){a=a.attributes;a.contenteditable!="false"&&(a["data-cke-editable"]=a.contenteditable?"true":1);a.contenteditable="false"}function i(a){a=a.attributes;switch(a["data-cke-editable"]){case "true":a.contenteditable="true";break;case "1":delete a.contenteditable}}
function g(a){return a.replace(D,function(a,b,c){return"<"+b+c.replace(J,function(a,b){return z.test(b)&&c.indexOf("data-cke-saved-"+b)==-1?" data-cke-saved-"+a+" data-cke-"+CKEDITOR.rnd+"-"+a:a})+">"})}function m(a,b){return a.replace(b,function(a,b,c){a.indexOf("<textarea")===0&&(a=b+y(c).replace(/</g,"&lt;").replace(/>/g,"&gt;")+"</textarea>");return"<cke:encoded>"+encodeURIComponent(a)+"</cke:encoded>"})}function t(a){return a.replace(w,function(a,b){return decodeURIComponent(b)})}function s(a){return a.replace(/<\!--(?!{cke_protected})[\s\S]+?--\>/g,
function(a){return"<\!--"+u+"{C}"+encodeURIComponent(a).replace(/--/g,"%2D%2D")+"--\>"})}function y(a){return a.replace(/<\!--\{cke_protected\}\{C\}([\s\S]+?)--\>/g,function(a,b){return decodeURIComponent(b)})}function p(a,b){var c=b._.dataStore;return a.replace(/<\!--\{cke_protected\}([\s\S]+?)--\>/g,function(a,b){return decodeURIComponent(b)}).replace(/\{cke_protected_(\d+)\}/g,function(a,b){return c&&c[b]||""})}function q(a,b){for(var c=[],d=b.config.protectedSource,f=b._.dataStore||(b._.dataStore=
{id:1}),e=/<\!--\{cke_temp(comment)?\}(\d*?)--\>/g,d=[/<script[\s\S]*?<\/script>/gi,/<noscript[\s\S]*?<\/noscript>/gi,/<meta[\s\S]*?\/?>/gi].concat(d),a=a.replace(/<\!--[\s\S]*?--\>/g,function(a){return"<\!--{cke_tempcomment}"+(c.push(a)-1)+"--\>"}),j=0;j<d.length;j++)a=a.replace(d[j],function(a){a=a.replace(e,function(a,b,d){return c[d]});return/cke_temp(comment)?/.test(a)?a:"<\!--{cke_temp}"+(c.push(a)-1)+"--\>"});a=a.replace(e,function(a,b,d){return"<\!--"+u+(b?"{C}":"")+encodeURIComponent(c[d]).replace(/--/g,
"%2D%2D")+"--\>"});a=a.replace(/<\w+(?:\s+(?:(?:[^\s=>]+\s*=\s*(?:[^'"\s>]+|'[^']*'|"[^"]*"))|[^\s=>]+))+\s*>/g,function(a){return a.replace(/<\!--\{cke_protected\}([^>]*)--\>/g,function(a,b){f[f.id]=decodeURIComponent(b);return"{cke_protected_"+f.id++ +"}"})});return a=a.replace(/<(title|iframe|textarea)([^>]*)>([\s\S]*?)<\/\1>/g,function(a,c,d,f){return"<"+c+d+">"+p(y(f),b)+"</"+c+">"})}CKEDITOR.htmlDataProcessor=function(b){var c,d,f=this;this.editor=b;this.dataFilter=c=new CKEDITOR.htmlParser.filter;
this.htmlFilter=d=new CKEDITOR.htmlParser.filter;this.writer=new CKEDITOR.htmlParser.basicWriter;c.addRules(n);c.addRules(r,{applyToAll:true});c.addRules(a(b,"data"),{applyToAll:true});d.addRules(o);d.addRules(M,{applyToAll:true});d.addRules(a(b,"html"),{applyToAll:true});b.on("toHtml",function(a){var a=a.data,c=a.dataValue,d,c=q(c,b),c=m(c,B),c=g(c),c=m(c,L),c=c.replace(H,"$1cke:$2"),c=c.replace(A,"<cke:$1$2></cke:$1>"),c=c.replace(/(<pre\b[^>]*>)(\r\n|\n)/g,"$1$2$2"),c=c.replace(/([^a-z0-9<\-])(on\w{3,})(?!>)/gi,
"$1data-cke-"+CKEDITOR.rnd+"-$2");d=a.context||b.editable().getName();var f;if(CKEDITOR.env.ie&&CKEDITOR.env.version<9&&d=="pre"){d="div";c="<pre>"+c+"</pre>";f=1}d=b.document.createElement(d);d.setHtml("a"+c);c=d.getHtml().substr(1);c=c.replace(RegExp("data-cke-"+CKEDITOR.rnd+"-","ig"),"");f&&(c=c.replace(/^<pre>|<\/pre>$/gi,""));c=c.replace(C,"$1$2");c=t(c);c=y(c);d=a.fixForBody===false?false:e(a.enterMode,b.config.autoParagraph);c=CKEDITOR.htmlParser.fragment.fromHtml(c,a.context,d);if(d){f=c;
if(!f.children.length&&CKEDITOR.dtd[f.name][d]){d=new CKEDITOR.htmlParser.element(d);f.add(d)}}a.dataValue=c},null,null,5);b.on("toHtml",function(a){a.data.filter.applyTo(a.data.dataValue,true,a.data.dontFilter,a.data.enterMode)&&b.fire("dataFiltered")},null,null,6);b.on("toHtml",function(a){a.data.dataValue.filterChildren(f.dataFilter,true)},null,null,10);b.on("toHtml",function(a){var a=a.data,b=a.dataValue,c=new CKEDITOR.htmlParser.basicWriter;b.writeChildrenHtml(c);b=c.getHtml(true);a.dataValue=
s(b)},null,null,15);b.on("toDataFormat",function(a){var c=a.data.dataValue;a.data.enterMode!=CKEDITOR.ENTER_BR&&(c=c.replace(/^<br *\/?>/i,""));a.data.dataValue=CKEDITOR.htmlParser.fragment.fromHtml(c,a.data.context,e(a.data.enterMode,b.config.autoParagraph))},null,null,5);b.on("toDataFormat",function(a){a.data.dataValue.filterChildren(f.htmlFilter,true)},null,null,10);b.on("toDataFormat",function(a){a.data.filter.applyTo(a.data.dataValue,false,true)},null,null,11);b.on("toDataFormat",function(a){var c=
a.data.dataValue,d=f.writer;d.reset();c.writeChildrenHtml(d);c=d.getHtml(true);c=y(c);c=p(c,b);a.data.dataValue=c},null,null,15)};CKEDITOR.htmlDataProcessor.prototype={toHtml:function(a,b,c,d){var f=this.editor,e,j,k;if(b&&typeof b=="object"){e=b.context;c=b.fixForBody;d=b.dontFilter;j=b.filter;k=b.enterMode}else e=b;!e&&e!==null&&(e=f.editable().getName());return f.fire("toHtml",{dataValue:a,context:e,fixForBody:c,dontFilter:d,filter:j||f.filter,enterMode:k||f.enterMode}).dataValue},toDataFormat:function(a,
b){var c,d,f;if(b){c=b.context;d=b.filter;f=b.enterMode}!c&&c!==null&&(c=this.editor.editable().getName());return this.editor.fire("toDataFormat",{dataValue:a,filter:d||this.editor.filter,context:c,enterMode:f||this.editor.enterMode}).dataValue}};var j=/(?:&nbsp;|\xa0)$/,u="{cke_protected}",v=CKEDITOR.dtd,E=["caption","colgroup","col","thead","tfoot","tbody"],k=CKEDITOR.tools.extend({},v.$blockLimit,v.$block),n={elements:{input:l,textarea:l}},r={attributeNames:[[/^on/,"data-cke-pa-on"],[/^data-cke-expando$/,
""]]},o={elements:{embed:function(a){var b=a.parent;if(b&&b.name=="object"){var c=b.attributes.width,b=b.attributes.height;if(c)a.attributes.width=c;if(b)a.attributes.height=b}},a:function(a){if(!a.children.length&&!a.attributes.name&&!a.attributes["data-cke-saved-name"])return false}}},M={elementNames:[[/^cke:/,""],[/^\?xml:namespace$/,""]],attributeNames:[[/^data-cke-(saved|pa)-/,""],[/^data-cke-.*/,""],["hidefocus",""]],elements:{$:function(a){var b=a.attributes;if(b){if(b["data-cke-temp"])return false;
for(var c=["name","href","src"],d,f=0;f<c.length;f++){d="data-cke-saved-"+c[f];d in b&&delete b[c[f]]}}return a},table:function(a){a.children.slice(0).sort(function(a,b){var c,d;if(a.type==CKEDITOR.NODE_ELEMENT&&b.type==a.type){c=CKEDITOR.tools.indexOf(E,a.name);d=CKEDITOR.tools.indexOf(E,b.name)}if(!(c>-1&&d>-1&&c!=d)){c=a.parent?a.getIndex():-1;d=b.parent?b.getIndex():-1}return c>d?1:-1})},param:function(a){a.children=[];a.isEmpty=true;return a},span:function(a){a.attributes["class"]=="Apple-style-span"&&
delete a.name},html:function(a){delete a.attributes.contenteditable;delete a.attributes["class"]},body:function(a){delete a.attributes.spellcheck;delete a.attributes.contenteditable},style:function(a){var b=a.children[0];if(b&&b.value)b.value=CKEDITOR.tools.trim(b.value);if(!a.attributes.type)a.attributes.type="text/css"},title:function(a){var b=a.children[0];!b&&h(a,b=new CKEDITOR.htmlParser.text);b.value=a.attributes["data-cke-title"]||""},input:i,textarea:i},attributes:{"class":function(a){return CKEDITOR.tools.ltrim(a.replace(/(?:^|\s+)cke_[^\s]*/g,
""))||false}}};if(CKEDITOR.env.ie)M.attributes.style=function(a){return a.replace(/(^|;)([^\:]+)/g,function(a){return a.toLowerCase()})};var D=/<(a|area|img|input|source)\b([^>]*)>/gi,J=/([\w-]+)\s*=\s*(?:(?:"[^"]*")|(?:'[^']*')|(?:[^ "'>]+))/gi,z=/^(href|src|name)$/i,L=/(?:<style(?=[ >])[^>]*>[\s\S]*?<\/style>)|(?:<(:?link|meta|base)[^>]*>)/gi,B=/(<textarea(?=[ >])[^>]*>)([\s\S]*?)(?:<\/textarea>)/gi,w=/<cke:encoded>([^<]*)<\/cke:encoded>/gi,H=/(<\/?)((?:object|embed|param|html|body|head|title)[^>]*>)/gi,
C=/(<\/?)cke:((?:html|body|head|title)[^>]*>)/gi,A=/<cke:(param|embed)([^>]*?)\/?>(?!\s*<\/cke:\1)/gi})();"use strict";
CKEDITOR.htmlParser.element=function(a,e){this.name=a;this.attributes=e||{};this.children=[];var b=a||"",c=b.match(/^cke:(.*)/);c&&(b=c[1]);b=!(!CKEDITOR.dtd.$nonBodyContent[b]&&!CKEDITOR.dtd.$block[b]&&!CKEDITOR.dtd.$listItem[b]&&!CKEDITOR.dtd.$tableContent[b]&&!(CKEDITOR.dtd.$nonEditable[b]||b=="br"));this.isEmpty=!!CKEDITOR.dtd.$empty[a];this.isUnknown=!CKEDITOR.dtd[a];this._={isBlockLike:b,hasInlineStarted:this.isEmpty||!b}};
CKEDITOR.htmlParser.cssStyle=function(a){var e={};((a instanceof CKEDITOR.htmlParser.element?a.attributes.style:a)||"").replace(/&quot;/g,'"').replace(/\s*([^ :;]+)\s*:\s*([^;]+)\s*(?=;|$)/g,function(a,c,f){c=="font-family"&&(f=f.replace(/["']/g,""));e[c.toLowerCase()]=f});return{rules:e,populate:function(a){var c=this.toString();if(c)a instanceof CKEDITOR.dom.element?a.setAttribute("style",c):a instanceof CKEDITOR.htmlParser.element?a.attributes.style=c:a.style=c},toString:function(){var a=[],c;
for(c in e)e[c]&&a.push(c,":",e[c],";");return a.join("")}}};
(function(){function a(a){return function(b){return b.type==CKEDITOR.NODE_ELEMENT&&(typeof a=="string"?b.name==a:b.name in a)}}var e=function(a,b){a=a[0];b=b[0];return a<b?-1:a>b?1:0},b=CKEDITOR.htmlParser.fragment.prototype;CKEDITOR.htmlParser.element.prototype=CKEDITOR.tools.extend(new CKEDITOR.htmlParser.node,{type:CKEDITOR.NODE_ELEMENT,add:b.add,clone:function(){return new CKEDITOR.htmlParser.element(this.name,this.attributes)},filter:function(a,b){var d=this,e,l,b=d.getFilterContext(b);if(b.off)return true;
if(!d.parent)a.onRoot(b,d);for(;;){e=d.name;if(!(l=a.onElementName(b,e))){this.remove();return false}d.name=l;if(!(d=a.onElement(b,d))){this.remove();return false}if(d!==this){this.replaceWith(d);return false}if(d.name==e)break;if(d.type!=CKEDITOR.NODE_ELEMENT){this.replaceWith(d);return false}if(!d.name){this.replaceWithChildren();return false}}e=d.attributes;var i,g;for(i in e){g=i;for(l=e[i];;)if(g=a.onAttributeName(b,i))if(g!=i){delete e[i];i=g}else break;else{delete e[i];break}g&&((l=a.onAttribute(b,
d,g,l))===false?delete e[g]:e[g]=l)}d.isEmpty||this.filterChildren(a,false,b);return true},filterChildren:b.filterChildren,writeHtml:function(a,b){b&&this.filter(b);var d=this.name,h=[],l=this.attributes,i,g;a.openTag(d,l);for(i in l)h.push([i,l[i]]);a.sortAttributes&&h.sort(e);i=0;for(g=h.length;i<g;i++){l=h[i];a.attribute(l[0],l[1])}a.openTagClose(d,this.isEmpty);this.writeChildrenHtml(a);this.isEmpty||a.closeTag(d)},writeChildrenHtml:b.writeChildrenHtml,replaceWithChildren:function(){for(var a=
this.children,b=a.length;b;)a[--b].insertAfter(this);this.remove()},forEach:b.forEach,getFirst:function(b){if(!b)return this.children.length?this.children[0]:null;typeof b!="function"&&(b=a(b));for(var f=0,d=this.children.length;f<d;++f)if(b(this.children[f]))return this.children[f];return null},getHtml:function(){var a=new CKEDITOR.htmlParser.basicWriter;this.writeChildrenHtml(a);return a.getHtml()},setHtml:function(a){for(var a=this.children=CKEDITOR.htmlParser.fragment.fromHtml(a).children,b=0,
d=a.length;b<d;++b)a[b].parent=this},getOuterHtml:function(){var a=new CKEDITOR.htmlParser.basicWriter;this.writeHtml(a);return a.getHtml()},split:function(a){for(var b=this.children.splice(a,this.children.length-a),d=this.clone(),e=0;e<b.length;++e)b[e].parent=d;d.children=b;if(b[0])b[0].previous=null;if(a>0)this.children[a-1].next=null;this.parent.add(d,this.getIndex()+1);return d},addClass:function(a){if(!this.hasClass(a)){var b=this.attributes["class"]||"";this.attributes["class"]=b+(b?" ":"")+
a}},removeClass:function(a){var b=this.attributes["class"];if(b)(b=CKEDITOR.tools.trim(b.replace(RegExp("(?:\\s+|^)"+a+"(?:\\s+|$)")," ")))?this.attributes["class"]=b:delete this.attributes["class"]},hasClass:function(a){var b=this.attributes["class"];return!b?false:RegExp("(?:^|\\s)"+a+"(?=\\s|$)").test(b)},getFilterContext:function(a){var b=[];a||(a={off:false,nonEditable:false,nestedEditable:false});!a.off&&this.attributes["data-cke-processor"]=="off"&&b.push("off",true);!a.nonEditable&&this.attributes.contenteditable==
"false"?b.push("nonEditable",true):a.nonEditable&&(!a.nestedEditable&&this.attributes.contenteditable=="true")&&b.push("nestedEditable",true);if(b.length)for(var a=CKEDITOR.tools.copy(a),d=0;d<b.length;d=d+2)a[b[d]]=b[d+1];return a}},true)})();
(function(){var a={},e=/{([^}]+)}/g,b=/([\\'])/g,c=/\n/g,f=/\r/g;CKEDITOR.template=function(d){if(a[d])this.output=a[d];else{var h=d.replace(b,"\\$1").replace(c,"\\n").replace(f,"\\r").replace(e,function(a,b){return"',data['"+b+"']==undefined?'{"+b+"}':data['"+b+"'],'"});this.output=a[d]=Function("data","buffer","return buffer?buffer.push('"+h+"'):['"+h+"'].join('');")}}})();delete CKEDITOR.loadFullCore;CKEDITOR.instances={};CKEDITOR.document=new CKEDITOR.dom.document(document);
CKEDITOR.add=function(a){CKEDITOR.instances[a.name]=a;a.on("focus",function(){if(CKEDITOR.currentInstance!=a){CKEDITOR.currentInstance=a;CKEDITOR.fire("currentInstance")}});a.on("blur",function(){if(CKEDITOR.currentInstance==a){CKEDITOR.currentInstance=null;CKEDITOR.fire("currentInstance")}});CKEDITOR.fire("instance",null,a)};CKEDITOR.remove=function(a){delete CKEDITOR.instances[a.name]};
(function(){var a={};CKEDITOR.addTemplate=function(e,b){var c=a[e];if(c)return c;c={name:e,source:b};CKEDITOR.fire("template",c);return a[e]=new CKEDITOR.template(c.source)};CKEDITOR.getTemplate=function(e){return a[e]}})();(function(){var a=[];CKEDITOR.addCss=function(e){a.push(e)};CKEDITOR.getCss=function(){return a.join("\n")}})();CKEDITOR.on("instanceDestroyed",function(){CKEDITOR.tools.isEmpty(this.instances)&&CKEDITOR.fire("reset")});CKEDITOR.TRISTATE_ON=1;CKEDITOR.TRISTATE_OFF=2;
CKEDITOR.TRISTATE_DISABLED=0;
(function(){CKEDITOR.inline=function(a,e){if(!CKEDITOR.env.isCompatible)return null;a=CKEDITOR.dom.element.get(a);if(a.getEditor())throw'The editor instance "'+a.getEditor().name+'" is already attached to the provided element.';var b=new CKEDITOR.editor(e,a,CKEDITOR.ELEMENT_MODE_INLINE),c=a.is("textarea")?a:null;if(c){b.setData(c.getValue(),null,true);a=CKEDITOR.dom.element.createFromHtml('<div contenteditable="'+!!b.readOnly+'" class="cke_textarea_inline">'+c.getValue()+"</div>",CKEDITOR.document);
a.insertAfter(c);c.hide();c.$.form&&b._attachToForm()}else b.setData(a.getHtml(),null,true);b.on("loaded",function(){b.fire("uiReady");b.editable(a);b.container=a;b.setData(b.getData(1));b.resetDirty();b.fire("contentDom");b.mode="wysiwyg";b.fire("mode");b.status="ready";b.fireOnce("instanceReady");CKEDITOR.fire("instanceReady",null,b)},null,null,1E4);b.on("destroy",function(){if(c){b.container.clearCustomData();b.container.remove();c.show()}b.element.clearCustomData();delete b.element});return b};
CKEDITOR.inlineAll=function(){var a,e,b;for(b in CKEDITOR.dtd.$editable)for(var c=CKEDITOR.document.getElementsByTag(b),f=0,d=c.count();f<d;f++){a=c.getItem(f);if(a.getAttribute("contenteditable")=="true"){e={element:a,config:{}};CKEDITOR.fire("inline",e)!==false&&CKEDITOR.inline(a,e.config)}}};CKEDITOR.domReady(function(){!CKEDITOR.disableAutoInline&&CKEDITOR.inlineAll()})})();CKEDITOR.replaceClass="ckeditor";
(function(){function a(a,f,d,h){if(!CKEDITOR.env.isCompatible)return null;a=CKEDITOR.dom.element.get(a);if(a.getEditor())throw'The editor instance "'+a.getEditor().name+'" is already attached to the provided element.';var l=new CKEDITOR.editor(f,a,h);if(h==CKEDITOR.ELEMENT_MODE_REPLACE){a.setStyle("visibility","hidden");l._.required=a.hasAttribute("required");a.removeAttribute("required")}d&&l.setData(d,null,true);l.on("loaded",function(){b(l);h==CKEDITOR.ELEMENT_MODE_REPLACE&&(l.config.autoUpdateElement&&
a.$.form)&&l._attachToForm();l.setMode(l.config.startupMode,function(){l.resetDirty();l.status="ready";l.fireOnce("instanceReady");CKEDITOR.fire("instanceReady",null,l)})});l.on("destroy",e);return l}function e(){var a=this.container,b=this.element;if(a){a.clearCustomData();a.remove()}if(b){b.clearCustomData();if(this.elementMode==CKEDITOR.ELEMENT_MODE_REPLACE){b.show();this._.required&&b.setAttribute("required","required")}delete this.element}}function b(a){var b=a.name,d=a.element,e=a.elementMode,
l=a.fire("uiSpace",{space:"top",html:""}).html,i=a.fire("uiSpace",{space:"bottom",html:""}).html,g=new CKEDITOR.template('<{outerEl} id="cke_{name}" class="{id} cke cke_reset cke_chrome cke_editor_{name} cke_{langDir} '+CKEDITOR.env.cssClass+'"  dir="{langDir}" lang="{langCode}" role="application"'+(a.title?' aria-labelledby="cke_{name}_arialbl"':"")+">"+(a.title?'<span id="cke_{name}_arialbl" class="cke_voice_label">{voiceLabel}</span>':"")+'<{outerEl} class="cke_inner cke_reset" role="presentation">{topHtml}<{outerEl} id="{contentId}" class="cke_contents cke_reset" role="presentation"></{outerEl}>{bottomHtml}</{outerEl}></{outerEl}>'),
b=CKEDITOR.dom.element.createFromHtml(g.output({id:a.id,name:b,langDir:a.lang.dir,langCode:a.langCode,voiceLabel:a.title,topHtml:l?'<span id="'+a.ui.spaceId("top")+'" class="cke_top cke_reset_all" role="presentation" style="height:auto">'+l+"</span>":"",contentId:a.ui.spaceId("contents"),bottomHtml:i?'<span id="'+a.ui.spaceId("bottom")+'" class="cke_bottom cke_reset_all" role="presentation">'+i+"</span>":"",outerEl:CKEDITOR.env.ie?"span":"div"}));if(e==CKEDITOR.ELEMENT_MODE_REPLACE){d.hide();b.insertAfter(d)}else d.append(b);
a.container=b;l&&a.ui.space("top").unselectable();i&&a.ui.space("bottom").unselectable();d=a.config.width;e=a.config.height;d&&b.setStyle("width",CKEDITOR.tools.cssLength(d));e&&a.ui.space("contents").setStyle("height",CKEDITOR.tools.cssLength(e));b.disableContextMenu();CKEDITOR.env.webkit&&b.on("focus",function(){a.focus()});a.fireOnce("uiReady")}CKEDITOR.replace=function(b,f){return a(b,f,null,CKEDITOR.ELEMENT_MODE_REPLACE)};CKEDITOR.appendTo=function(b,f,d){return a(b,f,d,CKEDITOR.ELEMENT_MODE_APPENDTO)};
CKEDITOR.replaceAll=function(){for(var a=document.getElementsByTagName("textarea"),b=0;b<a.length;b++){var d=null,e=a[b];if(e.name||e.id){if(typeof arguments[0]=="string"){if(!RegExp("(?:^|\\s)"+arguments[0]+"(?:$|\\s)").test(e.className))continue}else if(typeof arguments[0]=="function"){d={};if(arguments[0](e,d)===false)continue}this.replace(e,d)}}};CKEDITOR.editor.prototype.addMode=function(a,b){(this._.modes||(this._.modes={}))[a]=b};CKEDITOR.editor.prototype.setMode=function(a,b){var d=this,e=
this._.modes;if(!(a==d.mode||!e||!e[a])){d.fire("beforeSetMode",a);if(d.mode){var l=d.checkDirty(),e=d._.previousModeData,i,g=0;d.fire("beforeModeUnload");d.editable(0);d._.previousMode=d.mode;d._.previousModeData=i=d.getData(1);if(d.mode=="source"&&e==i){d.fire("lockSnapshot",{forceUpdate:true});g=1}d.ui.space("contents").setHtml("");d.mode=""}else d._.previousModeData=d.getData(1);this._.modes[a](function(){d.mode=a;l!==void 0&&!l&&d.resetDirty();g?d.fire("unlockSnapshot"):a=="wysiwyg"&&d.fire("saveSnapshot");
setTimeout(function(){d.fire("mode");b&&b.call(d)},0)})}};CKEDITOR.editor.prototype.resize=function(a,b,d,e){var l=this.container,i=this.ui.space("contents"),g=CKEDITOR.env.webkit&&this.document&&this.document.getWindow().$.frameElement,e=e?this.container.getFirst(function(a){return a.type==CKEDITOR.NODE_ELEMENT&&a.hasClass("cke_inner")}):l;e.setSize("width",a,true);g&&(g.style.width="1%");i.setStyle("height",Math.max(b-(d?0:(e.$.offsetHeight||0)-(i.$.clientHeight||0)),0)+"px");g&&(g.style.width=
"100%");this.fire("resize")};CKEDITOR.editor.prototype.getResizable=function(a){return a?this.ui.space("contents"):this.container};CKEDITOR.domReady(function(){CKEDITOR.replaceClass&&CKEDITOR.replaceAll(CKEDITOR.replaceClass)})})();CKEDITOR.config.startupMode="wysiwyg";
(function(){function a(a){var b=a.editor,d=a.data.path,f=d.blockLimit,k=a.data.selection,n=k.getRanges()[0],r;if(CKEDITOR.env.gecko||CKEDITOR.env.ie&&CKEDITOR.env.needsBrFiller)if(k=e(k,d)){k.appendBogus();r=CKEDITOR.env.ie}if(h(b,d.block,f)&&n.collapsed&&!n.getCommonAncestor().isReadOnly()){d=n.clone();d.enlarge(CKEDITOR.ENLARGE_BLOCK_CONTENTS);f=new CKEDITOR.dom.walker(d);f.guard=function(a){return!c(a)||a.type==CKEDITOR.NODE_COMMENT||a.isReadOnly()};if(!f.checkForward()||d.checkStartOfBlock()&&
d.checkEndOfBlock()){b=n.fixBlock(true,b.activeEnterMode==CKEDITOR.ENTER_DIV?"div":"p");if(!CKEDITOR.env.needsBrFiller)(b=b.getFirst(c))&&(b.type==CKEDITOR.NODE_TEXT&&CKEDITOR.tools.trim(b.getText()).match(/^(?:&nbsp;|\xa0)$/))&&b.remove();r=1;a.cancel()}}r&&n.select()}function e(a,b){if(a.isFake)return 0;var d=b.block||b.blockLimit,e=d&&d.getLast(c);if(d&&d.isBlockBoundary()&&(!e||!(e.type==CKEDITOR.NODE_ELEMENT&&e.isBlockBoundary()))&&!d.is("pre")&&!d.getBogus())return d}function b(a){var b=a.data.getTarget();
if(b.is("input")){b=b.getAttribute("type");(b=="submit"||b=="reset")&&a.data.preventDefault()}}function c(a){return s(a)&&y(a)}function f(a,b){return function(c){var d=CKEDITOR.dom.element.get(c.data.$.toElement||c.data.$.fromElement||c.data.$.relatedTarget);(!d||!b.equals(d)&&!b.contains(d))&&a.call(this,c)}}function d(a){function b(a){return function(b,e){e&&(b.type==CKEDITOR.NODE_ELEMENT&&b.is(f))&&(d=b);if(!e&&c(b)&&(!a||!m(b)))return false}}var d,e=a.getRanges()[0],a=a.root,f={table:1,ul:1,ol:1,
dl:1};if(e.startPath().contains(f)){var n=e.clone();n.collapse(1);n.setStartAt(a,CKEDITOR.POSITION_AFTER_START);a=new CKEDITOR.dom.walker(n);a.guard=b();a.checkBackward();if(d){n=e.clone();n.collapse();n.setEndAt(d,CKEDITOR.POSITION_AFTER_END);a=new CKEDITOR.dom.walker(n);a.guard=b(true);d=false;a.checkForward();return d}}return null}function h(a,b,c){return a.config.autoParagraph!==false&&a.activeEnterMode!=CKEDITOR.ENTER_BR&&a.editable().equals(c)&&!b||b&&b.getAttribute("contenteditable")=="true"}
function l(a){a.editor.focus();a.editor.fire("saveSnapshot")}function i(a){var b=a.editor;b.getSelection().scrollIntoView();setTimeout(function(){b.fire("saveSnapshot")},0)}function g(a,b,c){for(var d=a.getCommonAncestor(b),b=a=c?b:a;(a=a.getParent())&&!d.equals(a)&&a.getChildCount()==1;)b=a;b.remove()}CKEDITOR.editable=CKEDITOR.tools.createClass({base:CKEDITOR.dom.element,$:function(a,b){this.base(b.$||b);this.editor=a;this.status="unloaded";this.hasFocus=false;this.setup()},proto:{focus:function(){var a;
if(CKEDITOR.env.webkit&&!this.hasFocus){a=this.editor._.previousActive||this.getDocument().getActive();if(this.contains(a)){a.focus();return}}try{this.$[CKEDITOR.env.ie&&this.getDocument().equals(CKEDITOR.document)?"setActive":"focus"]()}catch(b){if(!CKEDITOR.env.ie)throw b;}if(CKEDITOR.env.safari&&!this.isInline()){a=CKEDITOR.document.getActive();a.equals(this.getWindow().getFrame())||this.getWindow().focus()}},on:function(a,b){var c=Array.prototype.slice.call(arguments,0);if(CKEDITOR.env.ie&&/^focus|blur$/.exec(a)){a=
a=="focus"?"focusin":"focusout";b=f(b,this);c[0]=a;c[1]=b}return CKEDITOR.dom.element.prototype.on.apply(this,c)},attachListener:function(a){!this._.listeners&&(this._.listeners=[]);var b=Array.prototype.slice.call(arguments,1),b=a.on.apply(a,b);this._.listeners.push(b);return b},clearListeners:function(){var a=this._.listeners;try{for(;a.length;)a.pop().removeListener()}catch(b){}},restoreAttrs:function(){var a=this._.attrChanges,b,c;for(c in a)if(a.hasOwnProperty(c)){b=a[c];b!==null?this.setAttribute(c,
b):this.removeAttribute(c)}},attachClass:function(a){var b=this.getCustomData("classes");if(!this.hasClass(a)){!b&&(b=[]);b.push(a);this.setCustomData("classes",b);this.addClass(a)}},changeAttr:function(a,b){var c=this.getAttribute(a);if(b!==c){!this._.attrChanges&&(this._.attrChanges={});a in this._.attrChanges||(this._.attrChanges[a]=c);this.setAttribute(a,b)}},insertHtml:function(a,b){l(this);p(this,b||"html",a)},insertText:function(a){l(this);var b=this.editor,c=b.getSelection().getStartElement().hasAscendant("pre",
true)?CKEDITOR.ENTER_BR:b.activeEnterMode,b=c==CKEDITOR.ENTER_BR,d=CKEDITOR.tools,a=d.htmlEncode(a.replace(/\r\n/g,"\n")),a=a.replace(/\t/g,"&nbsp;&nbsp; &nbsp;"),c=c==CKEDITOR.ENTER_P?"p":"div";if(!b){var e=/\n{2}/g;if(e.test(a))var f="<"+c+">",r="</"+c+">",a=f+a.replace(e,function(){return r+f})+r}a=a.replace(/\n/g,"<br>");b||(a=a.replace(RegExp("<br>(?=</"+c+">)"),function(a){return d.repeat(a,2)}));a=a.replace(/^ | $/g,"&nbsp;");a=a.replace(/(>|\s) /g,function(a,b){return b+"&nbsp;"}).replace(/ (?=<)/g,
"&nbsp;");p(this,"text",a)},insertElement:function(a,b){b?this.insertElementIntoRange(a,b):this.insertElementIntoSelection(a)},insertElementIntoRange:function(a,b){var c=this.editor,d=c.config.enterMode,e=a.getName(),f=CKEDITOR.dtd.$block[e];if(b.checkReadOnly())return false;b.deleteContents(1);b.startContainer.type==CKEDITOR.NODE_ELEMENT&&b.startContainer.is({tr:1,table:1,tbody:1,thead:1,tfoot:1})&&q(b);var r,g;if(f)for(;(r=b.getCommonAncestor(0,1))&&(g=CKEDITOR.dtd[r.getName()])&&(!g||!g[e]);)if(r.getName()in
CKEDITOR.dtd.span)b.splitElement(r);else if(b.checkStartOfBlock()&&b.checkEndOfBlock()){b.setStartBefore(r);b.collapse(true);r.remove()}else b.splitBlock(d==CKEDITOR.ENTER_DIV?"div":"p",c.editable());b.insertNode(a);return true},insertElementIntoSelection:function(a){l(this);var b=this.editor,d=b.activeEnterMode,b=b.getSelection(),e=b.getRanges()[0],f=a.getName(),f=CKEDITOR.dtd.$block[f];if(this.insertElementIntoRange(a,e)){e.moveToPosition(a,CKEDITOR.POSITION_AFTER_END);if(f)if((f=a.getNext(function(a){return c(a)&&
!m(a)}))&&f.type==CKEDITOR.NODE_ELEMENT&&f.is(CKEDITOR.dtd.$block))f.getDtd()["#"]?e.moveToElementEditStart(f):e.moveToElementEditEnd(a);else if(!f&&d!=CKEDITOR.ENTER_BR){f=e.fixBlock(true,d==CKEDITOR.ENTER_DIV?"div":"p");e.moveToElementEditStart(f)}}b.selectRanges([e]);i(this)},setData:function(a,b){b||(a=this.editor.dataProcessor.toHtml(a));this.setHtml(a);this.fixInitialSelection();if(this.status=="unloaded")this.status="ready";this.editor.fire("dataReady")},getData:function(a){var b=this.getHtml();
a||(b=this.editor.dataProcessor.toDataFormat(b));return b},setReadOnly:function(a){this.setAttribute("contenteditable",!a)},detach:function(){this.removeClass("cke_editable");this.status="detached";var a=this.editor;this._.detach();delete a.document;delete a.window},isInline:function(){return this.getDocument().equals(CKEDITOR.document)},fixInitialSelection:function(){function a(){var b=c.getDocument().$,d=b.getSelection(),e;if(d.anchorNode&&d.anchorNode==c.$)e=true;else if(CKEDITOR.env.webkit){var f=
c.getDocument().getActive();f&&(f.equals(c)&&!d.anchorNode)&&(e=true)}if(e){e=new CKEDITOR.dom.range(c);e.moveToElementEditStart(c);b=b.createRange();b.setStart(e.startContainer.$,e.startOffset);b.collapse(true);d.removeAllRanges();d.addRange(b)}}function b(){var a=c.getDocument().$,d=a.selection,e=c.getDocument().getActive();if(d.type=="None"&&e.equals(c)){d=new CKEDITOR.dom.range(c);a=a.body.createTextRange();d.moveToElementEditStart(c);d=d.startContainer;d.type!=CKEDITOR.NODE_ELEMENT&&(d=d.getParent());
a.moveToElementText(d.$);a.collapse(true);a.select()}}var c=this;if(CKEDITOR.env.ie&&CKEDITOR.env.version<9){if(this.hasFocus){this.focus();b()}}else if(this.hasFocus){this.focus();a()}else this.once("focus",function(){a()},null,null,-999)},setup:function(){var a=this.editor;this.attachListener(a,"beforeGetData",function(){var b=this.getData();this.is("textarea")||a.config.ignoreEmptyParagraph!==false&&(b=b.replace(t,function(a,b){return b}));a.setData(b,null,1)},this);this.attachListener(a,"getSnapshot",
function(a){a.data=this.getData(1)},this);this.attachListener(a,"afterSetData",function(){this.setData(a.getData(1))},this);this.attachListener(a,"loadSnapshot",function(a){this.setData(a.data,1)},this);this.attachListener(a,"beforeFocus",function(){var b=a.getSelection();(b=b&&b.getNative())&&b.type=="Control"||this.focus()},this);this.attachListener(a,"insertHtml",function(a){this.insertHtml(a.data.dataValue,a.data.mode)},this);this.attachListener(a,"insertElement",function(a){this.insertElement(a.data)},
this);this.attachListener(a,"insertText",function(a){this.insertText(a.data)},this);this.setReadOnly(a.readOnly);this.attachClass("cke_editable");this.attachClass(a.elementMode==CKEDITOR.ELEMENT_MODE_INLINE?"cke_editable_inline":a.elementMode==CKEDITOR.ELEMENT_MODE_REPLACE||a.elementMode==CKEDITOR.ELEMENT_MODE_APPENDTO?"cke_editable_themed":"");this.attachClass("cke_contents_"+a.config.contentsLangDirection);a.keystrokeHandler.blockedKeystrokes[8]=+a.readOnly;a.keystrokeHandler.attach(this);this.on("blur",
function(){this.hasFocus=false},null,null,-1);this.on("focus",function(){this.hasFocus=true},null,null,-1);a.focusManager.add(this);if(this.equals(CKEDITOR.document.getActive())){this.hasFocus=true;a.once("contentDom",function(){a.focusManager.focus(this)},this)}this.isInline()&&this.changeAttr("tabindex",a.tabIndex);if(!this.is("textarea")){a.document=this.getDocument();a.window=this.getWindow();var e=a.document;this.changeAttr("spellcheck",!a.config.disableNativeSpellChecker);var f=a.config.contentsLangDirection;
this.getDirection(1)!=f&&this.changeAttr("dir",f);var h=CKEDITOR.getCss();if(h){f=e.getHead();if(!f.getCustomData("stylesheet")){h=e.appendStyleText(h);h=new CKEDITOR.dom.element(h.ownerNode||h.owningElement);f.setCustomData("stylesheet",h);h.data("cke-temp",1)}}f=e.getCustomData("stylesheet_ref")||0;e.setCustomData("stylesheet_ref",f+1);this.setCustomData("cke_includeReadonly",!a.config.disableReadonlyStyling);this.attachListener(this,"click",function(a){var a=a.data,b=(new CKEDITOR.dom.elementPath(a.getTarget(),
this)).contains("a");b&&(a.$.button!=2&&b.isReadOnly())&&a.preventDefault()});var k={8:1,46:1};this.attachListener(a,"key",function(b){if(a.readOnly)return true;var c=b.data.domEvent.getKey(),e;if(c in k){var b=a.getSelection(),f,g=b.getRanges()[0],h=g.startPath(),i,m,l,c=c==8;if(CKEDITOR.env.ie&&CKEDITOR.env.version<11&&(f=b.getSelectedElement())||(f=d(b))){a.fire("saveSnapshot");g.moveToPosition(f,CKEDITOR.POSITION_BEFORE_START);f.remove();g.select();a.fire("saveSnapshot");e=1}else if(g.collapsed)if((i=
h.block)&&(l=i[c?"getPrevious":"getNext"](s))&&l.type==CKEDITOR.NODE_ELEMENT&&l.is("table")&&g[c?"checkStartOfBlock":"checkEndOfBlock"]()){a.fire("saveSnapshot");g[c?"checkEndOfBlock":"checkStartOfBlock"]()&&i.remove();g["moveToElementEdit"+(c?"End":"Start")](l);g.select();a.fire("saveSnapshot");e=1}else if(h.blockLimit&&h.blockLimit.is("td")&&(m=h.blockLimit.getAscendant("table"))&&g.checkBoundaryOfElement(m,c?CKEDITOR.START:CKEDITOR.END)&&(l=m[c?"getPrevious":"getNext"](s))){a.fire("saveSnapshot");
g["moveToElementEdit"+(c?"End":"Start")](l);g.checkStartOfBlock()&&g.checkEndOfBlock()?l.remove():g.select();a.fire("saveSnapshot");e=1}else if((m=h.contains(["td","th","caption"]))&&g.checkBoundaryOfElement(m,c?CKEDITOR.START:CKEDITOR.END))e=1}return!e});a.blockless&&(CKEDITOR.env.ie&&CKEDITOR.env.needsBrFiller)&&this.attachListener(this,"keyup",function(b){if(b.data.getKeystroke()in k&&!this.getFirst(c)){this.appendBogus();b=a.createRange();b.moveToPosition(this,CKEDITOR.POSITION_AFTER_START);b.select()}});
this.attachListener(this,"dblclick",function(b){if(a.readOnly)return false;b={element:b.data.getTarget()};a.fire("doubleclick",b)});CKEDITOR.env.ie&&this.attachListener(this,"click",b);CKEDITOR.env.ie||this.attachListener(this,"mousedown",function(b){var c=b.data.getTarget();if(c.is("img","hr","input","textarea","select")&&!c.isReadOnly()){a.getSelection().selectElement(c);c.is("input","textarea","select")&&b.data.preventDefault()}});CKEDITOR.env.gecko&&this.attachListener(this,"mouseup",function(b){if(b.data.$.button==
2){b=b.data.getTarget();if(!b.getOuterHtml().replace(t,"")){var c=a.createRange();c.moveToElementEditStart(b);c.select(true)}}});if(CKEDITOR.env.webkit){this.attachListener(this,"click",function(a){a.data.getTarget().is("input","select")&&a.data.preventDefault()});this.attachListener(this,"mouseup",function(a){a.data.getTarget().is("input","textarea")&&a.data.preventDefault()})}CKEDITOR.env.webkit&&this.attachListener(a,"key",function(b){b=b.data.domEvent.getKey();if(b in k){var c=b==8,d=a.getSelection().getRanges()[0],
b=d.startPath();if(d.collapsed){var e;a:{var f=b.block;if(f)if(d[c?"checkStartOfBlock":"checkEndOfBlock"]())if(!d.moveToClosestEditablePosition(f,!c)||!d.collapsed)e=false;else{if(d.startContainer.type==CKEDITOR.NODE_ELEMENT){var h=d.startContainer.getChild(d.startOffset-(c?1:0));if(h&&h.type==CKEDITOR.NODE_ELEMENT&&h.is("hr")){a.fire("saveSnapshot");h.remove();e=true;break a}}if((d=d.startPath().block)&&(!d||!d.contains(f))){a.fire("saveSnapshot");var i;(i=(c?d:f).getBogus())&&i.remove();e=a.getSelection();
i=e.createBookmarks();(c?f:d).moveChildren(c?d:f,false);b.lastElement.mergeSiblings();g(f,d,!c);e.selectBookmarks(i);e=true}}else e=false;else e=false}if(!e)return}else{c=d;e=b.block;i=c.endPath().block;if(!e||!i||e.equals(i))b=false;else{a.fire("saveSnapshot");(f=e.getBogus())&&f.remove();c.deleteContents();if(i.getParent()){i.moveChildren(e,false);b.lastElement.mergeSiblings();g(e,i,true)}c=a.getSelection().getRanges()[0];c.collapse(1);c.select();b=true}if(!b)return}a.getSelection().scrollIntoView();
a.fire("saveSnapshot");return false}},this,null,100)}}},_:{detach:function(){this.editor.setData(this.editor.getData(),0,1);this.clearListeners();this.restoreAttrs();var a;if(a=this.removeCustomData("classes"))for(;a.length;)this.removeClass(a.pop());if(!this.is("textarea")){a=this.getDocument();var b=a.getHead();if(b.getCustomData("stylesheet")){var c=a.getCustomData("stylesheet_ref");if(--c)a.setCustomData("stylesheet_ref",c);else{a.removeCustomData("stylesheet_ref");b.removeCustomData("stylesheet").remove()}}}this.editor.fire("contentDomUnload");
delete this.editor}}});CKEDITOR.editor.prototype.editable=function(a){var b=this._.editable;if(b&&a)return 0;if(arguments.length)b=this._.editable=a?a instanceof CKEDITOR.editable?a:new CKEDITOR.editable(this,a):(b&&b.detach(),null);return b};var m=CKEDITOR.dom.walker.bogus(),t=/(^|<body\b[^>]*>)\s*<(p|div|address|h\d|center|pre)[^>]*>\s*(?:<br[^>]*>|&nbsp;|\u00A0|&#160;)?\s*(:?<\/\2>)?\s*(?=$|<\/body>)/gi,s=CKEDITOR.dom.walker.whitespaces(true),y=CKEDITOR.dom.walker.bookmark(false,true);CKEDITOR.on("instanceLoaded",
function(b){var c=b.editor;c.on("insertElement",function(a){a=a.data;if(a.type==CKEDITOR.NODE_ELEMENT&&(a.is("input")||a.is("textarea"))){a.getAttribute("contentEditable")!="false"&&a.data("cke-editable",a.hasAttribute("contenteditable")?"true":"1");a.setAttribute("contentEditable",false)}});c.on("selectionChange",function(b){if(!c.readOnly){var d=c.getSelection();if(d&&!d.isLocked){d=c.checkDirty();c.fire("lockSnapshot");a(b);c.fire("unlockSnapshot");!d&&c.resetDirty()}}})});CKEDITOR.on("instanceCreated",
function(a){var b=a.editor;b.on("mode",function(){var a=b.editable();if(a&&a.isInline()){var c=b.title;a.changeAttr("role","textbox");a.changeAttr("aria-label",c);c&&a.changeAttr("title",c);var d=b.fire("ariaEditorHelpLabel",{}).label;if(d)if(c=this.ui.space(this.elementMode==CKEDITOR.ELEMENT_MODE_INLINE?"top":"contents")){var e=CKEDITOR.tools.getNextId(),d=CKEDITOR.dom.element.createFromHtml('<span id="'+e+'" class="cke_voice_label">'+d+"</span>");c.append(d);a.changeAttr("aria-describedby",e)}}})});
CKEDITOR.addCss(".cke_editable{cursor:text}.cke_editable img,.cke_editable input,.cke_editable textarea{cursor:default}");var p=function(){function a(b){return b.type==CKEDITOR.NODE_ELEMENT}function b(c,d){var e,f,k,n,h=[],i=d.range.startContainer;e=d.range.startPath();for(var i=g[i.getName()],o=0,l=c.getChildren(),m=l.count(),D=-1,p=-1,M=0,s=e.contains(g.$list);o<m;++o){e=l.getItem(o);if(a(e)){k=e.getName();if(s&&k in CKEDITOR.dtd.$list)h=h.concat(b(e,d));else{n=!!i[k];if(k=="br"&&e.data("cke-eol")&&
(!o||o==m-1)){M=(f=o?h[o-1].node:l.getItem(o+1))&&(!a(f)||!f.is("br"));f=f&&a(f)&&g.$block[f.getName()]}D==-1&&!n&&(D=o);n||(p=o);h.push({isElement:1,isLineBreak:M,isBlock:e.isBlockBoundary(),hasBlockSibling:f,node:e,name:k,allowed:n});f=M=0}}else h.push({isElement:0,node:e,allowed:1})}if(D>-1)h[D].firstNotAllowed=1;if(p>-1)h[p].lastNotAllowed=1;return h}function d(b,c){var e=[],f=b.getChildren(),k=f.count(),n,h=0,i=g[c],o=!b.is(g.$inline)||b.is("br");for(o&&e.push(" ");h<k;h++){n=f.getItem(h);a(n)&&
!n.is(i)?e=e.concat(d(n,c)):e.push(n)}o&&e.push(" ");return e}function e(b){return b&&a(b)&&(b.is(g.$removeEmpty)||b.is("a")&&!b.isBlockBoundary())}function f(b,c,d,e){var n=b.clone(),g,h;n.setEndAt(c,CKEDITOR.POSITION_BEFORE_END);if((g=(new CKEDITOR.dom.walker(n)).next())&&a(g)&&o[g.getName()]&&(h=g.getPrevious())&&a(h)&&!h.getParent().equals(b.startContainer)&&d.contains(h)&&e.contains(g)&&g.isIdentical(h)){g.moveChildren(h);g.remove();f(b,c,d,e)}}function n(b,c){function d(b,c){if(c.isBlock&&c.isElement&&
!c.node.is("br")&&a(b)&&b.is("br")){b.remove();return 1}}var e=c.endContainer.getChild(c.endOffset),f=c.endContainer.getChild(c.endOffset-1);e&&d(e,b[b.length-1]);if(f&&d(f,b[0])){c.setEnd(c.endContainer,c.endOffset-1);c.collapse()}}var g=CKEDITOR.dtd,o={p:1,div:1,h1:1,h2:1,h3:1,h4:1,h5:1,h6:1,ul:1,ol:1,li:1,pre:1,dl:1,blockquote:1},l={p:1,div:1,h1:1,h2:1,h3:1,h4:1,h5:1,h6:1},m=CKEDITOR.tools.extend({},g.$inline);delete m.br;return function(o,z,p){var B=o.editor,w=B.getSelection().getRanges()[0],
H=false;if(z=="unfiltered_html"){z="html";H=true}if(!w.checkReadOnly()){var C=(new CKEDITOR.dom.elementPath(w.startContainer,w.root)).blockLimit||w.root,z={type:z,dontFilter:H,editable:o,editor:B,range:w,blockLimit:C,mergeCandidates:[],zombies:[]},B=z.range,H=z.mergeCandidates,A,x,F,G;if(z.type=="text"&&B.shrink(CKEDITOR.SHRINK_ELEMENT,true,false)){A=CKEDITOR.dom.element.createFromHtml("<span>&nbsp;</span>",B.document);B.insertNode(A);B.setStartAfter(A)}x=new CKEDITOR.dom.elementPath(B.startContainer);
z.endPath=F=new CKEDITOR.dom.elementPath(B.endContainer);if(!B.collapsed){var C=F.block||F.blockLimit,s=B.getCommonAncestor();C&&(!C.equals(s)&&!C.contains(s)&&B.checkEndOfBlock())&&z.zombies.push(C);B.deleteContents()}for(;(G=a(B.startContainer)&&B.startContainer.getChild(B.startOffset-1))&&a(G)&&G.isBlockBoundary()&&x.contains(G);)B.moveToPosition(G,CKEDITOR.POSITION_BEFORE_END);f(B,z.blockLimit,x,F);if(A){B.setEndBefore(A);B.collapse();A.remove()}A=B.startPath();if(C=A.contains(e,false,1)){B.splitElement(C);
z.inlineStylesRoot=C;z.inlineStylesPeak=A.lastElement}A=B.createBookmark();(C=A.startNode.getPrevious(c))&&a(C)&&e(C)&&H.push(C);(C=A.startNode.getNext(c))&&a(C)&&e(C)&&H.push(C);for(C=A.startNode;(C=C.getParent())&&e(C);)H.push(C);B.moveToBookmark(A);if(A=p){A=z.range;if(z.type=="text"&&z.inlineStylesRoot){G=z.inlineStylesPeak;B=G.getDocument().createText("{cke-peak}");for(H=z.inlineStylesRoot.getParent();!G.equals(H);){B=B.appendTo(G.clone());G=G.getParent()}p=B.getOuterHtml().split("{cke-peak}").join(p)}G=
z.blockLimit.getName();if(/^\s+|\s+$/.test(p)&&"span"in CKEDITOR.dtd[G])var y='<span data-cke-marker="1">&nbsp;</span>',p=y+p+y;p=z.editor.dataProcessor.toHtml(p,{context:null,fixForBody:false,dontFilter:z.dontFilter,filter:z.editor.activeFilter,enterMode:z.editor.activeEnterMode});G=A.document.createElement("body");G.setHtml(p);if(y){G.getFirst().remove();G.getLast().remove()}if((y=A.startPath().block)&&!(y.getChildCount()==1&&y.getBogus()))a:{var t;if(G.getChildCount()==1&&a(t=G.getFirst())&&t.is(l)){y=
t.getElementsByTag("*");A=0;for(H=y.count();A<H;A++){B=y.getItem(A);if(!B.is(m))break a}t.moveChildren(t.getParent(1));t.remove()}}z.dataWrapper=G;A=p}if(A){t=z.range;var y=t.document,q,p=z.blockLimit;A=0;var K;G=[];var I,Q,H=B=0,N,S;x=t.startContainer;var C=z.endPath.elements[0],T;F=C.getPosition(x);s=!!C.getCommonAncestor(x)&&F!=CKEDITOR.POSITION_IDENTICAL&&!(F&CKEDITOR.POSITION_CONTAINS+CKEDITOR.POSITION_IS_CONTAINED);x=b(z.dataWrapper,z);for(n(x,t);A<x.length;A++){F=x[A];if(q=F.isLineBreak){q=
t;N=p;var P=void 0,V=void 0;if(F.hasBlockSibling)q=1;else{P=q.startContainer.getAscendant(g.$block,1);if(!P||!P.is({div:1,p:1}))q=0;else{V=P.getPosition(N);if(V==CKEDITOR.POSITION_IDENTICAL||V==CKEDITOR.POSITION_CONTAINS)q=0;else{N=q.splitElement(P);q.moveToPosition(N,CKEDITOR.POSITION_AFTER_START);q=1}}}}if(q)H=A>0;else{q=t.startPath();if(!F.isBlock&&h(z.editor,q.block,q.blockLimit)&&(Q=z.editor.activeEnterMode!=CKEDITOR.ENTER_BR&&z.editor.config.autoParagraph!==false?z.editor.activeEnterMode==CKEDITOR.ENTER_DIV?
"div":"p":false)){Q=y.createElement(Q);Q.appendBogus();t.insertNode(Q);CKEDITOR.env.needsBrFiller&&(K=Q.getBogus())&&K.remove();t.moveToPosition(Q,CKEDITOR.POSITION_BEFORE_END)}if((q=t.startPath().block)&&!q.equals(I)){if(K=q.getBogus()){K.remove();G.push(q)}I=q}F.firstNotAllowed&&(B=1);if(B&&F.isElement){q=t.startContainer;for(N=null;q&&!g[q.getName()][F.name];){if(q.equals(p)){q=null;break}N=q;q=q.getParent()}if(q){if(N){S=t.splitElement(N);z.zombies.push(S);z.zombies.push(N)}}else{N=p.getName();
T=!A;q=A==x.length-1;N=d(F.node,N);for(var P=[],V=N.length,W=0,Y=void 0,Z=0,U=-1;W<V;W++){Y=N[W];if(Y==" "){if(!Z&&(!T||W)){P.push(new CKEDITOR.dom.text(" "));U=P.length}Z=1}else{P.push(Y);Z=0}}q&&U==P.length&&P.pop();T=P}}if(T){for(;q=T.pop();)t.insertNode(q);T=0}else t.insertNode(F.node);if(F.lastNotAllowed&&A<x.length-1){(S=s?C:S)&&t.setEndAt(S,CKEDITOR.POSITION_AFTER_START);B=0}t.collapse()}}z.dontMoveCaret=H;z.bogusNeededBlocks=G}K=z.range;var O;S=z.bogusNeededBlocks;for(T=K.createBookmark();I=
z.zombies.pop();)if(I.getParent()){Q=K.clone();Q.moveToElementEditStart(I);Q.removeEmptyBlocksAtEnd()}if(S)for(;I=S.pop();)CKEDITOR.env.needsBrFiller?I.appendBogus():I.append(K.document.createText(" "));for(;I=z.mergeCandidates.pop();)I.mergeSiblings();K.moveToBookmark(T);if(!z.dontMoveCaret){for(I=a(K.startContainer)&&K.startContainer.getChild(K.startOffset-1);I&&a(I)&&!I.is(g.$empty);){if(I.isBlockBoundary())K.moveToPosition(I,CKEDITOR.POSITION_BEFORE_END);else{if(e(I)&&I.getHtml().match(/(\s|&nbsp;)$/g)){O=
null;break}O=K.clone();O.moveToPosition(I,CKEDITOR.POSITION_BEFORE_END)}I=I.getLast(c)}O&&K.moveToRange(O)}w.select();i(o)}}}(),q=function(){function a(b){b=new CKEDITOR.dom.walker(b);b.guard=function(a,b){if(b)return false;if(a.type==CKEDITOR.NODE_ELEMENT)return a.is(CKEDITOR.dtd.$tableContent)};b.evaluator=function(a){return a.type==CKEDITOR.NODE_ELEMENT};return b}function b(a,c,d){c=a.getDocument().createElement(c);a.append(c,d);return c}function c(a){var b=a.count(),d;for(b;b-- >0;){d=a.getItem(b);
if(!CKEDITOR.tools.trim(d.getHtml())){d.appendBogus();CKEDITOR.env.ie&&(CKEDITOR.env.version<9&&d.getChildCount())&&d.getFirst().remove()}}}return function(d){var e=d.startContainer,f=e.getAscendant("table",1),g=false;c(f.getElementsByTag("td"));c(f.getElementsByTag("th"));f=d.clone();f.setStart(e,0);f=a(f).lastBackward();if(!f){f=d.clone();f.setEndAt(e,CKEDITOR.POSITION_BEFORE_END);f=a(f).lastForward();g=true}f||(f=e);if(f.is("table")){d.setStartAt(f,CKEDITOR.POSITION_BEFORE_START);d.collapse(true);
f.remove()}else{f.is({tbody:1,thead:1,tfoot:1})&&(f=b(f,"tr",g));f.is("tr")&&(f=b(f,f.getParent().is("thead")?"th":"td",g));(e=f.getBogus())&&e.remove();d.moveToPosition(f,g?CKEDITOR.POSITION_AFTER_START:CKEDITOR.POSITION_BEFORE_END)}}}()})();
(function(){function a(){var a=this._.fakeSelection,b;if(a){b=this.getSelection(1);if(!b||!b.isHidden()){a.reset();a=0}}if(!a){a=b||this.getSelection(1);if(!a||a.getType()==CKEDITOR.SELECTION_NONE)return}this.fire("selectionCheck",a);b=this.elementPath();if(!b.compare(this._.selectionPreviousPath)){if(CKEDITOR.env.webkit)this._.previousActive=this.document.getActive();this._.selectionPreviousPath=b;this.fire("selectionChange",{selection:a,path:b})}}function e(){p=true;if(!y){b.call(this);y=CKEDITOR.tools.setTimeout(b,
200,this)}}function b(){y=null;if(p){CKEDITOR.tools.setTimeout(a,0,this);p=false}}function c(a){return q(a)||a.type==CKEDITOR.NODE_ELEMENT&&!a.is(CKEDITOR.dtd.$empty)?true:false}function f(a){function b(c,d){return!c||c.type==CKEDITOR.NODE_TEXT?false:a.clone()["moveToElementEdit"+(d?"End":"Start")](c)}if(!(a.root instanceof CKEDITOR.editable))return false;var d=a.startContainer,e=a.getPreviousNode(c,null,d),f=a.getNextNode(c,null,d);return b(e)||b(f,1)||!e&&!f&&!(d.type==CKEDITOR.NODE_ELEMENT&&d.isBlockBoundary()&&
d.getBogus())?true:false}function d(a){return a.getCustomData("cke-fillingChar")}function h(a,b){var c=a&&a.removeCustomData("cke-fillingChar");if(c){if(b!==false){var d,e=a.getDocument().getSelection().getNative(),f=e&&e.type!="None"&&e.getRangeAt(0);if(c.getLength()>1&&f&&f.intersectsNode(c.$)){d=i(e);f=e.focusNode==c.$&&e.focusOffset>0;e.anchorNode==c.$&&e.anchorOffset>0&&d[0].offset--;f&&d[1].offset--}}c.setText(l(c.getText()));d&&g(a.getDocument().$,d)}}function l(a){return a.replace(/\u200B( )?/g,
function(a){return a[1]?" ":""})}function i(a){return[{node:a.anchorNode,offset:a.anchorOffset},{node:a.focusNode,offset:a.focusOffset}]}function g(a,b){var c=a.getSelection(),d=a.createRange();d.setStart(b[0].node,b[0].offset);d.collapse(true);c.removeAllRanges();c.addRange(d);c.extend(b[1].node,b[1].offset)}function m(a){var b=CKEDITOR.dom.element.createFromHtml('<div data-cke-hidden-sel="1" data-cke-temp="1" style="'+(CKEDITOR.env.ie?"display:none":"position:fixed;top:0;left:-1000px")+'">&nbsp;</div>',
a.document);a.fire("lockSnapshot");a.editable().append(b);var c=a.getSelection(1),d=a.createRange(),e=c.root.on("selectionchange",function(a){a.cancel()},null,null,0);d.setStartAt(b,CKEDITOR.POSITION_AFTER_START);d.setEndAt(b,CKEDITOR.POSITION_BEFORE_END);c.selectRanges([d]);e.removeListener();a.fire("unlockSnapshot");a._.hiddenSelectionContainer=b}function t(a){var b={37:1,39:1,8:1,46:1};return function(c){var d=c.data.getKeystroke();if(b[d]){var e=a.getSelection().getRanges(),f=e[0];if(e.length==
1&&f.collapsed)if((d=f[d<38?"getPreviousEditableNode":"getNextEditableNode"]())&&d.type==CKEDITOR.NODE_ELEMENT&&d.getAttribute("contenteditable")=="false"){a.getSelection().fake(d);c.data.preventDefault();c.cancel()}}}}function s(a){for(var b=0;b<a.length;b++){var c=a[b];c.getCommonAncestor().isReadOnly()&&a.splice(b,1);if(!c.collapsed){if(c.startContainer.isReadOnly())for(var d=c.startContainer,e;d;){if((e=d.type==CKEDITOR.NODE_ELEMENT)&&d.is("body")||!d.isReadOnly())break;e&&d.getAttribute("contentEditable")==
"false"&&c.setStartAfter(d);d=d.getParent()}d=c.startContainer;e=c.endContainer;var f=c.startOffset,g=c.endOffset,h=c.clone();d&&d.type==CKEDITOR.NODE_TEXT&&(f>=d.getLength()?h.setStartAfter(d):h.setStartBefore(d));e&&e.type==CKEDITOR.NODE_TEXT&&(g?h.setEndAfter(e):h.setEndBefore(e));d=new CKEDITOR.dom.walker(h);d.evaluator=function(d){if(d.type==CKEDITOR.NODE_ELEMENT&&d.isReadOnly()){var e=c.clone();c.setEndBefore(d);c.collapsed&&a.splice(b--,1);if(!(d.getPosition(h.endContainer)&CKEDITOR.POSITION_CONTAINS)){e.setStartAfter(d);
e.collapsed||a.splice(b+1,0,e)}return true}return false};d.next()}}return a}var y,p,q=CKEDITOR.dom.walker.invisible(1),j=function(){function a(b){return function(a){var c=a.editor.createRange();c.moveToClosestEditablePosition(a.selected,b)&&a.editor.getSelection().selectRanges([c]);return false}}function b(a){return function(b){var c=b.editor,d=c.createRange(),e;if(!(e=d.moveToClosestEditablePosition(b.selected,a)))e=d.moveToClosestEditablePosition(b.selected,!a);e&&c.getSelection().selectRanges([d]);
c.fire("saveSnapshot");b.selected.remove();if(!e){d.moveToElementEditablePosition(c.editable());c.getSelection().selectRanges([d])}c.fire("saveSnapshot");return false}}var c=a(),d=a(1);return{37:c,38:c,39:d,40:d,8:b(),46:b(1)}}();CKEDITOR.on("instanceCreated",function(b){function c(){var a=d.getSelection();a&&a.removeAllRanges()}var d=b.editor;d.on("contentDom",function(){function b(){C=new CKEDITOR.dom.selection(d.getSelection());C.lock()}function c(){g.removeListener("mouseup",c);n.removeListener("mouseup",
c);var a=CKEDITOR.document.$.selection,b=a.createRange();a.type!="None"&&b.parentElement().ownerDocument==f.$&&b.select()}var f=d.document,g=CKEDITOR.document,k=d.editable(),i=f.getBody(),n=f.getDocumentElement(),w=k.isInline(),j,C;CKEDITOR.env.gecko&&k.attachListener(k,"focus",function(a){a.removeListener();if(j!==0)if((a=d.getSelection().getNative())&&a.isCollapsed&&a.anchorNode==k.$){a=d.createRange();a.moveToElementEditStart(k);a.select()}},null,null,-2);k.attachListener(k,CKEDITOR.env.webkit?
"DOMFocusIn":"focus",function(){j&&CKEDITOR.env.webkit&&(j=d._.previousActive&&d._.previousActive.equals(f.getActive()));d.unlockSelection(j);j=0},null,null,-1);k.attachListener(k,"mousedown",function(){j=0});if(CKEDITOR.env.ie||w){u?k.attachListener(k,"beforedeactivate",b,null,null,-1):k.attachListener(d,"selectionCheck",b,null,null,-1);k.attachListener(k,CKEDITOR.env.webkit?"DOMFocusOut":"blur",function(){d.lockSelection(C);j=1},null,null,-1);k.attachListener(k,"mousedown",function(){j=0})}if(CKEDITOR.env.ie&&
!w){var A;k.attachListener(k,"mousedown",function(a){if(a.data.$.button==2){a=d.document.getSelection();if(!a||a.getType()==CKEDITOR.SELECTION_NONE)A=d.window.getScrollPosition()}});k.attachListener(k,"mouseup",function(a){if(a.data.$.button==2&&A){d.document.$.documentElement.scrollLeft=A.x;d.document.$.documentElement.scrollTop=A.y}A=null});if(f.$.compatMode!="BackCompat"){if(CKEDITOR.env.ie7Compat||CKEDITOR.env.ie6Compat)n.on("mousedown",function(a){function b(a){a=a.data.$;if(d){var c=i.$.createTextRange();
try{c.moveToPoint(a.clientX,a.clientY)}catch(e){}d.setEndPoint(f.compareEndPoints("StartToStart",c)<0?"EndToEnd":"StartToStart",c);d.select()}}function c(){n.removeListener("mousemove",b);g.removeListener("mouseup",c);n.removeListener("mouseup",c);d.select()}a=a.data;if(a.getTarget().is("html")&&a.$.y<n.$.clientHeight&&a.$.x<n.$.clientWidth){var d=i.$.createTextRange();try{d.moveToPoint(a.$.clientX,a.$.clientY)}catch(e){}var f=d.duplicate();n.on("mousemove",b);g.on("mouseup",c);n.on("mouseup",c)}});
if(CKEDITOR.env.version>7&&CKEDITOR.env.version<11)n.on("mousedown",function(a){if(a.data.getTarget().is("html")){g.on("mouseup",c);n.on("mouseup",c)}})}}k.attachListener(k,"selectionchange",a,d);k.attachListener(k,"keyup",e,d);k.attachListener(k,CKEDITOR.env.webkit?"DOMFocusIn":"focus",function(){d.forceNextSelectionCheck();d.selectionChange(1)});if(w&&(CKEDITOR.env.webkit||CKEDITOR.env.gecko)){var x;k.attachListener(k,"mousedown",function(){x=1});k.attachListener(f.getDocumentElement(),"mouseup",
function(){x&&e.call(d);x=0})}else k.attachListener(CKEDITOR.env.ie?k:f.getDocumentElement(),"mouseup",e,d);CKEDITOR.env.webkit&&k.attachListener(f,"keydown",function(a){switch(a.data.getKey()){case 13:case 33:case 34:case 35:case 36:case 37:case 39:case 8:case 45:case 46:h(k)}},null,null,-1);k.attachListener(k,"keydown",t(d),null,null,-1)});d.on("setData",function(){d.unlockSelection();CKEDITOR.env.webkit&&c()});d.on("contentDomUnload",function(){d.unlockSelection()});if(CKEDITOR.env.ie9Compat)d.on("beforeDestroy",
c,null,null,9);d.on("dataReady",function(){delete d._.fakeSelection;delete d._.hiddenSelectionContainer;d.selectionChange(1)});d.on("loadSnapshot",function(){var a=CKEDITOR.dom.walker.nodeType(CKEDITOR.NODE_ELEMENT),b=d.editable().getLast(a);if(b&&b.hasAttribute("data-cke-hidden-sel")){b.remove();if(CKEDITOR.env.gecko)(a=d.editable().getFirst(a))&&(a.is("br")&&a.getAttribute("_moz_editor_bogus_node"))&&a.remove()}},null,null,100);d.on("key",function(a){if(d.mode=="wysiwyg"){var b=d.getSelection();
if(b.isFake){var c=j[a.data.keyCode];if(c)return c({editor:d,selected:b.getSelectedElement(),selection:b,keyEvent:a})}}})});CKEDITOR.on("instanceReady",function(a){function b(){var a=e.editable();if(a)if(a=d(a)){var c=e.document.$.getSelection();if(c.type!="None"&&(c.anchorNode==a.$||c.focusNode==a.$))j=i(c);f=a.getText();a.setText(l(f))}}function c(){var a=e.editable();if(a)if(a=d(a)){a.setText(f);if(j){g(e.document.$,j);j=null}}}var e=a.editor,f,j;if(CKEDITOR.env.webkit){e.on("selectionChange",
function(){var a=e.editable(),b=d(a);b&&(b.getCustomData("ready")?h(a):b.setCustomData("ready",1))},null,null,-1);e.on("beforeSetMode",function(){h(e.editable())},null,null,-1);e.on("beforeUndoImage",b);e.on("afterUndoImage",c);e.on("beforeGetData",b,null,null,0);e.on("getData",c)}});CKEDITOR.editor.prototype.selectionChange=function(b){(b?a:e).call(this)};CKEDITOR.editor.prototype.getSelection=function(a){if((this._.savedSelection||this._.fakeSelection)&&!a)return this._.savedSelection||this._.fakeSelection;
return(a=this.editable())&&this.mode=="wysiwyg"?new CKEDITOR.dom.selection(a):null};CKEDITOR.editor.prototype.lockSelection=function(a){a=a||this.getSelection(1);if(a.getType()!=CKEDITOR.SELECTION_NONE){!a.isLocked&&a.lock();this._.savedSelection=a;return true}return false};CKEDITOR.editor.prototype.unlockSelection=function(a){var b=this._.savedSelection;if(b){b.unlock(a);delete this._.savedSelection;return true}return false};CKEDITOR.editor.prototype.forceNextSelectionCheck=function(){delete this._.selectionPreviousPath};
CKEDITOR.dom.document.prototype.getSelection=function(){return new CKEDITOR.dom.selection(this)};CKEDITOR.dom.range.prototype.select=function(){var a=this.root instanceof CKEDITOR.editable?this.root.editor.getSelection():new CKEDITOR.dom.selection(this.root);a.selectRanges([this]);return a};CKEDITOR.SELECTION_NONE=1;CKEDITOR.SELECTION_TEXT=2;CKEDITOR.SELECTION_ELEMENT=3;var u=typeof window.getSelection!="function",v=1;CKEDITOR.dom.selection=function(a){if(a instanceof CKEDITOR.dom.selection)var b=
a,a=a.root;var c=a instanceof CKEDITOR.dom.element;this.rev=b?b.rev:v++;this.document=a instanceof CKEDITOR.dom.document?a:a.getDocument();this.root=c?a:this.document.getBody();this.isLocked=0;this._={cache:{}};if(b){CKEDITOR.tools.extend(this._.cache,b._.cache);this.isFake=b.isFake;this.isLocked=b.isLocked;return this}var a=this.getNative(),d,e;if(a)if(a.getRangeAt)d=(e=a.rangeCount&&a.getRangeAt(0))&&new CKEDITOR.dom.node(e.commonAncestorContainer);else{try{e=a.createRange()}catch(f){}d=e&&CKEDITOR.dom.element.get(e.item&&
e.item(0)||e.parentElement())}if(!d||!(d.type==CKEDITOR.NODE_ELEMENT||d.type==CKEDITOR.NODE_TEXT)||!this.root.equals(d)&&!this.root.contains(d)){this._.cache.type=CKEDITOR.SELECTION_NONE;this._.cache.startElement=null;this._.cache.selectedElement=null;this._.cache.selectedText="";this._.cache.ranges=new CKEDITOR.dom.rangeList}return this};var E={img:1,hr:1,li:1,table:1,tr:1,td:1,th:1,embed:1,object:1,ol:1,ul:1,a:1,input:1,form:1,select:1,textarea:1,button:1,fieldset:1,thead:1,tfoot:1};CKEDITOR.dom.selection.prototype=
{getNative:function(){return this._.cache.nativeSel!==void 0?this._.cache.nativeSel:this._.cache.nativeSel=u?this.document.$.selection:this.document.getWindow().$.getSelection()},getType:u?function(){var a=this._.cache;if(a.type)return a.type;var b=CKEDITOR.SELECTION_NONE;try{var c=this.getNative(),d=c.type;if(d=="Text")b=CKEDITOR.SELECTION_TEXT;if(d=="Control")b=CKEDITOR.SELECTION_ELEMENT;if(c.createRange().parentElement())b=CKEDITOR.SELECTION_TEXT}catch(e){}return a.type=b}:function(){var a=this._.cache;
if(a.type)return a.type;var b=CKEDITOR.SELECTION_TEXT,c=this.getNative();if(!c||!c.rangeCount)b=CKEDITOR.SELECTION_NONE;else if(c.rangeCount==1){var c=c.getRangeAt(0),d=c.startContainer;if(d==c.endContainer&&d.nodeType==1&&c.endOffset-c.startOffset==1&&E[d.childNodes[c.startOffset].nodeName.toLowerCase()])b=CKEDITOR.SELECTION_ELEMENT}return a.type=b},getRanges:function(){var a=u?function(){function a(b){return(new CKEDITOR.dom.node(b)).getIndex()}var b=function(b,c){b=b.duplicate();b.collapse(c);
var d=b.parentElement();if(!d.hasChildNodes())return{container:d,offset:0};for(var e=d.children,f,g,h=b.duplicate(),k=0,i=e.length-1,j=-1,A,x;k<=i;){j=Math.floor((k+i)/2);f=e[j];h.moveToElementText(f);A=h.compareEndPoints("StartToStart",b);if(A>0)i=j-1;else if(A<0)k=j+1;else return{container:d,offset:a(f)}}if(j==-1||j==e.length-1&&A<0){h.moveToElementText(d);h.setEndPoint("StartToStart",b);h=h.text.replace(/(\r\n|\r)/g,"\n").length;e=d.childNodes;if(!h){f=e[e.length-1];return f.nodeType!=CKEDITOR.NODE_TEXT?
{container:d,offset:e.length}:{container:f,offset:f.nodeValue.length}}for(d=e.length;h>0&&d>0;){g=e[--d];if(g.nodeType==CKEDITOR.NODE_TEXT){x=g;h=h-g.nodeValue.length}}return{container:x,offset:-h}}h.collapse(A>0?true:false);h.setEndPoint(A>0?"StartToStart":"EndToStart",b);h=h.text.replace(/(\r\n|\r)/g,"\n").length;if(!h)return{container:d,offset:a(f)+(A>0?0:1)};for(;h>0;)try{g=f[A>0?"previousSibling":"nextSibling"];if(g.nodeType==CKEDITOR.NODE_TEXT){h=h-g.nodeValue.length;x=g}f=g}catch(l){return{container:d,
offset:a(f)}}return{container:x,offset:A>0?-h:x.nodeValue.length+h}};return function(){var a=this.getNative(),c=a&&a.createRange(),d=this.getType();if(!a)return[];if(d==CKEDITOR.SELECTION_TEXT){a=new CKEDITOR.dom.range(this.root);d=b(c,true);a.setStart(new CKEDITOR.dom.node(d.container),d.offset);d=b(c);a.setEnd(new CKEDITOR.dom.node(d.container),d.offset);a.endContainer.getPosition(a.startContainer)&CKEDITOR.POSITION_PRECEDING&&a.endOffset<=a.startContainer.getIndex()&&a.collapse();return[a]}if(d==
CKEDITOR.SELECTION_ELEMENT){for(var d=[],e=0;e<c.length;e++){for(var f=c.item(e),g=f.parentNode,h=0,a=new CKEDITOR.dom.range(this.root);h<g.childNodes.length&&g.childNodes[h]!=f;h++);a.setStart(new CKEDITOR.dom.node(g),h);a.setEnd(new CKEDITOR.dom.node(g),h+1);d.push(a)}return d}return[]}}():function(){var a=[],b,c=this.getNative();if(!c)return a;for(var d=0;d<c.rangeCount;d++){var e=c.getRangeAt(d);b=new CKEDITOR.dom.range(this.root);b.setStart(new CKEDITOR.dom.node(e.startContainer),e.startOffset);
b.setEnd(new CKEDITOR.dom.node(e.endContainer),e.endOffset);a.push(b)}return a};return function(b){var c=this._.cache,d=c.ranges;if(!d)c.ranges=d=new CKEDITOR.dom.rangeList(a.call(this));return!b?d:s(new CKEDITOR.dom.rangeList(d.slice()))}}(),getStartElement:function(){var a=this._.cache;if(a.startElement!==void 0)return a.startElement;var b;switch(this.getType()){case CKEDITOR.SELECTION_ELEMENT:return this.getSelectedElement();case CKEDITOR.SELECTION_TEXT:var c=this.getRanges()[0];if(c){if(c.collapsed){b=
c.startContainer;b.type!=CKEDITOR.NODE_ELEMENT&&(b=b.getParent())}else{for(c.optimize();;){b=c.startContainer;if(c.startOffset==(b.getChildCount?b.getChildCount():b.getLength())&&!b.isBlockBoundary())c.setStartAfter(b);else break}b=c.startContainer;if(b.type!=CKEDITOR.NODE_ELEMENT)return b.getParent();b=b.getChild(c.startOffset);if(!b||b.type!=CKEDITOR.NODE_ELEMENT)b=c.startContainer;else for(c=b.getFirst();c&&c.type==CKEDITOR.NODE_ELEMENT;){b=c;c=c.getFirst()}}b=b.$}}return a.startElement=b?new CKEDITOR.dom.element(b):
null},getSelectedElement:function(){var a=this._.cache;if(a.selectedElement!==void 0)return a.selectedElement;var b=this,c=CKEDITOR.tools.tryThese(function(){return b.getNative().createRange().item(0)},function(){for(var a=b.getRanges()[0].clone(),c,d,e=2;e&&(!(c=a.getEnclosedNode())||!(c.type==CKEDITOR.NODE_ELEMENT&&E[c.getName()]&&(d=c)));e--)a.shrink(CKEDITOR.SHRINK_ELEMENT);return d&&d.$});return a.selectedElement=c?new CKEDITOR.dom.element(c):null},getSelectedText:function(){var a=this._.cache;
if(a.selectedText!==void 0)return a.selectedText;var b=this.getNative(),b=u?b.type=="Control"?"":b.createRange().text:b.toString();return a.selectedText=b},lock:function(){this.getRanges();this.getStartElement();this.getSelectedElement();this.getSelectedText();this._.cache.nativeSel=null;this.isLocked=1},unlock:function(a){if(this.isLocked){if(a)var b=this.getSelectedElement(),c=!b&&this.getRanges(),d=this.isFake;this.isLocked=0;this.reset();if(a)(a=b||c[0]&&c[0].getCommonAncestor())&&a.getAscendant("body",
1)&&(d?this.fake(b):b?this.selectElement(b):this.selectRanges(c))}},reset:function(){this._.cache={};this.isFake=0;var a=this.root.editor;if(a&&a._.fakeSelection&&this.rev==a._.fakeSelection.rev){delete a._.fakeSelection;var b=a._.hiddenSelectionContainer;if(b){var c=a.checkDirty();a.fire("lockSnapshot");b.remove();a.fire("unlockSnapshot");!c&&a.resetDirty()}delete a._.hiddenSelectionContainer}this.rev=v++},selectElement:function(a){var b=new CKEDITOR.dom.range(this.root);b.setStartBefore(a);b.setEndAfter(a);
this.selectRanges([b])},selectRanges:function(a){var b=this.root.editor,b=b&&b._.hiddenSelectionContainer;this.reset();if(b)for(var b=this.root,c,d=0;d<a.length;++d){c=a[d];if(c.endContainer.equals(b))c.endOffset=Math.min(c.endOffset,b.getChildCount())}if(a.length)if(this.isLocked){var e=CKEDITOR.document.getActive();this.unlock();this.selectRanges(a);this.lock();e&&!e.equals(this.root)&&e.focus()}else{var g;a:{var i,j;if(a.length==1&&!(j=a[0]).collapsed&&(g=j.getEnclosedNode())&&g.type==CKEDITOR.NODE_ELEMENT){j=
j.clone();j.shrink(CKEDITOR.SHRINK_ELEMENT,true);if((i=j.getEnclosedNode())&&i.type==CKEDITOR.NODE_ELEMENT)g=i;if(g.getAttribute("contenteditable")=="false")break a}g=void 0}if(g)this.fake(g);else{if(u){j=CKEDITOR.dom.walker.whitespaces(true);i=/\ufeff|\u00a0/;b={table:1,tbody:1,tr:1};if(a.length>1){g=a[a.length-1];a[0].setEnd(g.endContainer,g.endOffset)}g=a[0];var a=g.collapsed,l,m,w;if((c=g.getEnclosedNode())&&c.type==CKEDITOR.NODE_ELEMENT&&c.getName()in E&&(!c.is("a")||!c.getText()))try{w=c.$.createControlRange();
w.addElement(c.$);w.select();return}catch(H){}if(g.startContainer.type==CKEDITOR.NODE_ELEMENT&&g.startContainer.getName()in b||g.endContainer.type==CKEDITOR.NODE_ELEMENT&&g.endContainer.getName()in b){g.shrink(CKEDITOR.NODE_ELEMENT,true);a=g.collapsed}w=g.createBookmark();b=w.startNode;if(!a)e=w.endNode;w=g.document.$.body.createTextRange();w.moveToElementText(b.$);w.moveStart("character",1);if(e){i=g.document.$.body.createTextRange();i.moveToElementText(e.$);w.setEndPoint("EndToEnd",i);w.moveEnd("character",
-1)}else{l=b.getNext(j);m=b.hasAscendant("pre");l=!(l&&l.getText&&l.getText().match(i))&&(m||!b.hasPrevious()||b.getPrevious().is&&b.getPrevious().is("br"));m=g.document.createElement("span");m.setHtml("&#65279;");m.insertBefore(b);l&&g.document.createText("").insertBefore(b)}g.setStartBefore(b);b.remove();if(a){if(l){w.moveStart("character",-1);w.select();g.document.$.selection.clear()}else w.select();g.moveToPosition(m,CKEDITOR.POSITION_BEFORE_START);m.remove()}else{g.setEndBefore(e);e.remove();
w.select()}}else{e=this.getNative();if(!e)return;this.removeAllRanges();for(w=0;w<a.length;w++){if(w<a.length-1){l=a[w];m=a[w+1];i=l.clone();i.setStart(l.endContainer,l.endOffset);i.setEnd(m.startContainer,m.startOffset);if(!i.collapsed){i.shrink(CKEDITOR.NODE_ELEMENT,true);g=i.getCommonAncestor();i=i.getEnclosedNode();if(g.isReadOnly()||i&&i.isReadOnly()){m.setStart(l.startContainer,l.startOffset);a.splice(w--,1);continue}}}g=a[w];m=this.document.$.createRange();if(g.collapsed&&CKEDITOR.env.webkit&&
f(g)){l=this.root;h(l,false);i=l.getDocument().createText("​");l.setCustomData("cke-fillingChar",i);g.insertNode(i);if((l=i.getNext())&&!i.getPrevious()&&l.type==CKEDITOR.NODE_ELEMENT&&l.getName()=="br"){h(this.root);g.moveToPosition(l,CKEDITOR.POSITION_BEFORE_START)}else g.moveToPosition(i,CKEDITOR.POSITION_AFTER_END)}m.setStart(g.startContainer.$,g.startOffset);try{m.setEnd(g.endContainer.$,g.endOffset)}catch(C){if(C.toString().indexOf("NS_ERROR_ILLEGAL_VALUE")>=0){g.collapse(1);m.setEnd(g.endContainer.$,
g.endOffset)}else throw C;}e.addRange(m)}}this.reset();this.root.fire("selectionchange")}}},fake:function(a){var b=this.root.editor;this.reset();m(b);var c=this._.cache,d=new CKEDITOR.dom.range(this.root);d.setStartBefore(a);d.setEndAfter(a);c.ranges=new CKEDITOR.dom.rangeList(d);c.selectedElement=c.startElement=a;c.type=CKEDITOR.SELECTION_ELEMENT;c.selectedText=c.nativeSel=null;this.isFake=1;this.rev=v++;b._.fakeSelection=this;this.root.fire("selectionchange")},isHidden:function(){var a=this.getCommonAncestor();
a&&a.type==CKEDITOR.NODE_TEXT&&(a=a.getParent());return!(!a||!a.data("cke-hidden-sel"))},createBookmarks:function(a){a=this.getRanges().createBookmarks(a);this.isFake&&(a.isFake=1);return a},createBookmarks2:function(a){a=this.getRanges().createBookmarks2(a);this.isFake&&(a.isFake=1);return a},selectBookmarks:function(a){for(var b=[],c=0;c<a.length;c++){var d=new CKEDITOR.dom.range(this.root);d.moveToBookmark(a[c]);b.push(d)}a.isFake?this.fake(b[0].getEnclosedNode()):this.selectRanges(b);return this},
getCommonAncestor:function(){var a=this.getRanges();return!a.length?null:a[0].startContainer.getCommonAncestor(a[a.length-1].endContainer)},scrollIntoView:function(){this.type!=CKEDITOR.SELECTION_NONE&&this.getRanges()[0].scrollIntoView()},removeAllRanges:function(){if(this.getType()!=CKEDITOR.SELECTION_NONE){var a=this.getNative();try{a&&a[u?"empty":"removeAllRanges"]()}catch(b){}this.reset()}}}})();"use strict";CKEDITOR.STYLE_BLOCK=1;CKEDITOR.STYLE_INLINE=2;CKEDITOR.STYLE_OBJECT=3;
(function(){function a(a,b){for(var c,d;a=a.getParent();){if(a.equals(b))break;if(a.getAttribute("data-nostyle"))c=a;else if(!d){var e=a.getAttribute("contentEditable");e=="false"?c=a:e=="true"&&(d=1)}}return c}function e(b){var d=b.document;if(b.collapsed){d=j(this,d);b.insertNode(d);b.moveToPosition(d,CKEDITOR.POSITION_BEFORE_END)}else{var f=this.element,g=this._.definition,h,i=g.ignoreReadonly,k=i||g.includeReadonly;k==null&&(k=b.root.getCustomData("cke_includeReadonly"));var l=CKEDITOR.dtd[f];
if(!l){h=true;l=CKEDITOR.dtd.span}b.enlarge(CKEDITOR.ENLARGE_INLINE,1);b.trim();var m=b.createBookmark(),n=m.startNode,p=m.endNode,o=n,q;if(!i){var t=b.getCommonAncestor(),i=a(n,t),t=a(p,t);i&&(o=i.getNextSourceNode(true));t&&(p=t)}for(o.getPosition(p)==CKEDITOR.POSITION_FOLLOWING&&(o=0);o;){i=false;if(o.equals(p)){o=null;i=true}else{var s=o.type==CKEDITOR.NODE_ELEMENT?o.getName():null,t=s&&o.getAttribute("contentEditable")=="false",r=s&&o.getAttribute("data-nostyle");if(s&&o.data("cke-bookmark")){o=
o.getNextSourceNode(true);continue}if(t&&k&&CKEDITOR.dtd.$block[s])for(var v=o,u=c(v),z=void 0,D=u.length,E=0,v=D&&new CKEDITOR.dom.range(v.getDocument());E<D;++E){var z=u[E],M=CKEDITOR.filter.instances[z.data("cke-filter")];if(M?M.check(this):1){v.selectNodeContents(z);e.call(this,v)}}u=s?!l[s]||r?0:t&&!k?0:(o.getPosition(p)|L)==L&&(!g.childRule||g.childRule(o)):1;if(u)if((u=o.getParent())&&((u.getDtd()||CKEDITOR.dtd.span)[f]||h)&&(!g.parentRule||g.parentRule(u))){if(!q&&(!s||!CKEDITOR.dtd.$removeEmpty[s]||
(o.getPosition(p)|L)==L)){q=b.clone();q.setStartBefore(o)}s=o.type;if(s==CKEDITOR.NODE_TEXT||t||s==CKEDITOR.NODE_ELEMENT&&!o.getChildCount()){for(var s=o,U;(i=!s.getNext(J))&&(U=s.getParent(),l[U.getName()])&&(U.getPosition(n)|B)==B&&(!g.childRule||g.childRule(U));)s=U;q.setEndAfter(s)}}else i=true;else i=true;o=o.getNextSourceNode(r||t)}if(i&&q&&!q.collapsed){for(var i=j(this,d),t=i.hasAttributes(),r=q.getCommonAncestor(),s={},u={},z={},D={},O,R,X;i&&r;){if(r.getName()==f){for(O in g.attributes)if(!D[O]&&
(X=r.getAttribute(R)))i.getAttribute(O)==X?u[O]=1:D[O]=1;for(R in g.styles)if(!z[R]&&(X=r.getStyle(R)))i.getStyle(R)==X?s[R]=1:z[R]=1}r=r.getParent()}for(O in u)i.removeAttribute(O);for(R in s)i.removeStyle(R);t&&!i.hasAttributes()&&(i=null);if(i){q.extractContents().appendTo(i);q.insertNode(i);y.call(this,i);i.mergeSiblings();CKEDITOR.env.ie||i.$.normalize()}else{i=new CKEDITOR.dom.element("span");q.extractContents().appendTo(i);q.insertNode(i);y.call(this,i);i.remove(true)}q=null}}b.moveToBookmark(m);
b.shrink(CKEDITOR.SHRINK_TEXT);b.shrink(CKEDITOR.NODE_ELEMENT,true)}}function b(a){function b(){for(var a=new CKEDITOR.dom.elementPath(d.getParent()),c=new CKEDITOR.dom.elementPath(j.getParent()),e=null,f=null,g=0;g<a.elements.length;g++){var h=a.elements[g];if(h==a.block||h==a.blockLimit)break;k.checkElementRemovable(h,true)&&(e=h)}for(g=0;g<c.elements.length;g++){h=c.elements[g];if(h==c.block||h==c.blockLimit)break;k.checkElementRemovable(h,true)&&(f=h)}f&&j.breakParent(f);e&&d.breakParent(e)}a.enlarge(CKEDITOR.ENLARGE_INLINE,
1);var c=a.createBookmark(),d=c.startNode;if(a.collapsed){for(var e=new CKEDITOR.dom.elementPath(d.getParent(),a.root),f,g=0,h;g<e.elements.length&&(h=e.elements[g]);g++){if(h==e.block||h==e.blockLimit)break;if(this.checkElementRemovable(h)){var i;if(a.collapsed&&(a.checkBoundaryOfElement(h,CKEDITOR.END)||(i=a.checkBoundaryOfElement(h,CKEDITOR.START)))){f=h;f.match=i?"start":"end"}else{h.mergeSiblings();h.is(this.element)?s.call(this,h):p(h,E(this)[h.getName()])}}}if(f){h=d;for(g=0;;g++){i=e.elements[g];
if(i.equals(f))break;else if(i.match)continue;else i=i.clone();i.append(h);h=i}h[f.match=="start"?"insertBefore":"insertAfter"](f)}}else{var j=c.endNode,k=this;b();for(e=d;!e.equals(j);){f=e.getNextSourceNode();if(e.type==CKEDITOR.NODE_ELEMENT&&this.checkElementRemovable(e)){e.getName()==this.element?s.call(this,e):p(e,E(this)[e.getName()]);if(f.type==CKEDITOR.NODE_ELEMENT&&f.contains(d)){b();f=d.getNext()}}e=f}}a.moveToBookmark(c);a.shrink(CKEDITOR.NODE_ELEMENT,true)}function c(a){var b=[];a.forEach(function(a){if(a.getAttribute("contenteditable")==
"true"){b.push(a);return false}},CKEDITOR.NODE_ELEMENT,true);return b}function f(a){var b=a.getEnclosedNode()||a.getCommonAncestor(false,true);(a=(new CKEDITOR.dom.elementPath(b,a.root)).contains(this.element,1))&&!a.isReadOnly()&&u(a,this)}function d(a){var b=a.getCommonAncestor(true,true);if(a=(new CKEDITOR.dom.elementPath(b,a.root)).contains(this.element,1)){var b=this._.definition,c=b.attributes;if(c)for(var d in c)a.removeAttribute(d,c[d]);if(b.styles)for(var e in b.styles)b.styles.hasOwnProperty(e)&&
a.removeStyle(e)}}function h(a){var b=a.createBookmark(true),c=a.createIterator();c.enforceRealBlocks=true;if(this._.enterMode)c.enlargeBr=this._.enterMode!=CKEDITOR.ENTER_BR;for(var d,e=a.document,f;d=c.getNextParagraph();)if(!d.isReadOnly()&&(c.activeFilter?c.activeFilter.check(this):1)){f=j(this,e,d);i(d,f)}a.moveToBookmark(b)}function l(a){var b=a.createBookmark(1),c=a.createIterator();c.enforceRealBlocks=true;c.enlargeBr=this._.enterMode!=CKEDITOR.ENTER_BR;for(var d,e;d=c.getNextParagraph();)if(this.checkElementRemovable(d))if(d.is("pre")){(e=
this._.enterMode==CKEDITOR.ENTER_BR?null:a.document.createElement(this._.enterMode==CKEDITOR.ENTER_P?"p":"div"))&&d.copyAttributes(e);i(d,e)}else s.call(this,d);a.moveToBookmark(b)}function i(a,b){var c=!b;if(c){b=a.getDocument().createElement("div");a.copyAttributes(b)}var d=b&&b.is("pre"),e=a.is("pre"),f=!d&&e;if(d&&!e){e=b;(f=a.getBogus())&&f.remove();f=a.getHtml();f=m(f,/(?:^[ \t\n\r]+)|(?:[ \t\n\r]+$)/g,"");f=f.replace(/[ \t\r\n]*(<br[^>]*>)[ \t\r\n]*/gi,"$1");f=f.replace(/([ \t\n\r]+|&nbsp;)/g,
" ");f=f.replace(/<br\b[^>]*>/gi,"\n");if(CKEDITOR.env.ie){var h=a.getDocument().createElement("div");h.append(e);e.$.outerHTML="<pre>"+f+"</pre>";e.copyAttributes(h.getFirst());e=h.getFirst().remove()}else e.setHtml(f);b=e}else f?b=t(c?[a.getHtml()]:g(a),b):a.moveChildren(b);b.replace(a);if(d){var c=b,i;if((i=c.getPrevious(z))&&i.type==CKEDITOR.NODE_ELEMENT&&i.is("pre")){d=m(i.getHtml(),/\n$/,"")+"\n\n"+m(c.getHtml(),/^\n/,"");CKEDITOR.env.ie?c.$.outerHTML="<pre>"+d+"</pre>":c.setHtml(d);i.remove()}}else c&&
q(b)}function g(a){var b=[];m(a.getOuterHtml(),/(\S\s*)\n(?:\s|(<span[^>]+data-cke-bookmark.*?\/span>))*\n(?!$)/gi,function(a,b,c){return b+"</pre>"+c+"<pre>"}).replace(/<pre\b.*?>([\s\S]*?)<\/pre>/gi,function(a,c){b.push(c)});return b}function m(a,b,c){var d="",e="",a=a.replace(/(^<span[^>]+data-cke-bookmark.*?\/span>)|(<span[^>]+data-cke-bookmark.*?\/span>$)/gi,function(a,b,c){b&&(d=b);c&&(e=c);return""});return d+a.replace(b,c)+e}function t(a,b){var c;a.length>1&&(c=new CKEDITOR.dom.documentFragment(b.getDocument()));
for(var d=0;d<a.length;d++){var e=a[d],e=e.replace(/(\r\n|\r)/g,"\n"),e=m(e,/^[ \t]*\n/,""),e=m(e,/\n$/,""),e=m(e,/^[ \t]+|[ \t]+$/g,function(a,b){return a.length==1?"&nbsp;":b?" "+CKEDITOR.tools.repeat("&nbsp;",a.length-1):CKEDITOR.tools.repeat("&nbsp;",a.length-1)+" "}),e=e.replace(/\n/g,"<br>"),e=e.replace(/[ \t]{2,}/g,function(a){return CKEDITOR.tools.repeat("&nbsp;",a.length-1)+" "});if(c){var f=b.clone();f.setHtml(e);c.append(f)}else b.setHtml(e)}return c||b}function s(a,b){var c=this._.definition,
d=c.attributes,c=c.styles,e=E(this)[a.getName()],f=CKEDITOR.tools.isEmpty(d)&&CKEDITOR.tools.isEmpty(c),g;for(g in d)if(!((g=="class"||this._.definition.fullMatch)&&a.getAttribute(g)!=k(g,d[g]))&&!(b&&g.slice(0,5)=="data-")){f=a.hasAttribute(g);a.removeAttribute(g)}for(var h in c)if(!(this._.definition.fullMatch&&a.getStyle(h)!=k(h,c[h],true))){f=f||!!a.getStyle(h);a.removeStyle(h)}p(a,e,r[a.getName()]);f&&(this._.definition.alwaysRemoveElement?q(a,1):!CKEDITOR.dtd.$block[a.getName()]||this._.enterMode==
CKEDITOR.ENTER_BR&&!a.hasAttributes()?q(a):a.renameNode(this._.enterMode==CKEDITOR.ENTER_P?"p":"div"))}function y(a){for(var b=E(this),c=a.getElementsByTag(this.element),d,e=c.count();--e>=0;){d=c.getItem(e);d.isReadOnly()||s.call(this,d,true)}for(var f in b)if(f!=this.element){c=a.getElementsByTag(f);for(e=c.count()-1;e>=0;e--){d=c.getItem(e);d.isReadOnly()||p(d,b[f])}}}function p(a,b,c){if(b=b&&b.attributes)for(var d=0;d<b.length;d++){var e=b[d][0],f;if(f=a.getAttribute(e)){var g=b[d][1];(g===null||
g.test&&g.test(f)||typeof g=="string"&&f==g)&&a.removeAttribute(e)}}c||q(a)}function q(a,b){if(!a.hasAttributes()||b)if(CKEDITOR.dtd.$block[a.getName()]){var c=a.getPrevious(z),d=a.getNext(z);c&&(c.type==CKEDITOR.NODE_TEXT||!c.isBlockBoundary({br:1}))&&a.append("br",1);d&&(d.type==CKEDITOR.NODE_TEXT||!d.isBlockBoundary({br:1}))&&a.append("br");a.remove(true)}else{c=a.getFirst();d=a.getLast();a.remove(true);if(c){c.type==CKEDITOR.NODE_ELEMENT&&c.mergeSiblings();d&&(!c.equals(d)&&d.type==CKEDITOR.NODE_ELEMENT)&&
d.mergeSiblings()}}}function j(a,b,c){var d;d=a.element;d=="*"&&(d="span");d=new CKEDITOR.dom.element(d,b);c&&c.copyAttributes(d);d=u(d,a);b.getCustomData("doc_processing_style")&&d.hasAttribute("id")?d.removeAttribute("id"):b.setCustomData("doc_processing_style",1);return d}function u(a,b){var c=b._.definition,d=c.attributes,c=CKEDITOR.style.getStyleText(c);if(d)for(var e in d)a.setAttribute(e,d[e]);c&&a.setAttribute("style",c);return a}function v(a,b){for(var c in a)a[c]=a[c].replace(D,function(a,
c){return b[c]})}function E(a){if(a._.overrides)return a._.overrides;var b=a._.overrides={},c=a._.definition.overrides;if(c){CKEDITOR.tools.isArray(c)||(c=[c]);for(var d=0;d<c.length;d++){var e=c[d],f,g;if(typeof e=="string")f=e.toLowerCase();else{f=e.element?e.element.toLowerCase():a.element;g=e.attributes}e=b[f]||(b[f]={});if(g){var e=e.attributes=e.attributes||[],h;for(h in g)e.push([h.toLowerCase(),g[h]])}}}return b}function k(a,b,c){var d=new CKEDITOR.dom.element("span");d[c?"setStyle":"setAttribute"](a,
b);return d[c?"getStyle":"getAttribute"](a)}function n(a,b,c){for(var d=a.document,e=a.getRanges(),b=b?this.removeFromRange:this.applyToRange,f,g=e.createIterator();f=g.getNextRange();)b.call(this,f,c);a.selectRanges(e);d.removeCustomData("doc_processing_style")}var r={address:1,div:1,h1:1,h2:1,h3:1,h4:1,h5:1,h6:1,p:1,pre:1,section:1,header:1,footer:1,nav:1,article:1,aside:1,figure:1,dialog:1,hgroup:1,time:1,meter:1,menu:1,command:1,keygen:1,output:1,progress:1,details:1,datagrid:1,datalist:1},o=
{a:1,blockquote:1,embed:1,hr:1,img:1,li:1,object:1,ol:1,table:1,td:1,tr:1,th:1,ul:1,dl:1,dt:1,dd:1,form:1,audio:1,video:1},M=/\s*(?:;\s*|$)/,D=/#\((.+?)\)/g,J=CKEDITOR.dom.walker.bookmark(0,1),z=CKEDITOR.dom.walker.whitespaces(1);CKEDITOR.style=function(a,b){if(typeof a.type=="string")return new CKEDITOR.style.customHandlers[a.type](a);var c=a.attributes;if(c&&c.style){a.styles=CKEDITOR.tools.extend({},a.styles,CKEDITOR.tools.parseCssText(c.style));delete c.style}if(b){a=CKEDITOR.tools.clone(a);v(a.attributes,
b);v(a.styles,b)}c=this.element=a.element?typeof a.element=="string"?a.element.toLowerCase():a.element:"*";this.type=a.type||(r[c]?CKEDITOR.STYLE_BLOCK:o[c]?CKEDITOR.STYLE_OBJECT:CKEDITOR.STYLE_INLINE);if(typeof this.element=="object")this.type=CKEDITOR.STYLE_OBJECT;this._={definition:a}};CKEDITOR.style.prototype={apply:function(a){if(a instanceof CKEDITOR.dom.document)return n.call(this,a.getSelection());if(this.checkApplicable(a.elementPath(),a)){var b=this._.enterMode;if(!b)this._.enterMode=a.activeEnterMode;
n.call(this,a.getSelection(),0,a);this._.enterMode=b}},remove:function(a){if(a instanceof CKEDITOR.dom.document)return n.call(this,a.getSelection(),1);if(this.checkApplicable(a.elementPath(),a)){var b=this._.enterMode;if(!b)this._.enterMode=a.activeEnterMode;n.call(this,a.getSelection(),1,a);this._.enterMode=b}},applyToRange:function(a){this.applyToRange=this.type==CKEDITOR.STYLE_INLINE?e:this.type==CKEDITOR.STYLE_BLOCK?h:this.type==CKEDITOR.STYLE_OBJECT?f:null;return this.applyToRange(a)},removeFromRange:function(a){this.removeFromRange=
this.type==CKEDITOR.STYLE_INLINE?b:this.type==CKEDITOR.STYLE_BLOCK?l:this.type==CKEDITOR.STYLE_OBJECT?d:null;return this.removeFromRange(a)},applyToObject:function(a){u(a,this)},checkActive:function(a,b){switch(this.type){case CKEDITOR.STYLE_BLOCK:return this.checkElementRemovable(a.block||a.blockLimit,true,b);case CKEDITOR.STYLE_OBJECT:case CKEDITOR.STYLE_INLINE:for(var c=a.elements,d=0,e;d<c.length;d++){e=c[d];if(!(this.type==CKEDITOR.STYLE_INLINE&&(e==a.block||e==a.blockLimit))){if(this.type==
CKEDITOR.STYLE_OBJECT){var f=e.getName();if(!(typeof this.element=="string"?f==this.element:f in this.element))continue}if(this.checkElementRemovable(e,true,b))return true}}}return false},checkApplicable:function(a,b,c){b&&b instanceof CKEDITOR.filter&&(c=b);if(c&&!c.check(this))return false;switch(this.type){case CKEDITOR.STYLE_OBJECT:return!!a.contains(this.element);case CKEDITOR.STYLE_BLOCK:return!!a.blockLimit.getDtd()[this.element]}return true},checkElementMatch:function(a,b){var c=this._.definition;
if(!a||!c.ignoreReadonly&&a.isReadOnly())return false;var d=a.getName();if(typeof this.element=="string"?d==this.element:d in this.element){if(!b&&!a.hasAttributes())return true;if(d=c._AC)c=d;else{var d={},e=0,f=c.attributes;if(f)for(var g in f){e++;d[g]=f[g]}if(g=CKEDITOR.style.getStyleText(c)){d.style||e++;d.style=g}d._length=e;c=c._AC=d}if(c._length){for(var h in c)if(h!="_length"){e=a.getAttribute(h)||"";if(h=="style")a:{d=c[h];typeof d=="string"&&(d=CKEDITOR.tools.parseCssText(d));typeof e==
"string"&&(e=CKEDITOR.tools.parseCssText(e,true));g=void 0;for(g in d)if(!(g in e&&(e[g]==d[g]||d[g]=="inherit"||e[g]=="inherit"))){d=false;break a}d=true}else d=c[h]==e;if(d){if(!b)return true}else if(b)return false}if(b)return true}else return true}return false},checkElementRemovable:function(a,b,c){if(this.checkElementMatch(a,b,c))return true;if(b=E(this)[a.getName()]){var d;if(!(b=b.attributes))return true;for(c=0;c<b.length;c++){d=b[c][0];if(d=a.getAttribute(d)){var e=b[c][1];if(e===null)return true;
if(typeof e=="string"){if(d==e)return true}else if(e.test(d))return true}}}return false},buildPreview:function(a){var b=this._.definition,c=[],d=b.element;d=="bdo"&&(d="span");var c=["<",d],e=b.attributes;if(e)for(var f in e)c.push(" ",f,'="',e[f],'"');(e=CKEDITOR.style.getStyleText(b))&&c.push(' style="',e,'"');c.push(">",a||b.name,"</",d,">");return c.join("")},getDefinition:function(){return this._.definition}};CKEDITOR.style.getStyleText=function(a){var b=a._ST;if(b)return b;var b=a.styles,c=
a.attributes&&a.attributes.style||"",d="";c.length&&(c=c.replace(M,";"));for(var e in b){var f=b[e],g=(e+":"+f).replace(M,";");f=="inherit"?d=d+g:c=c+g}c.length&&(c=CKEDITOR.tools.normalizeCssText(c,true));return a._ST=c+d};CKEDITOR.style.customHandlers={};CKEDITOR.style.addCustomHandler=function(a){var b=function(a){this._={definition:a};this.setup&&this.setup(a)};b.prototype=CKEDITOR.tools.extend(CKEDITOR.tools.prototypedCopy(CKEDITOR.style.prototype),{assignedTo:CKEDITOR.STYLE_OBJECT},a,true);
return this.customHandlers[a.type]=b};var L=CKEDITOR.POSITION_PRECEDING|CKEDITOR.POSITION_IDENTICAL|CKEDITOR.POSITION_IS_CONTAINED,B=CKEDITOR.POSITION_FOLLOWING|CKEDITOR.POSITION_IDENTICAL|CKEDITOR.POSITION_IS_CONTAINED})();CKEDITOR.styleCommand=function(a,e){this.requiredContent=this.allowedContent=this.style=a;CKEDITOR.tools.extend(this,e,true)};
CKEDITOR.styleCommand.prototype.exec=function(a){a.focus();this.state==CKEDITOR.TRISTATE_OFF?a.applyStyle(this.style):this.state==CKEDITOR.TRISTATE_ON&&a.removeStyle(this.style)};CKEDITOR.stylesSet=new CKEDITOR.resourceManager("","stylesSet");CKEDITOR.addStylesSet=CKEDITOR.tools.bind(CKEDITOR.stylesSet.add,CKEDITOR.stylesSet);CKEDITOR.loadStylesSet=function(a,e,b){CKEDITOR.stylesSet.addExternal(a,e,"");CKEDITOR.stylesSet.load(a,b)};
CKEDITOR.tools.extend(CKEDITOR.editor.prototype,{attachStyleStateChange:function(a,e){var b=this._.styleStateChangeCallbacks;if(!b){b=this._.styleStateChangeCallbacks=[];this.on("selectionChange",function(a){for(var e=0;e<b.length;e++){var d=b[e],h=d.style.checkActive(a.data.path,this)?CKEDITOR.TRISTATE_ON:CKEDITOR.TRISTATE_OFF;d.fn.call(this,h)}})}b.push({style:a,fn:e})},applyStyle:function(a){a.apply(this)},removeStyle:function(a){a.remove(this)},getStylesSet:function(a){if(this._.stylesDefinitions)a(this._.stylesDefinitions);
else{var e=this,b=e.config.stylesCombo_stylesSet||e.config.stylesSet;if(b===false)a(null);else if(b instanceof Array){e._.stylesDefinitions=b;a(b)}else{b||(b="default");var b=b.split(":"),c=b[0];CKEDITOR.stylesSet.addExternal(c,b[1]?b.slice(1).join(":"):CKEDITOR.getUrl("styles.js"),"");CKEDITOR.stylesSet.load(c,function(b){e._.stylesDefinitions=b[c];a(e._.stylesDefinitions)})}}}});
CKEDITOR.dom.comment=function(a,e){typeof a=="string"&&(a=(e?e.$:document).createComment(a));CKEDITOR.dom.domObject.call(this,a)};CKEDITOR.dom.comment.prototype=new CKEDITOR.dom.node;CKEDITOR.tools.extend(CKEDITOR.dom.comment.prototype,{type:CKEDITOR.NODE_COMMENT,getOuterHtml:function(){return"<\!--"+this.$.nodeValue+"--\>"}});"use strict";
(function(){var a={},e={},b;for(b in CKEDITOR.dtd.$blockLimit)b in CKEDITOR.dtd.$list||(a[b]=1);for(b in CKEDITOR.dtd.$block)b in CKEDITOR.dtd.$blockLimit||b in CKEDITOR.dtd.$empty||(e[b]=1);CKEDITOR.dom.elementPath=function(b,f){var d=null,h=null,l=[],i=b,g,f=f||b.getDocument().getBody();do if(i.type==CKEDITOR.NODE_ELEMENT){l.push(i);if(!this.lastElement){this.lastElement=i;if(i.is(CKEDITOR.dtd.$object)||i.getAttribute("contenteditable")=="false")continue}if(i.equals(f))break;if(!h){g=i.getName();
i.getAttribute("contenteditable")=="true"?h=i:!d&&e[g]&&(d=i);if(a[g]){var m;if(m=!d){if(g=g=="div"){a:{g=i.getChildren();m=0;for(var t=g.count();m<t;m++){var s=g.getItem(m);if(s.type==CKEDITOR.NODE_ELEMENT&&CKEDITOR.dtd.$block[s.getName()]){g=true;break a}}g=false}g=!g}m=g}m?d=i:h=i}}}while(i=i.getParent());h||(h=f);this.block=d;this.blockLimit=h;this.root=f;this.elements=l}})();
CKEDITOR.dom.elementPath.prototype={compare:function(a){var e=this.elements,a=a&&a.elements;if(!a||e.length!=a.length)return false;for(var b=0;b<e.length;b++)if(!e[b].equals(a[b]))return false;return true},contains:function(a,e,b){var c;typeof a=="string"&&(c=function(b){return b.getName()==a});a instanceof CKEDITOR.dom.element?c=function(b){return b.equals(a)}:CKEDITOR.tools.isArray(a)?c=function(b){return CKEDITOR.tools.indexOf(a,b.getName())>-1}:typeof a=="function"?c=a:typeof a=="object"&&(c=
function(b){return b.getName()in a});var f=this.elements,d=f.length;e&&d--;if(b){f=Array.prototype.slice.call(f,0);f.reverse()}for(e=0;e<d;e++)if(c(f[e]))return f[e];return null},isContextFor:function(a){var e;if(a in CKEDITOR.dtd.$block){e=this.contains(CKEDITOR.dtd.$intermediate)||this.root.equals(this.block)&&this.block||this.blockLimit;return!!e.getDtd()[a]}return true},direction:function(){return(this.block||this.blockLimit||this.root).getDirection(1)}};
CKEDITOR.dom.text=function(a,e){typeof a=="string"&&(a=(e?e.$:document).createTextNode(a));this.$=a};CKEDITOR.dom.text.prototype=new CKEDITOR.dom.node;
CKEDITOR.tools.extend(CKEDITOR.dom.text.prototype,{type:CKEDITOR.NODE_TEXT,getLength:function(){return this.$.nodeValue.length},getText:function(){return this.$.nodeValue},setText:function(a){this.$.nodeValue=a},split:function(a){var e=this.$.parentNode,b=e.childNodes.length,c=this.getLength(),f=this.getDocument(),d=new CKEDITOR.dom.text(this.$.splitText(a),f);if(e.childNodes.length==b)if(a>=c){d=f.createText("");d.insertAfter(this)}else{a=f.createText("");a.insertAfter(d);a.remove()}return d},substring:function(a,
e){return typeof e!="number"?this.$.nodeValue.substr(a):this.$.nodeValue.substring(a,e)}});
(function(){function a(a,c,e){var d=a.serializable,h=c[e?"endContainer":"startContainer"],l=e?"endOffset":"startOffset",i=d?c.document.getById(a.startNode):a.startNode,a=d?c.document.getById(a.endNode):a.endNode;if(h.equals(i.getPrevious())){c.startOffset=c.startOffset-h.getLength()-a.getPrevious().getLength();h=a.getNext()}else if(h.equals(a.getPrevious())){c.startOffset=c.startOffset-h.getLength();h=a.getNext()}h.equals(i.getParent())&&c[l]++;h.equals(a.getParent())&&c[l]++;c[e?"endContainer":"startContainer"]=
h;return c}CKEDITOR.dom.rangeList=function(a){if(a instanceof CKEDITOR.dom.rangeList)return a;a?a instanceof CKEDITOR.dom.range&&(a=[a]):a=[];return CKEDITOR.tools.extend(a,e)};var e={createIterator:function(){var a=this,c=CKEDITOR.dom.walker.bookmark(),e=[],d;return{getNextRange:function(h){d=d===void 0?0:d+1;var l=a[d];if(l&&a.length>1){if(!d)for(var i=a.length-1;i>=0;i--)e.unshift(a[i].createBookmark(true));if(h)for(var g=0;a[d+g+1];){for(var m=l.document,h=0,i=m.getById(e[g].endNode),m=m.getById(e[g+
1].startNode);;){i=i.getNextSourceNode(false);if(m.equals(i))h=1;else if(c(i)||i.type==CKEDITOR.NODE_ELEMENT&&i.isBlockBoundary())continue;break}if(!h)break;g++}for(l.moveToBookmark(e.shift());g--;){i=a[++d];i.moveToBookmark(e.shift());l.setEnd(i.endContainer,i.endOffset)}}return l}}},createBookmarks:function(b){for(var c=[],e,d=0;d<this.length;d++){c.push(e=this[d].createBookmark(b,true));for(var h=d+1;h<this.length;h++){this[h]=a(e,this[h]);this[h]=a(e,this[h],true)}}return c},createBookmarks2:function(a){for(var c=
[],e=0;e<this.length;e++)c.push(this[e].createBookmark2(a));return c},moveToBookmarks:function(a){for(var c=0;c<this.length;c++)this[c].moveToBookmark(a[c])}}})();
(function(){function a(){return CKEDITOR.getUrl(CKEDITOR.skinName.split(",")[1]||"skins/"+CKEDITOR.skinName.split(",")[0]+"/")}function e(b){var c=CKEDITOR.skin["ua_"+b],d=CKEDITOR.env;if(c)for(var c=c.split(",").sort(function(a,b){return a>b?-1:1}),e=0,f;e<c.length;e++){f=c[e];if(d.ie&&(f.replace(/^ie/,"")==d.version||d.quirks&&f=="iequirks"))f="ie";if(d[f]){b=b+("_"+c[e]);break}}return CKEDITOR.getUrl(a()+b+".css")}function b(a,b){if(!d[a]){CKEDITOR.document.appendStyleSheet(e(a));d[a]=1}b&&b()}
function c(a){var b=a.getById(h);if(!b){b=a.getHead().append("style");b.setAttribute("id",h);b.setAttribute("type","text/css")}return b}function f(a,b,c){var d,e,f;if(CKEDITOR.env.webkit){b=b.split("}").slice(0,-1);for(e=0;e<b.length;e++)b[e]=b[e].split("{")}for(var h=0;h<a.length;h++)if(CKEDITOR.env.webkit)for(e=0;e<b.length;e++){f=b[e][1];for(d=0;d<c.length;d++)f=f.replace(c[d][0],c[d][1]);a[h].$.sheet.addRule(b[e][0],f)}else{f=b;for(d=0;d<c.length;d++)f=f.replace(c[d][0],c[d][1]);CKEDITOR.env.ie&&
CKEDITOR.env.version<11?a[h].$.styleSheet.cssText=a[h].$.styleSheet.cssText+f:a[h].$.innerHTML=a[h].$.innerHTML+f}}var d={};CKEDITOR.skin={path:a,loadPart:function(c,d){CKEDITOR.skin.name!=CKEDITOR.skinName.split(",")[0]?CKEDITOR.scriptLoader.load(CKEDITOR.getUrl(a()+"skin.js"),function(){b(c,d)}):b(c,d)},getPath:function(a){return CKEDITOR.getUrl(e(a))},icons:{},addIcon:function(a,b,c,d){a=a.toLowerCase();this.icons[a]||(this.icons[a]={path:b,offset:c||0,bgsize:d||"16px"})},getIconStyle:function(a,
b,c,d,e){var f;if(a){a=a.toLowerCase();b&&(f=this.icons[a+"-rtl"]);f||(f=this.icons[a])}a=c||f&&f.path||"";d=d||f&&f.offset;e=e||f&&f.bgsize||"16px";return a&&"background-image:url("+CKEDITOR.getUrl(a)+");background-position:0 "+d+"px;background-size:"+e+";"}};CKEDITOR.tools.extend(CKEDITOR.editor.prototype,{getUiColor:function(){return this.uiColor},setUiColor:function(a){var b=c(CKEDITOR.document);return(this.setUiColor=function(a){var c=CKEDITOR.skin.chameleon,d=[[i,a]];this.uiColor=a;f([b],c(this,
"editor"),d);f(l,c(this,"panel"),d)}).call(this,a)}});var h="cke_ui_color",l=[],i=/\$color/g;CKEDITOR.on("instanceLoaded",function(a){if(!CKEDITOR.env.ie||!CKEDITOR.env.quirks){var b=a.editor,a=function(a){a=(a.data[0]||a.data).element.getElementsByTag("iframe").getItem(0).getFrameDocument();if(!a.getById("cke_ui_color")){a=c(a);l.push(a);var d=b.getUiColor();d&&f([a],CKEDITOR.skin.chameleon(b,"panel"),[[i,d]])}};b.on("panelShow",a);b.on("menuShow",a);b.config.uiColor&&b.setUiColor(b.config.uiColor)}})})();
(function(){if(CKEDITOR.env.webkit)CKEDITOR.env.hc=false;else{var a=CKEDITOR.dom.element.createFromHtml('<div style="width:0;height:0;position:absolute;left:-10000px;border:1px solid;border-color:red blue"></div>',CKEDITOR.document);a.appendTo(CKEDITOR.document.getHead());try{var e=a.getComputedStyle("border-top-color"),b=a.getComputedStyle("border-right-color");CKEDITOR.env.hc=!!(e&&e==b)}catch(c){CKEDITOR.env.hc=false}a.remove()}if(CKEDITOR.env.hc)CKEDITOR.env.cssClass=CKEDITOR.env.cssClass+" cke_hc";
CKEDITOR.document.appendStyleText(".cke{visibility:hidden;}");CKEDITOR.status="loaded";CKEDITOR.fireOnce("loaded");if(a=CKEDITOR._.pending){delete CKEDITOR._.pending;for(e=0;e<a.length;e++){CKEDITOR.editor.prototype.constructor.apply(a[e][0],a[e][1]);CKEDITOR.add(a[e][0])}}})();/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.skin.name="moono";CKEDITOR.skin.ua_editor="ie,iequirks,ie7,ie8,gecko";CKEDITOR.skin.ua_dialog="ie,iequirks,ie7,ie8";
CKEDITOR.skin.chameleon=function(){var b=function(){return function(b,e){for(var a=b.match(/[^#]./g),c=0;3>c;c++){var f=a,h=c,d;d=parseInt(a[c],16);d=("0"+(0>e?0|d*(1+e):0|d+(255-d)*e).toString(16)).slice(-2);f[h]=d}return"#"+a.join("")}}(),c=function(){var b=new CKEDITOR.template("background:#{to};background-image:-webkit-gradient(linear,lefttop,leftbottom,from({from}),to({to}));background-image:-moz-linear-gradient(top,{from},{to});background-image:-webkit-linear-gradient(top,{from},{to});background-image:-o-linear-gradient(top,{from},{to});background-image:-ms-linear-gradient(top,{from},{to});background-image:linear-gradient(top,{from},{to});filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='{from}',endColorstr='{to}');");return function(c,
a){return b.output({from:c,to:a})}}(),f={editor:new CKEDITOR.template("{id}.cke_chrome [border-color:{defaultBorder};] {id} .cke_top [ {defaultGradient}border-bottom-color:{defaultBorder};] {id} .cke_bottom [{defaultGradient}border-top-color:{defaultBorder};] {id} .cke_resizer [border-right-color:{ckeResizer}] {id} .cke_dialog_title [{defaultGradient}border-bottom-color:{defaultBorder};] {id} .cke_dialog_footer [{defaultGradient}outline-color:{defaultBorder};border-top-color:{defaultBorder};] {id} .cke_dialog_tab [{lightGradient}border-color:{defaultBorder};] {id} .cke_dialog_tab:hover [{mediumGradient}] {id} .cke_dialog_contents [border-top-color:{defaultBorder};] {id} .cke_dialog_tab_selected, {id} .cke_dialog_tab_selected:hover [background:{dialogTabSelected};border-bottom-color:{dialogTabSelectedBorder};] {id} .cke_dialog_body [background:{dialogBody};border-color:{defaultBorder};] {id} .cke_toolgroup [{lightGradient}border-color:{defaultBorder};] {id} a.cke_button_off:hover, {id} a.cke_button_off:focus, {id} a.cke_button_off:active [{mediumGradient}] {id} .cke_button_on [{ckeButtonOn}] {id} .cke_toolbar_separator [background-color: {ckeToolbarSeparator};] {id} .cke_combo_button [border-color:{defaultBorder};{lightGradient}] {id} a.cke_combo_button:hover, {id} a.cke_combo_button:focus, {id} .cke_combo_on a.cke_combo_button [border-color:{defaultBorder};{mediumGradient}] {id} .cke_path_item [color:{elementsPathColor};] {id} a.cke_path_item:hover, {id} a.cke_path_item:focus, {id} a.cke_path_item:active [background-color:{elementsPathBg};] {id}.cke_panel [border-color:{defaultBorder};] "),
panel:new CKEDITOR.template(".cke_panel_grouptitle [{lightGradient}border-color:{defaultBorder};] .cke_menubutton_icon [background-color:{menubuttonIcon};] .cke_menubutton:hover .cke_menubutton_icon, .cke_menubutton:focus .cke_menubutton_icon, .cke_menubutton:active .cke_menubutton_icon [background-color:{menubuttonIconHover};] .cke_menuseparator [background-color:{menubuttonIcon};] a:hover.cke_colorbox, a:focus.cke_colorbox, a:active.cke_colorbox [border-color:{defaultBorder};] a:hover.cke_colorauto, a:hover.cke_colormore, a:focus.cke_colorauto, a:focus.cke_colormore, a:active.cke_colorauto, a:active.cke_colormore [background-color:{ckeColorauto};border-color:{defaultBorder};] ")};
return function(g,e){var a=g.uiColor,a={id:"."+g.id,defaultBorder:b(a,-0.1),defaultGradient:c(b(a,0.9),a),lightGradient:c(b(a,1),b(a,0.7)),mediumGradient:c(b(a,0.8),b(a,0.5)),ckeButtonOn:c(b(a,0.6),b(a,0.7)),ckeResizer:b(a,-0.4),ckeToolbarSeparator:b(a,0.5),ckeColorauto:b(a,0.8),dialogBody:b(a,0.7),dialogTabSelected:c("#FFFFFF","#FFFFFF"),dialogTabSelectedBorder:"#FFF",elementsPathColor:b(a,-0.6),elementsPathBg:a,menubuttonIcon:b(a,0.5),menubuttonIconHover:b(a,0.3)};return f[e].output(a).replace(/\[/g,
"{").replace(/\]/g,"}")}}();CKEDITOR.plugins.add("basicstyles",{init:function(c){var e=0,d=function(g,d,b,a){if(a){var a=new CKEDITOR.style(a),f=h[b];f.unshift(a);c.attachStyleStateChange(a,function(a){!c.readOnly&&c.getCommand(b).setState(a)});c.addCommand(b,new CKEDITOR.styleCommand(a,{contentForms:f}));c.ui.addButton&&c.ui.addButton(g,{label:d,command:b,toolbar:"basicstyles,"+(e+=10)})}},h={bold:["strong","b",["span",function(a){a=a.styles["font-weight"];return"bold"==a||700<=+a}]],italic:["em","i",["span",function(a){return"italic"==
a.styles["font-style"]}]],underline:["u",["span",function(a){return"underline"==a.styles["text-decoration"]}]],strike:["s","strike",["span",function(a){return"line-through"==a.styles["text-decoration"]}]],subscript:["sub"],superscript:["sup"]},b=c.config,a=c.lang.basicstyles;d("Bold",a.bold,"bold",b.coreStyles_bold);d("Italic",a.italic,"italic",b.coreStyles_italic);d("Underline",a.underline,"underline",b.coreStyles_underline);d("Strike",a.strike,"strike",b.coreStyles_strike);d("Subscript",a.subscript,
"subscript",b.coreStyles_subscript);d("Superscript",a.superscript,"superscript",b.coreStyles_superscript);c.setKeystroke([[CKEDITOR.CTRL+66,"bold"],[CKEDITOR.CTRL+73,"italic"],[CKEDITOR.CTRL+85,"underline"]])}});CKEDITOR.config.coreStyles_bold={element:"strong",overrides:"b"};CKEDITOR.config.coreStyles_italic={element:"em",overrides:"i"};CKEDITOR.config.coreStyles_underline={element:"u"};CKEDITOR.config.coreStyles_strike={element:"s",overrides:"strike"};CKEDITOR.config.coreStyles_subscript={element:"sub"};
CKEDITOR.config.coreStyles_superscript={element:"sup"};(function(){var k={exec:function(g){var a=g.getCommand("blockquote").state,i=g.getSelection(),c=i&&i.getRanges()[0];if(c){var h=i.createBookmarks();if(CKEDITOR.env.ie){var e=h[0].startNode,b=h[0].endNode,d;if(e&&"blockquote"==e.getParent().getName())for(d=e;d=d.getNext();)if(d.type==CKEDITOR.NODE_ELEMENT&&d.isBlockBoundary()){e.move(d,!0);break}if(b&&"blockquote"==b.getParent().getName())for(d=b;d=d.getPrevious();)if(d.type==CKEDITOR.NODE_ELEMENT&&d.isBlockBoundary()){b.move(d);break}}var f=c.createIterator();
f.enlargeBr=g.config.enterMode!=CKEDITOR.ENTER_BR;if(a==CKEDITOR.TRISTATE_OFF){for(e=[];a=f.getNextParagraph();)e.push(a);1>e.length&&(a=g.document.createElement(g.config.enterMode==CKEDITOR.ENTER_P?"p":"div"),b=h.shift(),c.insertNode(a),a.append(new CKEDITOR.dom.text("",g.document)),c.moveToBookmark(b),c.selectNodeContents(a),c.collapse(!0),b=c.createBookmark(),e.push(a),h.unshift(b));d=e[0].getParent();c=[];for(b=0;b<e.length;b++)a=e[b],d=d.getCommonAncestor(a.getParent());for(a={table:1,tbody:1,
tr:1,ol:1,ul:1};a[d.getName()];)d=d.getParent();for(b=null;0<e.length;){for(a=e.shift();!a.getParent().equals(d);)a=a.getParent();a.equals(b)||c.push(a);b=a}for(;0<c.length;)if(a=c.shift(),"blockquote"==a.getName()){for(b=new CKEDITOR.dom.documentFragment(g.document);a.getFirst();)b.append(a.getFirst().remove()),e.push(b.getLast());b.replace(a)}else e.push(a);c=g.document.createElement("blockquote");for(c.insertBefore(e[0]);0<e.length;)a=e.shift(),c.append(a)}else if(a==CKEDITOR.TRISTATE_ON){b=[];
for(d={};a=f.getNextParagraph();){for(e=c=null;a.getParent();){if("blockquote"==a.getParent().getName()){c=a.getParent();e=a;break}a=a.getParent()}c&&(e&&!e.getCustomData("blockquote_moveout"))&&(b.push(e),CKEDITOR.dom.element.setMarker(d,e,"blockquote_moveout",!0))}CKEDITOR.dom.element.clearAllMarkers(d);a=[];e=[];for(d={};0<b.length;)f=b.shift(),c=f.getParent(),f.getPrevious()?f.getNext()?(f.breakParent(f.getParent()),e.push(f.getNext())):f.remove().insertAfter(c):f.remove().insertBefore(c),c.getCustomData("blockquote_processed")||
(e.push(c),CKEDITOR.dom.element.setMarker(d,c,"blockquote_processed",!0)),a.push(f);CKEDITOR.dom.element.clearAllMarkers(d);for(b=e.length-1;0<=b;b--){c=e[b];a:{d=c;for(var f=0,k=d.getChildCount(),j=void 0;f<k&&(j=d.getChild(f));f++)if(j.type==CKEDITOR.NODE_ELEMENT&&j.isBlockBoundary()){d=!1;break a}d=!0}d&&c.remove()}if(g.config.enterMode==CKEDITOR.ENTER_BR)for(c=!0;a.length;)if(f=a.shift(),"div"==f.getName()){b=new CKEDITOR.dom.documentFragment(g.document);c&&(f.getPrevious()&&!(f.getPrevious().type==
CKEDITOR.NODE_ELEMENT&&f.getPrevious().isBlockBoundary()))&&b.append(g.document.createElement("br"));for(c=f.getNext()&&!(f.getNext().type==CKEDITOR.NODE_ELEMENT&&f.getNext().isBlockBoundary());f.getFirst();)f.getFirst().remove().appendTo(b);c&&b.append(g.document.createElement("br"));b.replace(f);c=!1}}i.selectBookmarks(h);g.focus()}},refresh:function(g,a){this.setState(g.elementPath(a.block||a.blockLimit).contains("blockquote",1)?CKEDITOR.TRISTATE_ON:CKEDITOR.TRISTATE_OFF)},context:"blockquote",
allowedContent:"blockquote",requiredContent:"blockquote"};CKEDITOR.plugins.add("blockquote",{init:function(g){g.blockless||(g.addCommand("blockquote",k),g.ui.addButton&&g.ui.addButton("Blockquote",{label:g.lang.blockquote.toolbar,command:"blockquote",toolbar:"blocks,10"}))}})})();CKEDITOR.plugins.add("dialogui",{onLoad:function(){var h=function(b){this._||(this._={});this._["default"]=this._.initValue=b["default"]||"";this._.required=b.required||!1;for(var a=[this._],d=1;d<arguments.length;d++)a.push(arguments[d]);a.push(!0);CKEDITOR.tools.extend.apply(CKEDITOR.tools,a);return this._},r={build:function(b,a,d){return new CKEDITOR.ui.dialog.textInput(b,a,d)}},l={build:function(b,a,d){return new CKEDITOR.ui.dialog[a.type](b,a,d)}},n={isChanged:function(){return this.getValue()!=
this.getInitValue()},reset:function(b){this.setValue(this.getInitValue(),b)},setInitValue:function(){this._.initValue=this.getValue()},resetInitValue:function(){this._.initValue=this._["default"]},getInitValue:function(){return this._.initValue}},o=CKEDITOR.tools.extend({},CKEDITOR.ui.dialog.uiElement.prototype.eventProcessors,{onChange:function(b,a){this._.domOnChangeRegistered||(b.on("load",function(){this.getInputElement().on("change",function(){b.parts.dialog.isVisible()&&this.fire("change",{value:this.getValue()})},
this)},this),this._.domOnChangeRegistered=!0);this.on("change",a)}},!0),s=/^on([A-Z]\w+)/,p=function(b){for(var a in b)(s.test(a)||"title"==a||"type"==a)&&delete b[a];return b};CKEDITOR.tools.extend(CKEDITOR.ui.dialog,{labeledElement:function(b,a,d,f){if(!(4>arguments.length)){var c=h.call(this,a);c.labelId=CKEDITOR.tools.getNextId()+"_label";this._.children=[];var e={role:a.role||"presentation"};a.includeLabel&&(e["aria-labelledby"]=c.labelId);CKEDITOR.ui.dialog.uiElement.call(this,b,a,d,"div",null,
e,function(){var e=[],g=a.required?" cke_required":"";if(a.labelLayout!="horizontal")e.push('<label class="cke_dialog_ui_labeled_label'+g+'" ',' id="'+c.labelId+'"',c.inputId?' for="'+c.inputId+'"':"",(a.labelStyle?' style="'+a.labelStyle+'"':"")+">",a.label,"</label>",'<div class="cke_dialog_ui_labeled_content"',a.controlStyle?' style="'+a.controlStyle+'"':"",' role="presentation">',f.call(this,b,a),"</div>");else{g={type:"hbox",widths:a.widths,padding:0,children:[{type:"html",html:'<label class="cke_dialog_ui_labeled_label'+
g+'" id="'+c.labelId+'" for="'+c.inputId+'"'+(a.labelStyle?' style="'+a.labelStyle+'"':"")+">"+CKEDITOR.tools.htmlEncode(a.label)+"</span>"},{type:"html",html:'<span class="cke_dialog_ui_labeled_content"'+(a.controlStyle?' style="'+a.controlStyle+'"':"")+">"+f.call(this,b,a)+"</span>"}]};CKEDITOR.dialog._.uiElementBuilders.hbox.build(b,g,e)}return e.join("")})}},textInput:function(b,a,d){if(!(3>arguments.length)){h.call(this,a);var f=this._.inputId=CKEDITOR.tools.getNextId()+"_textInput",c={"class":"cke_dialog_ui_input_"+
a.type,id:f,type:a.type};a.validate&&(this.validate=a.validate);a.maxLength&&(c.maxlength=a.maxLength);a.size&&(c.size=a.size);a.inputStyle&&(c.style=a.inputStyle);var e=this,k=!1;b.on("load",function(){e.getInputElement().on("keydown",function(a){a.data.getKeystroke()==13&&(k=true)});e.getInputElement().on("keyup",function(a){if(a.data.getKeystroke()==13&&k){b.getButton("ok")&&setTimeout(function(){b.getButton("ok").click()},0);k=false}},null,null,1E3)});CKEDITOR.ui.dialog.labeledElement.call(this,
b,a,d,function(){var b=['<div class="cke_dialog_ui_input_',a.type,'" role="presentation"'];a.width&&b.push('style="width:'+a.width+'" ');b.push("><input ");c["aria-labelledby"]=this._.labelId;this._.required&&(c["aria-required"]=this._.required);for(var e in c)b.push(e+'="'+c[e]+'" ');b.push(" /></div>");return b.join("")})}},textarea:function(b,a,d){if(!(3>arguments.length)){h.call(this,a);var f=this,c=this._.inputId=CKEDITOR.tools.getNextId()+"_textarea",e={};a.validate&&(this.validate=a.validate);
e.rows=a.rows||5;e.cols=a.cols||20;e["class"]="cke_dialog_ui_input_textarea "+(a["class"]||"");"undefined"!=typeof a.inputStyle&&(e.style=a.inputStyle);a.dir&&(e.dir=a.dir);CKEDITOR.ui.dialog.labeledElement.call(this,b,a,d,function(){e["aria-labelledby"]=this._.labelId;this._.required&&(e["aria-required"]=this._.required);var a=['<div class="cke_dialog_ui_input_textarea" role="presentation"><textarea id="',c,'" '],b;for(b in e)a.push(b+'="'+CKEDITOR.tools.htmlEncode(e[b])+'" ');a.push(">",CKEDITOR.tools.htmlEncode(f._["default"]),
"</textarea></div>");return a.join("")})}},checkbox:function(b,a,d){if(!(3>arguments.length)){var f=h.call(this,a,{"default":!!a["default"]});a.validate&&(this.validate=a.validate);CKEDITOR.ui.dialog.uiElement.call(this,b,a,d,"span",null,null,function(){var c=CKEDITOR.tools.extend({},a,{id:a.id?a.id+"_checkbox":CKEDITOR.tools.getNextId()+"_checkbox"},true),e=[],d=CKEDITOR.tools.getNextId()+"_label",g={"class":"cke_dialog_ui_checkbox_input",type:"checkbox","aria-labelledby":d};p(c);if(a["default"])g.checked=
"checked";if(typeof c.inputStyle!="undefined")c.style=c.inputStyle;f.checkbox=new CKEDITOR.ui.dialog.uiElement(b,c,e,"input",null,g);e.push(' <label id="',d,'" for="',g.id,'"'+(a.labelStyle?' style="'+a.labelStyle+'"':"")+">",CKEDITOR.tools.htmlEncode(a.label),"</label>");return e.join("")})}},radio:function(b,a,d){if(!(3>arguments.length)){h.call(this,a);this._["default"]||(this._["default"]=this._.initValue=a.items[0][1]);a.validate&&(this.validate=a.valdiate);var f=[],c=this;a.role="radiogroup";
a.includeLabel=!0;CKEDITOR.ui.dialog.labeledElement.call(this,b,a,d,function(){for(var e=[],d=[],g=(a.id?a.id:CKEDITOR.tools.getNextId())+"_radio",i=0;i<a.items.length;i++){var j=a.items[i],h=j[2]!==void 0?j[2]:j[0],l=j[1]!==void 0?j[1]:j[0],m=CKEDITOR.tools.getNextId()+"_radio_input",n=m+"_label",m=CKEDITOR.tools.extend({},a,{id:m,title:null,type:null},true),h=CKEDITOR.tools.extend({},m,{title:h},true),o={type:"radio","class":"cke_dialog_ui_radio_input",name:g,value:l,"aria-labelledby":n},q=[];if(c._["default"]==
l)o.checked="checked";p(m);p(h);if(typeof m.inputStyle!="undefined")m.style=m.inputStyle;m.keyboardFocusable=true;f.push(new CKEDITOR.ui.dialog.uiElement(b,m,q,"input",null,o));q.push(" ");new CKEDITOR.ui.dialog.uiElement(b,h,q,"label",null,{id:n,"for":o.id},j[0]);e.push(q.join(""))}new CKEDITOR.ui.dialog.hbox(b,f,e,d);return d.join("")});this._.children=f}},button:function(b,a,d){if(arguments.length){"function"==typeof a&&(a=a(b.getParentEditor()));h.call(this,a,{disabled:a.disabled||!1});CKEDITOR.event.implementOn(this);
var f=this;b.on("load",function(){var a=this.getElement();(function(){a.on("click",function(a){f.click();a.data.preventDefault()});a.on("keydown",function(a){a.data.getKeystroke()in{32:1}&&(f.click(),a.data.preventDefault())})})();a.unselectable()},this);var c=CKEDITOR.tools.extend({},a);delete c.style;var e=CKEDITOR.tools.getNextId()+"_label";CKEDITOR.ui.dialog.uiElement.call(this,b,c,d,"a",null,{style:a.style,href:"javascript:void(0)",title:a.label,hidefocus:"true","class":a["class"],role:"button",
"aria-labelledby":e},'<span id="'+e+'" class="cke_dialog_ui_button">'+CKEDITOR.tools.htmlEncode(a.label)+"</span>")}},select:function(b,a,d){if(!(3>arguments.length)){var f=h.call(this,a);a.validate&&(this.validate=a.validate);f.inputId=CKEDITOR.tools.getNextId()+"_select";CKEDITOR.ui.dialog.labeledElement.call(this,b,a,d,function(){var c=CKEDITOR.tools.extend({},a,{id:a.id?a.id+"_select":CKEDITOR.tools.getNextId()+"_select"},true),e=[],d=[],g={id:f.inputId,"class":"cke_dialog_ui_input_select","aria-labelledby":this._.labelId};
e.push('<div class="cke_dialog_ui_input_',a.type,'" role="presentation"');a.width&&e.push('style="width:'+a.width+'" ');e.push(">");if(a.size!=void 0)g.size=a.size;if(a.multiple!=void 0)g.multiple=a.multiple;p(c);for(var i=0,j;i<a.items.length&&(j=a.items[i]);i++)d.push('<option value="',CKEDITOR.tools.htmlEncode(j[1]!==void 0?j[1]:j[0]).replace(/"/g,"&quot;"),'" /> ',CKEDITOR.tools.htmlEncode(j[0]));if(typeof c.inputStyle!="undefined")c.style=c.inputStyle;f.select=new CKEDITOR.ui.dialog.uiElement(b,
c,e,"select",null,g,d.join(""));e.push("</div>");return e.join("")})}},file:function(b,a,d){if(!(3>arguments.length)){void 0===a["default"]&&(a["default"]="");var f=CKEDITOR.tools.extend(h.call(this,a),{definition:a,buttons:[]});a.validate&&(this.validate=a.validate);b.on("load",function(){CKEDITOR.document.getById(f.frameId).getParent().addClass("cke_dialog_ui_input_file")});CKEDITOR.ui.dialog.labeledElement.call(this,b,a,d,function(){f.frameId=CKEDITOR.tools.getNextId()+"_fileInput";var b=['<iframe frameborder="0" allowtransparency="0" class="cke_dialog_ui_input_file" role="presentation" id="',
f.frameId,'" title="',a.label,'" src="javascript:void('];b.push(CKEDITOR.env.ie?"(function(){"+encodeURIComponent("document.open();("+CKEDITOR.tools.fixDomain+")();document.close();")+"})()":"0");b.push(')"></iframe>');return b.join("")})}},fileButton:function(b,a,d){if(!(3>arguments.length)){h.call(this,a);var f=this;a.validate&&(this.validate=a.validate);var c=CKEDITOR.tools.extend({},a),e=c.onClick;c.className=(c.className?c.className+" ":"")+"cke_dialog_ui_button";c.onClick=function(c){var d=
a["for"];if(!e||e.call(this,c)!==false){b.getContentElement(d[0],d[1]).submit();this.disable()}};b.on("load",function(){b.getContentElement(a["for"][0],a["for"][1])._.buttons.push(f)});CKEDITOR.ui.dialog.button.call(this,b,c,d)}},html:function(){var b=/^\s*<[\w:]+\s+([^>]*)?>/,a=/^(\s*<[\w:]+(?:\s+[^>]*)?)((?:.|\r|\n)+)$/,d=/\/$/;return function(f,c,e){if(!(3>arguments.length)){var k=[],g=c.html;"<"!=g.charAt(0)&&(g="<span>"+g+"</span>");var i=c.focus;if(i){var j=this.focus;this.focus=function(){("function"==
typeof i?i:j).call(this);this.fire("focus")};c.isFocusable&&(this.isFocusable=this.isFocusable);this.keyboardFocusable=!0}CKEDITOR.ui.dialog.uiElement.call(this,f,c,k,"span",null,null,"");k=k.join("").match(b);g=g.match(a)||["","",""];d.test(g[1])&&(g[1]=g[1].slice(0,-1),g[2]="/"+g[2]);e.push([g[1]," ",k[1]||"",g[2]].join(""))}}}(),fieldset:function(b,a,d,f,c){var e=c.label;this._={children:a};CKEDITOR.ui.dialog.uiElement.call(this,b,c,f,"fieldset",null,null,function(){var a=[];e&&a.push("<legend"+
(c.labelStyle?' style="'+c.labelStyle+'"':"")+">"+e+"</legend>");for(var b=0;b<d.length;b++)a.push(d[b]);return a.join("")})}},!0);CKEDITOR.ui.dialog.html.prototype=new CKEDITOR.ui.dialog.uiElement;CKEDITOR.ui.dialog.labeledElement.prototype=CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.uiElement,{setLabel:function(b){var a=CKEDITOR.document.getById(this._.labelId);1>a.getChildCount()?(new CKEDITOR.dom.text(b,CKEDITOR.document)).appendTo(a):a.getChild(0).$.nodeValue=b;return this},getLabel:function(){var b=
CKEDITOR.document.getById(this._.labelId);return!b||1>b.getChildCount()?"":b.getChild(0).getText()},eventProcessors:o},!0);CKEDITOR.ui.dialog.button.prototype=CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.uiElement,{click:function(){return!this._.disabled?this.fire("click",{dialog:this._.dialog}):!1},enable:function(){this._.disabled=!1;var b=this.getElement();b&&b.removeClass("cke_disabled")},disable:function(){this._.disabled=!0;this.getElement().addClass("cke_disabled")},isVisible:function(){return this.getElement().getFirst().isVisible()},
isEnabled:function(){return!this._.disabled},eventProcessors:CKEDITOR.tools.extend({},CKEDITOR.ui.dialog.uiElement.prototype.eventProcessors,{onClick:function(b,a){this.on("click",function(){a.apply(this,arguments)})}},!0),accessKeyUp:function(){this.click()},accessKeyDown:function(){this.focus()},keyboardFocusable:!0},!0);CKEDITOR.ui.dialog.textInput.prototype=CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.labeledElement,{getInputElement:function(){return CKEDITOR.document.getById(this._.inputId)},
focus:function(){var b=this.selectParentTab();setTimeout(function(){var a=b.getInputElement();a&&a.$.focus()},0)},select:function(){var b=this.selectParentTab();setTimeout(function(){var a=b.getInputElement();a&&(a.$.focus(),a.$.select())},0)},accessKeyUp:function(){this.select()},setValue:function(b){!b&&(b="");return CKEDITOR.ui.dialog.uiElement.prototype.setValue.apply(this,arguments)},keyboardFocusable:!0},n,!0);CKEDITOR.ui.dialog.textarea.prototype=new CKEDITOR.ui.dialog.textInput;CKEDITOR.ui.dialog.select.prototype=
CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.labeledElement,{getInputElement:function(){return this._.select.getElement()},add:function(b,a,d){var f=new CKEDITOR.dom.element("option",this.getDialog().getParentEditor().document),c=this.getInputElement().$;f.$.text=b;f.$.value=void 0===a||null===a?b:a;void 0===d||null===d?CKEDITOR.env.ie?c.add(f.$):c.add(f.$,null):c.add(f.$,d);return this},remove:function(b){this.getInputElement().$.remove(b);return this},clear:function(){for(var b=this.getInputElement().$;0<
b.length;)b.remove(0);return this},keyboardFocusable:!0},n,!0);CKEDITOR.ui.dialog.checkbox.prototype=CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.uiElement,{getInputElement:function(){return this._.checkbox.getElement()},setValue:function(b,a){this.getInputElement().$.checked=b;!a&&this.fire("change",{value:b})},getValue:function(){return this.getInputElement().$.checked},accessKeyUp:function(){this.setValue(!this.getValue())},eventProcessors:{onChange:function(b,a){if(!CKEDITOR.env.ie||8<CKEDITOR.env.version)return o.onChange.apply(this,
arguments);b.on("load",function(){var a=this._.checkbox.getElement();a.on("propertychange",function(b){b=b.data.$;"checked"==b.propertyName&&this.fire("change",{value:a.$.checked})},this)},this);this.on("change",a);return null}},keyboardFocusable:!0},n,!0);CKEDITOR.ui.dialog.radio.prototype=CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.uiElement,{setValue:function(b,a){for(var d=this._.children,f,c=0;c<d.length&&(f=d[c]);c++)f.getElement().$.checked=f.getValue()==b;!a&&this.fire("change",{value:b})},
getValue:function(){for(var b=this._.children,a=0;a<b.length;a++)if(b[a].getElement().$.checked)return b[a].getValue();return null},accessKeyUp:function(){var b=this._.children,a;for(a=0;a<b.length;a++)if(b[a].getElement().$.checked){b[a].getElement().focus();return}b[0].getElement().focus()},eventProcessors:{onChange:function(b,a){if(CKEDITOR.env.ie)b.on("load",function(){for(var a=this._.children,b=this,c=0;c<a.length;c++)a[c].getElement().on("propertychange",function(a){a=a.data.$;"checked"==a.propertyName&&
this.$.checked&&b.fire("change",{value:this.getAttribute("value")})})},this),this.on("change",a);else return o.onChange.apply(this,arguments);return null}}},n,!0);CKEDITOR.ui.dialog.file.prototype=CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.labeledElement,n,{getInputElement:function(){var b=CKEDITOR.document.getById(this._.frameId).getFrameDocument();return 0<b.$.forms.length?new CKEDITOR.dom.element(b.$.forms[0].elements[0]):this.getElement()},submit:function(){this.getInputElement().getParent().$.submit();
return this},getAction:function(){return this.getInputElement().getParent().$.action},registerEvents:function(b){var a=/^on([A-Z]\w+)/,d,f=function(a,b,c,d){a.on("formLoaded",function(){a.getInputElement().on(c,d,a)})},c;for(c in b)if(d=c.match(a))this.eventProcessors[c]?this.eventProcessors[c].call(this,this._.dialog,b[c]):f(this,this._.dialog,d[1].toLowerCase(),b[c]);return this},reset:function(){function b(){d.$.open();var b="";f.size&&(b=f.size-(CKEDITOR.env.ie?7:0));var h=a.frameId+"_input";
d.$.write(['<html dir="'+g+'" lang="'+i+'"><head><title></title></head><body style="margin: 0; overflow: hidden; background: transparent;">','<form enctype="multipart/form-data" method="POST" dir="'+g+'" lang="'+i+'" action="',CKEDITOR.tools.htmlEncode(f.action),'"><label id="',a.labelId,'" for="',h,'" style="display:none">',CKEDITOR.tools.htmlEncode(f.label),'</label><input style="width:100%" id="',h,'" aria-labelledby="',a.labelId,'" type="file" name="',CKEDITOR.tools.htmlEncode(f.id||"cke_upload"),
'" size="',CKEDITOR.tools.htmlEncode(0<b?b:""),'" /></form></body></html><script>',CKEDITOR.env.ie?"("+CKEDITOR.tools.fixDomain+")();":"","window.parent.CKEDITOR.tools.callFunction("+e+");","window.onbeforeunload = function() {window.parent.CKEDITOR.tools.callFunction("+k+")}","<\/script>"].join(""));d.$.close();for(b=0;b<c.length;b++)c[b].enable()}var a=this._,d=CKEDITOR.document.getById(a.frameId).getFrameDocument(),f=a.definition,c=a.buttons,e=this.formLoadedNumber,k=this.formUnloadNumber,g=a.dialog._.editor.lang.dir,
i=a.dialog._.editor.langCode;e||(e=this.formLoadedNumber=CKEDITOR.tools.addFunction(function(){this.fire("formLoaded")},this),k=this.formUnloadNumber=CKEDITOR.tools.addFunction(function(){this.getInputElement().clearCustomData()},this),this.getDialog()._.editor.on("destroy",function(){CKEDITOR.tools.removeFunction(e);CKEDITOR.tools.removeFunction(k)}));CKEDITOR.env.gecko?setTimeout(b,500):b()},getValue:function(){return this.getInputElement().$.value||""},setInitValue:function(){this._.initValue=
""},eventProcessors:{onChange:function(b,a){this._.domOnChangeRegistered||(this.on("formLoaded",function(){this.getInputElement().on("change",function(){this.fire("change",{value:this.getValue()})},this)},this),this._.domOnChangeRegistered=!0);this.on("change",a)}},keyboardFocusable:!0},!0);CKEDITOR.ui.dialog.fileButton.prototype=new CKEDITOR.ui.dialog.button;CKEDITOR.ui.dialog.fieldset.prototype=CKEDITOR.tools.clone(CKEDITOR.ui.dialog.hbox.prototype);CKEDITOR.dialog.addUIElement("text",r);CKEDITOR.dialog.addUIElement("password",
r);CKEDITOR.dialog.addUIElement("textarea",l);CKEDITOR.dialog.addUIElement("checkbox",l);CKEDITOR.dialog.addUIElement("radio",l);CKEDITOR.dialog.addUIElement("button",l);CKEDITOR.dialog.addUIElement("select",l);CKEDITOR.dialog.addUIElement("file",l);CKEDITOR.dialog.addUIElement("fileButton",l);CKEDITOR.dialog.addUIElement("html",l);CKEDITOR.dialog.addUIElement("fieldset",{build:function(b,a,d){for(var f=a.children,c,e=[],h=[],g=0;g<f.length&&(c=f[g]);g++){var i=[];e.push(i);h.push(CKEDITOR.dialog._.uiElementBuilders[c.type].build(b,
c,i))}return new CKEDITOR.ui.dialog[a.type](b,h,e,d,a)}})}});CKEDITOR.DIALOG_RESIZE_NONE=0;CKEDITOR.DIALOG_RESIZE_WIDTH=1;CKEDITOR.DIALOG_RESIZE_HEIGHT=2;CKEDITOR.DIALOG_RESIZE_BOTH=3;
(function(){function t(){for(var a=this._.tabIdList.length,b=CKEDITOR.tools.indexOf(this._.tabIdList,this._.currentTabId)+a,c=b-1;c>b-a;c--)if(this._.tabs[this._.tabIdList[c%a]][0].$.offsetHeight)return this._.tabIdList[c%a];return null}function u(){for(var a=this._.tabIdList.length,b=CKEDITOR.tools.indexOf(this._.tabIdList,this._.currentTabId),c=b+1;c<b+a;c++)if(this._.tabs[this._.tabIdList[c%a]][0].$.offsetHeight)return this._.tabIdList[c%a];return null}function G(a,b){for(var c=a.$.getElementsByTagName("input"),
e=0,d=c.length;e<d;e++){var g=new CKEDITOR.dom.element(c[e]);"text"==g.getAttribute("type").toLowerCase()&&(b?(g.setAttribute("value",g.getCustomData("fake_value")||""),g.removeCustomData("fake_value")):(g.setCustomData("fake_value",g.getAttribute("value")),g.setAttribute("value","")))}}function P(a,b){var c=this.getInputElement();c&&(a?c.removeAttribute("aria-invalid"):c.setAttribute("aria-invalid",!0));a||(this.select?this.select():this.focus());b&&alert(b);this.fire("validated",{valid:a,msg:b})}
function Q(){var a=this.getInputElement();a&&a.removeAttribute("aria-invalid")}function R(a){var a=CKEDITOR.dom.element.createFromHtml(CKEDITOR.addTemplate("dialog",S).output({id:CKEDITOR.tools.getNextNumber(),editorId:a.id,langDir:a.lang.dir,langCode:a.langCode,editorDialogClass:"cke_editor_"+a.name.replace(/\./g,"\\.")+"_dialog",closeTitle:a.lang.common.close,hidpi:CKEDITOR.env.hidpi?"cke_hidpi":""})),b=a.getChild([0,0,0,0,0]),c=b.getChild(0),e=b.getChild(1);if(CKEDITOR.env.ie&&!CKEDITOR.env.quirks){var d=
"javascript:void(function(){"+encodeURIComponent("document.open();("+CKEDITOR.tools.fixDomain+")();document.close();")+"}())";CKEDITOR.dom.element.createFromHtml('<iframe frameBorder="0" class="cke_iframe_shim" src="'+d+'" tabIndex="-1"></iframe>').appendTo(b.getParent())}c.unselectable();e.unselectable();return{element:a,parts:{dialog:a.getChild(0),title:c,close:e,tabs:b.getChild(2),contents:b.getChild([3,0,0,0]),footer:b.getChild([3,0,1,0])}}}function H(a,b,c){this.element=b;this.focusIndex=c;this.tabIndex=
0;this.isFocusable=function(){return!b.getAttribute("disabled")&&b.isVisible()};this.focus=function(){a._.currentFocusIndex=this.focusIndex;this.element.focus()};b.on("keydown",function(a){a.data.getKeystroke()in{32:1,13:1}&&this.fire("click")});b.on("focus",function(){this.fire("mouseover")});b.on("blur",function(){this.fire("mouseout")})}function T(a){function b(){a.layout()}var c=CKEDITOR.document.getWindow();c.on("resize",b);a.on("hide",function(){c.removeListener("resize",b)})}function I(a,b){this._=
{dialog:a};CKEDITOR.tools.extend(this,b)}function U(a){function b(b){var c=a.getSize(),i=CKEDITOR.document.getWindow().getViewPaneSize(),o=b.data.$.screenX,j=b.data.$.screenY,n=o-e.x,l=j-e.y;e={x:o,y:j};d.x+=n;d.y+=l;a.move(d.x+h[3]<f?-h[3]:d.x-h[1]>i.width-c.width-f?i.width-c.width+("rtl"==g.lang.dir?0:h[1]):d.x,d.y+h[0]<f?-h[0]:d.y-h[2]>i.height-c.height-f?i.height-c.height+h[2]:d.y,1);b.data.preventDefault()}function c(){CKEDITOR.document.removeListener("mousemove",b);CKEDITOR.document.removeListener("mouseup",
c);if(CKEDITOR.env.ie6Compat){var a=q.getChild(0).getFrameDocument();a.removeListener("mousemove",b);a.removeListener("mouseup",c)}}var e=null,d=null;a.getElement().getFirst();var g=a.getParentEditor(),f=g.config.dialog_magnetDistance,h=CKEDITOR.skin.margins||[0,0,0,0];"undefined"==typeof f&&(f=20);a.parts.title.on("mousedown",function(f){e={x:f.data.$.screenX,y:f.data.$.screenY};CKEDITOR.document.on("mousemove",b);CKEDITOR.document.on("mouseup",c);d=a.getPosition();if(CKEDITOR.env.ie6Compat){var h=
q.getChild(0).getFrameDocument();h.on("mousemove",b);h.on("mouseup",c)}f.data.preventDefault()},a)}function V(a){var b,c;function e(d){var e="rtl"==h.lang.dir,j=o.width,C=o.height,D=j+(d.data.$.screenX-b)*(e?-1:1)*(a._.moved?1:2),n=C+(d.data.$.screenY-c)*(a._.moved?1:2),x=a._.element.getFirst(),x=e&&x.getComputedStyle("right"),y=a.getPosition();y.y+n>i.height&&(n=i.height-y.y);if((e?x:y.x)+D>i.width)D=i.width-(e?x:y.x);if(f==CKEDITOR.DIALOG_RESIZE_WIDTH||f==CKEDITOR.DIALOG_RESIZE_BOTH)j=Math.max(g.minWidth||
0,D-m);if(f==CKEDITOR.DIALOG_RESIZE_HEIGHT||f==CKEDITOR.DIALOG_RESIZE_BOTH)C=Math.max(g.minHeight||0,n-k);a.resize(j,C);a._.moved||a.layout();d.data.preventDefault()}function d(){CKEDITOR.document.removeListener("mouseup",d);CKEDITOR.document.removeListener("mousemove",e);j&&(j.remove(),j=null);if(CKEDITOR.env.ie6Compat){var a=q.getChild(0).getFrameDocument();a.removeListener("mouseup",d);a.removeListener("mousemove",e)}}var g=a.definition,f=g.resizable;if(f!=CKEDITOR.DIALOG_RESIZE_NONE){var h=a.getParentEditor(),
m,k,i,o,j,n=CKEDITOR.tools.addFunction(function(f){o=a.getSize();var h=a.parts.contents;h.$.getElementsByTagName("iframe").length&&(j=CKEDITOR.dom.element.createFromHtml('<div class="cke_dialog_resize_cover" style="height: 100%; position: absolute; width: 100%;"></div>'),h.append(j));k=o.height-a.parts.contents.getSize("height",!(CKEDITOR.env.gecko||CKEDITOR.env.ie&&CKEDITOR.env.quirks));m=o.width-a.parts.contents.getSize("width",1);b=f.screenX;c=f.screenY;i=CKEDITOR.document.getWindow().getViewPaneSize();
CKEDITOR.document.on("mousemove",e);CKEDITOR.document.on("mouseup",d);CKEDITOR.env.ie6Compat&&(h=q.getChild(0).getFrameDocument(),h.on("mousemove",e),h.on("mouseup",d));f.preventDefault&&f.preventDefault()});a.on("load",function(){var b="";f==CKEDITOR.DIALOG_RESIZE_WIDTH?b=" cke_resizer_horizontal":f==CKEDITOR.DIALOG_RESIZE_HEIGHT&&(b=" cke_resizer_vertical");b=CKEDITOR.dom.element.createFromHtml('<div class="cke_resizer'+b+" cke_resizer_"+h.lang.dir+'" title="'+CKEDITOR.tools.htmlEncode(h.lang.common.resize)+
'" onmousedown="CKEDITOR.tools.callFunction('+n+', event )">'+("ltr"==h.lang.dir?"◢":"◣")+"</div>");a.parts.footer.append(b,1)});h.on("destroy",function(){CKEDITOR.tools.removeFunction(n)})}}function E(a){a.data.preventDefault(1)}function J(a){var b=CKEDITOR.document.getWindow(),c=a.config,e=c.dialog_backgroundCoverColor||"white",d=c.dialog_backgroundCoverOpacity,g=c.baseFloatZIndex,c=CKEDITOR.tools.genKey(e,d,g),f=w[c];f?f.show():(g=['<div tabIndex="-1" style="position: ',CKEDITOR.env.ie6Compat?
"absolute":"fixed","; z-index: ",g,"; top: 0px; left: 0px; ",!CKEDITOR.env.ie6Compat?"background-color: "+e:"",'" class="cke_dialog_background_cover">'],CKEDITOR.env.ie6Compat&&(e="<html><body style=\\'background-color:"+e+";\\'></body></html>",g.push('<iframe hidefocus="true" frameborder="0" id="cke_dialog_background_iframe" src="javascript:'),g.push("void((function(){"+encodeURIComponent("document.open();("+CKEDITOR.tools.fixDomain+")();document.write( '"+e+"' );document.close();")+"})())"),g.push('" style="position:absolute;left:0;top:0;width:100%;height: 100%;filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0)"></iframe>')),
g.push("</div>"),f=CKEDITOR.dom.element.createFromHtml(g.join("")),f.setOpacity(void 0!=d?d:0.5),f.on("keydown",E),f.on("keypress",E),f.on("keyup",E),f.appendTo(CKEDITOR.document.getBody()),w[c]=f);a.focusManager.add(f);q=f;var a=function(){var a=b.getViewPaneSize();f.setStyles({width:a.width+"px",height:a.height+"px"})},h=function(){var a=b.getScrollPosition(),c=CKEDITOR.dialog._.currentTop;f.setStyles({left:a.x+"px",top:a.y+"px"});if(c){do{a=c.getPosition();c.move(a.x,a.y)}while(c=c._.parentDialog)
}};F=a;b.on("resize",a);a();(!CKEDITOR.env.mac||!CKEDITOR.env.webkit)&&f.focus();if(CKEDITOR.env.ie6Compat){var m=function(){h();arguments.callee.prevScrollHandler.apply(this,arguments)};b.$.setTimeout(function(){m.prevScrollHandler=window.onscroll||function(){};window.onscroll=m},0);h()}}function K(a){q&&(a.focusManager.remove(q),a=CKEDITOR.document.getWindow(),q.hide(),a.removeListener("resize",F),CKEDITOR.env.ie6Compat&&a.$.setTimeout(function(){window.onscroll=window.onscroll&&window.onscroll.prevScrollHandler||
null},0),F=null)}var r=CKEDITOR.tools.cssLength,S='<div class="cke_reset_all {editorId} {editorDialogClass} {hidpi}" dir="{langDir}" lang="{langCode}" role="dialog" aria-labelledby="cke_dialog_title_{id}"><table class="cke_dialog '+CKEDITOR.env.cssClass+' cke_{langDir}" style="position:absolute" role="presentation"><tr><td role="presentation"><div class="cke_dialog_body" role="presentation"><div id="cke_dialog_title_{id}" class="cke_dialog_title" role="presentation"></div><a id="cke_dialog_close_button_{id}" class="cke_dialog_close_button" href="javascript:void(0)" title="{closeTitle}" role="button"><span class="cke_label">X</span></a><div id="cke_dialog_tabs_{id}" class="cke_dialog_tabs" role="tablist"></div><table class="cke_dialog_contents" role="presentation"><tr><td id="cke_dialog_contents_{id}" class="cke_dialog_contents_body" role="presentation"></td></tr><tr><td id="cke_dialog_footer_{id}" class="cke_dialog_footer" role="presentation"></td></tr></table></div></td></tr></table></div>';
CKEDITOR.dialog=function(a,b){function c(){var a=l._.focusList;a.sort(function(a,b){return a.tabIndex!=b.tabIndex?b.tabIndex-a.tabIndex:a.focusIndex-b.focusIndex});for(var b=a.length,c=0;c<b;c++)a[c].focusIndex=c}function e(a){var b=l._.focusList,a=a||0;if(!(1>b.length)){var c=l._.currentFocusIndex;try{b[c].getInputElement().$.blur()}catch(f){}for(var d=c=(c+a+b.length)%b.length;a&&!b[d].isFocusable()&&!(d=(d+a+b.length)%b.length,d==c););b[d].focus();"text"==b[d].type&&b[d].select()}}function d(b){if(l==
CKEDITOR.dialog._.currentTop){var c=b.data.getKeystroke(),d="rtl"==a.lang.dir;o=j=0;if(9==c||c==CKEDITOR.SHIFT+9)c=c==CKEDITOR.SHIFT+9,l._.tabBarMode?(c=c?t.call(l):u.call(l),l.selectPage(c),l._.tabs[c][0].focus()):e(c?-1:1),o=1;else if(c==CKEDITOR.ALT+121&&!l._.tabBarMode&&1<l.getPageCount())l._.tabBarMode=!0,l._.tabs[l._.currentTabId][0].focus(),o=1;else if((37==c||39==c)&&l._.tabBarMode)c=c==(d?39:37)?t.call(l):u.call(l),l.selectPage(c),l._.tabs[c][0].focus(),o=1;else if((13==c||32==c)&&l._.tabBarMode)this.selectPage(this._.currentTabId),
this._.tabBarMode=!1,this._.currentFocusIndex=-1,e(1),o=1;else if(13==c){c=b.data.getTarget();if(!c.is("a","button","select","textarea")&&(!c.is("input")||"button"!=c.$.type))(c=this.getButton("ok"))&&CKEDITOR.tools.setTimeout(c.click,0,c),o=1;j=1}else if(27==c)(c=this.getButton("cancel"))?CKEDITOR.tools.setTimeout(c.click,0,c):!1!==this.fire("cancel",{hide:!0}).hide&&this.hide(),j=1;else return;g(b)}}function g(a){o?a.data.preventDefault(1):j&&a.data.stopPropagation()}var f=CKEDITOR.dialog._.dialogDefinitions[b],
h=CKEDITOR.tools.clone(W),m=a.config.dialog_buttonsOrder||"OS",k=a.lang.dir,i={},o,j;("OS"==m&&CKEDITOR.env.mac||"rtl"==m&&"ltr"==k||"ltr"==m&&"rtl"==k)&&h.buttons.reverse();f=CKEDITOR.tools.extend(f(a),h);f=CKEDITOR.tools.clone(f);f=new L(this,f);h=R(a);this._={editor:a,element:h.element,name:b,contentSize:{width:0,height:0},size:{width:0,height:0},contents:{},buttons:{},accessKeyMap:{},tabs:{},tabIdList:[],currentTabId:null,currentTabIndex:null,pageCount:0,lastTab:null,tabBarMode:!1,focusList:[],
currentFocusIndex:0,hasFocus:!1};this.parts=h.parts;CKEDITOR.tools.setTimeout(function(){a.fire("ariaWidget",this.parts.contents)},0,this);h={position:CKEDITOR.env.ie6Compat?"absolute":"fixed",top:0,visibility:"hidden"};h["rtl"==k?"right":"left"]=0;this.parts.dialog.setStyles(h);CKEDITOR.event.call(this);this.definition=f=CKEDITOR.fire("dialogDefinition",{name:b,definition:f},a).definition;if(!("removeDialogTabs"in a._)&&a.config.removeDialogTabs){h=a.config.removeDialogTabs.split(";");for(k=0;k<
h.length;k++)if(m=h[k].split(":"),2==m.length){var n=m[0];i[n]||(i[n]=[]);i[n].push(m[1])}a._.removeDialogTabs=i}if(a._.removeDialogTabs&&(i=a._.removeDialogTabs[b]))for(k=0;k<i.length;k++)f.removeContents(i[k]);if(f.onLoad)this.on("load",f.onLoad);if(f.onShow)this.on("show",f.onShow);if(f.onHide)this.on("hide",f.onHide);if(f.onOk)this.on("ok",function(b){a.fire("saveSnapshot");setTimeout(function(){a.fire("saveSnapshot")},0);!1===f.onOk.call(this,b)&&(b.data.hide=!1)});if(f.onCancel)this.on("cancel",
function(a){!1===f.onCancel.call(this,a)&&(a.data.hide=!1)});var l=this,p=function(a){var b=l._.contents,c=!1,d;for(d in b)for(var f in b[d])if(c=a.call(this,b[d][f]))return};this.on("ok",function(a){p(function(b){if(b.validate){var c=b.validate(this),d="string"==typeof c||!1===c;d&&(a.data.hide=!1,a.stop());P.call(b,!d,"string"==typeof c?c:void 0);return d}})},this,null,0);this.on("cancel",function(b){p(function(c){if(c.isChanged())return!a.config.dialog_noConfirmCancel&&!confirm(a.lang.common.confirmCancel)&&
(b.data.hide=!1),!0})},this,null,0);this.parts.close.on("click",function(a){!1!==this.fire("cancel",{hide:!0}).hide&&this.hide();a.data.preventDefault()},this);this.changeFocus=e;var v=this._.element;a.focusManager.add(v,1);this.on("show",function(){v.on("keydown",d,this);if(CKEDITOR.env.gecko)v.on("keypress",g,this)});this.on("hide",function(){v.removeListener("keydown",d);CKEDITOR.env.gecko&&v.removeListener("keypress",g);p(function(a){Q.apply(a)})});this.on("iframeAdded",function(a){(new CKEDITOR.dom.document(a.data.iframe.$.contentWindow.document)).on("keydown",
d,this,null,0)});this.on("show",function(){c();if(a.config.dialog_startupFocusTab&&1<l._.pageCount)l._.tabBarMode=!0,l._.tabs[l._.currentTabId][0].focus();else if(!this._.hasFocus)if(this._.currentFocusIndex=-1,f.onFocus){var b=f.onFocus.call(this);b&&b.focus()}else e(1)},this,null,4294967295);if(CKEDITOR.env.ie6Compat)this.on("load",function(){var a=this.getElement(),b=a.getFirst();b.remove();b.appendTo(a)},this);U(this);V(this);(new CKEDITOR.dom.text(f.title,CKEDITOR.document)).appendTo(this.parts.title);
for(k=0;k<f.contents.length;k++)(i=f.contents[k])&&this.addPage(i);this.parts.tabs.on("click",function(a){var b=a.data.getTarget();b.hasClass("cke_dialog_tab")&&(b=b.$.id,this.selectPage(b.substring(4,b.lastIndexOf("_"))),this._.tabBarMode&&(this._.tabBarMode=!1,this._.currentFocusIndex=-1,e(1)),a.data.preventDefault())},this);k=[];i=CKEDITOR.dialog._.uiElementBuilders.hbox.build(this,{type:"hbox",className:"cke_dialog_footer_buttons",widths:[],children:f.buttons},k).getChild();this.parts.footer.setHtml(k.join(""));
for(k=0;k<i.length;k++)this._.buttons[i[k].id]=i[k]};CKEDITOR.dialog.prototype={destroy:function(){this.hide();this._.element.remove()},resize:function(){return function(a,b){if(!this._.contentSize||!(this._.contentSize.width==a&&this._.contentSize.height==b))CKEDITOR.dialog.fire("resize",{dialog:this,width:a,height:b},this._.editor),this.fire("resize",{width:a,height:b},this._.editor),this.parts.contents.setStyles({width:a+"px",height:b+"px"}),"rtl"==this._.editor.lang.dir&&this._.position&&(this._.position.x=
CKEDITOR.document.getWindow().getViewPaneSize().width-this._.contentSize.width-parseInt(this._.element.getFirst().getStyle("right"),10)),this._.contentSize={width:a,height:b}}}(),getSize:function(){var a=this._.element.getFirst();return{width:a.$.offsetWidth||0,height:a.$.offsetHeight||0}},move:function(a,b,c){var e=this._.element.getFirst(),d="rtl"==this._.editor.lang.dir,g="fixed"==e.getComputedStyle("position");CKEDITOR.env.ie&&e.setStyle("zoom","100%");if(!g||!this._.position||!(this._.position.x==
a&&this._.position.y==b))this._.position={x:a,y:b},g||(g=CKEDITOR.document.getWindow().getScrollPosition(),a+=g.x,b+=g.y),d&&(g=this.getSize(),a=CKEDITOR.document.getWindow().getViewPaneSize().width-g.width-a),b={top:(0<b?b:0)+"px"},b[d?"right":"left"]=(0<a?a:0)+"px",e.setStyles(b),c&&(this._.moved=1)},getPosition:function(){return CKEDITOR.tools.extend({},this._.position)},show:function(){var a=this._.element,b=this.definition;!a.getParent()||!a.getParent().equals(CKEDITOR.document.getBody())?a.appendTo(CKEDITOR.document.getBody()):
a.setStyle("display","block");this.resize(this._.contentSize&&this._.contentSize.width||b.width||b.minWidth,this._.contentSize&&this._.contentSize.height||b.height||b.minHeight);this.reset();this.selectPage(this.definition.contents[0].id);null===CKEDITOR.dialog._.currentZIndex&&(CKEDITOR.dialog._.currentZIndex=this._.editor.config.baseFloatZIndex);this._.element.getFirst().setStyle("z-index",CKEDITOR.dialog._.currentZIndex+=10);null===CKEDITOR.dialog._.currentTop?(CKEDITOR.dialog._.currentTop=this,
this._.parentDialog=null,J(this._.editor)):(this._.parentDialog=CKEDITOR.dialog._.currentTop,this._.parentDialog.getElement().getFirst().$.style.zIndex-=Math.floor(this._.editor.config.baseFloatZIndex/2),CKEDITOR.dialog._.currentTop=this);a.on("keydown",M);a.on("keyup",N);this._.hasFocus=!1;for(var c in b.contents)if(b.contents[c]){var a=b.contents[c],e=this._.tabs[a.id],d=a.requiredContent,g=0;if(e){for(var f in this._.contents[a.id]){var h=this._.contents[a.id][f];"hbox"==h.type||("vbox"==h.type||
!h.getInputElement())||(h.requiredContent&&!this._.editor.activeFilter.check(h.requiredContent)?h.disable():(h.enable(),g++))}!g||d&&!this._.editor.activeFilter.check(d)?e[0].addClass("cke_dialog_tab_disabled"):e[0].removeClass("cke_dialog_tab_disabled")}}CKEDITOR.tools.setTimeout(function(){this.layout();T(this);this.parts.dialog.setStyle("visibility","");this.fireOnce("load",{});CKEDITOR.ui.fire("ready",this);this.fire("show",{});this._.editor.fire("dialogShow",this);this._.parentDialog||this._.editor.focusManager.lock();
this.foreach(function(a){a.setInitValue&&a.setInitValue()})},100,this)},layout:function(){var a=this.parts.dialog,b=this.getSize(),c=CKEDITOR.document.getWindow().getViewPaneSize(),e=(c.width-b.width)/2,d=(c.height-b.height)/2;CKEDITOR.env.ie6Compat||(b.height+(0<d?d:0)>c.height||b.width+(0<e?e:0)>c.width?a.setStyle("position","absolute"):a.setStyle("position","fixed"));this.move(this._.moved?this._.position.x:e,this._.moved?this._.position.y:d)},foreach:function(a){for(var b in this._.contents)for(var c in this._.contents[b])a.call(this,
this._.contents[b][c]);return this},reset:function(){var a=function(a){a.reset&&a.reset(1)};return function(){this.foreach(a);return this}}(),setupContent:function(){var a=arguments;this.foreach(function(b){b.setup&&b.setup.apply(b,a)})},commitContent:function(){var a=arguments;this.foreach(function(b){CKEDITOR.env.ie&&this._.currentFocusIndex==b.focusIndex&&b.getInputElement().$.blur();b.commit&&b.commit.apply(b,a)})},hide:function(){if(this.parts.dialog.isVisible()){this.fire("hide",{});this._.editor.fire("dialogHide",
this);this.selectPage(this._.tabIdList[0]);var a=this._.element;a.setStyle("display","none");this.parts.dialog.setStyle("visibility","hidden");for(X(this);CKEDITOR.dialog._.currentTop!=this;)CKEDITOR.dialog._.currentTop.hide();if(this._.parentDialog){var b=this._.parentDialog.getElement().getFirst();b.setStyle("z-index",parseInt(b.$.style.zIndex,10)+Math.floor(this._.editor.config.baseFloatZIndex/2))}else K(this._.editor);if(CKEDITOR.dialog._.currentTop=this._.parentDialog)CKEDITOR.dialog._.currentZIndex-=
10;else{CKEDITOR.dialog._.currentZIndex=null;a.removeListener("keydown",M);a.removeListener("keyup",N);var c=this._.editor;c.focus();setTimeout(function(){c.focusManager.unlock();CKEDITOR.env.iOS&&c.window.focus()},0)}delete this._.parentDialog;this.foreach(function(a){a.resetInitValue&&a.resetInitValue()})}},addPage:function(a){if(!a.requiredContent||this._.editor.filter.check(a.requiredContent)){for(var b=[],c=a.label?' title="'+CKEDITOR.tools.htmlEncode(a.label)+'"':"",e=CKEDITOR.dialog._.uiElementBuilders.vbox.build(this,
{type:"vbox",className:"cke_dialog_page_contents",children:a.elements,expand:!!a.expand,padding:a.padding,style:a.style||"width: 100%;"},b),d=this._.contents[a.id]={},g=e.getChild(),f=0;e=g.shift();)!e.notAllowed&&("hbox"!=e.type&&"vbox"!=e.type)&&f++,d[e.id]=e,"function"==typeof e.getChild&&g.push.apply(g,e.getChild());f||(a.hidden=!0);b=CKEDITOR.dom.element.createFromHtml(b.join(""));b.setAttribute("role","tabpanel");e=CKEDITOR.env;d="cke_"+a.id+"_"+CKEDITOR.tools.getNextNumber();c=CKEDITOR.dom.element.createFromHtml(['<a class="cke_dialog_tab"',
0<this._.pageCount?" cke_last":"cke_first",c,a.hidden?' style="display:none"':"",' id="',d,'"',e.gecko&&!e.hc?"":' href="javascript:void(0)"',' tabIndex="-1" hidefocus="true" role="tab">',a.label,"</a>"].join(""));b.setAttribute("aria-labelledby",d);this._.tabs[a.id]=[c,b];this._.tabIdList.push(a.id);!a.hidden&&this._.pageCount++;this._.lastTab=c;this.updateStyle();b.setAttribute("name",a.id);b.appendTo(this.parts.contents);c.unselectable();this.parts.tabs.append(c);a.accessKey&&(O(this,this,"CTRL+"+
a.accessKey,Y,Z),this._.accessKeyMap["CTRL+"+a.accessKey]=a.id)}},selectPage:function(a){if(this._.currentTabId!=a&&!this._.tabs[a][0].hasClass("cke_dialog_tab_disabled")&&!1!==this.fire("selectPage",{page:a,currentPage:this._.currentTabId})){for(var b in this._.tabs){var c=this._.tabs[b][0],e=this._.tabs[b][1];b!=a&&(c.removeClass("cke_dialog_tab_selected"),e.hide());e.setAttribute("aria-hidden",b!=a)}var d=this._.tabs[a];d[0].addClass("cke_dialog_tab_selected");CKEDITOR.env.ie6Compat||CKEDITOR.env.ie7Compat?
(G(d[1]),d[1].show(),setTimeout(function(){G(d[1],1)},0)):d[1].show();this._.currentTabId=a;this._.currentTabIndex=CKEDITOR.tools.indexOf(this._.tabIdList,a)}},updateStyle:function(){this.parts.dialog[(1===this._.pageCount?"add":"remove")+"Class"]("cke_single_page")},hidePage:function(a){var b=this._.tabs[a]&&this._.tabs[a][0];b&&(1!=this._.pageCount&&b.isVisible())&&(a==this._.currentTabId&&this.selectPage(t.call(this)),b.hide(),this._.pageCount--,this.updateStyle())},showPage:function(a){if(a=this._.tabs[a]&&
this._.tabs[a][0])a.show(),this._.pageCount++,this.updateStyle()},getElement:function(){return this._.element},getName:function(){return this._.name},getContentElement:function(a,b){var c=this._.contents[a];return c&&c[b]},getValueOf:function(a,b){return this.getContentElement(a,b).getValue()},setValueOf:function(a,b,c){return this.getContentElement(a,b).setValue(c)},getButton:function(a){return this._.buttons[a]},click:function(a){return this._.buttons[a].click()},disableButton:function(a){return this._.buttons[a].disable()},
enableButton:function(a){return this._.buttons[a].enable()},getPageCount:function(){return this._.pageCount},getParentEditor:function(){return this._.editor},getSelectedElement:function(){return this.getParentEditor().getSelection().getSelectedElement()},addFocusable:function(a,b){if("undefined"==typeof b)b=this._.focusList.length,this._.focusList.push(new H(this,a,b));else{this._.focusList.splice(b,0,new H(this,a,b));for(var c=b+1;c<this._.focusList.length;c++)this._.focusList[c].focusIndex++}}};
CKEDITOR.tools.extend(CKEDITOR.dialog,{add:function(a,b){if(!this._.dialogDefinitions[a]||"function"==typeof b)this._.dialogDefinitions[a]=b},exists:function(a){return!!this._.dialogDefinitions[a]},getCurrent:function(){return CKEDITOR.dialog._.currentTop},isTabEnabled:function(a,b,c){a=a.config.removeDialogTabs;return!(a&&a.match(RegExp("(?:^|;)"+b+":"+c+"(?:$|;)","i")))},okButton:function(){var a=function(a,c){c=c||{};return CKEDITOR.tools.extend({id:"ok",type:"button",label:a.lang.common.ok,"class":"cke_dialog_ui_button_ok",
onClick:function(a){a=a.data.dialog;!1!==a.fire("ok",{hide:!0}).hide&&a.hide()}},c,!0)};a.type="button";a.override=function(b){return CKEDITOR.tools.extend(function(c){return a(c,b)},{type:"button"},!0)};return a}(),cancelButton:function(){var a=function(a,c){c=c||{};return CKEDITOR.tools.extend({id:"cancel",type:"button",label:a.lang.common.cancel,"class":"cke_dialog_ui_button_cancel",onClick:function(a){a=a.data.dialog;!1!==a.fire("cancel",{hide:!0}).hide&&a.hide()}},c,!0)};a.type="button";a.override=
function(b){return CKEDITOR.tools.extend(function(c){return a(c,b)},{type:"button"},!0)};return a}(),addUIElement:function(a,b){this._.uiElementBuilders[a]=b}});CKEDITOR.dialog._={uiElementBuilders:{},dialogDefinitions:{},currentTop:null,currentZIndex:null};CKEDITOR.event.implementOn(CKEDITOR.dialog);CKEDITOR.event.implementOn(CKEDITOR.dialog.prototype);var W={resizable:CKEDITOR.DIALOG_RESIZE_BOTH,minWidth:600,minHeight:400,buttons:[CKEDITOR.dialog.okButton,CKEDITOR.dialog.cancelButton]},z=function(a,
b,c){for(var e=0,d;d=a[e];e++)if(d.id==b||c&&d[c]&&(d=z(d[c],b,c)))return d;return null},A=function(a,b,c,e,d){if(c){for(var g=0,f;f=a[g];g++){if(f.id==c)return a.splice(g,0,b),b;if(e&&f[e]&&(f=A(f[e],b,c,e,!0)))return f}if(d)return null}a.push(b);return b},B=function(a,b,c){for(var e=0,d;d=a[e];e++){if(d.id==b)return a.splice(e,1);if(c&&d[c]&&(d=B(d[c],b,c)))return d}return null},L=function(a,b){this.dialog=a;for(var c=b.contents,e=0,d;d=c[e];e++)c[e]=d&&new I(a,d);CKEDITOR.tools.extend(this,b)};
L.prototype={getContents:function(a){return z(this.contents,a)},getButton:function(a){return z(this.buttons,a)},addContents:function(a,b){return A(this.contents,a,b)},addButton:function(a,b){return A(this.buttons,a,b)},removeContents:function(a){B(this.contents,a)},removeButton:function(a){B(this.buttons,a)}};I.prototype={get:function(a){return z(this.elements,a,"children")},add:function(a,b){return A(this.elements,a,b,"children")},remove:function(a){B(this.elements,a,"children")}};var F,w={},q,s=
{},M=function(a){var b=a.data.$.ctrlKey||a.data.$.metaKey,c=a.data.$.altKey,e=a.data.$.shiftKey,d=String.fromCharCode(a.data.$.keyCode);if((b=s[(b?"CTRL+":"")+(c?"ALT+":"")+(e?"SHIFT+":"")+d])&&b.length)b=b[b.length-1],b.keydown&&b.keydown.call(b.uiElement,b.dialog,b.key),a.data.preventDefault()},N=function(a){var b=a.data.$.ctrlKey||a.data.$.metaKey,c=a.data.$.altKey,e=a.data.$.shiftKey,d=String.fromCharCode(a.data.$.keyCode);if((b=s[(b?"CTRL+":"")+(c?"ALT+":"")+(e?"SHIFT+":"")+d])&&b.length)b=b[b.length-
1],b.keyup&&(b.keyup.call(b.uiElement,b.dialog,b.key),a.data.preventDefault())},O=function(a,b,c,e,d){(s[c]||(s[c]=[])).push({uiElement:a,dialog:b,key:c,keyup:d||a.accessKeyUp,keydown:e||a.accessKeyDown})},X=function(a){for(var b in s){for(var c=s[b],e=c.length-1;0<=e;e--)(c[e].dialog==a||c[e].uiElement==a)&&c.splice(e,1);0===c.length&&delete s[b]}},Z=function(a,b){a._.accessKeyMap[b]&&a.selectPage(a._.accessKeyMap[b])},Y=function(){};(function(){CKEDITOR.ui.dialog={uiElement:function(a,b,c,e,d,g,
f){if(!(4>arguments.length)){var h=(e.call?e(b):e)||"div",m=["<",h," "],k=(d&&d.call?d(b):d)||{},i=(g&&g.call?g(b):g)||{},o=(f&&f.call?f.call(this,a,b):f)||"",j=this.domId=i.id||CKEDITOR.tools.getNextId()+"_uiElement";this.id=b.id;b.requiredContent&&!a.getParentEditor().filter.check(b.requiredContent)&&(k.display="none",this.notAllowed=!0);i.id=j;var n={};b.type&&(n["cke_dialog_ui_"+b.type]=1);b.className&&(n[b.className]=1);b.disabled&&(n.cke_disabled=1);for(var l=i["class"]&&i["class"].split?i["class"].split(" "):
[],j=0;j<l.length;j++)l[j]&&(n[l[j]]=1);l=[];for(j in n)l.push(j);i["class"]=l.join(" ");b.title&&(i.title=b.title);n=(b.style||"").split(";");b.align&&(l=b.align,k["margin-left"]="left"==l?0:"auto",k["margin-right"]="right"==l?0:"auto");for(j in k)n.push(j+":"+k[j]);b.hidden&&n.push("display:none");for(j=n.length-1;0<=j;j--)""===n[j]&&n.splice(j,1);0<n.length&&(i.style=(i.style?i.style+"; ":"")+n.join("; "));for(j in i)m.push(j+'="'+CKEDITOR.tools.htmlEncode(i[j])+'" ');m.push(">",o,"</",h,">");
c.push(m.join(""));(this._||(this._={})).dialog=a;"boolean"==typeof b.isChanged&&(this.isChanged=function(){return b.isChanged});"function"==typeof b.isChanged&&(this.isChanged=b.isChanged);"function"==typeof b.setValue&&(this.setValue=CKEDITOR.tools.override(this.setValue,function(a){return function(c){a.call(this,b.setValue.call(this,c))}}));"function"==typeof b.getValue&&(this.getValue=CKEDITOR.tools.override(this.getValue,function(a){return function(){return b.getValue.call(this,a.call(this))}}));
CKEDITOR.event.implementOn(this);this.registerEvents(b);this.accessKeyUp&&(this.accessKeyDown&&b.accessKey)&&O(this,a,"CTRL+"+b.accessKey);var p=this;a.on("load",function(){var b=p.getInputElement();if(b){var c=p.type in{checkbox:1,ratio:1}&&CKEDITOR.env.ie&&CKEDITOR.env.version<8?"cke_dialog_ui_focused":"";b.on("focus",function(){a._.tabBarMode=false;a._.hasFocus=true;p.fire("focus");c&&this.addClass(c)});b.on("blur",function(){p.fire("blur");c&&this.removeClass(c)})}});CKEDITOR.tools.extend(this,
b);this.keyboardFocusable&&(this.tabIndex=b.tabIndex||0,this.focusIndex=a._.focusList.push(this)-1,this.on("focus",function(){a._.currentFocusIndex=p.focusIndex}))}},hbox:function(a,b,c,e,d){if(!(4>arguments.length)){this._||(this._={});var g=this._.children=b,f=d&&d.widths||null,h=d&&d.height||null,m,k={role:"presentation"};d&&d.align&&(k.align=d.align);CKEDITOR.ui.dialog.uiElement.call(this,a,d||{type:"hbox"},e,"table",{},k,function(){var a=['<tbody><tr class="cke_dialog_ui_hbox">'];for(m=0;m<c.length;m++){var b=
"cke_dialog_ui_hbox_child",e=[];0===m&&(b="cke_dialog_ui_hbox_first");m==c.length-1&&(b="cke_dialog_ui_hbox_last");a.push('<td class="',b,'" role="presentation" ');f?f[m]&&e.push("width:"+r(f[m])):e.push("width:"+Math.floor(100/c.length)+"%");h&&e.push("height:"+r(h));d&&void 0!=d.padding&&e.push("padding:"+r(d.padding));CKEDITOR.env.ie&&(CKEDITOR.env.quirks&&g[m].align)&&e.push("text-align:"+g[m].align);0<e.length&&a.push('style="'+e.join("; ")+'" ');a.push(">",c[m],"</td>")}a.push("</tr></tbody>");
return a.join("")})}},vbox:function(a,b,c,e,d){if(!(3>arguments.length)){this._||(this._={});var g=this._.children=b,f=d&&d.width||null,h=d&&d.heights||null;CKEDITOR.ui.dialog.uiElement.call(this,a,d||{type:"vbox"},e,"div",null,{role:"presentation"},function(){var b=['<table role="presentation" cellspacing="0" border="0" '];b.push('style="');d&&d.expand&&b.push("height:100%;");b.push("width:"+r(f||"100%"),";");CKEDITOR.env.webkit&&b.push("float:none;");b.push('"');b.push('align="',CKEDITOR.tools.htmlEncode(d&&
d.align||("ltr"==a.getParentEditor().lang.dir?"left":"right")),'" ');b.push("><tbody>");for(var e=0;e<c.length;e++){var i=[];b.push('<tr><td role="presentation" ');f&&i.push("width:"+r(f||"100%"));h?i.push("height:"+r(h[e])):d&&d.expand&&i.push("height:"+Math.floor(100/c.length)+"%");d&&void 0!=d.padding&&i.push("padding:"+r(d.padding));CKEDITOR.env.ie&&(CKEDITOR.env.quirks&&g[e].align)&&i.push("text-align:"+g[e].align);0<i.length&&b.push('style="',i.join("; "),'" ');b.push(' class="cke_dialog_ui_vbox_child">',
c[e],"</td></tr>")}b.push("</tbody></table>");return b.join("")})}}}})();CKEDITOR.ui.dialog.uiElement.prototype={getElement:function(){return CKEDITOR.document.getById(this.domId)},getInputElement:function(){return this.getElement()},getDialog:function(){return this._.dialog},setValue:function(a,b){this.getInputElement().setValue(a);!b&&this.fire("change",{value:a});return this},getValue:function(){return this.getInputElement().getValue()},isChanged:function(){return!1},selectParentTab:function(){for(var a=
this.getInputElement();(a=a.getParent())&&-1==a.$.className.search("cke_dialog_page_contents"););if(!a)return this;a=a.getAttribute("name");this._.dialog._.currentTabId!=a&&this._.dialog.selectPage(a);return this},focus:function(){this.selectParentTab().getInputElement().focus();return this},registerEvents:function(a){var b=/^on([A-Z]\w+)/,c,e=function(a,b,c,d){b.on("load",function(){a.getInputElement().on(c,d,a)})},d;for(d in a)if(c=d.match(b))this.eventProcessors[d]?this.eventProcessors[d].call(this,
this._.dialog,a[d]):e(this,this._.dialog,c[1].toLowerCase(),a[d]);return this},eventProcessors:{onLoad:function(a,b){a.on("load",b,this)},onShow:function(a,b){a.on("show",b,this)},onHide:function(a,b){a.on("hide",b,this)}},accessKeyDown:function(){this.focus()},accessKeyUp:function(){},disable:function(){var a=this.getElement();this.getInputElement().setAttribute("disabled","true");a.addClass("cke_disabled")},enable:function(){var a=this.getElement();this.getInputElement().removeAttribute("disabled");
a.removeClass("cke_disabled")},isEnabled:function(){return!this.getElement().hasClass("cke_disabled")},isVisible:function(){return this.getInputElement().isVisible()},isFocusable:function(){return!this.isEnabled()||!this.isVisible()?!1:!0}};CKEDITOR.ui.dialog.hbox.prototype=CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.uiElement,{getChild:function(a){if(1>arguments.length)return this._.children.concat();a.splice||(a=[a]);return 2>a.length?this._.children[a[0]]:this._.children[a[0]]&&this._.children[a[0]].getChild?
this._.children[a[0]].getChild(a.slice(1,a.length)):null}},!0);CKEDITOR.ui.dialog.vbox.prototype=new CKEDITOR.ui.dialog.hbox;(function(){var a={build:function(a,c,e){for(var d=c.children,g,f=[],h=[],m=0;m<d.length&&(g=d[m]);m++){var k=[];f.push(k);h.push(CKEDITOR.dialog._.uiElementBuilders[g.type].build(a,g,k))}return new CKEDITOR.ui.dialog[c.type](a,h,f,e,c)}};CKEDITOR.dialog.addUIElement("hbox",a);CKEDITOR.dialog.addUIElement("vbox",a)})();CKEDITOR.dialogCommand=function(a,b){this.dialogName=a;
CKEDITOR.tools.extend(this,b,!0)};CKEDITOR.dialogCommand.prototype={exec:function(a){a.openDialog(this.dialogName)},canUndo:!1,editorFocus:1};(function(){var a=/^([a]|[^a])+$/,b=/^\d*$/,c=/^\d*(?:\.\d+)?$/,e=/^(((\d*(\.\d+))|(\d*))(px|\%)?)?$/,d=/^(((\d*(\.\d+))|(\d*))(px|em|ex|in|cm|mm|pt|pc|\%)?)?$/i,g=/^(\s*[\w-]+\s*:\s*[^:;]+(?:;|$))*$/;CKEDITOR.VALIDATE_OR=1;CKEDITOR.VALIDATE_AND=2;CKEDITOR.dialog.validate={functions:function(){var a=arguments;return function(){var b=this&&this.getValue?this.getValue():
a[0],c=void 0,d=CKEDITOR.VALIDATE_AND,e=[],g;for(g=0;g<a.length;g++)if("function"==typeof a[g])e.push(a[g]);else break;g<a.length&&"string"==typeof a[g]&&(c=a[g],g++);g<a.length&&"number"==typeof a[g]&&(d=a[g]);var j=d==CKEDITOR.VALIDATE_AND?!0:!1;for(g=0;g<e.length;g++)j=d==CKEDITOR.VALIDATE_AND?j&&e[g](b):j||e[g](b);return!j?c:!0}},regex:function(a,b){return function(c){c=this&&this.getValue?this.getValue():c;return!a.test(c)?b:!0}},notEmpty:function(b){return this.regex(a,b)},integer:function(a){return this.regex(b,
a)},number:function(a){return this.regex(c,a)},cssLength:function(a){return this.functions(function(a){return d.test(CKEDITOR.tools.trim(a))},a)},htmlLength:function(a){return this.functions(function(a){return e.test(CKEDITOR.tools.trim(a))},a)},inlineStyle:function(a){return this.functions(function(a){return g.test(CKEDITOR.tools.trim(a))},a)},equals:function(a,b){return this.functions(function(b){return b==a},b)},notEqual:function(a,b){return this.functions(function(b){return b!=a},b)}};CKEDITOR.on("instanceDestroyed",
function(a){if(CKEDITOR.tools.isEmpty(CKEDITOR.instances)){for(var b;b=CKEDITOR.dialog._.currentTop;)b.hide();for(var c in w)w[c].remove();w={}}var a=a.editor._.storedDialogs,d;for(d in a)a[d].destroy()})})();CKEDITOR.tools.extend(CKEDITOR.editor.prototype,{openDialog:function(a,b){var c=null,e=CKEDITOR.dialog._.dialogDefinitions[a];null===CKEDITOR.dialog._.currentTop&&J(this);if("function"==typeof e)c=this._.storedDialogs||(this._.storedDialogs={}),c=c[a]||(c[a]=new CKEDITOR.dialog(this,a)),b&&b.call(c,
c),c.show();else{if("failed"==e)throw K(this),Error('[CKEDITOR.dialog.openDialog] Dialog "'+a+'" failed when loading definition.');"string"==typeof e&&CKEDITOR.scriptLoader.load(CKEDITOR.getUrl(e),function(){"function"!=typeof CKEDITOR.dialog._.dialogDefinitions[a]&&(CKEDITOR.dialog._.dialogDefinitions[a]="failed");this.openDialog(a,b)},this,0,1)}CKEDITOR.skin.loadPart("dialog");return c}})})();
CKEDITOR.plugins.add("dialog",{requires:"dialogui",init:function(t){t.on("doubleclick",function(u){u.data.dialog&&t.openDialog(u.data.dialog)},null,null,999)}});(function(){function v(b){function a(){var e=b.editable();e.on(p,function(b){(!CKEDITOR.env.ie||!n)&&u(b)});CKEDITOR.env.ie&&e.on("paste",function(e){q||(g(),e.data.preventDefault(),u(e),h("paste")||b.openDialog("paste"))});CKEDITOR.env.ie&&(e.on("contextmenu",i,null,null,0),e.on("beforepaste",function(b){b.data&&(!b.data.$.ctrlKey&&!b.data.$.shiftKey)&&i()},null,null,0));e.on("beforecut",function(){!n&&j(b)});var a;e.attachListener(CKEDITOR.env.ie?e:b.document.getDocumentElement(),"mouseup",function(){a=
setTimeout(function(){r()},0)});b.on("destroy",function(){clearTimeout(a)});e.on("keyup",r)}function c(e){return{type:e,canUndo:"cut"==e,startDisabled:!0,exec:function(){"cut"==this.type&&j();var e;var a=this.type;if(CKEDITOR.env.ie)e=h(a);else try{e=b.document.$.execCommand(a,!1,null)}catch(d){e=!1}e||alert(b.lang.clipboard[this.type+"Error"]);return e}}}function d(){return{canUndo:!1,async:!0,exec:function(b,a){var d=function(a,d){a&&f(a.type,a.dataValue,!!d);b.fire("afterCommandExec",{name:"paste",
command:c,returnValue:!!a})},c=this;"string"==typeof a?d({type:"auto",dataValue:a},1):b.getClipboardData(d)}}}function g(){q=1;setTimeout(function(){q=0},100)}function i(){n=1;setTimeout(function(){n=0},10)}function h(e){var a=b.document,d=a.getBody(),c=!1,j=function(){c=!0};d.on(e,j);(7<CKEDITOR.env.version?a.$:a.$.selection.createRange()).execCommand(e);d.removeListener(e,j);return c}function f(e,a,d){e={type:e};if(d&&!1===b.fire("beforePaste",e)||!a)return!1;e.dataValue=a;return b.fire("paste",
e)}function j(){if(CKEDITOR.env.ie&&!CKEDITOR.env.quirks){var e=b.getSelection(),a,d,c;if(e.getType()==CKEDITOR.SELECTION_ELEMENT&&(a=e.getSelectedElement()))d=e.getRanges()[0],c=b.document.createText(""),c.insertBefore(a),d.setStartBefore(c),d.setEndAfter(a),e.selectRanges([d]),setTimeout(function(){a.getParent()&&(c.remove(),e.selectElement(a))},0)}}function l(a,d){var c=b.document,j=b.editable(),l=function(b){b.cancel()},g;if(!c.getById("cke_pastebin")){var i=b.getSelection(),s=i.createBookmarks();
CKEDITOR.env.ie&&i.root.fire("selectionchange");var k=new CKEDITOR.dom.element((CKEDITOR.env.webkit||j.is("body"))&&!CKEDITOR.env.ie?"body":"div",c);k.setAttributes({id:"cke_pastebin","data-cke-temp":"1"});var f=0,c=c.getWindow();CKEDITOR.env.webkit?(j.append(k),k.addClass("cke_editable"),j.is("body")||(f="static"!=j.getComputedStyle("position")?j:CKEDITOR.dom.element.get(j.$.offsetParent),f=f.getDocumentPosition().y)):j.getAscendant(CKEDITOR.env.ie?"body":"html",1).append(k);k.setStyles({position:"absolute",
top:c.getScrollPosition().y-f+10+"px",width:"1px",height:Math.max(1,c.getViewPaneSize().height-20)+"px",overflow:"hidden",margin:0,padding:0});CKEDITOR.env.safari&&k.setStyles(CKEDITOR.tools.cssVendorPrefix("user-select","text"));(f=k.getParent().isReadOnly())?(k.setOpacity(0),k.setAttribute("contenteditable",!0)):k.setStyle("ltr"==b.config.contentsLangDirection?"left":"right","-1000px");b.on("selectionChange",l,null,null,0);if(CKEDITOR.env.webkit||CKEDITOR.env.gecko)g=j.once("blur",l,null,null,-100);
f&&k.focus();f=new CKEDITOR.dom.range(k);f.selectNodeContents(k);var h=f.select();CKEDITOR.env.ie&&(g=j.once("blur",function(){b.lockSelection(h)}));var m=CKEDITOR.document.getWindow().getScrollPosition().y;setTimeout(function(){if(CKEDITOR.env.webkit)CKEDITOR.document.getBody().$.scrollTop=m;g&&g.removeListener();CKEDITOR.env.ie&&j.focus();i.selectBookmarks(s);k.remove();var a;if(CKEDITOR.env.webkit&&(a=k.getFirst())&&a.is&&a.hasClass("Apple-style-span"))k=a;b.removeListener("selectionChange",l);
d(k.getHtml())},0)}}function s(){if(CKEDITOR.env.ie){b.focus();g();var a=b.focusManager;a.lock();if(b.editable().fire(p)&&!h("paste"))return a.unlock(),!1;a.unlock()}else try{if(b.editable().fire(p)&&!b.document.$.execCommand("Paste",!1,null))throw 0;}catch(d){return!1}return!0}function o(a){if("wysiwyg"==b.mode)switch(a.data.keyCode){case CKEDITOR.CTRL+86:case CKEDITOR.SHIFT+45:a=b.editable();g();!CKEDITOR.env.ie&&a.fire("beforepaste");break;case CKEDITOR.CTRL+88:case CKEDITOR.SHIFT+46:b.fire("saveSnapshot"),
setTimeout(function(){b.fire("saveSnapshot")},50)}}function u(a){var d={type:"auto"},c=b.fire("beforePaste",d);l(a,function(b){b=b.replace(/<span[^>]+data-cke-bookmark[^<]*?<\/span>/ig,"");c&&f(d.type,b,0,1)})}function r(){if("wysiwyg"==b.mode){var a=m("paste");b.getCommand("cut").setState(m("cut"));b.getCommand("copy").setState(m("copy"));b.getCommand("paste").setState(a);b.fire("pasteState",a)}}function m(a){if(t&&a in{paste:1,cut:1})return CKEDITOR.TRISTATE_DISABLED;if("paste"==a)return CKEDITOR.TRISTATE_OFF;
var a=b.getSelection(),d=a.getRanges();return a.getType()==CKEDITOR.SELECTION_NONE||1==d.length&&d[0].collapsed?CKEDITOR.TRISTATE_DISABLED:CKEDITOR.TRISTATE_OFF}var n=0,q=0,t=0,p=CKEDITOR.env.ie?"beforepaste":"paste";(function(){b.on("key",o);b.on("contentDom",a);b.on("selectionChange",function(b){t=b.data.selection.getRanges()[0].checkReadOnly();r()});b.contextMenu&&b.contextMenu.addListener(function(b,a){t=a.getRanges()[0].checkReadOnly();return{cut:m("cut"),copy:m("copy"),paste:m("paste")}})})();
(function(){function a(d,c,j,e,l){var g=b.lang.clipboard[c];b.addCommand(c,j);b.ui.addButton&&b.ui.addButton(d,{label:g,command:c,toolbar:"clipboard,"+e});b.addMenuItems&&b.addMenuItem(c,{label:g,command:c,group:"clipboard",order:l})}a("Cut","cut",c("cut"),10,1);a("Copy","copy",c("copy"),20,4);a("Paste","paste",d(),30,8)})();b.getClipboardData=function(a,d){function c(a){a.removeListener();a.cancel();d(a.data)}function j(a){a.removeListener();a.cancel();i=!0;d({type:f,dataValue:a.data})}function l(){this.customTitle=
a&&a.title}var g=!1,f="auto",i=!1;d||(d=a,a=null);b.on("paste",c,null,null,0);b.on("beforePaste",function(a){a.removeListener();g=true;f=a.data.type},null,null,1E3);!1===s()&&(b.removeListener("paste",c),g&&b.fire("pasteDialog",l)?(b.on("pasteDialogCommit",j),b.on("dialogHide",function(a){a.removeListener();a.data.removeListener("pasteDialogCommit",j);setTimeout(function(){i||d(null)},10)})):d(null))}}function w(b){if(CKEDITOR.env.webkit){if(!b.match(/^[^<]*$/g)&&!b.match(/^(<div><br( ?\/)?><\/div>|<div>[^<]*<\/div>)*$/gi))return"html"}else if(CKEDITOR.env.ie){if(!b.match(/^([^<]|<br( ?\/)?>)*$/gi)&&
!b.match(/^(<p>([^<]|<br( ?\/)?>)*<\/p>|(\r\n))*$/gi))return"html"}else if(CKEDITOR.env.gecko){if(!b.match(/^([^<]|<br( ?\/)?>)*$/gi))return"html"}else return"html";return"htmlifiedtext"}function x(b,a){function c(a){return CKEDITOR.tools.repeat("</p><p>",~~(a/2))+(1==a%2?"<br>":"")}a=a.replace(/\s+/g," ").replace(/> +</g,"><").replace(/<br ?\/>/gi,"<br>");a=a.replace(/<\/?[A-Z]+>/g,function(a){return a.toLowerCase()});if(a.match(/^[^<]$/))return a;CKEDITOR.env.webkit&&-1<a.indexOf("<div>")&&(a=a.replace(/^(<div>(<br>|)<\/div>)(?!$|(<div>(<br>|)<\/div>))/g,
"<br>").replace(/^(<div>(<br>|)<\/div>){2}(?!$)/g,"<div></div>"),a.match(/<div>(<br>|)<\/div>/)&&(a="<p>"+a.replace(/(<div>(<br>|)<\/div>)+/g,function(a){return c(a.split("</div><div>").length+1)})+"</p>"),a=a.replace(/<\/div><div>/g,"<br>"),a=a.replace(/<\/?div>/g,""));CKEDITOR.env.gecko&&b.enterMode!=CKEDITOR.ENTER_BR&&(CKEDITOR.env.gecko&&(a=a.replace(/^<br><br>$/,"<br>")),-1<a.indexOf("<br><br>")&&(a="<p>"+a.replace(/(<br>){2,}/g,function(a){return c(a.length/4)})+"</p>"));return o(b,a)}function y(){var b=
new CKEDITOR.htmlParser.filter,a={blockquote:1,dl:1,fieldset:1,h1:1,h2:1,h3:1,h4:1,h5:1,h6:1,ol:1,p:1,table:1,ul:1},c=CKEDITOR.tools.extend({br:0},CKEDITOR.dtd.$inline),d={p:1,br:1,"cke:br":1},g=CKEDITOR.dtd,i=CKEDITOR.tools.extend({area:1,basefont:1,embed:1,iframe:1,map:1,object:1,param:1},CKEDITOR.dtd.$nonBodyContent,CKEDITOR.dtd.$cdata),h=function(a){delete a.name;a.add(new CKEDITOR.htmlParser.text(" "))},f=function(a){for(var b=a,c;(b=b.next)&&b.name&&b.name.match(/^h\d$/);){c=new CKEDITOR.htmlParser.element("cke:br");
c.isEmpty=!0;for(a.add(c);c=b.children.shift();)a.add(c)}};b.addRules({elements:{h1:f,h2:f,h3:f,h4:f,h5:f,h6:f,img:function(a){var a=CKEDITOR.tools.trim(a.attributes.alt||""),b=" ";a&&!a.match(/(^http|\.(jpe?g|gif|png))/i)&&(b=" ["+a+"] ");return new CKEDITOR.htmlParser.text(b)},td:h,th:h,$:function(b){var f=b.name,h;if(i[f])return!1;b.attributes={};if("br"==f)return b;if(a[f])b.name="p";else if(c[f])delete b.name;else if(g[f]){h=new CKEDITOR.htmlParser.element("cke:br");h.isEmpty=!0;if(CKEDITOR.dtd.$empty[f])return h;
b.add(h,0);h=h.clone();h.isEmpty=!0;b.add(h);delete b.name}d[b.name]||delete b.name;return b}}},{applyToAll:!0});return b}function z(b,a,c){var a=new CKEDITOR.htmlParser.fragment.fromHtml(a),d=new CKEDITOR.htmlParser.basicWriter;a.writeHtml(d,c);var a=d.getHtml(),a=a.replace(/\s*(<\/?[a-z:]+ ?\/?>)\s*/g,"$1").replace(/(<cke:br \/>){2,}/g,"<cke:br />").replace(/(<cke:br \/>)(<\/?p>|<br \/>)/g,"$2").replace(/(<\/?p>|<br \/>)(<cke:br \/>)/g,"$1").replace(/<(cke:)?br( \/)?>/g,"<br>").replace(/<p><\/p>/g,
""),g=0,a=a.replace(/<\/?p>/g,function(a){if("<p>"==a){if(1<++g)return"</p><p>"}else if(0<--g)return"</p><p>";return a}).replace(/<p><\/p>/g,"");return o(b,a)}function o(b,a){b.enterMode==CKEDITOR.ENTER_BR?a=a.replace(/(<\/p><p>)+/g,function(a){return CKEDITOR.tools.repeat("<br>",2*(a.length/7))}).replace(/<\/?p>/g,""):b.enterMode==CKEDITOR.ENTER_DIV&&(a=a.replace(/<(\/)?p>/g,"<$1div>"));return a}CKEDITOR.plugins.add("clipboard",{requires:"dialog",init:function(b){var a;v(b);CKEDITOR.dialog.add("paste",
CKEDITOR.getUrl(this.path+"dialogs/paste.js"));b.on("paste",function(a){var b=a.data.dataValue,g=CKEDITOR.dtd.$block;-1<b.indexOf("Apple-")&&(b=b.replace(/<span class="Apple-converted-space">&nbsp;<\/span>/gi," "),"html"!=a.data.type&&(b=b.replace(/<span class="Apple-tab-span"[^>]*>([^<]*)<\/span>/gi,function(a,b){return b.replace(/\t/g,"&nbsp;&nbsp; &nbsp;")})),-1<b.indexOf('<br class="Apple-interchange-newline">')&&(a.data.startsWithEOL=1,a.data.preSniffing="html",b=b.replace(/<br class="Apple-interchange-newline">/,
"")),b=b.replace(/(<[^>]+) class="Apple-[^"]*"/gi,"$1"));if(b.match(/^<[^<]+cke_(editable|contents)/i)){var i,h,f=new CKEDITOR.dom.element("div");for(f.setHtml(b);1==f.getChildCount()&&(i=f.getFirst())&&i.type==CKEDITOR.NODE_ELEMENT&&(i.hasClass("cke_editable")||i.hasClass("cke_contents"));)f=h=i;h&&(b=h.getHtml().replace(/<br>$/i,""))}CKEDITOR.env.ie?b=b.replace(/^&nbsp;(?: |\r\n)?<(\w+)/g,function(b,d){if(d.toLowerCase()in g){a.data.preSniffing="html";return"<"+d}return b}):CKEDITOR.env.webkit?
b=b.replace(/<\/(\w+)><div><br><\/div>$/,function(b,d){if(d in g){a.data.endsWithEOL=1;return"</"+d+">"}return b}):CKEDITOR.env.gecko&&(b=b.replace(/(\s)<br>$/,"$1"));a.data.dataValue=b},null,null,3);b.on("paste",function(c){var c=c.data,d=c.type,g=c.dataValue,i,h=b.config.clipboard_defaultContentType||"html";i="html"==d||"html"==c.preSniffing?"html":w(g);"htmlifiedtext"==i?g=x(b.config,g):"text"==d&&"html"==i&&(g=z(b.config,g,a||(a=y(b))));c.startsWithEOL&&(g='<br data-cke-eol="1">'+g);c.endsWithEOL&&
(g+='<br data-cke-eol="1">');"auto"==d&&(d="html"==i||"html"==h?"html":"text");c.type=d;c.dataValue=g;delete c.preSniffing;delete c.startsWithEOL;delete c.endsWithEOL},null,null,6);b.on("paste",function(a){a=a.data;b.insertHtml(a.dataValue,a.type);setTimeout(function(){b.fire("afterPaste")},0)},null,null,1E3);b.on("pasteDialog",function(a){setTimeout(function(){b.openDialog("paste",a.data)},0)})}})})();(function(){CKEDITOR.plugins.add("panel",{beforeInit:function(a){a.ui.addHandler(CKEDITOR.UI_PANEL,CKEDITOR.ui.panel.handler)}});CKEDITOR.UI_PANEL="panel";CKEDITOR.ui.panel=function(a,b){b&&CKEDITOR.tools.extend(this,b);CKEDITOR.tools.extend(this,{className:"",css:[]});this.id=CKEDITOR.tools.getNextId();this.document=a;this.isFramed=this.forceIFrame||this.css.length;this._={blocks:{}}};CKEDITOR.ui.panel.handler={create:function(a){return new CKEDITOR.ui.panel(a)}};var f=CKEDITOR.addTemplate("panel",
'<div lang="{langCode}" id="{id}" dir={dir} class="cke cke_reset_all {editorId} cke_panel cke_panel {cls} cke_{dir}" style="z-index:{z-index}" role="presentation">{frame}</div>'),g=CKEDITOR.addTemplate("panel-frame",'<iframe id="{id}" class="cke_panel_frame" role="presentation" frameborder="0" src="{src}"></iframe>'),h=CKEDITOR.addTemplate("panel-frame-inner",'<!DOCTYPE html><html class="cke_panel_container {env}" dir="{dir}" lang="{langCode}"><head>{css}</head><body class="cke_{dir}" style="margin:0;padding:0" onload="{onload}"></body></html>');
CKEDITOR.ui.panel.prototype={render:function(a,b){this.getHolderElement=function(){var a=this._.holder;if(!a){if(this.isFramed){var a=this.document.getById(this.id+"_frame"),b=a.getParent(),a=a.getFrameDocument();CKEDITOR.env.iOS&&b.setStyles({overflow:"scroll","-webkit-overflow-scrolling":"touch"});b=CKEDITOR.tools.addFunction(CKEDITOR.tools.bind(function(){this.isLoaded=!0;if(this.onLoad)this.onLoad()},this));a.write(h.output(CKEDITOR.tools.extend({css:CKEDITOR.tools.buildStyleHtml(this.css),onload:"window.parent.CKEDITOR.tools.callFunction("+
b+");"},d)));a.getWindow().$.CKEDITOR=CKEDITOR;a.on("keydown",function(a){var b=a.data.getKeystroke(),c=this.document.getById(this.id).getAttribute("dir");this._.onKeyDown&&!1===this._.onKeyDown(b)?a.data.preventDefault():(27==b||b==("rtl"==c?39:37))&&this.onEscape&&!1===this.onEscape(b)&&a.data.preventDefault()},this);a=a.getBody();a.unselectable();CKEDITOR.env.air&&CKEDITOR.tools.callFunction(b)}else a=this.document.getById(this.id);this._.holder=a}return a};var d={editorId:a.id,id:this.id,langCode:a.langCode,
dir:a.lang.dir,cls:this.className,frame:"",env:CKEDITOR.env.cssClass,"z-index":a.config.baseFloatZIndex+1};if(this.isFramed){var e=CKEDITOR.env.air?"javascript:void(0)":CKEDITOR.env.ie?"javascript:void(function(){"+encodeURIComponent("document.open();("+CKEDITOR.tools.fixDomain+")();document.close();")+"}())":"";d.frame=g.output({id:this.id+"_frame",src:e})}e=f.output(d);b&&b.push(e);return e},addBlock:function(a,b){b=this._.blocks[a]=b instanceof CKEDITOR.ui.panel.block?b:new CKEDITOR.ui.panel.block(this.getHolderElement(),
b);this._.currentBlock||this.showBlock(a);return b},getBlock:function(a){return this._.blocks[a]},showBlock:function(a){var a=this._.blocks[a],b=this._.currentBlock,d=!this.forceIFrame||CKEDITOR.env.ie?this._.holder:this.document.getById(this.id+"_frame");b&&b.hide();this._.currentBlock=a;CKEDITOR.fire("ariaWidget",d);a._.focusIndex=-1;this._.onKeyDown=a.onKeyDown&&CKEDITOR.tools.bind(a.onKeyDown,a);a.show();return a},destroy:function(){this.element&&this.element.remove()}};CKEDITOR.ui.panel.block=
CKEDITOR.tools.createClass({$:function(a,b){this.element=a.append(a.getDocument().createElement("div",{attributes:{tabindex:-1,"class":"cke_panel_block"},styles:{display:"none"}}));b&&CKEDITOR.tools.extend(this,b);this.element.setAttributes({role:this.attributes.role||"presentation","aria-label":this.attributes["aria-label"],title:this.attributes.title||this.attributes["aria-label"]});this.keys={};this._.focusIndex=-1;this.element.disableContextMenu()},_:{markItem:function(a){-1!=a&&(a=this.element.getElementsByTag("a").getItem(this._.focusIndex=
a),CKEDITOR.env.webkit&&a.getDocument().getWindow().focus(),a.focus(),this.onMark&&this.onMark(a))}},proto:{show:function(){this.element.setStyle("display","")},hide:function(){(!this.onHide||!0!==this.onHide.call(this))&&this.element.setStyle("display","none")},onKeyDown:function(a,b){var d=this.keys[a];switch(d){case "next":for(var e=this._.focusIndex,d=this.element.getElementsByTag("a"),c;c=d.getItem(++e);)if(c.getAttribute("_cke_focus")&&c.$.offsetWidth){this._.focusIndex=e;c.focus();break}return!c&&
!b?(this._.focusIndex=-1,this.onKeyDown(a,1)):!1;case "prev":e=this._.focusIndex;for(d=this.element.getElementsByTag("a");0<e&&(c=d.getItem(--e));){if(c.getAttribute("_cke_focus")&&c.$.offsetWidth){this._.focusIndex=e;c.focus();break}c=null}return!c&&!b?(this._.focusIndex=d.count(),this.onKeyDown(a,1)):!1;case "click":case "mouseup":return e=this._.focusIndex,(c=0<=e&&this.element.getElementsByTag("a").getItem(e))&&(c.$[d]?c.$[d]():c.$["on"+d]()),!1}return!0}}})})();CKEDITOR.plugins.add("floatpanel",{requires:"panel"});
(function(){function r(a,b,c,i,f){var f=CKEDITOR.tools.genKey(b.getUniqueId(),c.getUniqueId(),a.lang.dir,a.uiColor||"",i.css||"",f||""),h=g[f];h||(h=g[f]=new CKEDITOR.ui.panel(b,i),h.element=c.append(CKEDITOR.dom.element.createFromHtml(h.render(a),b)),h.element.setStyles({display:"none",position:"absolute"}));return h}var g={};CKEDITOR.ui.floatPanel=CKEDITOR.tools.createClass({$:function(a,b,c,i){function f(){d.hide()}c.forceIFrame=1;c.toolbarRelated&&a.elementMode==CKEDITOR.ELEMENT_MODE_INLINE&&
(b=CKEDITOR.document.getById("cke_"+a.name));var h=b.getDocument(),i=r(a,h,b,c,i||0),j=i.element,l=j.getFirst(),d=this;j.disableContextMenu();this.element=j;this._={editor:a,panel:i,parentElement:b,definition:c,document:h,iframe:l,children:[],dir:a.lang.dir};a.on("mode",f);a.on("resize",f);if(!CKEDITOR.env.iOS)h.getWindow().on("resize",f)},proto:{addBlock:function(a,b){return this._.panel.addBlock(a,b)},addListBlock:function(a,b){return this._.panel.addListBlock(a,b)},getBlock:function(a){return this._.panel.getBlock(a)},
showBlock:function(a,b,c,i,f,h){var j=this._.panel,l=j.showBlock(a);this.allowBlur(!1);a=this._.editor.editable();this._.returnFocus=a.hasFocus?a:new CKEDITOR.dom.element(CKEDITOR.document.$.activeElement);this._.hideTimeout=0;var d=this.element,a=this._.iframe,a=CKEDITOR.env.ie?a:new CKEDITOR.dom.window(a.$.contentWindow),g=d.getDocument(),o=this._.parentElement.getPositionedAncestor(),p=b.getDocumentPosition(g),g=o?o.getDocumentPosition(g):{x:0,y:0},m="rtl"==this._.dir,e=p.x+(i||0)-g.x,k=p.y+(f||
0)-g.y;if(m&&(1==c||4==c))e+=b.$.offsetWidth;else if(!m&&(2==c||3==c))e+=b.$.offsetWidth-1;if(3==c||4==c)k+=b.$.offsetHeight-1;this._.panel._.offsetParentId=b.getId();d.setStyles({top:k+"px",left:0,display:""});d.setOpacity(0);d.getFirst().removeStyle("width");this._.editor.focusManager.add(a);this._.blurSet||(CKEDITOR.event.useCapture=!0,a.on("blur",function(a){function q(){delete this._.returnFocus;this.hide()}this.allowBlur()&&a.data.getPhase()==CKEDITOR.EVENT_PHASE_AT_TARGET&&(this.visible&&!this._.activeChild)&&
(CKEDITOR.env.iOS?this._.hideTimeout||(this._.hideTimeout=CKEDITOR.tools.setTimeout(q,0,this)):q.call(this))},this),a.on("focus",function(){this._.focused=!0;this.hideChild();this.allowBlur(!0)},this),CKEDITOR.env.iOS&&(a.on("touchstart",function(){clearTimeout(this._.hideTimeout)},this),a.on("touchend",function(){this._.hideTimeout=0;this.focus()},this)),CKEDITOR.event.useCapture=!1,this._.blurSet=1);j.onEscape=CKEDITOR.tools.bind(function(a){if(this.onEscape&&this.onEscape(a)===false)return false},
this);CKEDITOR.tools.setTimeout(function(){var a=CKEDITOR.tools.bind(function(){d.removeStyle("width");if(l.autoSize){var a=l.element.getDocument(),a=(CKEDITOR.env.webkit?l.element:a.getBody()).$.scrollWidth;CKEDITOR.env.ie&&(CKEDITOR.env.quirks&&a>0)&&(a=a+((d.$.offsetWidth||0)-(d.$.clientWidth||0)+3));d.setStyle("width",a+10+"px");a=l.element.$.scrollHeight;CKEDITOR.env.ie&&(CKEDITOR.env.quirks&&a>0)&&(a=a+((d.$.offsetHeight||0)-(d.$.clientHeight||0)+3));d.setStyle("height",a+"px");j._.currentBlock.element.setStyle("display",
"none").removeStyle("display")}else d.removeStyle("height");m&&(e=e-d.$.offsetWidth);d.setStyle("left",e+"px");var b=j.element.getWindow(),a=d.$.getBoundingClientRect(),b=b.getViewPaneSize(),c=a.width||a.right-a.left,f=a.height||a.bottom-a.top,i=m?a.right:b.width-a.left,g=m?b.width-a.right:a.left;m?i<c&&(e=g>c?e+c:b.width>c?e-a.left:e-a.right+b.width):i<c&&(e=g>c?e-c:b.width>c?e-a.right+b.width:e-a.left);c=a.top;b.height-a.top<f&&(k=c>f?k-f:b.height>f?k-a.bottom+b.height:k-a.top);if(CKEDITOR.env.ie){b=
a=new CKEDITOR.dom.element(d.$.offsetParent);b.getName()=="html"&&(b=b.getDocument().getBody());b.getComputedStyle("direction")=="rtl"&&(e=CKEDITOR.env.ie8Compat?e-d.getDocument().getDocumentElement().$.scrollLeft*2:e-(a.$.scrollWidth-a.$.clientWidth))}var a=d.getFirst(),n;(n=a.getCustomData("activePanel"))&&n.onHide&&n.onHide.call(this,1);a.setCustomData("activePanel",this);d.setStyles({top:k+"px",left:e+"px"});d.setOpacity(1);h&&h()},this);j.isLoaded?a():j.onLoad=a;CKEDITOR.tools.setTimeout(function(){var a=
CKEDITOR.env.webkit&&CKEDITOR.document.getWindow().getScrollPosition().y;this.focus();l.element.focus();if(CKEDITOR.env.webkit)CKEDITOR.document.getBody().$.scrollTop=a;this.allowBlur(true);this._.editor.fire("panelShow",this)},0,this)},CKEDITOR.env.air?200:0,this);this.visible=1;this.onShow&&this.onShow.call(this)},focus:function(){if(CKEDITOR.env.webkit){var a=CKEDITOR.document.getActive();a&&!a.equals(this._.iframe)&&a.$.blur()}(this._.lastFocused||this._.iframe.getFrameDocument().getWindow()).focus()},
blur:function(){var a=this._.iframe.getFrameDocument().getActive();a&&a.is("a")&&(this._.lastFocused=a)},hide:function(a){if(this.visible&&(!this.onHide||!0!==this.onHide.call(this))){this.hideChild();CKEDITOR.env.gecko&&this._.iframe.getFrameDocument().$.activeElement.blur();this.element.setStyle("display","none");this.visible=0;this.element.getFirst().removeCustomData("activePanel");if(a=a&&this._.returnFocus)CKEDITOR.env.webkit&&a.type&&a.getWindow().$.focus(),a.focus();delete this._.lastFocused;
this._.editor.fire("panelHide",this)}},allowBlur:function(a){var b=this._.panel;void 0!=a&&(b.allowBlur=a);return b.allowBlur},showAsChild:function(a,b,c,g,f,h){this._.activeChild==a&&a._.panel._.offsetParentId==c.getId()||(this.hideChild(),a.onHide=CKEDITOR.tools.bind(function(){CKEDITOR.tools.setTimeout(function(){this._.focused||this.hide()},0,this)},this),this._.activeChild=a,this._.focused=!1,a.showBlock(b,c,g,f,h),this.blur(),(CKEDITOR.env.ie7Compat||CKEDITOR.env.ie6Compat)&&setTimeout(function(){a.element.getChild(0).$.style.cssText+=
""},100))},hideChild:function(a){var b=this._.activeChild;b&&(delete b.onHide,delete this._.activeChild,b.hide(),a&&this.focus())}}});CKEDITOR.on("instanceDestroyed",function(){var a=CKEDITOR.tools.isEmpty(CKEDITOR.instances),b;for(b in g){var c=g[b];a?c.destroy():c.element.hide()}a&&(g={})})})();CKEDITOR.plugins.add("menu",{requires:"floatpanel",beforeInit:function(g){for(var h=g.config.menu_groups.split(","),m=g._.menuGroups={},l=g._.menuItems={},a=0;a<h.length;a++)m[h[a]]=a+1;g.addMenuGroup=function(b,a){m[b]=a||100};g.addMenuItem=function(a,c){m[c.group]&&(l[a]=new CKEDITOR.menuItem(this,a,c))};g.addMenuItems=function(a){for(var c in a)this.addMenuItem(c,a[c])};g.getMenuItem=function(a){return l[a]};g.removeMenuItem=function(a){delete l[a]}}});
(function(){function g(a){a.sort(function(a,c){return a.group<c.group?-1:a.group>c.group?1:a.order<c.order?-1:a.order>c.order?1:0})}var h='<span class="cke_menuitem"><a id="{id}" class="cke_menubutton cke_menubutton__{name} cke_menubutton_{state} {cls}" href="{href}" title="{title}" tabindex="-1"_cke_focus=1 hidefocus="true" role="{role}" aria-haspopup="{hasPopup}" aria-disabled="{disabled}" {ariaChecked}';CKEDITOR.env.gecko&&CKEDITOR.env.mac&&(h+=' onkeypress="return false;"');CKEDITOR.env.gecko&&
(h+=' onblur="this.style.cssText = this.style.cssText;"');var h=h+(' onmouseover="CKEDITOR.tools.callFunction({hoverFn},{index});" onmouseout="CKEDITOR.tools.callFunction({moveOutFn},{index});" '+(CKEDITOR.env.ie?'onclick="return false;" onmouseup':"onclick")+'="CKEDITOR.tools.callFunction({clickFn},{index}); return false;">'),m=CKEDITOR.addTemplate("menuItem",h+'<span class="cke_menubutton_inner"><span class="cke_menubutton_icon"><span class="cke_button_icon cke_button__{iconName}_icon" style="{iconStyle}"></span></span><span class="cke_menubutton_label">{label}</span>{arrowHtml}</span></a></span>'),
l=CKEDITOR.addTemplate("menuArrow",'<span class="cke_menuarrow"><span>{label}</span></span>');CKEDITOR.menu=CKEDITOR.tools.createClass({$:function(a,b){b=this._.definition=b||{};this.id=CKEDITOR.tools.getNextId();this.editor=a;this.items=[];this._.listeners=[];this._.level=b.level||1;var c=CKEDITOR.tools.extend({},b.panel,{css:[CKEDITOR.skin.getPath("editor")],level:this._.level-1,block:{}}),k=c.block.attributes=c.attributes||{};!k.role&&(k.role="menu");this._.panelDefinition=c},_:{onShow:function(){var a=
this.editor.getSelection(),b=a&&a.getStartElement(),c=this.editor.elementPath(),k=this._.listeners;this.removeAll();for(var e=0;e<k.length;e++){var j=k[e](b,a,c);if(j)for(var i in j){var f=this.editor.getMenuItem(i);if(f&&(!f.command||this.editor.getCommand(f.command).state))f.state=j[i],this.add(f)}}},onClick:function(a){this.hide();if(a.onClick)a.onClick();else a.command&&this.editor.execCommand(a.command)},onEscape:function(a){var b=this.parent;b?b._.panel.hideChild(1):27==a&&this.hide(1);return!1},
onHide:function(){this.onHide&&this.onHide()},showSubMenu:function(a){var b=this._.subMenu,c=this.items[a];if(c=c.getItems&&c.getItems()){b?b.removeAll():(b=this._.subMenu=new CKEDITOR.menu(this.editor,CKEDITOR.tools.extend({},this._.definition,{level:this._.level+1},!0)),b.parent=this,b._.onClick=CKEDITOR.tools.bind(this._.onClick,this));for(var k in c){var e=this.editor.getMenuItem(k);e&&(e.state=c[k],b.add(e))}var j=this._.panel.getBlock(this.id).element.getDocument().getById(this.id+(""+a));setTimeout(function(){b.show(j,
2)},0)}else this._.panel.hideChild(1)}},proto:{add:function(a){a.order||(a.order=this.items.length);this.items.push(a)},removeAll:function(){this.items=[]},show:function(a,b,c,k){if(!this.parent&&(this._.onShow(),!this.items.length))return;var b=b||("rtl"==this.editor.lang.dir?2:1),e=this.items,j=this.editor,i=this._.panel,f=this._.element;if(!i){i=this._.panel=new CKEDITOR.ui.floatPanel(this.editor,CKEDITOR.document.getBody(),this._.panelDefinition,this._.level);i.onEscape=CKEDITOR.tools.bind(function(a){if(!1===
this._.onEscape(a))return!1},this);i.onShow=function(){i._.panel.getHolderElement().getParent().addClass("cke cke_reset_all")};i.onHide=CKEDITOR.tools.bind(function(){this._.onHide&&this._.onHide()},this);f=i.addBlock(this.id,this._.panelDefinition.block);f.autoSize=!0;var d=f.keys;d[40]="next";d[9]="next";d[38]="prev";d[CKEDITOR.SHIFT+9]="prev";d["rtl"==j.lang.dir?37:39]=CKEDITOR.env.ie?"mouseup":"click";d[32]=CKEDITOR.env.ie?"mouseup":"click";CKEDITOR.env.ie&&(d[13]="mouseup");f=this._.element=
f.element;d=f.getDocument();d.getBody().setStyle("overflow","hidden");d.getElementsByTag("html").getItem(0).setStyle("overflow","hidden");this._.itemOverFn=CKEDITOR.tools.addFunction(function(a){clearTimeout(this._.showSubTimeout);this._.showSubTimeout=CKEDITOR.tools.setTimeout(this._.showSubMenu,j.config.menu_subMenuDelay||400,this,[a])},this);this._.itemOutFn=CKEDITOR.tools.addFunction(function(){clearTimeout(this._.showSubTimeout)},this);this._.itemClickFn=CKEDITOR.tools.addFunction(function(a){var b=
this.items[a];if(b.state==CKEDITOR.TRISTATE_DISABLED)this.hide(1);else if(b.getItems)this._.showSubMenu(a);else this._.onClick(b)},this)}g(e);for(var d=j.elementPath(),d=['<div class="cke_menu'+(d&&d.direction()!=j.lang.dir?" cke_mixed_dir_content":"")+'" role="presentation">'],h=e.length,m=h&&e[0].group,l=0;l<h;l++){var n=e[l];m!=n.group&&(d.push('<div class="cke_menuseparator" role="separator"></div>'),m=n.group);n.render(this,l,d)}d.push("</div>");f.setHtml(d.join(""));CKEDITOR.ui.fire("ready",
this);this.parent?this.parent._.panel.showAsChild(i,this.id,a,b,c,k):i.showBlock(this.id,a,b,c,k);j.fire("menuShow",[i])},addListener:function(a){this._.listeners.push(a)},hide:function(a){this._.onHide&&this._.onHide();this._.panel&&this._.panel.hide(a)}}});CKEDITOR.menuItem=CKEDITOR.tools.createClass({$:function(a,b,c){CKEDITOR.tools.extend(this,c,{order:0,className:"cke_menubutton__"+b});this.group=a._.menuGroups[this.group];this.editor=a;this.name=b},proto:{render:function(a,b,c){var h=a.id+(""+
b),e="undefined"==typeof this.state?CKEDITOR.TRISTATE_OFF:this.state,j="",i=e==CKEDITOR.TRISTATE_ON?"on":e==CKEDITOR.TRISTATE_DISABLED?"disabled":"off";this.role in{menuitemcheckbox:1,menuitemradio:1}&&(j=' aria-checked="'+(e==CKEDITOR.TRISTATE_ON?"true":"false")+'"');var f=this.getItems,d="&#"+("rtl"==this.editor.lang.dir?"9668":"9658")+";",g=this.name;this.icon&&!/\./.test(this.icon)&&(g=this.icon);a={id:h,name:this.name,iconName:g,label:this.label,cls:this.className||"",state:i,hasPopup:f?"true":
"false",disabled:e==CKEDITOR.TRISTATE_DISABLED,title:this.label,href:"javascript:void('"+(this.label||"").replace("'")+"')",hoverFn:a._.itemOverFn,moveOutFn:a._.itemOutFn,clickFn:a._.itemClickFn,index:b,iconStyle:CKEDITOR.skin.getIconStyle(g,"rtl"==this.editor.lang.dir,g==this.icon?null:this.icon,this.iconOffset),arrowHtml:f?l.output({label:d}):"",role:this.role?this.role:"menuitem",ariaChecked:j};m.output(a,c)}}})})();CKEDITOR.config.menu_groups="clipboard,form,tablecell,tablecellproperties,tablerow,tablecolumn,table,anchor,link,image,flash,checkbox,radio,textfield,hiddenfield,imagebutton,button,select,textarea,div";CKEDITOR.plugins.add("contextmenu",{requires:"menu",onLoad:function(){CKEDITOR.plugins.contextMenu=CKEDITOR.tools.createClass({base:CKEDITOR.menu,$:function(a){this.base.call(this,a,{panel:{className:"cke_menu_panel",attributes:{"aria-label":a.lang.contextmenu.options}}})},proto:{addTarget:function(a,e){a.on("contextmenu",function(a){var a=a.data,c=CKEDITOR.env.webkit?f:CKEDITOR.env.mac?a.$.metaKey:a.$.ctrlKey;if(!e||!c){a.preventDefault();if(CKEDITOR.env.mac&&CKEDITOR.env.webkit){var c=this.editor,
b=(new CKEDITOR.dom.elementPath(a.getTarget(),c.editable())).contains(function(a){return a.hasAttribute("contenteditable")},!0);b&&"false"==b.getAttribute("contenteditable")&&c.getSelection().fake(b)}var b=a.getTarget().getDocument(),d=a.getTarget().getDocument().getDocumentElement(),c=!b.equals(CKEDITOR.document),b=b.getWindow().getScrollPosition(),g=c?a.$.clientX:a.$.pageX||b.x+a.$.clientX,h=c?a.$.clientY:a.$.pageY||b.y+a.$.clientY;CKEDITOR.tools.setTimeout(function(){this.open(d,null,g,h)},CKEDITOR.env.ie?
200:0,this)}},this);if(CKEDITOR.env.webkit){var f,d=function(){f=0};a.on("keydown",function(a){f=CKEDITOR.env.mac?a.data.$.metaKey:a.data.$.ctrlKey});a.on("keyup",d);a.on("contextmenu",d)}},open:function(a,e,f,d){this.editor.focus();a=a||CKEDITOR.document.getDocumentElement();this.editor.selectionChange(1);this.show(a,e,f,d)}}})},beforeInit:function(a){var e=a.contextMenu=new CKEDITOR.plugins.contextMenu(a);a.on("contentDom",function(){e.addTarget(a.editable(),!1!==a.config.browserContextMenuOnCtrl)});
a.addCommand("contextMenu",{exec:function(){a.contextMenu.open(a.document.getBody())}});a.setKeystroke(CKEDITOR.SHIFT+121,"contextMenu");a.setKeystroke(CKEDITOR.CTRL+CKEDITOR.SHIFT+121,"contextMenu")}});CKEDITOR.plugins.add("resize",{init:function(b){var f,g,n,o,a=b.config,q=b.ui.spaceId("resizer"),h=b.element?b.element.getDirection(1):"ltr";!a.resize_dir&&(a.resize_dir="vertical");void 0==a.resize_maxWidth&&(a.resize_maxWidth=3E3);void 0==a.resize_maxHeight&&(a.resize_maxHeight=3E3);void 0==a.resize_minWidth&&(a.resize_minWidth=750);void 0==a.resize_minHeight&&(a.resize_minHeight=250);if(!1!==a.resize_enabled){var c=null,i=("both"==a.resize_dir||"horizontal"==a.resize_dir)&&a.resize_minWidth!=a.resize_maxWidth,
l=("both"==a.resize_dir||"vertical"==a.resize_dir)&&a.resize_minHeight!=a.resize_maxHeight,j=function(d){var e=f,m=g,c=e+(d.data.$.screenX-n)*("rtl"==h?-1:1),d=m+(d.data.$.screenY-o);i&&(e=Math.max(a.resize_minWidth,Math.min(c,a.resize_maxWidth)));l&&(m=Math.max(a.resize_minHeight,Math.min(d,a.resize_maxHeight)));b.resize(i?e:null,m)},k=function(){CKEDITOR.document.removeListener("mousemove",j);CKEDITOR.document.removeListener("mouseup",k);b.document&&(b.document.removeListener("mousemove",j),b.document.removeListener("mouseup",
k))},p=CKEDITOR.tools.addFunction(function(d){c||(c=b.getResizable());f=c.$.offsetWidth||0;g=c.$.offsetHeight||0;n=d.screenX;o=d.screenY;a.resize_minWidth>f&&(a.resize_minWidth=f);a.resize_minHeight>g&&(a.resize_minHeight=g);CKEDITOR.document.on("mousemove",j);CKEDITOR.document.on("mouseup",k);b.document&&(b.document.on("mousemove",j),b.document.on("mouseup",k));d.preventDefault&&d.preventDefault()});b.on("destroy",function(){CKEDITOR.tools.removeFunction(p)});b.on("uiSpace",function(a){if("bottom"==
a.data.space){var e="";i&&!l&&(e=" cke_resizer_horizontal");!i&&l&&(e=" cke_resizer_vertical");var c='<span id="'+q+'" class="cke_resizer'+e+" cke_resizer_"+h+'" title="'+CKEDITOR.tools.htmlEncode(b.lang.common.resize)+'" onmousedown="CKEDITOR.tools.callFunction('+p+', event)">'+("ltr"==h?"◢":"◣")+"</span>";"ltr"==h&&"ltr"==e?a.data.html+=c:a.data.html=c+a.data.html}},b,null,100);b.on("maximize",function(a){b.ui.space("resizer")[a.data==CKEDITOR.TRISTATE_ON?"hide":"show"]()})}}});(function(){var c='<a id="{id}" class="cke_button cke_button__{name} cke_button_{state} {cls}"'+(CKEDITOR.env.gecko&&!CKEDITOR.env.hc?"":" href=\"javascript:void('{titleJs}')\"")+' title="{title}" tabindex="-1" hidefocus="true" role="button" aria-labelledby="{id}_label" aria-haspopup="{hasArrow}" aria-disabled="{ariaDisabled}"';CKEDITOR.env.gecko&&CKEDITOR.env.mac&&(c+=' onkeypress="return false;"');CKEDITOR.env.gecko&&(c+=' onblur="this.style.cssText = this.style.cssText;"');var c=c+(' onkeydown="return CKEDITOR.tools.callFunction({keydownFn},event);" onfocus="return CKEDITOR.tools.callFunction({focusFn},event);" '+
(CKEDITOR.env.ie?'onclick="return false;" onmouseup':"onclick")+'="CKEDITOR.tools.callFunction({clickFn},this);return false;"><span class="cke_button_icon cke_button__{iconName}_icon" style="{style}"'),c=c+'>&nbsp;</span><span id="{id}_label" class="cke_button_label cke_button__{name}_label" aria-hidden="false">{label}</span>{arrowHtml}</a>',m=CKEDITOR.addTemplate("buttonArrow",'<span class="cke_button_arrow">'+(CKEDITOR.env.hc?"&#9660;":"")+"</span>"),n=CKEDITOR.addTemplate("button",c);CKEDITOR.plugins.add("button",
{beforeInit:function(a){a.ui.addHandler(CKEDITOR.UI_BUTTON,CKEDITOR.ui.button.handler)}});CKEDITOR.UI_BUTTON="button";CKEDITOR.ui.button=function(a){CKEDITOR.tools.extend(this,a,{title:a.label,click:a.click||function(b){b.execCommand(a.command)}});this._={}};CKEDITOR.ui.button.handler={create:function(a){return new CKEDITOR.ui.button(a)}};CKEDITOR.ui.button.prototype={render:function(a,b){var c=CKEDITOR.env,i=this._.id=CKEDITOR.tools.getNextId(),e="",f=this.command,k;this._.editor=a;var d={id:i,button:this,
editor:a,focus:function(){CKEDITOR.document.getById(i).focus()},execute:function(){this.button.click(a)},attach:function(a){this.button.attach(a)}},o=CKEDITOR.tools.addFunction(function(a){if(d.onkey)return a=new CKEDITOR.dom.event(a),!1!==d.onkey(d,a.getKeystroke())}),p=CKEDITOR.tools.addFunction(function(a){var b;d.onfocus&&(b=!1!==d.onfocus(d,new CKEDITOR.dom.event(a)));return b}),l=0;d.clickFn=k=CKEDITOR.tools.addFunction(function(){l&&(a.unlockSelection(1),l=0);d.execute();c.iOS&&a.focus()});
if(this.modes){var j={},g=function(){var b=a.mode;b&&(b=this.modes[b]?void 0!=j[b]?j[b]:CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED,b=a.readOnly&&!this.readOnly?CKEDITOR.TRISTATE_DISABLED:b,this.setState(b),this.refresh&&this.refresh())};a.on("beforeModeUnload",function(){a.mode&&this._.state!=CKEDITOR.TRISTATE_DISABLED&&(j[a.mode]=this._.state)},this);a.on("activeFilterChange",g,this);a.on("mode",g,this);!this.readOnly&&a.on("readOnly",g,this)}else if(f&&(f=a.getCommand(f)))f.on("state",function(){this.setState(f.state)},
this),e+=f.state==CKEDITOR.TRISTATE_ON?"on":f.state==CKEDITOR.TRISTATE_DISABLED?"disabled":"off";if(this.directional)a.on("contentDirChanged",function(b){var c=CKEDITOR.document.getById(this._.id),d=c.getFirst(),b=b.data;b!=a.lang.dir?c.addClass("cke_"+b):c.removeClass("cke_ltr").removeClass("cke_rtl");d.setAttribute("style",CKEDITOR.skin.getIconStyle(h,"rtl"==b,this.icon,this.iconOffset))},this);f||(e+="off");var h=g=this.name||this.command;this.icon&&!/\./.test(this.icon)&&(h=this.icon,this.icon=
null);e={id:i,name:g,iconName:h,label:this.label,cls:this.className||"",state:e,ariaDisabled:"disabled"==e?"true":"false",title:this.title,titleJs:c.gecko&&!c.hc?"":(this.title||"").replace("'",""),hasArrow:this.hasArrow?"true":"false",keydownFn:o,focusFn:p,clickFn:k,style:CKEDITOR.skin.getIconStyle(h,"rtl"==a.lang.dir,this.icon,this.iconOffset),arrowHtml:this.hasArrow?m.output():""};n.output(e,b);if(this.onRender)this.onRender();return d},setState:function(a){if(this._.state==a)return!1;this._.state=
a;var b=CKEDITOR.document.getById(this._.id);return b?(b.setState(a,"cke_button"),a==CKEDITOR.TRISTATE_DISABLED?b.setAttribute("aria-disabled",!0):b.removeAttribute("aria-disabled"),this.hasArrow?(a=a==CKEDITOR.TRISTATE_ON?this._.editor.lang.button.selectedLabel.replace(/%1/g,this.label):this.label,CKEDITOR.document.getById(this._.id+"_label").setText(a)):a==CKEDITOR.TRISTATE_ON?b.setAttribute("aria-pressed",!0):b.removeAttribute("aria-pressed"),!0):!1},getState:function(){return this._.state},toFeature:function(a){if(this._.feature)return this._.feature;
var b=this;!this.allowedContent&&(!this.requiredContent&&this.command)&&(b=a.getCommand(this.command)||b);return this._.feature=b}};CKEDITOR.ui.prototype.addButton=function(a,b){this.add(a,CKEDITOR.UI_BUTTON,b)}})();(function(){function w(a){function d(){for(var b=g(),e=CKEDITOR.tools.clone(a.config.toolbarGroups)||n(a),f=0;f<e.length;f++){var k=e[f];if("/"!=k){"string"==typeof k&&(k=e[f]={name:k});var i,d=k.groups;if(d)for(var h=0;h<d.length;h++)i=d[h],(i=b[i])&&c(k,i);(i=b[k.name])&&c(k,i)}}return e}function g(){var b={},c,f,e;for(c in a.ui.items)f=a.ui.items[c],e=f.toolbar||"others",e=e.split(","),f=e[0],e=parseInt(e[1]||-1,10),b[f]||(b[f]=[]),b[f].push({name:c,order:e});for(f in b)b[f]=b[f].sort(function(b,
a){return b.order==a.order?0:0>a.order?-1:0>b.order?1:b.order<a.order?-1:1});return b}function c(c,e){if(e.length){c.items?c.items.push(a.ui.create("-")):c.items=[];for(var f;f=e.shift();)if(f="string"==typeof f?f:f.name,!b||-1==CKEDITOR.tools.indexOf(b,f))(f=a.ui.create(f))&&a.addFeature(f)&&c.items.push(f)}}function h(b){var a=[],e,d,h;for(e=0;e<b.length;++e)d=b[e],h={},"/"==d?a.push(d):CKEDITOR.tools.isArray(d)?(c(h,CKEDITOR.tools.clone(d)),a.push(h)):d.items&&(c(h,CKEDITOR.tools.clone(d.items)),
h.name=d.name,a.push(h));return a}var b=a.config.removeButtons,b=b&&b.split(","),e=a.config.toolbar;"string"==typeof e&&(e=a.config["toolbar_"+e]);return a.toolbar=e?h(e):d()}function n(a){return a._.toolbarGroups||(a._.toolbarGroups=[{name:"document",groups:["mode","document","doctools"]},{name:"clipboard",groups:["clipboard","undo"]},{name:"editing",groups:["find","selection","spellchecker"]},{name:"forms"},"/",{name:"basicstyles",groups:["basicstyles","cleanup"]},{name:"paragraph",groups:["list",
"indent","blocks","align","bidi"]},{name:"links"},{name:"insert"},"/",{name:"styles"},{name:"colors"},{name:"tools"},{name:"others"},{name:"about"}])}var u=function(){this.toolbars=[];this.focusCommandExecuted=!1};u.prototype.focus=function(){for(var a=0,d;d=this.toolbars[a++];)for(var g=0,c;c=d.items[g++];)if(c.focus){c.focus();return}};var x={modes:{wysiwyg:1,source:1},readOnly:1,exec:function(a){a.toolbox&&(a.toolbox.focusCommandExecuted=!0,CKEDITOR.env.ie||CKEDITOR.env.air?setTimeout(function(){a.toolbox.focus()},
100):a.toolbox.focus())}};CKEDITOR.plugins.add("toolbar",{requires:"button",init:function(a){var d,g=function(c,h){var b,e="rtl"==a.lang.dir,j=a.config.toolbarGroupCycling,o=e?37:39,e=e?39:37,j=void 0===j||j;switch(h){case 9:case CKEDITOR.SHIFT+9:for(;!b||!b.items.length;)if(b=9==h?(b?b.next:c.toolbar.next)||a.toolbox.toolbars[0]:(b?b.previous:c.toolbar.previous)||a.toolbox.toolbars[a.toolbox.toolbars.length-1],b.items.length)for(c=b.items[d?b.items.length-1:0];c&&!c.focus;)(c=d?c.previous:c.next)||
(b=0);c&&c.focus();return!1;case o:b=c;do b=b.next,!b&&j&&(b=c.toolbar.items[0]);while(b&&!b.focus);b?b.focus():g(c,9);return!1;case 40:return c.button&&c.button.hasArrow?(a.once("panelShow",function(b){b.data._.panel._.currentBlock.onKeyDown(40)}),c.execute()):g(c,40==h?o:e),!1;case e:case 38:b=c;do b=b.previous,!b&&j&&(b=c.toolbar.items[c.toolbar.items.length-1]);while(b&&!b.focus);b?b.focus():(d=1,g(c,CKEDITOR.SHIFT+9),d=0);return!1;case 27:return a.focus(),!1;case 13:case 32:return c.execute(),
!1}return!0};a.on("uiSpace",function(c){if(c.data.space==a.config.toolbarLocation){c.removeListener();a.toolbox=new u;var d=CKEDITOR.tools.getNextId(),b=['<span id="',d,'" class="cke_voice_label">',a.lang.toolbar.toolbars,"</span>",'<span id="'+a.ui.spaceId("toolbox")+'" class="cke_toolbox" role="group" aria-labelledby="',d,'" onmousedown="return false;">'],d=!1!==a.config.toolbarStartupExpanded,e,j;a.config.toolbarCanCollapse&&a.elementMode!=CKEDITOR.ELEMENT_MODE_INLINE&&b.push('<span class="cke_toolbox_main"'+
(d?">":' style="display:none">'));for(var o=a.toolbox.toolbars,f=w(a),k=0;k<f.length;k++){var i,l=0,r,m=f[k],s;if(m)if(e&&(b.push("</span>"),j=e=0),"/"===m)b.push('<span class="cke_toolbar_break"></span>');else{s=m.items||m;for(var t=0;t<s.length;t++){var p=s[t],n;if(p)if(p.type==CKEDITOR.UI_SEPARATOR)j=e&&p;else{n=!1!==p.canGroup;if(!l){i=CKEDITOR.tools.getNextId();l={id:i,items:[]};r=m.name&&(a.lang.toolbar.toolbarGroups[m.name]||m.name);b.push('<span id="',i,'" class="cke_toolbar"',r?' aria-labelledby="'+
i+'_label"':"",' role="toolbar">');r&&b.push('<span id="',i,'_label" class="cke_voice_label">',r,"</span>");b.push('<span class="cke_toolbar_start"></span>');var q=o.push(l)-1;0<q&&(l.previous=o[q-1],l.previous.next=l)}n?e||(b.push('<span class="cke_toolgroup" role="presentation">'),e=1):e&&(b.push("</span>"),e=0);i=function(c){c=c.render(a,b);q=l.items.push(c)-1;if(q>0){c.previous=l.items[q-1];c.previous.next=c}c.toolbar=l;c.onkey=g;c.onfocus=function(){a.toolbox.focusCommandExecuted||a.focus()}};
j&&(i(j),j=0);i(p)}}e&&(b.push("</span>"),j=e=0);l&&b.push('<span class="cke_toolbar_end"></span></span>')}}a.config.toolbarCanCollapse&&b.push("</span>");if(a.config.toolbarCanCollapse&&a.elementMode!=CKEDITOR.ELEMENT_MODE_INLINE){var v=CKEDITOR.tools.addFunction(function(){a.execCommand("toolbarCollapse")});a.on("destroy",function(){CKEDITOR.tools.removeFunction(v)});a.addCommand("toolbarCollapse",{readOnly:1,exec:function(b){var a=b.ui.space("toolbar_collapser"),c=a.getPrevious(),e=b.ui.space("contents"),
d=c.getParent(),f=parseInt(e.$.style.height,10),h=d.$.offsetHeight,g=a.hasClass("cke_toolbox_collapser_min");g?(c.show(),a.removeClass("cke_toolbox_collapser_min"),a.setAttribute("title",b.lang.toolbar.toolbarCollapse)):(c.hide(),a.addClass("cke_toolbox_collapser_min"),a.setAttribute("title",b.lang.toolbar.toolbarExpand));a.getFirst().setText(g?"▲":"◀");e.setStyle("height",f-(d.$.offsetHeight-h)+"px");b.fire("resize")},modes:{wysiwyg:1,source:1}});a.setKeystroke(CKEDITOR.ALT+(CKEDITOR.env.ie||CKEDITOR.env.webkit?
189:109),"toolbarCollapse");b.push('<a title="'+(d?a.lang.toolbar.toolbarCollapse:a.lang.toolbar.toolbarExpand)+'" id="'+a.ui.spaceId("toolbar_collapser")+'" tabIndex="-1" class="cke_toolbox_collapser');d||b.push(" cke_toolbox_collapser_min");b.push('" onclick="CKEDITOR.tools.callFunction('+v+')">','<span class="cke_arrow">&#9650;</span>',"</a>")}b.push("</span>");c.data.html+=b.join("")}});a.on("destroy",function(){if(this.toolbox){var a,d=0,b,e,g;for(a=this.toolbox.toolbars;d<a.length;d++){e=a[d].items;
for(b=0;b<e.length;b++)g=e[b],g.clickFn&&CKEDITOR.tools.removeFunction(g.clickFn),g.keyDownFn&&CKEDITOR.tools.removeFunction(g.keyDownFn)}}});a.on("uiReady",function(){var c=a.ui.space("toolbox");c&&a.focusManager.add(c,1)});a.addCommand("toolbarFocus",x);a.setKeystroke(CKEDITOR.ALT+121,"toolbarFocus");a.ui.add("-",CKEDITOR.UI_SEPARATOR,{});a.ui.addHandler(CKEDITOR.UI_SEPARATOR,{create:function(){return{render:function(a,d){d.push('<span class="cke_toolbar_separator" role="separator"></span>');return{}}}}})}});
CKEDITOR.ui.prototype.addToolbarGroup=function(a,d,g){var c=n(this.editor),h=0===d,b={name:a};if(g){if(g=CKEDITOR.tools.search(c,function(a){return a.name==g})){!g.groups&&(g.groups=[]);if(d&&(d=CKEDITOR.tools.indexOf(g.groups,d),0<=d)){g.groups.splice(d+1,0,a);return}h?g.groups.splice(0,0,a):g.groups.push(a);return}d=null}d&&(d=CKEDITOR.tools.indexOf(c,function(a){return a.name==d}));h?c.splice(0,0,a):"number"==typeof d?c.splice(d+1,0,b):c.push(a)}})();CKEDITOR.UI_SEPARATOR="separator";
CKEDITOR.config.toolbarLocation="top";(function(){function m(b,d,a){a=b.config.forceEnterMode||a;"wysiwyg"==b.mode&&(d||(d=b.activeEnterMode),b.elementPath().isContextFor("p")||(d=CKEDITOR.ENTER_BR,a=1),b.fire("saveSnapshot"),d==CKEDITOR.ENTER_BR?p(b,d,null,a):q(b,d,null,a),b.fire("saveSnapshot"))}function r(b){for(var b=b.getSelection().getRanges(!0),d=b.length-1;0<d;d--)b[d].deleteContents();return b[0]}function u(b){var d=b.startContainer.getAscendant(function(a){return a.type==CKEDITOR.NODE_ELEMENT&&"true"==a.getAttribute("contenteditable")},
!0);if(b.root.equals(d))return b;d=new CKEDITOR.dom.range(d);d.moveToRange(b);return d}CKEDITOR.plugins.add("enterkey",{init:function(b){b.addCommand("enter",{modes:{wysiwyg:1},editorFocus:!1,exec:function(b){m(b)}});b.addCommand("shiftEnter",{modes:{wysiwyg:1},editorFocus:!1,exec:function(b){m(b,b.activeShiftEnterMode,1)}});b.setKeystroke([[13,"enter"],[CKEDITOR.SHIFT+13,"shiftEnter"]])}});var v=CKEDITOR.dom.walker.whitespaces(),w=CKEDITOR.dom.walker.bookmark();CKEDITOR.plugins.enterkey={enterBlock:function(b,
d,a,h){if(a=a||r(b)){var a=u(a),f=a.document,i=a.checkStartOfBlock(),k=a.checkEndOfBlock(),j=b.elementPath(a.startContainer),c=j.block,l=d==CKEDITOR.ENTER_DIV?"div":"p",e;if(i&&k){if(c&&(c.is("li")||c.getParent().is("li"))){c.is("li")||(c=c.getParent());a=c.getParent();e=a.getParent();var h=!c.hasPrevious(),n=!c.hasNext(),l=b.getSelection(),g=l.createBookmarks(),i=c.getDirection(1),k=c.getAttribute("class"),o=c.getAttribute("style"),m=e.getDirection(1)!=i,b=b.enterMode!=CKEDITOR.ENTER_BR||m||o||k;
if(e.is("li"))if(h||n)c[h?"insertBefore":"insertAfter"](e);else c.breakParent(e);else{if(b)if(j.block.is("li")?(e=f.createElement(d==CKEDITOR.ENTER_P?"p":"div"),m&&e.setAttribute("dir",i),o&&e.setAttribute("style",o),k&&e.setAttribute("class",k),c.moveChildren(e)):e=j.block,h||n)e[h?"insertBefore":"insertAfter"](a);else c.breakParent(a),e.insertAfter(a);else if(c.appendBogus(!0),h||n)for(;f=c[h?"getFirst":"getLast"]();)f[h?"insertBefore":"insertAfter"](a);else for(c.breakParent(a);f=c.getLast();)f.insertAfter(a);
c.remove()}l.selectBookmarks(g);return}if(c&&c.getParent().is("blockquote")){c.breakParent(c.getParent());c.getPrevious().getFirst(CKEDITOR.dom.walker.invisible(1))||c.getPrevious().remove();c.getNext().getFirst(CKEDITOR.dom.walker.invisible(1))||c.getNext().remove();a.moveToElementEditStart(c);a.select();return}}else if(c&&c.is("pre")&&!k){p(b,d,a,h);return}if(i=a.splitBlock(l)){d=i.previousBlock;c=i.nextBlock;j=i.wasStartOfBlock;b=i.wasEndOfBlock;if(c)g=c.getParent(),g.is("li")&&(c.breakParent(g),
c.move(c.getNext(),1));else if(d&&(g=d.getParent())&&g.is("li"))d.breakParent(g),g=d.getNext(),a.moveToElementEditStart(g),d.move(d.getPrevious());if(!j&&!b)c.is("li")&&(e=a.clone(),e.selectNodeContents(c),e=new CKEDITOR.dom.walker(e),e.evaluator=function(a){return!(w(a)||v(a)||a.type==CKEDITOR.NODE_ELEMENT&&a.getName()in CKEDITOR.dtd.$inline&&!(a.getName()in CKEDITOR.dtd.$empty))},(g=e.next())&&(g.type==CKEDITOR.NODE_ELEMENT&&g.is("ul","ol"))&&(CKEDITOR.env.needsBrFiller?f.createElement("br"):f.createText(" ")).insertBefore(g)),
c&&a.moveToElementEditStart(c);else{if(d){if(d.is("li")||!s.test(d.getName())&&!d.is("pre"))e=d.clone()}else c&&(e=c.clone());e?h&&!e.is("li")&&e.renameNode(l):g&&g.is("li")?e=g:(e=f.createElement(l),d&&(n=d.getDirection())&&e.setAttribute("dir",n));if(f=i.elementPath){h=0;for(l=f.elements.length;h<l;h++){g=f.elements[h];if(g.equals(f.block)||g.equals(f.blockLimit))break;CKEDITOR.dtd.$removeEmpty[g.getName()]&&(g=g.clone(),e.moveChildren(g),e.append(g))}}e.appendBogus();e.getParent()||a.insertNode(e);
e.is("li")&&e.removeAttribute("value");if(CKEDITOR.env.ie&&j&&(!b||!d.getChildCount()))a.moveToElementEditStart(b?d:e),a.select();a.moveToElementEditStart(j&&!b?c:e)}a.select();a.scrollIntoView()}}},enterBr:function(b,d,a,h){if(a=a||r(b)){var f=a.document,i=a.checkEndOfBlock(),k=new CKEDITOR.dom.elementPath(b.getSelection().getStartElement()),j=k.block,c=j&&k.block.getName();!h&&"li"==c?q(b,d,a,h):(!h&&i&&s.test(c)?(i=j.getDirection())?(f=f.createElement("div"),f.setAttribute("dir",i),f.insertAfter(j),
a.setStart(f,0)):(f.createElement("br").insertAfter(j),CKEDITOR.env.gecko&&f.createText("").insertAfter(j),a.setStartAt(j.getNext(),CKEDITOR.env.ie?CKEDITOR.POSITION_BEFORE_START:CKEDITOR.POSITION_AFTER_START)):(b="pre"==c&&CKEDITOR.env.ie&&8>CKEDITOR.env.version?f.createText("\r"):f.createElement("br"),a.deleteContents(),a.insertNode(b),CKEDITOR.env.needsBrFiller?(f.createText("").insertAfter(b),i&&(j||k.blockLimit).appendBogus(),b.getNext().$.nodeValue="",a.setStartAt(b.getNext(),CKEDITOR.POSITION_AFTER_START)):
a.setStartAt(b,CKEDITOR.POSITION_AFTER_END)),a.collapse(!0),a.select(),a.scrollIntoView())}}};var t=CKEDITOR.plugins.enterkey,p=t.enterBr,q=t.enterBlock,s=/^h[1-6]$/})();(function(){function j(a,b){var d={},e=[],f={nbsp:" ",shy:"­",gt:">",lt:"<",amp:"&",apos:"'",quot:'"'},a=a.replace(/\b(nbsp|shy|gt|lt|amp|apos|quot)(?:,|$)/g,function(a,h){var c=b?"&"+h+";":f[h];d[c]=b?f[h]:"&"+h+";";e.push(c);return""});if(!b&&a){var a=a.split(","),c=document.createElement("div"),g;c.innerHTML="&"+a.join(";&")+";";g=c.innerHTML;c=null;for(c=0;c<g.length;c++){var i=g.charAt(c);d[i]="&"+a[c]+";";e.push(i)}}d.regex=e.join(b?"|":"");return d}CKEDITOR.plugins.add("entities",{afterInit:function(a){var b=
a.config;if(a=(a=a.dataProcessor)&&a.htmlFilter){var d=[];!1!==b.basicEntities&&d.push("nbsp,gt,lt,amp");b.entities&&(d.length&&d.push("quot,iexcl,cent,pound,curren,yen,brvbar,sect,uml,copy,ordf,laquo,not,shy,reg,macr,deg,plusmn,sup2,sup3,acute,micro,para,middot,cedil,sup1,ordm,raquo,frac14,frac12,frac34,iquest,times,divide,fnof,bull,hellip,prime,Prime,oline,frasl,weierp,image,real,trade,alefsym,larr,uarr,rarr,darr,harr,crarr,lArr,uArr,rArr,dArr,hArr,forall,part,exist,empty,nabla,isin,notin,ni,prod,sum,minus,lowast,radic,prop,infin,ang,and,or,cap,cup,int,there4,sim,cong,asymp,ne,equiv,le,ge,sub,sup,nsub,sube,supe,oplus,otimes,perp,sdot,lceil,rceil,lfloor,rfloor,lang,rang,loz,spades,clubs,hearts,diams,circ,tilde,ensp,emsp,thinsp,zwnj,zwj,lrm,rlm,ndash,mdash,lsquo,rsquo,sbquo,ldquo,rdquo,bdquo,dagger,Dagger,permil,lsaquo,rsaquo,euro"),
b.entities_latin&&d.push("Agrave,Aacute,Acirc,Atilde,Auml,Aring,AElig,Ccedil,Egrave,Eacute,Ecirc,Euml,Igrave,Iacute,Icirc,Iuml,ETH,Ntilde,Ograve,Oacute,Ocirc,Otilde,Ouml,Oslash,Ugrave,Uacute,Ucirc,Uuml,Yacute,THORN,szlig,agrave,aacute,acirc,atilde,auml,aring,aelig,ccedil,egrave,eacute,ecirc,euml,igrave,iacute,icirc,iuml,eth,ntilde,ograve,oacute,ocirc,otilde,ouml,oslash,ugrave,uacute,ucirc,uuml,yacute,thorn,yuml,OElig,oelig,Scaron,scaron,Yuml"),b.entities_greek&&d.push("Alpha,Beta,Gamma,Delta,Epsilon,Zeta,Eta,Theta,Iota,Kappa,Lambda,Mu,Nu,Xi,Omicron,Pi,Rho,Sigma,Tau,Upsilon,Phi,Chi,Psi,Omega,alpha,beta,gamma,delta,epsilon,zeta,eta,theta,iota,kappa,lambda,mu,nu,xi,omicron,pi,rho,sigmaf,sigma,tau,upsilon,phi,chi,psi,omega,thetasym,upsih,piv"),
b.entities_additional&&d.push(b.entities_additional));var e=j(d.join(",")),f=e.regex?"["+e.regex+"]":"a^";delete e.regex;b.entities&&b.entities_processNumerical&&(f="[^ -~]|"+f);var f=RegExp(f,"g"),c=function(a){return b.entities_processNumerical=="force"||!e[a]?"&#"+a.charCodeAt(0)+";":e[a]},g=j("nbsp,gt,lt,amp,shy",!0),i=RegExp(g.regex,"g"),k=function(a){return g[a]};a.addRules({text:function(a){return a.replace(i,k).replace(f,c)}},{applyToAll:!0,excludeNestedEditable:!0})}}})})();
CKEDITOR.config.basicEntities=!0;CKEDITOR.config.entities=!0;CKEDITOR.config.entities_latin=!0;CKEDITOR.config.entities_greek=!0;CKEDITOR.config.entities_additional="#39";CKEDITOR.plugins.add("listblock",{requires:"panel",onLoad:function(){var f=CKEDITOR.addTemplate("panel-list",'<ul role="presentation" class="cke_panel_list">{items}</ul>'),g=CKEDITOR.addTemplate("panel-list-item",'<li id="{id}" class="cke_panel_listItem" role=presentation><a id="{id}_option" _cke_focus=1 hidefocus=true title="{title}" href="javascript:void(\'{val}\')"  {onclick}="CKEDITOR.tools.callFunction({clickFn},\'{val}\'); return false;" role="option">{text}</a></li>'),h=CKEDITOR.addTemplate("panel-list-group",
'<h1 id="{id}" class="cke_panel_grouptitle" role="presentation" >{label}</h1>'),i=/\'/g;CKEDITOR.ui.panel.prototype.addListBlock=function(a,b){return this.addBlock(a,new CKEDITOR.ui.listBlock(this.getHolderElement(),b))};CKEDITOR.ui.listBlock=CKEDITOR.tools.createClass({base:CKEDITOR.ui.panel.block,$:function(a,b){var b=b||{},c=b.attributes||(b.attributes={});(this.multiSelect=!!b.multiSelect)&&(c["aria-multiselectable"]=!0);!c.role&&(c.role="listbox");this.base.apply(this,arguments);this.element.setAttribute("role",
c.role);c=this.keys;c[40]="next";c[9]="next";c[38]="prev";c[CKEDITOR.SHIFT+9]="prev";c[32]=CKEDITOR.env.ie?"mouseup":"click";CKEDITOR.env.ie&&(c[13]="mouseup");this._.pendingHtml=[];this._.pendingList=[];this._.items={};this._.groups={}},_:{close:function(){if(this._.started){var a=f.output({items:this._.pendingList.join("")});this._.pendingList=[];this._.pendingHtml.push(a);delete this._.started}},getClick:function(){this._.click||(this._.click=CKEDITOR.tools.addFunction(function(a){var b=this.toggle(a);
if(this.onClick)this.onClick(a,b)},this));return this._.click}},proto:{add:function(a,b,c){var d=CKEDITOR.tools.getNextId();this._.started||(this._.started=1,this._.size=this._.size||0);this._.items[a]=d;var e;e=CKEDITOR.tools.htmlEncodeAttr(a).replace(i,"\\'");a={id:d,val:e,onclick:CKEDITOR.env.ie?'onclick="return false;" onmouseup':"onclick",clickFn:this._.getClick(),title:CKEDITOR.tools.htmlEncodeAttr(c||a),text:b||a};this._.pendingList.push(g.output(a))},startGroup:function(a){this._.close();
var b=CKEDITOR.tools.getNextId();this._.groups[a]=b;this._.pendingHtml.push(h.output({id:b,label:a}))},commit:function(){this._.close();this.element.appendHtml(this._.pendingHtml.join(""));delete this._.size;this._.pendingHtml=[]},toggle:function(a){var b=this.isMarked(a);b?this.unmark(a):this.mark(a);return!b},hideGroup:function(a){var b=(a=this.element.getDocument().getById(this._.groups[a]))&&a.getNext();a&&(a.setStyle("display","none"),b&&"ul"==b.getName()&&b.setStyle("display","none"))},hideItem:function(a){this.element.getDocument().getById(this._.items[a]).setStyle("display",
"none")},showAll:function(){var a=this._.items,b=this._.groups,c=this.element.getDocument(),d;for(d in a)c.getById(a[d]).setStyle("display","");for(var e in b)a=c.getById(b[e]),d=a.getNext(),a.setStyle("display",""),d&&"ul"==d.getName()&&d.setStyle("display","")},mark:function(a){this.multiSelect||this.unmarkAll();var a=this._.items[a],b=this.element.getDocument().getById(a);b.addClass("cke_selected");this.element.getDocument().getById(a+"_option").setAttribute("aria-selected",!0);this.onMark&&this.onMark(b)},
unmark:function(a){var b=this.element.getDocument(),a=this._.items[a],c=b.getById(a);c.removeClass("cke_selected");b.getById(a+"_option").removeAttribute("aria-selected");this.onUnmark&&this.onUnmark(c)},unmarkAll:function(){var a=this._.items,b=this.element.getDocument(),c;for(c in a){var d=a[c];b.getById(d).removeClass("cke_selected");b.getById(d+"_option").removeAttribute("aria-selected")}this.onUnmark&&this.onUnmark()},isMarked:function(a){return this.element.getDocument().getById(this._.items[a]).hasClass("cke_selected")},
focus:function(a){this._.focusIndex=-1;var b=this.element.getElementsByTag("a"),c,d=-1;if(a)for(c=this.element.getDocument().getById(this._.items[a]).getFirst();a=b.getItem(++d);){if(a.equals(c)){this._.focusIndex=d;break}}else this.element.focus();c&&setTimeout(function(){c.focus()},0)}}})}});CKEDITOR.plugins.add("richcombo",{requires:"floatpanel,listblock,button",beforeInit:function(d){d.ui.addHandler(CKEDITOR.UI_RICHCOMBO,CKEDITOR.ui.richCombo.handler)}});
(function(){var d='<span id="{id}" class="cke_combo cke_combo__{name} {cls}" role="presentation"><span id="{id}_label" class="cke_combo_label">{label}</span><a class="cke_combo_button" title="{title}" tabindex="-1"'+(CKEDITOR.env.gecko&&!CKEDITOR.env.hc?"":" href=\"javascript:void('{titleJs}')\"")+' hidefocus="true" role="button" aria-labelledby="{id}_label" aria-haspopup="true"';CKEDITOR.env.gecko&&CKEDITOR.env.mac&&(d+=' onkeypress="return false;"');CKEDITOR.env.gecko&&(d+=' onblur="this.style.cssText = this.style.cssText;"');
var d=d+(' onkeydown="return CKEDITOR.tools.callFunction({keydownFn},event,this);" onfocus="return CKEDITOR.tools.callFunction({focusFn},event);" '+(CKEDITOR.env.ie?'onclick="return false;" onmouseup':"onclick")+'="CKEDITOR.tools.callFunction({clickFn},this);return false;"><span id="{id}_text" class="cke_combo_text cke_combo_inlinelabel">{label}</span><span class="cke_combo_open"><span class="cke_combo_arrow">'+(CKEDITOR.env.hc?"&#9660;":CKEDITOR.env.air?"&nbsp;":"")+"</span></span></a></span>"),
i=CKEDITOR.addTemplate("combo",d);CKEDITOR.UI_RICHCOMBO="richcombo";CKEDITOR.ui.richCombo=CKEDITOR.tools.createClass({$:function(a){CKEDITOR.tools.extend(this,a,{canGroup:!1,title:a.label,modes:{wysiwyg:1},editorFocus:1});a=this.panel||{};delete this.panel;this.id=CKEDITOR.tools.getNextNumber();this.document=a.parent&&a.parent.getDocument()||CKEDITOR.document;a.className="cke_combopanel";a.block={multiSelect:a.multiSelect,attributes:a.attributes};a.toolbarRelated=!0;this._={panelDefinition:a,items:{}}},
proto:{renderHtml:function(a){var b=[];this.render(a,b);return b.join("")},render:function(a,b){function g(){if(this.getState()!=CKEDITOR.TRISTATE_ON){var c=this.modes[a.mode]?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED;a.readOnly&&!this.readOnly&&(c=CKEDITOR.TRISTATE_DISABLED);this.setState(c);this.setValue("");c!=CKEDITOR.TRISTATE_DISABLED&&this.refresh&&this.refresh()}}var d=CKEDITOR.env,h="cke_"+this.id,e=CKEDITOR.tools.addFunction(function(b){j&&(a.unlockSelection(1),j=0);c.execute(b)},
this),f=this,c={id:h,combo:this,focus:function(){CKEDITOR.document.getById(h).getChild(1).focus()},execute:function(c){var b=f._;if(b.state!=CKEDITOR.TRISTATE_DISABLED)if(f.createPanel(a),b.on)b.panel.hide();else{f.commit();var d=f.getValue();d?b.list.mark(d):b.list.unmarkAll();b.panel.showBlock(f.id,new CKEDITOR.dom.element(c),4)}},clickFn:e};a.on("activeFilterChange",g,this);a.on("mode",g,this);a.on("selectionChange",g,this);!this.readOnly&&a.on("readOnly",g,this);var k=CKEDITOR.tools.addFunction(function(b,
d){var b=new CKEDITOR.dom.event(b),g=b.getKeystroke();if(40==g)a.once("panelShow",function(a){a.data._.panel._.currentBlock.onKeyDown(40)});switch(g){case 13:case 32:case 40:CKEDITOR.tools.callFunction(e,d);break;default:c.onkey(c,g)}b.preventDefault()}),l=CKEDITOR.tools.addFunction(function(){c.onfocus&&c.onfocus()}),j=0;c.keyDownFn=k;d={id:h,name:this.name||this.command,label:this.label,title:this.title,cls:this.className||"",titleJs:d.gecko&&!d.hc?"":(this.title||"").replace("'",""),keydownFn:k,
focusFn:l,clickFn:e};i.output(d,b);if(this.onRender)this.onRender();return c},createPanel:function(a){if(!this._.panel){var b=this._.panelDefinition,d=this._.panelDefinition.block,i=b.parent||CKEDITOR.document.getBody(),h="cke_combopanel__"+this.name,e=new CKEDITOR.ui.floatPanel(a,i,b),f=e.addListBlock(this.id,d),c=this;e.onShow=function(){this.element.addClass(h);c.setState(CKEDITOR.TRISTATE_ON);c._.on=1;c.editorFocus&&!a.focusManager.hasFocus&&a.focus();if(c.onOpen)c.onOpen();a.once("panelShow",
function(){f.focus(!f.multiSelect&&c.getValue())})};e.onHide=function(b){this.element.removeClass(h);c.setState(c.modes&&c.modes[a.mode]?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED);c._.on=0;if(!b&&c.onClose)c.onClose()};e.onEscape=function(){e.hide(1)};f.onClick=function(a,b){c.onClick&&c.onClick.call(c,a,b);e.hide()};this._.panel=e;this._.list=f;e.getBlock(this.id).onHide=function(){c._.on=0;c.setState(CKEDITOR.TRISTATE_OFF)};this.init&&this.init()}},setValue:function(a,b){this._.value=a;var d=
this.document.getById("cke_"+this.id+"_text");d&&(!a&&!b?(b=this.label,d.addClass("cke_combo_inlinelabel")):d.removeClass("cke_combo_inlinelabel"),d.setText("undefined"!=typeof b?b:a))},getValue:function(){return this._.value||""},unmarkAll:function(){this._.list.unmarkAll()},mark:function(a){this._.list.mark(a)},hideItem:function(a){this._.list.hideItem(a)},hideGroup:function(a){this._.list.hideGroup(a)},showAll:function(){this._.list.showAll()},add:function(a,b,d){this._.items[a]=d||a;this._.list.add(a,
b,d)},startGroup:function(a){this._.list.startGroup(a)},commit:function(){this._.committed||(this._.list.commit(),this._.committed=1,CKEDITOR.ui.fire("ready",this));this._.committed=1},setState:function(a){if(this._.state!=a){var b=this.document.getById("cke_"+this.id);b.setState(a,"cke_combo");a==CKEDITOR.TRISTATE_DISABLED?b.setAttribute("aria-disabled",!0):b.removeAttribute("aria-disabled");this._.state=a}},getState:function(){return this._.state},enable:function(){this._.state==CKEDITOR.TRISTATE_DISABLED&&
this.setState(this._.lastState)},disable:function(){this._.state!=CKEDITOR.TRISTATE_DISABLED&&(this._.lastState=this._.state,this.setState(CKEDITOR.TRISTATE_DISABLED))}},statics:{handler:{create:function(a){return new CKEDITOR.ui.richCombo(a)}}}});CKEDITOR.ui.prototype.addRichCombo=function(a,b){this.add(a,CKEDITOR.UI_RICHCOMBO,b)}})();CKEDITOR.plugins.add("format",{requires:"richcombo",init:function(a){if(!a.blockless){for(var f=a.config,c=a.lang.format,j=f.format_tags.split(";"),d={},k=0,l=[],g=0;g<j.length;g++){var h=j[g],i=new CKEDITOR.style(f["format_"+h]);if(!a.filter.customConfig||a.filter.check(i))k++,d[h]=i,d[h]._.enterMode=a.config.enterMode,l.push(i)}0!==k&&a.ui.addRichCombo("Format",{label:c.label,title:c.panelTitle,toolbar:"styles,20",allowedContent:l,panel:{css:[CKEDITOR.skin.getPath("editor")].concat(f.contentsCss),
multiSelect:!1,attributes:{"aria-label":c.panelTitle}},init:function(){this.startGroup(c.panelTitle);for(var a in d){var e=c["tag_"+a];this.add(a,d[a].buildPreview(e),e)}},onClick:function(b){a.focus();a.fire("saveSnapshot");var b=d[b],e=a.elementPath();a[b.checkActive(e,a)?"removeStyle":"applyStyle"](b);setTimeout(function(){a.fire("saveSnapshot")},0)},onRender:function(){a.on("selectionChange",function(b){var e=this.getValue(),b=b.data.path;this.refresh();for(var c in d)if(d[c].checkActive(b,a)){c!=
e&&this.setValue(c,a.lang.format["tag_"+c]);return}this.setValue("")},this)},onOpen:function(){this.showAll();for(var b in d)a.activeFilter.check(d[b])||this.hideItem(b)},refresh:function(){var b=a.elementPath();if(b){if(b.isContextFor("p"))for(var c in d)if(a.activeFilter.check(d[c]))return;this.setState(CKEDITOR.TRISTATE_DISABLED)}}})}}});CKEDITOR.config.format_tags="p;h1;h2;h3;h4;h5;h6;pre;address;div";CKEDITOR.config.format_p={element:"p"};CKEDITOR.config.format_div={element:"div"};
CKEDITOR.config.format_pre={element:"pre"};CKEDITOR.config.format_address={element:"address"};CKEDITOR.config.format_h1={element:"h1"};CKEDITOR.config.format_h2={element:"h2"};CKEDITOR.config.format_h3={element:"h3"};CKEDITOR.config.format_h4={element:"h4"};CKEDITOR.config.format_h5={element:"h5"};CKEDITOR.config.format_h6={element:"h6"};(function(){var b={canUndo:!1,exec:function(a){var b=a.document.createElement("hr");a.insertElement(b)},allowedContent:"hr",requiredContent:"hr"};CKEDITOR.plugins.add("horizontalrule",{init:function(a){a.blockless||(a.addCommand("horizontalrule",b),a.ui.addButton&&a.ui.addButton("HorizontalRule",{label:a.lang.horizontalrule.toolbar,command:"horizontalrule",toolbar:"insert,40"}))}})})();CKEDITOR.plugins.add("htmlwriter",{init:function(b){var a=new CKEDITOR.htmlWriter;a.forceSimpleAmpersand=b.config.forceSimpleAmpersand;a.indentationChars=b.config.dataIndentationChars||"\t";b.dataProcessor.writer=a}});
CKEDITOR.htmlWriter=CKEDITOR.tools.createClass({base:CKEDITOR.htmlParser.basicWriter,$:function(){this.base();this.indentationChars="\t";this.selfClosingEnd=" />";this.lineBreakChars="\n";this.sortAttributes=1;this._.indent=0;this._.indentation="";this._.inPre=0;this._.rules={};var b=CKEDITOR.dtd,a;for(a in CKEDITOR.tools.extend({},b.$nonBodyContent,b.$block,b.$listItem,b.$tableContent))this.setRules(a,{indent:!b[a]["#"],breakBeforeOpen:1,breakBeforeClose:!b[a]["#"],breakAfterClose:1,needsSpace:a in
b.$block&&!(a in{li:1,dt:1,dd:1})});this.setRules("br",{breakAfterOpen:1});this.setRules("title",{indent:0,breakAfterOpen:0});this.setRules("style",{indent:0,breakBeforeClose:1});this.setRules("pre",{breakAfterOpen:1,indent:0})},proto:{openTag:function(b){var a=this._.rules[b];this._.afterCloser&&(a&&a.needsSpace&&this._.needsSpace)&&this._.output.push("\n");this._.indent?this.indentation():a&&a.breakBeforeOpen&&(this.lineBreak(),this.indentation());this._.output.push("<",b);this._.afterCloser=0},
openTagClose:function(b,a){var c=this._.rules[b];a?(this._.output.push(this.selfClosingEnd),c&&c.breakAfterClose&&(this._.needsSpace=c.needsSpace)):(this._.output.push(">"),c&&c.indent&&(this._.indentation+=this.indentationChars));c&&c.breakAfterOpen&&this.lineBreak();"pre"==b&&(this._.inPre=1)},attribute:function(b,a){"string"==typeof a&&(this.forceSimpleAmpersand&&(a=a.replace(/&amp;/g,"&")),a=CKEDITOR.tools.htmlEncodeAttr(a));this._.output.push(" ",b,'="',a,'"')},closeTag:function(b){var a=this._.rules[b];
a&&a.indent&&(this._.indentation=this._.indentation.substr(this.indentationChars.length));this._.indent?this.indentation():a&&a.breakBeforeClose&&(this.lineBreak(),this.indentation());this._.output.push("</",b,">");"pre"==b&&(this._.inPre=0);a&&a.breakAfterClose&&(this.lineBreak(),this._.needsSpace=a.needsSpace);this._.afterCloser=1},text:function(b){this._.indent&&(this.indentation(),!this._.inPre&&(b=CKEDITOR.tools.ltrim(b)));this._.output.push(b)},comment:function(b){this._.indent&&this.indentation();
this._.output.push("<\!--",b,"--\>")},lineBreak:function(){!this._.inPre&&0<this._.output.length&&this._.output.push(this.lineBreakChars);this._.indent=1},indentation:function(){!this._.inPre&&this._.indentation&&this._.output.push(this._.indentation);this._.indent=0},reset:function(){this._.output=[];this._.indent=0;this._.indentation="";this._.afterCloser=0;this._.inPre=0},setRules:function(b,a){var c=this._.rules[b];c?CKEDITOR.tools.extend(c,a,!0):this._.rules[b]=a}}});(function(){function k(a){var d=this.editor,b=a.document,c=b.body,e=b.getElementById("cke_actscrpt");e&&e.parentNode.removeChild(e);(e=b.getElementById("cke_shimscrpt"))&&e.parentNode.removeChild(e);(e=b.getElementById("cke_basetagscrpt"))&&e.parentNode.removeChild(e);c.contentEditable=!0;CKEDITOR.env.ie&&(c.hideFocus=!0,c.disabled=!0,c.removeAttribute("disabled"));delete this._.isLoadingData;this.$=c;b=new CKEDITOR.dom.document(b);this.setup();this.fixInitialSelection();CKEDITOR.env.ie&&(b.getDocumentElement().addClass(b.$.compatMode),
d.config.enterMode!=CKEDITOR.ENTER_P&&this.attachListener(b,"selectionchange",function(){var a=b.getBody(),c=d.getSelection(),e=c&&c.getRanges()[0];e&&(a.getHtml().match(/^<p>(?:&nbsp;|<br>)<\/p>$/i)&&e.startContainer.equals(a))&&setTimeout(function(){e=d.getSelection().getRanges()[0];if(!e.startContainer.equals("body")){a.getFirst().remove(1);e.moveToElementEditEnd(a);e.select()}},0)}));if(CKEDITOR.env.webkit||CKEDITOR.env.ie&&10<CKEDITOR.env.version)b.getDocumentElement().on("mousedown",function(a){a.data.getTarget().is("html")&&
setTimeout(function(){d.editable().focus()})});l(d);try{d.document.$.execCommand("2D-position",!1,!0)}catch(g){}(CKEDITOR.env.gecko||CKEDITOR.env.ie&&"CSS1Compat"==d.document.$.compatMode)&&this.attachListener(this,"keydown",function(a){var b=a.data.getKeystroke();if(b==33||b==34)if(CKEDITOR.env.ie)setTimeout(function(){d.getSelection().scrollIntoView()},0);else if(d.window.$.innerHeight>this.$.offsetHeight){var c=d.createRange();c[b==33?"moveToElementEditStart":"moveToElementEditEnd"](this);c.select();
a.data.preventDefault()}});CKEDITOR.env.ie&&this.attachListener(b,"blur",function(){try{b.$.selection.empty()}catch(a){}});CKEDITOR.env.iOS&&this.attachListener(b,"touchend",function(){a.focus()});c=d.document.getElementsByTag("title").getItem(0);c.data("cke-title",c.getText());CKEDITOR.env.ie&&(d.document.$.title=this._.docTitle);CKEDITOR.tools.setTimeout(function(){if(this.status=="unloaded")this.status="ready";d.fire("contentDom");if(this._.isPendingFocus){d.focus();this._.isPendingFocus=false}setTimeout(function(){d.fire("dataReady")},
0);CKEDITOR.env.ie&&setTimeout(function(){if(d.document){var a=d.document.$.body;a.runtimeStyle.marginBottom="0px";a.runtimeStyle.marginBottom=""}},1E3)},0,this)}function l(a){function d(){var c;a.editable().attachListener(a,"selectionChange",function(){var d=a.getSelection().getSelectedElement();d&&(c&&(c.detachEvent("onresizestart",b),c=null),d.$.attachEvent("onresizestart",b),c=d.$)})}function b(a){a.returnValue=!1}if(CKEDITOR.env.gecko)try{var c=a.document.$;c.execCommand("enableObjectResizing",
!1,!a.config.disableObjectResizing);c.execCommand("enableInlineTableEditing",!1,!a.config.disableNativeTableHandles)}catch(e){}else CKEDITOR.env.ie&&(11>CKEDITOR.env.version&&a.config.disableObjectResizing)&&d(a)}function m(){var a=[];if(8<=CKEDITOR.document.$.documentMode){a.push("html.CSS1Compat [contenteditable=false]{min-height:0 !important}");var d=[],b;for(b in CKEDITOR.dtd.$removeEmpty)d.push("html.CSS1Compat "+b+"[contenteditable=false]");a.push(d.join(",")+"{display:inline-block}")}else CKEDITOR.env.gecko&&
(a.push("html{height:100% !important}"),a.push("img:-moz-broken{-moz-force-broken-image-icon:1;min-width:24px;min-height:24px}"));a.push("html{cursor:text;*cursor:auto}");a.push("img,input,textarea{cursor:default}");return a.join("\n")}CKEDITOR.plugins.add("wysiwygarea",{init:function(a){a.config.fullPage&&a.addFeature({allowedContent:"html head title; style [media,type]; body (*)[id]; meta link [*]",requiredContent:"body"});a.addMode("wysiwyg",function(d){function b(b){b&&b.removeListener();a.editable(new j(a,
e.$.contentWindow.document.body));a.setData(a.getData(1),d)}var c="document.open();"+(CKEDITOR.env.ie?"("+CKEDITOR.tools.fixDomain+")();":"")+"document.close();",c=CKEDITOR.env.air?"javascript:void(0)":CKEDITOR.env.ie?"javascript:void(function(){"+encodeURIComponent(c)+"}())":"",e=CKEDITOR.dom.element.createFromHtml('<iframe src="'+c+'" frameBorder="0"></iframe>');e.setStyles({width:"100%",height:"100%"});e.addClass("cke_wysiwyg_frame cke_reset");var g=a.ui.space("contents");g.append(e);if(c=CKEDITOR.env.ie||
CKEDITOR.env.gecko)e.on("load",b);var f=a.title,h=a.fire("ariaEditorHelpLabel",{}).label;f&&(CKEDITOR.env.ie&&h&&(f+=", "+h),e.setAttribute("title",f));if(h){var f=CKEDITOR.tools.getNextId(),i=CKEDITOR.dom.element.createFromHtml('<span id="'+f+'" class="cke_voice_label">'+h+"</span>");g.append(i,1);e.setAttribute("aria-describedby",f)}a.on("beforeModeUnload",function(a){a.removeListener();i&&i.remove()});e.setAttributes({tabIndex:a.tabIndex,allowTransparency:"true"});!c&&b();CKEDITOR.env.webkit&&
(c=function(){g.setStyle("width","100%");e.hide();e.setSize("width",g.getSize("width"));g.removeStyle("width");e.show()},e.setCustomData("onResize",c),CKEDITOR.document.getWindow().on("resize",c));a.fire("ariaWidget",e)})}});CKEDITOR.editor.prototype.addContentsCss=function(a){var d=this.config,b=d.contentsCss;CKEDITOR.tools.isArray(b)||(d.contentsCss=b?[b]:[]);d.contentsCss.push(a)};var j=CKEDITOR.tools.createClass({$:function(a){this.base.apply(this,arguments);this._.frameLoadedHandler=CKEDITOR.tools.addFunction(function(a){CKEDITOR.tools.setTimeout(k,
0,this,a)},this);this._.docTitle=this.getWindow().getFrame().getAttribute("title")},base:CKEDITOR.editable,proto:{setData:function(a,d){var b=this.editor;if(d)this.setHtml(a),this.fixInitialSelection(),b.fire("dataReady");else{this._.isLoadingData=!0;b._.dataStore={id:1};var c=b.config,e=c.fullPage,g=c.docType,f=CKEDITOR.tools.buildStyleHtml(m()).replace(/<style>/,'<style data-cke-temp="1">');e||(f+=CKEDITOR.tools.buildStyleHtml(b.config.contentsCss));var h=c.baseHref?'<base href="'+c.baseHref+'" data-cke-temp="1" />':
"";e&&(a=a.replace(/<!DOCTYPE[^>]*>/i,function(a){b.docType=g=a;return""}).replace(/<\?xml\s[^\?]*\?>/i,function(a){b.xmlDeclaration=a;return""}));a=b.dataProcessor.toHtml(a);e?(/<body[\s|>]/.test(a)||(a="<body>"+a),/<html[\s|>]/.test(a)||(a="<html>"+a+"</html>"),/<head[\s|>]/.test(a)?/<title[\s|>]/.test(a)||(a=a.replace(/<head[^>]*>/,"$&<title></title>")):a=a.replace(/<html[^>]*>/,"$&<head><title></title></head>"),h&&(a=a.replace(/<head[^>]*?>/,"$&"+h)),a=a.replace(/<\/head\s*>/,f+"$&"),a=g+a):a=
c.docType+'<html dir="'+c.contentsLangDirection+'" lang="'+(c.contentsLanguage||b.langCode)+'"><head><title>'+this._.docTitle+"</title>"+h+f+"</head><body"+(c.bodyId?' id="'+c.bodyId+'"':"")+(c.bodyClass?' class="'+c.bodyClass+'"':"")+">"+a+"</body></html>";CKEDITOR.env.gecko&&(a=a.replace(/<body/,'<body contenteditable="true" '),2E4>CKEDITOR.env.version&&(a=a.replace(/<body[^>]*>/,"$&<\!-- cke-content-start --\>")));c='<script id="cke_actscrpt" type="text/javascript"'+(CKEDITOR.env.ie?' defer="defer" ':
"")+">var wasLoaded=0;function onload(){if(!wasLoaded)window.parent.CKEDITOR.tools.callFunction("+this._.frameLoadedHandler+",window);wasLoaded=1;}"+(CKEDITOR.env.ie?"onload();":'document.addEventListener("DOMContentLoaded", onload, false );')+"<\/script>";CKEDITOR.env.ie&&9>CKEDITOR.env.version&&(c+='<script id="cke_shimscrpt">window.parent.CKEDITOR.tools.enableHtml5Elements(document)<\/script>');h&&(CKEDITOR.env.ie&&10>CKEDITOR.env.version)&&(c+='<script id="cke_basetagscrpt">var baseTag = document.querySelector( "base" );baseTag.href = baseTag.href;<\/script>');
a=a.replace(/(?=\s*<\/(:?head)>)/,c);this.clearCustomData();this.clearListeners();b.fire("contentDomUnload");var i=this.getDocument();try{i.write(a)}catch(j){setTimeout(function(){i.write(a)},0)}}},getData:function(a){if(a)return this.getHtml();var a=this.editor,d=a.config,b=d.fullPage,c=b&&a.docType,e=b&&a.xmlDeclaration,g=this.getDocument(),b=b?g.getDocumentElement().getOuterHtml():g.getBody().getHtml();CKEDITOR.env.gecko&&d.enterMode!=CKEDITOR.ENTER_BR&&(b=b.replace(/<br>(?=\s*(:?$|<\/body>))/,
""));b=a.dataProcessor.toDataFormat(b);e&&(b=e+"\n"+b);c&&(b=c+"\n"+b);return b},focus:function(){this._.isLoadingData?this._.isPendingFocus=!0:j.baseProto.focus.call(this)},detach:function(){var a=this.editor,d=a.document,a=a.window.getFrame();j.baseProto.detach.call(this);this.clearCustomData();d.getDocumentElement().clearCustomData();a.clearCustomData();CKEDITOR.tools.removeFunction(this._.frameLoadedHandler);(d=a.removeCustomData("onResize"))&&d.removeListener();a.remove()}}})})();
CKEDITOR.config.disableObjectResizing=!1;CKEDITOR.config.disableNativeTableHandles=!0;CKEDITOR.config.disableNativeSpellChecker=!0;CKEDITOR.config.contentsCss=CKEDITOR.getUrl("contents.css");(function(){function e(b,a){a||(a=b.getSelection().getSelectedElement());if(a&&a.is("img")&&!a.data("cke-realelement")&&!a.isReadOnly())return a}function f(b){var a=b.getStyle("float");if("inherit"==a||"none"==a)a=0;a||(a=b.getAttribute("align"));return a}CKEDITOR.plugins.add("image",{requires:"dialog",init:function(b){if(!b.plugins.image2){CKEDITOR.dialog.add("image",this.path+"dialogs/image.js");var a="img[alt,!src]{border-style,border-width,float,height,margin,margin-bottom,margin-left,margin-right,margin-top,width}";
CKEDITOR.dialog.isTabEnabled(b,"image","advanced")&&(a="img[alt,dir,id,lang,longdesc,!src,title]{*}(*)");b.addCommand("image",new CKEDITOR.dialogCommand("image",{allowedContent:a,requiredContent:"img[alt,src]",contentTransformations:[["img{width}: sizeToStyle","img[width]: sizeToAttribute"],["img{float}: alignmentToStyle","img[align]: alignmentToAttribute"]]}));b.ui.addButton&&b.ui.addButton("Image",{label:b.lang.common.image,command:"image",toolbar:"insert,10"});b.on("doubleclick",function(b){var a=
b.data.element;a.is("img")&&(!a.data("cke-realelement")&&!a.isReadOnly())&&(b.data.dialog="image")});b.addMenuItems&&b.addMenuItems({image:{label:b.lang.image.menu,command:"image",group:"image"}});b.contextMenu&&b.contextMenu.addListener(function(a){if(e(b,a))return{image:CKEDITOR.TRISTATE_OFF}})}},afterInit:function(b){function a(a){var d=b.getCommand("justify"+a);if(d){if("left"==a||"right"==a)d.on("exec",function(d){var c=e(b),g;c&&(g=f(c),g==a?(c.removeStyle("float"),a==f(c)&&c.removeAttribute("align")):
c.setStyle("float",a),d.cancel())});d.on("refresh",function(d){var c=e(b);c&&(c=f(c),this.setState(c==a?CKEDITOR.TRISTATE_ON:"right"==a||"left"==a?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED),d.cancel())})}}b.plugins.image2||(a("left"),a("right"),a("center"),a("block"))}})})();CKEDITOR.config.image_removeLinkByEmptyURL=!0;(function(){function k(a,b){var e,f;b.on("refresh",function(a){var b=[i],c;for(c in a.data.states)b.push(a.data.states[c]);this.setState(CKEDITOR.tools.search(b,m)?m:i)},b,null,100);b.on("exec",function(b){e=a.getSelection();f=e.createBookmarks(1);b.data||(b.data={});b.data.done=!1},b,null,0);b.on("exec",function(){a.forceNextSelectionCheck();e.selectBookmarks(f)},b,null,100)}var i=CKEDITOR.TRISTATE_DISABLED,m=CKEDITOR.TRISTATE_OFF;CKEDITOR.plugins.add("indent",{init:function(a){var b=CKEDITOR.plugins.indent.genericDefinition;
k(a,a.addCommand("indent",new b(!0)));k(a,a.addCommand("outdent",new b));a.ui.addButton&&(a.ui.addButton("Indent",{label:a.lang.indent.indent,command:"indent",directional:!0,toolbar:"indent,20"}),a.ui.addButton("Outdent",{label:a.lang.indent.outdent,command:"outdent",directional:!0,toolbar:"indent,10"}));a.on("dirChanged",function(b){var f=a.createRange(),j=b.data.node;f.setStartBefore(j);f.setEndAfter(j);for(var l=new CKEDITOR.dom.walker(f),c;c=l.next();)if(c.type==CKEDITOR.NODE_ELEMENT)if(!c.equals(j)&&
c.getDirection()){f.setStartAfter(c);l=new CKEDITOR.dom.walker(f)}else{var d=a.config.indentClasses;if(d)for(var g=b.data.dir=="ltr"?["_rtl",""]:["","_rtl"],h=0;h<d.length;h++)if(c.hasClass(d[h]+g[0])){c.removeClass(d[h]+g[0]);c.addClass(d[h]+g[1])}d=c.getStyle("margin-right");g=c.getStyle("margin-left");d?c.setStyle("margin-left",d):c.removeStyle("margin-left");g?c.setStyle("margin-right",g):c.removeStyle("margin-right")}})}});CKEDITOR.plugins.indent={genericDefinition:function(a){this.isIndent=
!!a;this.startDisabled=!this.isIndent},specificDefinition:function(a,b,e){this.name=b;this.editor=a;this.jobs={};this.enterBr=a.config.enterMode==CKEDITOR.ENTER_BR;this.isIndent=!!e;this.relatedGlobal=e?"indent":"outdent";this.indentKey=e?9:CKEDITOR.SHIFT+9;this.database={}},registerCommands:function(a,b){a.on("pluginsLoaded",function(){for(var a in b)(function(a,b){var e=a.getCommand(b.relatedGlobal),c;for(c in b.jobs)e.on("exec",function(d){d.data.done||(a.fire("lockSnapshot"),b.execJob(a,c)&&(d.data.done=
!0),a.fire("unlockSnapshot"),CKEDITOR.dom.element.clearAllMarkers(b.database))},this,null,c),e.on("refresh",function(d){d.data.states||(d.data.states={});d.data.states[b.name+"@"+c]=b.refreshJob(a,c,d.data.path)},this,null,c);a.addFeature(b)})(this,b[a])})}};CKEDITOR.plugins.indent.genericDefinition.prototype={context:"p",exec:function(){}};CKEDITOR.plugins.indent.specificDefinition.prototype={execJob:function(a,b){var e=this.jobs[b];if(e.state!=i)return e.exec.call(this,a)},refreshJob:function(a,
b,e){b=this.jobs[b];b.state=a.activeFilter.checkFeature(this)?b.refresh.call(this,a,e):i;return b.state},getContext:function(a){return a.contains(this.context)}}})();(function(){function s(c){function f(b){for(var e=d.startContainer,a=d.endContainer;e&&!e.getParent().equals(b);)e=e.getParent();for(;a&&!a.getParent().equals(b);)a=a.getParent();if(!e||!a)return!1;for(var g=e,e=[],i=!1;!i;)g.equals(a)&&(i=!0),e.push(g),g=g.getNext();if(1>e.length)return!1;g=b.getParents(!0);for(a=0;a<g.length;a++)if(g[a].getName&&m[g[a].getName()]){b=g[a];break}for(var g=j.isIndent?1:-1,a=e[0],e=e[e.length-1],i=CKEDITOR.plugins.list.listToArray(b,n),l=i[e.getCustomData("listarray_index")].indent,
a=a.getCustomData("listarray_index");a<=e.getCustomData("listarray_index");a++)if(i[a].indent+=g,0<g){var h=i[a].parent;i[a].parent=new CKEDITOR.dom.element(h.getName(),h.getDocument())}for(a=e.getCustomData("listarray_index")+1;a<i.length&&i[a].indent>l;a++)i[a].indent+=g;e=CKEDITOR.plugins.list.arrayToList(i,n,null,c.config.enterMode,b.getDirection());if(!j.isIndent){var f;if((f=b.getParent())&&f.is("li"))for(var g=e.listNode.getChildren(),o=[],k,a=g.count()-1;0<=a;a--)(k=g.getItem(a))&&(k.is&&
k.is("li"))&&o.push(k)}e&&e.listNode.replace(b);if(o&&o.length)for(a=0;a<o.length;a++){for(k=b=o[a];(k=k.getNext())&&k.is&&k.getName()in m;)CKEDITOR.env.needsNbspFiller&&!b.getFirst(t)&&b.append(d.document.createText(" ")),b.append(k);b.insertAfter(f)}e&&c.fire("contentDomInvalidated");return!0}for(var j=this,n=this.database,m=this.context,l=c.getSelection(),l=(l&&l.getRanges()).createIterator(),d;d=l.getNextRange();){for(var b=d.getCommonAncestor();b&&!(b.type==CKEDITOR.NODE_ELEMENT&&m[b.getName()]);)b=
b.getParent();b||(b=d.startPath().contains(m))&&d.setEndAt(b,CKEDITOR.POSITION_BEFORE_END);if(!b){var h=d.getEnclosedNode();h&&(h.type==CKEDITOR.NODE_ELEMENT&&h.getName()in m)&&(d.setStartAt(h,CKEDITOR.POSITION_AFTER_START),d.setEndAt(h,CKEDITOR.POSITION_BEFORE_END),b=h)}b&&(d.startContainer.type==CKEDITOR.NODE_ELEMENT&&d.startContainer.getName()in m)&&(h=new CKEDITOR.dom.walker(d),h.evaluator=p,d.startContainer=h.next());b&&(d.endContainer.type==CKEDITOR.NODE_ELEMENT&&d.endContainer.getName()in m)&&
(h=new CKEDITOR.dom.walker(d),h.evaluator=p,d.endContainer=h.previous());if(b)return f(b)}return 0}function p(c){return c.type==CKEDITOR.NODE_ELEMENT&&c.is("li")}function t(c){return u(c)&&v(c)}var u=CKEDITOR.dom.walker.whitespaces(!0),v=CKEDITOR.dom.walker.bookmark(!1,!0),q=CKEDITOR.TRISTATE_DISABLED,r=CKEDITOR.TRISTATE_OFF;CKEDITOR.plugins.add("indentlist",{requires:"indent",init:function(c){function f(c){j.specificDefinition.apply(this,arguments);this.requiredContent=["ul","ol"];c.on("key",function(f){if("wysiwyg"==
c.mode&&f.data.keyCode==this.indentKey){var l=this.getContext(c.elementPath());if(l&&(!this.isIndent||!CKEDITOR.plugins.indentList.firstItemInPath(this.context,c.elementPath(),l)))c.execCommand(this.relatedGlobal),f.cancel()}},this);this.jobs[this.isIndent?10:30]={refresh:this.isIndent?function(c,f){var d=this.getContext(f),b=CKEDITOR.plugins.indentList.firstItemInPath(this.context,f,d);return!d||!this.isIndent||b?q:r}:function(c,f){return!this.getContext(f)||this.isIndent?q:r},exec:CKEDITOR.tools.bind(s,
this)}}var j=CKEDITOR.plugins.indent;j.registerCommands(c,{indentlist:new f(c,"indentlist",!0),outdentlist:new f(c,"outdentlist")});CKEDITOR.tools.extend(f.prototype,j.specificDefinition.prototype,{context:{ol:1,ul:1}})}});CKEDITOR.plugins.indentList={};CKEDITOR.plugins.indentList.firstItemInPath=function(c,f,j){var n=f.contains(p);j||(j=f.contains(c));return j&&n&&n.equals(j.getFirst(p))}})();(function(){function g(a,b){var c=j.exec(a),d=j.exec(b);if(c){if(!c[2]&&"px"==d[2])return d[1];if("px"==c[2]&&!d[2])return d[1]+"px"}return b}var i=CKEDITOR.htmlParser.cssStyle,h=CKEDITOR.tools.cssLength,j=/^((?:\d*(?:\.\d+))|(?:\d+))(.*)?$/i,k={elements:{$:function(a){var b=a.attributes;if((b=(b=(b=b&&b["data-cke-realelement"])&&new CKEDITOR.htmlParser.fragment.fromHtml(decodeURIComponent(b)))&&b.children[0])&&a.attributes["data-cke-resizable"]){var c=(new i(a)).rules,a=b.attributes,d=c.width,c=
c.height;d&&(a.width=g(a.width,d));c&&(a.height=g(a.height,c))}return b}}};CKEDITOR.plugins.add("fakeobjects",{init:function(a){a.filter.allow("img[!data-cke-realelement,src,alt,title](*){*}","fakeobjects")},afterInit:function(a){(a=(a=a.dataProcessor)&&a.htmlFilter)&&a.addRules(k,{applyToAll:!0})}});CKEDITOR.editor.prototype.createFakeElement=function(a,b,c,d){var e=this.lang.fakeobjects,e=e[c]||e.unknown,b={"class":b,"data-cke-realelement":encodeURIComponent(a.getOuterHtml()),"data-cke-real-node-type":a.type,
alt:e,title:e,align:a.getAttribute("align")||""};CKEDITOR.env.hc||(b.src=CKEDITOR.tools.transparentImageData);c&&(b["data-cke-real-element-type"]=c);d&&(b["data-cke-resizable"]=d,c=new i,d=a.getAttribute("width"),a=a.getAttribute("height"),d&&(c.rules.width=h(d)),a&&(c.rules.height=h(a)),c.populate(b));return this.document.createElement("img",{attributes:b})};CKEDITOR.editor.prototype.createFakeParserElement=function(a,b,c,d){var e=this.lang.fakeobjects,e=e[c]||e.unknown,f;f=new CKEDITOR.htmlParser.basicWriter;
a.writeHtml(f);f=f.getHtml();b={"class":b,"data-cke-realelement":encodeURIComponent(f),"data-cke-real-node-type":a.type,alt:e,title:e,align:a.attributes.align||""};CKEDITOR.env.hc||(b.src=CKEDITOR.tools.transparentImageData);c&&(b["data-cke-real-element-type"]=c);d&&(b["data-cke-resizable"]=d,d=a.attributes,a=new i,c=d.width,d=d.height,void 0!=c&&(a.rules.width=h(c)),void 0!=d&&(a.rules.height=h(d)),a.populate(b));return new CKEDITOR.htmlParser.element("img",b)};CKEDITOR.editor.prototype.restoreRealElement=
function(a){if(a.data("cke-real-node-type")!=CKEDITOR.NODE_ELEMENT)return null;var b=CKEDITOR.dom.element.createFromHtml(decodeURIComponent(a.data("cke-realelement")),this.document);if(a.data("cke-resizable")){var c=a.getStyle("width"),a=a.getStyle("height");c&&b.setAttribute("width",g(b.getAttribute("width"),c));a&&b.setAttribute("height",g(b.getAttribute("height"),a))}return b}})();(function(){function m(c){return c.replace(/'/g,"\\$&")}function n(c){for(var b,a=c.length,f=[],e=0;e<a;e++)b=c.charCodeAt(e),f.push(b);return"String.fromCharCode("+f.join(",")+")"}function o(c,b){var a=c.plugins.link,f=a.compiledProtectionFunction.params,e,d;d=[a.compiledProtectionFunction.name,"("];for(var g=0;g<f.length;g++)a=f[g].toLowerCase(),e=b[a],0<g&&d.push(","),d.push("'",e?m(encodeURIComponent(b[a])):"","'");d.push(")");return d.join("")}function l(c){var c=c.config.emailProtection||"",
b;c&&"encode"!=c&&(b={},c.replace(/^([^(]+)\(([^)]+)\)$/,function(a,c,e){b.name=c;b.params=[];e.replace(/[^,\s]+/g,function(a){b.params.push(a)})}));return b}CKEDITOR.plugins.add("link",{requires:"dialog,fakeobjects",onLoad:function(){function c(b){return a.replace(/%1/g,"rtl"==b?"right":"left").replace(/%2/g,"cke_contents_"+b)}var b="background:url("+CKEDITOR.getUrl(this.path+"images"+(CKEDITOR.env.hidpi?"/hidpi":"")+"/anchor.png")+") no-repeat %1 center;border:1px dotted #00f;background-size:16px;",
a=".%2 a.cke_anchor,.%2 a.cke_anchor_empty,.cke_editable.%2 a[name],.cke_editable.%2 a[data-cke-saved-name]{"+b+"padding-%1:18px;cursor:auto;}.%2 img.cke_anchor{"+b+"width:16px;min-height:15px;height:1.15em;vertical-align:text-bottom;}";CKEDITOR.addCss(c("ltr")+c("rtl"))},init:function(c){var b="a[!href]";CKEDITOR.dialog.isTabEnabled(c,"link","advanced")&&(b=b.replace("]",",accesskey,charset,dir,id,lang,name,rel,tabindex,title,type]{*}(*)"));CKEDITOR.dialog.isTabEnabled(c,"link","target")&&(b=b.replace("]",
",target,onclick]"));c.addCommand("link",new CKEDITOR.dialogCommand("link",{allowedContent:b,requiredContent:"a[href]"}));c.addCommand("anchor",new CKEDITOR.dialogCommand("anchor",{allowedContent:"a[!name,id]",requiredContent:"a[name]"}));c.addCommand("unlink",new CKEDITOR.unlinkCommand);c.addCommand("removeAnchor",new CKEDITOR.removeAnchorCommand);c.setKeystroke(CKEDITOR.CTRL+76,"link");c.ui.addButton&&(c.ui.addButton("Link",{label:c.lang.link.toolbar,command:"link",toolbar:"links,10"}),c.ui.addButton("Unlink",
{label:c.lang.link.unlink,command:"unlink",toolbar:"links,20"}),c.ui.addButton("Anchor",{label:c.lang.link.anchor.toolbar,command:"anchor",toolbar:"links,30"}));CKEDITOR.dialog.add("link",this.path+"dialogs/link.js");CKEDITOR.dialog.add("anchor",this.path+"dialogs/anchor.js");c.on("doubleclick",function(a){var b=CKEDITOR.plugins.link.getSelectedLink(c)||a.data.element;if(!b.isReadOnly())if(b.is("a")){a.data.dialog=b.getAttribute("name")&&(!b.getAttribute("href")||!b.getChildCount())?"anchor":"link";
a.data.link=b}else if(CKEDITOR.plugins.link.tryRestoreFakeAnchor(c,b))a.data.dialog="anchor"},null,null,0);c.on("doubleclick",function(a){a.data.dialog in{link:1,anchor:1}&&a.data.link&&c.getSelection().selectElement(a.data.link)},null,null,20);c.addMenuItems&&c.addMenuItems({anchor:{label:c.lang.link.anchor.menu,command:"anchor",group:"anchor",order:1},removeAnchor:{label:c.lang.link.anchor.remove,command:"removeAnchor",group:"anchor",order:5},link:{label:c.lang.link.menu,command:"link",group:"link",
order:1},unlink:{label:c.lang.link.unlink,command:"unlink",group:"link",order:5}});c.contextMenu&&c.contextMenu.addListener(function(a){if(!a||a.isReadOnly())return null;a=CKEDITOR.plugins.link.tryRestoreFakeAnchor(c,a);if(!a&&!(a=CKEDITOR.plugins.link.getSelectedLink(c)))return null;var b={};a.getAttribute("href")&&a.getChildCount()&&(b={link:CKEDITOR.TRISTATE_OFF,unlink:CKEDITOR.TRISTATE_OFF});if(a&&a.hasAttribute("name"))b.anchor=b.removeAnchor=CKEDITOR.TRISTATE_OFF;return b});this.compiledProtectionFunction=
l(c)},afterInit:function(c){c.dataProcessor.dataFilter.addRules({elements:{a:function(a){return!a.attributes.name?null:!a.children.length?c.createFakeParserElement(a,"cke_anchor","anchor"):null}}});var b=c._.elementsPath&&c._.elementsPath.filters;b&&b.push(function(a,b){if("a"==b&&(CKEDITOR.plugins.link.tryRestoreFakeAnchor(c,a)||a.getAttribute("name")&&(!a.getAttribute("href")||!a.getChildCount())))return"anchor"})}});var p=/^javascript:/,q=/^mailto:([^?]+)(?:\?(.+))?$/,r=/subject=([^;?:@&=$,\/]*)/,
s=/body=([^;?:@&=$,\/]*)/,t=/^#(.*)$/,u=/^((?:http|https|ftp|news):\/\/)?(.*)$/,v=/^(_(?:self|top|parent|blank))$/,w=/^javascript:void\(location\.href='mailto:'\+String\.fromCharCode\(([^)]+)\)(?:\+'(.*)')?\)$/,x=/^javascript:([^(]+)\(([^)]+)\)$/,y=/\s*window.open\(\s*this\.href\s*,\s*(?:'([^']*)'|null)\s*,\s*'([^']*)'\s*\)\s*;\s*return\s*false;*\s*/,z=/(?:^|,)([^=]+)=(\d+|yes|no)/gi,j={id:"advId",dir:"advLangDir",accessKey:"advAccessKey",name:"advName",lang:"advLangCode",tabindex:"advTabIndex",title:"advTitle",
type:"advContentType","class":"advCSSClasses",charset:"advCharset",style:"advStyles",rel:"advRel"};CKEDITOR.plugins.link={getSelectedLink:function(c){var b=c.getSelection(),a=b.getSelectedElement();return a&&a.is("a")?a:(b=b.getRanges()[0])?(b.shrink(CKEDITOR.SHRINK_TEXT),c.elementPath(b.getCommonAncestor()).contains("a",1)):null},getEditorAnchors:function(c){for(var b=c.editable(),a=b.isInline()&&!c.plugins.divarea?c.document:b,b=a.getElementsByTag("a"),a=a.getElementsByTag("img"),f=[],e=0,d;d=b.getItem(e++);)if(d.data("cke-saved-name")||
d.hasAttribute("name"))f.push({name:d.data("cke-saved-name")||d.getAttribute("name"),id:d.getAttribute("id")});for(e=0;d=a.getItem(e++);)(d=this.tryRestoreFakeAnchor(c,d))&&f.push({name:d.getAttribute("name"),id:d.getAttribute("id")});return f},fakeAnchor:!0,tryRestoreFakeAnchor:function(c,b){if(b&&b.data("cke-real-element-type")&&"anchor"==b.data("cke-real-element-type")){var a=c.restoreRealElement(b);if(a.data("cke-saved-name"))return a}},parseLinkAttributes:function(c,b){var a=b&&(b.data("cke-saved-href")||
b.getAttribute("href"))||"",f=c.plugins.link.compiledProtectionFunction,e=c.config.emailProtection,d,g={};a.match(p)&&("encode"==e?a=a.replace(w,function(a,b,c){return"mailto:"+String.fromCharCode.apply(String,b.split(","))+(c&&c.replace(/\\'/g,"'"))}):e&&a.replace(x,function(a,b,c){if(b==f.name){g.type="email";for(var a=g.email={},b=/(^')|('$)/g,c=c.match(/[^,\s]+/g),d=c.length,e,h,i=0;i<d;i++)e=decodeURIComponent,h=c[i].replace(b,"").replace(/\\'/g,"'"),h=e(h),e=f.params[i].toLowerCase(),a[e]=h;
a.address=[a.name,a.domain].join("@")}}));if(!g.type)if(e=a.match(t))g.type="anchor",g.anchor={},g.anchor.name=g.anchor.id=e[1];else if(e=a.match(q)){d=a.match(r);a=a.match(s);g.type="email";var i=g.email={};i.address=e[1];d&&(i.subject=decodeURIComponent(d[1]));a&&(i.body=decodeURIComponent(a[1]))}else if(a&&(d=a.match(u)))g.type="url",g.url={},g.url.protocol=d[1],g.url.url=d[2];if(b){if(a=b.getAttribute("target"))g.target={type:a.match(v)?a:"frame",name:a};else if(a=(a=b.data("cke-pa-onclick")||
b.getAttribute("onclick"))&&a.match(y))for(g.target={type:"popup",name:a[1]};e=z.exec(a[2]);)("yes"==e[2]||"1"==e[2])&&!(e[1]in{height:1,width:1,top:1,left:1})?g.target[e[1]]=!0:isFinite(e[2])&&(g.target[e[1]]=e[2]);var a={},h;for(h in j)(e=b.getAttribute(h))&&(a[j[h]]=e);if(h=b.data("cke-saved-name")||a.advName)a.advName=h;CKEDITOR.tools.isEmpty(a)||(g.advanced=a)}return g},getLinkAttributes:function(c,b){var a=c.config.emailProtection||"",f={};switch(b.type){case "url":var a=b.url&&void 0!=b.url.protocol?
b.url.protocol:"http://",e=b.url&&CKEDITOR.tools.trim(b.url.url)||"";f["data-cke-saved-href"]=0===e.indexOf("/")?e:a+e;break;case "anchor":a=b.anchor&&b.anchor.id;f["data-cke-saved-href"]="#"+(b.anchor&&b.anchor.name||a||"");break;case "email":var d=b.email,e=d.address;switch(a){case "":case "encode":var g=encodeURIComponent(d.subject||""),i=encodeURIComponent(d.body||""),d=[];g&&d.push("subject="+g);i&&d.push("body="+i);d=d.length?"?"+d.join("&"):"";"encode"==a?(a=["javascript:void(location.href='mailto:'+",
n(e)],d&&a.push("+'",m(d),"'"),a.push(")")):a=["mailto:",e,d];break;default:a=e.split("@",2),d.name=a[0],d.domain=a[1],a=["javascript:",o(c,d)]}f["data-cke-saved-href"]=a.join("")}if(b.target)if("popup"==b.target.type){for(var a=["window.open(this.href, '",b.target.name||"","', '"],h="resizable status location toolbar menubar fullscreen scrollbars dependent".split(" "),e=h.length,g=function(a){b.target[a]&&h.push(a+"="+b.target[a])},d=0;d<e;d++)h[d]+=b.target[h[d]]?"=yes":"=no";g("width");g("left");
g("height");g("top");a.push(h.join(","),"'); return false;");f["data-cke-pa-onclick"]=a.join("")}else"notSet"!=b.target.type&&b.target.name&&(f.target=b.target.name);if(b.advanced){for(var k in j)(a=b.advanced[j[k]])&&(f[k]=a);f.name&&(f["data-cke-saved-name"]=f.name)}f["data-cke-saved-href"]&&(f.href=f["data-cke-saved-href"]);k=CKEDITOR.tools.extend({target:1,onclick:1,"data-cke-pa-onclick":1,"data-cke-saved-name":1},j);for(var l in f)delete k[l];return{set:f,removed:CKEDITOR.tools.objectKeys(k)}}};
CKEDITOR.unlinkCommand=function(){};CKEDITOR.unlinkCommand.prototype={exec:function(c){var b=new CKEDITOR.style({element:"a",type:CKEDITOR.STYLE_INLINE,alwaysRemoveElement:1});c.removeStyle(b)},refresh:function(c,b){var a=b.lastElement&&b.lastElement.getAscendant("a",!0);a&&"a"==a.getName()&&a.getAttribute("href")&&a.getChildCount()?this.setState(CKEDITOR.TRISTATE_OFF):this.setState(CKEDITOR.TRISTATE_DISABLED)},contextSensitive:1,startDisabled:1,requiredContent:"a[href]"};CKEDITOR.removeAnchorCommand=
function(){};CKEDITOR.removeAnchorCommand.prototype={exec:function(c){var b=c.getSelection(),a=b.createBookmarks(),f;if(b&&(f=b.getSelectedElement())&&(!f.getChildCount()?CKEDITOR.plugins.link.tryRestoreFakeAnchor(c,f):f.is("a")))f.remove(1);else if(f=CKEDITOR.plugins.link.getSelectedLink(c))f.hasAttribute("href")?(f.removeAttributes({name:1,"data-cke-saved-name":1}),f.removeClass("cke_anchor")):f.remove(1);b.selectBookmarks(a)},requiredContent:"a[name]"};CKEDITOR.tools.extend(CKEDITOR.config,{linkShowAdvancedTab:!0,
linkShowTargetTab:!0})})();(function(){function E(c,j,e){function b(b){if((d=a[b?"getFirst":"getLast"]())&&(!d.is||!d.isBlockBoundary())&&(m=j.root[b?"getPrevious":"getNext"](CKEDITOR.dom.walker.invisible(!0)))&&(!m.is||!m.isBlockBoundary({br:1})))c.document.createElement("br")[b?"insertBefore":"insertAfter"](d)}for(var k=CKEDITOR.plugins.list.listToArray(j.root,e),g=[],h=0;h<j.contents.length;h++){var f=j.contents[h];if((f=f.getAscendant("li",!0))&&!f.getCustomData("list_item_processed"))g.push(f),CKEDITOR.dom.element.setMarker(e,
f,"list_item_processed",!0)}f=null;for(h=0;h<g.length;h++)f=g[h].getCustomData("listarray_index"),k[f].indent=-1;for(h=f+1;h<k.length;h++)if(k[h].indent>k[h-1].indent+1){g=k[h-1].indent+1-k[h].indent;for(f=k[h].indent;k[h]&&k[h].indent>=f;)k[h].indent+=g,h++;h--}var a=CKEDITOR.plugins.list.arrayToList(k,e,null,c.config.enterMode,j.root.getAttribute("dir")).listNode,d,m;b(!0);b();a.replace(j.root);c.fire("contentDomInvalidated")}function x(c,j){this.name=c;this.context=this.type=j;this.allowedContent=
j+" li";this.requiredContent=j}function A(c,j,e,b){for(var k,g;k=c[b?"getLast":"getFirst"](F);)(g=k.getDirection(1))!==j.getDirection(1)&&k.setAttribute("dir",g),k.remove(),e?k[b?"insertBefore":"insertAfter"](e):j.append(k,b)}function B(c){var j;(j=function(e){var b=c[e?"getPrevious":"getNext"](q);b&&(b.type==CKEDITOR.NODE_ELEMENT&&b.is(c.getName()))&&(A(c,b,null,!e),c.remove(),c=b)})();j(1)}function C(c){return c.type==CKEDITOR.NODE_ELEMENT&&(c.getName()in CKEDITOR.dtd.$block||c.getName()in CKEDITOR.dtd.$listItem)&&
CKEDITOR.dtd[c.getName()]["#"]}function y(c,j,e){c.fire("saveSnapshot");e.enlarge(CKEDITOR.ENLARGE_LIST_ITEM_CONTENTS);var b=e.extractContents();j.trim(!1,!0);var k=j.createBookmark(),g=new CKEDITOR.dom.elementPath(j.startContainer),h=g.block,g=g.lastElement.getAscendant("li",1)||h,f=new CKEDITOR.dom.elementPath(e.startContainer),a=f.contains(CKEDITOR.dtd.$listItem),f=f.contains(CKEDITOR.dtd.$list);h?(h=h.getBogus())&&h.remove():f&&(h=f.getPrevious(q))&&v(h)&&h.remove();(h=b.getLast())&&(h.type==
CKEDITOR.NODE_ELEMENT&&h.is("br"))&&h.remove();(h=j.startContainer.getChild(j.startOffset))?b.insertBefore(h):j.startContainer.append(b);if(a&&(b=w(a)))g.contains(a)?(A(b,a.getParent(),a),b.remove()):g.append(b);for(;e.checkStartOfBlock()&&e.checkEndOfBlock();){f=e.startPath();b=f.block;if(!b)break;b.is("li")&&(g=b.getParent(),b.equals(g.getLast(q))&&b.equals(g.getFirst(q))&&(b=g));e.moveToPosition(b,CKEDITOR.POSITION_BEFORE_START);b.remove()}e=e.clone();b=c.editable();e.setEndAt(b,CKEDITOR.POSITION_BEFORE_END);
e=new CKEDITOR.dom.walker(e);e.evaluator=function(a){return q(a)&&!v(a)};(e=e.next())&&(e.type==CKEDITOR.NODE_ELEMENT&&e.getName()in CKEDITOR.dtd.$list)&&B(e);j.moveToBookmark(k);j.select();c.fire("saveSnapshot")}function w(c){return(c=c.getLast(q))&&c.type==CKEDITOR.NODE_ELEMENT&&c.getName()in r?c:null}var r={ol:1,ul:1},G=CKEDITOR.dom.walker.whitespaces(),D=CKEDITOR.dom.walker.bookmark(),q=function(c){return!(G(c)||D(c))},v=CKEDITOR.dom.walker.bogus();CKEDITOR.plugins.list={listToArray:function(c,
j,e,b,k){if(!r[c.getName()])return[];b||(b=0);e||(e=[]);for(var g=0,h=c.getChildCount();g<h;g++){var f=c.getChild(g);f.type==CKEDITOR.NODE_ELEMENT&&f.getName()in CKEDITOR.dtd.$list&&CKEDITOR.plugins.list.listToArray(f,j,e,b+1);if("li"==f.$.nodeName.toLowerCase()){var a={parent:c,indent:b,element:f,contents:[]};k?a.grandparent=k:(a.grandparent=c.getParent(),a.grandparent&&"li"==a.grandparent.$.nodeName.toLowerCase()&&(a.grandparent=a.grandparent.getParent()));j&&CKEDITOR.dom.element.setMarker(j,f,
"listarray_index",e.length);e.push(a);for(var d=0,m=f.getChildCount(),i;d<m;d++)i=f.getChild(d),i.type==CKEDITOR.NODE_ELEMENT&&r[i.getName()]?CKEDITOR.plugins.list.listToArray(i,j,e,b+1,a.grandparent):a.contents.push(i)}}return e},arrayToList:function(c,j,e,b,k){e||(e=0);if(!c||c.length<e+1)return null;for(var g,h=c[e].parent.getDocument(),f=new CKEDITOR.dom.documentFragment(h),a=null,d=e,m=Math.max(c[e].indent,0),i=null,n,l,p=b==CKEDITOR.ENTER_P?"p":"div";;){var o=c[d];g=o.grandparent;n=o.element.getDirection(1);
if(o.indent==m){if(!a||c[d].parent.getName()!=a.getName())a=c[d].parent.clone(!1,1),k&&a.setAttribute("dir",k),f.append(a);i=a.append(o.element.clone(0,1));n!=a.getDirection(1)&&i.setAttribute("dir",n);for(g=0;g<o.contents.length;g++)i.append(o.contents[g].clone(1,1));d++}else if(o.indent==Math.max(m,0)+1)o=c[d-1].element.getDirection(1),d=CKEDITOR.plugins.list.arrayToList(c,null,d,b,o!=n?n:null),!i.getChildCount()&&(CKEDITOR.env.needsNbspFiller&&!(7<h.$.documentMode))&&i.append(h.createText(" ")),
i.append(d.listNode),d=d.nextIndex;else if(-1==o.indent&&!e&&g){r[g.getName()]?(i=o.element.clone(!1,!0),n!=g.getDirection(1)&&i.setAttribute("dir",n)):i=new CKEDITOR.dom.documentFragment(h);var a=g.getDirection(1)!=n,u=o.element,z=u.getAttribute("class"),v=u.getAttribute("style"),w=i.type==CKEDITOR.NODE_DOCUMENT_FRAGMENT&&(b!=CKEDITOR.ENTER_BR||a||v||z),s,x=o.contents.length,t;for(g=0;g<x;g++)if(s=o.contents[g],D(s)&&1<x)w?t=s.clone(1,1):i.append(s.clone(1,1));else if(s.type==CKEDITOR.NODE_ELEMENT&&
s.isBlockBoundary()){a&&!s.getDirection()&&s.setAttribute("dir",n);l=s;var y=u.getAttribute("style");y&&l.setAttribute("style",y.replace(/([^;])$/,"$1;")+(l.getAttribute("style")||""));z&&s.addClass(z);l=null;t&&(i.append(t),t=null);i.append(s.clone(1,1))}else w?(l||(l=h.createElement(p),i.append(l),a&&l.setAttribute("dir",n)),v&&l.setAttribute("style",v),z&&l.setAttribute("class",z),t&&(l.append(t),t=null),l.append(s.clone(1,1))):i.append(s.clone(1,1));t&&((l||i).append(t),t=null);i.type==CKEDITOR.NODE_DOCUMENT_FRAGMENT&&
d!=c.length-1&&(CKEDITOR.env.needsBrFiller&&(n=i.getLast())&&(n.type==CKEDITOR.NODE_ELEMENT&&n.is("br"))&&n.remove(),n=i.getLast(q),(!n||!(n.type==CKEDITOR.NODE_ELEMENT&&n.is(CKEDITOR.dtd.$block)))&&i.append(h.createElement("br")));n=i.$.nodeName.toLowerCase();("div"==n||"p"==n)&&i.appendBogus();f.append(i);a=null;d++}else return null;l=null;if(c.length<=d||Math.max(c[d].indent,0)<m)break}if(j)for(c=f.getFirst();c;){if(c.type==CKEDITOR.NODE_ELEMENT&&(CKEDITOR.dom.element.clearMarkers(j,c),c.getName()in
CKEDITOR.dtd.$listItem&&(e=c,h=k=b=void 0,b=e.getDirection()))){for(k=e.getParent();k&&!(h=k.getDirection());)k=k.getParent();b==h&&e.removeAttribute("dir")}c=c.getNextSourceNode()}return{listNode:f,nextIndex:d}}};var H=/^h[1-6]$/,F=CKEDITOR.dom.walker.nodeType(CKEDITOR.NODE_ELEMENT);x.prototype={exec:function(c){this.refresh(c,c.elementPath());var j=c.config,e=c.getSelection(),b=e&&e.getRanges();if(this.state==CKEDITOR.TRISTATE_OFF){var k=c.editable();if(k.getFirst(q)){var g=1==b.length&&b[0];(j=
g&&g.getEnclosedNode())&&(j.is&&this.type==j.getName())&&this.setState(CKEDITOR.TRISTATE_ON)}else j.enterMode==CKEDITOR.ENTER_BR?k.appendBogus():b[0].fixBlock(1,j.enterMode==CKEDITOR.ENTER_P?"p":"div"),e.selectRanges(b)}for(var j=e.createBookmarks(!0),k=[],h={},b=b.createIterator(),f=0;(g=b.getNextRange())&&++f;){var a=g.getBoundaryNodes(),d=a.startNode,m=a.endNode;d.type==CKEDITOR.NODE_ELEMENT&&"td"==d.getName()&&g.setStartAt(a.startNode,CKEDITOR.POSITION_AFTER_START);m.type==CKEDITOR.NODE_ELEMENT&&
"td"==m.getName()&&g.setEndAt(a.endNode,CKEDITOR.POSITION_BEFORE_END);g=g.createIterator();for(g.forceBrBreak=this.state==CKEDITOR.TRISTATE_OFF;a=g.getNextParagraph();)if(!a.getCustomData("list_block")){CKEDITOR.dom.element.setMarker(h,a,"list_block",1);for(var i=c.elementPath(a),d=i.elements,m=0,i=i.blockLimit,n,l=d.length-1;0<=l&&(n=d[l]);l--)if(r[n.getName()]&&i.contains(n)){i.removeCustomData("list_group_object_"+f);(d=n.getCustomData("list_group_object"))?d.contents.push(a):(d={root:n,contents:[a]},
k.push(d),CKEDITOR.dom.element.setMarker(h,n,"list_group_object",d));m=1;break}m||(m=i,m.getCustomData("list_group_object_"+f)?m.getCustomData("list_group_object_"+f).contents.push(a):(d={root:m,contents:[a]},CKEDITOR.dom.element.setMarker(h,m,"list_group_object_"+f,d),k.push(d)))}}for(n=[];0<k.length;)if(d=k.shift(),this.state==CKEDITOR.TRISTATE_OFF)if(r[d.root.getName()]){b=c;f=d;d=h;g=n;m=CKEDITOR.plugins.list.listToArray(f.root,d);i=[];for(a=0;a<f.contents.length;a++)if(l=f.contents[a],(l=l.getAscendant("li",
!0))&&!l.getCustomData("list_item_processed"))i.push(l),CKEDITOR.dom.element.setMarker(d,l,"list_item_processed",!0);for(var l=f.root.getDocument(),p=void 0,o=void 0,a=0;a<i.length;a++){var u=i[a].getCustomData("listarray_index"),p=m[u].parent;p.is(this.type)||(o=l.createElement(this.type),p.copyAttributes(o,{start:1,type:1}),o.removeStyle("list-style-type"),m[u].parent=o)}d=CKEDITOR.plugins.list.arrayToList(m,d,null,b.config.enterMode);m=void 0;i=d.listNode.getChildCount();for(a=0;a<i&&(m=d.listNode.getChild(a));a++)m.getName()==
this.type&&g.push(m);d.listNode.replace(f.root);b.fire("contentDomInvalidated")}else{m=c;a=d;g=n;i=a.contents;b=a.root.getDocument();f=[];1==i.length&&i[0].equals(a.root)&&(d=b.createElement("div"),i[0].moveChildren&&i[0].moveChildren(d),i[0].append(d),i[0]=d);a=a.contents[0].getParent();for(l=0;l<i.length;l++)a=a.getCommonAncestor(i[l].getParent());p=m.config.useComputedState;m=d=void 0;p=void 0===p||p;for(l=0;l<i.length;l++)for(o=i[l];u=o.getParent();){if(u.equals(a)){f.push(o);!m&&o.getDirection()&&
(m=1);o=o.getDirection(p);null!==d&&(d=d&&d!=o?null:o);break}o=u}if(!(1>f.length)){i=f[f.length-1].getNext();l=b.createElement(this.type);g.push(l);for(p=g=void 0;f.length;)g=f.shift(),p=b.createElement("li"),g.is("pre")||H.test(g.getName())||"false"==g.getAttribute("contenteditable")?g.appendTo(p):(g.copyAttributes(p),d&&g.getDirection()&&(p.removeStyle("direction"),p.removeAttribute("dir")),g.moveChildren(p),g.remove()),p.appendTo(l);d&&m&&l.setAttribute("dir",d);i?l.insertBefore(i):l.appendTo(a)}}else this.state==
CKEDITOR.TRISTATE_ON&&r[d.root.getName()]&&E.call(this,c,d,h);for(l=0;l<n.length;l++)B(n[l]);CKEDITOR.dom.element.clearAllMarkers(h);e.selectBookmarks(j);c.focus()},refresh:function(c,j){var e=j.contains(r,1),b=j.blockLimit||j.root;e&&b.contains(e)?this.setState(e.is(this.type)?CKEDITOR.TRISTATE_ON:CKEDITOR.TRISTATE_OFF):this.setState(CKEDITOR.TRISTATE_OFF)}};CKEDITOR.plugins.add("list",{requires:"indentlist",init:function(c){c.blockless||(c.addCommand("numberedlist",new x("numberedlist","ol")),c.addCommand("bulletedlist",
new x("bulletedlist","ul")),c.ui.addButton&&(c.ui.addButton("NumberedList",{label:c.lang.list.numberedlist,command:"numberedlist",directional:!0,toolbar:"list,10"}),c.ui.addButton("BulletedList",{label:c.lang.list.bulletedlist,command:"bulletedlist",directional:!0,toolbar:"list,20"})),c.on("key",function(j){var e=j.data.domEvent.getKey();if(c.mode=="wysiwyg"&&e in{8:1,46:1}){var b=c.getSelection().getRanges()[0],k=b&&b.startPath();if(b&&b.collapsed){var g=e==8,h=c.editable(),f=new CKEDITOR.dom.walker(b.clone());
f.evaluator=function(a){return q(a)&&!v(a)};f.guard=function(a,b){return!(b&&a.type==CKEDITOR.NODE_ELEMENT&&a.is("table"))};e=b.clone();if(g){var a,d;if((a=k.contains(r))&&b.checkBoundaryOfElement(a,CKEDITOR.START)&&(a=a.getParent())&&a.is("li")&&(a=w(a))){d=a;a=a.getPrevious(q);e.moveToPosition(a&&v(a)?a:d,CKEDITOR.POSITION_BEFORE_START)}else{f.range.setStartAt(h,CKEDITOR.POSITION_AFTER_START);f.range.setEnd(b.startContainer,b.startOffset);if((a=f.previous())&&a.type==CKEDITOR.NODE_ELEMENT&&(a.getName()in
r||a.is("li"))){if(!a.is("li")){f.range.selectNodeContents(a);f.reset();f.evaluator=C;a=f.previous()}d=a;e.moveToElementEditEnd(d)}}if(d){y(c,e,b);j.cancel()}else if((e=k.contains(r))&&b.checkBoundaryOfElement(e,CKEDITOR.START)){d=e.getFirst(q);if(b.checkBoundaryOfElement(d,CKEDITOR.START)){a=e.getPrevious(q);if(w(d)){if(a){b.moveToElementEditEnd(a);b.select()}}else c.execCommand("outdent");j.cancel()}}}else if(d=k.contains("li")){f.range.setEndAt(h,CKEDITOR.POSITION_BEFORE_END);h=(k=d.getLast(q))&&
C(k)?k:d;d=0;if((a=f.next())&&a.type==CKEDITOR.NODE_ELEMENT&&a.getName()in r&&a.equals(k)){d=1;a=f.next()}else b.checkBoundaryOfElement(h,CKEDITOR.END)&&(d=1);if(d&&a){b=b.clone();b.moveToElementEditStart(a);y(c,e,b);j.cancel()}}else{f.range.setEndAt(h,CKEDITOR.POSITION_BEFORE_END);if((a=f.next())&&a.type==CKEDITOR.NODE_ELEMENT&&a.is(r)){a=a.getFirst(q);if(k.block&&b.checkStartOfBlock()&&b.checkEndOfBlock()){k.block.remove();b.moveToElementEditStart(a);b.select()}else if(w(a)){b.moveToElementEditStart(a);
b.select()}else{b=b.clone();b.moveToElementEditStart(a);y(c,e,b)}j.cancel()}}setTimeout(function(){c.selectionChange(1)})}}}))}})})();(function(){var c={canUndo:!1,async:!0,exec:function(a){a.getClipboardData({title:a.lang.pastetext.title},function(b){b&&a.fire("paste",{type:"text",dataValue:b.dataValue});a.fire("afterCommandExec",{name:"pastetext",command:c,returnValue:!!b})})}};CKEDITOR.plugins.add("pastetext",{requires:"clipboard",init:function(a){a.addCommand("pastetext",c);a.ui.addButton&&a.ui.addButton("PasteText",{label:a.lang.pastetext.button,command:"pastetext",toolbar:"clipboard,40"});if(a.config.forcePasteAsPlainText)a.on("beforePaste",
function(a){"html"!=a.data.type&&(a.data.type="text")});a.on("pasteState",function(b){a.getCommand("pastetext").setState(b.data)})}})})();(function(){function h(a,d,f){var b=CKEDITOR.cleanWord;b?f():(a=CKEDITOR.getUrl(a.config.pasteFromWordCleanupFile||d+"filter/default.js"),CKEDITOR.scriptLoader.load(a,f,null,!0));return!b}function i(a){a.data.type="html"}CKEDITOR.plugins.add("pastefromword",{requires:"clipboard",init:function(a){var d=0,f=this.path;a.addCommand("pastefromword",{canUndo:!1,async:!0,exec:function(a){var e=this;d=1;a.once("beforePaste",i);a.getClipboardData({title:a.lang.pastefromword.title},function(c){c&&a.fire("paste",
{type:"html",dataValue:c.dataValue});a.fire("afterCommandExec",{name:"pastefromword",command:e,returnValue:!!c})})}});a.ui.addButton&&a.ui.addButton("PasteFromWord",{label:a.lang.pastefromword.toolbar,command:"pastefromword",toolbar:"clipboard,50"});a.on("pasteState",function(b){a.getCommand("pastefromword").setState(b.data)});a.on("paste",function(b){var e=b.data,c=e.dataValue;if(c&&(d||/(class=\"?Mso|style=\"[^\"]*\bmso\-|w:WordDocument)/.test(c))){var g=h(a,f,function(){if(g)a.fire("paste",e);
else if(!a.config.pasteFromWordPromptCleanup||d||confirm(a.lang.pastefromword.confirmCleanup))e.dataValue=CKEDITOR.cleanWord(c,a)});g&&b.cancel()}},null,null,3)}})})();CKEDITOR.plugins.add("removeformat",{init:function(a){a.addCommand("removeFormat",CKEDITOR.plugins.removeformat.commands.removeformat);a.ui.addButton&&a.ui.addButton("RemoveFormat",{label:a.lang.removeformat.toolbar,command:"removeFormat",toolbar:"cleanup,10"})}});
CKEDITOR.plugins.removeformat={commands:{removeformat:{exec:function(a){for(var h=a._.removeFormatRegex||(a._.removeFormatRegex=RegExp("^(?:"+a.config.removeFormatTags.replace(/,/g,"|")+")$","i")),e=a._.removeAttributes||(a._.removeAttributes=a.config.removeFormatAttributes.split(",")),f=CKEDITOR.plugins.removeformat.filter,k=a.getSelection().getRanges(),l=k.createIterator(),m=function(a){return a.type==CKEDITOR.NODE_ELEMENT},c;c=l.getNextRange();){c.collapsed||c.enlarge(CKEDITOR.ENLARGE_ELEMENT);
var j=c.createBookmark(),b=j.startNode,d=j.endNode,i=function(b){for(var c=a.elementPath(b),e=c.elements,d=1,g;(g=e[d])&&!g.equals(c.block)&&!g.equals(c.blockLimit);d++)h.test(g.getName())&&f(a,g)&&b.breakParent(g)};i(b);if(d){i(d);for(b=b.getNextSourceNode(!0,CKEDITOR.NODE_ELEMENT);b&&!b.equals(d);)if(b.isReadOnly()){if(b.getPosition(d)&CKEDITOR.POSITION_CONTAINS)break;b=b.getNext(m)}else i=b.getNextSourceNode(!1,CKEDITOR.NODE_ELEMENT),!("img"==b.getName()&&b.data("cke-realelement"))&&f(a,b)&&(h.test(b.getName())?
b.remove(1):(b.removeAttributes(e),a.fire("removeFormatCleanup",b))),b=i}c.moveToBookmark(j)}a.forceNextSelectionCheck();a.getSelection().selectRanges(k)}}},filter:function(a,h){for(var e=a._.removeFormatFilters||[],f=0;f<e.length;f++)if(!1===e[f](h))return!1;return!0}};CKEDITOR.editor.prototype.addRemoveFormatFilter=function(a){this._.removeFormatFilters||(this._.removeFormatFilters=[]);this._.removeFormatFilters.push(a)};CKEDITOR.config.removeFormatTags="b,big,cite,code,del,dfn,em,font,i,ins,kbd,q,s,samp,small,span,strike,strong,sub,sup,tt,u,var";
CKEDITOR.config.removeFormatAttributes="class,style,lang,width,height,align,hspace,valign";(function(){var f={preserveState:!0,editorFocus:!1,readOnly:1,exec:function(a){this.toggleState();this.refresh(a)},refresh:function(a){if(a.document){var b=this.state==CKEDITOR.TRISTATE_ON?"attachClass":"removeClass";a.editable()[b]("cke_show_borders")}}};CKEDITOR.plugins.add("showborders",{modes:{wysiwyg:1},onLoad:function(){var a;a=(CKEDITOR.env.ie6Compat?[".%1 table.%2,",".%1 table.%2 td, .%1 table.%2 th","{","border : #d3d3d3 1px dotted","}"]:".%1 table.%2,;.%1 table.%2 > tr > td, .%1 table.%2 > tr > th,;.%1 table.%2 > tbody > tr > td, .%1 table.%2 > tbody > tr > th,;.%1 table.%2 > thead > tr > td, .%1 table.%2 > thead > tr > th,;.%1 table.%2 > tfoot > tr > td, .%1 table.%2 > tfoot > tr > th;{;border : #d3d3d3 1px dotted;}".split(";")).join("").replace(/%2/g,
"cke_show_border").replace(/%1/g,"cke_show_borders ");CKEDITOR.addCss(a)},init:function(a){var b=a.addCommand("showborders",f);b.canUndo=!1;!1!==a.config.startupShowBorders&&b.setState(CKEDITOR.TRISTATE_ON);a.on("mode",function(){b.state!=CKEDITOR.TRISTATE_DISABLED&&b.refresh(a)},null,null,100);a.on("contentDom",function(){b.state!=CKEDITOR.TRISTATE_DISABLED&&b.refresh(a)});a.on("removeFormatCleanup",function(d){d=d.data;a.getCommand("showborders").state==CKEDITOR.TRISTATE_ON&&(d.is("table")&&(!d.hasAttribute("border")||
0>=parseInt(d.getAttribute("border"),10)))&&d.addClass("cke_show_border")})},afterInit:function(a){var b=a.dataProcessor,a=b&&b.dataFilter,b=b&&b.htmlFilter;a&&a.addRules({elements:{table:function(a){var a=a.attributes,b=a["class"],c=parseInt(a.border,10);if((!c||0>=c)&&(!b||-1==b.indexOf("cke_show_border")))a["class"]=(b||"")+" cke_show_border"}}});b&&b.addRules({elements:{table:function(a){var a=a.attributes,b=a["class"];b&&(a["class"]=b.replace("cke_show_border","").replace(/\s{2}/," ").replace(/^\s+|\s+$/,
""))}}})}});CKEDITOR.on("dialogDefinition",function(a){var b=a.data.name;if("table"==b||"tableProperties"==b)if(a=a.data.definition,b=a.getContents("info").get("txtBorder"),b.commit=CKEDITOR.tools.override(b.commit,function(a){return function(b,c){a.apply(this,arguments);var e=parseInt(this.getValue(),10);c[!e||0>=e?"addClass":"removeClass"]("cke_show_border")}}),a=(a=a.getContents("advanced"))&&a.get("advCSSClasses"))a.setup=CKEDITOR.tools.override(a.setup,function(a){return function(){a.apply(this,
arguments);this.setValue(this.getValue().replace(/cke_show_border/,""))}}),a.commit=CKEDITOR.tools.override(a.commit,function(a){return function(b,c){a.apply(this,arguments);parseInt(c.getAttribute("border"),10)||c.addClass("cke_show_border")}})})})();(function(){CKEDITOR.plugins.add("sourcearea",{init:function(a){function d(){var a=e&&this.equals(CKEDITOR.document.getActive());this.hide();this.setStyle("height",this.getParent().$.clientHeight+"px");this.setStyle("width",this.getParent().$.clientWidth+"px");this.show();a&&this.focus()}if(a.elementMode!=CKEDITOR.ELEMENT_MODE_INLINE){var f=CKEDITOR.plugins.sourcearea;a.addMode("source",function(e){var b=a.ui.space("contents").getDocument().createElement("textarea");b.setStyles(CKEDITOR.tools.extend({width:CKEDITOR.env.ie7Compat?
"99%":"100%",height:"100%",resize:"none",outline:"none","text-align":"left"},CKEDITOR.tools.cssVendorPrefix("tab-size",a.config.sourceAreaTabSize||4)));b.setAttribute("dir","ltr");b.addClass("cke_source cke_reset cke_enable_context_menu");a.ui.space("contents").append(b);b=a.editable(new c(a,b));b.setData(a.getData(1));CKEDITOR.env.ie&&(b.attachListener(a,"resize",d,b),b.attachListener(CKEDITOR.document.getWindow(),"resize",d,b),CKEDITOR.tools.setTimeout(d,0,b));a.fire("ariaWidget",this);e()});a.addCommand("source",
f.commands.source);a.ui.addButton&&a.ui.addButton("Source",{label:a.lang.sourcearea.toolbar,command:"source",toolbar:"mode,10"});a.on("mode",function(){a.getCommand("source").setState("source"==a.mode?CKEDITOR.TRISTATE_ON:CKEDITOR.TRISTATE_OFF)});var e=CKEDITOR.env.ie&&9==CKEDITOR.env.version}}});var c=CKEDITOR.tools.createClass({base:CKEDITOR.editable,proto:{setData:function(a){this.setValue(a);this.status="ready";this.editor.fire("dataReady")},getData:function(){return this.getValue()},insertHtml:function(){},
insertElement:function(){},insertText:function(){},setReadOnly:function(a){this[(a?"set":"remove")+"Attribute"]("readOnly","readonly")},detach:function(){c.baseProto.detach.call(this);this.clearCustomData();this.remove()}}})})();CKEDITOR.plugins.sourcearea={commands:{source:{modes:{wysiwyg:1,source:1},editorFocus:!1,readOnly:1,exec:function(c){"wysiwyg"==c.mode&&c.fire("saveSnapshot");c.getCommand("source").setState(CKEDITOR.TRISTATE_DISABLED);c.setMode("source"==c.mode?"wysiwyg":"source")},canUndo:!1}}};CKEDITOR.plugins.add("specialchar",{availableLangs:{af:1,ar:1,bg:1,ca:1,cs:1,cy:1,da:1,de:1,el:1,en:1,"en-gb":1,eo:1,es:1,et:1,fa:1,fi:1,fr:1,"fr-ca":1,gl:1,he:1,hr:1,hu:1,id:1,it:1,ja:1,km:1,ku:1,lt:1,lv:1,nb:1,nl:1,no:1,pl:1,pt:1,"pt-br":1,ru:1,si:1,sk:1,sl:1,sq:1,sv:1,th:1,tr:1,tt:1,ug:1,uk:1,vi:1,zh:1,"zh-cn":1},requires:"dialog",init:function(a){var c=this;CKEDITOR.dialog.add("specialchar",this.path+"dialogs/specialchar.js");a.addCommand("specialchar",{exec:function(){var b=a.langCode,b=c.availableLangs[b]?
b:c.availableLangs[b.replace(/-.*/,"")]?b.replace(/-.*/,""):"en";CKEDITOR.scriptLoader.load(CKEDITOR.getUrl(c.path+"dialogs/lang/"+b+".js"),function(){CKEDITOR.tools.extend(a.lang.specialchar,c.langEntries[b]);a.openDialog("specialchar")})},modes:{wysiwyg:1},canUndo:!1});a.ui.addButton&&a.ui.addButton("SpecialChar",{label:a.lang.specialchar.toolbar,command:"specialchar",toolbar:"insert,50"})}});CKEDITOR.config.specialChars="! &quot; # $ % &amp; ' ( ) * + - . / 0 1 2 3 4 5 6 7 8 9 : ; &lt; = &gt; ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~ &euro; &lsquo; &rsquo; &ldquo; &rdquo; &ndash; &mdash; &iexcl; &cent; &pound; &curren; &yen; &brvbar; &sect; &uml; &copy; &ordf; &laquo; &not; &reg; &macr; &deg; &sup2; &sup3; &acute; &micro; &para; &middot; &cedil; &sup1; &ordm; &raquo; &frac14; &frac12; &frac34; &iquest; &Agrave; &Aacute; &Acirc; &Atilde; &Auml; &Aring; &AElig; &Ccedil; &Egrave; &Eacute; &Ecirc; &Euml; &Igrave; &Iacute; &Icirc; &Iuml; &ETH; &Ntilde; &Ograve; &Oacute; &Ocirc; &Otilde; &Ouml; &times; &Oslash; &Ugrave; &Uacute; &Ucirc; &Uuml; &Yacute; &THORN; &szlig; &agrave; &aacute; &acirc; &atilde; &auml; &aring; &aelig; &ccedil; &egrave; &eacute; &ecirc; &euml; &igrave; &iacute; &icirc; &iuml; &eth; &ntilde; &ograve; &oacute; &ocirc; &otilde; &ouml; &divide; &oslash; &ugrave; &uacute; &ucirc; &uuml; &yacute; &thorn; &yuml; &OElig; &oelig; &#372; &#374 &#373 &#375; &sbquo; &#8219; &bdquo; &hellip; &trade; &#9658; &bull; &rarr; &rArr; &hArr; &diams; &asymp;".split(" ");CKEDITOR.plugins.add("menubutton",{requires:"button,menu",onLoad:function(){var d=function(c){var a=this._,b=a.menu;a.state!==CKEDITOR.TRISTATE_DISABLED&&(a.on&&b?b.hide():(a.previousState=a.state,b||(b=a.menu=new CKEDITOR.menu(c,{panel:{className:"cke_menu_panel",attributes:{"aria-label":c.lang.common.options}}}),b.onHide=CKEDITOR.tools.bind(function(){var b=this.command?c.getCommand(this.command).modes:this.modes;this.setState(!b||b[c.mode]?a.previousState:CKEDITOR.TRISTATE_DISABLED);a.on=0},this),
this.onMenu&&b.addListener(this.onMenu)),this.setState(CKEDITOR.TRISTATE_ON),a.on=1,setTimeout(function(){b.show(CKEDITOR.document.getById(a.id),4)},0)))};CKEDITOR.ui.menuButton=CKEDITOR.tools.createClass({base:CKEDITOR.ui.button,$:function(c){delete c.panel;this.base(c);this.hasArrow=!0;this.click=d},statics:{handler:{create:function(c){return new CKEDITOR.ui.menuButton(c)}}}})},beforeInit:function(d){d.ui.addHandler(CKEDITOR.UI_MENUBUTTON,CKEDITOR.ui.menuButton.handler)}});
CKEDITOR.UI_MENUBUTTON="menubutton";CKEDITOR.plugins.add("scayt",{requires:"menubutton,dialog",tabToOpen:null,dialogName:"scaytDialog",init:function(a){var c=this,d=CKEDITOR.plugins.scayt;this.bindEvents(a);this.parseConfig(a);this.addRule(a);CKEDITOR.dialog.add(this.dialogName,CKEDITOR.getUrl(this.path+"dialogs/options.js"));this.addMenuItems(a);var b=a.lang.scayt,e=CKEDITOR.env;a.ui.add("Scayt",CKEDITOR.UI_MENUBUTTON,{label:b.text_title,title:a.plugins.wsc?a.lang.wsc.title:b.text_title,modes:{wysiwyg:!(e.ie&&(8>e.version||e.quirks))},
toolbar:"spellchecker,20",refresh:function(){var b=a.ui.instances.Scayt.getState();a.scayt&&(b=d.state[a.name]?CKEDITOR.TRISTATE_ON:CKEDITOR.TRISTATE_OFF);a.fire("scaytButtonState",b)},onRender:function(){var d=this;a.on("scaytButtonState",function(a){void 0!==typeof a.data&&d.setState(a.data)})},onMenu:function(){var b=a.scayt;a.getMenuItem("scaytToggle").label=a.lang.scayt[b&&d.state[a.name]?"btn_disable":"btn_enable"];b={scaytToggle:CKEDITOR.TRISTATE_OFF,scaytOptions:b?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED,
scaytLangs:b?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED,scaytDict:b?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED,scaytAbout:b?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED,WSC:a.plugins.wsc?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED};a.config.scayt_uiTabs[0]||delete b.scaytOptions;a.config.scayt_uiTabs[1]||delete b.scaytLangs;a.config.scayt_uiTabs[2]||delete b.scaytDict;return b}});a.contextMenu&&a.addMenuItems&&(a.contextMenu.addListener(function(){var d=a.scayt,b;if(d){var e=
d.getSelectionNode();if(e=e?e.getAttribute(d.getNodeAttribute()):e)b=c.menuGenerator(a,e,c),d.showBanner("."+a.contextMenu._.definition.panel.className.split(" ").join(" ."))}return b}),a.contextMenu._.onHide=CKEDITOR.tools.override(a.contextMenu._.onHide,function(d){return function(){var b=a.scayt;b&&b.hideBanner();return d.apply(this)}}))},addMenuItems:function(a){var c=this,d=CKEDITOR.plugins.scayt;a.addMenuGroup("scaytButton");var b=a.config.scayt_contextMenuItemsOrder.split("|");if(b&&b.length)for(var e=
0;e<b.length;e++)a.addMenuGroup("scayt_"+b[e],e-10);b={scaytToggle:{label:a.lang.scayt.btn_enable,group:"scaytButton",onClick:function(){var b=a.scayt;d.state[a.name]=!d.state[a.name];!0===d.state[a.name]?b||d.createScayt(a):b&&d.destroy(a)}},scaytAbout:{label:a.lang.scayt.btn_about,group:"scaytButton",onClick:function(){a.scayt.tabToOpen="about";a.lockSelection();a.openDialog(c.dialogName)}},scaytOptions:{label:a.lang.scayt.btn_options,group:"scaytButton",onClick:function(){a.scayt.tabToOpen="options";
a.lockSelection();a.openDialog(c.dialogName)}},scaytLangs:{label:a.lang.scayt.btn_langs,group:"scaytButton",onClick:function(){a.scayt.tabToOpen="langs";a.lockSelection();a.openDialog(c.dialogName)}},scaytDict:{label:a.lang.scayt.btn_dictionaries,group:"scaytButton",onClick:function(){a.scayt.tabToOpen="dictionaries";a.lockSelection();a.openDialog(c.dialogName)}}};a.plugins.wsc&&(b.WSC={label:a.lang.wsc.toolbar,group:"scaytButton",onClick:function(){var d=CKEDITOR.plugins.scayt,b=a.scayt,c=a.elementMode==
CKEDITOR.ELEMENT_MODE_INLINE?a.container.getText():a.document.getBody().getText();(c=c.replace(/\s/g,""))?(b&&(d.state[a.name]&&b.setMarkupPaused)&&b.setMarkupPaused(!0),a.lockSelection(),a.execCommand("checkspell")):alert("Nothing to check!")}});a.addMenuItems(b)},bindEvents:function(a){function c(){var d=a.scayt;d&&(d.removeMarkupInSelectionNode(),d.fire("startSpellCheck"))}var d=CKEDITOR.plugins.scayt,b=a.elementMode==CKEDITOR.ELEMENT_MODE_INLINE;CKEDITOR.on("dialogDefinition",function(a){if("scaytDialog"===
a.data.name)a.data.definition.dialog.on("cancel",function(){return!1},this,null,-1)});var e=function(){a.scayt&&d.destroy(a)},g=function(){d.state[a.name]&&!a.readOnly&&d.createScayt(a)},f=function(){var d=a.editable();d.attachListener(d,"focus",function(){var d=CKEDITOR.plugins.scayt&&CKEDITOR.plugins.scayt.state[a.name]&&a.scayt,c,e;if((b||d)&&a._.savedSelection)for(var d=a._.savedSelection.getSelectedElement(),d=!d&&a._.savedSelection.getRanges(),i=0;i<d.length;i++)e=d[i],c=e.startContainer.getText().length,
(c<e.startOffset||c<e.endOffset)&&a.unlockSelection(!1)},this,null,-10)},h=function(){b?(a.on("blur",e),a.on("focus",g),a.focusManager.hasFocus&&g()):g();f()};a.on("contentDom",h);a.on("beforeCommandExec",function(b){var c;if(b.data.name in d.options.disablingCommandExec&&"wysiwyg"==a.mode){if(c=a.scayt)d.destroy(a),a.fire("scaytButtonState",CKEDITOR.TRISTATE_DISABLED)}else if("bold"===b.data.name||"italic"===b.data.name||"underline"===b.data.name||"strike"===b.data.name||"subscript"===b.data.name||
"superscript"===b.data.name)if(c=a.scayt)c.removeMarkupInSelectionNode(),setTimeout(function(){c.fire("startSpellCheck")},0)});a.on("beforeSetMode",function(b){if("source"==b.data){if(b=a.scayt)d.destroy(a),a.fire("scaytButtonState",CKEDITOR.TRISTATE_DISABLED);a.document&&(a.document.getBody().removeAttribute("_jquid"),a.document.getBody().removeAttribute("dir"))}});a.on("afterCommandExec",function(d){var b;if("wysiwyg"==a.mode&&("undo"==d.data.name||"redo"==d.data.name))(b=a.scayt)&&setTimeout(function(){b.fire("startSpellCheck")},
250)});a.on("readOnly",function(b){var c;b&&(c=a.scayt,!0===b.editor.readOnly?c&&c.fire("removeMarkupInDocument",{}):c?c.fire("startSpellCheck"):"wysiwyg"==b.editor.mode&&!0===d.state[b.editor.name]&&(d.createScayt(a),b.editor.fire("scaytButtonState",CKEDITOR.TRISTATE_ON)))});a.on("beforeDestroy",e);a.on("setData",function(){e();a.elementMode==CKEDITOR.ELEMENT_MODE_INLINE&&h()},this,null,50);a.on("insertElement",function(){CKEDITOR.env.ie?setTimeout(function(){c()},50):c()},this,null,50);a.on("insertHtml",
function(){c()},this,null,50);a.on("insertText",function(){c()},this,null,50);a.on("scaytDialogShown",function(d){d.data.selectPage(a.scayt.tabToOpen)})},parseConfig:function(a){var c=CKEDITOR.plugins.scayt;c.replaceOldOptionsNames(a.config);"boolean"!==typeof a.config.scayt_autoStartup&&(a.config.scayt_autoStartup=!1);c.state[a.name]=a.config.scayt_autoStartup;a.config.scayt_contextCommands||(a.config.scayt_contextCommands="ignore|ignoreall|add");a.config.scayt_contextMenuItemsOrder||(a.config.scayt_contextMenuItemsOrder=
"suggest|moresuggest|control");a.config.scayt_sLang||(a.config.scayt_sLang="en_US");if(void 0===a.config.scayt_maxSuggestions||"number"!=typeof a.config.scayt_maxSuggestions||0>a.config.scayt_maxSuggestions)a.config.scayt_maxSuggestions=5;if(void 0===a.config.scayt_customDictionaryIds||"string"!==typeof a.config.scayt_customDictionaryIds)a.config.scayt_customDictionaryIds="";if(void 0===a.config.scayt_userDictionaryName||"string"!==typeof a.config.scayt_userDictionaryName)a.config.scayt_userDictionaryName=
null;if("string"===typeof a.config.scayt_uiTabs&&3===a.config.scayt_uiTabs.split(",").length){var d=[],b=[];a.config.scayt_uiTabs=a.config.scayt_uiTabs.split(",");CKEDITOR.tools.search(a.config.scayt_uiTabs,function(a){if(Number(a)===1||Number(a)===0){b.push(true);d.push(Number(a))}else b.push(false)});a.config.scayt_uiTabs=null===CKEDITOR.tools.search(b,!1)?d:[1,1,1]}else a.config.scayt_uiTabs=[1,1,1];"string"!=typeof a.config.scayt_serviceProtocol&&(a.config.scayt_serviceProtocol=null);"string"!=
typeof a.config.scayt_serviceHost&&(a.config.scayt_serviceHost=null);"string"!=typeof a.config.scayt_servicePort&&(a.config.scayt_servicePort=null);"string"!=typeof a.config.scayt_servicePath&&(a.config.scayt_servicePath=null);a.config.scayt_moreSuggestions||(a.config.scayt_moreSuggestions="on");"string"!==typeof a.config.scayt_customerId&&(a.config.scayt_customerId="1:WvF0D4-UtPqN1-43nkD4-NKvUm2-daQqk3-LmNiI-z7Ysb4-mwry24-T8YrS3-Q2tpq2");"string"!==typeof a.config.scayt_srcUrl&&(c=document.location.protocol,
c=-1!=c.search(/https?:/)?c:"http:",a.config.scayt_srcUrl=c+"//svc.webspellchecker.net/spellcheck31/lf/scayt3/ckscayt/ckscayt.js");"boolean"!==typeof CKEDITOR.config.scayt_handleCheckDirty&&(CKEDITOR.config.scayt_handleCheckDirty=!0);"boolean"!==typeof CKEDITOR.config.scayt_handleUndoRedo&&(CKEDITOR.config.scayt_handleUndoRedo=!0);if(a.config.scayt_disableOptionsStorage){var c=CKEDITOR.tools.isArray(a.config.scayt_disableOptionsStorage)?a.config.scayt_disableOptionsStorage:"string"===typeof a.config.scayt_disableOptionsStorage?
[a.config.scayt_disableOptionsStorage]:void 0,e="all options lang ignore-all-caps-words ignore-domain-names ignore-words-with-mixed-cases ignore-words-with-numbers".split(" "),g=["lang","ignore-all-caps-words","ignore-domain-names","ignore-words-with-mixed-cases","ignore-words-with-numbers"],f=CKEDITOR.tools.search,h=CKEDITOR.tools.indexOf;a.config.scayt_disableOptionsStorage=function(a){for(var d=[],b=0;b<a.length;b++){var c=a[b],j=!!f(a,"options");if(!f(e,c)||j&&f(g,function(a){if(a==="lang")return false}))return;
f(g,c)&&g.splice(h(g,c),1);if(c==="all"||j&&f(a,"lang"))return[];c==="options"&&(g=["lang"])}return d=d.concat(g)}(c)}},addRule:function(a){var c=a.dataProcessor,d=c&&c.htmlFilter,b=a._.elementsPath&&a._.elementsPath.filters,c=c&&c.dataFilter,e=a.addRemoveFormatFilter,g=function(d){var b=CKEDITOR.plugins.scayt;if(a.scayt&&d.hasAttribute(b.options.data_attribute_name))return!1},f=function(d){var b=CKEDITOR.plugins.scayt,c=!0;a.scayt&&d.hasAttribute(b.options.data_attribute_name)&&(c=!1);return c};
b&&b.push(g);c&&c.addRules({elements:{span:function(d){var b=CKEDITOR.plugins.scayt;b&&(b.state[a.name]&&d.classes&&CKEDITOR.tools.search(d.classes,b.options.misspelled_word_class))&&(d.classes&&d.parent.type===CKEDITOR.NODE_DOCUMENT_FRAGMENT?(delete d.attributes.style,delete d.name):delete d.classes[CKEDITOR.tools.indexOf(d.classes,b.options.misspelled_word_class)]);return d}}});d&&d.addRules({elements:{span:function(d){var b=CKEDITOR.plugins.scayt;b&&(b.state[a.name]&&d.hasClass(b.options.misspelled_word_class)&&
d.attributes[b.options.data_attribute_name])&&(d.removeClass(b.options.misspelled_word_class),delete d.attributes[b.options.data_attribute_name],delete d.name);return d}}});e&&e.call(a,f)},scaytMenuDefinition:function(a){var c=this,a=a.scayt;return{scayt_ignore:{label:a.getLocal("btn_ignore"),group:"scayt_control",order:1,exec:function(a){a.scayt.ignoreWord()}},scayt_ignoreall:{label:a.getLocal("btn_ignoreAll"),group:"scayt_control",order:2,exec:function(a){a.scayt.ignoreAllWords()}},scayt_add:{label:a.getLocal("btn_addWord"),
group:"scayt_control",order:3,exec:function(a){var b=a.scayt;setTimeout(function(){b.addWordToUserDictionary()},10)}},option:{label:a.getLocal("btn_options"),group:"scayt_control",order:4,exec:function(a){a.scayt.tabToOpen="options";a.lockSelection();a.openDialog(c.dialogName)},verification:function(a){return 1==a.config.scayt_uiTabs[0]?!0:!1}},language:{label:a.getLocal("btn_langs"),group:"scayt_control",order:5,exec:function(a){a.scayt.tabToOpen="langs";a.lockSelection();a.openDialog(c.dialogName)},
verification:function(a){return 1==a.config.scayt_uiTabs[1]?!0:!1}},dictionary:{label:a.getLocal("btn_dictionaries"),group:"scayt_control",order:6,exec:function(a){a.scayt.tabToOpen="dictionaries";a.lockSelection();a.openDialog(c.dialogName)},verification:function(a){return 1==a.config.scayt_uiTabs[2]?!0:!1}},about:{label:a.getLocal("btn_about"),group:"scayt_control",order:7,exec:function(a){a.scayt.tabToOpen="about";a.lockSelection();a.openDialog(c.dialogName)}}}},buildSuggestionMenuItems:function(a,
c){var d={},b={},e=a.scayt;if(0<c.length&&"no_any_suggestions"!==c[0])for(var g=0;g<c.length;g++){var f="scayt_suggest_"+CKEDITOR.plugins.scayt.suggestions[g].replace(" ","_");a.addCommand(f,this.createCommand(CKEDITOR.plugins.scayt.suggestions[g]));g<a.config.scayt_maxSuggestions?(a.addMenuItem(f,{label:c[g],command:f,group:"scayt_suggest",order:g+1}),d[f]=CKEDITOR.TRISTATE_OFF):(a.addMenuItem(f,{label:c[g],command:f,group:"scayt_moresuggest",order:g+1}),b[f]=CKEDITOR.TRISTATE_OFF,"on"===a.config.scayt_moreSuggestions&&
(a.addMenuItem("scayt_moresuggest",{label:e.getLocal("btn_moreSuggestions"),group:"scayt_moresuggest",order:10,getItems:function(){return b}}),d.scayt_moresuggest=CKEDITOR.TRISTATE_OFF))}else d.no_scayt_suggest=CKEDITOR.TRISTATE_DISABLED,a.addCommand("no_scayt_suggest",{exec:function(){}}),a.addMenuItem("no_scayt_suggest",{label:e.getLocal("btn_noSuggestions")||"no_scayt_suggest",command:"no_scayt_suggest",group:"scayt_suggest",order:0});return d},menuGenerator:function(a,c){var d=a.scayt,b=this.scaytMenuDefinition(a),
e={},g=a.config.scayt_contextCommands.split("|");d.fire("getSuggestionsList",{lang:d.getLang(),word:c});e=this.buildSuggestionMenuItems(a,CKEDITOR.plugins.scayt.suggestions);if("off"==a.config.scayt_contextCommands)return e;for(var f in b)-1==CKEDITOR.tools.indexOf(g,f.replace("scayt_",""))&&"all"!=a.config.scayt_contextCommands||(e[f]=CKEDITOR.TRISTATE_OFF,"function"===typeof b[f].verification&&!b[f].verification(a)&&delete e[f],a.addCommand(f,{exec:b[f].exec}),a.addMenuItem(f,{label:a.lang.scayt[b[f].label]||
b[f].label,command:f,group:b[f].group,order:b[f].order}));return e},createCommand:function(a){return{exec:function(c){c.scayt.replaceSelectionNode({word:a})}}}});
CKEDITOR.plugins.scayt={state:{},suggestions:[],loadingHelper:{loadOrder:[]},isLoading:!1,options:{disablingCommandExec:{source:!0,newpage:!0,templates:!0},data_attribute_name:"data-scayt-word",misspelled_word_class:"scayt-misspell-word"},backCompatibilityMap:{scayt_service_protocol:"scayt_serviceProtocol",scayt_service_host:"scayt_serviceHost",scayt_service_port:"scayt_servicePort",scayt_service_path:"scayt_servicePath",scayt_customerid:"scayt_customerId"},replaceOldOptionsNames:function(a){for(var c in a)c in
this.backCompatibilityMap&&(a[this.backCompatibilityMap[c]]=a[c],delete a[c])},createScayt:function(a){var c=this;this.loadScaytLibrary(a,function(a){var b={lang:a.config.scayt_sLang,container:"BODY"==a.editable().$.nodeName?a.document.getWindow().$.frameElement:a.editable().$,customDictionary:a.config.scayt_customDictionaryIds,userDictionaryName:a.config.scayt_userDictionaryName,localization:a.langCode,customer_id:a.config.scayt_customerId,debug:a.config.scayt_debug,data_attribute_name:c.options.data_attribute_name,
misspelled_word_class:c.options.misspelled_word_class,"options-to-restore":a.config.scayt_disableOptionsStorage,focused:a.editable().hasFocus,ignoreElementsRegex:a.config.scayt_elementsToIgnore};a.config.scayt_serviceProtocol&&(b.service_protocol=a.config.scayt_serviceProtocol);a.config.scayt_serviceHost&&(b.service_host=a.config.scayt_serviceHost);a.config.scayt_servicePort&&(b.service_port=a.config.scayt_servicePort);a.config.scayt_servicePath&&(b.service_path=a.config.scayt_servicePath);b=new SCAYT.CKSCAYT(b,
function(){},function(){});b.subscribe("suggestionListSend",function(a){for(var b={},d=[],c=0;c<a.suggestionList.length;c++)if(!b["word_"+a.suggestionList[c]]){b["word_"+a.suggestionList[c]]=a.suggestionList[c];d.push(a.suggestionList[c])}CKEDITOR.plugins.scayt.suggestions=d});a.scayt=b;a.fire("scaytButtonState",a.readOnly?CKEDITOR.TRISTATE_DISABLED:CKEDITOR.TRISTATE_ON)})},destroy:function(a){a.scayt&&a.scayt.destroy();delete a.scayt;a.fire("scaytButtonState",CKEDITOR.TRISTATE_OFF)},loadScaytLibrary:function(a,
c){var d=this;"undefined"===typeof window.SCAYT||"function"!==typeof window.SCAYT.CKSCAYT?(this.loadingHelper[a.name]=c,this.loadingHelper.loadOrder.push(a.name),CKEDITOR.scriptLoader.load(a.config.scayt_srcUrl,function(){var a;CKEDITOR.fireOnce("scaytReady");for(var c=0;c<d.loadingHelper.loadOrder.length;c++){a=d.loadingHelper.loadOrder[c];if("function"===typeof d.loadingHelper[a])d.loadingHelper[a](CKEDITOR.instances[a]);delete d.loadingHelper[a]}d.loadingHelper.loadOrder=[]})):window.SCAYT&&"function"===
typeof window.SCAYT.CKSCAYT&&(CKEDITOR.fireOnce("scaytReady"),a.scayt||"function"===typeof c&&c(a))}};
CKEDITOR.on("scaytReady",function(){if(!0===CKEDITOR.config.scayt_handleCheckDirty){var a=CKEDITOR.editor.prototype;a.checkDirty=CKEDITOR.tools.override(a.checkDirty,function(a){return function(){var b=null,c=this.scayt;if(!CKEDITOR.plugins.scayt||!CKEDITOR.plugins.scayt.state[this.name]||!this.scayt)b=a.call(this);else if(b="ready"==this.status)var g=c.removeMarkupFromString(this.getSnapshot()),c=c.removeMarkupFromString(this._.previousValue),b=b&&c!==g;return b}});a.resetDirty=CKEDITOR.tools.override(a.resetDirty,
function(a){return function(){var b=this.scayt;!CKEDITOR.plugins.scayt||!CKEDITOR.plugins.scayt.state[this.name]||!this.scayt?a.call(this):this._.previousValue=b.removeMarkupFromString(this.getSnapshot())}})}if(!0===CKEDITOR.config.scayt_handleUndoRedo){var a=CKEDITOR.plugins.undo.Image.prototype,c="function"==typeof a.equalsContent?"equalsContent":"equals";a[c]=CKEDITOR.tools.override(a[c],function(a){return function(b){var c=b.editor.scayt,g=this.contents,f=b.contents,h=null;CKEDITOR.plugins.scayt&&
(CKEDITOR.plugins.scayt.state[b.editor.name]&&b.editor.scayt)&&(this.contents=c.removeMarkupFromString(g)||"",b.contents=c.removeMarkupFromString(f)||"");h=a.apply(this,arguments);this.contents=g;b.contents=f;return h}})}});(function(){CKEDITOR.plugins.add("stylescombo",{requires:"richcombo",init:function(c){var j=c.config,g=c.lang.stylescombo,f={},i=[],k=[];c.on("stylesSet",function(b){if(b=b.data.styles){for(var a,h,d,e=0,l=b.length;e<l;e++)if(a=b[e],!(c.blockless&&a.element in CKEDITOR.dtd.$block)&&(h=a.name,a=new CKEDITOR.style(a),!c.filter.customConfig||c.filter.check(a)))a._name=h,a._.enterMode=j.enterMode,a._.type=d=a.assignedTo||a.type,a._.weight=e+1E3*(d==CKEDITOR.STYLE_OBJECT?1:d==CKEDITOR.STYLE_BLOCK?2:3),
f[h]=a,i.push(a),k.push(a);i.sort(function(a,b){return a._.weight-b._.weight})}});c.ui.addRichCombo("Styles",{label:g.label,title:g.panelTitle,toolbar:"styles,10",allowedContent:k,panel:{css:[CKEDITOR.skin.getPath("editor")].concat(j.contentsCss),multiSelect:!0,attributes:{"aria-label":g.panelTitle}},init:function(){var b,a,c,d,e,f;e=0;for(f=i.length;e<f;e++)b=i[e],a=b._name,d=b._.type,d!=c&&(this.startGroup(g["panelTitle"+d]),c=d),this.add(a,b.type==CKEDITOR.STYLE_OBJECT?a:b.buildPreview(),a);this.commit()},
onClick:function(b){c.focus();c.fire("saveSnapshot");var b=f[b],a=c.elementPath();c[b.checkActive(a,c)?"removeStyle":"applyStyle"](b);c.fire("saveSnapshot")},onRender:function(){c.on("selectionChange",function(b){for(var a=this.getValue(),b=b.data.path.elements,h=0,d=b.length,e;h<d;h++){e=b[h];for(var g in f)if(f[g].checkElementRemovable(e,!0,c)){g!=a&&this.setValue(g);return}}this.setValue("")},this)},onOpen:function(){var b=c.getSelection().getSelectedElement(),b=c.elementPath(b),a=[0,0,0,0];this.showAll();
this.unmarkAll();for(var h in f){var d=f[h],e=d._.type;d.checkApplicable(b,c,c.activeFilter)?a[e]++:this.hideItem(h);d.checkActive(b,c)&&this.mark(h)}a[CKEDITOR.STYLE_BLOCK]||this.hideGroup(g["panelTitle"+CKEDITOR.STYLE_BLOCK]);a[CKEDITOR.STYLE_INLINE]||this.hideGroup(g["panelTitle"+CKEDITOR.STYLE_INLINE]);a[CKEDITOR.STYLE_OBJECT]||this.hideGroup(g["panelTitle"+CKEDITOR.STYLE_OBJECT])},refresh:function(){var b=c.elementPath();if(b){for(var a in f)if(f[a].checkApplicable(b,c,c.activeFilter))return;
this.setState(CKEDITOR.TRISTATE_DISABLED)}},reset:function(){f={};i=[]}})}})})();(function(){function i(c){return{editorFocus:!1,canUndo:!1,modes:{wysiwyg:1},exec:function(d){if(d.editable().hasFocus){var e=d.getSelection(),b;if(b=(new CKEDITOR.dom.elementPath(e.getCommonAncestor(),e.root)).contains({td:1,th:1},1)){var e=d.createRange(),a=CKEDITOR.tools.tryThese(function(){var a=b.getParent().$.cells[b.$.cellIndex+(c?-1:1)];a.parentNode.parentNode;return a},function(){var a=b.getParent(),a=a.getAscendant("table").$.rows[a.$.rowIndex+(c?-1:1)];return a.cells[c?a.cells.length-1:
0]});if(!a&&!c){for(var f=b.getAscendant("table").$,a=b.getParent().$.cells,f=new CKEDITOR.dom.element(f.insertRow(-1),d.document),g=0,h=a.length;g<h;g++)f.append((new CKEDITOR.dom.element(a[g],d.document)).clone(!1,!1)).appendBogus();e.moveToElementEditStart(f)}else if(a)a=new CKEDITOR.dom.element(a),e.moveToElementEditStart(a),(!e.checkStartOfBlock()||!e.checkEndOfBlock())&&e.selectNodeContents(a);else return!0;e.select(!0);return!0}}return!1}}}var h={editorFocus:!1,modes:{wysiwyg:1,source:1}},
g={exec:function(c){c.container.focusNext(!0,c.tabIndex)}},f={exec:function(c){c.container.focusPrevious(!0,c.tabIndex)}};CKEDITOR.plugins.add("tab",{init:function(c){for(var d=!1!==c.config.enableTabKeyTools,e=c.config.tabSpaces||0,b="";e--;)b+=" ";if(b)c.on("key",function(a){9==a.data.keyCode&&(c.insertHtml(b),a.cancel())});if(d)c.on("key",function(a){(9==a.data.keyCode&&c.execCommand("selectNextCell")||a.data.keyCode==CKEDITOR.SHIFT+9&&c.execCommand("selectPreviousCell"))&&a.cancel()});c.addCommand("blur",
CKEDITOR.tools.extend(g,h));c.addCommand("blurBack",CKEDITOR.tools.extend(f,h));c.addCommand("selectNextCell",i());c.addCommand("selectPreviousCell",i(!0))}})})();
CKEDITOR.dom.element.prototype.focusNext=function(i,h){var g=void 0===h?this.getTabIndex():h,f,c,d,e,b,a;if(0>=g)for(b=this.getNextSourceNode(i,CKEDITOR.NODE_ELEMENT);b;){if(b.isVisible()&&0===b.getTabIndex()){d=b;break}b=b.getNextSourceNode(!1,CKEDITOR.NODE_ELEMENT)}else for(b=this.getDocument().getBody().getFirst();b=b.getNextSourceNode(!1,CKEDITOR.NODE_ELEMENT);){if(!f)if(!c&&b.equals(this)){if(c=!0,i){if(!(b=b.getNextSourceNode(!0,CKEDITOR.NODE_ELEMENT)))break;f=1}}else c&&!this.contains(b)&&
(f=1);if(b.isVisible()&&!(0>(a=b.getTabIndex()))){if(f&&a==g){d=b;break}a>g&&(!d||!e||a<e)?(d=b,e=a):!d&&0===a&&(d=b,e=a)}}d&&d.focus()};
CKEDITOR.dom.element.prototype.focusPrevious=function(i,h){for(var g=void 0===h?this.getTabIndex():h,f,c,d,e=0,b,a=this.getDocument().getBody().getLast();a=a.getPreviousSourceNode(!1,CKEDITOR.NODE_ELEMENT);){if(!f)if(!c&&a.equals(this)){if(c=!0,i){if(!(a=a.getPreviousSourceNode(!0,CKEDITOR.NODE_ELEMENT)))break;f=1}}else c&&!this.contains(a)&&(f=1);if(a.isVisible()&&!(0>(b=a.getTabIndex())))if(0>=g){if(f&&0===b){d=a;break}b>e&&(d=a,e=b)}else{if(f&&b==g){d=a;break}if(b<g&&(!d||b>e))d=a,e=b}}d&&d.focus()};CKEDITOR.plugins.add("table",{requires:"dialog",init:function(a){function e(a){return CKEDITOR.tools.extend(a||{},{contextSensitive:1,refresh:function(a,f){this.setState(f.contains("table",1)?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED)}})}if(!a.blockless){var c=a.lang.table;a.addCommand("table",new CKEDITOR.dialogCommand("table",{context:"table",allowedContent:"table{width,height}[align,border,cellpadding,cellspacing,summary];caption tbody thead tfoot;th td tr[scope];"+(a.plugins.dialogadvtab?
"table"+a.plugins.dialogadvtab.allowedContent():""),requiredContent:"table",contentTransformations:[["table{width}: sizeToStyle","table[width]: sizeToAttribute"]]}));a.addCommand("tableProperties",new CKEDITOR.dialogCommand("tableProperties",e()));a.addCommand("tableDelete",e({exec:function(a){var b=a.elementPath().contains("table",1);if(b){var d=b.getParent(),c=a.editable();1==d.getChildCount()&&(!d.is("td","th")&&!d.equals(c))&&(b=d);a=a.createRange();a.moveToPosition(b,CKEDITOR.POSITION_BEFORE_START);
b.remove();a.select()}}}));a.ui.addButton&&a.ui.addButton("Table",{label:c.toolbar,command:"table",toolbar:"insert,30"});CKEDITOR.dialog.add("table",this.path+"dialogs/table.js");CKEDITOR.dialog.add("tableProperties",this.path+"dialogs/table.js");a.addMenuItems&&a.addMenuItems({table:{label:c.menu,command:"tableProperties",group:"table",order:5},tabledelete:{label:c.deleteTable,command:"tableDelete",group:"table",order:1}});a.on("doubleclick",function(a){a.data.element.is("table")&&(a.data.dialog=
"tableProperties")});a.contextMenu&&a.contextMenu.addListener(function(){return{tabledelete:CKEDITOR.TRISTATE_OFF,table:CKEDITOR.TRISTATE_OFF}})}}});(function(){function p(e){function d(a){!(0<b.length)&&(a.type==CKEDITOR.NODE_ELEMENT&&y.test(a.getName())&&!a.getCustomData("selected_cell"))&&(CKEDITOR.dom.element.setMarker(c,a,"selected_cell",!0),b.push(a))}for(var e=e.getRanges(),b=[],c={},a=0;a<e.length;a++){var f=e[a];if(f.collapsed)f=f.getCommonAncestor(),(f=f.getAscendant("td",!0)||f.getAscendant("th",!0))&&b.push(f);else{var f=new CKEDITOR.dom.walker(f),g;for(f.guard=d;g=f.next();)if(g.type!=CKEDITOR.NODE_ELEMENT||!g.is(CKEDITOR.dtd.table))if((g=
g.getAscendant("td",!0)||g.getAscendant("th",!0))&&!g.getCustomData("selected_cell"))CKEDITOR.dom.element.setMarker(c,g,"selected_cell",!0),b.push(g)}}CKEDITOR.dom.element.clearAllMarkers(c);return b}function o(e,d){for(var b=p(e),c=b[0],a=c.getAscendant("table"),c=c.getDocument(),f=b[0].getParent(),g=f.$.rowIndex,b=b[b.length-1],h=b.getParent().$.rowIndex+b.$.rowSpan-1,b=new CKEDITOR.dom.element(a.$.rows[h]),g=d?g:h,f=d?f:b,b=CKEDITOR.tools.buildTableMap(a),a=b[g],g=d?b[g-1]:b[g+1],b=b[0].length,
c=c.createElement("tr"),h=0;a[h]&&h<b;h++){var i;1<a[h].rowSpan&&g&&a[h]==g[h]?(i=a[h],i.rowSpan+=1):(i=(new CKEDITOR.dom.element(a[h])).clone(),i.removeAttribute("rowSpan"),i.appendBogus(),c.append(i),i=i.$);h+=i.colSpan-1}d?c.insertBefore(f):c.insertAfter(f)}function q(e){if(e instanceof CKEDITOR.dom.selection){for(var d=p(e),b=d[0].getAscendant("table"),c=CKEDITOR.tools.buildTableMap(b),e=d[0].getParent().$.rowIndex,d=d[d.length-1],a=d.getParent().$.rowIndex+d.$.rowSpan-1,d=[],f=e;f<=a;f++){for(var g=
c[f],h=new CKEDITOR.dom.element(b.$.rows[f]),i=0;i<g.length;i++){var j=new CKEDITOR.dom.element(g[i]),l=j.getParent().$.rowIndex;1==j.$.rowSpan?j.remove():(j.$.rowSpan-=1,l==f&&(l=c[f+1],l[i-1]?j.insertAfter(new CKEDITOR.dom.element(l[i-1])):(new CKEDITOR.dom.element(b.$.rows[f+1])).append(j,1)));i+=j.$.colSpan-1}d.push(h)}c=b.$.rows;b=new CKEDITOR.dom.element(c[a+1]||(0<e?c[e-1]:null)||b.$.parentNode);for(f=d.length;0<=f;f--)q(d[f]);return b}e instanceof CKEDITOR.dom.element&&(b=e.getAscendant("table"),
1==b.$.rows.length?b.remove():e.remove());return null}function r(e,d){for(var b=d?Infinity:0,c=0;c<e.length;c++){var a;a=e[c];for(var f=d,g=a.getParent().$.cells,h=0,i=0;i<g.length;i++){var j=g[i],h=h+(f?1:j.colSpan);if(j==a.$)break}a=h-1;if(d?a<b:a>b)b=a}return b}function k(e,d){for(var b=p(e),c=b[0].getAscendant("table"),a=r(b,1),b=r(b),a=d?a:b,f=CKEDITOR.tools.buildTableMap(c),c=[],b=[],g=f.length,h=0;h<g;h++)c.push(f[h][a]),b.push(d?f[h][a-1]:f[h][a+1]);for(h=0;h<g;h++)c[h]&&(1<c[h].colSpan&&
b[h]==c[h]?(a=c[h],a.colSpan+=1):(a=(new CKEDITOR.dom.element(c[h])).clone(),a.removeAttribute("colSpan"),a.appendBogus(),a[d?"insertBefore":"insertAfter"].call(a,new CKEDITOR.dom.element(c[h])),a=a.$),h+=a.rowSpan-1)}function u(e,d){var b=e.getStartElement();if(b=b.getAscendant("td",1)||b.getAscendant("th",1)){var c=b.clone();c.appendBogus();d?c.insertBefore(b):c.insertAfter(b)}}function t(e){if(e instanceof CKEDITOR.dom.selection){var e=p(e),d=e[0]&&e[0].getAscendant("table"),b;a:{var c=0;b=e.length-
1;for(var a={},f,g;f=e[c++];)CKEDITOR.dom.element.setMarker(a,f,"delete_cell",!0);for(c=0;f=e[c++];)if((g=f.getPrevious())&&!g.getCustomData("delete_cell")||(g=f.getNext())&&!g.getCustomData("delete_cell")){CKEDITOR.dom.element.clearAllMarkers(a);b=g;break a}CKEDITOR.dom.element.clearAllMarkers(a);g=e[0].getParent();(g=g.getPrevious())?b=g.getLast():(g=e[b].getParent(),b=(g=g.getNext())?g.getChild(0):null)}for(g=e.length-1;0<=g;g--)t(e[g]);b?m(b,!0):d&&d.remove()}else e instanceof CKEDITOR.dom.element&&
(d=e.getParent(),1==d.getChildCount()?d.remove():e.remove())}function m(e,d){var b=e.getDocument(),c=CKEDITOR.document;CKEDITOR.env.ie&&10==CKEDITOR.env.version&&(c.focus(),b.focus());b=new CKEDITOR.dom.range(b);if(!b["moveToElementEdit"+(d?"End":"Start")](e))b.selectNodeContents(e),b.collapse(d?!1:!0);b.select(!0)}function v(e,d,b){e=e[d];if("undefined"==typeof b)return e;for(d=0;e&&d<e.length;d++){if(b.is&&e[d]==b.$)return d;if(d==b)return new CKEDITOR.dom.element(e[d])}return b.is?-1:null}function s(e,
d,b){var c=p(e),a;if((d?1!=c.length:2>c.length)||(a=e.getCommonAncestor())&&a.type==CKEDITOR.NODE_ELEMENT&&a.is("table"))return!1;var f,e=c[0];a=e.getAscendant("table");var g=CKEDITOR.tools.buildTableMap(a),h=g.length,i=g[0].length,j=e.getParent().$.rowIndex,l=v(g,j,e);if(d){var n;try{var m=parseInt(e.getAttribute("rowspan"),10)||1;f=parseInt(e.getAttribute("colspan"),10)||1;n=g["up"==d?j-m:"down"==d?j+m:j]["left"==d?l-f:"right"==d?l+f:l]}catch(z){return!1}if(!n||e.$==n)return!1;c["up"==d||"left"==
d?"unshift":"push"](new CKEDITOR.dom.element(n))}for(var d=e.getDocument(),o=j,m=n=0,q=!b&&new CKEDITOR.dom.documentFragment(d),s=0,d=0;d<c.length;d++){f=c[d];var k=f.getParent(),t=f.getFirst(),r=f.$.colSpan,u=f.$.rowSpan,k=k.$.rowIndex,w=v(g,k,f),s=s+r*u,m=Math.max(m,w-l+r);n=Math.max(n,k-j+u);if(!b){r=f;(u=r.getBogus())&&u.remove();r.trim();if(f.getChildren().count()){if(k!=o&&t&&(!t.isBlockBoundary||!t.isBlockBoundary({br:1})))(o=q.getLast(CKEDITOR.dom.walker.whitespaces(!0)))&&(!o.is||!o.is("br"))&&
q.append("br");f.moveChildren(q)}d?f.remove():f.setHtml("")}o=k}if(b)return n*m==s;q.moveChildren(e);e.appendBogus();m>=i?e.removeAttribute("rowSpan"):e.$.rowSpan=n;n>=h?e.removeAttribute("colSpan"):e.$.colSpan=m;b=new CKEDITOR.dom.nodeList(a.$.rows);c=b.count();for(d=c-1;0<=d;d--)a=b.getItem(d),a.$.cells.length||(a.remove(),c++);return e}function w(e,d){var b=p(e);if(1<b.length)return!1;if(d)return!0;var b=b[0],c=b.getParent(),a=c.getAscendant("table"),f=CKEDITOR.tools.buildTableMap(a),g=c.$.rowIndex,
h=v(f,g,b),i=b.$.rowSpan,j;if(1<i){j=Math.ceil(i/2);for(var i=Math.floor(i/2),c=g+j,a=new CKEDITOR.dom.element(a.$.rows[c]),f=v(f,c),l,c=b.clone(),g=0;g<f.length;g++)if(l=f[g],l.parentNode==a.$&&g>h){c.insertBefore(new CKEDITOR.dom.element(l));break}else l=null;l||a.append(c)}else{i=j=1;a=c.clone();a.insertAfter(c);a.append(c=b.clone());l=v(f,g);for(h=0;h<l.length;h++)l[h].rowSpan++}c.appendBogus();b.$.rowSpan=j;c.$.rowSpan=i;1==j&&b.removeAttribute("rowSpan");1==i&&c.removeAttribute("rowSpan");return c}
function x(e,d){var b=p(e);if(1<b.length)return!1;if(d)return!0;var b=b[0],c=b.getParent(),a=c.getAscendant("table"),a=CKEDITOR.tools.buildTableMap(a),f=v(a,c.$.rowIndex,b),g=b.$.colSpan;if(1<g)c=Math.ceil(g/2),g=Math.floor(g/2);else{for(var g=c=1,h=[],i=0;i<a.length;i++){var j=a[i];h.push(j[f]);1<j[f].rowSpan&&(i+=j[f].rowSpan-1)}for(a=0;a<h.length;a++)h[a].colSpan++}a=b.clone();a.insertAfter(b);a.appendBogus();b.$.colSpan=c;a.$.colSpan=g;1==c&&b.removeAttribute("colSpan");1==g&&a.removeAttribute("colSpan");
return a}var y=/^(?:td|th)$/;CKEDITOR.plugins.tabletools={requires:"table,dialog,contextmenu",init:function(e){function d(a){return CKEDITOR.tools.extend(a||{},{contextSensitive:1,refresh:function(a,b){this.setState(b.contains({td:1,th:1},1)?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED)}})}function b(a,b){var c=e.addCommand(a,b);e.addFeature(c)}var c=e.lang.table;b("cellProperties",new CKEDITOR.dialogCommand("cellProperties",d({allowedContent:"td th{width,height,border-color,background-color,white-space,vertical-align,text-align}[colspan,rowspan]",
requiredContent:"table"})));CKEDITOR.dialog.add("cellProperties",this.path+"dialogs/tableCell.js");b("rowDelete",d({requiredContent:"table",exec:function(a){a=a.getSelection();m(q(a))}}));b("rowInsertBefore",d({requiredContent:"table",exec:function(a){a=a.getSelection();o(a,!0)}}));b("rowInsertAfter",d({requiredContent:"table",exec:function(a){a=a.getSelection();o(a)}}));b("columnDelete",d({requiredContent:"table",exec:function(a){for(var a=a.getSelection(),a=p(a),b=a[0],c=a[a.length-1],a=b.getAscendant("table"),
d=CKEDITOR.tools.buildTableMap(a),e,j,l=[],n=0,o=d.length;n<o;n++)for(var k=0,q=d[n].length;k<q;k++)d[n][k]==b.$&&(e=k),d[n][k]==c.$&&(j=k);for(n=e;n<=j;n++)for(k=0;k<d.length;k++)c=d[k],b=new CKEDITOR.dom.element(a.$.rows[k]),c=new CKEDITOR.dom.element(c[n]),c.$&&(1==c.$.colSpan?c.remove():c.$.colSpan-=1,k+=c.$.rowSpan-1,b.$.cells.length||l.push(b));j=a.$.rows[0]&&a.$.rows[0].cells;e=new CKEDITOR.dom.element(j[e]||(e?j[e-1]:a.$.parentNode));l.length==o&&a.remove();e&&m(e,!0)}}));b("columnInsertBefore",
d({requiredContent:"table",exec:function(a){a=a.getSelection();k(a,!0)}}));b("columnInsertAfter",d({requiredContent:"table",exec:function(a){a=a.getSelection();k(a)}}));b("cellDelete",d({requiredContent:"table",exec:function(a){a=a.getSelection();t(a)}}));b("cellMerge",d({allowedContent:"td[colspan,rowspan]",requiredContent:"td[colspan,rowspan]",exec:function(a){m(s(a.getSelection()),!0)}}));b("cellMergeRight",d({allowedContent:"td[colspan]",requiredContent:"td[colspan]",exec:function(a){m(s(a.getSelection(),
"right"),!0)}}));b("cellMergeDown",d({allowedContent:"td[rowspan]",requiredContent:"td[rowspan]",exec:function(a){m(s(a.getSelection(),"down"),!0)}}));b("cellVerticalSplit",d({allowedContent:"td[rowspan]",requiredContent:"td[rowspan]",exec:function(a){m(w(a.getSelection()))}}));b("cellHorizontalSplit",d({allowedContent:"td[colspan]",requiredContent:"td[colspan]",exec:function(a){m(x(a.getSelection()))}}));b("cellInsertBefore",d({requiredContent:"table",exec:function(a){a=a.getSelection();u(a,!0)}}));
b("cellInsertAfter",d({requiredContent:"table",exec:function(a){a=a.getSelection();u(a)}}));e.addMenuItems&&e.addMenuItems({tablecell:{label:c.cell.menu,group:"tablecell",order:1,getItems:function(){var a=e.getSelection(),b=p(a);return{tablecell_insertBefore:CKEDITOR.TRISTATE_OFF,tablecell_insertAfter:CKEDITOR.TRISTATE_OFF,tablecell_delete:CKEDITOR.TRISTATE_OFF,tablecell_merge:s(a,null,!0)?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED,tablecell_merge_right:s(a,"right",!0)?CKEDITOR.TRISTATE_OFF:
CKEDITOR.TRISTATE_DISABLED,tablecell_merge_down:s(a,"down",!0)?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED,tablecell_split_vertical:w(a,!0)?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED,tablecell_split_horizontal:x(a,!0)?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED,tablecell_properties:0<b.length?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED}}},tablecell_insertBefore:{label:c.cell.insertBefore,group:"tablecell",command:"cellInsertBefore",order:5},tablecell_insertAfter:{label:c.cell.insertAfter,
group:"tablecell",command:"cellInsertAfter",order:10},tablecell_delete:{label:c.cell.deleteCell,group:"tablecell",command:"cellDelete",order:15},tablecell_merge:{label:c.cell.merge,group:"tablecell",command:"cellMerge",order:16},tablecell_merge_right:{label:c.cell.mergeRight,group:"tablecell",command:"cellMergeRight",order:17},tablecell_merge_down:{label:c.cell.mergeDown,group:"tablecell",command:"cellMergeDown",order:18},tablecell_split_horizontal:{label:c.cell.splitHorizontal,group:"tablecell",
command:"cellHorizontalSplit",order:19},tablecell_split_vertical:{label:c.cell.splitVertical,group:"tablecell",command:"cellVerticalSplit",order:20},tablecell_properties:{label:c.cell.title,group:"tablecellproperties",command:"cellProperties",order:21},tablerow:{label:c.row.menu,group:"tablerow",order:1,getItems:function(){return{tablerow_insertBefore:CKEDITOR.TRISTATE_OFF,tablerow_insertAfter:CKEDITOR.TRISTATE_OFF,tablerow_delete:CKEDITOR.TRISTATE_OFF}}},tablerow_insertBefore:{label:c.row.insertBefore,
group:"tablerow",command:"rowInsertBefore",order:5},tablerow_insertAfter:{label:c.row.insertAfter,group:"tablerow",command:"rowInsertAfter",order:10},tablerow_delete:{label:c.row.deleteRow,group:"tablerow",command:"rowDelete",order:15},tablecolumn:{label:c.column.menu,group:"tablecolumn",order:1,getItems:function(){return{tablecolumn_insertBefore:CKEDITOR.TRISTATE_OFF,tablecolumn_insertAfter:CKEDITOR.TRISTATE_OFF,tablecolumn_delete:CKEDITOR.TRISTATE_OFF}}},tablecolumn_insertBefore:{label:c.column.insertBefore,
group:"tablecolumn",command:"columnInsertBefore",order:5},tablecolumn_insertAfter:{label:c.column.insertAfter,group:"tablecolumn",command:"columnInsertAfter",order:10},tablecolumn_delete:{label:c.column.deleteColumn,group:"tablecolumn",command:"columnDelete",order:15}});e.contextMenu&&e.contextMenu.addListener(function(a,b,c){return(a=c.contains({td:1,th:1},1))&&!a.isReadOnly()?{tablecell:CKEDITOR.TRISTATE_OFF,tablerow:CKEDITOR.TRISTATE_OFF,tablecolumn:CKEDITOR.TRISTATE_OFF}:null})},getSelectedCells:p};
CKEDITOR.plugins.add("tabletools",CKEDITOR.plugins.tabletools)})();CKEDITOR.tools.buildTableMap=function(p){for(var p=p.$.rows,o=-1,q=[],r=0;r<p.length;r++){o++;!q[o]&&(q[o]=[]);for(var k=-1,u=0;u<p[r].cells.length;u++){var t=p[r].cells[u];for(k++;q[o][k];)k++;for(var m=isNaN(t.colSpan)?1:t.colSpan,t=isNaN(t.rowSpan)?1:t.rowSpan,v=0;v<t;v++){q[o+v]||(q[o+v]=[]);for(var s=0;s<m;s++)q[o+v][k+s]=p[r].cells[u]}k+=m-1}}return q};(function(){var g=[CKEDITOR.CTRL+90,CKEDITOR.CTRL+89,CKEDITOR.CTRL+CKEDITOR.SHIFT+90],l={8:1,46:1};CKEDITOR.plugins.add("undo",{init:function(a){function b(a){d.enabled&&!1!==a.data.command.canUndo&&d.save()}function c(){d.enabled=a.readOnly?!1:"wysiwyg"==a.mode;d.onChange()}var d=a.undoManager=new e(a),j=d.editingHandler=new i(d),f=a.addCommand("undo",{exec:function(){d.undo()&&(a.selectionChange(),this.fire("afterUndo"))},startDisabled:!0,canUndo:!1}),h=a.addCommand("redo",{exec:function(){d.redo()&&
(a.selectionChange(),this.fire("afterRedo"))},startDisabled:!0,canUndo:!1});a.setKeystroke([[g[0],"undo"],[g[1],"redo"],[g[2],"redo"]]);d.onChange=function(){f.setState(d.undoable()?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED);h.setState(d.redoable()?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED)};a.on("beforeCommandExec",b);a.on("afterCommandExec",b);a.on("saveSnapshot",function(a){d.save(a.data&&a.data.contentOnly)});a.on("contentDom",j.attachListeners,j);a.on("instanceReady",function(){a.fire("saveSnapshot")});
a.on("beforeModeUnload",function(){"wysiwyg"==a.mode&&d.save(!0)});a.on("mode",c);a.on("readOnly",c);a.ui.addButton&&(a.ui.addButton("Undo",{label:a.lang.undo.undo,command:"undo",toolbar:"undo,10"}),a.ui.addButton("Redo",{label:a.lang.undo.redo,command:"redo",toolbar:"undo,20"}));a.resetUndo=function(){d.reset();a.fire("saveSnapshot")};a.on("updateSnapshot",function(){d.currentImage&&d.update()});a.on("lockSnapshot",function(a){a=a.data;d.lock(a&&a.dontUpdate,a&&a.forceUpdate)});a.on("unlockSnapshot",
d.unlock,d)}});CKEDITOR.plugins.undo={};var e=CKEDITOR.plugins.undo.UndoManager=function(a){this.strokesRecorded=[0,0];this.locked=null;this.previousKeyGroup=-1;this.limit=a.config.undoStackSize||20;this.strokesLimit=25;this.editor=a;this.reset()};e.prototype={type:function(a,b){var c=e.getKeyGroup(a),d=this.strokesRecorded[c]+1,b=b||d>=this.strokesLimit;this.typing||(this.hasUndo=this.typing=!0,this.hasRedo=!1,this.onChange());b?(d=0,this.editor.fire("saveSnapshot")):this.editor.fire("change");this.strokesRecorded[c]=
d;this.previousKeyGroup=c},keyGroupChanged:function(a){return e.getKeyGroup(a)!=this.previousKeyGroup},reset:function(){this.snapshots=[];this.index=-1;this.currentImage=null;this.hasRedo=this.hasUndo=!1;this.locked=null;this.resetType()},resetType:function(){this.strokesRecorded=[0,0];this.typing=!1;this.previousKeyGroup=-1},refreshState:function(){this.hasUndo=!!this.getNextImage(!0);this.hasRedo=!!this.getNextImage(!1);this.resetType();this.onChange()},save:function(a,b,c){var d=this.editor;if(this.locked||
"ready"!=d.status||"wysiwyg"!=d.mode)return!1;var e=d.editable();if(!e||"ready"!=e.status)return!1;e=this.snapshots;b||(b=new f(d));if(!1===b.contents)return!1;if(this.currentImage)if(b.equalsContent(this.currentImage)){if(a||b.equalsSelection(this.currentImage))return!1}else!1!==c&&d.fire("change");e.splice(this.index+1,e.length-this.index-1);e.length==this.limit&&e.shift();this.index=e.push(b)-1;this.currentImage=b;!1!==c&&this.refreshState();return!0},restoreImage:function(a){var b=this.editor,
c;a.bookmarks&&(b.focus(),c=b.getSelection());this.locked={level:999};this.editor.loadSnapshot(a.contents);a.bookmarks?c.selectBookmarks(a.bookmarks):CKEDITOR.env.ie&&(c=this.editor.document.getBody().$.createTextRange(),c.collapse(!0),c.select());this.locked=null;this.index=a.index;this.currentImage=this.snapshots[this.index];this.update();this.refreshState();b.fire("change")},getNextImage:function(a){var b=this.snapshots,c=this.currentImage,d;if(c)if(a)for(d=this.index-1;0<=d;d--){if(a=b[d],!c.equalsContent(a))return a.index=
d,a}else for(d=this.index+1;d<b.length;d++)if(a=b[d],!c.equalsContent(a))return a.index=d,a;return null},redoable:function(){return this.enabled&&this.hasRedo},undoable:function(){return this.enabled&&this.hasUndo},undo:function(){if(this.undoable()){this.save(!0);var a=this.getNextImage(!0);if(a)return this.restoreImage(a),!0}return!1},redo:function(){if(this.redoable()&&(this.save(!0),this.redoable())){var a=this.getNextImage(!1);if(a)return this.restoreImage(a),!0}return!1},update:function(a){if(!this.locked){a||
(a=new f(this.editor));for(var b=this.index,c=this.snapshots;0<b&&this.currentImage.equalsContent(c[b-1]);)b-=1;c.splice(b,this.index-b+1,a);this.index=b;this.currentImage=a}},updateSelection:function(a){if(!this.snapshots.length)return!1;var b=this.snapshots,c=b[b.length-1];return c.equalsContent(a)&&!c.equalsSelection(a)?(this.currentImage=b[b.length-1]=a,!0):!1},lock:function(a,b){if(this.locked)this.locked.level++;else if(a)this.locked={level:1};else{var c=null;if(b)c=!0;else{var d=new f(this.editor,
!0);this.currentImage&&this.currentImage.equalsContent(d)&&(c=d)}this.locked={update:c,level:1}}},unlock:function(){if(this.locked&&!--this.locked.level){var a=this.locked.update;this.locked=null;if(!0===a)this.update();else if(a){var b=new f(this.editor,!0);a.equalsContent(b)||this.update()}}}};e.navigationKeyCodes={37:1,38:1,39:1,40:1,36:1,35:1,33:1,34:1};e.keyGroups={PRINTABLE:0,FUNCTIONAL:1};e.isNavigationKey=function(a){return!!e.navigationKeyCodes[a]};e.getKeyGroup=function(a){var b=e.keyGroups;
return l[a]?b.FUNCTIONAL:b.PRINTABLE};e.getOppositeKeyGroup=function(a){var b=e.keyGroups;return a==b.FUNCTIONAL?b.PRINTABLE:b.FUNCTIONAL};e.ieFunctionalKeysBug=function(a){return CKEDITOR.env.ie&&e.getKeyGroup(a)==e.keyGroups.FUNCTIONAL};var f=CKEDITOR.plugins.undo.Image=function(a,b){this.editor=a;a.fire("beforeUndoImage");var c=a.getSnapshot();CKEDITOR.env.ie&&c&&(c=c.replace(/\s+data-cke-expando=".*?"/g,""));this.contents=c;b||(this.bookmarks=(c=c&&a.getSelection())&&c.createBookmarks2(!0));a.fire("afterUndoImage")},
h=/\b(?:href|src|name)="[^"]*?"/gi;f.prototype={equalsContent:function(a){var b=this.contents,a=a.contents;if(CKEDITOR.env.ie&&(CKEDITOR.env.ie7Compat||CKEDITOR.env.quirks))b=b.replace(h,""),a=a.replace(h,"");return b!=a?!1:!0},equalsSelection:function(a){var b=this.bookmarks,a=a.bookmarks;if(b||a){if(!b||!a||b.length!=a.length)return!1;for(var c=0;c<b.length;c++){var d=b[c],e=a[c];if(d.startOffset!=e.startOffset||d.endOffset!=e.endOffset||!CKEDITOR.tools.arrayCompare(d.start,e.start)||!CKEDITOR.tools.arrayCompare(d.end,
e.end))return!1}}return!0}};var i=CKEDITOR.plugins.undo.NativeEditingHandler=function(a){this.undoManager=a;this.ignoreInputEvent=!1;this.keyEventsStack=new k;this.lastKeydownImage=null};i.prototype={onKeydown:function(a){if(-1<CKEDITOR.tools.indexOf(g,a.data.getKeystroke()))a.data.preventDefault();else{this.keyEventsStack.cleanUp(a);var a=a.data.getKey(),b=this.undoManager;this.keyEventsStack.getLast(a)||this.keyEventsStack.push(a);this.lastKeydownImage=new f(b.editor);if(e.isNavigationKey(a)||this.undoManager.keyGroupChanged(a))if(b.strokesRecorded[0]||
b.strokesRecorded[1])b.save(!1,this.lastKeydownImage,!1),b.resetType()}},onInput:function(){if(this.ignoreInputEvent)this.ignoreInputEvent=!1;else{var a=this.keyEventsStack.getLast();a||(a=this.keyEventsStack.push(0));this.keyEventsStack.increment(a.keyCode);this.keyEventsStack.getTotalInputs()>=this.undoManager.strokesLimit&&(this.undoManager.type(a.keyCode,!0),this.keyEventsStack.resetInputs())}},onKeyup:function(a){var b=this.undoManager,a=a.data.getKey(),c=this.keyEventsStack.getTotalInputs();
this.keyEventsStack.remove(a);if(!e.ieFunctionalKeysBug(a)||!this.lastKeydownImage||!this.lastKeydownImage.equalsContent(new f(b.editor,!0)))if(0<c)b.type(a);else if(e.isNavigationKey(a))this.onNavigationKey(!0)},onNavigationKey:function(a){var b=this.undoManager;(a||!b.save(!0,null,!1))&&b.updateSelection(new f(b.editor));b.resetType()},ignoreInputEventListener:function(){this.ignoreInputEvent=!0},attachListeners:function(){var a=this.undoManager.editor,b=a.editable(),c=this;b.attachListener(b,"keydown",
function(a){c.onKeydown(a);if(e.ieFunctionalKeysBug(a.data.getKey()))c.onInput()},null,null,999);b.attachListener(b,CKEDITOR.env.ie?"keypress":"input",c.onInput,c,null,999);b.attachListener(b,"keyup",c.onKeyup,c,null,999);b.attachListener(b,"paste",c.ignoreInputEventListener,c,null,999);b.attachListener(b,"drop",c.ignoreInputEventListener,c,null,999);b.attachListener(b.isInline()?b:a.document.getDocumentElement(),"click",function(){c.onNavigationKey()},null,null,999);b.attachListener(this.undoManager.editor,
"blur",function(){c.keyEventsStack.remove(9)},null,null,999)}};var k=CKEDITOR.plugins.undo.KeyEventsStack=function(){this.stack=[]};k.prototype={push:function(a){return this.stack[this.stack.push({keyCode:a,inputs:0})-1]},getLastIndex:function(a){if("number"!=typeof a)return this.stack.length-1;for(var b=this.stack.length;b--;)if(this.stack[b].keyCode==a)return b;return-1},getLast:function(a){a=this.getLastIndex(a);return-1!=a?this.stack[a]:null},increment:function(a){this.getLast(a).inputs++},remove:function(a){a=
this.getLastIndex(a);-1!=a&&this.stack.splice(a,1)},resetInputs:function(a){if("number"==typeof a)this.getLast(a).inputs=0;else for(a=this.stack.length;a--;)this.stack[a].inputs=0},getTotalInputs:function(){for(var a=this.stack.length,b=0;a--;)b+=this.stack[a].inputs;return b},cleanUp:function(a){a=a.data.$;!a.ctrlKey&&!a.metaKey&&this.remove(17);a.shiftKey||this.remove(16);a.altKey||this.remove(18)}}})();CKEDITOR.plugins.add("wsc",{requires:"dialog",parseApi:function(a){a.config.wsc_onFinish="function"===typeof a.config.wsc_onFinish?a.config.wsc_onFinish:function(){};a.config.wsc_onClose="function"===typeof a.config.wsc_onClose?a.config.wsc_onClose:function(){}},parseConfig:function(a){a.config.wsc_customerId=a.config.wsc_customerId||CKEDITOR.config.wsc_customerId||"1:ua3xw1-2XyGJ3-GWruD3-6OFNT1-oXcuB1-nR6Bp4-hgQHc-EcYng3-sdRXG3-NOfFk";a.config.wsc_customDictionaryIds=a.config.wsc_customDictionaryIds||
CKEDITOR.config.wsc_customDictionaryIds||"";a.config.wsc_userDictionaryName=a.config.wsc_userDictionaryName||CKEDITOR.config.wsc_userDictionaryName||"";a.config.wsc_customLoaderScript=a.config.wsc_customLoaderScript||CKEDITOR.config.wsc_customLoaderScript;CKEDITOR.config.wsc_cmd=a.config.wsc_cmd||CKEDITOR.config.wsc_cmd||"spell";CKEDITOR.config.wsc_version="v4.3.0-26-g5bcf855";CKEDITOR.config.wsc_removeGlobalVariable=!0},init:function(a){var b=CKEDITOR.env;this.parseConfig(a);this.parseApi(a);a.addCommand("checkspell",
new CKEDITOR.dialogCommand("checkspell")).modes={wysiwyg:!CKEDITOR.env.opera&&!CKEDITOR.env.air&&document.domain==window.location.hostname&&!(b.ie&&(8>b.version||b.quirks))};"undefined"==typeof a.plugins.scayt&&a.ui.addButton&&a.ui.addButton("SpellChecker",{label:a.lang.wsc.toolbar,click:function(a){var b=a.elementMode==CKEDITOR.ELEMENT_MODE_INLINE?a.container.getText():a.document.getBody().getText();(b=b.replace(/\s/g,""))?a.execCommand("checkspell"):alert("Nothing to check!")},toolbar:"spellchecker,10"});
CKEDITOR.dialog.add("checkspell",this.path+(CKEDITOR.env.ie&&7>=CKEDITOR.env.version?"dialogs/wsc_ie.js":window.postMessage?"dialogs/wsc.js":"dialogs/wsc_ie.js"))}});(function(){CKEDITOR.plugins.add("selectall",{init:function(b){b.addCommand("selectAll",{modes:{wysiwyg:1,source:1},exec:function(a){var b=a.editable();if(b.is("textarea"))a=b.$,CKEDITOR.env.ie?a.createTextRange().execCommand("SelectAll"):(a.selectionStart=0,a.selectionEnd=a.value.length),a.focus();else{if(b.is("body"))a.document.$.execCommand("SelectAll",!1,null);else{var c=a.createRange();c.selectNodeContents(b);c.select()}a.forceNextSelectionCheck();a.selectionChange()}},canUndo:!1});b.ui.addButton&&
b.ui.addButton("SelectAll",{label:b.lang.selectall.toolbar,command:"selectAll",toolbar:"selection,10"})}})})();(function(){CKEDITOR.plugins.add("maxheight",{init:function(a){var b=a.plugins.maxheight,c=window;-1!=navigator.appVersion.indexOf("MSIE 7.")&&(c=a.element.$.parentElement);var d=function(){b.recalcCKEditorSize(a)};a.maximizeHeightNow=d;b.addEvent(c,"resize",d);a.on("instanceReady",d)},recalcCKEditorSize:function(a){if(a&&a.element&&a.container){var b=a.getResizable().$.style.width;""==b&&(b=a.element.$.style.width,""==b&&(b="100%"));a.resize(b,a.container.$.parentElement.offsetHeight,null,!1)}},
addEvent:function(a,b,c){null==a||void 0==a||(a.addEventListener?a.addEventListener(b,c,!1):a.attachEvent?a.attachEvent("on"+b,c):a["on"+b]=c)}})})();(function(){function j(a,b,c,f,m,j,p,r){for(var s=a.config,n=new CKEDITOR.style(p),i=m.split(";"),m=[],k={},d=0;d<i.length;d++){var h=i[d];if(h){var h=h.split("/"),q={},l=i[d]=h[0];q[c]=m[d]=h[1]||l;k[l]=new CKEDITOR.style(p,q);k[l]._.definition.name=l}else i.splice(d--,1)}a.ui.addRichCombo(b,{label:f.label,title:f.panelTitle,toolbar:"styles,"+r,allowedContent:n,requiredContent:n,panel:{css:[CKEDITOR.skin.getPath("editor")].concat(s.contentsCss),multiSelect:!1,attributes:{"aria-label":f.panelTitle}},
init:function(){this.startGroup(f.panelTitle);for(var a=0;a<i.length;a++){var b=i[a];this.add(b,k[b].buildPreview(),b)}},onClick:function(b){a.focus();a.fire("saveSnapshot");var c=this.getValue(),f=k[b];if(c&&b!=c){var i=k[c],e=a.getSelection().getRanges()[0];if(e.collapsed){var d=a.elementPath(),g=d.contains(function(a){return i.checkElementRemovable(a)});if(g){var h=e.checkBoundaryOfElement(g,CKEDITOR.START),j=e.checkBoundaryOfElement(g,CKEDITOR.END);if(h&&j){for(h=e.createBookmark();d=g.getFirst();)d.insertBefore(g);
g.remove();e.moveToBookmark(h)}else h?e.moveToPosition(g,CKEDITOR.POSITION_BEFORE_START):j?e.moveToPosition(g,CKEDITOR.POSITION_AFTER_END):(e.splitElement(g),e.moveToPosition(g,CKEDITOR.POSITION_AFTER_END),o(e,d.elements.slice(),g));a.getSelection().selectRanges([e])}}else a.removeStyle(i)}a[c==b?"removeStyle":"applyStyle"](f);a.fire("saveSnapshot")},onRender:function(){a.on("selectionChange",function(b){for(var c=this.getValue(),b=b.data.path.elements,d=0,f;d<b.length;d++){f=b[d];for(var e in k)if(k[e].checkElementMatch(f,
!0,a)){e!=c&&this.setValue(e);return}}this.setValue("",j)},this)},refresh:function(){a.activeFilter.check(n)||this.setState(CKEDITOR.TRISTATE_DISABLED)}})}function o(a,b,c){var f=b.pop();if(f){if(c)return o(a,b,f.equals(c)?null:c);c=f.clone();a.insertNode(c);a.moveToPosition(c,CKEDITOR.POSITION_AFTER_START);o(a,b)}}CKEDITOR.plugins.add("font",{requires:"richcombo",init:function(a){var b=a.config;j(a,"Font","family",a.lang.font,b.font_names,b.font_defaultLabel,b.font_style,30);j(a,"FontSize","size",
a.lang.font.fontSize,b.fontSize_sizes,b.fontSize_defaultLabel,b.fontSize_style,40)}})})();CKEDITOR.config.font_names="Arial/Arial, Helvetica, sans-serif;Comic Sans MS/Comic Sans MS, cursive;Courier New/Courier New, Courier, monospace;Georgia/Georgia, serif;Lucida Sans Unicode/Lucida Sans Unicode, Lucida Grande, sans-serif;Tahoma/Tahoma, Geneva, sans-serif;Times New Roman/Times New Roman, Times, serif;Trebuchet MS/Trebuchet MS, Helvetica, sans-serif;Verdana/Verdana, Geneva, sans-serif";
CKEDITOR.config.font_defaultLabel="";CKEDITOR.config.font_style={element:"span",styles:{"font-family":"#(family)"},overrides:[{element:"font",attributes:{face:null}}]};CKEDITOR.config.fontSize_sizes="8/8px;9/9px;10/10px;11/11px;12/12px;14/14px;16/16px;18/18px;20/20px;22/22px;24/24px;26/26px;28/28px;36/36px;48/48px;72/72px";CKEDITOR.config.fontSize_defaultLabel="";CKEDITOR.config.fontSize_style={element:"span",styles:{"font-size":"#(size)"},overrides:[{element:"font",attributes:{size:null}}]};CKEDITOR.plugins.add("panelbutton",{requires:"button",onLoad:function(){function e(c){var a=this._;a.state!=CKEDITOR.TRISTATE_DISABLED&&(this.createPanel(c),a.on?a.panel.hide():a.panel.showBlock(this._.id,this.document.getById(this._.id),4))}CKEDITOR.ui.panelButton=CKEDITOR.tools.createClass({base:CKEDITOR.ui.button,$:function(c){var a=c.panel||{};delete c.panel;this.base(c);this.document=a.parent&&a.parent.getDocument()||CKEDITOR.document;a.block={attributes:a.attributes};this.hasArrow=a.toolbarRelated=
!0;this.click=e;this._={panelDefinition:a}},statics:{handler:{create:function(c){return new CKEDITOR.ui.panelButton(c)}}},proto:{createPanel:function(c){var a=this._;if(!a.panel){var f=this._.panelDefinition,e=this._.panelDefinition.block,g=f.parent||CKEDITOR.document.getBody(),d=this._.panel=new CKEDITOR.ui.floatPanel(c,g,f),f=d.addBlock(a.id,e),b=this;d.onShow=function(){b.className&&this.element.addClass(b.className+"_panel");b.setState(CKEDITOR.TRISTATE_ON);a.on=1;b.editorFocus&&c.focus();if(b.onOpen)b.onOpen()};
d.onHide=function(d){b.className&&this.element.getFirst().removeClass(b.className+"_panel");b.setState(b.modes&&b.modes[c.mode]?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED);a.on=0;if(!d&&b.onClose)b.onClose()};d.onEscape=function(){d.hide(1);b.document.getById(a.id).focus()};if(this.onBlock)this.onBlock(d,f);f.onHide=function(){a.on=0;b.setState(CKEDITOR.TRISTATE_OFF)}}}}})},beforeInit:function(e){e.ui.addHandler(CKEDITOR.UI_PANELBUTTON,CKEDITOR.ui.panelButton.handler)}});
CKEDITOR.UI_PANELBUTTON="panelbutton";CKEDITOR.plugins.add("colorbutton",{requires:"panelbutton,floatpanel",init:function(c){function o(m,g,d,h){var i=new CKEDITOR.style(j["colorButton_"+g+"Style"]),k=CKEDITOR.tools.getNextId()+"_colorBox";c.ui.add(m,CKEDITOR.UI_PANELBUTTON,{label:d,title:d,modes:{wysiwyg:1},editorFocus:0,toolbar:"colors,"+h,allowedContent:i,requiredContent:i,panel:{css:CKEDITOR.skin.getPath("editor"),attributes:{role:"listbox","aria-label":f.panelTitle}},onBlock:function(a,b){b.autoSize=!0;b.element.addClass("cke_colorblock");
b.element.setHtml(q(a,g,k));b.element.getDocument().getBody().setStyle("overflow","hidden");CKEDITOR.ui.fire("ready",this);var e=b.keys,d="rtl"==c.lang.dir;e[d?37:39]="next";e[40]="next";e[9]="next";e[d?39:37]="prev";e[38]="prev";e[CKEDITOR.SHIFT+9]="prev";e[32]="click"},refresh:function(){c.activeFilter.check(i)||this.setState(CKEDITOR.TRISTATE_DISABLED)},onOpen:function(){var a=c.getSelection(),a=a&&a.getStartElement(),a=c.elementPath(a),b;if(a){a=a.block||a.blockLimit||c.document.getBody();do b=
a&&a.getComputedStyle("back"==g?"background-color":"color")||"transparent";while("back"==g&&"transparent"==b&&a&&(a=a.getParent()));if(!b||"transparent"==b)b="#ffffff";this._.panel._.iframe.getFrameDocument().getById(k).setStyle("background-color",b);return b}}})}function q(m,g,d){var h=[],i=j.colorButton_colors.split(","),k=c.plugins.colordialog&&!1!==j.colorButton_enableMore,a=i.length+(k?2:1),b=CKEDITOR.tools.addFunction(function(a,b){if("?"==a){var e=arguments.callee,d=function(a){this.removeListener("ok",
d);this.removeListener("cancel",d);"ok"==a.name&&e(this.getContentElement("picker","selectedColor").getValue(),b)};c.openDialog("colordialog",function(){this.on("ok",d);this.on("cancel",d)})}else{c.focus();m.hide();c.fire("saveSnapshot");c.removeStyle(new CKEDITOR.style(j["colorButton_"+b+"Style"],{color:"inherit"}));if(a){var f=j["colorButton_"+b+"Style"];f.childRule="back"==b?function(a){return p(a)}:function(a){return!(a.is("a")||a.getElementsByTag("a").count())||p(a)};c.applyStyle(new CKEDITOR.style(f,
{color:a}))}c.fire("saveSnapshot")}});h.push('<a class="cke_colorauto" _cke_focus=1 hidefocus=true title="',f.auto,'" onclick="CKEDITOR.tools.callFunction(',b,",null,'",g,"');return false;\" href=\"javascript:void('",f.auto,'\')" role="option" aria-posinset="1" aria-setsize="',a,'"><table role="presentation" cellspacing=0 cellpadding=0 width="100%"><tr><td><span class="cke_colorbox" id="',d,'"></span></td><td colspan=7 align=center>',f.auto,'</td></tr></table></a><table role="presentation" cellspacing=0 cellpadding=0 width="100%">');
for(d=0;d<i.length;d++){0===d%8&&h.push("</tr><tr>");var e=i[d].split("/"),l=e[0],n=e[1]||l;e[1]||(l="#"+l.replace(/^(.)(.)(.)$/,"$1$1$2$2$3$3"));e=c.lang.colorbutton.colors[n]||n;h.push('<td><a class="cke_colorbox" _cke_focus=1 hidefocus=true title="',e,'" onclick="CKEDITOR.tools.callFunction(',b,",'",l,"','",g,"'); return false;\" href=\"javascript:void('",e,'\')" role="option" aria-posinset="',d+2,'" aria-setsize="',a,'"><span class="cke_colorbox" style="background-color:#',n,'"></span></a></td>')}k&&
h.push('</tr><tr><td colspan=8 align=center><a class="cke_colormore" _cke_focus=1 hidefocus=true title="',f.more,'" onclick="CKEDITOR.tools.callFunction(',b,",'?','",g,"');return false;\" href=\"javascript:void('",f.more,"')\"",' role="option" aria-posinset="',a,'" aria-setsize="',a,'">',f.more,"</a></td>");h.push("</tr></table>");return h.join("")}function p(c){return"false"==c.getAttribute("contentEditable")||c.getAttribute("data-nostyle")}var j=c.config,f=c.lang.colorbutton;CKEDITOR.env.hc||(o("TextColor",
"fore",f.textColorTitle,10),o("BGColor","back",f.bgColorTitle,20))}});CKEDITOR.config.colorButton_colors="000,800000,8B4513,2F4F4F,008080,000080,4B0082,696969,B22222,A52A2A,DAA520,006400,40E0D0,0000CD,800080,808080,F00,FF8C00,FFD700,008000,0FF,00F,EE82EE,A9A9A9,FFA07A,FFA500,FFFF00,00FF00,AFEEEE,ADD8E6,DDA0DD,D3D3D3,FFF0F5,FAEBD7,FFFFE0,F0FFF0,F0FFFF,F0F8FF,E6E6FA,FFF";CKEDITOR.config.colorButton_foreStyle={element:"span",styles:{color:"#(color)"},overrides:[{element:"font",attributes:{color:null}}]};
CKEDITOR.config.colorButton_backStyle={element:"span",styles:{"background-color":"#(color)"}};CKEDITOR.config.plugins='basicstyles,blockquote,dialogui,dialog,clipboard,panel,floatpanel,menu,contextmenu,resize,button,toolbar,enterkey,entities,listblock,richcombo,format,horizontalrule,htmlwriter,wysiwygarea,image,indent,indentlist,fakeobjects,link,list,pastetext,pastefromword,removeformat,showborders,sourcearea,specialchar,menubutton,scayt,stylescombo,tab,table,tabletools,undo,wsc,selectall,maxheight,font,panelbutton,colorbutton';CKEDITOR.config.skin='moono';(function() {var setIcons = function(icons, strip) {var path = CKEDITOR.getUrl( 'plugins/' + strip );icons = icons.split( ',' );for ( var i = 0; i < icons.length; i++ )CKEDITOR.skin.icons[ icons[ i ] ] = { path: path, offset: -icons[ ++i ], bgsize : icons[ ++i ] };};if (CKEDITOR.env.hidpi) setIcons('bold,0,,italic,24,,strike,48,,subscript,72,,superscript,96,,underline,120,,blockquote,144,,copy-rtl,168,,copy,192,,cut-rtl,216,,cut,240,,paste-rtl,264,,paste,288,,horizontalrule,312,,image,336,,indent-rtl,360,,indent,384,,outdent-rtl,408,,outdent,432,,anchor-rtl,456,,anchor,480,,link,504,,unlink,528,,bulletedlist-rtl,552,,bulletedlist,576,,numberedlist-rtl,600,,numberedlist,624,,pastetext-rtl,648,,pastetext,672,,pastefromword-rtl,696,,pastefromword,720,,removeformat,744,,source-rtl,768,,source,792,,specialchar,816,,scayt,840,,table,864,,redo-rtl,888,,redo,912,,undo-rtl,936,,undo,960,,spellchecker,984,,selectall,1008,,bgcolor,1032,,textcolor,1056,','icons_hidpi.png');else setIcons('bold,0,auto,italic,24,auto,strike,48,auto,subscript,72,auto,superscript,96,auto,underline,120,auto,blockquote,144,auto,copy-rtl,168,auto,copy,192,auto,cut-rtl,216,auto,cut,240,auto,paste-rtl,264,auto,paste,288,auto,horizontalrule,312,auto,image,336,auto,indent-rtl,360,auto,indent,384,auto,outdent-rtl,408,auto,outdent,432,auto,anchor-rtl,456,auto,anchor,480,auto,link,504,auto,unlink,528,auto,bulletedlist-rtl,552,auto,bulletedlist,576,auto,numberedlist-rtl,600,auto,numberedlist,624,auto,pastetext-rtl,648,auto,pastetext,672,auto,pastefromword-rtl,696,auto,pastefromword,720,auto,removeformat,744,auto,source-rtl,768,auto,source,792,auto,specialchar,816,auto,scayt,840,auto,table,864,auto,redo-rtl,888,auto,redo,912,auto,undo-rtl,936,auto,undo,960,auto,spellchecker,984,auto,selectall,1008,auto,bgcolor,1032,auto,textcolor,1056,auto','icons.png');})();CKEDITOR.lang.languages={"en":1};}());admin/ckeditor/adapters/0000755000352000025440000000000014373776770015747 5ustar  thediannthediannadmin/ckeditor/adapters/jquery.js0000644000352000025440000000567212450564214017614 0ustar  thediannthediann/*
 Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 For licensing, see LICENSE.md or http://ckeditor.com/license
*/
(function(a){CKEDITOR.config.jqueryOverrideVal="undefined"==typeof CKEDITOR.config.jqueryOverrideVal?!0:CKEDITOR.config.jqueryOverrideVal;"undefined"!=typeof a&&(a.extend(a.fn,{ckeditorGet:function(){var a=this.eq(0).data("ckeditorInstance");if(!a)throw"CKEditor is not initialized yet, use ckeditor() with a callback.";return a},ckeditor:function(g,d){if(!CKEDITOR.env.isCompatible)throw Error("The environment is incompatible.");if(!a.isFunction(g))var k=d,d=g,g=k;var i=[],d=d||{};this.each(function(){var b=
a(this),c=b.data("ckeditorInstance"),f=b.data("_ckeditorInstanceLock"),h=this,j=new a.Deferred;i.push(j.promise());if(c&&!f)g&&g.apply(c,[this]),j.resolve();else if(f)c.once("instanceReady",function(){setTimeout(function(){c.element?(c.element.$==h&&g&&g.apply(c,[h]),j.resolve()):setTimeout(arguments.callee,100)},0)},null,null,9999);else{if(d.autoUpdateElement||"undefined"==typeof d.autoUpdateElement&&CKEDITOR.config.autoUpdateElement)d.autoUpdateElementJquery=!0;d.autoUpdateElement=!1;b.data("_ckeditorInstanceLock",
!0);c=a(this).is("textarea")?CKEDITOR.replace(h,d):CKEDITOR.inline(h,d);b.data("ckeditorInstance",c);c.on("instanceReady",function(d){var e=d.editor;setTimeout(function(){if(e.element){d.removeListener();e.on("dataReady",function(){b.trigger("dataReady.ckeditor",[e])});e.on("setData",function(a){b.trigger("setData.ckeditor",[e,a.data])});e.on("getData",function(a){b.trigger("getData.ckeditor",[e,a.data])},999);e.on("destroy",function(){b.trigger("destroy.ckeditor",[e])});e.on("save",function(){a(h.form).submit();
return!1},null,null,20);if(e.config.autoUpdateElementJquery&&b.is("textarea")&&a(h.form).length){var c=function(){b.ckeditor(function(){e.updateElement()})};a(h.form).submit(c);a(h.form).bind("form-pre-serialize",c);b.bind("destroy.ckeditor",function(){a(h.form).unbind("submit",c);a(h.form).unbind("form-pre-serialize",c)})}e.on("destroy",function(){b.removeData("ckeditorInstance")});b.removeData("_ckeditorInstanceLock");b.trigger("instanceReady.ckeditor",[e]);g&&g.apply(e,[h]);j.resolve()}else setTimeout(arguments.callee,
100)},0)},null,null,9999)}});var f=new a.Deferred;this.promise=f.promise();a.when.apply(this,i).then(function(){f.resolve()});this.editor=this.eq(0).data("ckeditorInstance");return this}}),CKEDITOR.config.jqueryOverrideVal&&(a.fn.val=CKEDITOR.tools.override(a.fn.val,function(g){return function(d){if(arguments.length){var k=this,i=[],f=this.each(function(){var b=a(this),c=b.data("ckeditorInstance");if(b.is("textarea")&&c){var f=new a.Deferred;c.setData(d,function(){f.resolve()});i.push(f.promise());
return!0}return g.call(b,d)});if(i.length){var b=new a.Deferred;a.when.apply(this,i).done(function(){b.resolveWith(k)});return b.promise()}return f}var f=a(this).eq(0),c=f.data("ckeditorInstance");return f.is("textarea")&&c?c.getData():g.call(f)}})))})(window.jQuery);admin/ckeditor/styles.js0000644000352000025440000000701312450564214016004 0ustar  thediannthediann/**
 * Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 * For licensing, see LICENSE.md or http://ckeditor.com/license
 */

// This file contains style definitions that can be used by CKEditor plugins.
//
// The most common use for it is the "stylescombo" plugin, which shows a combo
// in the editor toolbar, containing all styles. Other plugins instead, like
// the div plugin, use a subset of the styles on their feature.
//
// If you don't have plugins that depend on this file, you can simply ignore it.
// Otherwise it is strongly recommended to customize this file to match your
// website requirements and design properly.

CKEDITOR.stylesSet.add( 'default', [
	/* Block Styles */

	// These styles are already available in the "Format" combo ("format" plugin),
	// so they are not needed here by default. You may enable them to avoid
	// placing the "Format" combo in the toolbar, maintaining the same features.
	/*
	{ name: 'Paragraph',		element: 'p' },
	{ name: 'Heading 1',		element: 'h1' },
	{ name: 'Heading 2',		element: 'h2' },
	{ name: 'Heading 3',		element: 'h3' },
	{ name: 'Heading 4',		element: 'h4' },
	{ name: 'Heading 5',		element: 'h5' },
	{ name: 'Heading 6',		element: 'h6' },
	{ name: 'Preformatted Text',element: 'pre' },
	{ name: 'Address',			element: 'address' },
	*/

	{ name: 'Italic Title',		element: 'h2', styles: { 'font-style': 'italic' } },
	{ name: 'Subtitle',			element: 'h3', styles: { 'color': '#aaa', 'font-style': 'italic' } },
	{
		name: 'Special Container',
		element: 'div',
		styles: {
			padding: '5px 10px',
			background: '#eee',
			border: '1px solid #ccc'
		}
	},

	/* Inline Styles */

	// These are core styles available as toolbar buttons. You may opt enabling
	// some of them in the Styles combo, removing them from the toolbar.
	// (This requires the "stylescombo" plugin)
	/*
	{ name: 'Strong',			element: 'strong', overrides: 'b' },
	{ name: 'Emphasis',			element: 'em'	, overrides: 'i' },
	{ name: 'Underline',		element: 'u' },
	{ name: 'Strikethrough',	element: 'strike' },
	{ name: 'Subscript',		element: 'sub' },
	{ name: 'Superscript',		element: 'sup' },
	*/

	{ name: 'Marker',			element: 'span', attributes: { 'class': 'marker' } },

	{ name: 'Big',				element: 'big' },
	{ name: 'Small',			element: 'small' },
	{ name: 'Typewriter',		element: 'tt' },

	{ name: 'Computer Code',	element: 'code' },
	{ name: 'Keyboard Phrase',	element: 'kbd' },
	{ name: 'Sample Text',		element: 'samp' },
	{ name: 'Variable',			element: 'var' },

	{ name: 'Deleted Text',		element: 'del' },
	{ name: 'Inserted Text',	element: 'ins' },

	{ name: 'Cited Work',		element: 'cite' },
	{ name: 'Inline Quotation',	element: 'q' },

	{ name: 'Language: RTL',	element: 'span', attributes: { 'dir': 'rtl' } },
	{ name: 'Language: LTR',	element: 'span', attributes: { 'dir': 'ltr' } },

	/* Object Styles */

	{
		name: 'Styled image (left)',
		element: 'img',
		attributes: { 'class': 'left' }
	},

	{
		name: 'Styled image (right)',
		element: 'img',
		attributes: { 'class': 'right' }
	},

	{
		name: 'Compact table',
		element: 'table',
		attributes: {
			cellpadding: '5',
			cellspacing: '0',
			border: '1',
			bordercolor: '#ccc'
		},
		styles: {
			'border-collapse': 'collapse'
		}
	},

	{ name: 'Borderless Table',		element: 'table',	styles: { 'border-style': 'hidden', 'background-color': '#E6E6FA' } },
	{ name: 'Square Bulleted List',	element: 'ul',		styles: { 'list-style-type': 'square' } }
] );

admin/ckeditor/lang/0000755000352000025440000000000014373776770015065 5ustar  thediannthediannadmin/ckeditor/lang/en.js0000644000352000025440000002662012450564214016011 0ustar  thediannthediann/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.lang['en']={"editor":"Rich Text Editor","editorPanel":"Rich Text Editor panel","common":{"editorHelp":"Press ALT 0 for help","browseServer":"Browse Server","url":"URL","protocol":"Protocol","upload":"Upload","uploadSubmit":"Send it to the Server","image":"Image","flash":"Flash","form":"Form","checkbox":"Checkbox","radio":"Radio Button","textField":"Text Field","textarea":"Textarea","hiddenField":"Hidden Field","button":"Button","select":"Selection Field","imageButton":"Image Button","notSet":"<not set>","id":"Id","name":"Name","langDir":"Language Direction","langDirLtr":"Left to Right (LTR)","langDirRtl":"Right to Left (RTL)","langCode":"Language Code","longDescr":"Long Description URL","cssClass":"Stylesheet Classes","advisoryTitle":"Advisory Title","cssStyle":"Style","ok":"OK","cancel":"Cancel","close":"Close","preview":"Preview","resize":"Resize","generalTab":"General","advancedTab":"Advanced","validateNumberFailed":"This value is not a number.","confirmNewPage":"Any unsaved changes to this content will be lost. Are you sure you want to load new page?","confirmCancel":"You have changed some options. Are you sure you want to close the dialog window?","options":"Options","target":"Target","targetNew":"New Window (_blank)","targetTop":"Topmost Window (_top)","targetSelf":"Same Window (_self)","targetParent":"Parent Window (_parent)","langDirLTR":"Left to Right (LTR)","langDirRTL":"Right to Left (RTL)","styles":"Style","cssClasses":"Stylesheet Classes","width":"Width","height":"Height","align":"Alignment","alignLeft":"Left","alignRight":"Right","alignCenter":"Center","alignJustify":"Justify","alignTop":"Top","alignMiddle":"Middle","alignBottom":"Bottom","alignNone":"None","invalidValue":"Invalid value.","invalidHeight":"Height must be a number.","invalidWidth":"Width must be a number.","invalidCssLength":"Value specified for the \"%1\" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).","invalidHtmlLength":"Value specified for the \"%1\" field must be a positive number with or without a valid HTML measurement unit (px or %).","invalidInlineStyle":"Value specified for the inline style must consist of one or more tuples with the format of \"name : value\", separated by semi-colons.","cssLengthTooltip":"Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).","unavailable":"%1<span class=\"cke_accessibility\">, unavailable</span>"},"basicstyles":{"bold":"Bold","italic":"Italic","strike":"Strikethrough","subscript":"Subscript","superscript":"Superscript","underline":"Underline"},"blockquote":{"toolbar":"Block Quote"},"clipboard":{"copy":"Copy","copyError":"Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl/Cmd+C).","cut":"Cut","cutError":"Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl/Cmd+X).","paste":"Paste","pasteArea":"Paste Area","pasteMsg":"Please paste inside the following box using the keyboard (<strong>Ctrl/Cmd+V</strong>) and hit OK","securityMsg":"Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.","title":"Paste"},"contextmenu":{"options":"Context Menu Options"},"button":{"selectedLabel":"%1 (Selected)"},"toolbar":{"toolbarCollapse":"Collapse Toolbar","toolbarExpand":"Expand Toolbar","toolbarGroups":{"document":"Document","clipboard":"Clipboard/Undo","editing":"Editing","forms":"Forms","basicstyles":"Basic Styles","paragraph":"Paragraph","links":"Links","insert":"Insert","styles":"Styles","colors":"Colors","tools":"Tools"},"toolbars":"Editor toolbars"},"format":{"label":"Format","panelTitle":"Paragraph Format","tag_address":"Address","tag_div":"Normal (DIV)","tag_h1":"Heading 1","tag_h2":"Heading 2","tag_h3":"Heading 3","tag_h4":"Heading 4","tag_h5":"Heading 5","tag_h6":"Heading 6","tag_p":"Normal","tag_pre":"Formatted"},"horizontalrule":{"toolbar":"Insert Horizontal Line"},"image":{"alertUrl":"Please type the image URL","alt":"Alternative Text","border":"Border","btnUpload":"Send it to the Server","button2Img":"Do you want to transform the selected image button on a simple image?","hSpace":"HSpace","img2Button":"Do you want to transform the selected image on a image button?","infoTab":"Image Info","linkTab":"Link","lockRatio":"Lock Ratio","menu":"Image Properties","resetSize":"Reset Size","title":"Image Properties","titleButton":"Image Button Properties","upload":"Upload","urlMissing":"Image source URL is missing.","vSpace":"VSpace","validateBorder":"Border must be a whole number.","validateHSpace":"HSpace must be a whole number.","validateVSpace":"VSpace must be a whole number."},"indent":{"indent":"Increase Indent","outdent":"Decrease Indent"},"fakeobjects":{"anchor":"Anchor","flash":"Flash Animation","hiddenfield":"Hidden Field","iframe":"IFrame","unknown":"Unknown Object"},"link":{"acccessKey":"Access Key","advanced":"Advanced","advisoryContentType":"Advisory Content Type","advisoryTitle":"Advisory Title","anchor":{"toolbar":"Anchor","menu":"Edit Anchor","title":"Anchor Properties","name":"Anchor Name","errorName":"Please type the anchor name","remove":"Remove Anchor"},"anchorId":"By Element Id","anchorName":"By Anchor Name","charset":"Linked Resource Charset","cssClasses":"Stylesheet Classes","emailAddress":"E-Mail Address","emailBody":"Message Body","emailSubject":"Message Subject","id":"Id","info":"Link Info","langCode":"Language Code","langDir":"Language Direction","langDirLTR":"Left to Right (LTR)","langDirRTL":"Right to Left (RTL)","menu":"Edit Link","name":"Name","noAnchors":"(No anchors available in the document)","noEmail":"Please type the e-mail address","noUrl":"Please type the link URL","other":"<other>","popupDependent":"Dependent (Netscape)","popupFeatures":"Popup Window Features","popupFullScreen":"Full Screen (IE)","popupLeft":"Left Position","popupLocationBar":"Location Bar","popupMenuBar":"Menu Bar","popupResizable":"Resizable","popupScrollBars":"Scroll Bars","popupStatusBar":"Status Bar","popupToolbar":"Toolbar","popupTop":"Top Position","rel":"Relationship","selectAnchor":"Select an Anchor","styles":"Style","tabIndex":"Tab Index","target":"Target","targetFrame":"<frame>","targetFrameName":"Target Frame Name","targetPopup":"<popup window>","targetPopupName":"Popup Window Name","title":"Link","toAnchor":"Link to anchor in the text","toEmail":"E-mail","toUrl":"URL","toolbar":"Link","type":"Link Type","unlink":"Unlink","upload":"Upload"},"list":{"bulletedlist":"Insert/Remove Bulleted List","numberedlist":"Insert/Remove Numbered List"},"pastetext":{"button":"Paste as plain text","title":"Paste as Plain Text"},"pastefromword":{"confirmCleanup":"The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?","error":"It was not possible to clean up the pasted data due to an internal error","title":"Paste from Word","toolbar":"Paste from Word"},"removeformat":{"toolbar":"Remove Format"},"sourcearea":{"toolbar":"Source"},"specialchar":{"options":"Special Character Options","title":"Select Special Character","toolbar":"Insert Special Character"},"scayt":{"btn_about":"About SCAYT","btn_dictionaries":"Dictionaries","btn_disable":"Disable SCAYT","btn_enable":"Enable SCAYT","btn_langs":"Languages","btn_options":"Options","text_title":"Spell Check As You Type"},"stylescombo":{"label":"Styles","panelTitle":"Formatting Styles","panelTitle1":"Block Styles","panelTitle2":"Inline Styles","panelTitle3":"Object Styles"},"table":{"border":"Border size","caption":"Caption","cell":{"menu":"Cell","insertBefore":"Insert Cell Before","insertAfter":"Insert Cell After","deleteCell":"Delete Cells","merge":"Merge Cells","mergeRight":"Merge Right","mergeDown":"Merge Down","splitHorizontal":"Split Cell Horizontally","splitVertical":"Split Cell Vertically","title":"Cell Properties","cellType":"Cell Type","rowSpan":"Rows Span","colSpan":"Columns Span","wordWrap":"Word Wrap","hAlign":"Horizontal Alignment","vAlign":"Vertical Alignment","alignBaseline":"Baseline","bgColor":"Background Color","borderColor":"Border Color","data":"Data","header":"Header","yes":"Yes","no":"No","invalidWidth":"Cell width must be a number.","invalidHeight":"Cell height must be a number.","invalidRowSpan":"Rows span must be a whole number.","invalidColSpan":"Columns span must be a whole number.","chooseColor":"Choose"},"cellPad":"Cell padding","cellSpace":"Cell spacing","column":{"menu":"Column","insertBefore":"Insert Column Before","insertAfter":"Insert Column After","deleteColumn":"Delete Columns"},"columns":"Columns","deleteTable":"Delete Table","headers":"Headers","headersBoth":"Both","headersColumn":"First column","headersNone":"None","headersRow":"First Row","invalidBorder":"Border size must be a number.","invalidCellPadding":"Cell padding must be a positive number.","invalidCellSpacing":"Cell spacing must be a positive number.","invalidCols":"Number of columns must be a number greater than 0.","invalidHeight":"Table height must be a number.","invalidRows":"Number of rows must be a number greater than 0.","invalidWidth":"Table width must be a number.","menu":"Table Properties","row":{"menu":"Row","insertBefore":"Insert Row Before","insertAfter":"Insert Row After","deleteRow":"Delete Rows"},"rows":"Rows","summary":"Summary","title":"Table Properties","toolbar":"Table","widthPc":"percent","widthPx":"pixels","widthUnit":"width unit"},"undo":{"redo":"Redo","undo":"Undo"},"wsc":{"btnIgnore":"Ignore","btnIgnoreAll":"Ignore All","btnReplace":"Replace","btnReplaceAll":"Replace All","btnUndo":"Undo","changeTo":"Change to","errorLoading":"Error loading application service host: %s.","ieSpellDownload":"Spell checker not installed. Do you want to download it now?","manyChanges":"Spell check complete: %1 words changed","noChanges":"Spell check complete: No words changed","noMispell":"Spell check complete: No misspellings found","noSuggestions":"- No suggestions -","notAvailable":"Sorry, but service is unavailable now.","notInDic":"Not in dictionary","oneChange":"Spell check complete: One word changed","progress":"Spell check in progress...","title":"Spell Checker","toolbar":"Check Spelling"},"selectall":{"toolbar":"Select All"},"font":{"fontSize":{"label":"Size","voiceLabel":"Font Size","panelTitle":"Font Size"},"label":"Font","panelTitle":"Font Name","voiceLabel":"Font"},"colorbutton":{"auto":"Automatic","bgColorTitle":"Background Color","colors":{"000":"Black","800000":"Maroon","8B4513":"Saddle Brown","2F4F4F":"Dark Slate Gray","008080":"Teal","000080":"Navy","4B0082":"Indigo","696969":"Dark Gray","B22222":"Fire Brick","A52A2A":"Brown","DAA520":"Golden Rod","006400":"Dark Green","40E0D0":"Turquoise","0000CD":"Medium Blue","800080":"Purple","808080":"Gray","F00":"Red","FF8C00":"Dark Orange","FFD700":"Gold","008000":"Green","0FF":"Cyan","00F":"Blue","EE82EE":"Violet","A9A9A9":"Dim Gray","FFA07A":"Light Salmon","FFA500":"Orange","FFFF00":"Yellow","00FF00":"Lime","AFEEEE":"Pale Turquoise","ADD8E6":"Light Blue","DDA0DD":"Plum","D3D3D3":"Light Grey","FFF0F5":"Lavender Blush","FAEBD7":"Antique White","FFFFE0":"Light Yellow","F0FFF0":"Honeydew","F0FFFF":"Azure","F0F8FF":"Alice Blue","E6E6FA":"Lavender","FFF":"White"},"more":"More Colors...","panelTitle":"Colors","textColorTitle":"Text Color"}};admin/manage_news.php0000644000352000025440000001653214373672450015332 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");

if(is_post_back()) {
	$arr_ids = $_REQUEST['arr_ids'];
	if(is_array($arr_ids)) {
		$str_ids = implode(',', $arr_ids); 
		if(isset($_REQUEST['Delete']) || isset($_REQUEST['Delete_x']) ) {
			db_query("delete from tbl_press_realeases where press_rel_id in ($str_ids)");
			set_session_msg("News Deleted Successfully !");
		} else if(isset($_REQUEST['Activate']) || isset($_REQUEST['Activate_x']) ) {
			db_query("update tbl_press_realeases set press_rel_status = 'Active' where press_rel_id in ($str_ids)");
			set_session_msg("News Activated Successfully !");
		} else if(isset($_REQUEST['Deactivate']) || isset($_REQUEST['Deactivate_x']) ) {
			db_query("update tbl_press_realeases set press_rel_status = 'Inactive' where press_rel_id in ($str_ids)");
			set_session_msg("News Deactivated Successfully !");
		}
	}
	header("Location: ".$_SERVER['HTTP_REFERER']);
	exit;
}

$start = intval($start);
$pagesize = intval($pagesize)==0?$pagesize=DEF_PAGE_SIZE:$pagesize;

$order_by == '' ? $order_by = 'press_rel_id' : true;
$order_by2 == '' ? $order_by2 = 'desc' : true;

$sql = "select * from tbl_press_realeases   where  1";
$sql = apply_filter($sql, $press_rel_name, 'like','press_rel_name');
$sql .= " order by $order_by $order_by2 ";
$sql .= " limit $start, $pagesize ";

$pager = new midas_pager_sql($sql, $pagesize, $start);
if($pager->total_records) {
	$result = db_query($sql);
}
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<script language="JavaScript" type="text/javascript" src="../includes/general.js"></script>
<? include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead">News list </div></td>
              </tr>
            </table>
			<strong class="msg" style="margin-left:500px;"><?=display_sess_msg()?></strong>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="content"><form method="get" name="form2" id="form2" onSubmit="return confirm_submit(this)">
                    <br />
                    <table  border="0" align="center" cellpadding="2" cellspacing="0" class="tableSearch" style="width:300px; height:90px;border:2px outset #fff;">
                      <tr align="center">
                        <th colspan="2">Search</th>
                      </tr>
                      <tr>
                        <td class="tdLabel">Name</td>
                        <td><input name="press_rel_name" type="text" value="" style="width:200px; height:24px;" /></td>
                      </tr>
                      <tr>
                        <td>&nbsp;</td>
                        <td><input name="pagesize" type="hidden" id="pagesize" value="<?=$pagesize?>" />
                          <input type="image" name="imageField" src="images/buttons/search.gif" /></td>
                      </tr>
                    </table>
                  </form>
                  <br />
                  <div align="right"><a href="news_f.php" style="font-size:12px; font-weight:bold;">Add News</a> </div>
                  <? if($pager->total_records==0) {?>
                  <div class="msg">Sorry, no records found.</div>
                  <? } else { ?>
                  <div align="right">
                    <? $pager->show_displaying()?>
                  </div>
                  <div>Records Per Page:
                    <?=pagesize_dropdown('pagesize', $pagesize);?>
                  </div>
                  <form method="post" name="form1" id="form1" onSubmit="confirm_submit(this)">
                    <table width="100%"  border="0" cellpadding="0" cellspacing="1" class="tableList">
                      <tr>
					   <th width="22%" nowrap="nowrap" style="font-size:12px; padding:9px;">Media Name</th>
					   <th width="11%" nowrap="nowrap" style="font-size:12px; padding:9px;">Media Type</th>
                        <th width="25%" nowrap="nowrap" style="font-size:12px; padding:9px;">Headline</th>
                        
						<th width="20%" nowrap="nowrap" style="font-size:12px; padding:9px;">News Coverage URL</th>
                       
                        
						<th width="7%" nowrap="nowrap" style="font-size:12px; padding:9px;">Posted Date</th>
                        <th width="7%" nowrap="nowrap" style="font-size:12px; padding:9px;">Status<?=sort_arrows('press_rel_status')?></th>
                        <th width="4%">&nbsp;</th>
                        <th width="4%"><input name="check_all" type="checkbox" id="check_all" value="1" onClick="checkall(this.form)" /></th>
                      </tr>
                      <?
while ($line_raw = mysqli_fetch_array($result)) {
	$line = ms_display_value($line_raw);
	@extract($line);
	$css = ($css=='trOdd')?'trEven':'trOdd';
 
?>
                      <tr class="<?=$css?>">
                        <td align="center"><?php echo $press_rel_name;?> </td>
                        <td align="center"><?php echo $press_rel_type;?></td>
						 <td align="center"><b><?php echo $press_headline_url;?></b></td>
						<td align="center"><?php echo $press_rel_url;?> </td>
						
						<td align="center"><?php echo $press_rel_add_date;?> </td>
						<td align="center"><b style="font-size:12px;"><?php echo $press_rel_status;?></b> </td>
                        <td align="center"><a href="news_f.php?press_rel_id=<?=$press_rel_id?>"><img src="images/icons/edit.png" alt="Edit" width="16" height="16" border="0" /></a></td>
                        <td align="center"><input name="arr_ids[]" type="checkbox" id="arr_ids[]" value="<?=$press_rel_id?>" /></td>
                      </tr>
                      <? } ?>
                    </table>
                    <table width="100%" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td align="right" style="padding:2px">
						<input type="submit" name="Activate" value="Activate" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#1F3E00; border-radius:4px; cursor:pointer; width:100px;"/>
                          <input type="submit" name="Deactivate" value="Deactivate" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#FF6F6F; border-radius:4px; cursor:pointer; width:100px;" />
                          <input type="submit" name="Delete" value="Delete" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#CA0000; border-radius:4px; cursor:pointer; width:100px;"/>
                        </td>
                      </tr>
                    </table>
                  </form>
                  <? $pager->show_pager();?>
                  <? } ?>
                </td>
              </tr>
            </table>
            <?php include("bottom.inc.php");?>
			<script language="javascript">
function select_chk(){
			var chks = document.getElementsByName('arr_ids[]');
			var hasChecked = false;
			for (var i = 0; i < chks.length; i++){
			if (chks[i].checked){
				hasChecked = true;
				break;
				}
			}
			if (hasChecked == false){
			alert("Please Select At Least One.");
			return false;
			}
}
</script>
admin/manage_certificate.php0000644000352000025440000000727014373672010016627 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
$DelImageId=$_REQUEST['DelID'];
 if(!empty($DelImageId)){ 
   $imageToDel=db_scalar("select certificate_image_name from tbl_certificate where 1 and certificate_id='$DelImageId'"); 
   @unlink('../certificate/'.$imageToDel);
   $sqldel="delete from tbl_certificate where 1 and certificate_id='$DelImageId'";
   db_query($sqldel);
   set_session_msg("Certificate Updated Successfully !");
   header("Location: manage_certificate.php");
   exit;
 }

if(is_post_back()) {
if (isset($_POST['submit'])) {
    for ($i = 0; $i < count($_FILES['file']['name']); $i++) {
	     $imgName=$_FILES['file']['name'][$i];
         if (move_uploaded_file($_FILES['file']['tmp_name'][$i],"../certificate/$imgName")) {
			
			    $sql = "insert into tbl_certificate set 
		                   certificate_status='Active',
						   certificate_image_name='$imgName',
						   certificate_add_date=now()";
						   db_query($sql);				
            } 
			       
        }
		set_session_msg("Certificate uploaded successfully !");
		header("Location: manage_certificate.php");
		exit;
    }
 }
if($headerID!='') {
	$result = db_query("select * from tbl_certificate where certificate_id = '$certificate_id'");
	if ($line_raw = mysqli_fetch_array($result)) {
		@extract($line_raw);
	}
}
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<link href="imgstyle.css" rel="stylesheet" type="text/css">
<script src="jquery.min.js"></script>
<script src="script.js"></script>
<? include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead"> Add/Edit Certificates</div></td>
              </tr>
            </table>
            <div><strong class="msg" style="margin-left:500px; margin-bottom:5px;">
              <?=display_sess_msg()?>
              </strong></div>
            <div style="width:100%;">
              <?php			
			   $sql_fetch = db_query("select * from tbl_certificate where 1");
			  $cntDATA=mysqli_num_rows($sql_fetch);
			   if($cntDATA > 0){	
			   while($DATA = mysqli_fetch_array($sql_fetch)) {
		          @extract($DATA);
             ?>
              <div style="width:120px; height:140px; margin-top:10px;border:1px outset #fff; float:left; margin-left:8px;">
                <p align="center"><img src="../certificate/<?=$DATA['certificate_image_name']?>" width="90" height="90" /></p>
                <p align="center"><a href="manage_certificate.php?DelID=<?=$DATA['certificate_id']?>"><img src="images/no.gif"></a></p>
              </div>
              <? }} ?>
              <div class="cb"></div>
            </div>
            <table width="55%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm" style="border:1px outset #fff; margin-top:5px; margin-bottom:10px;">
              <tr>
                <td class="tdLabel" style="padding:8px;"><div id="maindiv">
                    <div id="formdiv">
                      <form enctype="multipart/form-data" action="" method="post">
                        <div id="filediv">
                          <input name="file[]" type="file" id="file" multiple />
                        </div>
                        <br/>
                        <input type="button" id="add_more" class="upload" value="Add More Files"/>
                        <input type="submit" value="Upload File" name="submit" id="upload" class="upload"/>
                      </form>
                      <br/>
                    </div>
                  </div></td>
              </tr>
            </table>
            <?php include("bottom.inc.php");?>admin/addedit-category.php0000644000352000025440000003265614373667025016266 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
ob_start();
$category_id=$_REQUEST['id'];
if(is_post_back()){
//*************** UPDATE EXISTING CATEGORY START ************************//
if($_REQUEST['id']!='0') {
$category_url=ami_crete_url($category_name);
////////////****************** IMAGE RESIZING START HERE *****************************//
//********** Code Created By Amitabh Kumar Sinha : Web Developer : Webkey Network Pvt. Ltd. *****************//
//**********  DATE : 31:07:2014 *****************//
//------------FUNCTION TO GET IMAGE EXTENSION START---------------//
 function getExtension($str) {
         $i = strrpos($str,".");
         if (!$i) { return ""; }
         $l = strlen($str) - $i;
         $ext = substr($str,$i+1,$l);
         return $ext;
 }
 //------------FUNCTION TO GET IMAGE EXTENSION END---------------//
 if($_SERVER["REQUEST_METHOD"] == "POST")
 {
    
 	$image =$_FILES["file"]["name"];
	$uploadedfile = $_FILES['file']['tmp_name']; 
 	if ($image) { 	
	    $DelImage=db_scalar("select category_image_name from tbl_category where 1 and category_id = '$category_id'");
	    @unlink("../uploaded_files/$DelImage");
 		$filename = stripslashes($_FILES['file']['name']); 	
  		$extension = getExtension($filename);
 		$extension = strtolower($extension);		
		$imgNAME = $category_url.".".$extension;

 $size=filesize($_FILES['file']['tmp_name']);
if($extension=="jpg" || $extension=="jpeg" ){
  $uploadedfile = $_FILES['file']['tmp_name'];
  $src = imagecreatefromjpeg($uploadedfile);
}else if($extension=="png"){
  $uploadedfile = $_FILES['file']['tmp_name'];
  $src = imagecreatefrompng($uploadedfile);
}else{
$src = imagecreatefromgif($uploadedfile);
}
list($width,$height)=getimagesize($uploadedfile);
if($width >= 400){
$newwidth=400;
$newheight=($height/$width)*$newwidth;
$tmp=imagecreatetruecolor($newwidth,$newheight);
imagecopyresampled($tmp,$src,0,0,0,0,$newwidth,$newheight,$width,$height);
$filename = "../uploaded_files/". $imgNAME;
imagejpeg($tmp,$filename,100);
imagedestroy($src);
imagedestroy($tmp);
imagedestroy($tmp1);
}
if ($image) { 
move_uploaded_file($_FILES['file']['tmp_name'],"../uploaded_files/$imgNAME");
}
}else{
$imgNAME=db_scalar("select category_image_name from tbl_category where 1 and category_id = '$category_id'");
}
}

////////////****************** IMAGE RESIZING END HERE *****************************//

$sql = "update tbl_category set        
				category_name='$category_name',
				category_image_name='$imgNAME',
				category_description = '$category_description', 	
				category_is_hot='$category_is_hot',
				category_is_featured='$category_is_featured',
				category_for_falsh='$category_for_falsh',
				category_meta_title='$category_meta_title',
				category_meta_description='$category_meta_description',
				category_meta_keywords='$category_meta_keywords',
				category_is_product='$category_is_product',
				category_url='$category_url',
				category_add_date=now(),
				category_status='$category_status'
				where category_id = '$category_id' ";

db_query($sql);
set_session_msg("Category Updated Successfully !");
header("Location:addedit-category.php?id=$_REQUEST[id]");
exit;
//*************** UPDATE EXISTING CATEGORY END ************************//
}else{
$category_url=ami_crete_url($category_name);
//*************** INSERT NEW CATEGORY START ************************//
////////////****************** IMAGE RESIZING START HERE *****************************//
//********** Code Created By Amitabh Kumar Sinha : Web Developer : Webkey Network Pvt. Ltd. *****************//
//**********  DATE : 31:07:2014 *****************//
//------------FUNCTION TO GET IMAGE EXTENSION START---------------//
 function getExtension($str) {
         $i = strrpos($str,".");
         if (!$i) { return ""; }
         $l = strlen($str) - $i;
         $ext = substr($str,$i+1,$l);
         return $ext;
 }
 //------------FUNCTION TO GET IMAGE EXTENSION END---------------//
 if($_SERVER["REQUEST_METHOD"] == "POST")
 {
 	$image =$_FILES["file"]["name"];
	$uploadedfile = $_FILES['file']['tmp_name']; 
 	if ($image) { 	
 		$filename = stripslashes($_FILES['file']['name']); 	
  		$extension = getExtension($filename);
 		$extension = strtolower($extension);
		$imgNAME = $category_url.".".$extension;		

 $size=filesize($_FILES['file']['tmp_name']);
if($extension=="jpg" || $extension=="jpeg" ){
  $uploadedfile = $_FILES['file']['tmp_name'];
  $src = imagecreatefromjpeg($uploadedfile);
}else if($extension=="png"){
  $uploadedfile = $_FILES['file']['tmp_name'];
  $src = imagecreatefrompng($uploadedfile);
}else{
$src = imagecreatefromgif($uploadedfile);
}
list($width,$height)=getimagesize($uploadedfile);
if($width >= 400){
$newwidth=400;
$newheight=($height/$width)*$newwidth;
$tmp=imagecreatetruecolor($newwidth,$newheight);
imagecopyresampled($tmp,$src,0,0,0,0,$newwidth,$newheight,$width,$height);
$filename = "../uploaded_files/".$imgNAME;
imagejpeg($tmp,$filename,100);
imagedestroy($src);
imagedestroy($tmp);
imagedestroy($tmp1);
}else{
move_uploaded_file($_FILES['file']['tmp_name'],"../uploaded_files/$imgNAME");
}
}
}

////////////****************** IMAGE RESIZING END HERE *****************************//
$sql = "insert into tbl_category set 
                category_name='$category_name',
				category_image_name='$imgNAME',
				category_description='$category_description', 	
				category_is_hot='$category_is_hot',
				category_is_featured='$category_is_featured',
				category_for_falsh='$category_for_falsh',
				category_meta_title='$category_meta_title',
				category_meta_description='$category_meta_description',
				category_meta_keywords='$category_meta_keywords',
				category_is_product='$category_is_product',
				category_url='$category_url',
				category_add_date=now(),
				category_status='$category_status'";
db_query($sql);
set_session_msg("Category Added Successfully !");
header("Location:addedit-category.php?id=$_REQUEST[id]");
exit;
//*************** INSERT NEW CATEGORY END ************************//
 }
}

if($category_id!='') {
	$result = db_query("select * from tbl_category where category_id = '$category_id'");
	if ($line_raw = mysqli_fetch_array($result)) {
	 @extract($line_raw);
	}
}
?>
<script src="ckeditor/ckeditor.js"></script>
<style>
p.fck {
    width: 90%;
	float:left;
    margin: 0 auto;
 }
</style>
<link href="styles.css" rel="stylesheet" type="text/css">
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead">Add/Edit Category</div></td>
              </tr>
            </table>
            <div align="right"><a href="category_list.php" style="font-size:12px; font-weight:bold; margin-right:15px;">Back to Category List</a>&nbsp;</div>
            <form name="form1" method="post" enctype="multipart/form-data">
              <table width="95%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm">
                <tr>
                  <td width="20%" class="tdLabel">&nbsp;</td>
                  <td width="80%" class="tdData" style="padding-left:7px;"><strong><font color="red">
                    <?=display_sess_msg();?>
                    </font></strong></td>
                </tr>
                <tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Category Name:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><input name="category_name" style="width:350px; height:28px;" type="text" id="category_name"  value="<?=$category_name?>" class="textfield"  ></td>
                </tr>
                <?php if($category_image_name){ ?>
                <tr>
                  <td width="177" class="tdLabel" style="font-size:12px; padding:5px;">Current Image  :</td>
                  <td width="721" class="tdData" style="font-size:12px; padding:5px;"><img src="../uploaded_files/<?=$category_image_name?>" height="70" width="70"  border="0"> </td>
                </tr>
                <? } ?>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:5px;">Category Image :</td>
                  <td class="tdData" style="font-size:12px; padding:5px;"><input type="file" name="file" id="file"></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Meta Title:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><input name="category_meta_title" style="width:350px; height:28px;" type="text" id="category_meta_title"  value="<?=$category_meta_title?>" class="textfield" /></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Meta Keyword:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><textarea rows="5" cols="66" name="category_meta_keywords"><?=$category_meta_keywords?>
</textarea></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Meta Description:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><textarea rows="5" cols="66" name="category_meta_description"><?=$category_meta_description?>
</textarea></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Category Description:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><p class="fck">
                      <textarea cols="80" id="editor1" name="category_description" rows="10"><?=$category_description?>
</textarea>
                      <script>

			// Replace the <textarea id="editor"> with an CKEditor
			// instance, using default configurations.
			CKEDITOR.replace( 'editor1', {
				uiColor: '#ACACAC',
				toolbar: [
					[ 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],
					[ 'FontSize', 'TextColor', 'BGColor' ]
				]
			});

		</script>
                    </p></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Category Is Hot ?:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><select name="category_is_hot" style="width:200px; height:26px;">
                      <option value="Yes" <?php if($category_is_hot=='Yes'){ ?> selected="selected" <? } ?>>Yes</option>
                      <option value="No" <?php if($category_is_hot=='No'){ ?> selected="selected" <? } ?>>No</option>
                    </select></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Category Is Featured ?:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><select name="category_is_featured" style="width:200px; height:26px;">
                      <option value="Yes" <?php if($category_is_featured=='Yes'){ ?> selected="selected" <? } ?>>Yes</option>
                      <option value="No" <?php if($category_is_featured=='No'){ ?> selected="selected" <? } ?>>No</option>
                    </select></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Set For Flash ?:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><select name="category_for_falsh" style="width:200px; height:26px;">
                      <option value="Yes" <?php if($category_for_falsh=='Yes'){ ?> selected="selected" <? } ?>>Yes</option>
                      <option value="No" <?php if($category_for_falsh=='No'){ ?> selected="selected" <? } ?>>No</option>
                    </select></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Category Is ?:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><select name="category_is_product" style="width:200px; height:26px;">
                      <option value="Yes" <?php if($category_is_product=='Yes'){ ?> selected="selected" <? } ?>>Product</option>
                      <option value="No" <?php if($category_is_product=='No'){ ?> selected="selected" <? } ?>>Service</option>
                    </select></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Status:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><select name="category_status" style="width:200px; height:26px;">
                      <option value="Active" <?php if($category_status=='Active'){ ?> selected="selected" <? } ?>>Active</option>
                      <option value="Inactive" <?php if($category_status=='Inactive'){ ?> selected="selected" <? } ?>>Inactive</option>
                    </select></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">&nbsp;</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><input type="hidden" name="category_id" value="<?=$category_id?>" />
                    <input type="image" name="imageField" src="images/buttons/submit.gif" style="width:100px; margin-bottom:25px;" /></td>
                </tr>
              </table>
            </form>
            <? include("bottom.inc.php");?>
admin/manage_video.php0000644000352000025440000001317114373673026015460 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");

if(isset($_REQUEST['arr_ids'])){
	$arr_ids = $_REQUEST['arr_ids'];
	if(is_array($arr_ids)) {
		$str_ids = implode(',', $arr_ids);
		if(isset($_REQUEST['Activate']) || isset($_REQUEST['Activate_x'])){
			$sql = "update tbl_video set video_status = 'Active' where video_id in ($str_ids)";
			db_query($sql);
			set_session_msg("Selected Video have been activated successfully !");		    
		}else if(isset($_REQUEST['Deactivate']) || isset($_REQUEST['Deactivate_x'])){
			$sql = "update tbl_video set video_status = 'Inactive' where video_id in ($str_ids)";
			db_query($sql);
			set_session_msg("Selected Video have been deactivated successfully !");
		}else if(isset($_REQUEST['Delete']) || isset($_REQUEST['Delete_x'])){
			$sql = "delete from tbl_video where video_id in ($str_ids)";
			db_query($sql);
			set_session_msg("Selected Video have been deleted successfully !");
		}
	}
	
	header("Location: manage_video.php");
	exit;
}
$start = intval($start);
$pagesize = intval($pagesize)==0?$pagesize=DEF_PAGE_SIZE:$pagesize;
$columns = "select * ";
$sql=" from tbl_video where 1";
$sql .= " order by video_id  ";
$sql_count = "select count(*) ".$sql;
$sql .= " limit $start, $pagesize ";
$sql = $columns.$sql;
$result = db_query($sql);
$reccnt = db_scalar($sql_count);
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<script language="JavaScript" type="text/javascript" src="../includes/general.js"></script>
<?php include("top.inc.php");?>
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td id="pageHead"><div id="txtPageHead">Manage Video</div></td>
      </tr>
    </table>
	<div style="padding-top:10px;"><b class="msg" style="margin-left:450px;"><?=display_sess_msg()?></b></div>
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td id="content" align="left">
         <div align="right"> <a href="addedit-video.php" style="font-size:13px; font-weight:bold; margin-right:10px;">Add Video</a> </div>
        <?php
			if(mysqli_num_rows($result)==0){?>
        <div class="msg">Sorry, no records found.</div>
        <?
			}else{ ?>
        <div align="right"> Showing Records:
          <?= $start+1?>
          to
          <?=($reccnt<$start+$pagesize)?($reccnt-$start):($start+$pagesize)?>
          of
          <?= $reccnt?>
        </div>
        <div align="left">Records Per Page:
          <?=pagesize_dropdown('pagesize', $pagesize);?>
        </div>
        <form method="post" name="form1" id="form1" onSubmit="confirm_submit(this)">
          <table width="100%"  border="0" cellpadding="0" cellspacing="1" class="tableList">
            <tr>
              <th width="35%" nowrap="nowrap" style="font-size:12px; padding:9px;">Title</th>
              <th width="35%" nowrap="nowrap">Video</th>
              <th width="10%">Status</th>
              <th width="5%">Edit</th>
              <th width="6%"><input name="check_all" type="checkbox" id="check_all" value="1" onclick="checkall(this.form)" /></th>
            </tr>
            <?php if($start==0){ $cnt=0; }else{ $cnt=$start; }
					while ($line_raw = mysqli_fetch_array($result)){
						$cnt++;
						$css = ($css=='trOdd')?'trEven':'trOdd';
						?>
            <tr class="<?=$css?>">
            </td>
            <td align="center" valign="middle" style="font-size:12px;"><?=$line_raw['video_title'];?></td>
              <td align="center" valign="top">
			  <iframe width="100" height="100" src="https://www.youtube.com/embed/<?=$line_raw['video_clip']?>" frameborder="0" allowfullscreen></iframe>
			  </td>
              <td align="center" valign="middle"><b style="font-size:13px;"><?=$line_raw['video_status'];?></b></td>
              <td align="center" valign="middle"><a href="addedit-video.php?video_id=<?=$line_raw['video_id']?>&set_flag=update"> <img src="images/icons/edit.png" alt="Edit" width="19" height="19" border="0" /> </a>
              <td align="center" valign="middle"><input name="arr_ids[]" type="checkbox" id="arr_ids[]" value="<?=$line_raw['video_id'];?>" />
              </td>
            </tr>
            <?
				  }?>
          </table>
          <table width="100%" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td align="right" style="padding:2px"><input type="submit" name="Activate" value="Activate" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#1F3E00; border-radius:4px; cursor:pointer; width:100px;"/>
                <input type="submit" name="Deactivate" value="Deactivate" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#FF6F6F; border-radius:4px; cursor:pointer; width:100px;" />
                <input type="submit" name="Delete" value="Delete" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#CA0000; border-radius:4px; cursor:pointer; width:100px;"/>
              </td>
            </tr>
          </table>
        </form>
        <?
       }
       ?>
        <?php include("paging.inc.php");?>
      </td>
      
      </tr>
      
    </table>
    <script language="javascript">
function select_chk(){
	var chks = document.getElementsByName('arr_ids[]');
	var hasChecked = false;
	for (var i = 0; i < chks.length; i++){
	if (chks[i].checked){
		hasChecked = true;
		break;
		}
	}
	if (hasChecked == false){
	alert("Please Select At Least One.");
	return false;
	}
}
</script>
    <?php include("bottom.inc.php");?>
admin/manage_quick_enq_color.php0000644000352000025440000001650514373672621017533 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
if (isset($_POST['Submit'])) {
@extract($_POST);
			    $sql = "update tbl_site_color set 
				           site_color_quick_enquiry_color='$site_color_quick_enquiry_color',
		                   site_color_quick_enquiry_border_color='$site_color_quick_enquiry_border_color',
						   site_color_quick_enquiry_font_color='$site_color_quick_enquiry_font_color',
						   site_color_quick_enquiry_button_color='$site_color_quick_enquiry_button_color',
						   site_color_quick_enquiry_buttonhover_color='$site_color_quick_enquiry_buttonhover_color'
						   where 1 and site_color_admin_id='1'";
						   db_query($sql);				
		set_session_msg("Footer colors updated successfully !");
		header("Location: manage_quick_enq_color.php");
		exit;
    }
	
if (isset($_POST['ChangeDefault'])) {
			    $sql = "update tbl_site_color set 
				           site_color_quick_enquiry_color='',
		                   site_color_quick_enquiry_border_color='',
						   site_color_quick_enquiry_font_color='',
						   site_color_quick_enquiry_button_color='',
						   site_color_quick_enquiry_buttonhover_color=''
						   where 1 and site_color_admin_id='1'";
						   db_query($sql);				
		set_session_msg("Footer colors change to default successfully !");
		header("Location: manage_quick_enq_color.php");
		exit;
    }	
	$result = db_query("select site_color_quick_enquiry_color,site_color_quick_enquiry_border_color,site_color_quick_enquiry_font_color,site_color_quick_enquiry_button_color,site_color_quick_enquiry_buttonhover_color from tbl_site_color where 1");
	if ($line_raw = mysqli_fetch_array($result)) {
		@extract($line_raw);
		}
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="jscolor.js"></script>
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead"> Add/Edit Quick Enquiry Color</div></td>
              </tr>
            </table>
            <div><strong class="msg" style="margin-left:500px; margin-bottom:5px;">
              <?=display_sess_msg()?>
              </strong></div>
            <table width="50%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm" style="border:1px outset #fff; margin-top:5px; margin-bottom:10px;">
                <tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Current Quick Enquiry Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="text" class="color" style="border:none;width:260px; height:25px;" disabled="disabled" value="<?=$line_raw['site_color_quick_enquiry_color']?>"></td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Current Quick Enquiry Border Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="text" class="color" disabled="disabled" style="border:none;width:260px; height:25px;" value="<?=$line_raw['site_color_quick_enquiry_border_color']?>"></td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Current Quick Enquiry Font Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="text" class="color" disabled="disabled" style="border:none;width:260px; height:25px;" value="<?=$line_raw['site_color_quick_enquiry_font_color']?>"></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Current Quick Enquiry Button Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="text" class="color" disabled="disabled" style="border:none;width:260px; height:25px;" value="<?=$line_raw['site_color_quick_enquiry_button_color']?>"></td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Current Quick Enquiry Button Hover Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="text" class="color" disabled="disabled" style="border:none;width:260px; height:25px;" value="<?=$line_raw['site_color_quick_enquiry_buttonhover_color']?>"></td>
                </tr>
              </table>
            <form enctype="multipart/form-data" action="" method="post">
              <table width="50%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm" style="border:1px outset #fff; margin-top:45px; padding-top:20px; padding-bottom:20px; margin-bottom:10px;">
			  <tr>
                  <td class="tdLabel" style="padding:4px; font-weight:bold; color:#FF0000" align="center" colspan="2">&raquo; Click on textbox to open the color picker.</td>
                   
                </tr>
				
                <tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Select Quick Enquiry Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="color" name="site_color_quick_enquiry_color" style="width:260px; height:25px;"></td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Select Quick Enquiry Border Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="color" name="site_color_quick_enquiry_border_color" style="width:260px; height:25px;"></td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Select Quick Enquiry Font Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="color" name="site_color_quick_enquiry_font_color" style="width:260px; height:25px;"></td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Select Quick Enquiry Button Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="color" name="site_color_quick_enquiry_button_color" style="width:260px; height:25px;"></td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Select Quick Enquiry Button Hover Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="color" name="site_color_quick_enquiry_buttonhover_color" style="width:260px; height:25px;"></td>
                </tr>
                <tr>
                  <td class="tdLabel" colspan="2" style="padding:8px;">
				  <span style="margin-left:185px;"><input type="submit" name="Submit" style="width:100px; font-weight:bold; font-size:13px; height:29px;"></span>
				  <span style="margin-left:10px;"><input type="submit" name="ChangeDefault" value="Set as default" style="width:145px; font-weight:bold; font-size:13px; height:29px;"></span>
                  </td>
                </tr>
              </table>
            </form>
            <?php include("bottom.inc.php");?>
admin/left.inc.php0000644000352000025440000001565314033157600014537 0ustar  thediannthediann<? if($_SESSION['sess_admin_login_id']!='') {?>
<div id="leftnav">
  <ul>
    <?php if($_SESSION['sess_admin_type']!='Admin'){?>
	<?php	
		if(check_access("$_SESSION[ADMIN_ACCESS]","1")=='true'){
		print "<div style=' text-align:center; background-color:#DDEEFF; width:166px; border:1px solid #7DBEFF; padding-bottom:7px; padding-top:7px; color:#000; font-size:14px; font-weight:bold; font-family:'Times New Roman', Times, serif'><a href='manage_setting.php' style='color:#003366; font-size:13px;'>Manage Site Features</a></div>";}
		if(check_access("$_SESSION[ADMIN_ACCESS]","2")=='true'){
		print "<li><a href='static_page_list.php'>Manage Static Pages</a></li>";}
		if(check_access("$_SESSION[ADMIN_ACCESS]","3")=='true'){
		print "<li><a href='category_list.php'>Manage&nbsp;Category/Products</a></li>";
		print "<li><a href='manage_rooms.php'>Manage&nbsp;Rooms</a></li>";
		    
		}
		if(check_access("$_SESSION[ADMIN_ACCESS]","4")=='true'){
		print "<li><a href='enquiry_list.php'>Manage Enquiry</a></li>";}
		if(check_access("$_SESSION[ADMIN_ACCESS]","5")=='true'){
		print "<li><a href='manage_seo.php'>Manage SEO Work</a></li>";}
		if(check_access("$_SESSION[ADMIN_ACCESS]","6")=='true'){
		print "<li><a href='manage-header.php'>Manage Header</a></li>";}
		if(check_access("$_SESSION[ADMIN_ACCESS]","7")=='true'){
		print "<li><a href='manage-header-flash.php'>Manage Header Flash</a></li>";}		
		if(check_access("$_SESSION[ADMIN_ACCESS]","18")=='true'){
		print "<li><a href='manage-inner-header-flash.php'>Mng Inner Header Flash</a></li>";}		
		if(check_access("$_SESSION[ADMIN_ACCESS]","8")=='true'){
		print "<li><a href='manage_video.php'>Manage Video</a></li>";}
		if(check_access("$_SESSION[ADMIN_ACCESS]","9")=='true'){
	//	print "<li><a href='manage_gallery.php'>Manage Gallery</a></li>";
		print "<li><a href='manage_gallery_list.php'>Manage Gallery</a></li>";
		
		print "<li><a href='manage_menu.php'>Manage Menu</a></li>";
		    
		    
		}
		if(check_access("$_SESSION[ADMIN_ACCESS]","10")=='true'){
		print "<li><a href='manage_footer.php'>Manage Footer</a></li>";}
		if(check_access("$_SESSION[ADMIN_ACCESS]","11")=='true'){
		print "<li><a href='manage_testimonials.php'>Manage Testimonials</a></li>";}
		if(check_access("$_SESSION[ADMIN_ACCESS]","12")=='true'){
		print "<li><a href='manage_news.php'>Manage News</a></li>";}
		if(check_access("$_SESSION[ADMIN_ACCESS]","13")=='true'){
		print "<li><a href='manage_jobs.php'>Manage Job Openings</a></li>";}		
		if(check_access("$_SESSION[ADMIN_ACCESS]","16")=='true'){
		print "<li><a href='manage_client_logo.php'>Manage Client Logo Page</a></li>";}
		if(check_access("$_SESSION[ADMIN_ACCESS]","17")=='true'){
		print "<li><a href='manage_certificate.php'>Manage Certificate Page</a></li>";}
		if(check_access("$_SESSION[ADMIN_ACCESS]","22")=='true'){
		print "<li><a href='upload-catalog.php'>Upload Catalog (PDF)</a></li>";}
		if(check_access("$_SESSION[ADMIN_ACCESS]","14")=='true'){
		print "<li><a href='contact_update.php'>Manage Contact</a></li>";}
		if(check_access("$_SESSION[ADMIN_ACCESS]","20")=='true'){
		print "<li><a href='contactus_map.php'>Manage Contact Us Map</a></li>";}
		if(check_access("$_SESSION[ADMIN_ACCESS]","15")=='true'){
		print "<li><a href='change_pwd.php'>Change Admin Password</a></li>";}
		if(check_access("$_SESSION[ADMIN_ACCESS]","19")=='true'){
		print "<li><a href='../backup-site-plus-table.php' style='font-weight:bold; color:#0000FF; font-size:12px;'>Backup Site+Table</a></li>";}
		if(check_access("$_SESSION[ADMIN_ACCESS]","21")=='true'){
		print "<li><a href='manage-site-down.php' style='font-weight:bold; color:#FF0000; font-size:12px;'>Manage Site Down</a></li>";}
	?>
	<? }else{ ?>
	<div style=" text-align:center; background-color:#DDEEFF; width:166px; border:1px solid #7DBEFF; padding-bottom:7px; padding-top:7px; color:#000; font-size:14px; font-weight:bold; font-family:'Times New Roman', Times, serif"><a href="manage_setting.php" style="color:#003366; font-size:13px;">Manage Site Features</a></div>
<li><a href="manage_seo.php">Manage SEO Work</a></li>
<li><a href="static_page_list.php">Manage Static Pages</a></li>
<li><a href="category_list.php">Manage&nbsp;Category/Products</a></li>
<li><a href="manage_rooms.php">Manage&nbsp;Rooms</a></li>

<li><a href="enquiry_list.php">Manage Enquiry</a></li>
<li><a href="manage-header.php">Manage Header</a></li>
<li><a href="manage-header-flash.php">Manage Header Flash</a></li>
<li><a href="manage-inner-header-flash.php">Mng Inner Header Flash</a></li>
<li><a href="manage_video.php">Manage Video</a></li>
<!--<li><a href="manage_gallery.php">Manage Gallery</a></li>-->
<li><a href="manage_gallery_list.php">Manage Gallery</a></li>

<li><a href="manage_menu.php">Manage Menu</a></li>

<li><a href="manage_footer.php">Manage Footer</a></li>
<li><a href="manage_testimonials.php">Manage Testimonials</a></li>
<!--<li><a href="manage_news.php">Manage News</a></li>-->
<!--<li><a href="manage_jobs.php">Manage Job Openings</a></li>-->
<li><a href="manage_client_logo.php">Manage Client Logo Page</a></li>
<li><a href="manage_certificate.php">Manage Certificate Page</a></li>
<!--<li><a href="upload-catalog.php">Upload Catalog (PDF)</a></li>-->
<li><a href="contact_update.php">Manage Contact</a></li>
<li><a href="contactus_map.php">Manage Contact Us Map</a></li>
<li><a href="sub_user_list.php" style="font-size:12px; color:#295300;">Manage User</a></li>
<li><a href="change_pwd.php">Change Admin Password</a></li>
<li><a href="manage-site-down.php" style="color:#FF0000; font-size:12px;">Manage Site Down</a></li>
<li><a href="../backup-site-plus-table.php" style="font-weight:bold; color:#0000FF; font-size:12px;">Backup Site+Table</a></li>
<? }?>
<li><a href="logout.php" style="font-weight:bold; color:#FF0000; font-size:12px;">Logout</a></li>


<!--<div style=" text-align:center; background-color:#1E3C00; width:166px; border:1px solid #7DFB00; padding-bottom:7px; padding-top:7px; margin-top:15px; color:#fff; font-size:12px; font-weight:bold;">Advance Features</div>
<li><a href="manage_site_font.php" style="font-weight:bold; color:#1E3C00; font-size:11px;">Manage Font-Size-Style</a></li>
<li><a href="manage_background_color.php" style="font-weight:bold; color:#1E3C00; font-size:11px;">Manage Background Color</a></li>
<li><a href="manage_header_menu_color.php" style="font-weight:bold; color:#1E3C00; font-size:11px;">Mng Header Menu Color</a></li>
<li><a href="manage_footer_color.php" style="font-weight:bold; color:#1E3C00; font-size:11px;">Mng Footer Color</a></li>
<li><a href="manage_quick_enq_color.php" style="font-weight:bold; color:#1E3C00; font-size:11px;">Mng Quick Enquiry Color</a></li>
<li><a href="manage_left_menu_color.php" style="font-weight:bold; color:#1E3C00; font-size:11px;">Mng Left Menu Color</a></li>
<li><a href="manage_inner_button_color.php" style="font-weight:bold; color:#1E3C00; font-size:11px;">Mng Inner Button Color</a></li>-->

  </ul>
</div>
<? }?>admin/manage_footer_color.php0000644000352000025440000001240614373672110017037 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
if (isset($_POST['Submit'])) {
@extract($_POST);
			    $sql = "update tbl_site_color set 
				           site_color_footer_color='$site_color_footer_color',
		                   site_color_footer_font_color='$site_color_footer_font_color',
						   site_color_footer_font_hover_color='$site_color_footer_font_hover_color'
						   where 1 and site_color_admin_id='1'";
						   db_query($sql);				
		set_session_msg("Footer colors updated successfully !");
		header("Location: manage_footer_color.php");
		exit;
    }
	
if (isset($_POST['ChangeDefault'])) {
			    $sql = "update tbl_site_color set 
				           site_color_footer_color='',
		                   site_color_footer_font_color='',
						   site_color_footer_font_hover_color=''
						   where 1 and site_color_admin_id='1'";
						   db_query($sql);				
		set_session_msg("Footer colors change to default successfully !");
		header("Location: manage_footer_color.php");
		exit;
    }	
	$result = db_query("select site_color_footer_color,site_color_footer_font_color,site_color_footer_font_hover_color from tbl_site_color where 1");
	if ($line_raw = mysqli_fetch_array($result)) {
		@extract($line_raw);
		}
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="jscolor.js"></script>
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead"> Add/Edit Footer Color</div></td>
              </tr>
            </table>
            <div><strong class="msg" style="margin-left:500px; margin-bottom:5px;">
              <?=display_sess_msg()?>
              </strong></div>
            <table width="45%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm" style="border:1px outset #fff; margin-top:5px; margin-bottom:10px;">
                <tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Current Footer Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="text" class="color" style="border:none;width:260px; height:25px;" disabled="disabled" value="<?=$line_raw['site_color_footer_color']?>"></td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Current Footer Font Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="text" class="color" disabled="disabled" style="border:none;width:260px; height:25px;" value="<?=$line_raw['site_color_footer_font_color']?>"></td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Current Footer Font Hover Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="text" class="color" disabled="disabled" style="border:none;width:260px; height:25px;" value="<?=$line_raw['site_color_footer_font_hover_color']?>"></td>
                </tr>
                
              </table>
            <form enctype="multipart/form-data" action="" method="post">
              <table width="45%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm" style="border:1px outset #fff; margin-top:45px; padding-top:20px; padding-bottom:20px; margin-bottom:10px;">
			  <tr>
                  <td class="tdLabel" style="padding:4px; font-weight:bold; color:#FF0000" align="center" colspan="2">&raquo; Click on textbox to open the color picker.</td>
                   
                </tr>
				
                <tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Select Footer Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="color" name="site_color_footer_color" style="width:260px; height:25px;"></td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Select Footer Font Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="color" name="site_color_footer_font_color" style="width:260px; height:25px;"></td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Select Footer Font Hover Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="color" name="site_color_footer_font_hover_color" style="width:260px; height:25px;"></td>
                </tr>
                <tr>
                  <td class="tdLabel" colspan="2" style="padding:8px;">
				  <span style="margin-left:185px;"><input type="submit" name="Submit" style="width:100px; font-weight:bold; font-size:13px; height:29px;"></span>
				  <span style="margin-left:10px;"><input type="submit" name="ChangeDefault" value="Set as default" style="width:145px; font-weight:bold; font-size:13px; height:29px;"></span>
                  </td>
                </tr>
              </table>
            </form>
            <?php include("bottom.inc.php");?>
admin/subcat_list.php0000644000352000025440000003443414373673623015366 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
$catid=$_REQUEST['category_id'];

if(isset($_REQUEST['Delete'])){
if(is_array($_REQUEST['arr_ids'])){

$check=$_REQUEST['arr_ids'];
$SUB=count($check);

function del_sub($CAT){
$select=mysqli_query("select * from tbl_category where category_parent_id='$CAT'");

while($SQL=mysqli_fetch_array($select)){
del_sub($SQL['category_id']);
$delete=mysqli_query("delete from tbl_category where category_parent_id='$SQL[category_id]'");
//DELETE SUB CATEGORY AND PRODUCTS MORE IMAGES START
$del_image=mysqli_query("delete from tbl_category_image where category_image_cat_id='$SQL[category_id]'");
//DELETE SUB CATEGORY AND PRODUCTS MORE IMAGES END
}
//DELETE ALL CATEGORY MORE IMAGES FROM FOLDER START
$img_selct=mysqli_query("select category_image_id,category_image_name from  tbl_category_image where 1 and category_image_cat_id='$CAT'");
while($sqlsel=mysqli_fetch_array($img_selct)){
$imgName = $sqlsel['category_image_name'];
@unlink("../category_more_images/$imgName");
}
//DELETE ALL CATEGORY MORE IMAGES FROM FOLDER END
//DELETE ALL CATEGORY IMAGES FROM FOLDER START
$ct_img = mysqli_fetch_array(mysqli_query("select category_image_name from tbl_category where category_id='$CAT'"));
@unlink("../uploaded_files/$ct_img[category_image_name]");
//DELETE ALL CATEGORY IMAGES FROM FOLDER END
$del=mysqli_query("delete from tbl_category where category_id='$CAT'");
$del_img=mysqli_query("delete from tbl_category_image where category_image_cat_id='$CAT'");

}
for($x=0;$x<$SUB;$x++){
del_sub($check[$x]);
}
}
}


if(is_post_back()) {
	$arr_ids = $_REQUEST['arr_ids'];
	if(is_array($arr_ids)) {
		$str_ids = implode(',', $arr_ids); 
		if(isset($_REQUEST['Activate']) || isset($_REQUEST['Activate_x']) ) {
			db_query("update tbl_category set category_status='Active' where category_id in ($str_ids)");
		} else if(isset($_REQUEST['Deactivate']) || isset($_REQUEST['Deactivate_x']) ) {
			db_query("update tbl_category set category_status='Inactive' where category_id in ($str_ids)");
		}else if(isset($_REQUEST['make_hot']) || isset($_REQUEST['make_hot_x']) ) {
			db_query("update tbl_category set category_is_hot='Yes' where category_id in ($str_ids)");
		}else if(isset($_REQUEST['remove_hot']) || isset($_REQUEST['remove_hot_x']) ) {
			db_query("update tbl_category set category_is_hot='No' where category_id in ($str_ids)");
		}else if(isset($_REQUEST['make_feature']) || isset($_REQUEST['make_feature_x']) ) {
			db_query("update tbl_category set category_is_featured='Yes' where category_id in ($str_ids)");
		}else if(isset($_REQUEST['remove_feature']) || isset($_REQUEST['remove_feature_x']) ) {
			db_query("update tbl_category set category_is_featured='No' where category_id in ($str_ids)");
		}else if(isset($_REQUEST['set_for_home_gallery']) || isset($_REQUEST['set_for_home_gallery']) ) {
			db_query("update tbl_category set category_for_gallery='Yes' where category_id in ($str_ids)");
		}else if(isset($_REQUEST['remove_for_home_gallery']) || isset($_REQUEST['remove_for_home_gallery_x']) ) {
			db_query("update tbl_category set category_for_gallery='No' where category_id in ($str_ids)");
		}else if(isset($_REQUEST['set_for_home_flash']) || isset($_REQUEST['set_for_home_flash_x']) ) {
			db_query("update tbl_category set category_for_falsh='Yes' where category_id in ($str_ids)");
		}else if(isset($_REQUEST['remove_for_home_flash']) || isset($_REQUEST['remove_for_home_flash_x']) ) {
			db_query("update tbl_category set category_for_falsh='No' where category_id in ($str_ids)");
		}
	}
	header("Location: ".$_SERVER['HTTP_REFERER']);
	exit;
}

$start = intval($start);
$pagesize = intval($pagesize)==0?$pagesize=DEF_PAGE_SIZE:$pagesize;

$order_by == '' ? $order_by = 'category_id' : true;
$order_by2 == '' ? $order_by2 = 'asc' : true;

$catgid=($_REQUEST[id]!=0) ? $_REQUEST[id] : 0;	 
$sql = "select * from tbl_category   where 1 and category_parent_id='$catid' ";
$sql = apply_filter($sql, $category_name, 'like','category_name');
//echo $sql;
$sql .= " order by $order_by $order_by2 ";
$sql .= " limit $start, $pagesize ";

$pager = new midas_pager_sql($sql, $pagesize, $start);
if($pager->total_records) {
	$result = db_query($sql);
}
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<script language="JavaScript" type="text/javascript" src="../includes/general.js"></script>
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead"> Sub Category list </div></td>
              </tr>
            </table>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="content"><?php /*?><form method="get" name="form2" id="form2" onSubmit="return confirm_submit(this)">
                    <br />
                    <table  border="0" align="center" cellpadding="2" cellspacing="0" class="tableSearch" style="width:300px; height:90px;">
                      <tr align="center">
                        <th colspan="2">Search</th>
                      </tr>
                      <tr>
                        <td class="tdLabel">Name</td>
                        <td><input name="subcategory_name" type="text" value="<?=$subcategory_name?>" style="width:200px; height:24px;" /></td>
                      </tr>
                      <tr>
                        <td>&nbsp;</td>
                        <td><input name="pagesize" type="hidden" id="pagesize" value="<?=$pagesize?>" />
                          <input type="image" name="imageField" src="images/buttons/search.gif" /><?php if($_REQUEST['subcategory_name']){ ?><a href="subcat_list.php?category_id=<?=$_REQUEST['category_id']?>"><span style="vertical-align:top; margin-left:5px; font-size:12px; color:#0000CC; font-weight:bold; font-family:Arial, Helvetica, sans-serif;">View All</span></a><? } ?></td>
                      </tr>
                    </table>
                  </form><?php */?>
                  <br />
				    <div align="right"> <a href="category_list.php" style="font-size:12px; font-weight:bold; color:#006633">Back To Category List</a> </div>
                  <div align="right" style="margin-top:5px;"> <a href="addedit-subcategory.php?category_id=0&category_parent_id=<?=$catid?>" style="font-size:12px; font-weight:bold;">Add New Sub Category</a> </div>
                  <? if($pager->total_records==0) {?>
                  <div class="msg">Sorry, no records found.</div>
                  <? } else { ?>
                  <div align="right">
                    <? $pager->show_displaying()?>
                  </div>
                  <div>Records Per Page:
                    <?=pagesize_dropdown('pagesize', $pagesize);?>
                  </div>
                  <form method="post" name="form1" id="form1" onsubmit="confirm_submit(this)">
                  <table width="100%" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td align="right" style="padding:2px">
						<input type="submit" name="set_for_home_flash" value="Set For Home Flash" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#183232; border-radius:4px; cursor:pointer; width:155px;"/>
                          <input type="submit" name="remove_for_home_flash" value="Remove From Home Flash" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#CC0066; border-radius:4px; cursor:pointer; width:190px;"/>												
                        </td>
                      </tr>
                    </table>
                    <table width="100%"  border="0" cellpadding="0" cellspacing="1" class="tableList" style="border:1px outset #fff;">
                      <tr>
                        <th width="27%" nowrap="nowrap" style="font-size:12px; padding:9px;">Category Name
                          <?=sort_arrows('category_name')?></th>
                        <th width="9%" nowrap="nowrap">Category Image</th>
                        <th width="8%" nowrap="nowrap">Is Hot / Flash ?</th>
                        <th width="9%" nowrap="nowrap">Is Featured ?</th>
						<th width="9%" nowrap="nowrap">Home Gallery ?</th>
                        <th width="7%" nowrap="nowrap">&nbsp;</th>
                        <th width="9%" nowrap="nowrap">&nbsp;</th>
                        <th width="8%" nowrap="nowrap" style="font-size:12px; padding:9px;">Status
                          <?=sort_arrows('category_status')?></th>
						  
                        <th width="4%">&nbsp;</th>
                        <th width="4%"><input name="check_all" type="checkbox" id="check_all" value="1" onclick="checkall(this.form)" /></th>
                      </tr>
                      <?
							while ($line_raw = mysqli_fetch_array($result)) {
								$line = ms_display_value($line_raw);
								@extract($line);
								$css = ($css=='trOdd')?'trEven':'trOdd';
							?>
                      <tr class="<?=$css?>" align="center">
                        <td nowrap="nowrap" style="font-size:12px;"><a href="product_list.php?category_id=<?=$category_id?>&category_parent_id=<?=$catid?>">
                          <?=$category_name?>
                          </a></td>
                        <td nowrap="nowrap" style="font-size:12px;"><img src="../uploaded_files/<?=$category_image_name?>" height="60" width="60"  border="0"></td>
                        <td nowrap="nowrap" style="font-size:12px;"><strong><?=$category_is_hot?> / <?=$category_for_falsh?></strong></td>
                        <td nowrap="nowrap" style="font-size:12px;"><?=$category_is_featured?></td>
						 <td nowrap="nowrap" style="font-size:12px;"><?=$category_for_gallery?></td>
                        <td nowrap="nowrap" style="font-size:12px;"><?php if($category_is_product=='Yes'){ echo "Product";}else{ echo "Service";}?></td>
                        <td nowrap="nowrap" align="center" style="font-size:12px;"><b><a href="addedit-product.php?finalcat_id=0&category_parent_id=<?=$category_id?>">Add Product</a></b><br />
<p><a href="category_image_list.php?cat_id=<?=$category_id?>" style="font-size:11px; font-weight:bold; color:#003871">Add Images</a></p>
</td>
                        <td nowrap="nowrap" style="font-size:12px;"><span style="font-weight:bold; <?php if($category_status=='Active'){ ?> color:#295300; <? }else{ ?> color:#EA0000; <? } ?>">
                          <?=$category_status?>
                          </span></td>
						  
                        <td align="center" style="font-size:12px;"><a href="addedit-subcategory.php?category_id=<?=$category_id?>&category_parent_id=<?=$catid?>"><img src="images/icons/edit.png" alt="Edit" width="16" height="16" border="0" /></a></td>
                        <td align="center"><input name="arr_ids[]" type="checkbox" id="arr_ids[]" value="<?=$category_id?>" /></td>
                      </tr>
                      <? } ?>
                    </table>
                    <table width="100%" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td align="right" style="padding:2px">
						<input type="submit" name="set_for_home_gallery" value="Set For Home Gallery" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#183232; border-radius:4px; cursor:pointer; width:140px;"/>
                          <input type="submit" name="remove_for_home_gallery" value="Remove From Home Gallery" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#CC0066; border-radius:4px; cursor:pointer; width:176px;"/>
						<input type="submit" name="make_hot" value="Make Hot" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#006BD7; border-radius:4px; cursor:pointer; width:110px;"/>
                          <input type="submit" name="remove_hot" value="Remove Hot" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#66B3FF; border-radius:4px; cursor:pointer; width:110px;"/>
                          <input type="submit" name="make_feature" value="Make Feature" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#5B5B00; border-radius:4px; cursor:pointer; width:120px;"/>
                          <input type="submit" name="remove_feature" value="Remove Feature" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#B9B900; border-radius:4px; cursor:pointer; width:120px;"/>
						  
                          <input type="submit" name="Activate" value="Activate" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#1F3E00; border-radius:4px; cursor:pointer; width:100px;"/>
                          <input type="submit" name="Deactivate" value="Deactivate" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#FF6F6F; border-radius:4px; cursor:pointer; width:100px;" />
                           <?php //if($_SESSION['sess_admin_type']=='Admin'){ ?>
                          <input type="submit" name="Delete" value="Delete" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#CA0000; border-radius:4px; cursor:pointer; width:100px;"/>
                          <? //} ?>
                        </td>
                      </tr>
                    </table>
                  </form>
                  <? $pager->show_pager();?>
                  <? } ?>
                </td>
              </tr>
            </table>
            <? include("bottom.inc.php");?>
<script language="javascript">
function select_chk(){
			var chks = document.getElementsByName('arr_ids[]');
			var hasChecked = false;
			for (var i = 0; i < chks.length; i++){
			if (chks[i].checked){
				hasChecked = true;
				break;
				}
			}
			if (hasChecked == false){
			alert("Please Select At Least One.");
			return false;
			}
}
</script>
admin/add_edit_gallery_list.php0000644000352000025440000001633714373666441017363 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
ob_start();
$title=$_REQUEST['title'];

$DelImageId=$_REQUEST['DelID'];
 if(!empty($DelImageId)){ 
   $imageToDel=db_scalar("select gallery_image_name from tbl_gallery where 1 and gallery_id='$DelImageId'"); 
   @unlink('../gallery_images1/'.$imageToDel);
   $sqldel="delete from tbl_gallery where 1 and gallery_id='$DelImageId'";
   db_query($sqldel);
   set_session_msg("Image deleted successfully !");
   header("Location: add_edit_gallery_list.php?title=$title");
   exit;
 }
 
if(is_post_back()) {
if (isset($_POST['submit'])) {

 
    for ($i = 0; $i < count($_FILES['file']['name']); $i++) {
	     $imgName=rand(1,1000).$_FILES['file']['name'][$i];
		 $gTitle=$_POST['title'];
         if (move_uploaded_file($_FILES['file']['tmp_name'][$i],"../gallery_images1/$imgName")) {
			
			    $sql = "insert into tbl_gallery set 
		                   gallery_status='Active',
						   gallery_image_name='$imgName',
						   gallery_image_title='$gTitle',	
						   gallery_add_date=now()";
						   db_query($sql);				
            } 
			       
        }
		set_session_msg("Images uploaded successfully !");
		header("Location: manage_gallery_list.php");
		exit;
    }
 }
 
 
if($title!='') {
	$result = db_query("select * from tbl_gallery where gallery_image_title = '$title'");
	if ($line_raw = mysqli_fetch_array($result)) {
	 @extract($line_raw);
	}
}
?>
<script src="ckeditor/ckeditor.js"></script>
<style>
p.fck {
    width: 90%;
	float:left;
    margin: 0 auto;
 }
</style>
<link href="styles.css" rel="stylesheet" type="text/css">
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead">Add/Edit Image</div></td>
              </tr>
            </table>
            <div align="right"><a href="manage_gallery_list.php" style="font-size:12px; font-weight:bold; margin-right:15px;">Back to Image List</a>&nbsp;</div>
            <form name="form1" method="post" enctype="multipart/form-data">
              <table width="95%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm">
                <tr>
                  <td width="20%" class="tdLabel">&nbsp;</td>
                  <td width="80%" class="tdData" style="padding-left:7px;"><strong><font color="red">
                    <?=display_sess_msg();?>
                    </font></strong></td>
                </tr>
                <tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Title:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><input name="title" style="width:350px; height:28px;" type="text" id="title"  value="<?=$title?>" class="textfield"  ></td>
                </tr>  
                 
                 <?php if($gallery_image_name){ ?>
                <tr>
                  <td width="177" class="tdLabel" style="font-size:12px; padding:5px;">Current Image  :</td>
                  <td width="721" class="tdData" style="font-size:12px; padding:5px;">
                      
                    <?php			
			  $sql_fetch = db_query("select * from tbl_gallery where gallery_image_title = '$title'");
			  $cntDATA=mysqli_num_rows($sql_fetch);
			   if($cntDATA > 0){	
			    while($DATA = mysqli_fetch_array($sql_fetch)) {
		        @extract($DATA); 
             ?>
			 <div style="width:120px; height:170px; margin-top:10px;border:1px outset #fff; float:left; margin-left:8px;">
             <p align="center"><img src="../gallery_images1/<?=$DATA['gallery_image_name']?>" width="90" height="90" /><br>
                <span style="font-weight:bold;"><?=$DATA['gallery_image_title']?></span></p>
				<p align="center"><a href="add_edit_gallery_list.php?DelID=<?=$DATA['gallery_id']?>&title=<?=$title?>"><img src="images/no.gif"></a></p>
          </div>
		  
			 <? }} ?>
			 
                      
                      </td>
                </tr>
                <? } ?>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:5px;">Images :</td>
                  <td class="tdData" style="font-size:12px; padding:5px;"><input type="file" name="file[]" id="file" multiple></td>
                </tr>                             
                <?php /*?><tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Mobile No.:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><input name="test_phone" style="width:350px; height:28px;" type="text" id="test_phone"  value="<?=$test_phone?>" class="textfield"  ></td>
                </tr>
				
				<tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Country:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><input name="test_country" style="width:350px; height:28px;" type="text" id="test_country"  value="<?=$test_country?>" class="textfield"  ></td>
                </tr>
                
				<tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Title:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><input name="test_title" style="width:350px; height:28px;" type="text" id="test_title"  value="<?=$test_title?>" class="textfield"  ></td>
                </tr><?php */?>				
          <!--      <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Description:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><p class="fck">
                      <textarea cols="80" id="editor1" name="test_description" rows="10"><?=$test_description?>
</textarea>
                      <script>

			// Replace the <textarea id="editor"> with an CKEditor
			// instance, using default configurations.
			CKEDITOR.replace( 'editor1', {
				uiColor: '#ACACAC',
				toolbar: [
					[ 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],
					[ 'FontSize', 'TextColor', 'BGColor' ]
				]
			});

		</script>
                    </p></td>
                </tr>
                
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Status:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><select name="test_status" style="width:200px; height:26px;">
                      <option value="Active" <?php if($test_status=='Active'){ ?> selected="selected" <? } ?>>Active</option>
                      <option value="Inactive" <?php if($test_status=='Inactive'){ ?> selected="selected" <? } ?>>Inactive</option>
                    </select></td>
                </tr>
                
                -->
                
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">&nbsp;</td>
                  <td class="tdData" style="font-size:12px; padding:7px;">
                    <input type="submit" name="submit" style="padding:10px;" /></td>
                </tr>
              </table>
            </form>
            <?php include("bottom.inc.php");?>admin/index.php0000644000352000025440000000071414032142446014135 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
if(empty($_SESSION['user_id']))
{
    header("location:login.php");
}
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<?php include("top.inc.php");?>
<div id="content">
<div style="font-size:35px; font-weight:bold; margin-left:210px; margin-top:170px;color:#00509F;">Welcome to <b style="color:#AD3E1D;">TKI</b> Super Template Admin</div>

</div>
<?php include("bottom.inc.php");?>
admin/message-reply.php0000644000352000025440000001421014373673053015612 0ustar  thediannthediann<? require_once("../includes/dbsmain.inc.php");
$enq_id=$_GET['reply_id']; 
if($_GET['reply_id']!='')
{
$sql="select *from tbl_enquiry  where enquiry_id ='".$_GET['reply_id']."'";
$res=db_query($sql) or die(mysqli_error());
$line=mysqli_fetch_array($res);
@extract($line);
}
							
if(isset($_POST['submit']))
{
     $dat=$line['enquiry_recve_date'];
	 
	 $email=$line['enquiry_email'];
	  $addrss=$line['enquiry_address'];
	 $uname=$line['enquiry_name'];
	 $mobile=$line['enquiry_mobile'];
	 $enq_for=$line['enquiry_message'];
	 $enq_prd=$line['enquiry_product'];
	 $enq_contry=$line['enquiry_country'];
	 $enq_tp=$line['enquiry_type'];
		   
      $sql_del=db_query("delete from tbl_enquiry where 1 and enquiry_id='$enq_id'");
                                    $msql="insert into tbl_enquiry set 
									                           enquiry_id='$enq_id',
														       enquiry_email='$email',
														       enquiry_name='$client_nam',
														       enquiry_mobile='$client_phon',
															   enquiry_address='$addrss',
															   enquiry_message='$enq_for',
															   enquiry_type='$enq_tp',
															   enquiry_reply_message='$enquiry_msg',
															   enquiry_reply_date=now(),
															   enquiry_product='$enq_prd',
															   enquiry_country='$enq_contry',
															   enquiry_status='Sent',
															   enquiry_recve_date='$dat'";     
							
                                              db_query($msql) or die("can't access");
                            						   
$mail_body = "<table align='center' cellSpacing='5' cellPadding='5' width='75%' style='border:4px solid #0080FF;'  bgcolor='#FFE1E1'>
			
																<tbody>
																	<tr>
																		<td vAlign='top' style='background-color:#004E9B' colspan='3' >
																	
<p style='font-family:Verdana, Arial, Helvetica, sans-serif; font-size:16px; color:#FFFFFF; text-align:center;font-weight:bold; '>Reply Against Your Enquiry ( Art World ) </p></td>
																	</tr>
																
																	<tr>
<td width='31%' vAlign='top' style='font-family:Verdana, Arial, Helvetica, sans-serif; font-size:14px; color:#003366; background-color:#C4E1FF;' ><div align='left'><br><strong>&nbsp;&nbsp;Dear, ".ucwords($uname)."</strong><br>

<p style='padding:10px;'>".$enquiry_msg."</p>

<p style='font-size:14px; font-weight:bold; color:#009933; margin-left:10px; margin-top:30px;'><span>Best Regards</span>
<br><span style='font-size:12px; font-weight:bold; color:#0033CC;'>Art World</span>
</p>


 </div>																		</td>
																		
																	</tr>
																	 
																	
																	
																	
																	
																	
																																									</tbody>
																
													  </table>

";

$mail_to_client="$email";
$sub_client="Reply From Art World Against Your Enquiry";
$mail_client_body ="$mail_body";
$sender_client ="$enquiry_reply_emai";	
$headers_client  = "MIME-Version: 1.0" . "\r\n";
$headers_client .= "Content-type: text/html; charset=iso-8859-1" . "\r\n";
$headers_client .= "from: ".$sender_client."\n";
if($cllient_emai!=''){
@mail($mail_to_client,$sub_client,$mail_client_body,$headers_client);
}
//header("location:login.php?emsg=user register has been successfully");
//exit;
?>
<script type="text/javascript">
alert("Reply Has Been Sent Successfully");
			window.close();
if (window.opener && !window.opener.closed) {
window.opener.location.reload();
} 
			</script>
			<?
}  
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>




</head>
<body style="background:#E9FFD2;">
<div style="width:520px; margin:0 auto; margin-left:40px;"><!-- width div starts -->
  
 
		
	<form method="post" action="" name="frm">
  <table width="100%"  border="1" cellpadding="8" cellspacing="5" class="tableForm" bgcolor="#C9C9C9" style="font-size:12px; margin-top:5px; margin-right:80px;">
	
	<tr>
	  <td colspan="2"><span style="float:left;"><strong><font size="3">Enquiry Information</font></strong></span><span style="float:right;"><strong><font size="2"><a href="javascript;" onClick="javascript:self.close();"><b>Close</b></a></font></strong></span></td>
	</tr>
	<tr>
	  <td colspan="2" align="left" bgcolor="#93FF93"><strong><font size="3">To : </font></strong></td>
	</tr>
	<tr>
	  <td width="365" class="tdLabel"><b> Receiver's E-Mail</b></td>
	  <td width="962" class="tdLabel"><input type="text" size="58" name="cllient_emai" id="cllient_email" value="<?=$line['enquiry_email']?>" /></td>
	</tr>
	<tr>
	  <td width="365" class="tdLabel"><b> Name</b></td>
	  <td width="912" class="tdLabel"><input type="text" size="58" name="client_nam" id="client_name" value="<?=$line['enquiry_name']?>" /></td>
	</tr>
	
	<tr>
	  <td width="365" class="tdLabel"><b>Phone</b></td>
	  <td width="962" class="tdLabel"><input type="text" size="58" name="client_phon" id="client_phone" value="<?=$line['enquiry_mobile']?>" /></td>
	</tr>
	
	
	<tr>
	  <td colspan="2" align="left" bgcolor="#93FF93"><strong><font size="3">From : </font></strong></td>
	</tr>
	<tr>
	  <td width="375" class="tdLabel"><b>Sender's E-Mail</b></td>
	  <td width="962" class="tdLabel"><input type="text" size="58" name="enquiry_reply_emai" id="enquiry_reply_email" value="" /></td>
	</tr>
	<tr>
	  <td width="365" class="tdLabel"><b>Reply Message</b></td>
	  <td width="962" class="tdLabel"><textarea rows="9" cols="45" name="enquiry_msg" id="enquiry_reply_message"><?=$line['enquiry_reply_message']?></textarea></td>
	</tr>
	
	<tr>
	<td>&nbsp;</td>
	  <td class="tdLabel" colspan="2" align="left">&nbsp;&nbsp;<input type="submit" name="submit" id="submit" value="Send" style="width:95px; height:30px; font-weight:bold;" /><span style="float:right;"><strong><font size="4"><a href="javascript;" onClick="javascript:self.close();"><b>Close</b></a></font></strong></span></td>
	</tr>
	
	  </table>
		
	</form>
	
	
	
	
<!-- width div ends --></div>

</body>
</html>
admin/addedit-product.php0000644000352000025440000003351114373667125016121 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
ob_start();
$category_id=$_REQUEST['finalcat_id'];
$category_parent_id=$_REQUEST['category_parent_id'];
$ppid=db_scalar("select category_parent_id from tbl_category where 1 and category_id='$category_parent_id'");
if(is_post_back()){
//*************** UPDATE EXISTING CATEGORY START ************************//
if($_REQUEST['category_id']!='0') {
$category_url=ami_crete_url($category_name);
////////////****************** IMAGE RESIZING START HERE *****************************//
//********** Code Created By Amitabh Kumar Sinha : Web Developer : Webkey Network Pvt. Ltd. *****************//
//**********  DATE : 31:07:2014 *****************//
//------------FUNCTION TO GET IMAGE EXTENSION START---------------//
 function getExtension($str) {
         $i = strrpos($str,".");
         if (!$i) { return ""; }
         $l = strlen($str) - $i;
         $ext = substr($str,$i+1,$l);
         return $ext;
 }
 //------------FUNCTION TO GET IMAGE EXTENSION END---------------//
 if($_SERVER["REQUEST_METHOD"] == "POST")
 {
 	$image =$_FILES["file"]["name"];
	$uploadedfile = $_FILES['file']['tmp_name']; 
 	if ($image) { 	
	    $DelImage=db_scalar("select category_image_name from tbl_category where 1 and category_id = '$category_id'");
	    @unlink("../uploaded_files/$DelImage");
 		$filename = stripslashes($_FILES['file']['name']); 	
  		$extension = getExtension($filename);
 		$extension = strtolower($extension);
		$imgNAME = $category_url.".".$extension;		

 $size=filesize($_FILES['file']['tmp_name']);
if($extension=="jpg" || $extension=="jpeg" ){
  $uploadedfile = $_FILES['file']['tmp_name'];
  $src = imagecreatefromjpeg($uploadedfile);
}else if($extension=="png"){
  $uploadedfile = $_FILES['file']['tmp_name'];
  $src = imagecreatefrompng($uploadedfile);
}else{
$src = imagecreatefromgif($uploadedfile);
}
list($width,$height)=getimagesize($uploadedfile);
if($width >= 400){
$newwidth=400;
$newheight=($height/$width)*$newwidth;
$tmp=imagecreatetruecolor($newwidth,$newheight);
imagecopyresampled($tmp,$src,0,0,0,0,$newwidth,$newheight,$width,$height);
$filename = "../uploaded_files/". $imgNAME;
imagejpeg($tmp,$filename,100);
imagedestroy($src);
imagedestroy($tmp);
imagedestroy($tmp1);
}else{
move_uploaded_file($_FILES['file']['tmp_name'],"../uploaded_files/$imgNAME");
}
}else{
$imgNAME=db_scalar("select category_image_name from tbl_category where 1 and category_id = '$category_id'");
}
}

////////////****************** IMAGE RESIZING END HERE *****************************//
$sql = "update tbl_category set        
				category_name='$category_name',
				category_image_name='$imgNAME',
				category_description = '$category_description', 	
				category_is_hot='$category_is_hot',
				category_is_featured='$category_is_featured',
				category_for_falsh='$category_for_falsh',
				category_meta_title='$category_meta_title',
				category_meta_description='$category_meta_description',
				category_meta_keywords='$category_meta_keywords',
				category_is_product='$category_is_product',
				category_url='$category_url',
				category_add_date=now(),
				category_status='$category_status'
				where category_id = '$category_id' ";

db_query($sql);
set_session_msg("Category Updated Successfully !");
header("Location:addedit-product.php?finalcat_id=$_REQUEST[finalcat_id]&category_parent_id=$_REQUEST[category_parent_id]");
exit;
//*************** UPDATE EXISTING CATEGORY END ************************//
}else{
$category_url=ami_crete_url($category_name);
//*************** INSERT NEW CATEGORY START ************************//
////////////****************** IMAGE RESIZING START HERE *****************************//
//********** Code Created By Amitabh Kumar Sinha : Web Developer : Webkey Network Pvt. Ltd. *****************//
//**********  DATE : 31:07:2014 *****************//
//------------FUNCTION TO GET IMAGE EXTENSION START---------------//
 function getExtension($str) {
         $i = strrpos($str,".");
         if (!$i) { return ""; }
         $l = strlen($str) - $i;
         $ext = substr($str,$i+1,$l);
         return $ext;
 }
 //------------FUNCTION TO GET IMAGE EXTENSION END---------------//
 if($_SERVER["REQUEST_METHOD"] == "POST")
 {
 	$image =$_FILES["file"]["name"];
	$uploadedfile = $_FILES['file']['tmp_name']; 
 	if ($image) { 	
 		$filename = stripslashes($_FILES['file']['name']); 	
  		$extension = getExtension($filename);
 		$extension = strtolower($extension);
		$imgNAME = $category_url.".".$extension;		

 $size=filesize($_FILES['file']['tmp_name']);
if($extension=="jpg" || $extension=="jpeg" ){
  $uploadedfile = $_FILES['file']['tmp_name'];
  $src = imagecreatefromjpeg($uploadedfile);
}else if($extension=="png"){
  $uploadedfile = $_FILES['file']['tmp_name'];
  $src = imagecreatefrompng($uploadedfile);
}else{
$src = imagecreatefromgif($uploadedfile);
}
list($width,$height)=getimagesize($uploadedfile);
if($width >= 400){
$newwidth=400;
$newheight=($height/$width)*$newwidth;
$tmp=imagecreatetruecolor($newwidth,$newheight);
imagecopyresampled($tmp,$src,0,0,0,0,$newwidth,$newheight,$width,$height);
$filename = "../uploaded_files/". $imgNAME;
imagejpeg($tmp,$filename,100);
imagedestroy($src);
imagedestroy($tmp);
imagedestroy($tmp1);
}else{
move_uploaded_file($_FILES['file']['tmp_name'],"../uploaded_files/$imgNAME");
}
}
}

////////////****************** IMAGE RESIZING END HERE *****************************//
$sql = "insert into tbl_category set 
                category_name='$category_name',
				category_parent_id='$category_parent_id',
				category_image_name='$imgNAME',
				category_description='$category_description', 	
				category_is_hot='$category_is_hot',
				category_is_featured='$category_is_featured',
				category_for_falsh='$category_for_falsh',
				category_meta_title='$category_meta_title',
				category_meta_description='$category_meta_description',
				category_meta_keywords='$category_meta_keywords',
				category_is_product='$category_is_product',
				category_url='$category_url',
				category_add_date=now(),
				category_status='$category_status'";

db_query($sql);
set_session_msg("Category Added Successfully !");
header("Location:addedit-product.php?finalcat_id=$_REQUEST[finalcat_id]&category_parent_id=$_REQUEST[category_parent_id]");
exit;
//*************** INSERT NEW CATEGORY END ************************//
 }
}

if($category_id!='') {
	$result = db_query("select * from tbl_category where category_id = '$category_id'");
	if ($line_raw = mysqli_fetch_array($result)) {
	 @extract($line_raw);
	}
}
?>
<script src="ckeditor/ckeditor.js"></script>
<style>
p.fck {
    width: 90%;
	float:left;
    margin: 0 auto;
 }
</style>
<link href="styles.css" rel="stylesheet" type="text/css">
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead">Add/Edit Product</div></td>
              </tr>
            </table>
            <div align="right"><a href="product_list.php?category_id=<?=$category_parent_id?>&category_parent_id=<?=$ppid?>" style="font-size:12px; font-weight:bold; margin-right:15px;">Back to Product Category List</a>&nbsp;</div>
            <form name="form1" method="post" enctype="multipart/form-data">
              <table width="95%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm">
                <tr>
                  <td width="20%" class="tdLabel">&nbsp;</td>
                  <td width="80%" class="tdData" style="padding-left:7px;"><strong><font color="red">
                    <?=display_sess_msg();?>
                    </font></strong></td>
                </tr>
                <tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Product Name:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><input name="category_name" style="width:350px; height:28px;" type="text" id="category_name"  value="<?=$category_name?>" class="textfield"  ></td>
                </tr>
                <?php if($category_image_name){ ?>
                <tr>
                  <td width="177" class="tdLabel" style="font-size:12px; padding:5px;">Current Image  :</td>
                  <td width="721" class="tdData" style="font-size:12px; padding:5px;"><img src="../uploaded_files/<?=$category_image_name?>" height="70" width="70"  border="0"> </td>
                </tr>
                <? } ?>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:5px;">Product Image :</td>
                  <td class="tdData" style="font-size:12px; padding:5px;"><input type="file" name="file" id="file"></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Meta Title:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><input name="category_meta_title" style="width:350px; height:28px;" type="text" id="category_meta_title"  value="<?=$category_meta_title?>" class="textfield" /></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Meta Keyword:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><textarea rows="5" cols="66" name="category_meta_keywords"><?=$category_meta_keywords?>
</textarea></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Meta Description:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><textarea rows="5" cols="66" name="category_meta_description"><?=$category_meta_description?>
</textarea></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Product Description:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><p class="fck">
                      <textarea cols="80" id="editor1" name="category_description" rows="10"><?=$category_description?>
</textarea>
                      <script>

			// Replace the <textarea id="editor"> with an CKEditor
			// instance, using default configurations.
			CKEDITOR.replace( 'editor1', {
				uiColor: '#ACACAC',
				toolbar: [
					[ 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],
					[ 'FontSize', 'TextColor', 'BGColor' ]
				]
			});

		</script>
                    </p></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Product Is Hot ?:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><select name="category_is_hot" style="width:200px; height:26px;">
                      <option value="Yes" <?php if($category_is_hot=='Yes'){ ?> selected="selected" <? } ?>>Yes</option>
                      <option value="No" <?php if($category_is_hot=='No'){ ?> selected="selected" <? } ?>>No</option>
                    </select></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Product Is Featured ?:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><select name="category_is_featured" style="width:200px; height:26px;">
                      <option value="Yes" <?php if($category_is_featured=='Yes'){ ?> selected="selected" <? } ?>>Yes</option>
                      <option value="No" <?php if($category_is_featured=='No'){ ?> selected="selected" <? } ?>>No</option>
                    </select></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Set For Flash ?:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><select name="category_for_falsh" style="width:200px; height:26px;">
                      <option value="Yes" <?php if($category_for_falsh=='Yes'){ ?> selected="selected" <? } ?>>Yes</option>
                      <option value="No" <?php if($category_for_falsh=='No'){ ?> selected="selected" <? } ?>>No</option>
                    </select></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Product Is ?:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><select name="category_is_product" style="width:200px; height:26px;">
                      <option value="Yes" <?php if($category_is_product=='Yes'){ ?> selected="selected" <? } ?>>Product</option>
                      <option value="No" <?php if($category_is_product=='No'){ ?> selected="selected" <? } ?>>Service</option>
                    </select></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Status:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><select name="category_status" style="width:200px; height:26px;">
                      <option value="Active" <?php if($category_status=='Active'){ ?> selected="selected" <? } ?>>Active</option>
                      <option value="Inactive" <?php if($category_status=='Inactive'){ ?> selected="selected" <? } ?>>Inactive</option>
                    </select></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">&nbsp;</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><input type="hidden" name="category_id" value="<?=$category_id?>" />
                    <input type="image" name="imageField" src="images/buttons/submit.gif" style="width:100px; margin-bottom:25px;" /></td>
                </tr>
              </table>
            </form>
            <? include("bottom.inc.php");?>admin/manage_footer.php0000644000352000025440000001115614373672065015653 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
if(is_post_back()){
 if(isset($_REQUEST['Update'])){	
     $update="update tbl_admin set 
	             admin_copyright='$admin_copyright',
				 admin_member_of='$admin_member_of',
				 admin_keyword='$admin_keyword',
				 admin_keyword_link='$admin_keyword_link',
				 admin_all_right_reserved='$admin_all_right_reserved' 
				 where 1 and admin_user_type='Admin'";
	db_query($update);
    $arr_error_msgs[] = "Record Updated";	
 }	
}
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead"> Manage Footer </div></td>
              </tr>
            </table>
            <b>
            <? include("error_msgs.inc.php");?>
            </b>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="content"><form name="form1" method="post" enctype="multipart/form-data">
                    <table width="70%"  border="0" cellpadding="0" align="center" cellspacing="1" class="tableList" style="border:1px outset #fff;">
                      <tr>
                        <th nowrap="nowrap">&nbsp;</th>
                        <th width="61%" nowrap="nowrap"></th>
                      </tr>
                      <?php
$sql = "select * from tbl_admin where 1 and admin_user_type='Admin'";
$sqlupdt=db_query($sql);		  
while ($line_raw = mysqli_fetch_array($sqlupdt)) {
	@extract($line_raw);
	$css = ($css=='trOdd')?'trEven':'trOdd';
?>
                      <tr class="<?=$css?>" align="center">
                        <td nowrap="nowrap" style="font-size:11px; font-weight:bold; color:#003A75;">Copyright</td>
                        <td nowrap="nowrap"><input type="text" name="admin_copyright" id="admin_copyright" value="<?=$admin_copyright?>" style="width:300px; height:25px; padding-left:5px; font-size:11px;" /></td>
                      </tr>
                      <tr class="<?=$css?>" align="center">
                        <td nowrap="nowrap" style="font-size:11px; font-weight:bold; color:#003A75;"> All Rights Reserved By </td>
                        <td nowrap="nowrap"><input type="text" name="admin_all_right_reserved" id="admin_all_right_reserved" value="<?=$admin_all_right_reserved?>" style="width:300px; height:25px; padding-left:5px; font-size:11px;" /></td>
                      </tr>
					  <tr class="<?=$css?>" align="center">
                        <td nowrap="nowrap" style="font-size:11px; font-weight:bold; color:#003A75;"> Member of </td>
                        <td nowrap="nowrap"><input type="text" name="admin_member_of" id="admin_member_of" value="<?=$admin_member_of?>" style="width:300px; height:25px; padding-left:5px; font-size:11px;" /></td>
                      </tr>
					  <tr class="<?=$css?>" align="center">
                        <td nowrap="nowrap" style="font-size:11px; font-weight:bold; color:#003A75;"> Keyword </td>
                        <td nowrap="nowrap"><input type="text" name="admin_keyword" id="admin_keyword" value="<?=$admin_keyword?>" style="width:300px; height:25px; padding-left:5px; font-size:11px;" /></td>
                      </tr>
					  <tr class="<?=$css?>" align="center">
                        <td nowrap="nowrap" style="font-size:11px; font-weight:bold; color:#003A75;"> Keyword Link </td>
                        <td nowrap="nowrap"><input type="text" name="admin_keyword_link" id="admin_keyword_link" value="<?=$admin_keyword_link?>" style="width:300px; height:25px; padding-left:5px; font-size:11px;" /><br />
<b style="font-size:10px; color:#F00;">[ http://www.tradekeyindia.com ]</b></td>
                      </tr>
                      <tr class="<?=$css?>" align="center">
                        <td nowrap="nowrap">&nbsp;</td>
                        <td nowrap="nowrap"><input type="submit" name="Update" value="Update" class="button" style="font-size:13px; font-weight:bold; height:27px; background-color:#006BD7; border-radius:4px; cursor:pointer; width:100px; margin-bottom:15px; margin-top:7px;" /></td>
                      </tr>
                      <? } ?>
                    </table>
                    <table width="100%" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td align="right" style="padding:2px"></td>
                      </tr>
                    </table>
                  </form></td>
              </tr>
            </table>
<?php include("bottom.inc.php");?>
admin/jquery.min.js0000644000352000025440000027117212216341662014767 0ustar  thediannthediann/*! jQuery v1.7.2 jquery.com | jquery.org/license */
(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cu(a){if(!cj[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ck||(ck=c.createElement("iframe"),ck.frameBorder=ck.width=ck.height=0),b.appendChild(ck);if(!cl||!ck.createElement)cl=(ck.contentWindow||ck.contentDocument).document,cl.write((f.support.boxModel?"<!doctype html>":"")+"<html><body>"),cl.close();d=cl.createElement(a),cl.body.appendChild(d),e=f.css(d,"display"),b.removeChild(ck)}cj[a]=e}return cj[a]}function ct(a,b){var c={};f.each(cp.concat.apply([],cp.slice(0,b)),function(){c[this]=a});return c}function cs(){cq=b}function cr(){setTimeout(cs,0);return cq=f.now()}function ci(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ch(){try{return new a.XMLHttpRequest}catch(b){}}function cb(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h=="string"&&(e[h.toLowerCase()]=a.converters[h]);l=k,k=d[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=e[m]||e["* "+k];if(!n){p=b;for(o in e){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=e[j[1]+" "+k];if(p){o=e[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&f.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function ca(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function b_(a,b,c,d){if(f.isArray(b))f.each(b,function(b,e){c||bD.test(a)?d(a,e):b_(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&f.type(b)==="object")for(var e in b)b_(a+"["+e+"]",b[e],c,d);else d(a,b)}function b$(a,c){var d,e,g=f.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((g[d]?a:e||(e={}))[d]=c[d]);e&&f.extend(!0,a,e)}function bZ(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bS,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l=="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=bZ(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=bZ(a,c,d,e,"*",g));return l}function bY(a){return function(b,c){typeof b!="string"&&(c=b,b="*");if(f.isFunction(c)){var d=b.toLowerCase().split(bO),e=0,g=d.length,h,i,j;for(;e<g;e++)h=d[e],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bB(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=b==="width"?1:0,g=4;if(d>0){if(c!=="border")for(;e<g;e+=2)c||(d-=parseFloat(f.css(a,"padding"+bx[e]))||0),c==="margin"?d+=parseFloat(f.css(a,c+bx[e]))||0:d-=parseFloat(f.css(a,"border"+bx[e]+"Width"))||0;return d+"px"}d=by(a,b);if(d<0||d==null)d=a.style[b];if(bt.test(d))return d;d=parseFloat(d)||0;if(c)for(;e<g;e+=2)d+=parseFloat(f.css(a,"padding"+bx[e]))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+bx[e]+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+bx[e]))||0);return d+"px"}function bo(a){var b=c.createElement("div");bh.appendChild(b),b.innerHTML=a.outerHTML;return b.firstChild}function bn(a){var b=(a.nodeName||"").toLowerCase();b==="input"?bm(a):b!=="script"&&typeof a.getElementsByTagName!="undefined"&&f.grep(a.getElementsByTagName("input"),bm)}function bm(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bl(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bk(a,b){var c;b.nodeType===1&&(b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase(),c==="object"?b.outerHTML=a.outerHTML:c!=="input"||a.type!=="checkbox"&&a.type!=="radio"?c==="option"?b.selected=a.defaultSelected:c==="input"||c==="textarea"?b.defaultValue=a.defaultValue:c==="script"&&b.text!==a.text&&(b.text=a.text):(a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value)),b.removeAttribute(f.expando),b.removeAttribute("_submit_attached"),b.removeAttribute("_change_attached"))}function bj(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c,d,e,g=f._data(a),h=f._data(b,g),i=g.events;if(i){delete h.handle,h.events={};for(c in i)for(d=0,e=i[c].length;d<e;d++)f.event.add(b,c,i[c][d])}h.data&&(h.data=f.extend({},h.data))}}function bi(a,b){return f.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function U(a){var b=V.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function T(a,b,c){b=b||0;if(f.isFunction(b))return f.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return f.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=f.grep(a,function(a){return a.nodeType===1});if(O.test(b))return f.filter(b,d,!c);b=f.filter(b,d)}return f.grep(a,function(a,d){return f.inArray(a,b)>=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?+d:j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c<d;c++)b[a[c]]=!0;return b}var c=a.document,d=a.navigator,e=a.location,f=function(){function J(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(J,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.2",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){d=i[c],f=a[c];if(i===f)continue;l&&f&&(e.isPlainObject(f)||(g=e.isArray(f)))?(g?(g=!1,h=d&&e.isArray(d)?d:[]):h=d&&e.isPlainObject(d)?d:{},i[c]=e.extend(l,h,f)):f!==b&&(i[c]=f)}return i},e.extend({noConflict:function(b){a.$===e&&(a.$=g),b&&a.jQuery===e&&(a.jQuery=f);return e},isReady:!1,readyWait:1,holdReady:function(a){a?e.readyWait++:e.ready(!0)},ready:function(a){if(a===!0&&!--e.readyWait||a!==!0&&!e.isReady){if(!c.body)return setTimeout(e.ready,1);e.isReady=!0;if(a!==!0&&--e.readyWait>0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){if(typeof c!="string"||!c)return null;var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g<h;)if(c.apply(a[g++],d)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(;g<h;)if(c.call(a[g],g,a[g++])===!1)break;return a},trim:G?function(a){return a==null?"":G.call(a)}:function(a){return a==null?"":(a+"").replace(k,"").replace(l,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var d=e.type(a);a.length==null||d==="string"||d==="function"||d==="regexp"||e.isWindow(a)?E.call(c,a):e.merge(c,a)}return c},inArray:function(a,b,c){var d;if(b){if(H)return H.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length=="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,c,d){var f,g,h=[],i=0,j=a.length,k=a instanceof e||j!==b&&typeof j=="number"&&(j>0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i<j;i++)f=c(a[i],i,d),f!=null&&(h[h.length]=f);else for(g in a)f=c(a[g],g,d),f!=null&&(h[h.length]=f);return h.concat.apply([],h)},guid:1,proxy:function(a,c){if(typeof c=="string"){var d=a[c];c=a,a=d}if(!e.isFunction(a))return b;var f=F.call(arguments,2),g=function(){return a.apply(c,f.concat(F.call(arguments)))};g.guid=a.guid=a.guid||g.guid||e.guid++;return g},access:function(a,c,d,f,g,h,i){var j,k=d==null,l=0,m=a.length;if(d&&typeof d=="object"){for(l in d)e.access(a,c,l,d[l],1,h,f);g=1}else if(f!==b){j=i===b&&e.isFunction(f),k&&(j?(j=c,c=function(a,b,c){return j.call(e(a),c)}):(c.call(a,f),c=null));if(c)for(;l<m;l++)c(a[l],d,j?f.call(a[l],l,c(a[l],d)):f,i);g=1}return g?a:k?c.call(a):m?c(a[0],d):h},now:function(){return(new Date).getTime()},uaMatch:function(a){a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}e.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanceof a)&&(f=a(f));return e.fn.init.call(this,d,f,b)},a.fn.init.prototype=a.fn;var b=a(c);return a},browser:{}}),e.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){I["[object "+b+"]"]=b.toLowerCase()}),z=e.uaMatch(y),z.browser&&(e.browser[z.browser]=!0,e.browser.version=z.version),e.browser.webkit&&(e.browser.safari=!0),j.test(" ")&&(k=/^[\s\xA0]+/,l=/[\s\xA0]+$/),h=e(c),c.addEventListener?B=function(){c.removeEventListener("DOMContentLoaded",B,!1),e.ready()}:c.attachEvent&&(B=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",B),e.ready())});return e}(),g={};f.Callbacks=function(a){a=a?g[a]||h(a):{};var c=[],d=[],e,i,j,k,l,m,n=function(b){var d,e,g,h,i;for(d=0,e=b.length;d<e;d++)g=b[d],h=f.type(g),h==="array"?n(g):h==="function"&&(!a.unique||!p.has(g))&&c.push(g)},o=function(b,f){f=f||[],e=!a.memory||[b,f],i=!0,j=!0,m=k||0,k=0,l=c.length;for(;c&&m<l;m++)if(c[m].apply(b,f)===!1&&a.stopOnFalse){e=!0;break}j=!1,c&&(a.once?e===!0?p.disable():c=[]:d&&d.length&&(e=d.shift(),p.fireWith(e[0],e[1])))},p={add:function(){if(c){var a=c.length;n(arguments),j?l=c.length:e&&e!==!0&&(k=a,o(e[0],e[1]))}return this},remove:function(){if(c){var b=arguments,d=0,e=b.length;for(;d<e;d++)for(var f=0;f<c.length;f++)if(b[d]===c[f]){j&&f<=l&&(l--,f<=m&&m--),c.splice(f--,1);if(a.unique)break}}return this},has:function(a){if(c){var b=0,d=c.length;for(;b<d;b++)if(a===c[b])return!0}return!1},empty:function(){c=[];return this},disable:function(){c=d=e=b;return this},disabled:function(){return!c},lock:function(){d=b,(!e||e===!0)&&p.disable();return this},locked:function(){return!d},fireWith:function(b,c){d&&(j?a.once||d.push([b,c]):(!a.once||!e)&&o(b,c));return this},fire:function(){p.fireWith(this,arguments);return this},fired:function(){return!!i}};return p};var i=[].slice;f.extend({Deferred:function(a){var b=f.Callbacks("once memory"),c=f.Callbacks("once memory"),d=f.Callbacks("memory"),e="pending",g={resolve:b,reject:c,notify:d},h={done:b.add,fail:c.add,progress:d.add,state:function(){return e},isResolved:b.fired,isRejected:c.fired,then:function(a,b,c){i.done(a).fail(b).progress(c);return this},always:function(){i.done.apply(i,arguments).fail.apply(i,arguments);return this},pipe:function(a,b,c){return f.Deferred(function(d){f.each({done:[a,"resolve"],fail:[b,"reject"],progress:[c,"notify"]},function(a,b){var c=b[0],e=b[1],g;f.isFunction(c)?i[a](function(){g=c.apply(this,arguments),g&&f.isFunction(g.promise)?g.promise().then(d.resolve,d.reject,d.notify):d[e+"With"](this===i?d:this,[g])}):i[a](d[e])})}).promise()},promise:function(a){if(a==null)a=h;else for(var b in h)a[b]=h[b];return a}},i=h.promise({}),j;for(j in g)i[j]=g[j].fire,i[j+"With"]=g[j].fireWith;i.done(function(){e="resolved"},c.disable,d.lock).fail(function(){e="rejected"},b.disable,d.lock),a&&a.call(i,i);return i},when:function(a){function m(a){return function(b){e[a]=arguments.length>1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c<d;c++)b[c]&&b[c].promise&&f.isFunction(b[c].promise)?b[c].promise().then(l(c),j.reject,m(c)):--g;g||j.resolveWith(j,b)}else j!==a&&j.resolveWith(j,d?[a]:[]);return k}}),f.support=function(){var b,d,e,g,h,i,j,k,l,m,n,o,p=c.createElement("div"),q=c.documentElement;p.setAttribute("className","t"),p.innerHTML="   <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>",d=p.getElementsByTagName("*"),e=p.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=p.getElementsByTagName("input")[0],b={leadingWhitespace:p.firstChild.nodeType===3,tbody:!p.getElementsByTagName("tbody").length,htmlSerialize:!!p.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:p.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,pixelMargin:!0},f.boxModel=b.boxModel=c.compatMode==="CSS1Compat",i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete p.test}catch(r){b.deleteExpando=!1}!p.addEventListener&&p.attachEvent&&p.fireEvent&&(p.attachEvent("onclick",function(){b.noCloneEvent=!1}),p.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),i.setAttribute("name","t"),p.appendChild(i),j=c.createDocumentFragment(),j.appendChild(p.lastChild),b.checkClone=j.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,j.removeChild(i),j.appendChild(p);if(p.attachEvent)for(n in{submit:1,change:1,focusin:1})m="on"+n,o=m in p,o||(p.setAttribute(m,"return;"),o=typeof p[m]=="function"),b[n+"Bubbles"]=o;j.removeChild(p),j=g=h=p=i=null,f(function(){var d,e,g,h,i,j,l,m,n,q,r,s,t,u=c.getElementsByTagName("body")[0];!u||(m=1,t="padding:0;margin:0;border:",r="position:absolute;top:0;left:0;width:1px;height:1px;",s=t+"0;visibility:hidden;",n="style='"+r+t+"5px solid #000;",q="<div "+n+"display:block;'><div style='"+t+"0;display:block;overflow:hidden;'></div></div>"+"<table "+n+"' cellpadding='0' cellspacing='0'>"+"<tr><td></td></tr></table>",d=c.createElement("div"),d.style.cssText=s+"width:0;height:0;position:static;top:0;margin-top:"+m+"px",u.insertBefore(d,u.firstChild),p=c.createElement("div"),d.appendChild(p),p.innerHTML="<table><tr><td style='"+t+"0;display:none'></td><td>t</td></tr></table>",k=p.getElementsByTagName("td"),o=k[0].offsetHeight===0,k[0].style.display="",k[1].style.display="none",b.reliableHiddenOffsets=o&&k[0].offsetHeight===0,a.getComputedStyle&&(p.innerHTML="",l=c.createElement("div"),l.style.width="0",l.style.marginRight="0",p.style.width="2px",p.appendChild(l),b.reliableMarginRight=(parseInt((a.getComputedStyle(l,null)||{marginRight:0}).marginRight,10)||0)===0),typeof p.style.zoom!="undefined"&&(p.innerHTML="",p.style.width=p.style.padding="1px",p.style.border=0,p.style.overflow="hidden",p.style.display="inline",p.style.zoom=1,b.inlineBlockNeedsLayout=p.offsetWidth===3,p.style.display="block",p.style.overflow="visible",p.innerHTML="<div style='width:5px;'></div>",b.shrinkWrapBlocks=p.offsetWidth!==3),p.style.cssText=r+s,p.innerHTML=q,e=p.firstChild,g=e.firstChild,i=e.nextSibling.firstChild.firstChild,j={doesNotAddBorder:g.offsetTop!==5,doesAddBorderForTableAndCells:i.offsetTop===5},g.style.position="fixed",g.style.top="20px",j.fixedPosition=g.offsetTop===20||g.offsetTop===15,g.style.position=g.style.top="",e.style.overflow="hidden",e.style.position="relative",j.subtractsBorderForOverflowNotVisible=g.offsetTop===-5,j.doesNotIncludeMarginInBodyOffset=u.offsetTop!==m,a.getComputedStyle&&(p.style.marginTop="1%",b.pixelMargin=(a.getComputedStyle(p,null)||{marginTop:0}).marginTop!=="1%"),typeof d.style.zoom!="undefined"&&(d.style.zoom=1),u.removeChild(d),l=p=d=null,f.extend(b,j))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e<g;e++)delete d[b[e]];if(!(c?m:f.isEmptyObject)(d))return}}if(!c){delete j[k].data;if(!m(j[k]))return}f.support.deleteExpando||!j.setInterval?delete j[k]:j[k]=null,i&&(f.support.deleteExpando?delete a[h]:a.removeAttribute?a.removeAttribute(h):a[h]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d,e,g,h,i,j=this[0],k=0,m=null;if(a===b){if(this.length){m=f.data(j);if(j.nodeType===1&&!f._data(j,"parsedAttrs")){g=j.attributes;for(i=g.length;k<i;k++)h=g[k].name,h.indexOf("data-")===0&&(h=f.camelCase(h.substring(5)),l(j,h,m[h]));f._data(j,"parsedAttrs",!0)}}return m}if(typeof a=="object")return this.each(function(){f.data(this,a)});d=a.split(".",2),d[1]=d[1]?"."+d[1]:"",e=d[1]+"!";return f.access(this,function(c){if(c===b){m=this.triggerHandler("getData"+e,[d[0]]),m===b&&j&&(m=f.data(j,a),m=l(j,a,m));return m===b&&d[1]?this.data(d[0]):m}d[1]=c,this.each(function(){var b=f(this);b.triggerHandler("setData"+e,d),f.data(this,a,c),b.triggerHandler("changeData"+e,d)})},null,c,arguments.length>1,null,!1)},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,b){a&&(b=(b||"fx")+"mark",f._data(a,b,(f._data(a,b)||0)+1))},_unmark:function(a,b,c){a!==!0&&(c=b,b=a,a=!1);if(b){c=c||"fx";var d=c+"mark",e=a?0:(f._data(b,d)||1)-1;e?f._data(b,d,e):(f.removeData(b,d,!0),n(b,c,"mark"))}},queue:function(a,b,c){var d;if(a){b=(b||"fx")+"queue",d=f._data(a,b),c&&(!d||f.isArray(c)?d=f._data(a,b,f.makeArray(c)):d.push(c));return d||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e={};d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),f._data(a,b+".run",e),d.call(a,function(){f.dequeue(a,b)},e)),c.length||(f.removeData(a,b+"queue "+b+".run",!0),n(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){var d=2;typeof a!="string"&&(c=a,a="fx",d--);if(arguments.length<d)return f.queue(this[0],a);return c===b?this:this.each(function(){var b=f.queue(this,a,c);a==="fx"&&b[0]!=="inprogress"&&f.dequeue(this,a)})},dequeue:function(a){return this.each(function(){f.dequeue(this,a)})},delay:function(a,b){a=f.fx?f.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){function m(){--h||d.resolveWith(e,[e])}typeof a!="string"&&(c=a,a=b),a=a||"fx";var d=f.Deferred(),e=this,g=e.length,h=1,i=a+"defer",j=a+"queue",k=a+"mark",l;while(g--)if(l=f.data(e[g],i,b,!0)||(f.data(e[g],j,b,!0)||f.data(e[g],k,b,!0))&&f.data(e[g],i,f.Callbacks("once memory"),!0))h++,l.add(m);m();return d.promise(c)}});var o=/[\n\t\r]/g,p=/\s+/,q=/\r/g,r=/^(?:button|input)$/i,s=/^(?:button|input|object|select|textarea)$/i,t=/^a(?:rea)?$/i,u=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,v=f.support.getSetAttribute,w,x,y;f.fn.extend({attr:function(a,b){return f.access(this,f.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,f.prop,a,b,arguments.length>1)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(p);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{g=" "+e.className+" ";for(h=0,i=b.length;h<i;h++)~g.indexOf(" "+b[h]+" ")||(g+=b[h]+" ");e.className=f.trim(g)}}}return this},removeClass:function(a){var c,d,e,g,h,i,j;if(f.isFunction(a))return this.each(function(b){f(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(p);for(d=0,e=this.length;d<e;d++){g=this[d];if(g.nodeType===1&&g.className)if(a){h=(" "+g.className+" ").replace(o," ");for(i=0,j=c.length;i<j;i++)h=h.replace(" "+c[i]+" "," ");g.className=f.trim(h)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";if(f.isFunction(a))return this.each(function(c){f(this).toggleClass(a.call(this,c,this.className,b),b)});return this.each(function(){if(c==="string"){var e,g=0,h=f(this),i=b,j=a.split(p);while(e=j[g++])i=d?i:!h.hasClass(e),h[i?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&f._data(this,"__className__",this.className),this.className=this.className||a===!1?"":f._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(o," ").indexOf(b)>-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.type]||f.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.type]||f.valHooks[g.nodeName.toLowerCase()];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c<d;c++){e=i[c];if(e.selected&&(f.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!f.nodeName(e.parentNode,"optgroup"))){b=f(e).val();if(j)return b;h.push(b)}}if(j&&!h.length&&i.length)return f(i[g]).val();return h},set:function(a,b){var c=f.makeArray(b);f(a).find("option").each(function(){this.selected=f.inArray(f(this).val(),c)>=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h,i=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;i<g;i++)e=d[i],e&&(c=f.propFix[e]||e,h=u.test(e),h||f.attr(a,e,""),a.removeAttribute(v?e:c),h&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(r.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},value:{get:function(a,b){if(w&&f.nodeName(a,"button"))return w.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(w&&f.nodeName(a,"button"))return w.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,g,h,i=a.nodeType;if(!!a&&i!==3&&i!==8&&i!==2){h=i!==1||!f.isXMLDoc(a),h&&(c=f.propFix[c]||c,g=f.propHooks[c]);return d!==b?g&&"set"in g&&(e=g.set(a,d,c))!==b?e:a[c]=d:g&&"get"in g&&(e=g.get(a,c))!==null?e:a[c]}},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):s.test(a.nodeName)||t.test(a.nodeName)&&a.href?0:b}}}}),f.attrHooks.tabindex=f.propHooks.tabIndex,x={get:function(a,c){var d,e=f.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},v||(y={name:!0,id:!0,coords:!0},w=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&(y[c]?d.nodeValue!=="":d.specified)?d.nodeValue:b},set:function(a,b,d){var e=a.getAttributeNode(d);e||(e=c.createAttribute(d),a.setAttributeNode(e));return e.nodeValue=b+""}},f.attrHooks.tabindex.set=w.set,f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})}),f.attrHooks.contenteditable={get:w.get,set:function(a,b,c){b===""&&(b="false"),w.set(a,b,c)}}),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex);return null}})),f.support.enctype||(f.propFix.enctype="encoding"),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/(?:^|\s)hover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(
a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")};f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler,g=p.selector),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k<c.length;k++){l=A.exec(c[k])||[],m=l[1],n=(l[2]||"").split(".").sort(),s=f.event.special[m]||{},m=(g?s.delegateType:s.bindType)||m,s=f.event.special[m]||{},o=f.extend({type:m,origType:l[1],data:e,handler:d,guid:d.guid,selector:g,quick:g&&G(g),namespace:n.join(".")},p),r=j[m];if(!r){r=j[m]=[],r.delegateCount=0;if(!s.setup||s.setup.call(a,e,n,i)===!1)a.addEventListener?a.addEventListener(m,i,!1):a.attachEvent&&a.attachEvent("on"+m,i)}s.add&&(s.add.call(a,o),o.handler.guid||(o.handler.guid=d.guid)),g?r.splice(r.delegateCount++,0,o):r.push(o),f.event.global[m]=!0}a=null}},global:{},remove:function(a,b,c,d,e){var g=f.hasData(a)&&f._data(a),h,i,j,k,l,m,n,o,p,q,r,s;if(!!g&&!!(o=g.events)){b=f.trim(I(b||"")).split(" ");for(h=0;h<b.length;h++){i=A.exec(b[h])||[],j=k=i[1],l=i[2];if(!j){for(j in o)f.event.remove(a,j+b[h],c,d,!0);continue}p=f.event.special[j]||{},j=(d?p.delegateType:p.bindType)||j,r=o[j]||[],m=r.length,l=l?new RegExp("(^|\\.)"+l.split(".").sort().join("\\.(?:.*\\.)?")+"(\\.|$)"):null;for(n=0;n<r.length;n++)s=r[n],(e||k===s.origType)&&(!c||c.guid===s.guid)&&(!l||l.test(s.namespace))&&(!d||d===s.selector||d==="**"&&s.selector)&&(r.splice(n--,1),s.selector&&r.delegateCount--,p.remove&&p.remove.call(a,s));r.length===0&&m!==r.length&&((!p.teardown||p.teardown.call(a,l)===!1)&&f.removeEvent(a,j,g.handle),delete o[j])}f.isEmptyObject(o)&&(q=g.handle,q&&(q.elem=null),f.removeData(a,["events","handle"],!0))}},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,e,g){if(!e||e.nodeType!==3&&e.nodeType!==8){var h=c.type||c,i=[],j,k,l,m,n,o,p,q,r,s;if(E.test(h+f.event.triggered))return;h.indexOf("!")>=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;l<r.length&&!c.isPropagationStopped();l++)m=r[l][0],c.type=r[l][1],q=(f._data(m,"events")||{})[c.type]&&f._data(m,"handle"),q&&q.apply(m,d),q=o&&m[o],q&&f.acceptData(m)&&q.apply(m,d)===!1&&c.preventDefault();c.type=h,!g&&!c.isDefaultPrevented()&&(!p._default||p._default.apply(e.ownerDocument,d)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)&&o&&e[h]&&(h!=="focus"&&h!=="blur"||c.target.offsetWidth!==0)&&!f.isWindow(e)&&(n=e[o],n&&(e[o]=null),f.event.triggered=h,e[h](),f.event.triggered=b,n&&(e[o]=n));return c.result}},dispatch:function(c){c=f.event.fix(c||a.event);var d=(f._data(this,"events")||{})[c.type]||[],e=d.delegateCount,g=[].slice.call(arguments,0),h=!c.exclusive&&!c.namespace,i=f.event.special[c.type]||{},j=[],k,l,m,n,o,p,q,r,s,t,u;g[0]=c,c.delegateTarget=this;if(!i.preDispatch||i.preDispatch.call(this,c)!==!1){if(e&&(!c.button||c.type!=="click")){n=f(this),n.context=this.ownerDocument||this;for(m=c.target;m!=this;m=m.parentNode||this)if(m.disabled!==!0){p={},r=[],n[0]=m;for(k=0;k<e;k++)s=d[k],t=s.selector,p[t]===b&&(p[t]=s.quick?H(m,s.quick):n.is(t)),p[t]&&r.push(s);r.length&&j.push({elem:m,matches:r})}}d.length>e&&j.push({elem:this,matches:d.slice(e)});for(k=0;k<j.length&&!c.isPropagationStopped();k++){q=j[k],c.currentTarget=q.elem;for(l=0;l<q.matches.length&&!c.isImmediatePropagationStopped();l++){s=q.matches[l];if(h||!c.namespace&&!s.namespace||c.namespace_re&&c.namespace_re.test(s.namespace))c.data=s.data,c.handleObj=s,o=((f.event.special[s.origType]||{}).handle||s.handler).apply(q.elem,g),o!==b&&(c.result=o,o===!1&&(c.preventDefault(),c.stopPropagation()))}}i.postDispatch&&i.postDispatch.call(this,c);return c.result}},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode);return a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,d){var e,f,g,h=d.button,i=d.fromElement;a.pageX==null&&d.clientX!=null&&(e=a.target.ownerDocument||c,f=e.documentElement,g=e.body,a.pageX=d.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=d.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?d.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0);return a}},fix:function(a){if(a[f.expando])return a;var d,e,g=a,h=f.event.fixHooks[a.type]||{},i=h.props?this.props.concat(h.props):this.props;a=f.Event(g);for(d=i.length;d;)e=i[--d],a[e]=g[e];a.target||(a.target=g.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey===b&&(a.metaKey=a.ctrlKey);return h.filter?h.filter(a,g):a},special:{ready:{setup:f.bindReady},load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){f.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=f.extend(new f.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?f.event.trigger(e,null,b):f.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},f.event.handle=f.event.dispatch,f.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},f.Event=function(a,b){if(!(this instanceof f.Event))return new f.Event(a,b);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?K:J):this.type=a,b&&f.extend(this,b),this.timeStamp=a&&a.timeStamp||f.now(),this[f.expando]=!0},f.Event.prototype={preventDefault:function(){this.isDefaultPrevented=K;var a=this.originalEvent;!a||(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=K;var a=this.originalEvent;!a||(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=K,this.stopPropagation()},isDefaultPrevented:J,isPropagationStopped:J,isImmediatePropagationStopped:J},f.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){f.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c=this,d=a.relatedTarget,e=a.handleObj,g=e.selector,h;if(!d||d!==c&&!f.contains(c,d))a.type=e.origType,h=e.handler.apply(this,arguments),a.type=b;return h}}}),f.support.submitBubbles||(f.event.special.submit={setup:function(){if(f.nodeName(this,"form"))return!1;f.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=f.nodeName(c,"input")||f.nodeName(c,"button")?c.form:b;d&&!d._submit_attached&&(f.event.add(d,"submit._submit",function(a){a._submit_bubble=!0}),d._submit_attached=!0)})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&f.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){if(f.nodeName(this,"form"))return!1;f.event.remove(this,"._submit")}}),f.support.changeBubbles||(f.event.special.change={setup:function(){if(z.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")f.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),f.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1,f.event.simulate("change",this,a,!0))});return!1}f.event.add(this,"beforeactivate._change",function(a){var b=a.target;z.test(b.nodeName)&&!b._change_attached&&(f.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&f.event.simulate("change",this.parentNode,a,!0)}),b._change_attached=!0)})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){f.event.remove(this,"._change");return z.test(this.nodeName)}}),f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){var d=0,e=function(a){f.event.simulate(b,a.target,f.event.fix(a),!0)};f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.fn.extend({on:function(a,c,d,e,g){var h,i;if(typeof a=="object"){typeof c!="string"&&(d=d||c,c=b);for(i in a)this.on(i,c,d,a[i],g);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=J;else if(!e)return this;g===1&&(h=e,e=function(a){f().off(a);return h.apply(this,arguments)},e.guid=h.guid||(h.guid=f.guid++));return this.each(function(){f.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,c,d){if(a&&a.preventDefault&&a.handleObj){var e=a.handleObj;f(a.delegateTarget).off(e.namespace?e.origType+"."+e.namespace:e.origType,e.selector,e.handler);return this}if(typeof a=="object"){for(var g in a)this.off(g,c,a[g]);return this}if(c===!1||typeof c=="function")d=c,c=b;d===!1&&(d=J);return this.each(function(){f.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){f(this.context).on(a,this.selector,b,c);return this},die:function(a,b){f(this.context).off(a,this.selector||"**",b);return this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length==1?this.off(a,"**"):this.off(b,a,c)},trigger:function(a,b){return this.each(function(){f.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return f.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||f.guid++,d=0,e=function(c){var e=(f._data(this,"lastToggle"+a.guid)||0)%d;f._data(this,"lastToggle"+a.guid,e+1),c.preventDefault();return b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),f.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){f.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}if(j.nodeType===1){g||(j[d]=c,j.sizset=h);if(typeof b!="string"){if(j===b){k=!0;break}}else if(m.filter(b,[j]).length>0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}j.nodeType===1&&!g&&(j[d]=c,j.sizset=h);if(j.nodeName.toLowerCase()===b){k=j;break}j=j[a]}e[h]=k}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},m.matches=function(a,b){return m(a,null,null,b)},m.matchesSelector=function(a,b){return m(b,null,null,[a]).length>0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e<f;e++){h=o.order[e];if(g=o.leftMatch[h].exec(a)){i=g[1],g.splice(1,1);if(i.substr(i.length-1)!=="\\"){g[1]=(g[1]||"").replace(j,""),d=o.find[h](g,b,c);if(d!=null){a=a.replace(o.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},m.filter=function(a,c,d,e){var f,g,h,i,j,k,l,n,p,q=a,r=[],s=c,t=c&&c[0]&&m.isXML(c[0]);while(a&&c.length){for(h in o.filter)if((f=o.leftMatch[h].exec(a))!=null&&f[2]){k=o.filter[h],l=f[1],g=!1,f.splice(1,1);if(l.substr(l.length-1)==="\\")continue;s===r&&(r=[]);if(o.preFilter[h]){f=o.preFilter[h](f,s,d,r,e,t);if(!f)g=i=!0;else if(f===!0)continue}if(f)for(n=0;(j=s[n])!=null;n++)j&&(i=k(j,f,n,s),p=e^i,d&&i!=null?p?g=!0:s[n]=!1:p&&(r.push(j),g=!0));if(i!==b){d||(s=r),a=a.replace(o.match[h],"");if(!g)return[];break}}if(a===q)if(g==null)m.error(a);else break;q=a}return s},m.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)};var n=m.getText=function(a){var b,c,d=a.nodeType,e="";if(d){if(d===1||d===9||d===11){if(typeof a.textContent=="string")return a.textContent;if(typeof a.innerText=="string")return a.innerText.replace(k,"");for(a=a.firstChild;a;a=a.nextSibling)e+=n(a)}else if(d===3||d===4)return a.nodeValue}else for(b=0;c=a[b];b++)c.nodeType!==8&&(e+=n(c));return e},o=m.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b=="string",d=c&&!l.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&m.filter(b,a,!0)},">":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&m.filter(b,a,!0)}},"":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("parentNode",b,f,a,d,c)},"~":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("previousSibling",b,f,a,d,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(j,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}m.error(e)},CHILD:function(a,b){var c,e,f,g,h,i,j,k=b[1],l=a;switch(k){case"only":case"first":while(l=l.previousSibling)if(l.nodeType===1)return!1;if(k==="first")return!0;l=a;case"last":while(l=l.nextSibling)if(l.nodeType===1)return!1;return!0;case"nth":c=b[2],e=b[3];if(c===1&&e===0)return!0;f=b[0],g=a.parentNode;if(g&&(g[d]!==f||!a.nodeIndex)){i=0;for(l=g.firstChild;l;l=l.nextSibling)l.nodeType===1&&(l.nodeIndex=++i);g[d]=f}j=a.nodeIndex-e;return c===0?j===0:j%c===0&&j/c>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));o.match.globalPOS=p;var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c<e;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var u,v;c.documentElement.compareDocumentPosition?u=function(a,b){if(a===b){h=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(u=function(a,b){if(a===b){h=!0;return 0}if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,i=b.parentNode,j=g;if(g===i)return v(a,b);if(!g)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return v(e[k],f[k]);return k===c?v(a,f[k],-1):v(e[k],b,1)},v=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h<i;h++)m(a,g[h],e,c);return m.filter(f,e)};m.attr=f.attr,m.selectors.attrMap={},f.find=m,f.expr=m.selectors,f.expr[":"]=f.expr.filters,f.unique=m.uniqueSort,f.text=m.getText,f.isXMLDoc=m.isXML,f.contains=m.contains}();var L=/Until$/,M=/^(?:parents|prevUntil|prevAll)/,N=/,/,O=/^.[^:#\[\.,]*$/,P=Array.prototype.slice,Q=f.expr.match.globalPOS,R={children:!0,contents:!0,next:!0,prev:!0};f.fn.extend({find:function(a){var b=this,c,d;if(typeof a!="string")return f(a).filter(function(){for(c=0,d=b.length;c<d;c++)if(f.contains(b[c],this))return!0});var e=this.pushStack("","find",a),g,h,i;for(c=0,d=this.length;c<d;c++){g=e.length,f.find(a,this[c],e);if(c>0)for(h=g;h<e.length;h++)for(i=0;i<g;i++)if(e[i]===e[h]){e.splice(h--,1);break}}return e},has:function(a){var b=f(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(f.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(T(this,a,!1),"not",a)},filter:function(a){return this.pushStack(T(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?Q.test(a)?f(a,this.context).index(this[0])>=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d<a.length;d++)f(g).is(a[d])&&c.push({selector:a[d],elem:g,level:h});g=g.parentNode,h++}return c}var i=Q.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d<e;d++){g=this[d];while(g){if(i?i.index(g)>-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/<tbody/i,_=/<|&#?\w+;/,ba=/<(?:script|style)/i,bb=/<(?:script|object|embed|option|style)/i,bc=new RegExp("<(?:"+V+")[\\s/>]","i"),bd=/checked\s*(?:[^=]|=\s*.checked.)/i,be=/\/(java|ecma)script/i,bf=/^\s*<!(?:\[CDATA\[|\-\-)/,bg={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div<div>","</div>"]),f.fn.extend({text:function(a){return f.access(this,function(a){return a===b?f.text(this):this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f
.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){return f.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1></$2>");try{for(;d<e;d++)c=this[d]||{},c.nodeType===1&&(f.cleanData(c.getElementsByTagName("*")),c.innerHTML=a);c=0}catch(g){}}c&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(f.isFunction(a))return this.each(function(b){var c=f(this),d=c.html();c.replaceWith(a.call(this,b,d))});typeof a!="string"&&(a=f(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;f(this).remove(),b?f(b).before(a):f(c).append(a)})}return this.length?this.pushStack(f(f.isFunction(a)?a():a),"replaceWith",a):this},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){var e,g,h,i,j=a[0],k=[];if(!f.support.checkClone&&arguments.length===3&&typeof j=="string"&&bd.test(j))return this.each(function(){f(this).domManip(a,c,d,!0)});if(f.isFunction(j))return this.each(function(e){var g=f(this);a[0]=j.call(this,e,c?g.html():b),g.domManip(a,c,d)});if(this[0]){i=j&&j.parentNode,f.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?e={fragment:i}:e=f.buildFragment(a,this,k),h=e.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&f.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)d.call(c?bi(this[l],g):this[l],e.cacheable||m>1&&l<n?f.clone(h,!0,!0):h)}k.length&&f.each(k,function(a,b){b.src?f.ajax({type:"GET",global:!1,url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bf,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)})}return this}}),f.buildFragment=function(a,b,d){var e,g,h,i,j=a[0];b&&b[0]&&(i=b[0].ownerDocument||b[0]),i.createDocumentFragment||(i=c),a.length===1&&typeof j=="string"&&j.length<512&&i===c&&j.charAt(0)==="<"&&!bb.test(j)&&(f.support.checkClone||!bd.test(j))&&(f.support.html5Clone||!bc.test(j))&&(g=!0,h=f.fragments[j],h&&h!==1&&(e=h)),e||(e=i.createDocumentFragment(),f.clean(a,i,e,d)),g&&(f.fragments[j]=h?e:1);return{fragment:e,cacheable:g}},f.fragments={},f.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){f.fn[a]=function(c){var d=[],e=f(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&e.length===1){e[b](this[0]);return this}for(var h=0,i=e.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||f.isXMLDoc(a)||!bc.test("<"+a.nodeName+">")?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g,h,i,j=[];b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);for(var k=0,l;(l=a[k])!=null;k++){typeof l=="number"&&(l+="");if(!l)continue;if(typeof l=="string")if(!_.test(l))l=b.createTextNode(l);else{l=l.replace(Y,"<$1></$2>");var m=(Z.exec(l)||["",""])[1].toLowerCase(),n=bg[m]||bg._default,o=n[0],p=b.createElement("div"),q=bh.childNodes,r;b===c?bh.appendChild(p):U(b).appendChild(p),p.innerHTML=n[1]+l+n[2];while(o--)p=p.lastChild;if(!f.support.tbody){var s=$.test(l),t=m==="table"&&!s?p.firstChild&&p.firstChild.childNodes:n[1]==="<table>"&&!s?p.childNodes:[];for(i=t.length-1;i>=0;--i)f.nodeName(t[i],"tbody")&&!t[i].childNodes.length&&t[i].parentNode.removeChild(t[i])}!f.support.leadingWhitespace&&X.test(l)&&p.insertBefore(b.createTextNode(X.exec(l)[0]),p.firstChild),l=p.childNodes,p&&(p.parentNode.removeChild(p),q.length>0&&(r=q[q.length-1],r&&r.parentNode&&r.parentNode.removeChild(r)))}var u;if(!f.support.appendChecked)if(l[0]&&typeof (u=l.length)=="number")for(i=0;i<u;i++)bn(l[i]);else bn(l);l.nodeType?j.push(l):j=f.merge(j,l)}if(d){g=function(a){return!a.type||be.test(a.type)};for(k=0;j[k];k++){h=j[k];if(e&&f.nodeName(h,"script")&&(!h.type||be.test(h.type)))e.push(h.parentNode?h.parentNode.removeChild(h):h);else{if(h.nodeType===1){var v=f.grep(h.getElementsByTagName("script"),g);j.splice.apply(j,[k+1,0].concat(v))}d.appendChild(h)}}}return j},cleanData:function(a){var b,c,d=f.cache,e=f.event.special,g=f.support.deleteExpando;for(var h=0,i;(i=a[h])!=null;h++){if(i.nodeName&&f.noData[i.nodeName.toLowerCase()])continue;c=i[f.expando];if(c){b=d[c];if(b&&b.events){for(var j in b.events)e[j]?f.event.remove(i,j):f.removeEvent(i,j,b.handle);b.handle&&(b.handle.elem=null)}g?delete i[f.expando]:i.removeAttribute&&i.removeAttribute(f.expando),delete d[c]}}}});var bp=/alpha\([^)]*\)/i,bq=/opacity=([^)]*)/,br=/([A-Z]|^ms)/g,bs=/^[\-+]?(?:\d*\.)?\d+$/i,bt=/^-?(?:\d*\.)?\d+(?!px)[^\d\s]+$/i,bu=/^([\-+])=([\-+.\de]+)/,bv=/^margin/,bw={position:"absolute",visibility:"hidden",display:"block"},bx=["Top","Right","Bottom","Left"],by,bz,bA;f.fn.css=function(a,c){return f.access(this,function(a,c,d){return d!==b?f.style(a,c,d):f.css(a,c)},a,c,arguments.length>1)},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=by(a,"opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d,h==="string"&&(g=bu.exec(d))&&(d=+(g[1]+1)*+g[2]+parseFloat(f.css(a,c)),h="number");if(d==null||h==="number"&&isNaN(d))return;h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(by)return by(a,c)},swap:function(a,b,c){var d={},e,f;for(f in b)d[f]=a.style[f],a.style[f]=b[f];e=c.call(a);for(f in b)a.style[f]=d[f];return e}}),f.curCSS=f.css,c.defaultView&&c.defaultView.getComputedStyle&&(bz=function(a,b){var c,d,e,g,h=a.style;b=b.replace(br,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b))),!f.support.pixelMargin&&e&&bv.test(b)&&bt.test(c)&&(g=h.width,h.width=c,c=e.width,h.width=g);return c}),c.documentElement.currentStyle&&(bA=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f==null&&g&&(e=g[b])&&(f=e),bt.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),by=bz||bA,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth!==0?bB(a,b,d):f.swap(a,bw,function(){return bB(a,b,d)})},set:function(a,b){return bs.test(b)?b+"px":b}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bq.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bp,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bp.test(g)?g.replace(bp,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){return f.swap(a,{display:"inline-block"},function(){return b?by(a,"margin-right"):a.style.marginRight})}})}),f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)}),f.each({margin:"",padding:"",border:"Width"},function(a,b){f.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bx[d]+b]=e[d]||e[d-2]||e[0];return f}}});var bC=/%20/g,bD=/\[\]$/,bE=/\r?\n/g,bF=/#.*$/,bG=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bH=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bI=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bJ=/^(?:GET|HEAD)$/,bK=/^\/\//,bL=/\?/,bM=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bN=/^(?:select|textarea)/i,bO=/\s+/,bP=/([?&])_=[^&]*/,bQ=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bR=f.fn.load,bS={},bT={},bU,bV,bW=["*/"]+["*"];try{bU=e.href}catch(bX){bU=c.createElement("a"),bU.href="",bU=bU.href}bV=bQ.exec(bU.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bR)return bR.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("<div>").append(c.replace(bM,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bN.test(this.nodeName)||bH.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bE,"\r\n")}}):{name:b.name,value:c.replace(bE,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b$(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b$(a,b);return a},ajaxSettings:{url:bU,isLocal:bI.test(bV[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bW},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bY(bS),ajaxTransport:bY(bT),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?ca(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cb(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bG.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bF,"").replace(bK,bV[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bO),d.crossDomain==null&&(r=bQ.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bV[1]&&r[2]==bV[2]&&(r[3]||(r[1]==="http:"?80:443))==(bV[3]||(bV[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),bZ(bS,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bJ.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bL.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bP,"$1_="+x);d.url=y+(y===d.url?(bL.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bW+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=bZ(bT,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)b_(g,a[g],c,e);return d.join("&").replace(bC,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cc=f.now(),cd=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cc++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=typeof b.data=="string"&&/^application\/x\-www\-form\-urlencoded/.test(b.contentType);if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(cd.test(b.url)||e&&cd.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(cd,l),b.url===j&&(e&&(k=k.replace(cd,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var ce=a.ActiveXObject?function(){for(var a in cg)cg[a](0,1)}:!1,cf=0,cg;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ch()||ci()}:ch,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,ce&&delete cg[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n);try{m.text=h.responseText}catch(a){}try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cf,ce&&(cg||(cg={},f(a).unload(ce)),cg[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cj={},ck,cl,cm=/^(?:toggle|show|hide)$/,cn=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,co,cp=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cq;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(ct("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)d=this[g],d.style&&(e=d.style.display,!f._data(d,"olddisplay")&&e==="none"&&(e=d.style.display=""),(e===""&&f.css(d,"display")==="none"||!f.contains(d.ownerDocument.documentElement,d))&&f._data(d,"olddisplay",cu(d.nodeName)));for(g=0;g<h;g++){d=this[g];if(d.style){e=d.style.display;if(e===""||e==="none")d.style.display=f._data(d,"olddisplay")||""}}return this},hide:function(a,b,c){if(a||a===0)return this.animate(ct("hide",3),a,b,c);var d,e,g=0,h=this.length;for(;g<h;g++)d=this[g],d.style&&(e=f.css(d,"display"),e!=="none"&&!f._data(d,"olddisplay")&&f._data(d,"olddisplay",e));for(g=0;g<h;g++)this[g].style&&(this[g].style.display="none");return this},_toggle:f.fn.toggle,toggle:function(a,b,c){var d=typeof a=="boolean";f.isFunction(a)&&f.isFunction(b)?this._toggle.apply(this,arguments):a==null||d?this.each(function(){var b=d?a:f(this).is(":hidden");f(this)[b?"show":"hide"]()}):this.animate(ct("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){function g(){e.queue===!1&&f._mark(this);var b=f.extend({},e),c=this.nodeType===1,d=c&&f(this).is(":hidden"),g,h,i,j,k,l,m,n,o,p,q;b.animatedProperties={};for(i in a){g=f.camelCase(i),i!==g&&(a[g]=a[i],delete a[i]);if((k=f.cssHooks[g])&&"expand"in k){l=k.expand(a[g]),delete a[g];for(i in l)i in a||(a[i]=l[i])}}for(g in a){h=a[g],f.isArray(h)?(b.animatedProperties[g]=h[1],h=a[g]=h[0]):b.animatedProperties[g]=b.specialEasing&&b.specialEasing[g]||b.easing||"swing";if(h==="hide"&&d||h==="show"&&!d)return b.complete.call(this);c&&(g==="height"||g==="width")&&(b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY],f.css(this,"display")==="inline"&&f.css(this,"float")==="none"&&(!f.support.inlineBlockNeedsLayout||cu(this.nodeName)==="inline"?this.style.display="inline-block":this.style.zoom=1))}b.overflow!=null&&(this.style.overflow="hidden");for(i in a)j=new f.fx(this,b,i),h=a[i],cm.test(h)?(q=f._data(this,"toggle"+i)||(h==="toggle"?d?"show":"hide":0),q?(f._data(this,"toggle"+i,q==="show"?"hide":"show"),j[q]()):j[h]()):(m=cn.exec(h),n=j.cur(),m?(o=parseFloat(m[2]),p=m[3]||(f.cssNumber[i]?"":"px"),p!=="px"&&(f.style(this,i,(o||1)+p),n=(o||1)/j.cur()*n,f.style(this,i,n+p)),m[1]&&(o=(m[1]==="-="?-1:1)*o+n),j.custom(n,o,p)):j.custom(n,h,""));return!0}var e=f.speed(b,c,d);if(f.isEmptyObject(a))return this.each(e.complete,[!1]);a=f.extend({},a);return e.queue===!1?this.each(g):this.queue(e.queue,g)},stop:function(a,c,d){typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]);return this.each(function(){function h(a,b,c){var e=b[c];f.removeData(a,c,!0),e.stop(d)}var b,c=!1,e=f.timers,g=f._data(this);d||f._unmark(!0,this);if(a==null)for(b in g)g[b]&&g[b].stop&&b.indexOf(".run")===b.length-4&&h(this,g,b);else g[b=a+".run"]&&g[b].stop&&h(this,g,b);for(b=e.length;b--;)e[b].elem===this&&(a==null||e[b].queue===a)&&(d?e[b](!0):e[b].saveState(),c=!0,e.splice(b,1));(!d||!c)&&f.dequeue(this,a)})}}),f.each({slideDown:ct("show",1),slideUp:ct("hide",1),slideToggle:ct("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){f.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),f.extend({speed:function(a,b,c){var d=a&&typeof a=="object"?f.extend({},a):{complete:c||!c&&b||f.isFunction(a)&&a,duration:a,easing:c&&b||b&&!f.isFunction(b)&&b};d.duration=f.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in f.fx.speeds?f.fx.speeds[d.duration]:f.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";d.old=d.complete,d.complete=function(a){f.isFunction(d.old)&&d.old.call(this),d.queue?f.dequeue(this,d.queue):a!==!1&&f._unmark(this)};return d},easing:{linear:function(a){return a},swing:function(a){return-Math.cos(a*Math.PI)/2+.5}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig=b.orig||{}}}),f.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(f.fx.step[this.prop]||f.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=f.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,c,d){function h(a){return e.step(a)}var e=this,g=f.fx;this.startTime=cq||cr(),this.end=c,this.now=this.start=a,this.pos=this.state=0,this.unit=d||this.unit||(f.cssNumber[this.prop]?"":"px"),h.queue=this.options.queue,h.elem=this.elem,h.saveState=function(){f._data(e.elem,"fxshow"+e.prop)===b&&(e.options.hide?f._data(e.elem,"fxshow"+e.prop,e.start):e.options.show&&f._data(e.elem,"fxshow"+e.prop,e.end))},h()&&f.timers.push(h)&&!co&&(co=setInterval(g.tick,g.interval))},show:function(){var a=f._data(this.elem,"fxshow"+this.prop);this.options.orig[this.prop]=a||f.style(this.elem,this.prop),this.options.show=!0,a!==b?this.custom(this.cur(),a):this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),f(this.elem).show()},hide:function(){this.options.orig[this.prop]=f._data(this.elem,"fxshow"+this.prop)||f.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b,c,d,e=cq||cr(),g=!0,h=this.elem,i=this.options;if(a||e>=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||f.fx.stop()},interval:13,stop:function(){clearInterval(co),co=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){f.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=a.now+a.unit:a.elem[a.prop]=a.now}}}),f.each(cp.concat.apply([],cp),function(a,b){b.indexOf("margin")&&(f.fx.step[b]=function(a){f.style(a.elem,b,Math.max(0,a.now)+a.unit)})}),f.expr&&f.expr.filters&&(f.expr.filters.animated=function(a){return f.grep(f.timers,function(b){return a===b.elem}).length});var cv,cw=/^t(?:able|d|h)$/i,cx=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?cv=function(a,b,c,d){try{d=a.getBoundingClientRect()}catch(e){}if(!d||!f.contains(c,a))return d?{top:d.top,left:d.left}:{top:0,left:0};var g=b.body,h=cy(b),i=c.clientTop||g.clientTop||0,j=c.clientLeft||g.clientLeft||0,k=h.pageYOffset||f.support.boxModel&&c.scrollTop||g.scrollTop,l=h.pageXOffset||f.support.boxModel&&c.scrollLeft||g.scrollLeft,m=d.top+k-i,n=d.left+l-j;return{top:m,left:n}}:cv=function(a,b,c){var d,e=a.offsetParent,g=a,h=b.body,i=b.defaultView,j=i?i.getComputedStyle(a,null):a.currentStyle,k=a.offsetTop,l=a.offsetLeft;while((a=a.parentNode)&&a!==h&&a!==c){if(f.support.fixedPosition&&j.position==="fixed")break;d=i?i.getComputedStyle(a,null):a.currentStyle,k-=a.scrollTop,l-=a.scrollLeft,a===e&&(k+=a.offsetTop,l+=a.offsetLeft,f.support.doesNotAddBorder&&(!f.support.doesAddBorderForTableAndCells||!cw.test(a.nodeName))&&(k+=parseFloat(d.borderTopWidth)||0,l+=parseFloat(d.borderLeftWidth)||0),g=e,e=a.offsetParent),f.support.subtractsBorderForOverflowNotVisible&&d.overflow!=="visible"&&(k+=parseFloat(d.borderTopWidth)||0,l+=parseFloat(d.borderLeftWidth)||0),j=d}if(j.position==="relative"||j.position==="static")k+=h.offsetTop,l+=h.offsetLeft;f.support.fixedPosition&&j.position==="fixed"&&(k+=Math.max(c.scrollTop,h.scrollTop),l+=Math.max(c.scrollLeft,h.scrollLeft));return{top:k,left:l}},f.fn.offset=function(a){if(arguments.length)return a===b?this:this.each(function(b){f.offset.setOffset(this,a,b)});var c=this[0],d=c&&c.ownerDocument;if(!d)return null;if(c===d.body)return f.offset.bodyOffset(c);return cv(c,d,d.documentElement)},f.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);f.fn[a]=function(e){return f.access(this,function(a,e,g){var h=cy(a);if(g===b)return h?c in h?h[c]:f.support.boxModel&&h.document.documentElement[e]||h.document.body[e]:a[e];h?h.scrollTo(d?f(h).scrollLeft():g,d?g:f(h).scrollTop()):a[e]=g},a,e,arguments.length,null)}}),f.each({Height:"height",Width:"width"},function(a,c){var d="client"+a,e="scroll"+a,g="offset"+a;f.fn["inner"+a]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,c,"padding")):this[c]():null},f.fn["outer"+a]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,c,a?"margin":"border")):this[c]():null},f.fn[c]=function(a){return f.access(this,function(a,c,h){var i,j,k,l;if(f.isWindow(a)){i=a.document,j=i.documentElement[d];return f.support.boxModel&&j||i.body&&i.body[d]||j}if(a.nodeType===9){i=a.documentElement;if(i[d]>=i[e])return i[d];return Math.max(a.body[e],i[e],a.body[g],i[g])}if(h===b){k=f.css(a,c),l=parseFloat(k);return f.isNumeric(l)?l:k}f(a).css(c,h)},c,a,arguments.length,null)}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window);admin/manage_header_menu_color.php0000644000352000025440000001051414373672215020021 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
if (isset($_POST['Submit'])) {
@extract($_POST);
			    $sql = "update tbl_site_color set 
				           site_color_menu_color='$site_color_menu_color',
		                   site_color_menu_hover_color='$site_color_menu_hover_color'
						   where 1 and site_color_admin_id='1'";
						   db_query($sql);				
		set_session_msg("Menu color updated successfully !");
		header("Location: manage_header_menu_color.php");
		exit;
    }
	
if (isset($_POST['ChangeDefault'])) {
			    $sql = "update tbl_site_color set 
				           site_color_menu_color='',
		                   site_color_menu_hover_color=''
						   where 1 and site_color_admin_id='1'";
						   db_query($sql);				
		set_session_msg("Menu color change to default successfully !");
		header("Location: manage_header_menu_color.php");
		exit;
    }	
	$result = db_query("select site_color_menu_color,site_color_menu_hover_color from tbl_site_color where 1");
	if ($line_raw = mysqli_fetch_array($result)) {
		@extract($line_raw);
		}
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="jscolor.js"></script>
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead"> Add/Edit Header Menu Color</div></td>
              </tr>
            </table>
            <div><strong class="msg" style="margin-left:500px; margin-bottom:5px;">
              <?=display_sess_msg()?>
              </strong></div>
            <table width="45%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm" style="border:1px outset #fff; margin-top:5px; margin-bottom:10px;">
                <tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Current Menu Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="text" class="color" style="border:none;width:260px; height:25px;" disabled="disabled" value="<?=$line_raw['site_color_menu_color']?>"></td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Current Menu Hover Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="text" class="color" disabled="disabled" style="border:none;width:260px; height:25px;" value="<?=$line_raw['site_color_menu_hover_color']?>"></td>
                </tr>
                
              </table>
            <form enctype="multipart/form-data" action="" method="post">
              <table width="45%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm" style="border:1px outset #fff; margin-top:45px; padding-top:20px; padding-bottom:20px; margin-bottom:10px;">
			  <tr>
                  <td class="tdLabel" style="padding:4px; font-weight:bold; color:#FF0000" align="center" colspan="2">&raquo; Click on textbox to open the color picker.</td>
                   
                </tr>
				
                <tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Select Menu Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="color" name="site_color_menu_color" style="width:260px; height:25px;"></td>
                </tr>
				<tr>
                  <td class="tdLabel" style="padding:8px; font-weight:bold;" align="right">Select Menu Hover Color</td>
                   <td class="tdLabel" style="padding:8px;" valign="bottom" align="left"><input type="color" name="site_color_menu_hover_color" style="width:260px; height:25px;"></td>
                </tr>
                <tr>
                  <td class="tdLabel" colspan="2" style="padding:8px;">
				  <span style="margin-left:185px;"><input type="submit" name="Submit" style="width:100px; font-weight:bold; font-size:13px; height:29px;"></span>
				  <span style="margin-left:10px;"><input type="submit" name="ChangeDefault" value="Set as default" style="width:145px; font-weight:bold; font-size:13px; height:29px;"></span>
                  </td>
                </tr>
              </table>
            </form>
            <?php include("bottom.inc.php");?>
admin/enquiry_list.php0000644000352000025440000001566514373670504015601 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
if(is_post_back()) {
$arr_ids = $_REQUEST['arr_ids'];
if(is_array($arr_ids)) {
$str_ids = implode(',', $arr_ids);
if(isset($_REQUEST['Delete']) || isset($_REQUEST['Delete_x']) ) {
db_query("delete from tbl_enquiry where enquiry_id in ($str_ids)");
} 
}
header("Location: ".$_SERVER['HTTP_REFERER']);
exit;
}

$start = intval($start);
$pagesize = intval($pagesize)==0?$pagesize=DEF_PAGE_SIZE:$pagesize;

$order_by == '' ? $order_by = 'enquiry_id	' : true;
$order_by2 == '' ? $order_by2 = 'desc' : true;

$sql = "select * from tbl_enquiry where 1";
$sql = apply_filter($sql, $enquiry_name, 'like','enquiry_name');
$sql .= " order by $order_by $order_by2 ";
$sql .= " limit $start, $pagesize ";

$pager = new midas_pager_sql($sql, $pagesize, $start);
if($pager->total_records) {
$result = db_query($sql);
}
?>
<link href="styles.css" rel="stylesheet" type="text/css">
<script language="JavaScript" type="text/javascript" src="../includes/general.js"></script>
<? include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead"> Enquiry List </div></td>
              </tr>
            </table>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="content"><form method="get" name="form2" id="form2" onsubmit="return confirm_submit(this)">
                    <br />
                    <table  border="0" width="300px;" align="center" cellpadding="3" cellspacing="0" class="tableSearch">
                      <tr align="center">
                        <th colspan="2">Search</th>
                      </tr>
                      <tr>
                        <td class="tdLabel"> Name</td>
                        <td><input name="enquiry_name" type="text" value="<?=$enquiry_name?>" size="40" /></td>
                      </tr>
                      <tr>
                        <td>&nbsp;</td>
                        <td><input name="pagesize" type="hidden" id="pagesize" value="<?=$pagesize?>" />
                          <input type="image" name="imageField" src="images/buttons/search.gif" />
						   <?php if($_REQUEST['enquiry_name']){ ?>
                          <a href="enquiry_list.php"><span style="vertical-align:top; margin-left:5px; font-size:12px; color:#0000CC; font-weight:bold; font-family:Arial, Helvetica, sans-serif;">View All</span></a>
                          <? } ?>
						  </td>
                      </tr>
                    </table>
                  </form>
                  <br />
                  <div align="right"> </div>
                  <? if($pager->total_records==0) {?>
                  <div class="msg">Sorry, no records found.</div>
                  <? } else { ?>
                  <div align="right">
                    <? $pager->show_displaying()?>
                  </div>
                  <div>Records Per Page:
                    <?=pagesize_dropdown('pagesize', $pagesize);?>
                  </div>
                  <form method="post" name="form1" id="form1" onsubmit="confirm_submit(this)">
                    <table width="100%"  border="0" cellpadding="0" cellspacing="1" class="tableList">
                      <tr>
                        <th width="15%" nowrap="nowrap" style="font-size:12px; padding:9px;"> Name</th>
                        <th width="15%" nowrap="nowrap">Email-id</th>
                        <th width="10%" nowrap="nowrap">Mobile</th>
                        <th width="25%" nowrap="nowrap"> Message </th>
                        <th width="8%" nowrap="nowrap"> Date
                          <?=sort_arrows('enquiry_add_date')?></th>
                         <th width="7%" nowrap="nowrap"> Source</th>
                        <th width="4%"><input name="check_all" type="checkbox" id="check_all" value="1" onclick="checkall(this.form)" /></th>
                      </tr>
                      <?
while ($line_raw = mysqli_fetch_array($result)) {
$line = ms_display_value($line_raw);
@extract($line);

$css = ($css=='trOdd')?'trEven':'trOdd';
?>
                      <tr class="<?=$css?>" valign="top">
                        <td nowrap="nowrap" align="center" style="font-size:12px;">
						<?=$enquiry_name?><br /><br />
						<?php if(!empty($enquiry_comp_name)){ echo "<b style='color:green'>Company : </b>".$enquiry_comp_name;} ?>
						</td>
                        <td nowrap="nowrap" align="center" style="font-size:12px;">
						<?=$enquiry_email?>
						<br /><br />
						<?php if(!empty($enquiry_address)){ echo "<b style='color:green'>Address : </b>".$enquiry_address;} ?>
						</td>
                        <td nowrap="nowrap" align="center" style="font-size:12px;"><?=$enquiry_mobile?></td>
                        <td align="center" style="font-size:12px;">
						<?=$enquiry_detail?><br /><br />
						<?php if(!empty($enquiry_subject)){ echo "<b style='color:green'>Subject : </b>".$enquiry_subject;} ?>
						</td>
                        <td nowrap="nowrap" align="center" style="font-size:12px;"><?=$enquiry_add_date?>
                          <?php /*?><br /><a href='javascript:;' onClick="window.open('message-reply.php?reply_id=<?=$enquiry_id?>','_blank','toolbar=no,menubar=no,scrollbars=yes,resizable=1,height=650,width=650');"><strong>Reply</strong></a><?php */?></td>
                        <td nowrap="nowrap" align="center" style="font-size:12px;"><strong><?=$enquiry_source?></strong></td>
                        <td align="center"><input name="arr_ids[]" type="checkbox" id="arr_ids[]" value="<?=$enquiry_id?>" /></td>
                      </tr>
                      <? } ?>
                    </table>
                     <?php //if($_SESSION['sess_admin_type']=='Admin'){ ?>
                    <table width="100%" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td align="right" style="padding:2px">
                          <input type="submit" name="Delete" value="Delete" class="button" onClick="return select_chk()" style="font-size:12px; font-weight:bold; height:26px; background-color:#CA0000; border-radius:4px; cursor:pointer; width:100px;"/>
                        </td>
                      </tr>
                    </table>
                    <? //} ?>
                  </form>
                  <? $pager->show_pager();?>
                  <? } ?>
                </td>
              </tr>
            </table>
            <? include("bottom.inc.php");?>
<script language="javascript">
function select_chk(){
			var chks = document.getElementsByName('arr_ids[]');
			var hasChecked = false;
			for (var i = 0; i < chks.length; i++){
			if (chks[i].checked){
				hasChecked = true;
				break;
				}
			}
			if (hasChecked == false){
			alert("Please Select At Least One.");
			return false;
			}
}
</script>
admin/news_f.php0000644000352000025440000001365712453325224014323 0ustar  thediannthediann<?php
require_once("../includes/dbsmain.inc.php");
ob_start();
$press_rel_id=$_REQUEST['press_rel_id'];
if(is_post_back()) {
if(!empty($press_rel_id)){
$ednewssql="update tbl_press_realeases set 
				press_rel_name='$press_rel_name',
				press_rel_type='$press_rel_type',
				press_rel_url='$press_rel_url',
				press_headline_url='$press_headline_url',
				press_rel_desc='$press_rel_desc',
				press_rel_status='$press_rel_status',
				press_rel_add_date=now()
				where press_rel_id='$_REQUEST[press_rel_id]'";
				db_query($ednewssql);
				set_session_msg("News Updated Successfully !");
				header("location:manage_news.php");	
				exit;		
}else{
$sql="insert into tbl_press_realeases set 
				press_rel_name='$press_rel_name',
				press_rel_type='$press_rel_type',
				press_rel_url='$press_rel_url',
				press_headline_url='$press_headline_url',
				press_rel_status='$press_rel_status',
				press_rel_desc='$press_rel_desc',
				press_rel_add_date=now()";
				db_query($sql);
				set_session_msg("News Added Successfully !");
				header("location:manage_news.php");	
				exit;		
    }
}
if($press_rel_id!='') {
	$result = db_query("select * from tbl_press_realeases where press_rel_id = '$press_rel_id'");
	if ($line_raw = mysql_fetch_array($result)) {
	 @extract($line_raw);
	}
}
?>
<script src="ckeditor/ckeditor.js"></script>
<style>
p.fck {
    width: 90%;
	float:left;
    margin: 0 auto;
 }
</style>
<link href="styles.css" rel="stylesheet" type="text/css">
<?php include("top.inc.php");?>
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td id="pageHead"><div id="txtPageHead">Add/Edit News</div></td>
              </tr>
            </table>
            <div align="right"><a href="manage_news.php" style="font-size:12px; font-weight:bold; margin-right:15px;">Back to News List</a>&nbsp;</div>
            <form name="form1" method="post" enctype="multipart/form-data">
              <table width="95%"  border="0" align="center" cellpadding="0" cellspacing="0" class="tableForm">
                <tr>
                  <td width="20%" class="tdLabel">&nbsp;</td>
                  <td width="80%" class="tdData" style="padding-left:7px;"><strong><font color="red">
                    <?=display_sess_msg();?>
                    </font></strong></td>
                </tr>
                <tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Media Name:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><input name="press_rel_name" style="width:350px; height:28px;" type="text" id="press_rel_name"  value="<?=$press_rel_name?>" class="textfield"  ></td>
                </tr>
                                
                <tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Media Type.:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><select class="gcl bd6" name="press_rel_type" id="press_rel_type" style="width:350px; height:28px;">
                  <option value="Print Media" selected="selected">Print Media</option>
                  <option value="Electronic Media" <?php if($press_rel_type=='Electronic Media'){ ?> selected="selected" <? } ?>>Electronic Media</option>
                </select></td>
                </tr>
				
				<tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">Headline:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><input name="press_headline_url" style="width:350px; height:28px;" type="text" id="press_headline_url"  value="<?=$press_headline_url?>" class="textfield"  ></td>
                </tr>
                
				<tr>
                  <td width="20%" class="tdLabel" style="font-size:12px; padding:7px;">News Coverage URL:</td>
                  <td width="80%" class="tdData" style="font-size:12px; padding:7px;"><input name="press_rel_url" style="width:350px; height:28px;" type="text" id="press_rel_url"  value="<?=$press_rel_url?>" class="textfield"  ></td>
                </tr>
				
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">News Coverage Detail:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><p class="fck">
                      <textarea cols="80" id="editor1" name="press_rel_desc" rows="10"><?=$press_rel_desc?>
</textarea>
                      <script>

			// Replace the <textarea id="editor"> with an CKEditor
			// instance, using default configurations.
			CKEDITOR.replace( 'editor1', {
				uiColor: '#ACACAC',
				toolbar: [
					[ 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],
					[ 'FontSize', 'TextColor', 'BGColor' ]
				]
			});

		</script>
                    </p></td>
                </tr>
                
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">Status:</td>
                  <td class="tdData" style="font-size:12px; padding:7px;"><select name="press_rel_status" style="width:200px; height:26px;">
                      <option value="Active" <?php if($press_rel_status=='Active'){ ?> selected="selected" <? } ?>>Active</option>
                      <option value="Inactive" <?php if($press_rel_status=='Inactive'){ ?> selected="selected" <? } ?>>Inactive</option>
                    </select></td>
                </tr>
                <tr>
                  <td class="tdLabel" style="font-size:12px; padding:7px;">&nbsp;</td>
                  <td class="tdData" style="font-size:12px; padding:7px;">
                    <input type="image" name="imageField" src="images/buttons/submit.gif" style="width:100px; margin-bottom:25px;" /></td>
                </tr>
              </table>
            </form>
            <?php include("bottom.inc.php");?>admin/bottom.inc.php0000644000352000025440000000015411744436442015111 0ustar  thediannthediann</td>
</tr>
</table></td>
</tr>
<tr>
	<td colspan="3"><?php include("footer.inc.php");?></td>
</tr>
</table>site-header.php0000644000352000025440000002510414373666050014142 0ustar  thediannthediann<?php 
ob_start();
require_once("includes/dbsmain.inc.php");
$page_name=basename($_SERVER['PHP_SELF'],'.php');
include("site-main-query.php");
if($compDATA['admin_site_down']=='Yes'){
 header("location:site-down.php");
 exit;
}
$site_url=$compDATA['admin_website_url'];
$author = str_replace("http://","","$site_url");

$prdct_name=$_REQUEST['cat_name'];
$catgoryID=db_scalar("select category_id from tbl_category where 1 and category_url='$prdct_name'");
//************ To Fetch Page Heading ****************//
$pgHeading=db_scalar("select site_pages_name from tbl_site_pages where 1 and site_pages_status='Active' and site_pages_link='$page_name'");
?>
<?php
  function query($pid){
    $query = mysqli_query("select * from tbl_category where 1 and category_parent_id='$pid' and category_status='Active' order by category_order_by asc");
	return $query;
  }  
  function has_child($query){
    $numRows = mysqli_num_rows($query);
	if($numRows > 0){
	return true;
	}else{
	return false;
	}
  }
?>
<!doctype html>
<html class="no-js" lang="">
<head>
<?php if($compDATA['admin_index_follow']=='Yes'){ ?>
<meta name="robots" content="index, follow" />
<? }else{ ?>
<meta name="robots" content="noindex, nofollow" />
<? } ?>

<?php if($compDATA['admin_favicon']!=""){?>
<link rel="shortcut icon" type="image/png" href="<?=$site_url?>/<?=$compDATA['admin_favicon']?>"/>
<?}?>


<?php if(!empty($catgoryID)){?>
<title>
<?=db_scalar("select category_meta_title from  tbl_category where category_status='Active' and category_id='$catgoryID'")?>
</title>
<META NAME="description" content="<?=db_scalar("select category_meta_description from  tbl_category where category_status='Active' and category_id='$catgoryID'")?>" />
<META NAME="keywords" content="<?=db_scalar("select category_meta_keywords from  tbl_category where category_status='Active' and category_id='$catgoryID'")?>" />
<? }else{?>
<title>
<?=db_scalar("select site_pages_meta_title from  tbl_site_pages where site_pages_status='Active' and site_pages_link='$page_name'")?>
</title>
<META NAME="description" content="<?=db_scalar("select site_pages_meta_description from  tbl_site_pages where site_pages_status='Active' and site_pages_link='$page_name'")?>" />
<META NAME="keywords" content="<?=db_scalar("select site_pages_meta_keyword from  tbl_site_pages where site_pages_status='Active' and site_pages_link='$page_name'")?>" />
<? }?>
<meta name="revisit-after" content="3 days"/>
<meta name="copyright" content="<?=$compDATA['admin_company_name']?>"/>
<meta name="distribution" content="global"/>
<meta name="language" content="english">
<meta name="author" content="<?=$author?>">
<?php if($compDATA['admin_meta_fb_id']!=''){ ?>
<meta property="fb:page_id" content="<?=$compDATA['admin_meta_fb_id']?>" />
<? } ?>
<?php if($compDATA['admin_meta_alexa_id']!=''){ ?>
<meta name="alexaVerifyID" content="<?=$compDATA['admin_meta_alexa_id']?>"/>
<? } ?>
<?php if($compDATA['admin_meta_msvalidate_id']!=''){ ?>
<meta name="msvalidate.01" content="<?=$compDATA['admin_meta_msvalidate_id']?>" />
<? } ?>
<?php if($compDATA['admin_site_verification_code']!=''){ ?>
<meta name="google-site-verification" content="<?=$compDATA['admin_site_verification_code']?>" />
<? } ?>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/png" href="">
<link rel="stylesheet" href="<?=$site_url?>/assets/css/bootstrap.min.css">
<!-- animate css -->
<link rel="stylesheet" href="<?=$site_url?>/assets/css/animate.css">
<!-- owl.carousel.2.0.0-beta.2.4 css -->
<link rel="stylesheet" href="<?=$site_url?>/assets/css/owl.carousel.css">
<!-- font-awesome v4.6.3 css -->
<link rel="stylesheet" href="<?=$site_url?>/assets/css/font-awesome.min.css">
<!-- magnific-popup.css -->
<link rel="stylesheet" href="<?=$site_url?>/assets/css/magnific-popup.css">
<!-- slicknav.min.css -->
<link rel="stylesheet" href="<?=$site_url?>/assets/css/slicknav.min.css">
<!-- style css -->
<link rel="stylesheet" href="<?=$site_url?>/assets/css/styles.css">
<!-- responsive css -->
<link rel="stylesheet" href="<?=$site_url?>/assets/css/responsive.css">
<!-- modernizr css -->
<script src="<?=$site_url?>/assets/js/vendor/modernizr-2.8.3.min.js"></script>
<?php if($compDATA['admin_google_analytic_code']!=''){
 echo $compDATA['admin_google_analytic_code'];
}
?>
<?php
$sql_logo_welcome=db_query("select * from tbl_header where 1");
if(mysqli_num_rows($sql_logo_welcome)>0){
$DATALOGO=mysqli_fetch_array($sql_logo_welcome);
@extract($DATALOGO);
}
?>  
<style>
.msgNegative {
    font-size: 15px;
    color: #e22402;
    padding: 0 0 12px 0;
}

.msgPositive {
    color: green;
    padding: 0 0 13px 0;
}

</style>       
    </head>
    <body>
        <div id="cssLoader3" class="preloder-wrap">
            <div class="loader">
                <div class="child-common child4"></div>
                <div class="child-common child3"></div>
                <div class="child-common child2"></div>
                <div class="child-common child1"></div>
            </div>
        </div>
       
        <div class="search-area">
            <span class="closs-btn">Close</span>
            <div class="container">
                <div class="row">
                    <div class="col-md-6 col-md-offset-3">
                        
                         <?php include("site-search.php");?>
                         
                         
                       
                    </div>
                </div>
            </div>
        </div>
       
		<header class="header-area">
            <div class="header-top bg-2">
                <div class="container">
                    <div class="row">
                        <div class="col-md-6 col-sm-8 col-xs-12">
                            <div class="header-top-left">
                                <p>Welcome to <a href="<?=$site_url?>/index.html" class="welc"><?=$compDATA['admin_company_name']?></a></p>
                            </div>
                        </div>
                        <div class="col-md-6 col-sm-4 col-xs-12">
                            
                            
                            <div class="header-top-right text-right">
                                
 <ul>
            <?php if($compDATA['admin_facebook_link']!=''){ ?>
            <li><a href="<?=$compDATA['admin_facebook_link']?>" target="_blank" ><i class="fa fa-facebook icon"></i></a></li>
            <?php }?>
            <?php if($compDATA['admin_twitter_link']!=''){ ?>
            <li><a href="<?=$compDATA['admin_twitter_link']?>" target="_blank"><i class="fa fa-twitter icon"></i></a></li>
            <?php }?>
          
            <?php if($compDATA['admin_linkedin_link']!=''){ ?>
            <li><a href="<?=$compDATA['admin_linkedin_link']?>" target="_blank"><i class="fa fa-linkedin icon"></i></a></li>
            <?php }?>
            
              <?php if($compDATA['admin_instagram_link']!=''){ ?>
            <li><a href="<?=$compDATA['admin_instagram_link']?>" target="_blank"><i class="fa fa-instagram icon"></i></a></li>
            <?php }?>
            
              <?php if($compDATA['admin_pinterest_link']!=''){ ?>
            <li><a href="<?=$compDATA['admin_pinterest_link']?>" target="_blank"><i class="fa fa-pinterest icon"></i></a></li>
            <?php }?>
            
              <?php if($compDATA['admin_youtube_link']!=''){ ?>
            <li><a href="<?=$compDATA['admin_youtube_link']?>" target="_blank"><i class="fa fa-youtube icon"></i></a></li>
            <?php }?>
          </ul>                                
                                
                                
                                
                            </div>
                            
                            
                        </div>
                    </div>
                </div>
            </div>
            <div class="header-middle bg-2">
                <div class="container">
                    <div class="row">
                        <div class="col-md-3 hidden-sm hidden-xs">
    						<div class="logod">
<a href="<?=$site_url?>/index.html">
<img src="<?=$site_url?>/header_files/<?=$DATALOGO['header_logo']?>" alt="<?=$compDATA['admin_company_name']?>" title="<?=$compDATA['admin_company_name']?>">
</a>
    						</div>
    					</div>
                        <div class="col-md-9 col-xs-12">
                            <div class="header-middle-right">
                                <ul>
                                    <li>
                                        <div class="contact-icon">
                                            <i class="fa fa-clock-o"></i>
                                        </div>
                                        <div class="contact-info">
                                            <p>Every Day (10AM - 9PM)</p>
                                            <span></span>
                                        </div>
                                    </li>
                                    <li>
                                        <div class="contact-icon">
                                            <i class="fa fa-envelope"></i>
                                        </div>
                                        <div class="contact-info">
                                            <p>MAIL US</p>
                                            <span >
                  <a href="mailto:<?=$compDATA['admin_email']?>"  >
                  <?=$compDATA['admin_email']?>
                  </a></span>
                                        </div>
                                    </li>
                                    <li>
                                        <div class="contact-icon">
                                            <i class="fa fa-phone"></i>
                                        </div>
<?php
$str = $compDATA['admin_mobile'];
$mobNO = (explode("/",$str));
?>
                                        <div class="contact-info">
                                            <p>PHONE US</p>
                   <span> <a href="tel:<?=$mobNO[0]?>">
                  <?=$mobNO[0]?>
                  </a></span>
                                        </div>
                                    </li>
                                </ul>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
<?php include("site-header-menu.php") ?>			
		</header>uploaded_files/0000755000352000025440000000000014374642720014213 5ustar  thediannthediannuploaded_files/reception-catering.jpg0000644000352000025440000026353114374642720020511 0ustar  thediannthediann���JFIF``��C		



	
��C���"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�o
��X��{V���!=�:׏�<X�V'�]5��,��-�}�ֶ
�z�11Vm�N�Zbq�����iL�1�$�kvo�k��`b�u�^ա�8�O$v���jЕ��+_5�����t7ń��Rg<漧����u��3�Xw� �n���=zW��UI���h�H�OP�ͦ�ڪ����n�O�,m#g�@X��ׂ'��K�����x��VFn3�k|?EM$F#������M�_�3O�4���aA��:�:��~��z=��{=oT�I/.��2r���_�^9V�Wrc�A��_�?��m[�s�.a\���W���k�6��P��yyfg*���:���kXa	�(��_�z�����̒ľ�3����7I��ƣh����~��a��/�vR�sF��B���u�Q�ʏb�>T��'�S�[S�.��U��f �I�{���4���?`���j���Qֺ���M��/�%�h��k�|�c���_h�ɟ�4/��qj6/i<p��E�$r=k�e��	{:�h���PUhI4yͿ�`�4���VH��^�����V��qie\c�	�K��j�A����7�&�#޳<K����:Z�L
�?�|6g���(A�g��KS�W➩��w��/aX^+�U��1Oo���c]$q[�!'͗�N)��-��U]������8���S�R榟���������Hq���ϱ�ɫ��o.��BH��⻏�_�M��0�!�'��w��w���C�v��*v����=*P��DZ��"��%��n�S�\����C�s�O'1���Z���<s�E�~�ur@Q/�"���c�4C�ihԭ��8��63^�K�x�ʫT���8��*U��>��g�^�ͦ�Lf�$�g���4�������������:\�,ᴽNh�#��וx��.�?��'�L����UbCۚ�s��t����A����<,e��~�]���yl�E/s�x��8�Zե��k2^��8��G��ڷùJk�eݜh���|J�X�1X�k����,�|�v�O���E��}��qR���L�⯅�M���ɹ�M�~�����U��u��Y �	0@b85�&��}je�#�0��5��o������hD��#kL>&����C�5�Cݒ���5];�6�7���@T�۸�7��&�ov�����%�Zļ�y{���,a�[�e<�޹��ؚ���L��9��N��d�ק��W�+P��8�%�T�K�S�u�i�'�k�Jش@;p��yG�/��~�M��q\��7݅�� t�f������S�mg��g�F!'<�*�߆?t�:�K�D��3�ť;�>��˸&�/��I����V���E5��|�����'W���<+�_\N�w���~<x���i#�Iv-�.@?f�����2A�}'��oC��-maR(��1�f��ߋ>1^ǧ�i�/f��G�?l��}�W��JT{��L���y�>��֔��1�_�v|��|�@���^b�w#��Mqz��kw�Bۏ@��?@+�z�$���:����/kk#�e���b?�=+���
����=����+�B�C��̂iS#99���:W�-�����t��/6|�~p�cZQ��3�/�c����6�yn&�G�e���Aj�c�qY�6��]dFS�G]��W��	�|���(���(I
�tZ�/����sBпi[���2�fH�*���z���e��K*|�W�xf�-O�X�y�imc�Fq�ZX��(,ĒNi�.�y��>F:�幩$R�e��Z��1VV�Ǽ�Z~�
p�=1V/ԣ�����q�uCc�Ht�r�҅=�)UNh�'ji99���i6�AI1���
D'�K���V��L�H�`qB��R�$���^�B�֮l>�^U� u�M݊k�
��Pe�S�yQҘ���ƴ�"1Իhw/�T�ҙd0ji�k�N��|��� ��qZwK�~�B4��uS�Nj�Ԓ5�
��j��sVPg�R3I��qȤQ����75)�B`z
\QF)^�H1E#���j}Wm��[��jط�b��1rv� n�ל@~��!;�r*�zԛ�!T�W�5pQ	��<t���E�i�r�y��^�����&|΢�I�@"�x��w���7͝�8�0J�L�z�5�X^ݴ��s���1#rI>��ėA�"�o3�c�׫B�V��^�~�b�l�w0'޲�K�>I�?�Kz��f��$I���]���*M����O���Y0A�t�+�����W�-~i�<V~˨�ƶ�O!�L����7�˾�����{�s����x>ep9R=�\�
�[�u�Ǘ�jS�ړџ�_�7��tay��W�	��9���7���I���)
�������
����riz���ޙhB��9iG0?{��)���֥�Q�@��t��0@{��_O��U��C�q��J�ѵ�o��<�=ޟ�Ǻ�bTA�b9�-���K��.c�^6�i���_|j���|�����m�ڸ��1�#��?hox��?+��Ϙ2�>���[�cܥCI���L�x[��uh������uc�����|C5�P�c�5	���o|O���񋒣;T��s�zV>��0Z�C����Q-���'ܛ��k����n|Z���;i�+9a5��B��N3_��8s��*[���s��no�B����8���3ljw�	$����h�;��b��P��eq1��}8*�nZ�N���¢�_����d�M��8� �'�W��H��|x3Ʒ�d�76���R�g�5�2T*8W����z>%˧�JO���<��6�����t����:͞��i˩_^ȱ�o��`=k�S�p��<}7u�O�r�2��=c_E~����/�k�Wz�牎��M��*n���W��6�UՒO{�^c�8j4����[k��}��/���í
CP��=^TR� >O�k�/4���eQ�p+�?�G�U�;�a��ϫx��[���v֬%f��_|`���t]6�X�#��f3�*G�Ž{6;d`��9V��G��䭽�g�g��c�R����_nއ��Z��O6X�S��p����W���/����,��0T̿�_�O�O�|`����L��𥋡UA!���־K�g���-�ϫ��S���,�)g�'�gK���}����Y�s3�n����t�l�M_K�Jh˫�E|U��V�Y�O�j�721c��
�����֬�O+��M!'�f9��?����喵l�o$R.��r+��8^u�9+����x��
�xk�}���?����[6��[��Ě�|W�izl׷�&E-���>��It�F`�XM�p�����
:�P|T��<]���B��^��r�v̅��~a_�>�[����ѣ��*IJSo�S'�����5ׅ�;ڮ$S��}�z��^�&j�|���>�%b	������ �Ưڧ���#���{�3�w���ʄ�mA�OZ������g�ω�]K�-,څ��[r��3_w�a������涭���|q��x�,m^k=ug�7�e-c�RCk�iz��z
�۳�l���}e����#��j6�xZ�lk�<�O=;W�ટ���K�Yk~��Pi��'����w5��'�Si�ͷÿɥĬ�.�&��v�^#.�IYO���v������:9�J��)(.����>��~�E�����0��&{��K�����'��džl#��+=�I+�sۥ~x���H~���
NJ��! Y���@��rɎ��{A�>+趭{��
�6��.�}�0�I�s\��GM�t�����%���L'ө��/��ߡ���
���7	�[T�%,%��E�]Ǩ����6���Z���bx��B�L��ik��o�s�_.C����e��e�>h�W>�W�|M���O��Y�R���J�a({Kb�J)�.�ǧ��iSO	J5$��R��_���]a�x.m2��U�쑘���0	$�����<�>)x�]��%���>P�q�ҽ#����y$6�$ȹu��[�&��+ye,Ax��+�,�.��
�R�ާ�g��g�J�-r�;$�-�1�ޔ�5Ioe#���1�*N({Y!��GA��7.�ͤ�b��Z�e��
��q�LԈ��Z�赕��C敱�Ux�p�U�AB� `���m��8�F�i3R0<R`z
�h����)���G�i�qو��O�I���Sq��E�Ɨ�=*y�V�h?9�e�[�=A n�P}��B,YZ��U����{�r~A�[&��(03�4���i1ot�	�R�8�s=�h�*�z�(���֍�rq�Q��k���-m,q��,1�����٘��с�N(sH���4����J�w~�)q�����}(��&��`�g�Eu,qd����ɦ\�a���+<k+*�<qU�9bG�k�u>�ۤ�M���,H��W"�D����o5@��2A�N�Vۆ�s�V��4d��7./��>�\��8'�O���G>���_4�O$(�)Qi�U�R;H$
Ϻ����\���8<�5Y��OJ�!IMZ�nY��,K:������O¨A�p����q���:�3�kմ�{�JX!�)� ��4g���a�4��:�x�9Tk��χ���k�e+��E{��h| �`��X��Ey�ß��(֠�{MU��
�_�5�P|&񦕦���5��l����1ӥ~}�Fj��JV�o#�\&"�����>�Ŀe)<-��4�����������‹Œdִ��G���_�zW�t�V��[mB&C�m��mwzͧ��Ŭ�d\a���1]���ҧ^�:[�����V�a�(>��?�߷�����N���F?w�?kռ�b��|	m2h��]k�G�$8>�k��[�N�o�8!ԉ��z���D��Z�(o&PXs�k��q��xG�ɣ�1�J�Z��v����-S�
����k-���j~�dR������T�����x����}q�˼Zϑߪ���+�(<�Ɂ��`t����fCr��e�I?~H�x��<���}��a��e�W�Hj��1�IK8,n�/���������[j�,.�C����5�C�_Y���Tz�J������[ڴ�;���q���z���5����<e}�-`��S���%�����zVz�J�Ke��Oz���C�E���r���/��/v&�}rX����wG��北�q����q�Z��;e"`:V����a杀�x���g��&�O�"��{alq����F�ٰz�����k�۸o�/x�71$���F8�ɯ2�.5̛��C��ӭ5������G��ֵ(m�-.u)��CHI=��G�������+a�߇��}��O�u/�x�#8�ǭ~����������-[�L|�6�v̼}���@x�;�_��iu�oŸ�7Wsr���K@g��G�1ؚ�ٍlŹJ2�^[�.�}�1U��IP�Ҍ���Z�(�O� n��,��N���ĺ>�tW�Ci�����
}�{�s����:���^Ѣ�t�15�p+\S�������ڷ�
����Y`�o����9Iƍ�F,�v�’0�`q�\W��w���1��#�,��5�,�~�ujT�j�j/O�G�z4��F>�!�V�wѴ����Y��К�ރ6���R�|�T귌t�R:����ۋ������o���wS��<�Om��{Wc��h�K,�h��Aֽ�c��|O�B�b�J�^��gķ�ǵU}W5�װ�e�9��'w�_��S�|=8�R|�{$~s�:����$W��\j�#�oz�{�9��G���ߊ���Q���=ȓ幝G;A�2+�����[xྎ/�lm�<B~i��\��_j���|Ԍi$F`Xa#'N�ɏ�<D��P�.���8N�Ԭ�nit��>���b���>Ea�[
6B�\�,`��d����;��o|-�k�.�������A�������~�[�Ŏ�il��D��u�������~)k����>�.�#����ѯ���cOm宯���a�k���^іѶ˦��ͽ��}V����YH��!v���F=k!<_%�/&�">�Wv�}p8���e�����O����Wҟ�o�<	�O�>+��m�����vcW��F�GL��ѵ�{��T�JT�l��B�z!���ߝyW�X�:����Z�������➇i��M��2�$�g琥��V?��]��i����pFy#޽�4)�q��G�Z��A���|
�#i7S^�+Ԃv��q_����7��喛u�#�_j���#��ԟ���ۍQ�4�Y�VW��{���Z.��)�,���XX��]_w�	{o~����ԧ�uS��ާ\Sk��[u?u�Z��m�i�\$�	�Ϭ�d+�=C�_��
���x2����)_n��G<W�|F��fxS�RH�و�L��B�{�+�
��kF�h��u7�+����'p�${�P�+���E/6�-χ�(	H�\�;z�����=�/��u/�]A?���������`��B���?���T}���",3��rz�z�3i����e��̞Y\��r�q��\׳�}VǗ�gb�5~��%�:ӖE$���e���)���y�쥰�?1��H�ҕ@,j�Rp*���O֬n��=i�"J��G������'�jw�x��?��S,�Y��5zX�*���aW����XH릴�ȽM�LU��đ�5���r}qY���(�^ݿ����s�Vz�H<T���q�o���xwB���97.�T>�15��#η�+�F�G�-��&`^8����y8��V�Q'�w����e��k���>3����;x����S��6wrz�^��	��K�v��i��e[L��k̆������W|"��L����Z��H/��(��{*�8�}�J�"����I�iZt$Q��F�`+.ro�|6gǵ}�����^�Ͻ���}vU�t>������sr�k]-�g���+���9/��
$Mdo�ڒ��.���T������.HXb�I6zaE~�|b�_��
��Kkޝ$,U$#xp>S_�����_<u���W�����Z�V�N|��㎇�vd�n�`���%�
������i�p$(�G/��{��m��7��	��C��/V�O��+Ը����J+��>𗍮��l.'ҮK�wD%
7��+é�y��q�]�z��ʵ����3I-ā�P)mg
u�|�0E~�|#��)��;�
=(�hL�N*;�Ld��W��K�Z���nF��Zո(�ODcg5nf]j;�Q�Si���i��:���V;vD���_Z|��|;m����K��7"J�Te�^���q�H��N�,���T]�3�x����-(��K&�6���ᯆ������],��&i����??��2G'��B��
�g�־��w��[I
���.B��Q_���$r�7���8���q>*W�|�������NO͚_��	<�B�)��q�f���?�}��8�O�:f�@�h��_Z|d��R�m��6��]����T�u+)���g�b�5)K���{�|��!h�/C��~hsĐ�i�iV���z7�_M��
T�d	!��~b�&|#�N�L�K�\�۫蟂_�g�I�eg\`��N��B�����74�Z�q^G�_u/��xrh��Cr�ZE��Ҿ���o�z�����>⸷�����,�o4s܀\�=��ϋ? k��YI$qF?6x���EE��A�9"�d����*���k�2�Ll�-��6��9���M.�鼸��a]��~)C��H���'�k��<Umqr� �����W�Z���)I��Z�<�)@��޼
�_x/�me�⌀0��W�ុ�7[H4�՟�|�Z���7���ό����(-�ڊq��z��3��ڌ��vZ�|.D�i��Dž/�};��g���e��,P�?���_�N��x�����[IH-5�3��z���m߆?�{
�w�M�A�q��?ઞ=՞C�q����ȃ�c�\t�})���Ο�:0��՟Qh��I�x#K���� ���P�QcN�����x��o�%j&T�̿���*O #�r
~}|j��~,|]��s�Z�ͳ��
��Fs��~�L�w+3��H�2�O���QȪbf�&��dpN�\[�+��?Z|3�Ã�_�%Ҽ
��l�O�j2q�*���W����S�Rh����Q��ъ�����t�=>��G����RV�-o#�?y���𯯴��������$w�ı�Q�$�vb2�XZў[=�V*�ª���k��|+�����X�,қYv��n�G���Z�'�+m$��Cں-sV��e�#y.o�rX����>��'�,|E�.�g�iC��z�W��I��prJ�qy��4�˔����	�|�k�|���:�n:�L��߳���/�:�R�iS���ʅPg�=��c��������J�Z�!�ϵ����?���b���W��n�to�zZ^]��C�h��$�_)�ͪU��<�=�cG�>X�kh�ﵻ�??`M����{�|Z�Cl"c�3��w�'�y�=i�IТ[���Ԋ�c#�_|B��㯎�S�kWV��`�%x?�`J��4m'C����Id#�Ac�ן��q3m�_�{T�b�5]�����I��I5��m.�\� �V��S�kW}N�R>#i�m���o5�ʛ��b���m�0���k�2��	UȾz�#���t�N[_m;��5��~�uz�7ʒ1(2z�^�����僁 y둚�|>���XbvH��\�����>���V�Km#��/��K8�B�Чe�|���%R�w0�mcS��1�r*{KS�.`@�J讼/}.��Y���,��zW��gK��Q�Cs�����g�*nZ�x����D�[��Ђ���("	!+#�&����*�T�����O�z��<C����m��s��折�M�ř��n�#�����0�u������~$�z[l|pq�L*�K/i�S�q��T��?^Rnv�A���+ĸ�YJ._	��
�ӵ�)�<O���׃Q),�YT�r+���J��d"�9{��$�~��8�S����5/~KBeM�.}%�Fl�y*ˀS<K�E�
��ՄNs�)����WM�B���¤�6��̵�$�)�%$�>i����m��t��l��E8�#U�~8ȯ�?h?�7�R�g�����mv���_�)�"6]
դ�-��rz�0y�+
eFm.�>���Ă�u�?���?��o�2�u��ڦI��B�z�+��"}>s�%�ђ9����pk���>�#�H�l�d�`���{�����c��N�:�����q�?P:��`��J�
;��<<G�����<1���8�9�K�85�s��
�O��ok3�c,�\�"@	�_|o��m|Z�	,�j>�S�L��Y)b��<.��;Fv}���+���u�lx�WuH��<U�yt��"�.-�";Z)����:Ҭ��x?�zܩ������ �����ݝةc��p#�7�V�R%2��qJܚ�o�.�>#<�i�e�k�>~͞?���&���r�K�Cn��0q�c�}��5��v��iv~���ʓL|�1z�{⼬Ns�����K�G��ʱu�Tۿ��{��>?сy`+S�3�,q��+�*"�c�W�����z�ˏ��̌�D�:Pq_y~���EO����.���kF��H�I:�9��|�W�c8�	�Z�����~���,UX��5)}ѹ�����b�V�.�b��_����(5���k��Z�2��<K�[ ��إ�������~���>~�)yw}�`m�O4l��<���_�\���[�;h�J쌆��W�㸳2��ƒ�]���L��YV8���IE�/�2�h^�ec�XxN�G����	`�b!W�;Mr~7��m��b��倀���+�����H亸�J���@#������^Kk-��|=�j,r"���Fc_;O �13��	k��h��)�A*բ���|ߑ�m�ᅇ��ru-N�;�s�DD�GLg�;J���M�K�j�P��b�i�+�Rry��~�`����[��{$�Z:���7#=���~Ȟ�����|W�x���vͽܘ���9��{����2�)ۦ��Ӧ������&/�0t�Q��Yu�V��!�Qj�]�@���Gk+�f�69� ��=�|߯��{�w�Ӑ�:��O��=�����fG�˨���`8ݹ��B��^���o�JY4u�Ҥ����%��e^٬2���X�4�v�����G�+%�}?��K���3F�1���5��>�2D%I����!���|g�+�J�Ynnn���7.Ĝ��u�E~�C��{5퟽����\�.������n�R}�2x�!��z�]O9��	���T�|���̵-��>�PI=}�৆4)4�՗t�����&!=r}+��M�P�n������)��8¹��)ԧ���te��·�ש���9jW3Gmk3Ƒ��Fj_x��Z�Iodr���)⺟���>#���Ib���6�Z�%�Kk+{uD�� `��+�f20^�B��?+�Ҕ��yZ��r�&���A�����x��P�A�+���
@&��G�!-�#\‹���+n/xVI#�)��@1��3̔%e/��5��Ԏ����c��t�,�;�<��#��/,Q�g*���WL�ޙr�Rk �pwG�]�����X��_��^~'1�ս��K���ƚ媮r���d���u��	�*�����e������Y6�aУ/%Θ��g�^�+��x�Ƣ��m"�3��n���&4��m�gV��J��������T��-b�t�8��?g�g��+<P0L0n���~ڛ(L����mGp�v�'��m��}�[�VV��[5|�K�ᰙ��T�V����r|:��M��J����?�ͷ��TI�,d-�py#4�?	4���[)��.xbM~�k_�I�pGq�x��7�/%Vx��#�M�	��9xoO�.SZ�x�?����?H����S��/i(�o�_��8W�(�0���_�h������c{ᶵ�����|��j�_���n�����d<�6��~��`�}���,���]�4X�YM"p0_�ּ�4��������[�Sq�,ӌd}+�eX�i�q�7�o��������+yu<���a�L[U�H�	��V���
�&�X͵��V%��'��'����֚����|6�J p�y���o�o���\�u�p�s�Lcڸ)p�&�uqX�'�C�|WM�:4��}��B�e��}�{�o"6Pٯ�|c���$V�M���p� !���n���A��kvڑ/�.YȮ�����Zk��=����z��᷆g���+��᰸(�*���3����"�WG�f��'S�,<�X�}9U~w�5_�߳ώi�c�MR�٥�fx�a�����������-mu���l�6	�Ь������:W�~�_��;���;N�UD�����nj�ֽLO�p�c�p�R�&�~|���ϓ����/�+ԟV������a�BҾ�Y��ⶥ�ql�4�إ��Y���?ʻ��)�[�_	�-������n�c���BW��v<s_���Q����㹗A�n	Aol�$�=	Ҽ'��0���f���i%���rk�X�����t�'�>��}������ޱ��_�=+���#���v���V���y�%�^�9���4�O�l��,�p\�9��ǵ�RK�L|�z֍��rb�hf����
j��$�u}��
�nNA�ڠ��	6G�46�od4���d�%��/�E�ג��hv���W7�Cz��Ӎ�*x̥̀ƫ�v�����ĭU4�:�Yp��J���߱w��yw��ն����`?��~�;���#6���z���8W��OΪx�d�i���s�������S�g�خ/�6h��K&	f�澓�'ß��X��{@w��hmo��==�p��x%0{f��'�<#1�Y�n�0�UrC}zW4�:�����<8Vn+�E��C���>��;��5�G�����s�њ_�4X��^ic#$��扩WS$�4a�����I��Ѡ�ʺ����1ҹ��éG�����wH�7�?��x��c�y�/�S�֭�|G���%�4'��c�$�_:�Yc��7��O�G�d;@�r��~+Y��RmA
��W�s���3N+C'*�{�6�
x�]H�/�YEp��iWj֬��4���Smo=����I�\*�o��׆��m���"��ܨzW�^���_j1M�^���b7Oʺo��8�tp�؇N\�ϧ�z>��������rF|����zo���&��g�W�$�X����#���x��&��Ħ�H�|���k����������J�9��s��C�d�t"׫��ag�U�4ב��o�'��v��ޔ�TK6q�w������M��g4�gd�0R~����t��n�dLq�p+����|M�hM�K�c�dn1�i�1�J�U)�����<BǹޕT�k\�~ ��χ��4��C�c���Ѿ
��S�Y4FL��b�}ֿl�j��$��4�$�3��X~����B��mv�'?,�FNEq�F��k�P�2r>��?f^G��O��9�C����g�>i�ڙQ��(!�8�Y�	�^8�H�%���ݱ#��D�Ϧ�ƽ���%�1�o|(���.~�x�&�:�#"�F(�C�Q�.e����N�>0̡UB�#ih�>5�7�q�:�x�G�ͳ������'�>�ϥ��3,�G�Oz�oڃ���5�n�;<->�gA8=2k�>��ɵ]f������j�r�
����a�M�[��/��=�]I�,�iE=���c�>��'�|u���4�@q4p�q�`3_|l��s�gie�f�cp��Z̦doA�ҿj��4������sĢ��5#\\o�Gx��5�_�n?�)��/����I"�1�q�N:sW�����F�kI}�ݮ�[~'-��a;�
��ʾ�~@~ϟ�l/�����x�Ŗ:��a����L���q_��
��p��?�L�P�jE���j��k�ݼ�g�9 g�8�ԯ�Q�❯�e#�z�_��r��C�O�W?ŝ2�/��R�"��:'�ʬq�f��9�g�%
�|�$������d�%E$ҷk��M�H�~��M:,wzM�&���W�Һ����P�~�0iS���t�!(�P�L����~���a���^�L��ᨢ��W���wuZ�����`/�^���N��x�8�x���=vh��r�#���3��g9�
-:T%SO����]�G����;�j��ſ��|��THdd�xJ�����oƆ�f�4�e����1`	��|�n�ɵ��[Y����ba،M���
���׭~���,������r��cफ़bymS]���m����|��^8/.�����[�*��=6�nKB��q�ֶd�<��VyQ��
�l=8ҏ,U����{F�'w�I�/��c#��I��G�æ����j7d$v�)gr���cܚ���X�l/�����J���յ1nf0�(��f���&��uo�3D��P�I{�s�#t,;�c�j�s~ ��~���鵽_�z�?�sM+S�7��7��'�	����Z���ĉqk��� i;ٮ���Kk�?�&&�=��0�-���N==��������#���o&�xE�\� e�`F���|y����ij��!��q䷹�>��~W��j,^=�'�Z%䏮��8\���`���͝O�~9k>2ԥ����#���2~�/LzW!p���4�J���y�媰}��ϷZ��W���S�ZJ��X�mlMWR��d�H8�J)������9���H���'�?Jd!��jt��� Z�2��ЄEi�+J�Y�$)?�`I����ny�V��<-���($����cVwo`���&?4�=<�,F.0����,�Yy36Fc~����/�Ү]��ݐW�~��L���-�����d�X]^����}+�߇�K��.�'�Lj�r�	Gp�{�=+�Zr��M}��F�gu�?)�j��kkk�Op�,0��>�#�^���C���g�:��H�r1$ᓃ��ҿ[�	��	�M��b�ƀ����?n_|?�,�?�q^}|��|���d����c��z˿)��� ���p�q���|/l�!gPG~z��?��X�E?��,����a/���'�G��2��G�1�R��c�k������@mA�5)#Wc��s^s�)���4��~dˀ��Jr�)?��s�/�_�B?�����m|C�9�3_�H���8�+ڼ%�	��Sn�g�o���%�BF�Ϟk�O���TʶW��mqA��x7�G�K?^��1:���?�z�o2������[�>b��UG��c�ͷ�_i��ÿڿ�O�lb�����X~ ����"ռ�b�gu�!��
�S��onu�F��^�<P��+��7�K��6ͨ�4ǘAɯ�.�.g��
��ZǷ��/�nIb��[C�m{�
I��G�`K��:�����V_	i��e�ĝv�"�U���+�J�F9&�s�<Z�[�(��Z�0c*;΢K�=�~d��I�Y3ܵ_�+͔�g��I�v��5/�+]̩&�.�N��v�^\������pfV�nj�����„g��ܛ�I;�t�i�&QN)->l��/����b��֐¼nc�¸����"մ�Ώf�m�‚[�b�7��נx���a�Y���U���{׷~��I�A���|`��͊Ɉ(1�\3�_O��3�1XZNp�[io�6q����j�IZ����������j}En�V����)�/-q��ݏ����ZT���u�Yj1FY���w:�}����`h4'�<"�}ε#��E�#�=+����~"|n�\���z� ��F>^� �n$������Yn[]a(N5+�y=a%��wl��~��E~j8g��R]���s����_�xo�ڵLJ�;�5VR��rF#�*��y��f��X����n�5+˅��=ɒW�<�s_E�;ő����~�]��i�߃r�COU�dub��������j��O�_�.��Q�}5�ݷ���X�������]��Z)x�u�Ď����W��x�}\���J؜�b!\gCс�����>.ZC�����lu��_9��k>
x�_�Lך��A�;6i�"����u�����*r��okuO�����g8x�srM/-O�
#����ݕ�2��8�#~��X|.+���u�<`7p�S����ԅE�����׿!��������}%�'ig�ޛy���[�
��X���/��k�_���K���%#(
ǯ�m��3|?��]��4蚞����D�u�K�匞Y3���O�*w����l��G��]����A�d�k��[0xgGV�]>gfgZ��*�z�OK���z'�7'�m.���ĬR��*�g�ǵX_�)�����;�g����;�t��H%���9���D�ՠ�+x�Vh��%ڒJ'���G]��~<M�m,@P�P���Q���?u���g��s\�Ÿx�u2��9XaŸ��+�`��ljZ��ey�k+s$�d��2z�=i`(���Ք����<�����'$����+��~3Ț�Kp@�\�s^���q��Ou���I���l�Ge>_
��4�Z�R�T��.���EF2q�Ҽz���*.�Θ��)H�t;�SV������K�	�l1�OJ�a�oǿn��%���
��#?9���w{�xv��FQf�e�+��6r=k��Y�O�Ϧ�W�;�$my�+���;:}/���
��q�z�8}kF����W���Z%�4��~
��m�X�^�;ݥ�f<V����gLmE4�w�"�v�}q^w�|
O��+Y�����(m��T�	�Ά.
�z�TM����xV��Z�e՝����	w�#D�?�7�ڮ��x��2�k�!8���>ώ����~˞ o�K�x_Mߨ7��y*pX�zװ~���O��WH�+�f�I�ԡ
:*��+c,Cs�
v{����2�7�O�<d?Ï
��[4�M�'�"��r+g�����n��K�y4��/,W�����с�]?�>��_uǿ�M�(�ld2�%��E�:��=3�+��������&��{MI��ˌ�ڵ̱��(@6�=O�)Ù��%���:/�)��&��F���MB?>m_���.��?�b�5
7I����t�P�@��=s����ˆ�u�q���Gtw.�,i���v��~&�J~6|p�9t�/�67�Ye�&u��p����"��O��/����|}�2��B��h_���ۦGZ�ĸ��nK���ث�K��YG%�ڰ�/�m/�y�G��7���3�:��� �.��p��f���:d��?�����̇R��m��i��b��P1'���5�x��&�3��-&[e7����P����G$���
�|w�E�޲�������m8�
���N޼b�S�%*�/u~T�W_��l~
�_o
p�լ�y��_s:���Q�Oj:���~[�}��l,�( �N����?u���
����\Ki�U�Uf�"�j�����t	|'���n�
*H�
�p;��>7x�A:M���p5}A$̏���}k��o(�=7i�8���y���'<L#:�^�ͥ�v<�:׊~#x��ڎ�{$��%�<�&��
z\Z���O��Ҧ���tխ�z�F-��=�\�����i���m�	�X(��Y������z��e��e��5��-���&��C���0bz��}f+�ܪ6V�_�2��xaR��ku��M*�R9���b`rpzU�-n���2Gz�O�{��|d�O���i�͗pz��g�KhQ����]:I��<��Ц����+�M�3�Y���/�@���Ĝ��5�s�è��8�+�B���d2������ձ��#�E�+���0?���b��������E|�J����H��ox�hN��2(��׽[���R�e�2��K�2�n��݆�18v�)�����z�Ԋ���s�W��g��C�W:��g�&�Kd���ּ����Z��o�]D�%զl:�@�-��y�����/��/����x���D��_/�������R�xw�0��d��˿�P��c�{�LD)�>E)���ͣ?�S���-���3Ŀd/�I����umZ��|i�[��gQ�?��5�_���o���M�;�=丒�A����E�z�~�zп�_�5�7���Qh��FN�kwd|�����pA��ҿ=�j��$W���X��u}	�ek���9Q��'���\^]~!���圬�Ko+��c�R��*9ud���ow����G�m�j���7O%,-ܜ�E-��1���R�ҫ����Z��֙w!�����`�H����,`�Oڿ]�B�i��^����իQժ�'��YU���5��G��X�R
pz���3SF��ES[܎�𢣑��l�m�x^*I5I?��Kx�n��c�����
M��G���f_��b���g��n2�G���8��O��8�]�|>��uX-�}b4e�+�`L�ֿ=��<9�i<K�\���� 0��.��M}��Y5Oj0�37٠$��ܤ��ˌs��e>e��e��/��x�p�/~�﷑�~<���������6vܨr�p��{W�j��E�]H%�����r2v�[^�]7��7Q}�3�W����#e�J$�%.V��'4�Z��ߴv�������)�_�������}J2�e��$����ޫ,3�N˼e�{W�i~�(���a�b� �"�O�E|��q�ZiB��sٖsN��cc�5�O�3	�h�ʃ]֕��yI�&�`�u0i��t.~�j;2�]�C\��N��^nG��ͪ�vlxJm3	�"�	^
u����O�b��+�{�'��y#H�ۏn��j\E>a.�2���9|)F��|n3�U����_Z�Ń���ּ+g����@��V�s{pY%1�ӵ?Q����%�`�0i�I�v�����2���9�U��k
���\�玵�\�V{�w7׽T�E�Uȍqڼ
�x�d��Q�%�l�5�*��1$/#��h�U�+���g�����Ѵ�"bv�z
cV *`J�1~�J�'�w�e���|	��>�ڄ6���A64c�Z>/�~����*�N�X}M�]��VS�;��;W3m4h��X���.�i��y��(R�}+��qnk�U��*�R�݆��{9��p/��U;��މ�Oo�5�hZy&��U��}�X���5b�᥎��r;g�Z��hzsM����FK��@�ׇ�C�������k�.�q*�i�f�@�u5�W��,K�(ɧ���q��R���Km.�`�ˁ��U�k�)c� ���nX�6��ƾ6�����I�n�<-�[����%�W�h��n^�J�?���ğ�@{��Y\���Ѽ���o_ƾ�(�&�b��~���|F�텋���_{>�������웬�O��I��L!��o0#zqӚ����l��Ҟ5��՜�iv�b+Nq�Lt�v^�n�G��|9�j�!��qv�<�[�f#�q^a�c�/�5O��W�O�I�Xq�,q��ݸg/��Z�'���տ3��+���%��S����#���9N��(��Ƣ@W���+I�7�o<ѣD��*A��S��o(;$W�2>e��
�J�Jj�2߅<K�x�0j��ޛ������b��+�?
�S�A��E�м���o<��#��?6?Z����‹���,�!����g�W�|P��o�0�~DW�׃���u�I���t{xl�Uh:�M+�>�^g��_���C��=���O�ڜ�
��5�1���5����źL?
�O�/a:���6G�ПA�~Rx��i���Ot=��X����;U[�k��un�Ylo$�u#��G4�_N�����xxܯ���K�;���>���V����z���6�F��3_=x����-w��×��$Ri���
Ey�Ï�,��K�V�-4���0x#c�R�=ATn��}Q�1��b��?~�m�oZN�#y}ᘭ����ʋ��85وʲ�0����G̪9�|�j^��,|���.��Q���&�M��1�XI���]���j�O~�z����_
��X�t�H�I��
H�}� ����h���ډ�~9��?���"\�./�̈́��
d~�?�]_���,RZi^��ď���vt�9 ���+1_�s���x�νog����$��k�	�R��R�V�ٿ�����>��7��A��\_O��̍����_S_m��+��=��O��F�F[x��^�e9�a��ڿ=�/��_�Z�����,f9�d�_ ��8�W�x��
�Z��գ�����i�l�f��9d2�J�OȌ�_LW�W�����t�>��^�I��������!sTJV��M��~�|F��O��r��'�>�b�WF�UK{�_�l��\7�oox.�����ˏ�m��"�Q��_�_����H��s�_������e�ӵ�����򡔞I�W�zw���	���H��<Bu����C���Ϊ�NQ�5�'��z�F��p8*thJ����-zh�Ǫ�(�|xӧ�?�%��A���
�,:���=�T�0|j���O��k-�宑�-��H��|l��b{ה�����n-|1�>�i�s�1S�Հ�>�k��?��Ӿ�n~#iפ�mN���3Ў����j0���wv�%��3�MkT�Jkov�z9&��u_��­;��޳���T���]�,Ws��M�
r�C^ͩZ�/�n�$>�u���#�Cʓ�8$��k�/�?�X�CHko��<+e(�[��DZ*3^%�/�(��n��M?N�~�
��µY1��5���X�W���ͷ�g�'��
^�֏h�2��wx��vϠ���ݗ�Cwi�Z_�H�o���>�5��~0�P��-��
	?�򳚚�~/���ڦ�A��K�g�U� ��R��e��|E]l���j��9�ԖFAq<%J3(hNr=k�m?j]�N�M�D	u�M�px�|���3�t�_M<��	�&�����B�x4�� �W��l�5l���N��=�.Coo#���m�6�J\A��B�qP�|I�|'lou7�w6�r}��!o��?��([s�#�[>����mB�YDp�f���o~��=�9f
���5O~�^(�VO�xm��ϵ'+�R{�9�>/Xx���Qӟz8�H��L~�|b�VԾ��Mk�/�Xrc��}�^m�Qm'�͢]���S���3������V���3l=�47>��?i��K��df���Z]�†���M��/�G�7B�
��9W�?��O�
_�m���Mͫ��JT�C����w�������kmI�x�í�
J&���ϊ��ۊ�<(�U~��=�ʹ�$7OJm։�G�ʒF���<.X�n~���i/4o1I�/�>�wס�u؊���G(�U��G}���&��n�lo���H#������o���ͷ���;Y�3�*�z���/����7�Ki�ԴW�{�1a
�y����kͩ�u'��k�=�&S�������>/�I���1�$i:Q��;�v$���<���U����?�Z��������c1#����x�{�5�_?d�
��z�tTK�Ba��Q�>���'�	��l�c{�J��t�?:�Ef������>�{::D���-�T\|���ot��]���{m �ۻѭ��������Dz�o,/<���H�G��OFyI��<C���E��i��%����y-��F�k�?�?�
��n�ן�����o+�m������V��c���f]i3K��c��Z��昬;^�m~_qˉ����"���������;]�~o��O�f�	%A�Q�|�h�^Ԛ�����	S
�F	3���Y�>]J7F_��������q�����ӯ�E*d��s�v3_[��:Ѵ1��Z?���O�n�eo_�?�d��wdq�Z+���G�?�wZ>�6��ZK���K�d��@:b��#�����\=�N�)���ؾOj�0�1<�!!'v�zƬ����_I:�#˧-h����5{{��mom�<r# �q_�߰��[�����m%�D��w*	�W�ry<W��3H�a�i�cD�3(���?g<�_��Rj���v��ikvl����ql�Kͤ�����>߂�U�&rז+����}���޲�P�d+y#�J�-���f��4��z/!]3�~axs_�#{�j67B8�,�[>�����~�m�[;�}ە۟nE~;�����A>��~G��q���������}�{���y���=���˔5��X�[��K*FG�~f��Rѵ�ŋ����	?�s0j6�3��T��&+Ώ	��y�5u�W�Qz�Y��i�]���;��^Z���b濴q�rc��䖛�K2�p�ׇ&�b�|Q�i�p����#��z�|!�N�H���i����F�g�[���_���q\Xv%���u�k�SP�C��v�/�q�XLy��j���Ē?�&�!fa�k��8xj���F9[�?y���[�,���5wr�H��H#o�f�Pre�O�*�5<O��䦽���p#��˷���[������QA�i��Ҝ��N��)�z�+��p�]�9Iv��c���{���j������/`K�<#b��/a���W�o�Ͽ�^���vRAT��C�웫�?���ou��o}�/��[|��,%����x��>�8?d_��[\�gG��Ѝ���ɹv#���9��^�8[��,"~r���$|�#��i}q�4⎳���|��P�_�;K{�7�o*/�^���B�_{���)���w��H�5�P��ۖE
}zVƉ����3�/
Y�P�ç���k'\���x#�w�A%��qqp�Z�k��`�8�k��e�9�j2�F-�s���l�jO<�6�ά���*���3"�H���kŃ�?�
�k3�o<E��Ӂؘ�Ԑq�n8�=j��?aO��~F���~��|�x_�e�/��f��sK�����-����,�o	�&�%U�ϧ��>*~ٷ�
�}S�z5ֱ�
.z4�#�ڢ
��0⽚T�r���M�d���H��jVIK���o�
���	����>*x��sޥ�������%3�f�$Ӽig�3�g���Z.��o^ɧ̱��e��I����c�}��J�U�&��U����Y���M�k����9?(�_J�;��9�_�~$�ޏ��k><i/u�\��m4��/���<��W�qV#*�QP�NQ�R����v���f�|G>&�䓳OY]v����O�.~�?�6����wEԾ!�3˨
Z�X��$��~�	��־�����<
t��^�o�V;��}1��/�i�u�u�L��b4��Fn���W�u����5w��	���{�G�xMs�\WS��P�⬹���u��C�μ>�*��Q�J7wp{.�k��_|��>8��
K��z�ω�tK�w��6D���n������i^�sB�"�+�_�B���fA����M��7�?��~>�"1�Z_�Vɏ��W�>⾉���W�7�m7^� ���Sj�KϘ" �>��o��'��*�j��%����U�*u��QU��N�.��^]՛%���m��
� ��r4��],?�d]r�f_�1x�2�Q��q�-;���=_īiɭ·�l��K�}�G˽�q�[�>�f�̲���oǧ��}��h�Iv�q_A/wt�S�����Qԧ�����?\�!�6��R�R��ំ����ۨ���pF>�[��I��g����g����iUϸ
���?�o|1ҭ��t
�7ɧhM����c��#���/�*��?gxb��gû�L�����Yخ�$}=�1֝'�V��X�h��^����u8Z�E/7�����_���l��]x��)c<z��?���������	c�+~�3����I�7KS%ƕ��F��Y�ܫӯ�_���Ԧ��^2��e2�f�p��K����W���}?g�'���6��\�k��x�痫ds��c3L=^ZI*
��-��wQ��4%^�YT��{|�u���
�3�������3P�M��U�"mNy��c�Iz�My���)/��};�;[�N��.o�Ge�i��Ѕ�X(%}��z���W��M��:N���'�"�]C�l��������G��ڣ�����d�Y�ñ�$�9�S#8���p/_���i�_q�O�N1�+l���z��Z��)��
f��[���yon�wby',Oz��<;�6��(8J�L������g�.�<��ԈҮ�pKZz����;Wɚ���Z��pL��F�ɜ�l��D�:x}gd���a�� ��:�"j~����0B���AWt���Q�"G�ǖ/ɯ����u�{NJ���gA��v0+GA��~����;��+<����r�z���K�ڕ����zG�Ɇ�P��n߁��a����,h�m��T�(�x����~"���-�m��3��¿�L{�,�|�1���޼�O��Y��#����>���3q'�u}m��d�~��x/�W��|�]CMBd�
��W�i��O)�ܾ��*6��A��xs��I����d�]�ds���
�|���#َ_J�$O��&��?
������ܮ�H���`W��>�n|�X�ѴgtV��g��:��n�G�.��X#("X�#��<?���\'�i��bD
s�9�isJE�F7����'�^3B�m�M�S�_ &G�Q�k�ꉹ�<�a�͂�}/����R�#j�����YWp�W��5�\������SL_%���OZu}���<Z��]I�ϴU�-?�t�Eos��i����;G�V�VkBKx��c���H�-�͸�R�F}�^��zl�1j���6�J�J?�K�8��5��FM�Ǒ^K��F���-�Ei�~�	�{���r�״�.�lD&������3ƺ����.�mﯼ��pE>�Q\�3<%�7苖#4��P��g�x'Q��tջ�H���{��s�7�s����Y�>��[pq_a����m��Z}��G�	���^�a�h���%��_4rL��\?�N�����_�81q�囊}�s�����o��F
v$.rFk�fo�Z��_�Z��4�^�z�J��*��<��2k�?�[���Mb[�����^S�����=x�i>�g�o�c�@�}�]��(Ս���U��J
��'�=��]e4���;�8 �Y�
����nYi�>M���g;e}pk������Ŗ��miau>r���*;���� |A���Z�1����n�˽{�^�Z�o���{�[���̿����q�J}�#�/�W��Q��^
|=��]Jh��A��K���ٿ�[���H�_�^���U�]#B� ���
��,@�I�}Oz�y��u��%��u�c�Mrh�KwB�|�3��nzc��x����*��+�"Դ�&���^��E���U�Mn���3�n%Β�'E}��o��_
\�4,���ǵSO�f��y�A�'?�|���(���$�}F�x���Ll+K����K�Ϋ�Ko6���$*�����JO�ͤs��8�o*i�S��)�^�x���7��R�੊�ֳ�7�8�?���&ӵ����+��:x�͹*�׶�w���Ěx�6�`�q��^�
�ׂ�Ĥ����%�Pw��婸���*LJ�6�j��^)B���<�]3��ߌ��=��ﴋ����Uy�:ף^��g�߆���c1����w�V��NT$�n���e,�$�^.�4y�φ��̶S�H�3�A&��i�fdI��é���?�+�
����p*\��p�=*��~:���CG��]+V�w%��[�=75y�:~�SХ��R\�v}�N��}��{��8_��84W�|%��n�C*�?���ѩ��x�	5��s^��᪶��G�Yt��h�I�{¿>��[\�Nլ�l/�X���!GVs�k��үc���ߕq�ҭ��W����I�>����b��|HQ��pպ��#5��gT�jX�z=��^��c�~~�
��t��������G�`?��l�ː
t���y�i��)�Pk/�G�;�~�7�ŷ�m��uq�[\č��'��#�W�xo�jv�$h�)B:דĹ�:��jn�J�>��2�L=EiI��8-���m������bPG�],>8�k��=a���H��?\Wu�|�V�-�5�Ϋ�ず�/�v�mX� �I��&�I]���}����u�X�q�W��X.
�2�7�B�5�\�7����&�#�o�S��:l�@Uӯ��y��� ���!)Fꣷ�y��i˕�Ge�|+I���^��Q[
�wP:n��&3���5�Q��]�Gp�ٮ��
5ϋ�;�5�����p�Ю	Dr\���tj��S�E��#�4�f����/�0��z�֭wr�a��L�����}%�9��(�Ե?�|T�f��Y��K�!�qpsѤ����>
�q�/�_���<:Roھ�gZ��äLy�p�+�h��)F�`t��[i\9[��Eʽ��z��y;�K	�q�/e��*�v{��?�dV�.���C4#x����<�}G�s�?�:��kms�D���#WH�~�q_�|]����'}��PFϟq/�qq�In���f���]��L��bE�.%ba�V��\�8�_�Zim�~`�ʕ�g^\͞��?�?�z�������H(`$$d���s��<�K����{om������؃����
�音n�{�x��6��ޘ���۴�	�y�3]~��U�מ��*�÷r�'��GY1�I�}Mx̦�˭����G�O-�x-�7�g{�+~�6�|ڛ�ɩ���L�my<��c�*�q�Wӷ�����>Eg��o�
+T�HK@�S�d�� �O^M~����R/�l���'����Q�I��F�7�Sc�0,:zf�n�a��^�|�;ׯ�ƾ6��&��,�DO�vH<�1�_Q��ThSX���|�7�v��Em޺$�|�*X�v+�:*TczM.[G����.��~�~�?�s/�φ�گ���;��f�̶�Z�Oٴ�*�|�C�2dd�ȯ�~,�U�i��{�Z����xgD�t[�ὰ�v�Y$�Dl��i��N:
�K��΁�-Z�]��͸�Q�bu���C��5�x��d�k�H�4�h�hfCc.�m#\���MϪ��-���+��c���N����S��y���n�寣^~�9����W�<;�Mq�O��-�՘�Ce�Q��� ����E����U���+_�0h7���LH�V+�~�"��r��ּ+�����
/�-�-Gņ�#�P���4�Q�>O��<⽏�T��R|I��~��}[K�sj����Ov4�V��e#uel�����yl�,NQ�_ٲ�/���z��k�-�����_��ׅ>"_^|F�U�y��簊��T}�s�����O�zf�����]:��1�6�5�o\}1]�=�}P�Q{��6�5/��)of��J�1���;��8�T����5���ƿ�;��7�e��ҡ3�tuـA�����V�n]ӳQ�+��Q�z~=�����a**��K�Q��<���?�>Ѯ�-o> k��4�Ķ�n�n�@��K�K��%����M�G���4�X�"',v�7l�����K+��'K�W�E��K��]��"��F|�@p�C�e���a�WT��=.k;���j{噮c���_݌�y��؈*KSR�U��x�ʖ6���a����G_���~���|E�¾�ׄ����\L�VkX��ARf�l݂3��������k	?�+��i1?Eӯ��%������h=;׳~�9վ'�I�E�nj�'�m�k[����HׇW8�v��>h^'�i�@��!�D���'�a|�V�c8�^A,Oa^F��s�R�\�Ty�z�{j���p����(;�W���^�Mlz��o٪/Q���<$<=i~��:�����x�vѯ���W�|(���#�C�ψ�o�6���3D򘍼4(I2.v����5o��=r�/���7�:O�|�B��W�R�[2dG62ŷ�@���ރ�h�i��/��[m^�mu)o��t��
�1g?2r���`����N���5���I��D�g:�!EҼy��f�Z�O��~\�
����KY�k�-��{k�,4����p.��1�s�Zڞ��_��5����j7�eìh���X�s�JAl��t���2|;���㸴�χ^�$��;��gh�^6#ʓj0]���uy_���^����6�4I�Q�-���m�"gL�Y��K��ً�B�~YJѽ��z��:��0���B��J���y%�ϔ|c���?kZ��ׁ/�ڭl�n�aeUL��� g�*Dž�U�~�.���)c�`��;8b�K�T;H���5�����#�g�ᏌW�:�����C>�+>R�pB���^k�6ju=KS�մ[km[�xl��cra�Q9$3ڴ��8��fମ�h��{�a��KR�Jv��F�v��G��4���i6�/�����6;�޼��M�|X��`��}d����U�oƹ�]�e�r�Uլ`sf$����@��'��¹��ߊ�C{�����XH#}�el?��n1�܊�̱+�Ϫ�w}�/��R�`�>X;�]�_c���丼2I��1�3]���y:e�Q�HN�9R{ז��
4�H�W9���?�Cm~�8���[V?Gpq�_]�io?*�P���=��F��RCQ��	A�ӵ|�����L7Y#e;p���xԒ�
�G |��g9�wc)Ҕ���]_N�*���ch��>��x����˗�I���AT���B{W�~�ߵF�mx|?��.����ȿz%?t~"�l�Ə�Mm����l�v��ٽ3־�+��*j�'�[�υ���+<&<�ٽ���F|I����j2�c$��$��~�>��O�w���K�
h�}�m��ݠyW���	��_?^çhz��o�ޥw]�hջ����\���ՠ�]�h�m��v=6�O�y�Q…5jQIy���C�+c�gZSʶ^VZ/�Sgľ1�<U���K]��\�;�v�y=�Tl�g��i�ѡ��vnT���گ�[�����.� 2K!�����>��'���ku�`��#���Bq&8w|�1nP�e{zl} ��҆��>{��$���J�((���zV�������ټݍ�\�}�}�;꺴�j�q7�
@@�+���Ψo|E���f����f��'�c�`�d��\f��'t��o�纰��)+z]��&Ϝ�m=l��h�V`7+���[zm�����4�'��*��ß�Ÿ�ZK7�-m��亹C�>^1�޵<}�>xG�V�����c��7�(�c���FE|�#�(I%rk���g<�*���������;��i�Y]�M�&��2�����]'�|^.�!�4�+č}p�9�	ߠ_��k��h�>��΍�/�+B�p=�gֶ-l�����K���Z��U�C�DZ�q^Ds�SN�*z��rw����!a����Mo���~��~$��<T�jH4;L��u�]0���p�۵X��5?��>���^[$Cs2yb�ܭ���7����u-"��l>�[n���f�p/Al�,~U~������?Þ0����s�}n�Eе�i�Qdi�Q��>�>��x�^
t�Ԓ~�#�;]-l��=z��f.��ʤ���O����ۧ{4|	�K�x��|[7sxiak���o
��o\E4�g
����ך�u���⮵���4��Ś	~�s"a��־���|�!�u�<�M�\(+���l��@�#����?������si��F�a=��8�{��y��w->zs�lݒ�k�蹞�n��>���zn��r�*�v��%�e���+�	�]�+���W֞{u�VM~B�I��L׶_�ʾ��,�4-M���^CK������\����oh�y��$/-�@߽�0<b�@����&�v=]!L-���a���Ey�LN=�b���m���E}7�Z��m\�E��H�;;$���.g�ώ�����}��i�ɫ#���_�����אx௄>,�r�u�F�7̲G!�0��W��y�O��>6��YC$�5�J���K��s���s�q�Vz��DW1��i�a����a��Ybq�0��R��ZE�gmݯ�D�=L��`�Mƣ|���^��5/�|$Դ���C�>������u��+�d�u5�_����#�<e�i����.�`�D�Ѱ��l~���Px'ĺ���>%Ak-��1D�L��8��x�¿�ߋ��wA��<Y�;��W�I.n�t�n�L����������	Ռ\��Q���-c����#���zu��z�9.ڥ+�t�3V��<K�=:����L�m��ƈ�d�.	c�Nk��������cռE�N�V�Z���]z�O���8<ס�0]��m�
WF���
�O��U<��}EO㟉��8x���1��C^[�rC�2����5�8�N<�R��Z���k��yWV��(F�u�k[_}4zt��G
��WԼG�%�����ci��h�.�c���W�^C�KM�u?ũ鷲�yK[p|�[��
��������%��"i%�w���w�^r|H�r���
f�t�qϙ�M��}O�R�J4kG�����yٿ	҆�4�K�:���P?�	ӥ�ö�/�
���L�����+��f�t�~��.�ĤWSi�1�\��I%ϰ��T�T��J=��|����SV��_��4��bMf[{f��$y(9�X{Wğ�m��[4z}��ܶU2T{�����;�R/
iz}�z����f�YK#q���#��?�����N��_'�!����#��.+*�����4�ʝ�����u�Н����.Ww�{|���!��z����(����5� ��/|�Ʒ:e�do �y.��h��cU񽝠�L��b�3�Ÿ��Ǘ?�%dڦ������q�Y�m����^H9��Y^Q�=�]�v=ʷ-�_�gٿ�o�e�I�]��-a��� �_Z�~$xt��.���A��pq���߰�I�x/�S�kiI���F�t1�mN���O5��.����v����<x	��p����_?����ƥY���zH&�X,��2�1��8�-��f	1�+�_S��Rյ)E�۲��2{gҹ]Sċz�8����������B
��iZ���g�x��@\��O�
�_؟�.��g���~��$0h���S�P&Eز�I�^%����
�ʤnaֵl~�y��A�2��X�Fzc�[ʥHMNZغ�H��ʔt�g���o���Ǩ�}�G���+u�}A{��w���Wm�G�k�������W���3c�������5��������ƞ����Z�X�3�.�?z'���գ�Ǟ���z-���>Ih���OiC=|��6=���^�(�J
JM�7f���9l)M��7N�Y�x�u��6�eo؋�:_��MF��7��֘�]o
��N8��'=?
�g�'�M�W�/ಹ��Ei���y�)'�U��<י�6�-�O��a�=N0x_Q��,�[a|5y�PnU�Xs��N
�t�X�����$��/�:��O2��ywq>�c���3�5Ug78��[?Wk����a'F�S��v�W���4�i�}{H���o�Y���	R0�b�Ǖ��0�;���tx�+�X��4���u[Ŋ��w�������+��Gl��7�i�
�Đ�WF�h5����7�$�>���9�Z�n��f?�Z/�<=�/�^�&�#�l�]8��4r�gk/By5م�N{V��-m���K�m�W��	_�EQ��[Y=m�4��mn�3��!��|7����"�R�V�J�Q����j܇q��@�_���[�j^��g�X�h���
���0�dt���ظ>>I����
[���
孼S�T
�,�Ld|�׭|-�|�I�[�m�K��t�K�7�l;��FS�@�#'Җ4�GN4�w�����-��v{:��U��wZk�ݚ��������Ix��z�DŽ�t	<{���$�q۳y�fV�œs����O�o�H�/x#�~(�-���\ۛp��`NeGW��� 68��c�~���A.��j�5�mb��mE����`�G<sU���H���ݖ��wR�-k	D��gre~\���W�V����N�,��k�wk��G<*t�N�w����T}7���_�5��F��s=ƅcE8,Ԗ��+W��<Me�/|@�W�R�῍a]CL��U�[�h3Cu��������?k��NkkKKa�&���S�Di*�ɟ9T���@��|y�s��O�d�X��7׍}?٧Com]�K�g<�V�|�n���M�����孙ҧ(Ԕ���2j��ޖ�c�~��Z�Կa��x�Z���,{<�%W�d��>Q�8�����ׂ�7�j��^�g�ct�-��{�������ҿ|�Q⟈:lz��7��K��gq}i�%�nF���)�C]�W��x���5ִ	XE�ެ?g{���S'c0�T����5�V�R�r����ML���!Gk��[�d��T�.5��m+M�D��obb�i�~�I!�4�.z��??n��J�$�[��4mR�͝�>M�J ��{��ߚ��J����j*>�,�!��6���Hf��Y�5cQ�0xf�ŗ:Ɵ��{$6�M���Lio0��YW�x	���k��qj59�EE诿�z/��=���_�|c��_Zj�q��B�(c�$o��+���CN���P�B������pe�ogH�m�U7I�'Fy>�d�Rx��|S���⍝ݧ�t/O�\F�dZ]��	4y�rxlu�5�~��LO�CT��}��	��,\E4�:��l-�A�d<���e�(,L�i�4����]�T��i�i��^�4�>��<�_�ߴDZ��m6�:���D�����aܭ
�c|�W}+�i��)m��Ƶ�xKQ���Zz�Y\���cKy�]�aG ���s�6����Q�|"�S�����'��A˼+��//��
��5�~/���
����,����Z�l�Ҵ}��L���N;�^<66�8��ݴ��~K�笿�iTr�[�ͫ/w^�Y7擷[����%៉�;�l�k�7Ռ���6~��*DyWi�,���8�����֭~#M�
xM�5��[H:F�nu)�Q��q�‡�+Ձ�_
k?�Q?�>�K��
����eěL�"c���-��\n��a|c���f�Ҽ��'	kd�d�y�E�~��dr��Ta�ۙ��V�_6�6#���F.S~���g������|w�j��5��_L��̊�)
���j|�@�#�r��7��f�{���(�d�E��
�	��G��s^a���lj�d��V�s��3Y۹f?\�</�h~f]/K���2~�;~�ԓןJƜpԣ쩫��+G�}
�q���LKj�?�.�����A�����7��{q�s>�Rgsre,@�x'�l/���n��j7s�]Z�8����1�9��j��okV�����J���i�d0:��ڸ�)G��s��Jӭ��-��#���8��]�d��1����~�Yv�[%��c�C��y��J
��K�'��OVsz?���S�K�H���Z�N�p"X~�b�>���|�5��A8��V�'�,��Oj���/����?>����]��6?�T��w�
6G�>�5��H�OB&�%% l	s����`�A(u_��_����yGn�zf���%�n�ѧ���{՟�c����^��T�>Ӿ4h��S�`�Z��Z}���u�*�p����r:ׅ[�B��:�_�2���w2y�
�~�Q�y��+�'���|:��t�<�k�
�Z��ҹ��(��"�,�u8��3_r��������ſ���<O,���A�Vm>i����N�m9%���f�EX�ӡ%̒�z.�_�4�sOd㋝7:|�7���򾞥?�� ��D	�_Z�D����a�N	k过���ٴ��!�.~Y]^?7���yv�l��uo�Z�w�����:m�mo�{��l�gs����k��?
k>�V���5�
��x����y�r�=��_��X%M}n.�wq\�E�io[#�:|[�r��Z��Z?vW��ӳ��.y.��~koإ���4��C��'�0;��B�j����c�Bi�n[9p�x���S�=�1��,�����.W�|cg<j$g8%z�=g�?���4��}����Ki&�id�k&�d����|=\�Vx�VN=\}��X���j�����׷,m�ғq�����n��+����i仺e��Ci�H��`{f��څ���i����8��U$��W�?<Oi��F�������U_Iyo��iX��l�Eq�>6hV�E�f�K�k�����9vl��%z^t2�cS��9+ig��WIy��=�uQ8MQ�����{���<����3x}At�b�'��̷�̌��*�1ҵ}��]A�,׋3��7obGsֺ?����)lı	.�M��iy2N�>�=q�MT�o������P��O�줐DV��I3���i�{檼iӧ�8�	nդ�����i};!�u�=jz^�٧n����/�����ב�WB//��̤En�oZ�����:&���_��<�y�TA��U~�^�[[k�f��<�I����e�ꑳ*6�q»���q��'�S4��q�ӊi���g��Om�e�u`��|��mS��O�}���O��i��K+J�%ͫD��=��N�߉%մȡ�G�(m��pA�
�FA;GRj߇5+����.��ō��M�8b��Fyg����s>�t�c\3_��\��`�,����qҶ���j�%ju���-5}]�l�=O�§�#
��5���ȼ'u��XZ_i�6�Y[�n���l��}k���o��G$��tqr�k+��+��R8#=3]���A�<r�i�}�1@ʷ@%����_��%���z��o�2�9�A#���	*��(S�|�Ӿ�&��+�#Ӗ1З=;�}}��#�?�_����.�e�����.�QO�M���_�N���d�Hݒ<�'t}+���~%�gԮ��)��1s���cc�FOv8?J�~6���=��;C�M.6E��k��P,2�Q-��+ש��&�Ɲ��Nޮ��V̩³t�N~vZ�74�y#�����ƬѨ�Gn:}+�~-�q����j�xb�-�T�G�X��#	�AB{����?��<��5���{��]Y:y���n���3���Ywa�V�X�;}*�2u䄼{x��y�u�Xa#�Ӝ�n]v來�FP��VR��I�~�V�N��ƍ���wQG=��o�����R�Ӯ+���~&�sxf�JѦ�����1�^�f�.�e�����U���?<%�^���m3I����H��h��>'��K>x>�"�.�ԍ�m���w�[=w7̿N���^mU���f����K�o�0�++�e:������{�Ÿ�k�&�f�^���a�>�5����0dx���\���j�$���I�ԙ�0�$c��px��/�O�,|Z�
h�Γ&�.U/���ƹH>3�K��������V�2�nJ���}�>�eW�8���^�z���pP�����v]mn���>���\�	�[�-����ۜK!n�E���|+��+y��j��n��K���T��@�s-�*F�~1��&����_�=���:�������@듞i��޷�H�
��JJ�����h�E_����9��ڽ��+�`d�CV޲{��yx�k���v���~g�_�N��R�H�~��.M��V+}u�{���y�>�)z�Q^�~���/�F��%еS���I�ͅ�Y��Lѫv}��֊��͵-���#�6��?95����u�-u��Mho�q�z_��W�'�E������.�e�h����R�{�p�P�|"G����s�F�$9$��>~�|��#��ң��(������I|˩_1�F����V��X*iR�T�=r��q�օ56��W��������V�ς�V�R��5��'���#�]#����3D�.��ŭ���7�{�s��8���]�d�&�$��K-8A�4BGL�f��$�>:�#[�ŷڎ��<m"J���q�>��J����o��M�z���f���(��G�k�۹����Q�Z�V�*���f2(�E�90�`2c�^Sa��+PԤ�r؍L9��j�hh,W���Y0�Rbo,z׏��:�-�G8V����V�\Eg�����=9�Ŀyk�v�=���&�C�8���o�i���)���:��a���_�<i��H+
����m~��՟|D��o쒼�[$�lH��#��|ˣ�>#��s�u[�ŕKKl
$`6IyN�׵���Ճs����o�#��ؚN<���@��~"�K�5�Q�]�WH1q�ѿX:g���IJ¤19U�
t��Q���D��/
|(����B�MKT��`�b�F,���c�q_�|c$�$��8‘�����޾�.���p�R���*�aJ������h�&-Յ��
��H�~VI7
�|�q]���&�����񥞏��Z �;5
�/�I��Ϧkít�KG���G/o}[�m�+)���]�Ci�m��={@����%��-��f���z�1F�'�A7���i��=�YTjU4m-�~L��ׂ�	�ۣ�&��X���B��zW�i���W��`�7Eu{���.P�dzg޾F�~
xg�:q�D�R�믕#�������:$��׌4���^�+�x�CZ�qu%M^�%��w����F��L:~q���cW��ï�:����u��ꚌF�Ml���Q �M�����Rxs���$S[E�Ox���}�څ��!�{mÂ6��*Oc�ƨ�Q�����p���>�Y�w�*��rc�yF��M|^[�%��ʄ��7��z�~)զ�#�{Y���m�܏7��!&��t���o�>���7��[Ol<e��%���3@�_�"�;
��Ɵ�o��?��@��-��_eؓ��50rs�ҿ=4_��jZ��iׂ���������ᆃj�d�7Ӓ��n�⴯O�wM7��q���12^�?����w��Sյ��/.�i�|%h2N��Q�w5f�E��mm�^_�6�C�6��ݻ?i�g���'�v�+��B�r�6*�i�ER�73�<�[`1�½_턣eF/�������e/������'��N��'M�Ax�~'�j�%������Q�4�\�dc�H�5�z�� j�������+e����PX	�Z�<}kT��Eĥ�R�]Шv�Z�t��@0��@�VԳ��'(�G��rO��Orx�?�_�F��O�KA���~?�rB�N�XY�Xc��۶2q�]?��6~�?��-��g.g!��<{3�`r�Ls�����C�|Wh?.�������1�6`na�]_�4��=~K�����N/ݨ��'�X�������LJ�c�$���M[V��}���A��i�<�?�?f��(�M��|8�2�e�w�X:G��d�I�8y�+ּ	�8�I�R���.T�9��a/q?�����-.o{_[�����~�+�O��ز�LR����|��S����?i���A��Z���R�X�P�@E`���/���	�7�Vwz;i�����	��99��<u�d�b3=���۱�aM���Gn���ּV!~ꓗ�m�Ş����qS~�Vv���Ň��/]W��yO�=���5�Y��&��d����<���=��uO�^1����J�ޱ,O³Db\}}*���w�O��^I��F�'�>�Q�%��Z�Y��g�O%ˢ�
nG�|*��w_>�O����~-�����kh�r��#��޺}C�s��	���H�2�
�BI�k���|-b���x>n]�_�k�x�s��s����(��"�»�A-�%���T��I�9>V>��c�U��W�-�Ʃre�Q�[Ŏ��~}k��éw���z�v��g�S`UD�s�1s�=�1\�U%-�zꛕ%N;�-m���^��@ci�HX��0N�X`���g�Cƿ
uojQ��aee?8S�*�����/���*�2Ȍ�^�H��+��Ee��)��|����+��1��;��L�8d��E��~�?$|Mዿx��H��e��1���	�8�RI�Qץ{g������ś'@�V����v
^2-�������in�?��̻�8��E�^��M~c#�r�:�%r	�4��:���-��*�p0?Z�v<�FOD}5�����(�A�'�`&!�=ƜOݹ��}�@�G�w^*��]6�h�a��Mm0�]�9�<��W�?�OO��O����Y��o�؟Q��?�'A��W!�R|[�'ִ���6����p�Þ	�_�c3��3j���v��_�?�2l��YE(I{�sKե�+/D|s��:��,p�3�+">�S�G5�_?mO�_���?|[�%��rMlG�Ll�q�E-΂g�"����{w����q\��
��ȉ�L?�����k��c�m�xx��YZPL����p��1�׀��x�Dھ�
N@��vp=k׼?�B���'��/�K i�Z��W `����;t�����ך���
���;��8��$�.��h�tg����;�ь�R�9��X;:i�ѵ�3�����ևaa�/�tA���#]��H�ل�+��>�O��R����>;֧ŭ>�qy����h]�;�c�G������1��6��Ȫ��/��"ڪ���Ny�^N'.�+��U���k�m;;X�heY�j��Q��;}韫�
���'�e�Z�L�
R�$�n����7>���Y�s�8��mW��\Q����o��A��̱�E.�1�4g1�ҥo��12*�&z�f���=�PRT�{{�?�Z|�Aa��U�e�����_��xЬ ��њ��F���Z�(ϵH�z�q�i��z�v|i�԰�m�H�������m��b�gerp3$ӟ�K�*����r؀��J|�-���Y2�3�9�z��Q������
��Ż[�бx��'���b+���Z_��ߎe���ŭ�B|��F�!
V��ʘ?d+���^u a�׃�5�������àkӻs���Lֱ���Kا.[���~���W7�����J��o�G��_g+
B�S}SS���?(�-eT@:nL��ޏ�}���q�k]/S�|U=�.e��ѐ�G�-�H��v?�|��'G��K�!|
���>Fg��P�?��ǚݼN�����0���?��O�x^�J4��V�����x\��:�:���\��q��*	"�+�d{̶��#�zolLי����|O�-����kKv��z����NO�E���"�E�1��-�'�G
�-�~0�j[�')�Vsg
oj�@�\!U�g
�0�]>]�czy6:�ljr}��/��_��[�5����i>Ѵ�-�Z������Q�`z{ט�������	�mG�i�F��j�"3�'����c��z���.�aRG��U��e���ۮc�K��7�.�u���x
j�j���xj�{Y��K�>@��'�<nC�jz��_�%�g�O$��>թ�/�v��]Kf�DFd�RT.=��k�~��Ag�m�r#Ic��:w8�~��
+����w�W�~k�!�~����T��"��$�B�9@-e��!�!d#'8���*){8�޿�EV�2�2�6��_������f+M.�Dan�������q��5�?
����g��6��n��2�@��`Gz��'a�Ki�j�:���Z�Ɲ�t�}^݃y&�f�d;��
�^i�~�w�u[��:e��k�y��d�G�#��֩��Փ�����>���}�#���(��f}9����{�ܬns�B���&�[�x��cW�$x>H��E6V���C� gs���_6��|U�Yfk���2L�ˍܜ��5��|#�3	u;��A��{Z[RN�%�~?4��͋����=WT����z������T%��[i�I��v$��^o'��>ٶAam:/��Ί�[�J��>~\k�'hP��c�,�io�c[����YVݭWc�ñ���_T|-��|_�D�
�Z����mI��X�Xt�Z�u��4�Ւ�/����`���L�~8�~þ&Ac#��T�-LrYM'���~BH��&>*�<��h�>�6�'�l[�}o�w�/���^({k�
��Ix��ds�Ց�U=G�G��*u���+Hn�������}G@k��n���˧������U ��h���8�ſu���SĺM��6�h��pH=:����!��8i],�����RU%�B�}�4���C^��WU���ϔ[�G���<�]}��9�_��W34p`0���!��?67��g��t�MJ[����a6�|�@z��������e�xw�ޥf-%�"�_!��q���<Dp�nw�[~�z��ԧ�[Nߩ�����?K%����H�������Q\'��*x��6�w-���G���cE;n#�&o������ �?h
Bռ=���k�
5Nd�,~Vq��#Ҿ��7��]KS�P�n�a�đ�.��/�dM�w�x�^�:�H/iG{nլqR�'�bZ�l�~�ρ�/>�IRf�Xm	����~]|Y��<5�ZZ^�ZՒ���N�U�����M~�X��=�g�
kj�ς-<G~��nu�^TG���>���_�_
|�:��=��9��[��K�:����]���-'BU/6��}�t������lV%W�I�^�z#���	�w�/�>�}�_\a�b��avc�w,�_Ny��������{�G�n��c���<�men&��ê�G��޾˰�/��$iO#��weU��<��b�=3�k�����ߪk�7�Œ�(S�q��5�,�F��iʅʣ��J�R��}�#���j�1���%x��Ak��@���hD�p����.-�0}�GA�Oz��1�>���|~�'P�Y��A�Df#��� ��{ͦ��i�[��ԥ�&=�r#?wb�=z�Z�ͧ��X�4X~u��VD#���C�/�j�����r�*X�T�O䢿;�?j��O��������=�0���'�yl���A�#������Df?|Mv��J��n�L���l �G��E�}��B���.=�֕a�i�4�3�%p�����AX��B�*|�
���ʭC7i֩��Dxd�O��QZ�1|E�g�̎1�$�c?��S��:�j�3[���ge̶����+�`mɸ�[����x���/u�]Z�Xm%�ऐz��^%bR���W�̟�b�Z?Z��+��O�������͵����u?��ʱ���#�^��F�<p��c��ug�Sp�Ҿ��𷆼+K%�����b_*5Q��?!��o
��l��P�x���7���zt�J��a��lN�5k�|�|�#�	������;W*4�IRF�a�O�ּ��g��I�ľ�f����X����+�<A�h�5��w���j�/�1� ���F6l���x?�}�E�Vd���?�_��L~>�Ujӄ��+_s?�~B�[m�1�w�@�o�洭>	]�:�Y�Aoi$����$s�޿Z~>~�~��qs5Ɠo�krBUu]9V�����0z�r?�_����?�!��K>�etaK����Y�ȣ�h���c}�8����ʳ�>9�r�˷���?c�]N��q�-nY��9뎂�o���:����5��l��u�[/�~�*O��eψ<u�j�)�ñ3j$�8\���ȯh�B���|e��nZ����i�!���V?��3<[_=z�)+Z�:��4���{������{+�^�k��8ݒT���ǽyV��@��ox{×�(l5���݀�F�Gnk��^�|�J�6�g�5���28����(?A�|��{��:������;�_��l�İֹ�U��kW���M��<<�0��'RZI����J-yI-��.x�W��@���E����Eo����Ͼ+��uK{������LO%���1�q���W{K���]B�o���B�>M*�O����Y�WGve�٧K��3���6]�o�:C��Ѫ��h|�F`���Z�C���CŜ�W�i?�a�SQx<5�w]��}�vL�x�9�`z�`�.�|S��#�c}����rA��Ol7#�{�&"�}س��a0�W�����Z��趩s|C�D�p�y�S�o��քэ��N���pH��O��N߇z]����Ś�ݼ����l#ӭ��M�����`�?��|9�{�#��7BЬ2ɯx�[�%F�Ĥ/�"���yC�S����rg8�/�%
q�Iy$���5�,�xa-u�VH��Xx�J��$d�Mp>!�����V:N����f+;	.f�p��(<��}׫~�_	���M5t���H��?
b�P�.%R	�������7~�_�_���·��M%bӴ�N�;+���a�,	%IA,ʹ��r<�Z�?����^�_Nf��t<���R�p����ը��������?�W�&M_L��0�E���%�Oxm�2�5�C�
����VU��}�h���Z+(�U�����U��?�|:�uk������SyvЫ9 ;��<z��4�W��Ÿ���O[�4��Y���9����J�؊�2�e�d����k-����h��Y^a�NX��'��v�����������u
wឈ�>n�=�/��?#�J�o��h�M7�e'x{K��{kKK���݀G�n������ύ'X�=�jwnS�ix�,Ts��z��i�F�m�凋���o�]�<��q<
ۗi=ʎEc��\���ھ�_֗6��g))R�����{��f���Q�i�$I��9�A�'ӊ�X��#i�#���*4nKx=x/^W���?�a���E�x��I4%ЛO�a�����i2�A��Z�|e�A|n�Y�׋`ՠ�h�FCa[��!�ѳ�5�q�T�\>�WJ����kK��G���P�oX/�ߏCԯ����]G ���:%�ɢ�#?�ָ�����Wє����J���j���!�>%��~7�A}ĭ{I���ῳ��>s��h����=*��E�$xmS�1�֊�Q�ހm��r�+؇du �G
-|�oS�!�-� �ү�6�$�������u�6+�
��K�x��m����y�pp�\爿�ݯ��s���������]1��a���
��éaq�jVwp�)V��Is0�F��=G\��?�5]�]�<g{��L���5�O�U����~�K�<�n$��傡8V���2~�v<cU��$~�>�*xw�Z�Q|�A�E��FFk�<U���|q+j_��#b�������=��O��r�3[��w�->�cL����O��\��~$�DW
^�r�6����������K�Tq��_�eK=���=��$~i^|3�g�C0�g���K$�[� ~%q����լ�
��wf���tgV�#����X-�[<�Z��OBЦ�	��+\�������Ο�k�]���`ԴO�ur���a�i�l.Z�[�b'ˆ����m�՞��<~_�j;]Y�j���o6���������:���L��x��v	u}7�u�ۍ��ۗ<�9��c��%?�/��<�hku���XO���c����YWϗ��N��g|7���_�=�����+g�(���*���aP��AҼ��"�a�w��KI�{_eewk�h�2�5��ɹS���GEe}�km���㦿x�%��<Ap�7 [vUa؎zWQ�O�s��D?��X�3+��Z���G�o�|A�%>
�,�~�;�U�����¯ԁ�VV�����h�,�{tL� ��s�W�O�����Щ����~|������z~֍U8�Vk�G���w�I�-����V�b-��y�v��^���X�����s���K��n��%N}kо~��+��t��MBӴ�VY�]='����0_^sP�b��f�����~$���k�WJ�-�6�F�8�n�铟����#Z4�]R����a��&��%��y�Y�߇���_^_��<����(������ʹ���~#i�g������l4�_(x���U�x�'��W��6�j7��n5p��䭟ᶅ|�s��
�|i��������c�MC�4��/
ء�1����Z�'�U�<D������4�R\�R_|�V������I�X���[
8��-����}����/ |�`�A��3�G�����|ey	�ާ�F�fX���(�.s�V�`��2M����
�����K�40	�*����t��y\g�w��O�8�7�i�<`Iy����Rp�����W���`�˖5�ٻ|��M���НX�Vm�i��J_�8�P�J��z�%ާ���b��dz5��h��^�k��t�>���%J��/4�XY��wz�e�%�F`d�~YYK��d��z�%��O�ۡ󌐹�a�Ea��k���u �K v��q��7��:t馦�mt�=�]��Z(��g����V��<7Ÿ�A�iB-Wk
籴���v��2	<z�߆����1/)Q#��f��5'��W6�pvl�М�.�ޕ&��Ekj"�eH�Ϙ:
�
8y��U�ۧ�~[��}lD��݂���nM
����0s��5`�H���0��K�1���F��4�1���m�My��juk����P�FJ�{Wt(7ml|�hJ�����H�>$�^�ki�{����>��Ey���in�CHI��4S�Q=�%c_T��q�hw7P�I
	�En1�2}G�|ékW<s%���suu?�,����oAW�k�^�f���ї/m���[ןBy�|��#k�`��z��8J�����1���i���^g���1���E�(%��(S���N+�'���K��1A�3�6+��9-:���-,�] d��;�=k����K��֔h���uRd�c�Oj�������_��΍-��g����sh�N1�� ���9�?�)BV{-u�K�\SS�qQz��u>/�慫[�����D7���Ω�M������_���/���]]�E���%�Fm������>dw\=�ӊ�&��Լmsm��WOg������wVcێ+���[�ʥ.?w�ʀ��rf��<,=���M=�gg窱�aiN��R���b
r�.n���O!�5ʝ�L{��ި�:����4��W��Vܫy!2Ƅ�y8�Z
�g�Cj�F�9@��3���ZO	x����y-M�ga����d�G8�ó�'̱Ud�'�>^}����l�-�F��%��qV�
N��d��y��{j�hm�ZQ.yh�QrF:�aɮ�A�|?���G� ��G�$p��n������mw���{e1�Kc`=F=���|��'��}J��fܸ�2s����5�8�l�ė��U!8�JM5ӧ�]��ݜ�o퍮�*�#��ڹ��5���/��$�2$*[d�h\d�����vk+Y�K�x�QK�V�H��5Tm�`�8;��k��L6h�X5�WnQ�K�( ��Z��r�0n�k���=$��}��}R�d�þ���_6x�.�L�g\
���A��7���<�h��MӠViZE�����Yo"x~���"�!�E3Ľ�����}kOI�`K�lnd):�hϽ@����J�IJ6[|�VD��N}��e�/úm�}�2lI�l����w?*��t]-f,�D�>�6�}H隣$�q>V�eG�9�{U�!�e!U�!�6�u�̞��'-�:�;U���X�U�N7z��!�O!��$_�6�Eq	�N@�2F=	�H�_�,�(��I=}@=/k���o���k�^I�J.�G�Oq�/��q��~S�qVd�y<*�G�T��~��+3M�o�ǟ�)�[���گ��zls�++c�ߥmJ5k�4�Ź=�M�Z�֌���$�����.�X��P��H�o1"u�8�[<��t��,��i�<&U��fv�����+���u�Z\ꚜ�6�'�iT��q��U���|��j��6�����E#=�8���	ͣ��|J�1_�k۷)����	9�w�,j7��ٔƫ� c'�z��
��L�x����&�QJō�e�~]��
K�f��f�~�sY�Ne񖧸�4�έ��YA�ڿ+>(��"��~6�꺞�.�gw���s�|��p��?�~�K^���m�e�O3�p؅K	���z��z|)�}+P���$^1�Ȕ��L]�=��{�߆����KÑ�Ԯ4I^�Z��}�Ō�#���l�i�|2���ܝ%��_-�_���
z_��K���/k���׋5۝:�N��77HŸڃ'o#'�|M<����JϪL�SZ0�x5u������x�����A�.�;Mr7�b��c� O�^_�7K�X�O���-υe���Yv���H��@�������c�.x#P:�������$�M2y��4˃���Gps���_���c�^��U�
����.����,�@'���������u��z$�����{�G
^�
.x7��i�4���ۧs���o���a���su9���Js4�C
�v�`����r7�+�}SS6���f�ض�j��]̪�e��$dʜW�><���F&��-��dvD��X���#���oZX�u��>�Ȗf�@_��[
���_��w�w�_u�bu��W�>����ॗq��7:�����b[_0��?t���1��W�k_�@�d���6�E*��n�_�5�V��Iѡ���iR;� ��Y����G�=/�:L�F4�A;�I��Z�0��;u��i�tej�՟U|M����X�W������Һ_�?�w�7�����j��GKq,{#P.UCNw�5�|.ҿf
&��Yj?ui��67�cҴ����d��
��O�����b��}}��+?
�[I٫��K��R�e�x<�Sɯ"�
X�r�U�K�w���l�^�Jq�{�����>*��<]a�o�;HmPo��5
Z++K�R�>Q��`�;�W1��������X�m�<���h��U�rv,1ܗ�8�M|	�ZͼK�&�\�#�5�o%����M��>�)��^���O/����~�S��ܪ�&S��NO?�gS���ThBҊJ�M��m�F�d2�7�T�$��U�ם��>��?�?i_��<[�M:]~��nd�#whuH��Y�|Y@LD2g��zO���D�ށ�=�����S�{��Pbr$x�"�G��
H��W慖��_�iο{�YS���O6��d|������k��f���R?|D�㹠h�}kNG���к�O�2���1P9c^^k��=�%s��kKǣq�w��mc�Z��'��W�mm�+};Y����>����}.�?��S���6���6�ɏ�h�^<}�=k����%ޑ�I��t=#��� ��M��:��6�� 8gu�W�L�̞�s�CM���^���H]�6C s���W�~�?�-c�嗊�Q�}[�� ��햞��[dQ��I(è�	�:yD��P��N>Q���X��ai+U�9�w�����/^��Q���N�X��ߎ�%z���ŖV&�p^X\���<�Z?	u��[�&�?�-��Ҍv׶ڮ�q.�{i�ʚ.G��r����/~�Zg�wo`#��6lmo5;6��B@^"y92y���>=|K���
���3O�A*�e�YM=͝��X� ���Nk�y}5��8kƤ�h���]��n��1�%�Z��ZY�����<_���M��K�-~��Aj�=��Y�أf����3W�����֥�};�^0ҥ6�%��K�F��,n�
��Gz�]�6��Z�׋�<#�.f��z�x��Qz�F
�Z��;�
�\��h�_��s_�[A�|S,�d�})�M&���Yع�/ˊ�ѝ�:w���kۧe�݇����xl6�Mh����[��q�^�w�~%h~%�>:i�&�P\hvzM�H��(�/y�O <�z��[x'���t-c�?�+�It+sђ�|��U���'%s�_)����|�j�&��_a�-04��ˬױ'>zۣ)u��	��^���K�o�+�[�/���TQX�/����k�K���� 2��
���T�F�R�I+)Z�^Vo�7ޏ��`+T�s�m�쮼�.K�+Y��wu�,�.�����ͩ�����o�yk��#<|�#ry�w�:7���7���Z
b�D�e`�2��"�+0@vU�د�5�N�o��‡�ޱ��\Ѯ���:K�-l^C�Ē��PBneo��/CӼ+�]
�þ*�G����S�,�����7���r���Epv�Ⱝ��������}"��M����1�ظ8/d��[z�����~FƉ�@^x��i��Gӭ为����Y.|�f���3��ψ�Ɲ�/��wï	�Ȇ�P�W�v�R�T1����D�ϖ�/͌W3/�_�z��c�xz�C��u��B�����Kqyom*�v����+�s�W�����D�"�5���߼�Id�B�3�#��!z׽�eX\<��J-'����e��׵�<~s:�n��m{�%{���ٮ��?�W-#���t=G��X�Gl��~�H,��#��fY�y3�&�������K�ĺ���c���DX�mv�r������2�����i>?�t�����+mv������W{�NC��!7p��(yWg��U�;�8��)��=��`�>�t��ԣ�h��îrH�ҽ|"�¬k�e9N]�$ҳ��ԯB�)F�{�S��I�%g���`�������h��Sq���i��ݬĞ��UP��qӚ�<S���>��;o�/�/	�S���.���	�������S{_��:Ӭ�-�<;$~[5̈́e��s������"�����ɾ�A�F�s/�/��Y��L ��7#�h�8=:����s��.�����w��֎"���SpW����e}�ޗ>
�3�C���S�˿��i�,��K���ӯ/gԮ�s��B�G��gr���_�����?�?hKO
�C�u��Z��2�F�tm��	���he$p�+G��s�w�ݤi^ү�uO��7�\Yc�bФ���X��\�e?)88���_�����������6<ʲ�3�V9���n{��4�aqxy�I4쒽�]+�#���c��^�+շ�F�Ӿ�t}=�7���f��x3�>�M��͵�#G��UR�
���,�O=s_?��J���]I�+���=n{�Z���l�<+�MGGӴ�k�n�}0�G�@N���y��>)��O��;�}oOD{
4g�p��������\t�U�Y�I򫶺��c�{+���Ҋ�n׽�����̹y����c�Gh��;����ݿ�y���a�B2�����3����<U��sJ��}gN7+?���]���x�㟆��X�l~��,Fu��ּ�P�).X�菨�]�s�{x�k;X��Z	D��ё��U/��l�JF��c��WbO�^���oJ�/㽺��q��1�W~&�3�x��J�뒧��"��J.u#i>�ɸ�0u�	^I�ݞ/w�u3`Ƨ#�֖��]#���9Q�@�+�~�o(x����t��������,�O��{W�B�y�ς�+��)����,�X�=Ɵ�fH���i� �X�n�,�F���:�H�]����oQ�=��z~���{$�DA#�W���?����i�vA�A�j�����p�c��x���b�F��$w҂�K��ե���ib�88�8X��^�����5O�6W�~ӧ�ay��/������t?a�>��~>��mUm�u[^G
a2�G|���>��u�oF�+���9q�/���g�[m*�yi,'�fQ�$��"�E�_�y�M]��Q�X�T�y�zk���7B����{����c��g������I�4�MnD��<��d�n_������{�����R�,#.�[=�x"�@$�S�_�y���+Kv>e�Ϗ�]���|�M޻��E%���Y��2����Mp�N	UQ�Nom.�4ym[:��նx���hj���5�>�į.�w~o�O}:[ǹÜ����䃊�$�	�nx3�E�����p-��dD��Nk��Y_L��O�Xx��ޥ��%���*"c����P~��i>!��̲>��_i�v���	|p3����xn8�Q��Q�~�g�,�ѫ*U4V�=~�L��l��w�ԀJ?��|�c����h�%���-�KXbo��e��:W��ۣ��8��� x��v�JCu(���~rN+�<�����_�j���-��X�*���0����
�>j�I�N��}Y�Q���y�~�Z�Zi�i�~vs��׊}���P�D0O3�\W���pMc@�/�596�����GВEw�����4��g
.�#��~qS�J�zOOO���G��&��g�]]-�'��?+rF�n}��BO�-ռ���$Y�$���:���B���~i��
xՙ�
��n���v����~i��ϋ�h����"�f�x�>>
c���6��]����
�b����}Ō7�h�n%Bv4ɖ���j�zH��E�H�s��|�����?t-Ec��>&�wdSi�E*�y�q�}��?�t���)%��᷉��	U-ql��c��]T��k:ӷ�?�c�*S��#�=?B���ۙ�!bMhi�
�?���z�ԅ�������o�;*��h�
~ȏ#*������v����_��ɣxs�:l~Rc��E�n���n��s^�i�H�~r�3��V��q�~���~��~��sԶ��9:�T�TZMFO	�<&={�{{�H�^�"5܊G����|y�|�~����M>�T����G������w��SO�^'���u��m9������9`FO�W��wO��h^KO޻��<���9��2�%\���w������n��KփK�LQ	#ܳjz��g#��Um����5���t�5�Y�����v<q޸G(}{��G��o���z�ơ�;��4��\?��S�N>�3��ן�������|?eg��Eul.g�b���Ԏ��2�1��AFk�c+�W�v�6��8%$�|��Rv��ϲ>8�Ru�3�ϋ<a�Ek	K2�^T����|�c�#޾S���h|J��aƫ�^��A+׍.��A�y��>8^�P����4�VA��E�d�g�L����<Ct���L+]N3"�Xh��p=��Ѳ��A����󳷒�+��΢P���ٿ6ij>#�[y╄7����ئI'��z7��|A�,m/e��O����w�e�gU<d���>�k�?h�j�
�����m3�ӏS�׮�3�������N҄1C!k����x?ÎEz�ԍ'1���:njU��G�~�ߴ���ou�\�qhe�6�j�N@�Y��I��׵~���Q���&<4;H�f�߬���$�̟L���A�4PJ��fܜ漣�8���O��1��"�X��ws�]�(ҤLm��V��NدB��t��������Z��[^+��q�E=��kU��ou��]޿�iQ��j��r��i;�B5]���kQ4��Lg���q\'��|k�OE�=���
#U�ۦ���2�4��w�v8�K��m?�_�����U��Є�\�pd7?"⻏�߶��>(�_Z��^�R�4C嵺��M�6��'������V��B��{����u��/R�)��\���v��g͟�{�f���wd��f��'��,�ꅔ+)�C`חk��%Ι;]}����GC� �����k��7���_���_�4O��,ښ\2�!�"6�v �p�zg��������?�Ƌh��I�e��`!��(���[����Q�q1�c��1��Vq��I?[]�b�I�)a�rj�{�+�k�|��|c�g�3W�4mGAѥ��R4mbg��Pg�����>�l�k���#o�x6�S��K���X[�Zs�Y��7������@����
��&�}S���h
�0�i�x���Q���&yP�a��y��<}�h_������W�~�mv�֑y$��O�lG(�p�2H�S��&c�٤1	�g��{����R|�v��������N�Vwm%.�J�}/��|�s��Y������nӚ������c���my���#9�{���O�W�|�Oh�
��\jlג�ڣ��+H��@U�W?/�F3_�ן5߃>3�����6W�Mocy�]����9*b�$���$W�x[��)����]����q��k��8GA�xS��El�0�ь�b���$�o�+I��ۡtk����n�Z���־���_�a�
�fo�
�>�{����gѝr�iK0�WL>��_�?g[M�<M�jvWz=֚d��Y�|�m�# �d�����N�|o�{K%������7e�g^�w>���j����
xN���rL������B�In!���Q���w_+���M>k���[_���]��%ZX��j;n���E��	�m�/j�˦K"bQG��Ā����s_K����	|K��{u6��ۦ�����F�C�W+��nFv���+�?k��>8x��חچ���v[mcI��椲K~���2�+�湯��
�#oyig�=.�����6���v�8J�XʻH)�#5���V�sU����]N�['n�����BWi�g}z�kzu�^��4���|7�_د�Dž����
Iei��',J�0�r0Vk�k:��?khum*���@񛔸��!H�s#����uV�=����G�7�ֹ�t�fMQ�:\�[f��i�Vb?7��q����)�	��� ?ÿ�������j�o��%ytMIJ��m��(�#�@��{</��(N��yY��͞讀��;"3�Ǝ0��|�V�Ӧ���Y%����gD��i:����Z�,/�i�yP���?w�<g��}#�
ue�r�O�݇��+/25���9{�`�fn1#1$��W����6����:��E�x���O���j��	f� ��@�*�$d�!��-�w�5
V��>:�o-.�g���)'������m�k�����So�*~�[ٿvֶ�i�=���59�I;�W�-ӿ������z�M�[�zdž��#��3��>"�Is!~D�8��ڎO'�k��O�Þ,񝟈�/�^M.{��i��+k�Y^��Td��5�>)���T<a�}OR���wv��t]KFG���#��XpB��9��g�<3�c���;��Y�-�Im���t�h����6W=[9��ZXjx:N��ʴ��ѵ�Yn��vm�+Td�N�Y��Ew�--g����j���g�[�SKՆl,� �+�@���,����e���Ս���_�_aY_G�GY�
A�2wH���I21��'5�wƿ�[�m����������HFR��$�",x�A�������
[��?�|3�O�g[��3��8Ď��E��`6:W��j�!��O�GE��[��r�8��TY|&��~�Q�R^�_շ�c��z���.�y��ZK�x�ĭg�j��c��XBu��,j�N����F���"�@������^�r\귦e�3ʖ�)��L|��M}��$xK�:]��m��AȺ����g�s�*��\|Ʋ��6��鳰�y��Q	3?Eg�H��Y�m
��h���G�+]{4��=�yF�`���[���d�}��H�M� �wM�6�uw�}�f����m^�%@�>K�#��9��~;��^���o
\hZ~�eh��[�'��J�θ�w#�Mx��������/��_W������ȫsw�<a�`F@�xn��]x�஺����_��<F����Z�e��=)e�
���;�T۽����Zis��S���*X�v��I+��f�����-n�!�dB�k6Q	�\��ɶ��*�v_�>^9�^����G�����o��|q���]k�r�ჟ%�Dᣒ%
��ݓ]��jo
�LWo㉵-+��$њ��E�7A:7g�A�]Ƒ���U���G��t5���[-�9l��x�B�\^Ƥi��[Uuf���N��M�-�a)S��*'��۾�o���?1�j_�z����4=_W������5$W�.8�W$��澟��K��\�/�k�Z[�jv:�l��,
qqG����i	�~����/�����'T��?���T���,���,Q��͔r~@J�w��b�/��>���Gҵ_�^K�u��_]�nʐHN	H_<�G_w����%��&��&ڴu�J۫/+_f|.?�9�Iaj8�n��VwO�v=��Χa�x�IJX��iqX5������2�\��6)�W�7�_��7��bg��cm;��]�������Ӵ��'F����Q����׏���\�#��Ҿ��E��į-�<��y�.ǒO�{�>F��r���x�sՂ��_��Ƿ�}��s�k��US��H�ʲnj����ķV�0��+�c���Zf%��V�I�=��)dW�~����v&���^��ɣ�վ(j������9�}��%�.��]]ʩ��#1��2���Nz����1��^�0��$y3���ϫ�������gh7:�%���Li�ϻh���f�ɯ�o���/~ϮX�ե���H�����ړ������e�X}+��/���▉g�O�BKu���?S|�W��˹�I`O�^}�rG�q鿧s�-�e�k��/N��V?	m�-�[]~a�
q?�/���L>�[�o�x�fnI���O���d�n�'�a#q(y��W>�_����޻NG�_+&���UG�����1s�Y;����97|f�m�Ş�敦xgS��mI�ɳ8��ǵ}��hK��1�F�r�h'�+_�/�)��G���x��Ԉ��/^+��䋍E~�]8�%$�K@����;�Fk��%�V�fn������oM>�cwj����9�鞔W���W�g�F,��'��>K⟃7�����Rұ*�.��ߕ|/�oZX�ʾaib �w�#���~��b����{oa�F���6�{W��D_�~*m{×�Y�o��Hy?(�i����0Y�Z�x�B.OS���k�5��x��t�2���g6��:"X]�"}B!w	;�3�qV^2�[}��ܞ������,����/���Tΰ�aNG����eP��iUk�i�63:�j������_h���䯥��Y������ж$��A)�r=EC�q��}k���Is#��{1���nO��c��)9�l��弒Ts�L�@��Z�Z�R�����Q�����Am��n:sV>Ь	��T�k�d�!,S�	�Tv��12�s�ڋ'>w�Y���y^lϰ����P�л�z��x��R۱�'>���(_i��
6	���E\F:ԫ
�i�Y��`ՍT�[3$��L��L~��4u�>g��dM�႐@�'�*��/B\ Q�7/aӚ�
i�4pJ&b[�9�Z�O^S�*���#�L��Y�èP{�.<��"�Ld`s�s�������b�C�7��>�^�������6���)$W���_-^(~���R=O�֬>�6����L�=��c�Ǿ{�X���i��!Y��2��m��]�%�Y�,"5s���K1aєzT8��Qvz���_IW�tg�\;4ca�;�e�O
��Cp�l��n$+��}c�wW�K=��xCq����j�ݬ�|.��ƮG���N��=˜��%�$��G�gɵہ��J�ҵ�?���f�XVq$N��9�F��wBi3�5�.#��˄#���W�Rz���J�d�����E�|J�~��N�>�}=����4�̍�$Fʱ9�F?�����i�_�)&��&��|n��_�䮖��@>�k�G$n s_��kAȹ8�[��[��-MsJ7��h���綸{y�Y[��*�ɞ�85�?/����-��r�\��{��>���}i����)��j�
g@������mN��[-����s]W�>^j_�P��+Cҵ��Y��mR	����M�I��	����G����
~ў��ņ���x���g�=��,����ǫf�o�k�����%���8xc�N��g��ƙ�r�XF��Wu'��5�8ܛ�c������k��mm�r��	:mbf�{5�췗M��^M�:�zw����W�I</5���1�X��@�9��2�fG\�L�Կ����֩ڶ��ZZ]Z��&��͎�r����LI:�00I湟���fo�/;�R�P�ѻ���eE1���c�#��[?��A�卾"^��[��t{V�ڑ���a�'h����sU��֖U>G�
��z~/U��,��U�{lN��%���vI�u>��G�
��O6^%ԛK�o,��7��F��[����ǐx�s��M|���<i���F	o������v��y<1���)>lRc!���j����7s�w�|`0$�kx�U{k�)rYb�Wۼ�J����#~�^;��~.�Z%�s�>�ͭ����8��3n+�ӓ�+�;QPu0���ב����+�t���WG��cᖾj��ւ�Gu4�v��Sܯ��>�|��&�ԑKt�M�W*��T(?)�ϭhX��zO��C������Ӽ5������(��w�涵O�(ρ<cf�[x7Dլ'͞��j�42��S���rP��J��>(xw���G��y��?�K���m:;Uů�v�
''o�OJn��<<�Ij�5�MYwO��zlz,ކ"��SM;7���?�ݏj�o�s��
.��W ��ϓmq��C�F�hڒ|���_�Mw?<1y�;FS�Vv��s��;��gc��Ǹe|^	�^��|[����|F��o'�4е��i$Ц�nd�#������k�������/t�c[�|iu�ۨ6�cp�1����x��^^7��&)��=U�e�_d�U���$!Bw�Õ-�ɿKZެ�i���~<7��'{�G<�V���i�
�c�A�bxd�<*޻��V�`��oc��*	uMCUC�8q�2���-g���|�e�i�?��IJx��Q�D]7P�\�@�
�"��##�y�������iv��u	|E᫃�.�6�~�w��H7�ZNy�=qY����ʦ�V���I��ݮvb�RIS���w��mm��1��P�V�M��'�<[��ue�cl R��V��t��Z��<��-���>�w�}sP�
��$f�����Vl��ۊ�t�>�ɪ-��E��H�
�޴�{�Ky��Q����������)-OPѴ};E���3�[�dV��7\ʲ!��1��
�cG�����v�$���}���G�.LW#j.0i��/-�yg�c�i����o쫋��.�t�=������s���&��
�U�hb,��Hcg9�I�c�a�s�x�^�5
A��3{�ߘ���D^�A��+�Z��Rknl�ɶ����
q����h���u����S즤�=����鉨�/V���۵ė7.t�9�H#=T`)=2s޸��z��
�6���x�E��K��j�7��k����.Sۊ��?�<�ϨkPٶ�shm�/w���[�I����ל��>�|?�[�]M"|#� �,G#
�g��q��q�3�PWSZ������1xʴ��z~���v����Kߊ�V��H#���6�_7�mַ�0��)1N�|�x�>~�/�>�~)�����j3^����uWc	�ې���ƾb���8i>����l�+f���L��<1+�'�q^��Y����>�<G�:����Y�GBɎϧZ���k�k�	�A�ީ��u�\�g:X�,�(�Nikn���w�)����S�����5"	..��-yf���9$$���8���5?���tƾ����6�!w�nѵ�M�Ҹ��ߴ׌|'{�i^
�<�~��PCs'�����W�N�[_��!������ZŽ�J�\.�%�7N��T8��J~65%
�V{F�{{�h�����g�MV�u�-ѯ#��|d�B�{�u;�,%�o9�W�:F��^+�����bxw��M�Z�{)�InC�#�6�=qҲ���{⇈|?���p����/}q�Afq��>x�9�}�^�oC�o�אG��c���88�W��0T1+�4��Ik�k�cl׉%���(�֭�O;�u�I��h֚�i�&խ��k(����FYA�E{����_�q��|+%��-��[�]Hk��X�9^��߶O�~�j�G��E��/�C$�Ԝg޼�ǟ�Ŀ������Ž��'�G󯠩��Y6�����|���V�8^^W�:?=�`�K���i��6��|W*[��j!2Y��9$��r��P:\'��9|R���n�$�u�:�|�|�<��Q��J��߲n�vcԵ��J;��N��_C��pxj����nuW���`Ң'畏�Uڼ�l�a�l3�ړ�A��qUl�D�Gʿ�W€/�W�DHѮ�w.|�u�u�US�|�.�r#���鷏>�/���!���04ndPZY6噽KO�~l���Y{��F�G*��x#�W�p�k�w�n�y��|@�>�^8�Kݞ���}��3-.�H ��SD�sR�n��@S�}����=ry�&,NI<�B����|��	�5��9��U�����^�,�����Yt6��޿;���{�mB�,n5���IT	#��g>���t�]1#KmN0�P(�@��FG���|E��,$p�z��.�7c��
r�[<mEuMYyI��#�o�?�O�~jsC</������2D���_C�W���wƽ\����e�$++z2��־�o�[��T�ȹǘ1�?��3�Zt����]i���^w��b>̓��Z��*�g�T���=G�Z^��?K�5����-�x[��r��VW��k�l���X�nv�G#�ʿ?���U�E���þ;��T�W1C����A����5�k�|KQ&���$�B��IϪ澯��D�י�u��N��.�S�?|U�m'���^}�Q������l�sGr�r$�E��ʩ�m��Xح$�>��Uj��[xn��f`C�wD���A��޾k��x���]6�5���G��HR}�=����v6��ak�ʌ�����>(�ĚD�i��,��=��+����Y��ւ��ڟ'�>�_��_��]��d���^�:�P�F���Z�H�m���ʮ:g�}C��:��v�Z�3򰁂�z�s[������d��N�r$v�$=�=kٖm%R�;tp3Zӛ��τ�l�>e�Y�YQM���b�6N2r{t��Z:�T��㟘s_��~��8�R@����H���I�l}
�w���w���ǂ,|Im{o���`��X��2��l[�F��J�r�$�T�p�iI��#�VQu஺�|�/���n���9�O	I>l#<t5[�ӧj�����Zۑ�t�#�������l�
������3�Ҟ�5rk�A�F:qR��Yuݑ��V
cc��������^k9+;���F8Prx�01�7�O�皆Zv(n	�9�Q�CNcx�b\}�ɳT[�����X�����_�� {���0�2���*��3�G4��$�4�6��.B�
���f�vз�<w�D��4Pį��޾�sI��@��ʈ&��>C���OֳV�!6���S;��o��>G��5�#*�6��2y3��ҡ�,�LsOy[8����s7̠��el�����8����[-�9j+h�i��Ws�����l�>��$�7�F���z�o�'܍n��%�y-C�T��ae�1Rkp=ƨ����x�2#�<f�X�;7%�r����ǭ>�G�$��(ћ�_�+;�rVԞm�L�4_>T$�#z�jh3��7����]1��J6Â�&���<��nj���>���4hG�5��,���9�Ï㑸�_J���H{�j
��*����b���u!@ɒ�C�=v�f�ڙ��%a����~���W�������Ե�yr҈DB!���#��^���g����ϭ\�*�燶F*ѐ{2�k�����S�|A�<?�躦�qw>%K�LmJp�g�P$Wq�Ei��1���٤b/-�P��J���U��SwR�۲�/*�V��b�-R��w��C��`�!�\���OᛙZ��n��������@d��q�\�����n� ���eLt!�"�ӵ;�:Iʹ�t�&@p������!���`0+�1��7>�??>�,Z�楧��}%�9��^?iن8m<+�o�2iP.��N���_A�OJ���wd���W�g��Y����4W�]���Z��y�G=�W��v�s�:T�v^Kpq�+���^6���0�җ<&��}~���C���W��^#�>4xbJ�[_�Yx��ԅ�
�,�o@wn���_�>���i
��]�z%����/xR��K �\D�x�ǧ�䑱S�V��Z�e'��F˞HV�&��96�OmF6�M�֩�b1Q�x�u�ݟ����b���O��?�O|@��⶚�x�;4ՙ1��(;��[�\��"��C�i���߃�1�[���gѼ]���ŵ<�8?�z���e�}��K�3���Ӿ$kv���V��h�J���jj`a�]%�ޞK��]
p��T��%e��O;8���:��~~ԟ�e�������Kt�;X�#9�%Q��=	��;w��?���O��/Ql���}�Py��C_��w�tox��`c�ԦA�5u~��~1xwh����Kr@]j��xrȠ�g���}4x�����n�=<���GI���m�K,>��j�w9��4+��6�iM�Һ�%�wu�[�_�w�i�Q\�֕'��i��[:J�Z'ʰ�|mc�O����1�{�`��pB�^^��'�
��Iiꮟ<i.�2U����ҍNg�뺳v��gr�*󇳔��l���%����,���{�\��/d��@�X�v1���R:�r��2�+��Z�u��w�N���/m�xf�x�9@�^�=@�;/�,g�=2�/��J�k^�~�U_�ci۶+'���砏Q�3��w�������미�����_0�9sF�R�wo����>�hx����>��ك���$�����⧃�	�D�`�a��]��	�e�nm���:��W��$���~��ן|C7��	5)�����������H�.�s���st�?�������k_[$s��q.^�_%+�H���	G�Ei:w�ƣc��2I��o�cgU�4j�N=+7������p�x��o�Oj0���P��i�p�UA�A�J�gX�u�_��W�f���u�Y�i�w�Y�����g&�i�ꔔ��k]Z��N".��},�͟kx[�	}�?�7�$~�~���WDӼ��J�	��5xS����?E�s
����s��m�Ҿ������xOP�#�<��z�k����:��Iyk���
{c��^�G�][��[��Ȭ�h�_M,��h����w�y~���V��=�n����i��9���x���O�Q�F���DO��6
�Wӎ��M^�7�Z���Z֑ˌ�B�׽z߃�e��섚����F�7M����5�b3��ь���=|	c*�9����񧍿h���X�y�RC�a�V�0Q�q����ƞ:�..,��)����z��}����q4%���0UR�ۀ{/�W�|q�>�`���≏�$��Q��J֖y��n�ҏyh�p��"���/��oثC��>���NZ0����6��h������bGv��b��#�=�g�![�k-n��{hI��Wk�~Ϟ�t񵭘�`_���O׭x؜���꺏����li$���w���e��6oq��6���7�w�z�q]�|c�](i�diq������N+cQ�{�(��#��=J�]Y-|����xd�=��:�"�ef���*p�Mj��z��^�%4�GR�
��zdW��R���&��v6��e�U��9��/�,-|0��C�&4r��e3��'��+���~êhwz,��Fգ&0��sӱ��,�1��޺�\E�S��'JKV���B�!%}iwZ*�O��[�i����`>��@�~����%(�-���V����[���5NX��ޜb98�T�j��Q���j���Ar������_�v��O��ܾ���-W[��8Q���_�z]��V�kyk+Aue �T�(�緷���#�t�i/����<Q����Y3�ga���^+��0$��J�_����w�<š��Rv���������}�丳o��L;B��ɑҰ|S�6��a&.��"H�r�zT�	�"K�+��T�X���`�G�G8�ϋ���űY$�J�n�ofc�?J���)��E�?[�8���O��ei�L�nt��唎���Z�ms�׈�e��'�K�f,^'m��C_�^����*�Z�]�X�9 �~�חkK��� �';s_A�ΧM(N�#ɯ�ћn:7�������5��8S�#�8�Ei|Y�'��ɳ}�.Y�q��+����u"�˹�JћJ���C��=��<�:������h�;��01�\֢�ӣ>�%���"��VF����w�/�!�|/{<�PE6�L�uc9�+����[R,g��脫$\g=k�)S���K�Z��������C$��[Ī���4Yx�c��w�I0E �O���`�>X������(�b�}1ڴ4��GA2G�9��zd��+��ɧch��g�.��6��=���O|�~Z�:���g쯣x��z����K9�}bɭ'���k��d����Cֽ��iv�#��^�C��[m�����^-Ӛ��N�HQ�l�<�v�jd��;��V�q���/�/����>?�Y'�R���_��t$��1?�v<�����5���)6���`�j���l��;�_���K�> �I�-w��b�!$�%�!�|�o�D
������
��?�?����F�K�4ۦ_6P�\�1!$F��62�t
�g������7�ţ�S���(��Nh�u�\k����C
��W��um"�Ȭ��xQ��TEL|�{��+�y�����0��&�T��2aG˞=�
�i<7sO@�[-�:q�pj���9I��Zr�R�)����}�L� .v{�;iX�[�u=3V��b}:�S�y���>��R��).��v�O�WLcn�2}i%������8�`+��ל����KknU������g(ٔ�4��Di֬b6�q�w���pOJ�et�䬁���1�����e|�>�j�<q�#/���Nk%ƪM$�/���p'�C�����zC�O�v��Ɩ��d�����������;��]�[�=�h�m��s����Gj�[���5յ�̱��m�Y����1w�O��^�t����/$����,I?���6�o��kip�0�r����X��W�c��״��6��N��s-����<�I���;��Sڨ:����x���)Z�t=<��WzG�3b�?a���\���<G�K^��l����C�D:�k�Cm�kP� �G�R6�\ڃoc�^�o�~�)�:]�(Ť��,�'�~���A�_����iW#N�D}��F��q�>��MhT�U՟�g�Ƥ!쏅?�i���vz���gsf|��EkkbW(��ʤ�@85�}�K�O�7O�72�s�IP=�8���
��R�����C�����i�ֺ}�\͇��0>����_�7����H�m�L�P����nc��py�IA#5��5^�T���+�W����8j��eF��m��|���֭C&��������Px���w�g�5����X�_����|�#���N����
��h�_�/�{P���Ws�>�c���+�2�.z�/��׮��>�Ө��n���ϋ-#��0*��E���{�_hh��FM��[i�j�ҩ���s���;���F�
�#h����v@p��R�J��d#���muU~?�o���M�|yk����"t9Z��4l�#���寣u/�%ƍ>�]�>�T�m�6�L@�cr��^q��k���Q1���>#��\��l���|��qYC4��v�Q7�u,Zk߁��h�#p��4贙co�!��[6~�/��ZԤ`n�Z�G�[���d� 2o��9�"��6���ir5���l�#���2-h�/`y����O���@
�w�Z�_�"�Q����\��"�=y3���<��I�h�,q׊ѱ�,�G�Ñ��׮��l�j�#_��k~�᝚7��Hv��
୛��zT�H�<�M�q�ݕd+'�ҟδ��O]��S��I�o$����x�e8���]\���<�H@a��^e\����=zY->[=~g�X|�fn5^?خ�I�[��>0/on�
:	-�kشρ�X�I����8�x�}�ì��y���aȯ7������rhC���&��4�����|����<7�<i��T1C������~|6�����|�iې8�g�w���Z$��Shp
1�Unci'�<q^5\�Q�Q�����a�&�IzE��$���-����8��o~�_K����&�D�<�m��b�.6��W���W�/����9	��-Ӡ�{.z2��gڧ��}?[�v���M1�Q�qֲU�\�.�d�;*��S�]�QG�f���V�s�k�MC�
t���gi�.����ҞYL�U�׿J�7^��]�Z\i@}��VPO<W�i����DӴvJ�:�9'b����.ք�W�R_��Q�j����6����	��D�Vh�	x��#�&�����5��8RPQBF}EX���q�F�����{�h����z{���#��p�^z��ɻ���$��55)�����Z����;ٯ?�5ٗF��F1�E)�De���[w����2"���+�VP{f�u�,���<���"Q�n=���
*_�����oj�&�7آQ��_#�sL���ӑRQ����?&H��ִu�h�� >�i3[JF�ֱn�����x��)���iC��M�\ǩ��4Kk)�>Ė�ܹ��ռ��H��+���Eqߴƹ���Z����Н���c�@��ι�G�:o��1s%���"�-�0�7\~u��M�L�_����a��NS�<M��=��%�b�I{�vy�E�t��$�7�5�����o�O���4��/pGNX�����0==+��<u���k
�[�<������9��{������P�����U�ԛI
���~��*U)�*	�0T�J�sj�́�q�J�ǁ�m��+�!����G�EP��XgUYb�J�g�>�Q�;&O��d�K�Ns���F�>��-_H����R�䉊��>�5��~r�T��m���¤:���eЩ:5JN�N��ǯ���0�ڤzo��M�:����k�*0q��Y�̰)��@ɟ�W�}-��L����J�L���4�v�o*�H����F3_��>6x��>�ךP�kk��U$h�@�%���A����g�����P�^���i_�Y�(C�֑�['������Z8XJ�?w��~^O����������v�wou��}��/���˃;������J�o�f��Bp��09����{�f��F#�#�|��L|>[�:�T&9�BT��"�;����xLJ�SL���/¯�R9����-����ڦ��y��f@�1�+ݣN����%��vh�n���\j�)9�`پ%rdI�=^q��:��.�e�.�q��e�D��/2s�Ҿ�G��3fZV��RT`��\�~Z����p�a��&E��Zjk�I����wַ˴�ީ9�Xv,�µ�tMOP�Bز��s����ɯ��'C�4�:�b�=��[��hY���[��R�c}�
=Ͻc��5r�����iu���`�͑��}=���;�呣��T�[?�#{�}���
���s�Ξ`�Vm�#;[q��Zi�0�f�y�J���=x#ү��M.O<��Z$��֔Gd-Չʀ�����x��G����i��&����'����q�:���!I�Z��?�3�`_��^S�����؇⇋mnR�A��F3������9|�Eta'R�h:.�bT'M�]Q����^�����cqu��ͧO5��tH\��[��N���j\7�횗X��{���F�٤,˓�q<�z��uh�$ci?�~�J�M��֜\���1r9 �,ee��ݻ��|�yH��J��2��$WM�s�v$L��:Hܱh\>aQ��#>��!Y$�F�8������A�������I����zUh[yTe�.�%��2x<Vn:��nQ��+,��9\{л��b�q��Ai�&�9��ii�-��2�T���y�{VMX�:�����T,�3�֯i��CX�� {��u|.�:8�����{"����N�����Pj�
�D-�"$?�u�z�b��N���f�5ŵ��b�=��S�U�OӠ���7#��_���>
k��|Eu�����V_�z�n=����~K}6��������F<���~���?eO|���U�_x���ĺ��<�����9�ڞiJ[��FM|�w��0R�E{���&�{*�9���~.�|�_����/ƞ�3�\k�2״�idnt������;��+�_��Z������[�WlO�q����Nx`�q�g������iO~Ѿ<�ľ1�羽���;y��{>Nء\��@�����9�e�@0[�{���ӅYG�R��/�>��ңr}ui~���B���[���%ݼ^�t?i��#Xi���6a۱�k�o�f��)y�-?�~,���I
�R�7/0[�wnPI����i�,���|w'�N� �žٯ"��>��"�e�ci[a�9��(Җϗ�W�w����9�,B�RQ}K�W=S�_�߰N�F��Z��bO�{ݯ
}��ɨ�3۪�h����������x�_������0� =:��?�ʺ-��hᮭ�m�(���}����]H����}=
��9���O�0�K�B��Gޮf�ò\�ry&ц��u� ������v� ~���\]�'P�$`����98���ka��}
ڞ��iR۪^\@ 9�D�6>ۇ8��ۿ�M^+����z���
GN��G�L�d�6�&��xbE���+�O^��>.x"�E�潎���m�X�9{ym�;�n3^��75�jrV��BR���}��nO�_�W����F�a�����k�����H|P�7�£����z���N�������j�M7XЦ{;�z�"��W��Q^��k��5�I����&࿆Y/���aί9_�F���8�^Y�c|j����i�����Z뺌�ZFFKGʦ}�����J���z����*ʂ�D��ﶶ����W��s*[G/̜�V�.�lt�<	�^8�X��규n%0���*̖�V�"@��6G&���cҦ��}�5����q'�z�[��F�&P���H�\�:u��0^f���[��p�kj���5�8�w�wӻ����%��kgA@��@89�m�Z�qꐄd0&�Z��4��[�FE�b�GaV�=9l�'GA�:�c�3�5�Uq�=w]�jV�!��r��#�>ս�]v�< m�E�P��;W1�i1������ī��;��cH�/g(��8nkʩ�r���m�zo�<ioq���L����A/m�W��,��վ/�ou���-]S?2w׎����
S��i-�p�l�7p���Z�o�����P�s�^bRq�#���_;�I]�M3��T�>��㧃|&�q�[�jo�95���z�A���t]��Gq�Y�$@7$D�Nq_5��:6��jS��4�N'{e�>S1�C�֏�?�^�֟&�~�2Gi�Iޠ���Z������®_N���k��L���Iu�+a� ���H�.�y�~k›K���Co5�m���������w���zIis��&�P>�w�W��_.�q����Ms�����LZ�T'���t=<
7�/O���Q�©|(�&n1߯֩kWv�u֗snP<�+1ȫ~=����l���434(fP�@���Y7���Q'��K[�K*oC�޺0���=���%��}Kĺ�^�<�b먠e}�<�8�[��^j:�hc�̀�'$t��.�s�֝=���o��m"P��t5��o�(����H�9Ōe��bxj��(��\U*m�ny9�k���j�^���m���6�{W6�y���x8���Y�>�m�M�;۱��H#�~��g����?o/	�X��s�0r:�ǵsz�ڔ�Ϩ��w&����F_ž��q��~i����[��f���Z��k�y%[ef1�>��+���kɷ��;��95���vi�A#DL�6��s�A�{6����x3��v�uu�kwb=Ed;>ȁ�z�鞠�'����i�
&쬿3�%��c�*��&ֺ���K��:ܚ��n�i�v�"H�Um�L6w�P͌y���<C�6wH�!�>Z�>����_{k�	�7H�=՗���-��퇇���ȳ�~�W�rxgŏ��^:ע��-�t�i��Z&���`��y�l��J�)i������5
P�Z�}��i�%���A�+��f��s�E��)*�Ǐs��z������3���v��ĽԢ����8�^�3�K���l4^������1�$�����v	Aj�Q�5Ј����@g%��=����p[��ݷ��5X���l�t���I>7�^Ҽ3g<3̯p��ƃ�?ҿZ����7���֓jF��J��]��l)$�����*Ț���ZI��	#'m}��K����WV>H��	`}����S�ʶ1RO݇�ݟ�����Z�F}��jW���ZΓ<S�_���s���_!~�-���R�B
|��,��A5�{�?��y���)Y옜c��+�?��|9�D�
�MQ����7
�3��N�kȭf�+o���*`�J�ޏ�?6�)�wZ��^V(��9���wÙ���Č�Q�Ez��Rl��-�~��h�4lʭ,
p�>��M,�ϼ�lr�b	3�ۭSmd�E�e��a���To��
ߟ;��D�W��0;�6I�*һ>:�F_�࿍�3ҩ`��1���0�$��i6�ﯵt:���,ז�>|�-N�U�k���Јc��2�鼱;�?C�T�rr�nm��	�`�̶\�;�s�W�ԕ�ĸu���p3�zb��K��m�H-`;�쌍��+��BY���f��	$��
N-�=��j��Iɮ�*�l��|=�|So�����c�&��^#��B�
 �D�G�v�CҾ��4��m������|cq⏆��ofSn//����\�@�ӂGҽ,���2�d���p��.V~Cj��#�:d���m�F�c���#/<����yϩ�Y�BW=8��i=ͪ+��v�S�����m��O�B3W!�$OSޥ�R�2*�c�Us��0�Z-)�bVR����ҭ�h�d��w2�q���?O�H.���"�¯sy*Nc�yC;4��8���a:�N�D)F�$�𕾘!3����L�8�>�r-O��®��o�J4c�:�h�q����vm%1��L�Ή�I�����?z`G#�޵�96�:i����6��쵝��n���T�"�w��Z�}SA��mn�@ґu�����YZ-�<č�l;��I��!��H|��E%�I<Qr�.=F{��}�A�j�k��(��ah���� `���4�ԑ���d^ ��{}"�L�Ѐ�I
���/���qY-��ӫ0�mǘ?vA�pq�Q[A$�WD��\���«Ϧ�o;�y��u�z]0���0n��K��RY�2O>�6�u�&���#�X<7�)xs�_�1ٽ������痩��c$���|��[��AĿ$��0Ӛ���<OH�llU�n��\��
,MF��u�]
�x�P���z?�~�4�}��_����_	�~Ϛއ�s����x����n�q)&��k滯�~_���/��<��{�2T�H�r����j~�'����{��̦��v�E>x,ː���k����Xߎ�g���Đ ��dWA�?���=���Z4��9[z����~>��>g*��(�/��/�'��>z�
j�2����VE�	�c�^��߃��]��u�KyT��a��_�?�jOA��_	�k^p̡t�#y#�F;������o��Կe�\���i!���^6�\�y[r:1x(΢��Q].��g�1���2�Q�D�n�%��¶
�F1�>����o�a��mUeO0=��c
� �;�������E#�ƒ���\p�Ԟ*���|.�y.|!�)�:ӵ	��Q[yLt�V��ק��0�QV��e��}�?��B�T#��C��o�>��u����Ói����v"ii$�A�+|��F
zW�`ߎ?u����o]����%��s��ھ��E����=t�/x��h�Ӵ���%Fq_Oi�7�׎���u/^D�r�o ���6��+�̸�X9��{޷:)a%V7�\�m��|��x��ޅ6��S�~���wG������aC�y�[U��b����
�W��W�D�����(�B��<WK�w����s��۫��v%�C#r}M|i�Zx�7��0,ؚ�?/'�l�0�f��$�Zhm�K	�nn�]��'�������f|@�ok�֛#
?E�+a��*$8�	�������X�܂O�-���rD͖M�NA�t�w�$E[��(�<��_�U��J��T�/�s�8�8�O[�Zv^��.�t���W�i+��gW��^��di�I��|C�Kp$��t0��?J��2�!k�D�N�^c�4}-]'���M�}v���e�7L��]&�f��?�n
��w�:���Z_Apu�ѷ�d�Vm~([�j
t/�Y�_�$(�W,��]���W���H����#tNc�l��5��@o|1oz%�~Q�������xm����ݗH�G�{{�[⿈p�+KH���M�|���3����j)�ik�雷���/�յ��-�b@�>m�uH�}?
��,$��M�� ��}ExK�Ժv�j����`���a��=t�:��{�m��c&�d���Bna<�eQX��O���ei���2����:=���[�.}c1C��'�ƾ
o��Z�L������Er����yt�څէ���K�����o{-nsό2�m&ߑ�m���x��y�֒�3z��U
�
����<�_�]x�O�t@˗�+�?i
n&-�It�~G�lJ������|d�u�ee�~a���G�ʼ��R��g^?�(^1m����i
iV�6W6׾z��GX��\犿��49�Ѵ�x�U���W��~x\���.�.$%��T���ҳ/��/k;�9c^��0�J�r��b|G����m�>����0ռQ4m�Z,J@��j!'�j�~�-����M$��3���>⼬ވ݈b29��_��q_S��%
kC�6̱�iy��]u����`Ĝ	�5�5�C���RK�9��ך��_��hB�������V\�m��GM��H��G"���=�v�W���-�}�(�<f��F[5f�yln��)H� �A�jξ3W[�a1�(�W�Oh�Z��9!R�|� �[�V�ꖙP�m�����y��<p5���2[�QŸ���F�-�4��1,�2,Lۇ��_5����O��b!Q&�L�i�MKT��ca��
k���1���s��V&��B!x�H�)hUd�w�v�Vk�JR`��ʢ����\<+�}�K��K�v]B8�%pX�z��Y`*0Ŏ�R>�g���*��9�;�[K��B�G�R��bK���s����Vu���C�y�E�^MJ�#6���St�4k=�t��c�����
ÿ�t�$��S�ɹ(��i}��_�L����zB��/�­��%E}g��cM����T�fk翁~>�}�[@P$0�8W�h�(��,{`����!�f&��ZuSն~�*
�#�$|��s~�K��K�IT�q�_�'�W��f�Y��ND��0�r��8��?�?Eޙucuh�&&+pFs�5�_�-�2.�f��ce��Q׿5�eX��k/u�b��p���-nu�MṊ����V�m��B�.�,�p��YI���:������^;i&}��6�}�v��K$¶@��+��q�Fh��׆>��mJ�x�W@a�}5{Z�m��r�yW�G8�J䳍�|�е�|]�A���<�R2��3���\u�ĭKY�� nR;{p�J�5Ɯ�V]��2>������c�MǗ<�*��oj�Ʉcs/���2Kuu��Nq(}�����K�-ͭ�S UW;�#�p�J��N����Wn�#�s{{�5�V(��ӝ��}�>�*]�֥խ���,w�W�z��������h�A��)�>�x��}�6�ur��U#�E'�A�:Wǿ�XO��x�ᖅ�[������*��;��|D!����ƌ冚��?.o�Y������y�sq�V�]��[�e��JFHc�ǷZ�oZ}:R�1�n㴈W�n?�~�F�$��\��$�����9�GZts8�ҫ�s��啇#9�R?"eV!��v��{�'m���]:�+��r�*�֬׷��\a���LU=.�7���1���3�8�Uvyb��V���$�%�AF���a5��$���>���d[�����>_C�)�{��y�Vd�̃�x��d��Q@]�4r`�&��(��̻���ϸ��Y��ɛ�g>��Z/�;��n�'mɆ9 w�ӥY�K[iIf�y׷��&"6�/�S���ch���������o��͗��i_A�4��}�W�¥��?��&b���	�z=��+����[;8��VhS$GI_�s���^:Q<P�_��P݌s��3�hC��ź�1�qg��m (����8U�:s��^����u��Z�k���%�"���I�ɬ*��R\ӗݩ�,-Z��G��yq=��m��\9>Tk�o=0�q�T�t]g�]�+�9ًfx�H�7�bH����iZ�Z��)`$Xa-(���o֮_xd_^4@��k��*���}k�Y��c��砲iY9=_���O
���<_�[��=(F4�ˇlH׀		+�A%s�V>�j���������Ǻe�/�i�Z�4���V�O'h�~U�~�7�6�-������y f�_j�W-�/����u�z4}!�[��8�eq�/�G�]��uVi��F9�Vg��Ql�}�<�]v�V�IHIx�=8���䮦�a��ٟ��F{-U�N�9��IJ�
ˊ��:(�]�^Wo�\�nv���Z�+[�QH�|U>Z����"H�x�8��� ��~��/�?�ƳE�[w��8������~<R�I�99��/�)/��0����Qo�����M��������$���G��k�>��-ٮM����������j�	~kuxa�Ѭb&?�6ƛ<�}k����k�����Bmn�� �rG9�_�0x��X�j��r39a��8:��;������$_��wv�I��4ّ^K�n�E�#9	c�
�GE��	h4��>$�p�a����G��'��~}����G�~&�*���$��o-HǠ��5����d�rd�������/2��Z���Y
4�d����2o?dO�Sᕒ�/|c����K�nGS�я��R[���٧|-�m�7R�}s��'�v�C�8�䓞:�\��5�?i��"����$�zW:�^���I��Ӗ^�V_�[�����/gk�Eb�m(>S�c�.��Ax�d���a�YF;��)lv8�nj�|T�w�H��B��Rs^����PIl%fg��'ۚ���6�N�m��O�̲��VP��;nC��Αy�Bh�@OA
*�G	'9��9���!�3�i�3�Ɨ/��=.�b�^�H�{E|��Xx��h� �+-��c`����Y��X���{j�����=0s�XX�xz�i8�F����K/��18Z�E������t;�K��m+T���T��c�|W�F�o, "[�)Z9�;���6=�
z�mY���r�Ż�fDb{f��1��|6�s����3���Z�p�nN�j��mt�����ur�&!)B6���|�xךd�ؒ	P�֩���o�GQ�}�v|׾�0��ot�/L�Y#av���=�_,<��f��)�S���xwkO#� �O-�</72Z���[�P˨�e��N��q�Q��!�}{ר�%����ɚRj��qU��Hh��m���;S�L���*�R2�ls�<�' �z�_橄a���L�0�w���ʙ��zP�O�Iҕ:�)���r�RrM'���Yq��C��y�{U��348��m��5��}�z�Zl�\��	�#�\��,+G�G~SQ8=�>���+��lV�]��$
�6��:W��x��}#�9f';�Mr1X���f���U&(��>�F?:lZ=�I�mu�d��kͣ�Ч��#=�U�7C����fځ�B��7g�5�����"���*巄/>u=��Ҋ��aU�:�.pFqں���w_t绐��M�L�n8�h|#}�L���U��2��7,��#�\䟨�q
���1z��bg,M6�J����I}�f��Om�n��8�|N�ῴ����Xc'��|���ݴ+�l�r!nO��Ğ:�O�^��P�;��~���¬�5k��U��:jI�JO�z_��}s+-�+<Oc\m߈�O��Z��!���BNN�ߥ|�s�Zx�"�ȸS��V���}Ɨo�ML��G;k_캪ܚ���S^���lt_��s�[E�L�+�������Gu�(6����^�,;�T[g�<L����x�^��k��o�|�O��|���Ō�D�M���9��<>2z��/��J迵è5�"�$����T�{o�J�i���j�O�o�-�/ko�/��1i�_2�W��|��Q"�Q��^�e-��f��{���?�
jV<����7�qV��	(�}&?-璿��5����������z�����t�-&�gy'@�]��'��k��?I$�;��B�, �g���6��NxZ��;y�Xcf�90�J�;��M9?1$��0��ݕ�־V�%r�Y��e���I5�.u)d��*0��D�*�Ω-n~T���ږ�ty�E2�z(~5���*����\�w�\
��7$��"���^�5���:/|[��Tm����-�<��ooּ�lje��
�kr=����jP��`3�֭��v��Pf��;1�� :��j��=��4D%l<�t�T�c�W4�j�v��6����ö�ui��2F�LLh�:�[�J��:����)�l�۬�G�#q>�[㯃&����!�rm��J�n��z漫M��->U[�$V��%2c`p@�W��qR�4Ϟ�Є�Z�����/L�t4�������:����4�:ݱ,�Ho��p3�};Wn�q<�`�;	���p���V���c�����
�C#`��\w�B8�J^�Fy������ib�4�-���%�@JBcoR�WP��4�Q�u
V~fI"$N��+�n�K����l�5;i�I����	�i�"�mt(R��D���")=Kڸ���e�g�4yV��'x"]*gյ&
�H�f��O4C�)�EnRA$p�����5�	ᕅb��'�,�o;j���_Z��`7��	!H�X���'N�=�Ӯ��f�-�-=�<�A�#�঍a	��|�J�*zF+~���[�n���$@�[�/|�`�c]����Y�‚X,��9�ǯ�L<c�Z!��a�S>dl����k)cgQ];��C>W|�T���`H���.6*d����]ŧn��Y�̨,�쪌z�·�Z!<:t6��d���wq��9���m6O=]���AeU���V~מ-lt*vz�����e��k2����Fþ:�������RX.cd#��с�'�=����?�.u=[��(��窮zq��}w��	�&�so2�i�b�E�F�^��#[�+�i���6���Hоx����h^m=��w��1>��5�w��!��.�2yk0d����������V��\�v���
���<9��K|���]9T�����Ш�>��5�\�H����`����]�k�㮩�_�,7_#�H�����-R+���v g8�y�ܓM�Z�ٽ
��2�6[-���#� 9$u�*�Q��sҾ��<i�Q"ȇ :��k����t��EzyvaN�&�G&?R���o�V��E��<sȯ�o�[�I�G➓�Ƀ��ߓ��Fpk��L+�ߊ6�h�m���_���{��#�t�Ay����w�-�m#�#�����4�.��tn����)��R�)+��_��c��䟋Z���m�f��!�x.>�1G��PA="�t��h�/�X%��a�5�'���_�O�.��,��_�2xb���:.>䱜y�1�rHW���7������+�v����u���B�
���9��{�O�xI�km-{�<<5j�14�bb�%ʚm_E����W�SJ�_�4�]Ј�hT4���Ld�W{�G�oI{�����͎�"~�}s\ǀ�	�D�U�Sƞ�o���!��ҥ�H����yWǭ�঺�9�T���V	��yf�L������j��e��O���1u#R��kǭ�ߎu�ems'�$�s�W�G����c}@�8y�VRN<~��x���ſ�3k�L��G��_⍱�޼G��;M2�=���^�]��iϙ{�C�U=�X�=�gQ�V�
�G�е[�E�&b�!8���/��ծ��T�H��~9����cef�a(9���3_;�E�/5k���[������c�׹�ѝzq�Y�-���9�RS��M�%��}KPԼnR��)���N��s�k�~	i�}i}���㸄�w}�1^{�(~ɟ�8�,z7�|_}i��|������_m~��K���������/���Y}v&>��\��Zx�^�i�vd؇&����{�~v>p�����)�d�ݤ'����D�<]�K�f�N�[;9˂�D
�FOӵ~�C���y����5׆�2��p��c�|ǞƾA���n</�;�x'H��t�g�!Q��O���.�jckJ�.m�zE.���FY��u���'���G�?���Ht��.9�B����(��ڵ�ږ�,�9�Vb���w�T���_�d�e�
��V�������g<~*X����섩V�N=��C�O�O�֐��+�<���#��!��?�S��D���R����X���r;�+�;P��?*_cMU�<���S@%�'$c'�B"�^�z�H�)�ebŻ���q�'�_�4�ߖp��|�#�*&�Wf���$��w�1�ς>մ���mZ_�	m��Nz�b2+;Z���+�{���I���+G�}>�Q��_CSG@�s^,�S����f��T����V�G923g�4讝N	$zFm�`qQ)!��5I&����%yU��O�z����M㮓��jk��_�Zɪh�f�>m�ׁ�+�(���5ׄ�Mg�YL��YH]I20H#���&��6��8O���]u�:(5��=L�$�<gic�0�k��w��jd�4c� �5�WQk�1���!��?t�'�5��V��k֢r�m/z���i��E�O�p3m�E�ٯ�x��Q���<d b+6�Xg�2��9'�u�|;{���yُ�\��d����O<b��!)$��z3�y�s�Z�ɘ�EQ�4Sd�1J����`x�5��8	��A��H�f���O��g�=��<R��Dmu>�w�j��0�ʇ�e �	�n�g�r��j��,>e/��^���8�M]�Q�(IN_��>���u����?����χK8��>YL�~��1��3[���������៎���}J�R5��x8�k��u��5����ɬ���o�f��m��!�OPq^��S�����sp|)4�h������ى�<߀�8��|�?�IB�Ų�u�{�=�5r�N����)�ό��K�i
#����=������0�$~l�9�o�6�z��ῳg�
�x��V�m}��ɸ���y�ֽ�M�̗|�"8ˮ�^+��yқ�֧�ajF���'F]SP��\(
)i9e��Zij�\�Kg��V.�
��T��Sձ��M;H�����Z��3�g��gP8x�
���I��n�����E>T�¨�}q����j=Χ>Xݣ�_�>1��?��R�s�L�ܡ(�pp���\O�!i�0�ݘ0���K�5���ha�gh����P���Oj��������+q���z`��AB
1G���KVhY�a��Am$�q�)�N@��5�c�}F�N��M,���yø�zF����a�<�$z���]5��/bp��<��WV*zt84�Q���Ȟ�v��%ōȊK8�%�I(=�+k%�������v��rk��'�4�	\��h�E��?3����Z������D�K�W�K���>�W̐�Zv�����J�+�DP<m�x1c�}���3DXl�͠��n��g�3Ҽ�S񾩮��u���T�B��=런����V�K#�W3
��+ӧ�iz�c�������l-�Dz~���{���{��sZ��	-��kan�n��2W9�Z�O
�4(�n�e������J�9�?Y���閗͔Kb�"_|�V~�E��_5Y��Cu��^*�u�0��V��ư�X^?*��ƥ�x��;kie���k��1 qڻ�����{�� S�������Zí��y����i�bۋ:+��2�W-CZT*I�l��ϣ���j9�$��?�=����o�-=�ȶ�Z�@dž9�:s\���n�#����˝��;�ӱ���$�ω�L�]�pH�#�Ŕ�w̵=�����@��K�]FHC�0�RB|�5�Eo�h��_{.Hݜ_~~�~4~�>'X�kMV!n��T��|mf�t;�W
��_E�е9�g����KdsQ�n�5$`��zV����"(�C�L���Jņ�(��[Z<k
FG\�}��[�3�i���}=�FY4��#q�n�-���x�m��ȍɑ�<+ļ-��6��RB�g��V_/Ϊ��*NF{W�V�jJ�������J�[𮞺g�v߀#�־�ҵf�r����b3_#i���-�K�-3� p	�}ck�������E߷�^'�7O���rghN(�/�����}f����ŷ�q�x��G5��?��fi�`�S�񦀅I��#>~��ܶ�xϏ�%x�Ҙ���ǚ�����HL=��s�^�WYABp~�z��\b�Nq}���~��6�O�����V��X�o [�e�qvW9�y�s��?�h��s8׾@�\��4h$=A+�����c�&ٹ�2=�Ҵw�u�[�`�O:�qX�ڵK��"rܷF<�)�_���S�|{�	�:|3���n~i�=h�����U�E��Y�_�:9��:U�'=3_#�i-;?�`j�P�r��p8�"5*NWue'c��t|����?K~��߰g�b�M�w��O4��c��Y7��z�?|'��)�G$z��N)a��_��^خC(�yǥwՉ�@F��[�1��Aҋ��_���
R�=G)y9�ߚ?U��|j^>�Ɵ��=Ձ!f�y��^1�G�ў"����IN���cQ��\'�_6��(x	Ƿ�U�#j
<��x$�_�N�Z�R�&��o��P��A/����>~��<]qy%�K�"���?�|��iU.f���3��j�(�5���!�'S9G䃃�qT�`OٷE����$��;���1�9#ҿ]��Ab%�>W?��?c���Ù��4��c W���;��޹��~�<�-%��*$�r��c�|3�iW:��w���q��m�G`��S/�p��s��.�q�F;,���-X��Ibx��O56��Q�0��פ����4\� f��~s��+��g�*3�A�F��Ij^By����
`q�}(H�v�W��j�m��p�U&��|,�o}�'�j�T�w4��deYi�s>0q��)��.6XQ�������C�ہ�溭"�l,��w�5���9+^����vZ{pAl��׽@T�
N�w����b���bxɮT�r'�'y�������`�#*����֋P�؜�J�c�c�X�3P��{P�T`�
9����#f��t�u���Px(���4�;éu��l����׍���"&P�g�I�s�-�=&{y���d�5�N�������.��=W�+ͮxcʍ��g'�d|W��(�n�*f\�Q����i��Z�Q�`�p��^��	���d�-�vc�¾#Y��=��&�k�o�>e��,�)C��]�~^�z��l?t�p�sEz1Ŧ�s�X&��|m<#�'v3� T�:��d��u�*����P���I䪪1�_=y��ݺ���Ս6�o#Y��Fzz�[�����i��2�@�'��tRF�y]zk�v�3<|�9*޵�/D�$���+���SWLލy��Eٞ�!�4�>)|+�"�Ye��-�-d�Zh����p+���K���~'i+���n��$�G@�~�Y�x��X�g1�+,d��)��GOν��>��g����+�u��ؑ���
����
�����*�}#/�_��ϥ��N+�Q��G�G���ܷ�mÄ�U��oW^���\g�|cu��m�KD��R�FA���5��j��.�{:��[���y��z��$��0�B��;��KDė&<��U����U�E��O��q�c^�ǯ�\�2�a*�J��
Css*$K�gn6c���g]m����Α����U{s\���\��QE�Mx��Xa�Ň�+��^]��K���:E�[ݴr	�H��9�Ln;d��ڧ��Ѵ��
��ء��=EwzG�MWV����K�7�C��tW_���Aw�K'?0��p}{�W�̜��rO��x�R�|g�����r��e��?D�q{�9�G.������I�֤F�{yp��%5�x�l�/#�]>;�a�.��ҽ
��*pQ��Xe�3�
��!�5�v��
�W�x�}M��[٤I~#�<zz���G��<~M�C����5������C�w1<�W�_5�+r���wj�#௄<,Q}��V��Ug���q�zW�}�t�i�7�E(�c���1�ڗD�
3|g�q�J��z����_jW:�/�5��;mR~����r��;=EE�"���x��<
��Jӛ����hܯ���;��!���o�����I(3��zs[:G�[�CUS�ـ1��X�ؚ���ݑ�PJ�!�^5Ē��l
>F�x❧�m(�b�8��w0Lv5�:֝eoò7*1�G�\7�b6r��[2��;�EuS��9%+jϚ�o˙-|	�����]�4��r�i�Oҡ�K{��@*���퇤K�� �2�b%?�_z��[�$�4d1��O ��_]�N1��u�����d�"�y��)RǮ3V�1$�@�0
Kix�؅����w��Wc�Y\閨�D�Tn�� ��׹Wȕ��Q��+D�u�	�F���K�隃^��YkI�,6�c�Z�=�-��
�5��C���_�4�\)Y�9`�{�_�o�{=������~��M¦-B����|�H���	��鳬`���8$��_*xQ��{�m�?嫒���/�*����t�v?��ٰw�Ҿ�5��U^t�	K�>�&���{
�oj��g�Yc	!���5����|)�jV�`���T��ݿ��� �.��g�y�A�^�J���<1���)��T�v�Ӈ�R��{1�(^� ��%\��+��l�K�rw�p��c��2B�K�����w[�[#'<Wn19Mًe�™e]�85�x���� �t���d���-�}M-�Lʲ?�6��Qu1����*�����s��V�>a�ൈ�2;��������愱'��q4׳f�sQ>����xiYNp�=x�/����\���Z^�L:
/��J� ���ʓ��i�of����|��@�4��ſg�ƽ��	+��	'�.R5��[���+c������/����ʜs_]���X��Ꮎ�W&K��z��W�N9z�z���{y_��D�k� ��%{Y7z|G*�P8N��?�w������ql���	��#�ȑd�恍����~�E���2�^���Q�v~U�[|(���yz^�>d�زS�Z�0�
�ғ��"��8rTW^g��h�6~#~�z��\Ҧ���#���T�lA�gp�zW���)��A�g%���n�e-+ƞ��5��_iW�y3�p�'�����W����߈o����ۤ��}%�>H<�зl�v��+��eO����,wS�u0��G�\���yT����2�>�]-��W���&�.��%��C�X���`����F�U�6�珥ơ�Yi��wҾ�Y�*�g��j�z��Ip)��3\6~����/�7���#Uׯ��6#Džl���[���-:�?���]����M����ò����ɝ/��6XmQ�5�k�}>�̐��c/��_�^��9x:�FX�E�܁���oz�4��$O���UW�l�T}�R@?�p��X>�},��7W~���*�ۗ���w<Rp�H�f�]A,["��'<�J�����R�>W.tK���3��*�����u�@!M�Hȋ�VK?��޿3W��ѿ�~&�^-�%+n`۰p?�����*��Ѳ��_�W?�G�������k Q�3�VD��E_�בm�̓���U.'�^�G,�)MY���Ǒ�Fc�,C׊U���h��U�M�G��-,�d�d�����E����b�g
\�WLx�	+[K�a���o�)����`2*��,�4W���+_f���	i��zM���������=�1�q	\$dv
Z���^6�l�ƃ-� �$~�,�
Q�JÞ]���*g����v�Ns��zv��%�1Zb�;�0	��\���5
*���$��?P��k�&�ԊKC�)$���Ue�I�z�U��prRW����-$k{��9�'�E{_��7;ѡ���_ڮ�q��=���V�߃%񎜯��-K�-�hs���� �Ǧ��V_��W_~ �^ ��m2U�[bFۅ��)�=kLf��կ̜�<-u�3��g�Z�jۄ<	�+ݼ%�}Q��ܤ�)�!=}�{���������Ě4i�-\����G�8�$7W�ߵ����ؗ�\�?����@f����+/߉��=E~c��ENI{��~��c}��]�����x|j�)p�.���
�
����L"��q���^�m���:���1�PF}鑸�S���)����Je�H��$�\�k�m��F�&�$g�l���WҮ>�q����X�|�*��:T g��=��·;���	��τ�u��>2��tK�������οď�W!c��'�1

�f����7P�����sԤ�f�f�j8�N�\K�m?j����E%���B+6���*��3���?�}9����GNjC�j�m����447�S�n`e;N�<�3_��>.k�� �x����gf�HB�'t`:��5�M��|	�#��~9�~��� ���q�2�r�s־;7�r%
���˪�~G��1|���{���m$,����,A��B�E�H����Db��V�Ad%d��S�~��߲Nj�_R�1���V�p�����M�h6����+�#�.�k[��F<��]��'�|�Jr�.Yn�o���e.�ͱ��_��n:�ֲ��GG�K^�.[&G����SS�7�֜�jj�C����[�MukC-��s*n`AZ˚/K�s��&�u�Y23�7|�i�w�����0�|
��IX{k�KH���>�0U�!���ؚ�3�y�S�9�5�D�V5��ȧ�/&�h6��'�v�pkOF�kyd[+��s�>a]6�%��Ԩd��(�J��#UH,��'r�e��l���ͣL��v2Ǵ:����N�g@>�t_x�^�e���FY�/ʝ�뫷�iz�	�4np�*��M鰜�V>Ӵ-_K��8����*�]9�y��Y��I柿��>��O�,t�u�<���+F��`�-�,_0>����s/j�2[��Z�K[�$��n$���j�����Ѳ�ϗ�����$,v�����E��Q�>�X��򤄩��+����F%&���)���m��Ö�m�;g��s�ex3X���[[��r�r�e&�������ZƝ�m�n�b��6�T�s��^��Ѯ��C%��;����rt����9�Mu[3��#FMrs��ꉼq�B��M׆t�E�A��L�~����:��T@�҂s��q�]E����>��]:�T�C�=�����Wu�^xTF�6`Z����uյ��l�afܧs��e�L����`�l�Gnj���9��F������v�1�x�c:�����
\�����%��4hpI�#�X{zP��-ΥBN�*zw9M#[�
��9trZ���	��j�Eѵ}:{?�C{~��^k��
��ե�Ī�R�p��_�O���l�c�m].��^I��ǥ|�(��ҥݞ�N��Ny�v�0��V��,��B�W�?����}�xz5Uu|�H���<_�+��<?��c�V`睹���jG�x~!�kb�?Ƽ��:U#)Ke�Ӌ�ҔZ��0
����!*9�l-� ���+˾"���1}�95�{���k�I�q�_E��Xs�S�X�j����Co��9��k�뗢I��b��5O��5X�nۯ5љ��K�ϵqrU�?yY�N�j+��p��g$!䞸��� �<J��c�fx�P���ԁ��}����j��m* y���Toc(IFj��7ϥ��
c�j��-͗�n$vU<������M�"3�y������Fk4r��+���\�*��^�^ZNG���=ryԒ���񯮿�z�Vs��K�9�i$Y#d'�ϵ|��O��ĽZ-?J�纖I6��N����s~����wR�g���
�q��E�	N����'V
Ns{�V�zd����b�߸\Ʒ��P{(��1���-����]4�>�������FRظ�b�c��,�H�%�h�cJ�,~�D��*���v<Es�O��Q�ם_^��7�b\�����X]�?hf#��W&;0��׸�Μ6�m[�#lw��]}�r0_�j���ܟ.4� �g�԰+�
��H�Mx�8���cЧ�ҽ��v�1�$�3������HeV�f�[]"e
�HJ��^%l�W�g�KB�l�oS�$Z|LDtv�8��o�>lgh��]��0�
�<G�b��!�H���q\���mY���:^� �k�N�ƶ�"6v#�o�w��}�T��k���E�N�α�s�J��w��]V�}��R9�r
Lk�r��r��oE��Q-�DL���ҙ�Ie�:מ�?M���'���s�k�t�{��MԊQ�׋�l%��e�fuЂI��I��?�`x�*zq�J�_��'�e�*T��޺!�bc�9g���dpWz
���l��k.��֙�E ��#�$�5�V�
���m��)�h�����N��K=��$rT�)K�g�?c�x�	�m:���S�+����J2�T��N�[r�	�{W鏉�?o4l����W�x�Iu�+.{�f��+�����o+�=���^�?5|7�$k�����ߝC¾%D�X��_�qʞ���dv�#Q�]���,���-u;�
�޾%\wV#�Ӎ[����ղ�2���=q^�E�ȶ�+�y��o&�A`�0>����6p�%��,cZqG���~)�n���i�6�m �E�q���x���_Y���������ׂ
N� !�S���
����_�g]s�:�]kzd��(Lmw���[�W<�
���h����
���ۦѮȆY���t��g��bi��3�����x�=WJI����A�/�:׀�����L��$_�"��W�|4��,5-)�(hWv� ��Ź�n��x�:9���խ�8ݣ�V�(�)�j�'P����^C��bG%J�=}�<HA#9�������	(#9�f���9^��P͜�`q��G�2����M l�&\u4�+�l��zpO-���x����9%:r:Sd���~��X�H���g�o�����{K�i�Q���z�y�Fր<���[�x����5�^�g����ZqjQvh���-7����y�]J��_<7n�5qkQ�+�3�w�}G�=�����F�?�l��q�f|ԁ�Ӟ����o��R�/�t�\�����$���~��5�_����d�[���|�*�F��5�����}n[��k�~����7]Z��ik%����+�U
S��,������
>������&�b6l�*��>�@���c����q��ȨN(�d��?�5[�����8KI9����a�j�������t&�nU�f�'���hĬx���z2UKl�ÿ-/V3pV9&�
�b���֝e;D�9�r޽��=�+��To��8��T/{�T����+c��smjt6�p�q���x��[r>�۞>��ikoL�d��H�<�c�j$R��m�(����]���s�m�ۼ�Q�֝�[clM�e�:⢆�[�L�	08�N)�Z�Y��L�6�+HE�Cz����G(�v��`@'�}+��|A5����Ɂ�ݎ��5��Ҁ�y<�29��]:�� {��(ۜV����S9TV2��'O��wj�]n#e|�3���źm��5������B̻d`w.N?J�r��b	eR7*rI���&��)/�n5)Ƥ7�E��n�dWu
I;=�qp���
�<���G��X��pW�\�į�&�W��Վ���NTJ��"�K���
�u�x{TP�Zl�o#��p�����n��-�ǧoʶys�%%��~��FǢh���4H�!il���K��M�w[�-D���cۖ����G׭m�Z6���	�t�񎓨�ij���#�V8���m����m���O��N���wr��ȯ]��<]��.o��I�`�=�}k��}G�X��{�����ut��
�QG��w��毞���K�Fǵ�k��>���ߍ��^�7P؀d�9I9F3�_
~ӿg���z{����$����M���As�~��,"�kM�:�ο�_��ş�!
SyK�x�~��9K�W�g��hk���w�(���"  `J�&u�r\�sҴ> jI�A�}1�e��\���~����PQ>']��;	��4�^'iX�y��!�;M���.9=N+�ų���'h?�z>�g���!��k��pT�r��=l�;��GK�UufGIT���Z_�2Io�3n � ���i��ͩ+m#��v~�"�Q	�r�8�J�eM��'�|��>�v<?���au��W���&��D��)^��G�6�\{J󯄞x��O�r������i��V_�l�j����
�0\%U�zjv����#�0�
��^�A�@�ZA��Ĩ�����"6� UDQ��1�T5y��3r��Ұ����7d�׹��S����Ҥ���՚:��r��Ջ��ʑ\c�I/���P��x��}��-�T,�1_	�g3�+R��V���=o�H�$v���NU0��Q��q^c�����#'���?Ev����͍���z�Z#ۋƣ���A5�W9- כ�"�Q�����{�1�ݵ��5��&��;hw�G���Z�w�����t�:dד���)b�������Y�K�eR@���4�_s�Lb�"o*X�㱬)�oq��J��㓚��5�
Y��fef<+�Z���Ԛ�!��ܩ'8����d�oY�s����mO̪���T$��7 ���|���{5�Pqۭq�7�-��Y#���q���7�*��}1�jP]A��:f�㼶���=�ļ!&���7K$�|�q#5��ⱷ'�~��f�1�QoC��;�0�zzԍc�s����J�I��X܂��]�������8�U�kS7f-X㰥��]v��VR��3��s��γ`���$�)Eܿ�[[�j����J�N��.d�Mw�3y�`�N�٪��*$rb������k�T��=H5�	�ɋ@�w�?�h�XA�AW��A5�C�-�_8�W#�v;�d��qU*�9-��0�'�y���:?�/�[\[E1h�s�s_�����mK�w��ܺ5�՞�z�ʑ�ʨ��p+��#kgm�I�G�w�)�xB�U����͎{��d��S��O{�1��*���>
���5�? ܛ�^���~~�W�_3Zݺ۔�9<�E~����>A�_+l�"E��UPI�,����^h����؊�B��D���QVWaTa�jIX��ӵR�b-�yl�����iz�07��)-ˉ��ςr�8�:f�q�j	si+�4RVRA4QX���h��-;����N?�^!񇂭��J�l̠�s�}��MVXf������#Ҋ+�bQ�MGEs�Zҋ}���S{��{�H&��
:�P(��W��7���d��q���U�l�2@��מ�Q\��H�:�[�O
܂�$�n���(�����|�m#g\�VT�E�6�����E�K�2��)𝞫�:��8<Wy�x/N�I�d<�2���0�G���+��L���\$1�	��-��Ch��!�$)��Ew�j�>�����6�G�[��o�ז�,���k��%��,	Z(�#ѣ�}	.�˹�Y���q��l�(��4Q\���uet�9���?���7����̝�y�QExY�W+v=<�M�w�[���|Q��-���Pg���u�9�@\z�������gw-,�v�,sE�p�W�g�TvgU�]��|C���I�4�7�G`(��B�������m�K��[��^��谾�Y��J�l����s��e)ZG)��G��w���ᥴ�1��H��f�+W�xt�����f�'��\�|��J�yzDj����EŀK�?SL�#�V�����ҹ�a���
�=h��l�L��?�`��ck���Q��q_-|l�o|�%�7��4Q_F+�#�i���w�^%�������_����B;�Wt��!/��%�L2�?8�g�v����r�����jEv�v-�?�nom��?��>"�YX\�78=y��TwE��Y�~#���#.Y�;�����+��E�G���Ez�خX����]�ֶGl��qV��˨Y9=�W�VW�꣱��x��m?�_��W�|H�U��4R�9<�Ee���%s��>#�ơ�V�r9�u�_ǚ�\��Cۚ(��Wc�����뫙i[�8�]����qE����hK��	v$�ɮ��S�a�|�(��j(��|h���V)���VϷ�W����I�'�E�6P��G�٣~ٜ���O9�:W�ߵ�K�x������l2��<Z�	�W���=�
q�sEW锟������uploaded_files/wedding-party-catering.jpeg0000644000352000025440000032425014374642663021446 0ustar  thediannthediann���JFIF``��C		



	
��C��q"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�R����w��N�֦�>Ģ�L�%�T�Q���b��X�g/�:wؼe�K��ҩ����BA�
��)?g;?�;%��y�.�aB�'8'����.��|'��յ�m����'��M�9+a�1
OO��I�w4�-ϧ~&��9�c��OR��>|W?>$��@������$�gBFq�����|��@~ֿ�w���V_tk_��
��Z�/`�5��V�A�$�Aڲ��8���i_�WRk�lR�K{�:�Y���A,w6׶�^A*��ɕᕃ�'ؿb�)gſ٫��~�U֙�;��&����,I59�؂�/�N��Iq�y�#�p�J����C(�h~�swG�G�Q��U�i�|��>%����֠�����qr�� ����x~�`{��_������E����?��S��҇�޷���F��c�n��P��6����Ў~e�����]-3���N�y�Q��>%N�m�����g�	ڑ\tHo���X�;չ;��.�!R	��=��g��+�ܠ�k��,x=��)�6�
ӣ�#xأ��VR8 ���*��}�ޔ[�>$��S���=p�'@<�Uy�$C��XȸnQ��ˏq�q\��rUJ�03[w�a���c\�{|��9�sPkk�����a�f�-�
̩��c�U5�@B'V��y��n$�Z����c�����[;��1�k��U`�-�=j]3Vf���N�:��j
�pG�|�m�;����5��6���>$�C�o��v7rH�J���"K~�@��q_AE(h���<sM�<\���)U�ö��3��v��m���Wc>J���z���k�����4�|M��4ؓS���"�G�bh��5=rA���H���$���!�Mc�G�]'�/K������z��JɪJg��ϗk���ݫ�co�I4��>��u�u�E5�+3,v�x�nx�?��D��$�(?�W�x��4Z�M|-nDkI�QG�n��*�:���-����h쏄�j��c��m'�v�/�
+L�X/��<4�4h~��0���h;[�9��>���~~�>�>)xS,�^Ol��H�_�e��f9�Kaԇ �N2�����|	��|ua�Z�O&���K��n��;����k�?��y���V�n"...�]��d�x�۞��ⱒ���G��]�&?��485�cV��x�诇<F���[�/�c�N|��l7
��Dzx�N�K��uM7T����Kf����Y6�mZѺH��u?,���7My�����ö�$�|7o�/��2�k/x{S�)�lm�	Ȋ�X!��o�z�#ʾx��	O�پx�^��/��嵟��3�|˟ݱ�&��s7�
��	T�ަM�º�_�<��+�9]k�{Ş����$u�n��g>v����^վx��E�m��F�6�
�2��h������Â�=�OD�̶����t�G�
˗+��zW˟���'�(���'�_RN�Qp9�<c5��'���Ϋ�[Y��9އ�L��ªr��۹��LJg=���J�����^�8�1��ܐ�f��"[e�OR��!�L�4m�Ğ �Ӵ�mB��;{d\�ҳa@�>����=|0o�V<==��Ǭ��29?j��s����?��o��N��;�`4��oz�F|˹I�/��	[J�1����M�)��KmF��^%:J�%�Z%ȶ��¬��	L��^w�t��#�I�SI7RR�}q�5�x��vڽƕa~4�k�I$�d�����[nFG5�?�����7�4�Y��%�¨�3�>���U�������j�ڿ�u_	j���,�/lea�����������i5��!�kZ�rM
G1^Q�C�cۨ�7���ۧ�����h�C�4����c�C�z�|6�.��ŗ����*�gr�;~��O����Ͽkώ<%�]x��]�'��i<7�]"h�r���LbV�С��Xg'5����'k6�h�m�
5�|)���t`ps�^W�&�^����f�����8~|d��ɏv�GS#ƁK�����p�	��I^i]y��qם�/٪�Y?��S$�.je�T|�qɫ�-��ǁ�U{�_k�	|�a�L�fC�p��›��)��O�U,�wQ��78Ț�:����kF}��~�O�Ө���Ss�^i�vLJ��[����j�g�|�F�X|=��Z�V'ʸ[)�I-�ĽGOJ�������4�F
9#>
�e��א~�_�^���O���o��<On������Ӵ���8H��7f�iF����U�{p�(Ц����_�ρ�l��<E<K�J��=�+����a���4���B��km$�>�r4�1ϗ,2�`�����ǿ,h��7^#��K][G�Y�V*wK��F�޿>�:Z��Ix��F�4lb����_=�ԕLk�o�练�j�t�S�u�f���x��m�i��U��kő"��K�u���y��c*����5��X�@8�}#��P����>2ޘ^�H[_�_��d���G�j�Mm�Fd9��v�~�<9s�mv�M��-唭�c8<�#�����*Ԕ�>_AѨ�%�����GҴ���`���5��)�_���Di�n�ԡ򤶘�$$�Q�����c�&��͙2T3ھ����;c�|���KT��8᐀3��Oڃ#
&��z?�'�`[|8����W�>6�xn��2K"�
�6>r�G9��"�����k{��{U��{V�[K�.�	p7����+富�/�'?|=�[��-���n����Wjȿ��'�@i�|
k�j
��|Z��������Ҿ4u�XT��/C���R�q����o<��M�Q�n�O�}ی�xf�p�2���X�i����r?*�#���S}���M�$��?�j�(��t���qY!ϫ��	��(࣫�oQ�ߘ����J\˪>_G�Uq]�����쟃���k�
N��H��]����~��w�%��2�ʒ76���=7��Y��]/È����ڱ�>h���^ww�7P��EԚL�ɂ&1�H����VP
ζ��Gt(�Z��c���� <�3(�Y���>/^]VL1j��1�S���������R�t��t�jh�=Z�/�ޮ��A���Ȋ���:�?�x~{pu-&��ƣ/)����+������R���8����Mz���w1c����o�c�ǧ�<��0ǟL�5��$|+�GLU�*�u����oC��_`~��%[����t�t�}￷��j�ާ��M;.���%�-����Av�k��3���>���O�,~:|��%�᮴���x�-��[�� �_�+����'�M��$}N�6�~I��c��⻍{��?^�{W��<�)~�|�"��E�d��nU9�KXJ�&}V�J��7��>���_�BW�I�+�u>�`E}�p|-�<!w��f��kKOX,�3)
�>�0�+�-F1!�@<��_eN\�L�z��6��j��O �VE��������0;�=~Č`��Փ#�Ҝ���5��B��CQ��u<���7���{�W���h�>�ё��U�A�:Y9ޝiP�1����8�4�u�O=�X�G�d���&��x����<v��?��"����O�?�CK��K+2yd�k�����|7{%ީo�,6we�c�2Z8��)�y�9��H��� dy&�$��s�F}q�#�W���%�Xh�7���������aV�1����x�3^V=]st����̔�˽~ɴ��ԋ{Q�*@t\p��G`�~#�GUyV&B�$���y���������ג�~�$�8�TT�)	�d���$!s�W�ɴ�I[R�u��*�$���s��3�*�qg��d�����~��
�P��.4���䲘��x�I�!�M��
ҾH���~�֞!�-��
h���Mu��6�a�d�!�R)�a�D��e@2/�|T���@�ӵ���o���V�.-��i��*G �
�n$�s�����[�n�K�_�Mq)�i!��Q���%v/F@5�K��5N��:����?��f0u^��}��;���K�D��>*��/�-�~�܀>������\���l27�6lK�-�g(tnCЂ0E+��s���#��+9g�<.T�"�l��t8���8�N`���|:7��S�]��_{&�h�o��2n*�ne��\��&O����/x������얥	�N6��ywG�,wr��*T''��M)�}�C+m\q�*���+]:�����W-���m�nZ�5�A\������c�i1���b�M#Q?k�9�u8\�H29ʸ�%����5�GTV���b��on�gBԷ�<�W%�]�2�\�����<�C�ks��F�8��'��v��������*�6�0Ӥ��([s)ǹi����EF�y�~����?'�U�߇~�3=���Ok�RQ�Xci�RO1�����W��g�x%J��r��O["Ib���M��~5��Ñj)���^F���==��Ì �@�`�V����M�I�Z�g�o�|)s<YG�tc*�f9�������_�Y㯋:������=:�ᄱi�L�eej��IJ�,휎�p1l?l�v�M�n��c�ݬ�m7Z�ܰa��>h�.�mpI�2k�tg�C	=�z/퇭
!�uk5���o�76�����
��E;H�>���o��*���І�S��嘕R9O�U�`������O�l������ğ<MrW_�V�(���
&r0���/���Y�ۆo��j�'��x�š�����/���F��闈36��D����gl����l'�g��X?g�-�Y]D��ٗ|i�3V�y���"��!Wi
��<u�:s�^C�B�����xV��]>�Ʃ�,��6��帄�]ɺ9?:79(�mY|T��ݼp������֪�ɪYȖ6ʪ�e݆��z�R���JoT���:4�������������n~x��'��:t��nY�#�>�4�Xv2Oj���� `:b��D�֙VH�*rGo���GŝS�_�W�࿍^���]�֥���l�Ȥ�٣p
��!��T�_�ڇ��7��᷄�/���7����d��K�;ot��<��Pg�H��+���0�*��^���~c����Vf4ɱ��ǭd|V�Ţ|:��<ic�_��]`��$�������ξK��<9���`O,���?(9�{r���<�nڳ��A5��{k(���W��~A�}���85�@���f�X-�}�1ץe�P:ݏ�?�!����k����#+$Ʉ&��x��e�zկۺ��ko�XX�
:�L���:��,�#rI�A���)���K��3�E{��KE���4���ێ~��~�r���A�����4,ʤ�#ʜF9�^�	��cԜ�8n�����W��Y�o�O��Ɵ&���j������>b��i�8ܧ���A�J���n��&������IL�=�q$e�IhOrI1��j�ό��ͮ��7�v�k5��;�\C�݂��V�׎xk������k��&�m<V����Ȭ�0<.b�i(=V`O@k��\Jj5���O[ ũ7F[�Q�~��m�ܴozcx���=����
�x{������ڄ0�K⦙/�/F��M�v
g�d�+��I���Whv�>5X�^y��?4�I��h-�,�Y�筴�$,2xU9��O��]i�
n;yp�N	C���=���d�x�/�w�v������|<�K�/��y�	��c�s��0�A��Φ��]�͓̲f��Vl���{��S����sC�U����S"��}���[�ʹ7?���%�,R迴����d�F<W�*$7,>�5�"�^9,Ғ9��i��ÿ�# 1J��m2���~�1�"�b�UU)�'�<���s�ڏ��^�Y��%�\iL�\�_9�v�+���2�ď�[Oz�%�Ŕן�3\�G�`*F	o�8������5�:��d��N�a(��V��x�V�q�8�}�Ѩ���e�)�Dg�)����#��8�p�>�nJ�K���M�(%ѳ�_�����7������:��5f>��)��N�/����:��R	��P^j�����CC��m��0m߻�&ɍ��2�kھ#���_��3�]�E��p��N�V�w"]����9`r�#��oږ-G�'���]2���W��P$�#�e3��ǃc�g�x��^��-�S=�������_x������%���t��b0�^)�wTh�2��C�1^9�'�ƹ�χv'��y�8��u��/�k��X��k�v�բ����O�_�
v�;�P��
�ÐG���}��k�ߴx?�5�յ����N�?u�
�0�%Š+�傯�?U�J�鱶{O�����b���f�y��+쟍����i���E}��:U��_���GŽ�E��O��o�_w^��k~.ќ6�6d�p�9�s���UW[�8�W?8��E���}	х�����yB�to���n�3���k�oU�O��	JO?)�<���I�|]��uf�Ɲa{�i��}��,R1���zd���.|_e��ڵ��k6��V��A��6���G����3W,�R_���#�����ng~���z~� �'�
q�7�0���$�/�e����lF�=�W���K�D��O�/�ܴn����eC�$_.�*�'�I�qx#�,Q�cm�}v�U,���$T��6e#=����>�~��M'g�������^�RP��YĞ�#
.�])tt�I*�G���<�/x6�_汾�x�2�°��X��^
�g��O�ZF�	h��#�u�LH�L�������w��쌩�LdPz��b�Mt�F�ǚdž|ioq��Q�[]7�p���Nc�B�W	۹�^<�V�S���i�#W�m�Kh�VɎ<���#��[�o��?���5�]�Kz��JG�$R���A�+�G��U���3s�̓��^����Y�����Y�d�I�h;�L�N�唓W��qp�[>������e�2���[�4�u�����7)��O��Ɠ�@մ���u"Tg�������io��:�|kiM�?�-5C�9���83���� �$����=A b�o��{}zϮ��3����EY�� �j�/��g�A�����>]G�-��|-��!\��k0.���~���D?`�m7�~��N��馈�$BN?ϩ���{⭾�������.��]�q������|Q��9�-��
�#�Fv�꤂�U"�R�2��rR�F���,��x}�MP��)Ba����?���ʭpl2����	�{L�?a+��"��m���Ϟ�ۘ����c�~kEeW�l�Q��Um���2K>z��E�l021��]&�۷^�ҹ��O�V�Mv!f��3/�~��
1�����P}+�HO;�
@%�c�_���[NB8����Ѭ�:��9��Ǧ)��$dSdB�J���c1U*s�i��$s��"Z��ci�^�v>���KM�����J�F�U����ɦ�ͻ�i�S�x�X`��k�o�����x����7ë/���i��$zV�,���"��w*&#����U�>2���U���m/#�-��Gqo*���eO��_0�~����궿�m��-L��^�$i<?������~�t*9ـG;-��S�v7����+TVg����L�<�Z|D�k4��֟�\��o���L�2���D̹�W��ŝ3� =��0�*�8�2+7�Rx��6����m�_궹��K��o�c�'){g"����iV���~�|Oeq�oY��b�
ω�o+<:r�O����K\i�K@]��-��BC�8����A�K�OC�؞Zi�S�֥�����J�)��\m�dP�SX6:���is���1[�e%d�b��F1�޹�|a��3�M&U���ӵu��zN��6��ԫ��t9��`��g���V�t�]���-ќ�4���{�Y�O��A$������H��<�|Y���:��3y�]G@�Y�v�t7Qtx�\��	WN��ÂǢ�	���E:EZea�E=1��Z�4�5��q�����Oh�֑,�3��Nk�ȳ�B��O��#�r勣��|k�]��t���7�W���/	/F��Ѧ�dҮm��c�ޅ�+���s_�?�o��fߏ�,�v���<},v�-Ի �u����H��=6H��ß��{[��T�)��Ȏ�h�
��A�#����8�V�,�%���fx?aW�|2��}L���F^	���u��ꀮSY%$��p��T�y��O.fݟ�pq�\���[�8=x�u�5^I��Z�ģ�~p��Y=��&s�2�۹`F�s�*���\I�0
?�U�c���w�&�ϧ�g)v7�o��	�� �j�v��c�D���K�Hi�T���+r�A��b[�v6Wr2r��z��4y�ĩP��O*�<�Q�������,�j���Z�
)���d^ǜ�z���
It�=�F5*7����]>��v6b���"G�K��U;�b9�t)�����Ů�-�z���Y�oU�!��x�q��6���}�f�m�%2��l�!���Z'H�e���Y��%�۵r���&��O�䱶\
�,�t���\}��	�RwE}�{�/B2�y��1�3��x����%ݳ��,��dh��C.?��#�w��5Z~�|K��:m׉~���,5�	�&k��@�MR�)5����Z#��+�i<e/�l����Q���E;;4�	v(�8�`�c;�5��Q�����Y��hb9-n��I"�$����x)�b;ׁ���O�RѭϤ��[ҭ��Ϗ�o�eߊ�E� ����|;��ǿ�t������,Y���y��/�I���-�n�;���G�����l���m��O��o1cZ�V}CEr���0#�7~��hȝ�x���>`!s�`}�Q�C_�f|j7(-ϸ���&}W��?��j�M��F]N��nU�Ǔ�9<g���7�����]�_�O�w
���&��W���k`OAu
�|�����|n��٭.]d���9\z�����!�~|T�~'xB�}7^�ޣo��O��M�}A<�c]<3Y�j��e�SU�s���#��L����<�;+��z`>!6A�����ό>(迴ǂ<���,>����q��t�MI�Q��I.�s�U=��?i�ğ����#�k�8MJ*G��Y8�G�N�'�=���:�?=�Ƶ.�����ʘ�l��Utef~�~������D�9@��7�B����+��5[;/����O��+�nl#�`]%���[uR=2G��=*?�'V�����6d��{��۞�ec�k�/�8~�D�g�� ���K����'��&
�I{��'~[��?�pj�q{4�#�<	�k��g�7U�f��u(U���	E+��$��_���'�;σ�?��޽�.C�(d�����nRCب��S�c�>j��M>�U���9m1��Q�� ��;�຿������ZyG�:-ұv�\�_��c�V�,LgB[�Cţ�hrW�s�k���#�ǟ<	���⏄��3Ѽ�������`Q�������k��>"^�2[�V�H��W�/���������"mKK���v-�J�ck{�\w�l��@9��8"���3�m��W���]�+�wa��]��5
:dY쮃�m,M��IA�q��?�}��+��+���
�R���e��.�	���g�ύ�[�I�I�<��N��_(q_C�x��Ş%���5<�;��e�a�l7�W��n�o��W��/�+?ك���7���Kc��q��m����|�u��I "���w��U���e��L߳׏f�C��K�j���c1[K��>�}k���yٵz���_xl8*��� �F+w�b�~�?�����u���E�\�<������#�+����w�.��8�_���wvZdR���!�A���7�U��>	�T�e�Ͳ\��f��I ��[ͥ�oR���a�W=b�NF+уJ�kfxX������t��o�O��{�(���-����;K�����[�`q�5���'�z�����;��7�����\��i�[���Z[;�b���N$c5�5��;��_G���ݴ��6�\|c񯀿���a���x��t�x28|A��Z�4$���%z�G>�n��:r����UR��?<K��G�^,����a���e��E��sF�s�nS�}��x�O������	i���~(�3}c��6��7
`�j6�9'δǁ�ȼz��J?g���+_�:,vph�tkO�(�)�"��e�Z����Q�:��D|}��tZg���ڌ;��q��61�z�־V��G��UV��an����H~~�7��4
��om�=h_|s�^Ƴ��{�/����ű7�t��Vw�'���T��^q�h�$>	��kv26��{X�>���Akk)~ѥ�'��|��9�#������U��n���C���s�S>V���{���
<u���$�b8��~������a���2[�|�yG�Q�|	�|�WƶȰi"�
��a\��=�O�'>���9�~�D���A%���{��rbD��xX7}��q�����m�_
X��1krd��
��<v�R�i�v�%i7�]���Ϳ�,��F�7��t�[K+��ă{m#$½K������}���Ξ��,�3.%k�Dy�X��=���=k��kKo���䛂�sun�m���1���l��C��>'xCRS<��m|Eh�wP��9�s�x��,�%UUr�K��%K��j��>�h�v�vEYԷ���U���O�S��ቮ��|���b�)mu� �y�W�?�dž���T��D¦�����0#��.q���\��_���]�昢��|�&TE}y�����sZU�ƔӖ�T�έ6�c�ѧM[C���)��}�W!��@���ę0���A��U��:|V�����fA�++x���_�V�n�ƛ�{7�T�yS��$El~y��\ڝX�*,�_ٯWӧ���t-Q��K���m�9���¿4l��V������>����'
�o�/o���<mas��@���������D��q_���e�>%�A�ؼ��z���v���2n��n���Z���]nO���3�]���?|a��i�7�r�\X4R|ۢ�n`*���~��E���,0$��R#��W����%�����Y����9� �#�H?��4mb�Y5[<^i��<�6��"�.sMT�^�c���Ui얧���U��O��y��o�GrK�e��z�9���X�O
��������I��?5‘9�4,)���f��gj,�����T>�s�}
�M��<JВwg%���I~u��?{#�A��X
�0J�\֢rW�G*�O���1���K�?��H4�Jhv��dB��Ώ�V���>��
t����岟�E��j��`UI�ۡ	irl�G��28-��б��,�9^
����jW%�&����|���
G���,{�c�N�t�<���a41�9�-���A�<��x�Df&ۓ"ɑ���y�_��r�"])fI-�����w:lxW9+$A���2.�8��c�;("f�D�0\Kx89��W�\��GS��m�ؓ�߶��W�ugM+��l&�8Ȋa��xIʃ�9�u����b?�W��މ{���1ɽm7�ѼR&��0��eo�Q�|�/F�'9�}��+�(�����?���ZZ��B��B���W�����<%b�Q�8�ߟ4ʡV��{������{$Υ������ߡ�1�[���_P��[X�$��dl���;#r�G��[���q��
���7+z��)��>��Acue�X��.P�3�b�n��YN�_F�!}>e��eu�"~�E9��c�;���X�e�G�t+��������~>����4�W1��T��#A�>a�]߄�f%�5Kit�h2��"�N�^6��pA�@y����i�Fл�W�aֽg�_��<F�n�^E�]���-��9�+��M�N[�z��9�9O�(���?g_��2h��{�]D�q:&y���d<�����D�ۯ�$�����k�k��ܗ�2�sG�x��$�;*�^9<��%*��� r~�'�[�DŽ%���f���{���xf�����P�-M�C���-��m�/��m���}J�FŴbR
��z*Hѳ�d�J����jjoG���[Μm�ާ�>��s���\������֓i�w�43�J�I�6V�T�#�;�1�G\�\�y5���h~N:3�m'�S瑷���2���v���W]㋐�A��^�ޔ�<��5���s�;� �=j9*����}�{���f��.p�@X��\����X\��UĞ?��]>C����^K�a��L����j���-��V�|� ���=TF���O���^:!�7�ˏrO����W;+�������[�"Y-z��<�{θ�ÛS椝����ʪr��}S���>|[�O�Kkw�E�Ohk��ۧ�#�8@xa�0�F��ᛅ�c��Լ3w�&��G���0�5�wK�It��"=��_��Ȯ7㷄��7V״�i���U�Q����RH�۷�O��Tvx5���h?�a�G<�t�_f��n�l
�6BJD��s�,s���t�^�Z�0�I;�éԕ:}�~g�zŬ���'#+����/o�[K�.���Rl%xݬ��X�!W�~�#��?�W�񎣢kw6:���=��^�	# �I
H �+���^WR�[���q����5�hG��5n�{�����.�c?�.���慢x��;��g�.�t�H��H��A��wc#p�s���"��x���/����nj[_	1w?�dq*�+:b����>I�H�	����k�g(_�"�s$����|���W�<@�9�M�xB���m�9,VTh��YQO_�[	a�F�(G\W�f�Og7%�>�,�{JiM�SG�0�"mbH�A㚹��Gq�J�K���dA�C�\{��T��BRh�N
�e��ӑ�j_,NF� �W$�Ҿvܓ�[�B�Vg��Bߌ�>*�+�G�xԧi���=𚑓ul�c� C�n���տ�ZP~!�FR���_ƾ0��?i)�b/��g�3��v��
?��`��Oq��}�� �t�'���V�g�F����.�t��ln�æ�d����VRU�����G�־�,Ī�.|>g��u�ٞ3t�Ns�+.��O�ޮ�;�
W89�S���;�+�N�')�����_�)�˖}2�J��`�?�T�������m�A��U�,X�%[��W���0�f����irˈ�}-�ٚ'�⾂��i�4O��ŧh�k%S�Onq\��:(I�s��� �D^<��>��r�S�:��Ғ� �������
[|i��<Kb���\[i��OU"'?�8���/�7_㜿���h7�o��wZ�͖Ed�=����:����\�L�H���t?Ĥ`���5�5#6Κ�c:R�����mt��5;KU���� '6�}�}������G����Ż&7���O��Y������ϥ����>�8��r;Wܟ�S٫D�U�R�$��M��du�p���#��+���g�O”�3���/���<��r�:����w�8iNJ
�O����F2��ZOˡ���	˩Y:�.��F]�ߍ}��64�~)��%Ԯ���_�2�L���tm�Cݞ�t�7r[�y'�>"�I�]#@�I�eF�0� ���Z~�����7Y�E�1�g��>���l�FR���P@�ћ��'��e[��;/S�\55K�J��n���|$����Z��U�br�"��O�bEu��K���NSK���ϋ��<$�Q�&��mՋ��>\����^}��Z�s�����
�)VҖ6�`�.�a�f��pzW���^(�>�Z�4Fk~��i��C(.���x�&����q>^��Ծg�O��Y_�H�
P\ZFJ��T���ڋ���߀u'i>�q�M��rx�]������+ĖWIwo�������D��+�?�ڷ�/�v
�K��3E{�@���c#sp1�������Ed��R�C���¹�s���hn��o�Z��nd��g�'�ű?�m��ς��-�A{f�G{at���ҒF�ЏBA�n+�c��n<C�GxLܙ����_��S�2LA��ھ?�w�T�Q�X��c�gY.���Gʫ�I>��f�*����5'R�"�b~ݞ��#[��A��߄|;�B�P����6�L9���Ku=��7�E,���%��<t#��~��˷�7������h�-{����	%�C�M��w�_���x'Z����ɥ�b��`�=A>�W�N��%���Rt�=����ӖR|[��sp�A�=���~3ql���Z2��W�����쑨跚���Cd!�[�WS�@�G<�A����?��/�Ϧ�E(|�48��4g��_jx�%Dž���4ˤX�m��w,��d�u���k���I�U^�C�4�J4��v�ao���g�CG�F��E�X�'�e��g���&ߪ����L���<�C�M?ƚ}�:�9C,m��L����?d�k�+4��n#�<9mr�tYM���qd�����66�|~��C8d�d��)���:i��?;?o����㥒䱻�N:E����%{V#��<�"�5�_���5�C��E(�F�w��Fϸ������徵�h����,t	�[u^\��w
��@��<�OZ��
c�.�|��s�X�z7�,-�-��4��̭��FN�ɮ<�^�q��K��j[���N_�4k�,��=�_B.���7����O�Q��P-坴�
�N��W�?������F��Y���q&���S��#��
����~&������+hUXr9���\�\�u�B1�fm��F�i9-^�O�>_�=@����� �W�G�o,����|z��
J=WO�+��^0���lw ��>n�����Cy�B�*��<���;vK'�Z�֓�إM]I���-���ִ�
�qm�\��N��)�*#���3�>������֡�x?�����y`��yg"	A���_�X����.�ys��5W�e�*�?����c�o�"�oc��н�u�F�%�X
3��Z��ҍ\68�Ú��c�J�+�Zq�O�i������k�[�{�!F�a�+zF>���y��'���}N�py��~�~џ-|��R��_�g,l�o81q���_�/�R�^�v������cj��G*�0�E��<L�_�v�S��%K���+��>iW�6���0�Ѵc��a�1mR	���;�Z|��.�@�x����P8��~[���^�r�g��}�yY��'�b)�ı<�P�6	>�C�\�2c�L4����T�p� w����P�q�b	=�<�_ҁ��qk��á��]��.nt�IpCq&�'r�����ĆX��dx��i���0��8u;[i�Y�@�����5�庖x�Ld���/�L�Fv�9�/.�-��V�od��h��r�&w�N�)�ܒy�z4%��X�1�����>�yN�p��Z�I��Y�,1���u'��-�Lr9�����Z.�[K�Gy���J�vϧ5�=�M��6���8?L��WC9T/����/'�į��_[����G�D@wΣdp�)ĸX�'��_?�c�ʒC2k�L���\����G���ib��5�"]�g��Wvw��^X_[���r�Ȅ2b�G�_ϟ��-^~������K��裾��Xd��V0ʧ�E${r?�s_7�`��:�_�f��f��Q�:n�(�1|�����M�n�m`M�61�S��Fb��$j���UC�YU�"��rF��\��)�1�Fp3_#S�i�a�Ϣ�~�)>�ki�@�<.�{Ȝ�YU�W�ˀA�y��|1��|��mt�������f�8�j���z\{��[��I(F
�y�j��kN�5��ֳ��J����)��s�$�}3X�Y��{H�u��Qq�׹�������<���w�-$���yk
y7�"��ۏޒ)���L���c�~G��ߴ��?�s�?�gkt�ݳ����3$�&?��p��F�s���o�,��o_����5[�f�_���cC��2Z?��N~�(��yާ+$��u?�]��1�s�כk��1�'5��9��l�<Ir�j6�'ڶ<�����wU6���2�m�Y�MsXs����Vס��/��IҔ�����D�REy��3J�^�o���3XL��xh�`���h�o
���]�o�mk��$u¸'��tߵN�5�#Ķ�D�/�p#p��G�g��5D�%�h�n��m7���1���O�<?�xj�@ԍ��۱ky_H��T�yA�B0H9�_�?�?�+��_��ᛩ㽓KY�nB2��^V�d�|�`�9�M~,�Ÿ�o��F����^�]�d�]H��qo�8�5��?����½h����=�O̗:}��<n]� �@^���j�XxZ��<:�����~y�D>â~�^$����ck��"�|�c���="��K�J���'bQJ�1�W�g�}�_xGV�t��K�e�e���N	NOO�6	>����_�xG�F�����v���-�dn#y�;`g=+�X��єU���1X��N�>P��6�q��Yp�t`�c�����a'�O��n`�c�x�E��e?$,�Y_�-�r=�~�x�(tmRk[���300�d�4y�8#�$s�|���Ck��%��ŲM| P2LpA2��>��r�)�6�>��
��^���<Ǚbkxn̍J�g<��A�+*KS)X;#6��O֭t߇�UݴV�V> �]B�����2qЬ�r?ڮOX�M'�z��s�R������ʡ��q��[��O�߅>%��KY�&�nH��a���7�+�MG�-�A~������f�����Z��?m���cܵ���=O��|���7Sʲ�������~�~5�_�K��_�����y.<{o�}J���LmnXzn��1?쯥}W
מ�����>_>��#%��\Bc��Ǯj��J�6���kkS�� 󎕖�2F��}u��������#�H�")�c��?"O�_`�Fֿ���;�m��$G!�Q�����"�A��Wھ	��1��R7�%��NpVh��/����,�5��xw��{w���������Y�@��ݰ�uk�bY��h$s�W�90�����g��f��>�f����ag�8,`���L����Hԭ��n�'[�[��heC��C+b?�y�h��}O��.��)o��0X�m���
��E~|��<�1g�/�*�iy�};�>�7�o���Xo���L��$}
~�~���*���Y���Y����w';G��=�_�;���o��em{<M��^���,��0�r1��:���<4jK촙��8�%El���{�b���!���Sm}��Oar�H),242/���V���>!���K�u�.�M�6�l���́q�g�
;�:ɡ~Ծ2��?6
gS�V�6E��y�w�i�<��lχz�ų,�o�,��ȥ|�fq�I־~s�K��g�F��o{#�%���?٫�m��j>��F�]�ƛv��L"j����|6:"��=f�;�=���8%�I��]/�\�	��|W�۠<����������"����Y�lv������?��f�L��}K�ګنݒ��#I?�eR?�Z�1�T=���0-<C�?e��۟�2x�A�<4a���+������y�{da�˱��q�׭�۟u�x��Nj���pY�u���VonR��D��!X��q�����O��<~���_�1��n,����H�[�i#��kiA*ɴĊ����>,\j�
��-�Ǫ���gu�\8K�rI�&��~�בUUҨ֫s��
u(�ٯ����|Fԭ��j��int�Y��H�;�VER���W�>y72+ ���.H�Z�
��?��Z{\���q1��%'����Y�/��{�����7^G����S�_�r^�*>��\�������J����#�~�Kw����+��[���xC�����<J��/�B'o*K�fA�|H�����}�2��`������d��W}�V�u�a�5��&��G���G��mV-����fǹ\�5�Q�C�
��FY�_���}��_��ELJ>+]�w���N�%�$������#�)㿄���&n�h�<*�bc�~a�WG�[~���|o}���_Й�T\����G�y��u7�&�^hg�J���a)��NHh����s�_=��8bZ{\�
8nz�;X���~�9�<�J��Я`u �P��=8�?i+�9�]���8f�o�'�fv��R3iZ=ɸ~ef`�gӸ�~3�[��B�����6v�[���{�'?�}L��Z����?g�3����_�?��\�K{&��ov��g�
@��S���"xS�����\i�Dյxཱྀ�116-���E}�1�\�~
����E�:2HB�I�_�~_~����쥮�#E���*�p��;�{��[�ѕ8=^�n_G�ՅI-�E���˟�#�4�F�|$�<�,.�eǛf��2v��
�V���
��nc��/{�2���FK�_`�����W4��?��4ɭ��uG\C)�ky1�a��
�?��U�|A�~(�w���=Q������Q+��AR}k����4����~g��ⰵ��-#���?�)��=7M��-s9P��	�2}��ㆺ���׃L.$X�nT��H��~D�ݚ����-C�&���]V����C<�Rܕ?��Ҿ�q�Kߎ�߇�C�F����uK�mr�D�)�]�ч����R��V����ԍ��:O~�^1񧊵Z�m�
F��@Č?�+�s�/��߷7�/��[\G�[�?%�N~e'�8#���#G� �5O��I�y5�����=�v�\/�eE�o\�9�_c�XϩWQ�m��Lۅ�xlְ��+7������֕��©3��V�;D��N��q�8��_�"�(NK4�K�1$�l���^��-#�Λ�xoƉ�\xC�>$�J�P�1��;�I�c��+_X�c���e��Yi�x���cX�4��oZ�Ϫ�*�ʠ��ܴl����~e���-l~r^���(1س�D�o�C���S-���w7?�~�x?��>�)th5�e��
����u�0x�����L��^,�z��(����^�o��[?�����?|
�+OԮ���v$�v��+�eZ��Nx$�ݚ��m{÷H.Z�[pq�j��6��l��3�u��\_��Z�n�cS��)�
��L���G���A��N�}���#��6	���=.p�-Z��G�s�ֳu�
I�k��{w�d#:���z4x��8%SΫ��'rm���|�|?ִY�]i�������i6��_�q�OW�3�^�S]�}n�F0�
`k�4�Jp�����7�kܡʼn�6<j�!%�3��WĽK���X�`��a=���Gf��=On+Q���o�:��K$���rP1�q铁�z����J�_��5�]����Y��[gQ���U$�xs���.�����7n�2�RWvy�Nӏ���t�	.x+\���*��w>�n��C
�+tt���Ғ�$d�U>��>�ђ��Td����l�'-'�cb�p9�c��L�Yί [�Hg\);��BW�s�V�A6i�^�����fv�GU,0y�����־G����i�I~�)��"��_�U���.t�7�Z��P�{܀�?OǪ��4����r�@œ�:A�'��}��E<�nU�e�BH0''�p}{��z�U����΢���Or|U�k���/W���#o,����A��!ԭC=��=�~^������?�gx��v�j���
����s�:�M���}�6r
}i�����F. ��Y�;w�=�� ��_�f��/�\�'/���$q��l�{�8�[��4��֝�OZi���� �����4e�U<��El�z<�R6�~S�C��2_�$/��T�$.9�,&)^���E��/�;�?gڟ��}9�T����I����L�#�I�'��=
E:߈,|o��k�[�G�쭵��|��)4d}�O�B;W���§]��ޗ-w�ki':3�;�0۟c�Z����G�x�����f�.G�dռq7��sˈ$w���<��Q�P>�'��r��U���s�,}���v5g��^Q�\����z׏"M'9�+�5X�ߎ�g�Z�*o���k������\r��M�r��z���}��㞆���A7���Scv5�,7uB3����Ş4mBM��q���r��ٶ���Hc\l*�nN:�Ԛ��x��~��-�xj�=b��P�H��d��D��Qўq������'��4<~!�v��a����Qq��t>���g��-Ɵ�d�/�1�.]Y�Cq@��$FN�G�Z�w�"�S��^����^������&�2O�l�(���u���\��7�;�C��<W�mM�x�]�žԴ�G�.V�&KiYWfl�<��x�(�ʔ���3Zэ<Tj?��#�ڇ����p�d��-�<r��ǃҾ"��thu_Xk3[¶ڮ���[���{��@s�3�Џi�Z�^�g��=�ǃ�~S_x�X�$x;H�ޯ$6׺��t��e,����f�c�J�2u�JQKg��.v�+F�u���I�չk����$,M�j�8998Ͽ&���g���w�5�.�=�����0i9���:���_T����?��������tۋ�2�`p���<���)G�7���{�$��O$($����t#���Ea�ë�wE�
٣����Z��^� ��渚pO*�c��a�+t�|[Ew��O怡�=�V܄�s��<t�U����'G���C��8���.X/�������F��f�|~Z�!;�:�y���s
q����pe8\�M�p�ev�F��/�:����XO���Go�|`�n<#~Ҍ���$���Ԇ�[���CI�Kա[�'x�X�Q2A'���k̿m��>�¹���1�U�/�"���&�FI�z!��U��Ҭ�\��A���n�š�B���]Զ7p�X���$S�Xq\��N8��^��
��o���Ɣ���x������:���>�� F��#8'ξ�5dς����B�͘X�zw��_�����>�B<CgeT+��\�)8�u��7C�q���7ĉ>|H�K���	%��Sѷ��N�G��d���۝��[��3�6��G�e��1���A���\���S���?i��{���[.�el�a��w��T�u�C(���@t����nK�V�I�ȸ�d���+�o�7����K�Wj~��T�|SjzT��|���ύ3�<k&@��g��&P�_�G�����wG��ƽ*��?
5�+�#��'���Rq���=��w���m,Zn�`Q&�g@�
���By�����m_��Ʒt:��#h�AF��
���û�B�Q{Kg�t�7n#L�#�X1��RM}
jN9}YOKj|ӭ͏�=�_5�O���Y��c{⯇��;��֪$�g?�xg�Χ�m>�Q�Io,|�T6��
���^��ͭ~�_d���%��y��낋o��B��Uz^G��
�7/"^Z�;n*��c��|n>�T�kv�>�/��9R�w8o�O�ٟ�oM��o��O�`1�n-b�gW�PO����;蓿��o��E�[�0*��o�2��j&���~�~զ�~�����왤߻����R�
�Ղ��_�,�ە^70 A��k�#V���xӮ�|��d!��ӣ�k���m�ffi������_�'��'�_��>���xEf�_2�+�1�1^Y���w�z�ڿ#<E�9��=b�X��]�ͳ'+h۲boE<��}3�V�a�ʹ˙��<R��X�FC!����a�g"�[��_�(T�et�w��?�!�#��ž+�G�u���R8mgZ����0H�[��z S�85����k�R�˨[
�I
	��;޼�D�`���-9�}�Es��+e#d�����{W�|~�.�9��^�m�������V�;*�R�$[���y�_��*�K��&��\��_����� ���I�8���������G�.�d��],>Ҥ%�$�m �����OT}#�y��xdv��c��(����VUҼN.Vͥ��a�;��<���Ɣ�尃�����)'}���k�mi�?<a�m##����������ͳŢx�D�� "�������b�u�^/���(�i �`���⽔>�t6�L�Lr�F>\a�p{5QZL�X��u?X�b?��2��O����kZ�\[˽���3� `���+�
���/�{p׏_"������ֿ�/����?�q�4ո�����:Cc��s��
�ȧ��B;��G�A|��i�|D�D��v�=�q�r���t9�狌2��_g5(�N�#ǝe�����-υo�u
����C{p �W�ID{�F[��a�~:|l�%�/	n5/����1��2�:������_�?�?ǻmcš���#y�������u`��6��Ƽ��ş��,7W�zΘd�}>��c�x�X����i�S�S�-YIIuG�ψ�J�'���\ZJ���J�1ۊ��xcW�]��qa	_�pE+�"O��7���9�M}��h��w%���]&�8���}Wׁ����>��,��١��Ԧ]3Ky;�K��]�va:���k�F�pv�f��G�w��j��ݷ�~,�a��W���Cg��OQ���DX ݵ���o�z�Ÿ�+-��	��P��ﴭ�9�˻��ի��� ���ן�V�7���W�����
�����Y��*�	FU8�Nq��������_���x�N��������^�Q$�`1�*��vb���M{T�flUJsr�Z���~��wwf"���Hc!�-�#�y�'���?~��7׼b,�#b"���	F���NM{o��5[᷁���+���RH���u��@/+0'v��ǟ�D��� �ym�k���E�A�M�ZbeB���g�pS��Y{\:I�k��U�q8���q���U������o�m���v�^��ش73�p���8=�_[~Ϟ0ֿa	o�?4��̦�WQ�nc,z�$s^������|���g��I�k:<���yuX�`���X9��'���t��x��>�4W�*����k�X8��Yr:
U���(�mH��_��T���M��Ż+�/3��_�Y��ZƟr�����qn����{O�n���3��];���E�?�T6>�����4>�V��zN��&�b��[{��.��8X���0
O��'������X��zr��q5�Y�,���!��x��������ǧ��IՋ�]�q|h������.�t��n
������1?� ��@`���_����O��R^[|8񍴺��3m�.���q]_�>������5�~���$WVr]<�PT#�qJy��d��M~b���؇����I]��e�?X5?h�K#��Z^����DqN+��/hZ��
�}:vA����5��+��<co��jz���j�}��b�������U�j.�/�L�0,̩:���_�ct�x��L�*j�vI��m:�IF��w��R��^�,f�n���
�1߁X���|*��~L?8I
�W�~)���
�S��,�@�1���j{�ښ�D�
���,��r>_nխ9N~�[��t��Tu�����׏�����M-گ�f��l�8���_
��g�ηԄ��%�#1�A&@b�����+�Y�ȧ�#>��o�q�i~�λ�G�A-֦>��N��YY�(�t|�������^���S����|E�pd%�988'8�Y1���pbqjVs�,aNz�_P��P��H�D��P��s�H�I8���n���o�����|��嚺�R�フ��U�u��ҕ�g5*�q����m��ӰܠxG'�N�f���5�U��2�e���rB28��
�q��p���:�Nت������i��OҥK:d+ap��G94��v!�_c�/�.��c�xO�L0I��_3���R7̒2����Pɞ8#�E|��^Ѽ/�=r�̼��vK�{��I��@21�2#�:�W��u��h?�WǞ��Y�-"I�eD�\�s($`�W�Fa_�?5��<==���em�G݀]�� �Km�;��A�{w(��_����8�”U�L��S���)�D�Ly¬���Mr��}b;��,㶱�$�+e��v85�c�zmWú����N��[�8��6���ld��ֹ��;�x.m�������z��a��<g�m��ʍ^�qq>��{��3ui�$��130X̃o9N��E}���|c��>/�F�Q{;��5ͬ,q��f�u�|�I��̯��$�'�Z��8U������+�?b������T����M?W�l���ک�~�eq�W�e�����ƿh�-n~�x�Hv� �>��W6�mD��� W��S����Z�ż��0��b��4��۸�j��e/y���{�Ɨ��� ��:-,!q���Ku������T-���c>�����V�������x�#��c{;�v�|��e���🲺��~���F�݀�{i�t�$�*p��Rظ����?k���
|A��BK�
]5ͺ7!�,U��@?A�_��B��������<��N�H����qwr֖��q9
��=��ᔘ'����8����k�Y�
�������R?��%'�+�U'��=�����>�y�Ù�o��Ϧ�K����kC4��B�F&�P��Yv�{H��r�iY5�ή�/z:��9�7�E����u=6e�y���u�c�u�<g85�_��_�������41�j�j��g��!�$��+���?h�{�>"�
������[XT��/'�q,j�L�i�������<z>'��K�3@�l�e��+ً�ѫ.��0B�`�:���L%Fu9|�|�7*�*��^�
��9�ڽIJ���p�+5�b	�(�������G$o�F��ѹ���?H������F����ko��yLIh�
��3s����sQ��w=��-��G��%�;IeI�u
��$b�u̮�0��I#���J<K��v�����|� Z���ܽ�ʬ~]�{���|�#�߹�\�����]#����kr�Ta��Bzq�צ|x�M6.����w�ĺ�I#���@��u\��G��k|�r�_��l.5h����"��`�O���[�7�
�"�09��x�r�Vk���3!��F�s��<�7?h��O�v��##�ה��
�^��~!Ja*�\VڜC���U8�����Β���[�vQ �Kp8'�������-D����6'� ��[�_�Ӟ�W�噜c��o�>��n��������9~;3�#�_kgp��|�m�Վ	镅m��A�%����@~��+኷�?�����>���2@�+�:z���5�WP�@9�s_�Pw���=X��ñP�Z\�?)�G�
�<;z���?�uR9N~���k���u�×x�N1]
�����u�~2~���f>f��2�M�7k)Nac��Hu��+�=Lj>��J�Ƈo<M��X�Ս�&�&�|��O�@�W��:����mSIJ�L��	-.!-�dR22{`=��D�	ᇲ����+P}�Ķ������D�@ޠ��u�|GF�	:ԽO�ʪ¬T%���
~ٓ�O�ׇ#�U��sE	�X[���p������:�χc�а8{�<A8��H��v�~��6�bMR�ڦ��=\Hu?��عm�lD烴��9��Mc�gL�g6�w���.�(eVTぐ���0ْ�ry)+�[4|�/-�3�E�����g�k�t�}y��n#�lv�K�\�`z#(������x��	�hװ�$���u�|sҺ��W���Ѯ�^/�=�<D�l�,����>��>��M�Ԭ�؉����W�b�3�qUytZ>������(��]��o��Lyd��u�"R��H�$�^n:�񉄖Ѕ���x����Z����.��Yo�g�E�ؖ?h�e�>��?�|+l�c����m�d�K~G�����dڎ�o�is�]B��O�bp@��*�~x����🍵[-&�_D�/�>Dr��z�8`1ɮ$6�0�ۅr�<�>�9��e�5��nvH�po��,�*����-G�yn>���ݏ�o�&��'�=b�XҬ��
+[ڍw}�d�v�y��s�67(��ny�n���K
[L���[K��r�/j�p�����/�������C�zw��m�ϡZ����S*h3�m����$l��$���~��q\��+M�X��IŪȑ��9"T�W���ZԨF�|�isҭV�J��W-���_�F��o�K�5�I���e� �����{�s�
~;������~5��C�/.�[�a���lG�R2ٯП�-��K��˟���#~��Y���G���+���0��"�vB�v��:�W�G�8v;�'��ɣ�*��I��I��9%)�{����ڽ�˧����n�=NFz��\_�M.Ko\�2'�t�'ֿ<��8����s����hA�#��5�H�M��k�YO���X�쏡�}_���9'��e���v�v/|z
��c��bx��sm�?\i�Ӣ�:�k7�$[�F�$�*G��e?(+�@�_~Ş3�W��F����w�m�˧�|�d'�O 㱯��#��"߳����P�e�x�I�Ќ%R[�b�4q�%
���G5�<�H�=�*�A�nu?��E�O�o�r��σ� \|L�2��+����yDrz�2I�+����fk��Z��u��^d�� �U��{���]~�~.���4�r����W�	�/��2�t�w�O+��_�I�x�L�ox�BҌw
��L��]ı�2����G|7ӵrb���e�sX�h£�?���
�|7i!���]@�u$߽c�7�'��Wο����	�+�
[PЛĚd� ��l�ό�#<�������jB�K�M3�Yn��A�,|Ƽ��w�7�W�X�Z�Tլ�͎+�JM���EkC���
��+%iR׹���_�)ׁ�{��_F��Si4�;���$/��x������X��4��4MBkM)"H�M8�2p6-�C�}�����?�ľ�-d� �TϐA����5��	��K�����7����a�iC7�O�e����EW�4�]ͰzX��cN�{�1��^>�4��C�N�k�D$���9߁���W�|[���xW�7������&���J��c�>��c��z���]��t}�M��M}���Ч�ss
dž#g�
��{������?�;]��Yi>��+h��F��Ab20���_!_�r�ct�=���폪��u�[]yZW�џ|G��|?�H�W�5�{�z��٪RY���/��UQ��'$�&�����6|k��t���)�j�H�q�y��\�x:0e`w;溿�1�_�5��t[+�p֎;zn�w���E��ψ5-;Q�5�pL�n�M��_�`�
��u�#6��P��Vwo]eyz����
��R�l�n��&z�����3H�h�%��G�Z��l�5�����ߝ�#I�� �C]߉�x��_�M���:�}�"�MB�46�L�VE}������f�o�q�_�?�[kk
2�X�֡��/��	�v9Np����e���l��h�n���rK�]]��3�C�y�5��?���1���9��m<�W���,��;-5��|��v���Eu�Ś�쯼7լ&rR}M2����8��޽[�_hx��Y�|5�]��4w~���m#.��O#c�Z�x?d�}�O�'P�/�l��>��VW��x�ò�m~X��ӓ-�*�t�]��}�N��ru�R]V��Dž��F
1�������k}Ǥ����3��;Y����D�MF{��D�<M��A��pk�GƝV�S���~.gg���x!�'5�n���>ҵ+�W�6�j��;\y��
��T�o!��>{9<�?�nn�4��c�<���8Z�r.�*�E*m�O�<L���.J�&1�Q���O�3���E��W�5�;D&K��H�&@,0	=G����x��ړh��+}*�R��ύ�p����^�[���m�/��WQ��y0�m���������#~��x95߉z�x�}SS��Ռ%"�ERB,k�>��5��/��UIs��{��/�Ք�Ǔ�t?J�c��@�Z��l�U����J�Y�I��D���B��#e(�v���s�\o�WE��kM�i%--����̨H`A^~RO��]��~#��~5���B6���|u*k7Q�p"��u'�u\me��|/B�:I�`|;Ҿ)����~���Zfa2\���.Bg��rNz�3j�h�*2L�f��?�~0mB�����*���Z��v��npy?��)�����t[�:o|��}�v2B"bsR��E��$u�O�����f���+[|y~z�x8�d/�����<��Ώ�Oat�+�g1L���öA �H�{�<�S��U�M"�۶��8�bE�vf�g�'v+���e�b9S��܁���Nzp:�?�]�M�Ö�a��$�~=�*�s��
V)��E�`|a�<d��Es��p����E9#��W��q�.��O�e�	��ۯ��YJ�!C��+�O����k6���)��q־���hx_�����(Vu+�r0%�o�Y��˘�y��^�6z�D�z�}Ϛt�kz&�v���)dW]������9�k_L�d�KHI�i�W[�g��4�KOcd�T��э�,=v"g��-�HHQ�#�_	9%6އ�Sm��T}�3�~���ƣ��x�Y�֭ki O&(�k�PP�a�F����~�6߲�w�h�
ɻ�4���O�'��k{�p>���?o+��+���/�?fo�t+{�C#}���?�z�&��?���:t6�<�s����~H`_���\��������6|W�xO�V�̇Ş�u�nٸ���_��dC��%�9#>��W�	��X���G�[I�Դ90rPE�Mw�!�#������n�>�AS��k�p�:Qh�ld9kI��ُ��׽gj:hU�?�v��~m�L�MF�,H����y�jJ7����8ܭЩ�{�=z�dM�O��}�*����S%tk
�w���񖑩h�S4P�ώ}�ki@�Ӝ#�l>��4��Lj~
|j�U���|?��,T�N�:��{ms_����Wd+��Բ�2;��GpM|
��>|��x�($�J�4&�`˟.t'��6�N:���uσ��j���U��=��5���xd�t�f�t�T2��F㧙���t9��� ׼��]X��M��֒b��f��&�i�v��T��͟�$�ʼn5��_�M�xZ����k�dT7Q ��ƉpW���#P���!n�Ԙ���4r�;�T�IԜ`���*�*Թ��n|�o�{C��{���{O�E���6�z��,1ۼ�W}�32��(%pH��_��Í��n�oD��)P��.9`��cի����X��r��Rk�;�nw�q��.O�8-p7(9oj��LI��bد!"4nK6H	����@��W��S���#�?�..��	�n6Cz}�k�f�I<�F;�_�0�Nx��Mw~�Ɲ�G���U�:����5�`s��bEu~�:M����Zx_N�K
%��e��_��IS��pT���^Ѩ�O�>�棦%�����-�L��B���Q�W�W�5��E-#��~�Øv��Wݞ��kl�H]�3�q+�����3������������9d�O�)�oC�<pF>��W��e��N�-�A���m#���x��e��_�cL�h�Q�hb,��I�+�5j��S��'m�#�*�p��k^����w�	����.����,+�s�.-o�8�?f�pW��F������S�GI��C�I�H�F��m9\����!���_��=:W�]>l:������r�d�?#>�`8$���ָ�/�n�(�Ѕv7xM���\W�l����z��1��
�l�KRO�Rl|K���W��^�oگ�i���4y�ڇo�V6���u�:�>�'���.�"6?�}C�w
f8�\ؼ5<E?gQ]�3�S�I��mx���'�ӊG5�V�V�<�|��-���V;��s�پ6�'�ZE�7��u5M[Rלyv�Z�r[��8ۂ�y8'����R��t�iv?ں}��ͩ�o����z1d�Xr�2���e�\m�D�Q����
^����L��,��ʤc/�pKI� ��(�,>�㽛ք�}�SZ��
��#��2���ycw=�@ͧ�~FL�����^%s�Dx����576l�,F'����^���ķ֚]�����W��+������x.#�6�8el��5�+�V?jY�l�.���O�V�%�j�
�9>M��z�$c��qx�X����ythʌ9���c�M�~۟���*�wחڅӨQ�rC�����?..�w���1��o�>*�|e=��.����h�:����=~r+�qp�2yz��P�d��;$�K���B������XU&A�pA�NF?�5Yvx<���jY��b�N[uG�>��7]��[��p�?�s��_K�����p�a�Y��~�m��}�k0�je����x��T`�������3\�ﵫ�s=�G�(R�-&Y�\�:��?�@�߅�>0���[�;Ţ��}մq�]jGs�N��1��ޒ�0�u�-�}aP�]�RP�������?�j���:�<C"��N�D�V��,�&M�I���N��|�Kᖱ�c�f���=���F�I�m��ɸ�C��)���A��]�[�@�<7�/�~�H��K}+P��b"'b�݆^y�B@�H<��4���8��?�h�x�~Ӯk�&���x�7y��b���mRX��naB8x�b���s`q��S�^g�_دǿ��?�zL�:c�_Q�S���tW����
�ew�cR�Ʈ�L�A�k��$��O�_`I�-��Rh����"��NҮ1؏.21�w�zO��[yn>x�st#H�>�
����2�^Z��ƾ
.^k�毌t��	���2jP�e&FT�Ko�HU�3�k����jO�?�n��7Zk��Z���o�@��4��.C��ھ����iچ�g��S�����4����?5��t����W�����T��>�ZY�)q��I�b9��2�������tl���s����-k]�}�����$Gm�nYqژ�ds_`~Ο�]�w�^+��<C���x-�M���� �+ӎE|#��7�!|�O�a���_	c6�ż��.:�?�u_?e?�K���7����͠�ee:j���.Ia�~F0
]mITp������9�xCF�h��M�1c夲��G,'pk�����j#v�2��?ʾ���SZ�����G��v{8��[�}͑��a������x>�[����]0���snX��Njq�S�#j㣇���������
τ.�|=}aw�D�"����s�¿=�2����ſ���Z6��i��.$��K����'o�N��;z�\d׌x��	�2��g�w�l�rPA)c��b+���g��xEg�m�����?�!�ו
�8ɯ�Ͳ�62��bS�j�Wd��߆��a��0�T�V�ϸ|)�J�p�~��^�%��_�z"��o7G,q�Aa��ޢL�c�M�sw��#�3�K�oM�o��?�M�=R�?y�?,���!v��&�.��_��w��k�HH1[L���8^�������k/��	��Y�񆶺w�g�!�����g�;I�W���h:�tܯkj���OFי�Ը���W�f��ў�e�,��Ğ%�Q���(Ҽ?h�-�V����`i�s��!G�b8�-��௅�0���u��O��Bi�<]�
���c�YႯ�_9�c_mE��]o��w�5�vL�{�ԼO�iZ�m��x��dɁ�ב�+ΆEC۪�����
_��3�1��k{�5�ˣ�T3�O�-|%�X��?t��f��K&�%7^l�?��2�T'�s��\��U��O
x�P��e�P�^�$��t$�~3���W枝��=v������U`9ǽ{�q�gE��~(�g�/<f�f�uv�^@�$q�N=7
�W	`�5�*\�Q�W�g=n/��jЌ��~Ů�?X��[��o+�6��`��;��=�a㏈��ko,1���Cy�Ob2�|#�~��L��E��r�1"V�P�����}��/ռq�;�v��:f���kz�<�M�$�lp3�ڿGɲ
�xrά�����R����_�W����_�O��%�V���MR�ݥd썼�,Si�_~Ͽ�4�8������0v��b�����6	x�=9�?o�)�c_���<a�5M^����]��b��̛U@�u��b��(O�K?�뺯�|9a{��[h�Q�����ƹ��s�ת�էSܧ��W>rn"���}��i���
�f�N1kw%�پ�P��W�_/�;�F��[�6rK��zbF;{�ò�G���^��\�xX��3m�[��M���f�Z�M�n�"i��Gj>�?J�L�4�ԕ[E���4=���_���z
ȷ�5�����M��d,P7�Xn,�K6�泿�~�<E��gX��ig�$��21�æH�N=k�'Q����%�֣i�O"�*ov%�W�wI ��#��|c��
WK�u�i{%������H��@c�Q�3|�O'�B1��|��NTd���x�������|׷��Lӡ-�]�]Fu�IJ��~�=룽�/���I|#'�#��ox���q�Kh�^�s�&�%6ʱ!�w���sՉ������]�E����*��>�~���*QN]2�ri��lE�!Te��?ǃ�c��V�NXq�e��l~��7~�%��"o)T��<���`v�OV�¸���N	��%�3��9]V!�?%فC���k�-��4��B����K��
ـ����5X��8J�
�k`u5�O�c��T�+�H����o�p�����#4O�}����Y%�����?��j�^�0�E��:.s���]����%\.�8 ����_�:ޡ%��	b��e`v��f���� ��^���c�U��<��O�d~����4�$�i�'�?��L�	��E�1���6���5�߶���_ٛĖ����,_PW����K��b�k��t�ⴑ����z�5�^*�����#����A������[�X����@���{76�>���#x����	ֶNy�I��J��1~?e,?�5�v�j�0%Nq�_���Z�M�2�@�ٙ�Ϫh�[s�ַ�q�ʾ�Ѭ�6�=M~����۳g��q�~���B䑟�dj6!�����M�<g��Y7�@8���Z��$��G��}k�6{I�עx��%��r76^^N1��I�i�1����ɮ���>?�(Դ�t_� �Z`-�\�O`�qԪ�A>��8Y%�����ڏ����ڹ�ӍD�-��:��ԣ���+�P��oF֬�kMS��jfV�>H��t�܅�T��A_���t��>�<E�y�b��slC����ֲ'�O��q��ܲ���_�Q�!N�s�+��Ȫ�6�i���
�^���������i𯈇��i�?����ry�j�p���3e���8[9Fv>~J5��c--#/�c�+P�;
̗����P��y�ȯa��sl���T9=
�ǧ|V���^b�{�mm���YJ��*�*I����#5�Ÿ��
�O&��[VӮՙm5/�Í�g��^��C��W�@�O�jjg�E�Ã��88�Z8�T��O���Νeu�_B�m�A�$�ݛKwԦ�$�o����W��'��"%�g9�W��qxJ�ރb��i��"��%nI�uy��>K�ox���Q��:����	[$�cj[�_-"�=���n�>��k�5/���i�B����O���8�W��&.�N��c�̂p���K�J~�V��<w�s0����1Һ��p�<K�[;;�>�,3�:��F��=��d��
k��}8˦j��[�C�W/��a��
|K�kj�b�W��̐����	O=����\�^Y�*I�ݻ�c�O
<�ʝ��J�_#�gឰ�?�FR�Ğ&��}"0�1�s��t������|�9�
�?����	��,�VQ�o��nS6۹��v�y<��	ԣX�����t�鼶�A����g�9���U-��E[����ߊ�#ܪ�n�0�=?��_H@�W�s\W���<=s���~���r-��Fīl�\g޾��I	ns�z�˟�A'�5�	������8o����^ִb��T���?����<|5�)��1���+�x���ۋ����x	�Ԡ$y��/\8a�V5���<09=F=s_|C����Q'��ծ�������^v:�!Mʦǡ�ƥJ��������g���P���s��a���en<�G�N7I���-�1c�9
��W����a�ٗēZ����5;y���ԯ� Co��+neP���X���?�w³�N��:n�{�x�\��zv�g#�^X��m���2���
��k�>M���mSĞ9�,U�:��צ�.w��'�;pzW&
�*��(ݝx�a/g7�����ď�Z�4ѼQk�4Oxv��D���,�y�u1��ORۉ�f�%~^�k��/�>x��?����˧�Z��~é��ad�YG���o!��l��._hboZ洟�� �-�4��u�$�vn�ק�TӨ�yq�9�q��f�p�	����4�j�m%2�\#J���adGS�1#�k^�B��G�$�qxG���z��� 𥾗"�goo�@�H��K�H�
�mF.���ֵڳ>=�����jw��X=ԑ�n!v��+v�һ_�#߁|o�Qn~���x�I�]���2I���$���&$���I-��w�~�G���u��.	u�H��:�������Z���ɮ�oG�C�5(D�V#{�$1��Pr��"����yԢ��8�W3��_�
7㟅_Ǟ/��W�<Gw����	��2;�����'����+��X��>�;Q����ѵ�ˇ2�j��
B\�I,�����(�����(���<#�C�j�$���aBr����9c��z��?i�|���5֋�]�v��[Fe$�ͷz�]��$�tg-<-H�$�G�S���a�
�bAޕ��ᯇ�5����s��Z���2��>\�s�-B�XHcXW��y
�wq��cC�!�xr�C�[_�Ƞ���8$1��*���
Kk��0Ҽ�H#��v�<���Ÿ���Z������5�m�mk@�午���Z==neY��՛�<q޾T�'�����Ƨ5��c�)�h%����"��U��88�\���J��t�~�TӮc�+9�O����'�����
�r��k�s\�F
Ѣ��ki��U���2֥m���>���vA�E[�j:�tȼ?k+[�q&���4�i��`=p:ַŏ�?|E�Aҗ�:Σsn��`�����yL1��?w9<W�_|s�|*𥏉u}O��w��]̈́WMB�)b��2�?��@񟁾/|X�_�Y�SQ[(�x�����ܸ��d��~OS�x�
V�IҜ����.�]O���n/O�
��7��_�x�▇�O��XۖXb�M�nI���D�h���pOZo��)���Kiq�M�;��&�X���5��
�ͪ]�ڏ�m�O��i<f�t�܂�Ir���g�A��O�_����o���.𶳡��T�Ŵ�s+��8'WbT`�@8��'g5kOR/Kh����.W��.�}Z����Ǎ� `u_��I�hce�X��dj^ �x����-2�I��2$����_z�~ Z���#�����h^$�0i��<�Y�Gՙ	$R0A��8���Z���'I�~�<E�,�=�dHZ"v�\��8潬��q�N�K�+:�|�t��+km�_q�x[[�s�X\ɥ階����:Y�/��ف�+�J{i��/�[x��n���ݶ#�)��H+�q^9����Í'H�P���Ɠ���5�o���B��� ���yc#�[��|K�Ë��O��cijڤ�]���c�ɟ�dE˳m��[��ѩ�8�h��u��<���s^���t_�/�/�/�z���/㈡���"���FD�!�
G��ӽt��.��+�/X��e�D߷��H?�|[����/���h>�<e�]B��ϫ[M
��E��3����R8�9���e|dм	%��S��
H��E����Ax-���k|2�:�5�'�&<�	��J������|��3��/�Ģ�c�x�w�4?����?J�|���9��Q�F�
�]�9.�#�<0�0{s�Q_�_��ƍ�I�.��~-�o��&Y~�%�$� ��߷����_4?	�*����PK��˦T�������{Բ�f�������圓�����7��|G�SM�b���wL�$/��3��?�G�v
�iM�[����̛�H��?_���t���L���;#��GP:�W�?5�>�h������?�>�����;�U;/�X�U�S���o�k����w�
h�-�`�$6-{�'-����z��ه�	��[���姁�3e�؏6���snz|���>�xb�_������Y���/�5��$?�Z�gX���2}�O�~>�\l�'��\�AF�c{y�/
������HC��?y�@9�3Ӽl, x��,H�,0@�x���hV�f�_�k.���qs�D��>�޿9�?|>�����k�
�gm��
k��
-�}�̟�0T`���=+�Ø��s»/R���1�%U�6��
�<����e�ҷb�";W�)eA� ���h4	�V{�U��-� ��\��N=;c8��ό����8
��~ �k����������	"���hx�rH�c�m��l�J#x#��$����UrB��q��G
����C�j|>;R5%N{�C��ri��/�[,��rG,WP���sb,S=�25������6�ّ��d�Ox��Z�W�,]d"�>g�~��������l�bÕ9�s�ߊ�;Ǖ5`��qu�{g�ͅ�H(���0��`�NN}3\�d!���潃�I6�;��Ϸ��N2q�טx�4wcJ�t����gV6[ܪrm��5)	<�e1cː���'ڼO��]	~�>�ķ>M�V~W&12Fn�u�f��Y��x�2U,6�ەRO�]G�^-�]�?��?���\E�m��ۻ�1]��D�!�6�p힣h�3��>$��*�;m��O���M%{���ؿ�E���5�];G�l�xs@�u+�4�b��:��s�1�?tc�zU������F�y�˂���0|����sIգjsZ�&@�X�[KX���Y8>�W�Ae�O�nn�ʨve>��_��+�ӌ���G�X*m��F?�/�GE���$��4���2��*���:�^]����:~ ��x��:�)�K����k��%��̈;(~��W�����[���� �}�1�\W�x�U�е���σ�[2ǒ��L���[�v5Y>"���9z��e������ǝ������[�NL�$
�ѢՑs�\��B4$�d?�~�������)��@���1��?��~U��r�`k���nt.�����(��dh�Z�`�ʿ���c�kf�eG��k*�A
��^WG�c��*���a�㵠c�g�Wq��<g��\�.��L��jf�w�-]-�%@��xK�K����?�p^3�ϗ���_�ߚ��<n��pr�G��p��
{�$g%[�*w
���
�����?���[-J��A�-l.%��4ٰ�$��C:0�G@1��U��8����|FewU��9�,W?OEӟ�:�5�����Ͼ��2�o��cq�x�P��a��W�|�I$�o�.Ieer��݉�`ϗ.ߴ?c��_�t���Cαl�}��
����r1�#ƒw����9�׷_�Ϗ�|E����"�JY.�X��Z;�/O�ga�)J�ivA�Lm�|��?��
m�~֞��I�ᏈV��Ixƚ�"X�t�Z�6�G�2�2�$e��|�Y�����c��Z�+���*��#�׺��_��l��sSH�f��n��꺍��̝����{�Z�O���Ė����Z_Z6��$I����kn֚�w�����Ұ��Ȑ��x��+u�x��z.��xz{P��N�4�d�PF\��*L�!�pI�֞g�`�t��n��`���
L/�2Z�@p���Nk�?o={S�?���z����9jV��V'�+[J�qB\�+�<'�h�n�@�<3oeg�TK�&{kbĕb�B�88�/���mh��U������j4�
ZI����J�;{x���\d�l0~�|�	e�\���;X���=N!�I(ѓ�V|]����iw�U���a�C�|	�s�c(���[����W��<��8��*�ҵ������۹�ood{�����-��1y$v<���1brI'�H������܊�^�5N*�|��r}us!�A8�@J�~(���>�J��.)#�u�;�%�aM����я.�C_�E���Ą��s��+�_�$C�����|EϬ&���+y�	 �C���9��2x�1\O�?ZK6�w��������Q��j{gQ��d��C�𞣬�=�p,a��Ἀ���+����/���}1��}j��<k;G��T�q��y��c^��
^�~ʍUVZ#�?e��D���k��|ck�M,W��s� �x��`�|¹C櫣) �5�����
�5�h/��x��9�oo-�����6�ٌ=��9	!T*�L�a��KT�-�K�^%��WRY��Ov�pC�7�'kH�r3_��%���h�ɟ�߇�w>��5k�
[i�x��ڞ��Z�Z�$Ƀ��,�Aw+��/�0�h�J���ΝH��v�>��G�Cu�O��t���;6�o�;��ʗa�����H2vQ�W�Zk:L��Ҭ�r2��Pe}���j��q�(��m�'�����SS��u�r�9'����Z4]�1i����ܣ�Oj������<i�Zxs�}a��]�%�鰏-F{`��]����ibc���se�F-a�����w��jɤ�!�fݺɷ˃���_���ZM��_�u�\u��,��,�_��GT��,����ޕ��Mhz���^{�σ>�G�YY5�$�W�)�ᘏӵx�61����hUŷiԿ�o�>x�[����:σ�^�K�VXˉԡr��`�v��/��4�XOe�C�<��.#�=���4�܇5�u�|2�pw�xÙ���4�u-�z��j�u/�ul.��*�@#1£?�����a0��,&"��?�g�$'�g_��_���bk�y,l��G�,�+�˴�#��5�1���q�ߎ_
|N-��4�
^\\�E��v�@�W����I�W�YB����q??঺��o�{]�����nZ�A*Ϝz*�`�Ҽ��nuR
�h���s�&�-��?~j��N.-洷H�D�Mq��@� �Ƹ?�2>'x��]N�Cu;`1����_|���=�΋�����0Ҽ�Xχ4ë�&�K�-�1^1�{�$�@�^����]|a�Śe���˛m.�F[�F�V�m��y)"���J���(l��׌1a:҅��������[��/K��)J�|������>"��<x�]�ݯ¿�X%ťƟ*���/��L��>Ӛt�W��s
��H���¿i4߉v�6�'����ܒ�.��L
N>B#ץr^$��5]M�O���Fm�I4�w�>`����a��
���/�����S���R
5��ĭC�[�mͫ���i�e�An�u$xP@U��L�k��O��meg����6��F����Ἴw���Rk�;ſ
>h�6�:�4�F������+m9��gi����iz��-eSK/��x ��R��;�+����
�ԡRV}o����7x��
��%��q���ψZ�����O١�|�@|�n#־x��r��K��׽y����xn����|#��mb��G���K��7]�
ٸB0RB�'�dW�|D��oi<������,���t�Ӌ��m�
	�V�XYS�R�0������$�ƍj���"լ.��J��R)C��������|+?x���+�(L���+�K��Ş�%�MN�-�~^mnVWQ������X/�MKQ�<.�[j�Z+��oC,d�e��k��s:�i����x@�S�j8�>#Q�J��O�~��^$�o��qе�o�����3��.آE ��+V�	��_�o|<#��l4����<�_���Y���ך|�G�xk⮵gu��Z5協���G�ki6��>��`��]U�+5j�q�R=�W�|!�k�7� ���Ŷ��nw��J�985�/�WBO�_����J�s��+;y���'�H;D�8 0���_�z���۬v��gx�!r�d�z���/�|7�Յ�hR�}3���7�������N��.畉���|��$����ᔺ�x��HN^6�u!�.<ș6��t���`��3�>'�q����}m&�!!,;�n;�:���o�jz���t��	mu
�+$ќ�9�@#���W��|3���[��:�B$�6��pI�&�s7⚘\L�ѧ�k�(�R��Rv_���m���&~��g'��Z$�g��b���M�N	�J����Z��4ɴ;{[����	;�vv��Mm~̾/�<7��%��-�R�Y~\����k˭mRPљ�Z峎��R�ש��y�]�7GU��eݟ&��zՆ��^�Immj�n9P�z��b���RY�8��au{w>�*ZD�eQ�8?ν�:=��'Ky��IHF��t���-��Z�$�c��g-��WSj�f3�C�h�]����)�մ��$���n�x�X��m<t8<b�/���Nj%�'�?�v~]Eɼ��T6��Lc �ݏ��k�O��MO��+��kL:�VQ�6v���{���<c�-�I-�R���{��/��1�c���u�%�>�۽ϓ����x���)�
M�{�|C�+y��E��/�#�s��d���BpH?z]x*��z�[�<V����'گ�3أS���C8!Y�p`1���?fߍ�������)�E��_;K���4H1�����$W����7�>il�:^�|�-wM����3]UAu
'!a��ܓ��.8x��G)�{�T���GNu�n�֩����O�h����Ep�a�M�����s�1����>X�<b�h��eL�#�����?0�n	��YB4�;C���c�~sך�7����Mާ�!�~^�q�s�z����ue���$�ևg�8㈼LWg8��X��������6E��2�p�.�9P�����]����B�6����4��e�*m�Yc�p,��ܧ�n/�m�N�����$:Nc,v����1<7��+T�*Vi_�5s�Ē�r:�����Ҽ���q�xs^�K�i^-��M�bH�U���UF�C��^���1���(��8�'��?��?e�ߊ��,4yloE���������XmČq�[���uA������"����m~�p���m�(��~5�sN�|@�a����wz|Q�,��6C��c���>y�z.��"�~ �.����\|�4�E��c�3��i�
ÇӼ1l�5��l��>ЌH�x���GL��i�#�^��hs�d��\�mʣ���W��a��IZ�?W���RJ��[����O�,ּ1�[��[S��sl�@��8�y�s�ҾR���d_x/�O�|Q���em�\ڼ���leq��y�z��{�_�����B���A@:s�x�Fq_9�׿�(?a����έyq��e��n���k��Gl)b2��y|���VAz��K
���w�,|*ӡגm����x'�o�'C��u�>(����;�X�=�$_���|>T0��J�'n�<��O��~[�V����4�����>���:潿A����>���E��ϫ��ɚ_��_�񒦾�K�7�	�'���沯��ր����=+2�,r~�{���[YVl6�ט�K��5��8<��CV`",��~�����1#'��{Ej|o��N�#�
�AlƏ��F#�V�>?�x��
�ư�52����Y�|ǩ
j�5��:��'��\���|�z�j	.�r0N}M6R�!��J�&kʌ����	jZ\�d��x���T��A��>�ۚ��u}6���j7'Kx��-��
4Bt��!�H���VY�#�r�%z,�%�R�:dc1_0|n��w�N�clS����1��{=sU
�gQ_��c�YQ�57k�C_�'������ep��`�^1��5[,��5;0��#��8����ֺ��/x�����0񅼙d��m`��G$���2d��g�'��ƭg�u�â��B��m2�7��G�d��ͽLʓ!ʒ��$0?)��o��b���|e�+�6��v���ZN��x3A�����%��!�G���ffRIbj�ђ��RfOV/��?x~.|n���~
\_j� �7���A ����:��!teQnX~��p�$�9���(���o�ZO���iڏ�~XZj�Z�w*�s��K��W�u��2Y��yU�b�����?~��m��>+��������hl*�*��TA��}+�/�f������
�xO�0E�]R���@��h�h�}�PU
�ɴgw���e%5+#��3~ң��x.��c�y��k�B��Fx5��"ҡò����u����Mk���º&��\+l-o!�jS��m*�Q�J��>X����
�m���k���.�U~y&p���������N�xę<K���v�k>C=�=Ll_��d�e�উi���ǫ�0��A���N�W���|=v��=\6GV��Wʿ���O�o�>�||A�[
GHTy�,��U:���_G���&�w�o�W��W�7G˂6���ַ�3�OSi�.-�o-�3jLc^=�]xGE�!�������46�NA#׭|�#>�Y^N˱鬮�5jz����K�~�6�c�kK�	_Of[�{&+�…؀��#=k㿈���[K��ҵְ��x���N�� ~R6�1��{W�w�M��x�t �����I�h���\���	)�H��8RBP� Yq��`'��z��0�y|�?�r�2w?=�xCS�u�-/]�+]V��Ne�|E���:H�]Op���~�x����?�|!�x{�G�_�����fԵ�+��[�I�������T��nB���_�_��/��>��(�h�X`���,Z%���זZx�k���<�ŝA9���y(K�B'./'�H���w?y#���&~ϚՕ���'�����$���E�-�FcC+<r�<g�J���X���9ye����o^ȹ�Z�朘��4�	�+��ď��:�~8~϶)��]�����4�ɾ6 G�S!p	�ںO���=S�����o���ե���oV�Y%�`r��F�W<3*X���@���^�c�5���_�?�!<3��N����!���#�s�W9�#F�Ku;�鳐���_�^3�1��T7��5)���d��R3��NO�qT�%�{�}�1e$���[ӭ�k	ca�v|����9�]Jn4��e�d�$��_ �a�W�-�;�����
����N2;�T���#�<.�:v�u{o&�N���O�@Ƕ	?�~kC��j�+n�-Cjz4��!�=�����^��*���m/|�=��%��-�{�*1�_ο�xÂ����#R<�Y�{6��}��yga(ὓ���?�>7�k�K�4�^�5�z9֟�ٕ%ȑ�\�n��[�b:W���Z�¯��w�[x}�ە���3�mq8<	��z����O��Xφ�?�K�x��:�qyяJ��A{�h8!��
�=��W �k�<G����{?^x��P�������–wE!c!������k�-���N���$��gD1�TeOR뵻���'|�`��I�-�����b���K+�6+V���f%��Co*��d�����+ğ<%q�x�F�&���z�P����|�M�׳M��BvνMz_�����Tz'�/|5�n��׷�7����*,��fi��1�vI�y�~�7���W�?��"�>�OZ�[�w��K�p�H�	�[�t�g�b⯍����̓�(�zj��ʳ�6[Ad�4�B2�\��y��Z���>u�k�R_i��kx��7�Y����-��R��#{I#Y6�'vk����ÿ�&�-�����6�L%YcǖY�'+���W�_�f��
��5{�x����9,e���6��X<RD4Y�1̊�n
���n��!�g����|:n'�9q<�jI{a5��\)�YP<�I�d&�T��LÃ��X̱(�.�n�{�?����~ �7�ͩ�Ut����uR��?R�<�����{�K[�
��W���}�F�K��
�D͖ ��db���u׍u�#��t�'O���3y��A�V�$�`���|��W�����
|G�h*�<S`�$�x|�M��g�����H�����Q�𵵅���E���S�qj0n��,�*��d��1�\9�4��<-'Y�]�;G������w�)��m$�/��9�C�W�t����w��7{W�H,��� t��sv�2[JV)X4d��m#�>��]�F�?��R]KF��TΟ�q��A���V������
�_��cþ0�&)<�qn� L��xy�rd��{�ĺx���E����0�S�Ҋ~�-u9�o�W�,����F9����C�n,0D�H��k�]g�PX��j�>�֖�MB�^��2����/��t��3���|�K�o�&$��ַ����!"��j�O*�f���9&��x��L$�c/C��G��c�Z��.��tz��.E�⒤�h�H��u#��ϟ�j~��7���������2�v�
$��<M��"b�2��������j^�ƿl����7>}69�VX����|�I#8���k�4�m���\�k�x�C���ݚ>�v�J�6��P;��)�I�n_�b��x���\f6��Z���C�<
�;x�F��m���Q��\����KX���N2��'i�~�~�?
m�c��s��q��Z���6v�P�ܓ��~g���W����w4
�e�Oe��e��*�A�<�8�$s����<O�[�u��K�i�I�?G�9ڃ�����U헩Ֆ��2u��QKR�����V�TI��5�Vf����8�PJ���k�AnRB�
��T�H��t�z�,���
�X�o3{^	�Yͪ\
"K��.�t�8�F�9�3_�b��*�_W�i9E%���Z�}J;(.�	�s7����}G�-X�y���:������[��I��c�\���|7`���m���%�^�D��n��Ϛ��g��6��g1�Zm�/ٳ'��2�ӝ�${�����F��F�1ˌ��Ir�X����#����|C}�jV��|u+5��!�Y���@2���q���y���a�ۧ��O�W����46՗L7ۥn�0Rr{W��G��J�ޫw⯇��l�WA��t����Բ��##�ўy�|��ޟ�����
i�&��Ciwqh��#9B��g=	�C�ЍV�;#��Y8sI�~�j�z��4�YD��Qb�r��x�š���<�Z��N�H �
�T���_�n����7�2J�����p����>��������r�j�<�)��k��3gc���a��^qH��v��k��������+��~�K�SL�)��"�Z�2� �g�|������m�9�9�'�u☢���!�on�}J5=f�v����ҁ��_��#t��Ìu������M&�����}����OK�<��';� Q�@܇�SS��f�{����O��6e��e��N������I��E�+ǐ��N�dRDU[-$n�!$+ʶ�L�i��[K{-X���]�\4EDÕ��v8##�
���0~�v�?�|�Ƨ������:��ҭ���F�n1�hY�Ih�&6y �}ٯ�7׼?��y�_ͧHJE}h>�f�s�Ȥ��V �9��d����G��������{��U#��%\Je���ۯO\�\�5彾W�����xX���!�,��;�8����*�4�<����!�YA������i��j~.҅Վ���!0��������'�T�`��;�b��<���0�*�\�1W���ōVN�:|wQ����!%,�#eiܐw)1��0KJ�H"�³������_�/T�f'mƬ�Kr1���4����׮|�S���mχ|;��+S�9��rhW�1��I�Υe�V����̲�r7~"|6���t��V2t�+(��M{+6d�ۍ�;I���(�L�Z��c����}�T�����r��w�~$hk���&�����k�)C����ω�5���[��|ͫFǨ�+���n|-�KksAq�7��6�C�[��GDӤ��[��OX�bpy�?�~5�м�o'��~��USSS�{4�3��%�0%��:��ab@�	}zc�_3��Zgo��0�#��Kū�j��X9��E��gآ�|�������-���h�N����+�H�X����`x:�/�(v�g�`�m��6�c�ŸmEB��X�����2��+�S/���OR6r�y�<���ׅ���#���?����1�J�c��?�=�3�	����ksòǏ��U��nx���$����`/��I�FW�IP?�~ɂ��p�$~[����ݝ#L# ���eͫ�����U�A��kU���Z��ek�(O~���>3�^^�pi�=:קx�W�P�@+�~2��>`!�gZVV5���|w�iZ�]�`s�9��eK	��^��M^v'�7�5�wx���y=OYlW�R\g�I G��<�)�y�	��7W�F�2Oة5�U'w�q^C�Hx~]gP��m!���ῳ�p�y%va媨��I���l��q�)<��s�ϡhڵ����Z�ӵ��;�dp"ySA$���p�E8˕�v"q�V<s������_�<#��X�{P��ᵺԭ�s*�^��baQ�l.2q_����#�?�ރ�o|B�5��z��мQ�}!����zm���p,�&�5%y0������–w,�����Y��$�����;��ArH$���	j�C�_���s��j^�n4[&���\�ag6��L���&�\�e�T���e^�R��3?���k��?��e�߁�i
�N���3Ğ$��]�n�h�X�������o��pT��?�;O_x*�]G@�f���2�
_ľ.�mI�I{1�[k`���DmȊv�Њ��U�x�����W}=�r����^ks��C6���o�DG�w�2�.-��"�����񟍾)��GĿ��[Z��	ł�T+�4�U�\�,[vx����:^���>g�ԕ{��w���>;��Q��w���Cĺ����F�y-���h4x�D�Z� �1v��3�1�+�}���c�9t�h��lS$p�{m��!C�c��u���`����ў�E���[q��_��S���ߗd㨌f���BM*�m���	A���-6�W�c���
ۏJ��"��nU*�K�}6�$�!�ʟ۟���Q�q��NA-%ƛ"����\��o��oB���ƴѣC%�����s���=�W�E�i�U�<?�IJg
%����o��`�^kWO��%�� ���qa�é�ڜ�܈�55��
�)\�a��JJM#��b�s�Է3kz]֛ݱ���q���9�r��=[���޳�
��	�;��R����BC���A�d�*�FO\W����8b1�?��(c�e���BO�f���dx3�v���kP�iw��^�l�[���ͧ�e"2��捣@yuʰpx����Q�~nǯ����6�[tG��=�yy-���� �6��d���?�Y�C��/���D�+B@ǰP�q�s���R~������^G'tVz6�nߥ��(�����U~+|X�Ԁ|��H�E�~u�V������KY;������������	'�<W{���eBh�~��	ܬ>�k��|Y�������Ҵ/x�oMp�T�m��ۉ��'˜��)��`��ܿ�*�,�����_�+x�("��d������;K g��ǭjb�-�����@-mŽrͅ����a���ӿK|���Ԝ�4�O�_�>Oٯ࿇<�k��G�2.�qo-�N��9]�q�'�7ch�W�~��^��ⷍ
������*Z�ƈ��nr�C|Ť�`q�_{�o�<�L�gƿ�
_}�ƍ21i�Ij7�=���o�>jw1�~2x� �/<1�ʘ#�Jƿ�ڸ��,���N[���l��w���d�������&�n�kA��[�/��8ϡ�E�Hm<%=��dc��&H9�q�_�$��5�rr��t�'��v��;N?!^u��&��<M!q㯇:�{M��o���R���P���f�5d�!t�G��o6����)TiIl�I���_���k(�4�o5>rIt��_���{�;K���V��01��ּ���I�~�:��ўD�m�P� o��qxJѴd�m
��n~[hV�7��}:̰Fr�l������k�������4ۓd�e# ��˜�p~�����/B�e�u�K�e�m$
�F{u��~�:��'�koh�ExG����^Z48�b�����Rv����
Io���I�������;�x6/ލ��L�?z��(�2�w5G���Ɲ�_��|�:�un5Yu%�U�dc�=�
�X� =7�	�9x��}����=SS�e惤j��K�i��n#_�r���y�[�
[��S��&��5V�u-VIm�e/�.�!�P�}���r��=Z}����G�<k�������G֭���JJ���5�A�7�8ۛ��
�FfW�0��z���}��^�^�
������.sϨ�[���~"�l����N��>Ѽ�yP�zw���ZT۴�=E5f�8	�3�M��hI�x�I�tD[���?�1��Y�#�>Z-��|it�Y��"`�~A�x�����Z���-��ݚ!�>܆ݝ�W����~�a,��h܁��m���K]�{�i���s�x�Qjr,~�k|@��b@=	�ƽsῌ�
h֖�'�ͦ�uEyu_O"�ڤ��Q x�ϭ|��?	��ިkEFU8R������~]�w	�\iS���D��s��+�JQnR������~���w���g�L�K���K��y{1�"�Lg�}+�~�~!�q�o�G�[�I�.4�[)L傲ȋ���8#���mK�gִ�bf�I�,���Kps�q_u|2��--<����t��JW��F�D.C�|����^�	QU�)j�:��õ��_�_�[�3[�}=֥6�l�ۛ�̀n{'�9�n+�����Co���{��|=��b�Cqqw��539,�)R'ӊ���׭[xc�I�ct�j�}���F�?P?*�SJ���Fk��/]C Ю��{�W�q^oWZ1�����=G��?�xg�7���#������L��C=�ɑ�.�5�'ŏh_t�
F�K�E%�F�A�|ǣ%��n,�v�P�em��#��nn1�=k��v�����W�gS��_��a�\Y2�/��w{�lV��Iw<SK�a6�=����i�5Bv$dv�b�@���e�I]���-��k��G�����4?�.��{�6i�r��x��Y��*ih�Y�K��K|z��J�گ<�y~+���88����_�f��Z��m/���v��[�2��8�_'��H��4���j�en���5	c�Q��F7c�~�Qy�:6�}��� (�1�Lz���/	�u�׉J�����<kX���ר��
|��Oc(�
7+Gc�Z���<9�-�Ŗ��][�ML�<��w�R|l�^������V\\K�2!�9�~�I�H�<Cuy���y����Ա���Z����%żZX�|�����zv��X�u���ގgKH������ؚ.�kc�|"X�Ci�ɶ%�s^��
7�n|U�gl�+H�.��k�{Q�����u�C�,�B�TuNV�"ƌx��+�5�Mof[��R���X�#��Vo5�'�ކN�$�o�ത�"��,H�<�M�9�PG'��ʹm��q�WC�H��$O�_���Y��S�'\��o'�߆:W���%Lj�1d�����yd:�89Nbu�q�����U�-t9��񿍥���|9}⠀a��0ǫ˜Y`�����~�	WY���w��u�ua�u<GpE|7�O���_�3�_�-o�dK�{��Jb�QT0�����0p�q���,-L4���W�O�c�r�u,U5��;5���
&��&�O~�tmB�Aq$W�Ήubd�|�5����py^E{��V�F�4��;��N��Gu�Z����1xc��B#l���%I��`��/7ß��
��—R<v�����Z�7�Kv>�1o�w$yr7#����_�_^��kƗ��� Kk[����d��!l��	\� ���bh�(�t��u^F8�=j5])��G�l��.΅��)G�%���ec�.z��׊x�a�����J�1CG����Vlj~"(�G-�V�KE ����;T��K�]�_����,�Z�wys�5�f��:qi���.�ԓSON��!��͢�W��q�;T��~!�}�+������$e��A*�,��\�5���B�J�������w�νs��1��k��>���e�K�	�w�(�E��"�-�Wk�@\�	��u�Q�_������P��K{�Y��=�y�z��x)��O
w���+�ty�J˷_�<[��7�#|%���i��E�;��A,��iC:���ʇ,�@'����?�&烵?i>=��)��>+���u>b���|�88!����wZ�3�
q�k��(�NjO�~�k�?�9�!k��~���,b`0��N�@\���������Y���h����e�p,�%�;��<��1�¿T�2��0��䧯�>�IFu%���G��[��#U�p��:�/�W%���� ��D�أ8�y5��c斊�G�^�VbA&��gP�d�G��Z�@�x��i�qi�<���S)Xf�_�1���H=8���0x��97��'�w�<�z������_;|^�x����"��B��c}p%�I�X�ڳ�n���f�-˶�Àj����pwc�R~��6v��S���A8�3]�8����_��z��؃�/����N��8�o�lù}c��c�w��};�O�+�_쓢�K����!`���+Yؐ��H9���QJ�9TT�
���[D|��V���;x��t���I3�_TG���t��#|���R��
��~��}l��q��[��./H���Q�Dv�|��GRW�k��P�:���ƽsev�,���~P�@���7�Y�O���o�t���/�A��5��0�����m7��kק�����^OH��8�s�/����|=!������Y��na��|�
J�P��F2H���c�?<+�c�Z�����4��w:&�mm3�wIH�fU1�s ?~I2��N
~E����i�D�J��QO6Isd�U�����H�1�+���+��b��	�ga����|#y�Xi�:���lI'�(�#|�Jo��?tV�)�N��e��5I�]�?������WR�u�oL�c�[{6�n�����1j����7m�m�_U~�_|�����͆��kz����.�sf��>��:"�Y��w,,RNĮSh����Y������%�+�_M�j�}�k�H��w;Iq0&8P�Ȏ<�ڠq[��MO�-g�|K�=��4$�~�:�ƛo�Y9�L�&l�� C����q��9@o�bgN��۩˔ὣUk�m���A}�x����<
�}�ϯ�Z����+J7�H�c݅��b;`W+��nj�&��kC�v�4�˧��t#ER����'@*T�����w�n|S��kW	��d����Tq�@����ay]zR���ѣ:���Wx���i�~�gj��vu��W�x��e�1̫"�(��8�%_ڟZ�,\���<|���|g��
�%�������H��^F#0�8����nW�;�i�n�g�-��W��u(-Ve��O.E�&V�
������u�	�m>��hd��
������Ou���r�$���I<�3$E���w���o|B�ڧ�t)u*n"h�e�e�z�����Ͳ���G�m�gH��kM{��q�n�fL~�i��n^ңwL���>�+b�BT�׫i~���6K�P��gF{�-�DZxs�ʴ�58��'���u�m\j�d&Ayw1,�,'*�Q���-�~e��>_����Ҿj�Z�����\��6���h|�Wr�!���}i<�6�k�մ�|A�5�N��5��N���:�6�b�c�E�+�1�Y��e�~𦊟	<��R�{�}M��w�<8TI2�g9\�
z॓�)��+�����vV����q�T���0<�U%V6�6�$�_��3�_����}s���s��zLQ�<Q\^�v��S����Q�z���?�_�Wž�<w�ˍq_H�ѵ�+ȹ]Ms��A�Yv�(靨#F�7�_'k���E�{i!��/N����"	e�	��B���c�/���Nms�ŗ���]vk��+�xf��Y-���2�a)��P\���Z��jw�J-Ϳ%ͧ�B!F��:��g�vn�y��?J�Oۗ���W��-���W�[�vӮ~�([0�Ye����͑	U(��IJ��$o�^<��t����č�����n���d򳱎{iY�2���������8�n��Kq���x�����o�Jm

�C�e�
��컒fW�#?&�Rn�7����V�;�C�o�>%����&�a�
:�S�N�k1�mn�5^
���ѝŸa��\��J�2��nn]{6ֺ-��W�p�4��ƭ'�=R{?�>����C@�m����v��«�q̗V�K�.�.�Ю��ʼQX��v����{�$�%�r�M;��*B������@��oh�K�
��4е�rk��&S��'W������J��$�p+��~3~���čCY�|W��"�����kru�=I2��$e�2U�����]x^̫E�ci����濜���s̩S���延���_�����5��χ�Ki.��iV(�20�8��)�.v��x��w���Ǻ&�q�N�U��Ң�ᴲ�[���)U^;��"���_���*W�_��य़5�هğ	�Ws|���.�o�Yۼڅ�^ۼm!O�g�]��'���W��g�[A��x�����M𭆏��iQ�qGl���b8���˵X0,�^�S��\�7Z�r��]l��v��sx�eNQk����IjRܽ����1�����c9e䁏QN��gj���r���;#2�����7�ښ��Yu+A&�w~״�$j����Cfm�8b���A������3��=V��(+YF�8Ŵ�T�G(2۱/�t�a]�]��^
�ڽ���S�\樥�~����Ÿ*���ҞA����3ӆ{�o������<����R&�/�x-�F1�c-q������^���մMz��vf�#y=�f6��+�Ē��P�
�6���zW��5(�G2���ϐ�����F���vX�7
�ڱ��_ز��ݵ֣��j�[�
�#�cK�o:h	Xwi}��\��U"��׼��Ž�I��K�����m��*���?M�x��X�t�{�7N#�G6Z�1Uhv���A�׉��Cf�O���G�O�	i�j�W�Lּ/��Sl�4�q�|�Θ���YT�b��,M��^�F|�lEL4�i�g�w���GM��ݖ�i�ſ�$�:�FVRpJ�����x*����E���}��ʠ�q�k���|Q'�/��u��׶~zņ�b�<�P�]�$�m�ȹʌ�S�Ì���o�
��^A�?�soQ�$��y���f�k�8�=f��ǧs��ӭ�s�0=��y�o�GR	��1�n~�?���t����(���>��i�H�Ч����#q�ћ`oB8�n�|��;~�K�1ArD����\����O��5m&�����'ʟ�v��9=H�*S�I��n昜B����'�4/�n�o�z$�$��Ϩu�͹��\F��A�h�����͡�&g���;[���n0=x�7��(x/�N���Y�
��o��]�E�vʾ��	�{��ί���J�Ś���>�������Bֹ� c־�
Q�؆���&&��]���U��_xwB�n����C�s���2�\�x�~5�|2ԧ���7��)!G�����=8�ך�������.��	�����f���g{�5���q_�E:�ؐZ�w��
� l�8�����e^0ft*G�6�����/��4�{O�-�Xu�����K
����?����#��
���xa�K�����ڹ��.�%��LE=Âɜ0�kt��@�?�C�w��1�Y�冂�%�"Tm��#?S_A�o�dži��W:|��?���$���[�L���єތ�z��)S��ӕ�N���ƥF�����?����5�𵾏��]6�b���mnX�L��BNs���w��_
�zZi���^�K��H!�����_��_�B����캷�>-���Ϋt�e�eF��MÓ� g�J��_�tσ_mtmR�ojV���u�oV�K��v�a��-R���Vx�ۗ�f�į�k�MR�[Jҡ1�f��a
�;	�r}k�w�?�u�7šf�k��K�I��pΰ��c�bNk�}O�����_3C�F?8Kئh�	����<�m��c��/��M$�5����Z��1�Z�ꐜ����bW�O��U��^2�P�~"}F��i%Xcݎp��+�~[�#�~m6�f��ذ1g c**���W�_�i����Ǿ����Zm���;�ʼnF�����?
�n�|*�E�k�Ɵy��x�R|�-�R̡7�# gh�*�_9�#4�iT����K�O���V���B�y�_x{��3[xwCMNͯ��R�[<>[� F�9��Ӛ��������};JMF�P�ti2${eS�0˞��}�x�E���(�?��(�L�Y��G(%[�s���T
��Ҽ���H�?�Z]v�R9Q~��hB�*a� ����5�ಜ>���w���V���iB6i+���Q�NARO[�Sl��+�ӧT�\�8�kpb�g'�Wꍟ�E������s�N���BC��9�ff<t�%�RO@�	.���úG��H�cđ�)��4���dJe���)�c�h^9m�g�b�S�����࿇l�5�m���q��N\遆
Y�6^�#�o?�3�p���R�R��/�Xa�5/jpk�����"��1����M~:�,��M���^i�
��Ҙ��F����T�x��*�փ�}�?S�p9��e�\��G���G�����l����c��#�Wd��J���Y��R?��m���ǯ�ڬ�c��[�e���5��~��Q9�o���_Ĉ<3u�MN���>��in��)���6�3pA�uໟ?��|W��X�C�GK��O�]��I�i�2F��-Kyaa�$s�9a!Y[Ʊ.��g���ia����,3�S[�A�<Rj�n02|�FY��T'�y��M���<�"��?�)������+�������=�F��� ʮ�6�Ǒ�'�>�O�̶�~���@E��o����d��M�u�ˏ��
C�_��m⟊^/��%Ř#M�[�2��K[T��D�`�sWM5:q�����R�R�������
�o�O⿋�|?���W��
���f���յk��z�����q4n�����{~�q��?tc���&��F��n�>"���˫Ga��qmat��wm�.�YL��
����E�}�\�X���~�$�Q�һ0��ţ�yMu��YxL�3��:ߖA�ֳ|a{�N�ֳ�<F-��@�_z�R�9cN���<L-�b_5�9�Q1�ȭ/x�v���RO���+���
hZe��.�?��1ۡ=N��''�䯉�Z�Тܴ<��?�	������ƚ���{;�N�;��\RA�q_y��	��.���-�Ψ>�Aj�E�=���op����1�G�5����ClI{K	8�6^I�<�׉�̢ݠ��j�����	��O\Bu��F��q�Y<˝�{
�q�W�?
cO��n�K��S\:\\�������h־)&��^���m�1���A��I��R���z�/s�޻Gq8M�7w*3��r�+��'�?�|�},:��_y��|W�X͞�_��B�C�s�#�7^q�qX߆����_h��Ȇ�H{x�؞�z�j�Ⱦ�g��c��՜	�sp��y>���ju���#�����#{�݃��Ê�X�)�r�މ&���c�4�"��j�!�7��	�2��'��6�t$�\���Mσ�9��̾��q;�3k�O爱��l�{k�/�9��γ;��LYDR�(�Fs���Չ�=*���W
f�*�bx;N=�iN���I���$�����|)�'xS�߀.<Wm���es���Qt+�.ӝ���|�~�^,��5��u�&�/	(=�J���3�����A���u%����I�G��8%[>�'����ş�C�o���x��htK#����+�H��ː�3���
��r$ެ��!�y#�ҿ���ņ-K�z���˿���
�2����G�� j��{]�u�^�u��R�.��+�#$�R�A'�
���C��[(��l�0�-��̫��<�S-!`�7rE}�'�����4��4
�{Í��%T�����C3#��"�{��1�{?f�-[�^�x�sOd�y�|]�G��-�O�{B5��U�ޣv�ܩ�P�GÚ�?࢞$�%j���}s�k��m���£��'޽k��
�������}%�ך���A>]Ԋ��/s�f�8�x����O�մ�Z).>�#I"��08�(����ՊSI۹�N�X�鞥�)��B�g,LG�ŷeR=���ß�O�|g�
.�z�B��}ǖnnP�)��Ljr@,0�q��߈�5�۽RIm!��]�K�`�¶?b��
%��e���u�ǺH�h�3��?׃�e�J�p��8���!��K�~�|9����OӴ�|gi��
�>�sChdT�D�7��y ��g��nt�z=���j��}mdd�h�/�bm���F�Hٱ�lg��W��Z��� ��=E%���R{V��
�63�8�]��ߏZ��_X^�a�<v*��5	᷾l��:�#����_�p��c�B]_��Y6g��P���F3U�W��K��/¶:����n|G�x6�V�v	a��F���H�.p�eG�FR�u����7���$�
������.��O��"��^`NT���.�������w2��[m9�|pZjI2B2X(YX���O�mM�_j���\[i�7װ\,�n��[œ�oI�d�!ղ��y548:��r�ծ�w�sᳺ�lM*��E�w�]�=�W�~��*����x�š�k����I���m|��d��Q*`��t��V<��c��ab���H�f��.4��]]�l�7HS��D�p�Xd��>���>j~<OM�&E��^�QY���TI��w�8��+�4��*����"K��F�]N�gP�4�#����`rc_-����q�^-������0���_X��=y�������?h�
�!����,�
+\6�#���J:0�P�+*�F�8��&�U�x[���Y��1�ι��?o`cgs6���	xĐx��$;z�`�M|��G���F�C��݅��<r[A��Y�q�@D2 �yr\G�|;����)���4�>��u+Ym�5
3X����7`�g�$]����7��>εO�.k8���NdԴ򵟗_�_U�sRnP�ge��}��c���e�M��N+��l4�
�^���K:&Pɼ\9<a^y�o�^��]��_��+ƅQѮ<5��+m2(���w�� d�u���vu����X�8�*�5�K�)aS��_�d�N����x��e�|W�=���ìy#P������<�����v3�`c����|đ��*���NZ�Ǖk�V�7��kW�н����>���?�|5� ����&�_��ٍc��/��2u9Vi�c��+tk�k���ï�<D�����G8�8�]?�R-��h��I���(�Y��k���+Lj�Ht+�φ�Əl�HZ�43E<�"�1���>��<��<C�8Ҿx<�̨G�+�…�E�Ga��O'$��G��;:������k0q���^��W�g���C�ޏ�tmL������{]B�\I�y��̆9@g*0���5��~��|K���+/��=ė��O��[�����
����د�"'v�+�������oog��=p$����)�d��Vߋk��>�-"�~*x�> �y~ؚF�irL)M�T
���9�����jQ�=U�j��dW�:��SR^g��dk��z}��[��{����l�d��џ�sȯy�e�|�Eu�MST[4S.t�8�D�:��]�Q*�C�_���������5����Fh��e�6Щ0%�<�rN�y'$ץ���O���O㶟k�e�W�#�颹�S���+��dp|�ƽL��045Qnラ8�.#��[��VK�����-�<hӥ���%�Z[ F:�������G� ���wzV�k���#�y��SO	�wI�h-�.c�.�Sp��:TR<�	m�T��X�z���g��&��>�4M\���Ԧ��1��b��?)*=+��	��Ğ7յmN�������bE�]�vc�B1�<�W����r�F���l|�/�.N����-�����n~|�ܾ�(��ڄ��l��+D��
�ʷYd
�{2�`��_�{��s�+����O���6�c��޶��&=_o'8��k�~~�:���2ivz7��m�����'6���Kd�s^4��iSm���'qW�އ����'�ǏZ���um:�Y����k�0﶐f9��ʎT�7dk��	��~ \�f���Ӯ��6�1<�	=�69�ҝ7Q>ae�m;L�m�2L�͌`�s�
��͖��j���_î�G�b_�P�׻W�_��Q�Ezoo�Sxe��џ$��?�N���:��nu]<�M^y�F�3Y�[rT��~�sA�Mk�Ο�X��#6:}�����嗮A1�*���I��Z(Դ鮥dܶ�F
)��<pE�/h��~1[Ck�ä鳟:�r��YH���p�q3Xj���̫岥l�Nji�����h�!�)ԡ��O��SX�����$1�[?5
n��T�Wg�v�1���f��\���X�1����zu��ি����g�ڽ��o�Al�.ѐ��#n��5����#�|Z�d��۽.�@.-b�b� ���nw��[�K�%�_�����=�i�{~�_?d��)/���[I|Ne��i,Q\Ŏ�$r:���3���<�k����~+����5?e0x���/DA�<�s.@ƹ���/
i�X�:���K�埘��t�ڼ�?�%���u�F��6�a��V[V�@�'n
��+
|E��+�F�Z���WR*��ɟ���o���;��^?����T�D�[��b��\4/�:���Q~;Ҽ b���Ɏ�J���\�/_�����.��B����z
ֻ%���}�X��)����<�z״A����$���&|��ˍ�I�zs^����>Wu��YuK�Y�����������b��6QƱ[J�eQ��a�j�����?���&�|?V�Qc:�܀NR1���'ҿ!~
�-hx�g��x����Zܬ�ks��V����'
������φ~�K�A"��,r���p�����=甛�R�̧JT�m�_���1�g����x���q��LY��5�'��j���
e�
�	1�e'��M'�'O��}�jz���%%���5��(��+.m�O�Fr�W����?<1b^��UiM���%
�(�I���d��|m���$��2\��p����A������}��:���[H��o#��w}4}���>
�|%�kv�P2Y�h�țad�W�=y�+���w�	�L׵��ڜ��󮝥nW��R��0$\���V���k�7|�u�Z�k_$�+�>6�ž���g���>#|N�k��b������4�U`a!M����R{��j��Œ#�v8i���ʻ����6I�玵��.�N�+��o"E!��95g��8��d|�G��~���a2x������z�x�mc^T7P4���@�,~ xWV�K�k�r�\�����P�w�������|=�F���@7���lg�rLr��?J��Ռ���'޿/?��|�폫j�=���x�G�_��.I[{v�M��(,�ѐ��,ų�F�ڹ�a�����@���������T{�>4A�k�.��|M�5���cb욶�����Y�	O����%�b>���iwz���{r�]kڕ����6l�8��c����?f?��H�j�5/ğxk��l���|���,�G}��È�������r�H�өJS�N��Tg:�VG�����a^���u���֖�O�%loe�~�~��j^�bt�WⷊooCv��KO(ɞ�3�Ӆ\��W���i^[;[V��X�B�
��0?w��Wh�w�b�]�u��2�{�H.0;���^�J��`�y�ue.f쏕���>|$�z4K?�^��'\��"��TW���u2��*�
��(8����	cѼ'cy�[x�X�K��W���2vac�* �՛1��,@��l>!�n'��;��m��k%�k�`�]��@N8d�W��6x��6����&�vx��R`�o�J���@ˆ�D��]���@��)JoK^��.��|��k�����H�z�W���x�P���N�����*>��{U����=�P:d�I�����pGS�UJO����w��;M�?�܉L�wQ��-� A�yc�8힕�6��4����1�Z���(���=q��Ry�Rs��<��V/�|A��Gu����p�=y"�\^%z�m���<Um�����=����@���g\r����A��o
A�@�/��R#��a d����R���=-��<i�w�
/<�a��)�j_�K��'i�1�������H�+Ŭ������{w�������:�C�[�Ѫg��>���l[�.�塼���ݲ/��Б�Ҿ^oڋ�wK��ߑ�������e��ؿh9�u�¿�����6�<PnŌ�¼LF#�?�K	�����'�z���𭴆����T�\��s��0�5�-s9��F���E�go@:��Ӿ:�/�7��@^�`���mk���3Z:���j�a�\�����Y$y���K�KGvm�'im�mx�\�Ow�	`�`9q�/8'Ӟ��5�)o�1���{-lʶdc�#$j	��8<��`��>(�P�~�$]�aW�2����л���au�_��T���O#{�l8�]4�4R�'���R�6�i$S\�Ԓ^RiV&H��6]�:m�����Y꟱����-SC��&�m:���*qֽ8~��n��o���N�� ����`���S��J��گ����ė�+�W�����9L�]Kf��ehؤw+U�X�yA�mK:�*�s��o#�y^.PqM]�:����ֹ�_�i	�����6"WI#�����+��ӌVwÿ���_�}K^�X��U7h�4��?>�13r�<sY^����>�t(to�����>��MK��<a����H�>�YX����M�g��/���`c�w�ژ��gn@+��ۭt�i��&��HX](��_C��G�]3]��SN`���k�0���	�x��Rh���|��w�{,�4�ױBv�6��7��c�>�u�j����[����[�Դ�\�2B�<��7�G<��I%ɯ;�j���v�-��bO�,ֻ��gL~��Q����Dy�Ui�J���QքJȤ�2O=}kGT���i���-pc?�V����Ś]����I��Mj�BA�V`Gj�
���]�ƍ�B�e�ȼz2d�ŏ��n;�
T�ާ��o��i�'1�B�A��1���ikZ-�1M f�z�.YN�*���ϣk�l_�I�C�ڤ�}��z������.��c�+��đ�:QzG��B��Լ
ev�	����.��8=:ιM&��@A�X��+�ﴯ�x��L6icsX�&</l�k�ˍ�O\�FM�pW�Ij����Z
�<c$WW�_7�u�����s�q�k�/^�oī�:��n���7���z����Em5�~2�
^5�������O�Wɟ�e�*�e�w�]H9�@���b)��)���M���F���N�v�-��p�˹�ܸ�N�ζ|�O��$���.�d�
�!���̹�];����@��z��j�c�9_�l�I���|�=5[�S�|�L��_
B�(�2��@����*����cT
������Ur6�O�Z�+��m:�R|ד���9���j���M��[�1p?��L�3\��W����X�~!x�P�Ba����.q�t�J��.|V�bW#��}��ݓ�W���G��_6���x	�s�X^𕞫�uW��e!�/7��_��C���d��ћ[�ѯ�5(V[[h��˲=����?�<8�����
�*F̓ ���<aa�XkzV��i�i41����	�Ѱc'�+~<֗���x��6��Vc5�l�B �H�X�8ǭ}�LR�[h�=Y�'��K�C���e��̡W8\�'9p+�����N�/�/ꚾ��^�Iw3�)�v��ا�۾^�N+�h�'ç���}����>f�[��C��|��9�\��~&���P״M.MF;�&��M����+�Ǹ����ud���~�2��~�� ���q41�l��ʧ,��E~i�7O��zTڥͬ�su��1!�z������o�v����LЮ�iu��i\�iH3�y���3���w�6�<=�yڦ��	3�Fc����
��9W�q�S�N	��M�h�g)7d�A���|Bm�����%2�]m;�s�p9��/�:0�[M9���"�i,m$x�1�e�rp+��<]��N�<'=����$��Ϟ�1���8���d�;��c��0�N�L��v6��	�9���9)�Aݾ��RN_
�f����Xh����$�~����5�}+L��i�P*HJ�s�S����/�f���[&�o-���d���䃟����x�iL�G�u����a���O'�wbzUCU;�������[�m{"�ͲBb$�8�@�p9Ͻ{o�k�����Ӧ�cGQ"#�@�GD��~)x�T�>�t�9��aDt�El���<�98�ӿ���5|_���4mCG��l'�!�,��qc���⾃��Վ22���81�c85�=_�����Q��X�15�!F@;:gܟʼ��1��m��%�	r��ϗ� �ֽ'��֤Ծ \O�K,���s[�}��zp}����&�>��Q�N��Gge	����/T�ybN���猔�m���J���u���;��XെKi/$xv������� k�k���,�ۋ���(�zW����]W¯� �ŕ��k��,�ڊ*L��K��9䷦I�x��H��k�C�铗�nI% �̐g�^N�1�c�V�������}%Q�Iۦ����~���j�ޘ?�wrу5�Nܳu<�ҦԾ���F��x�h\�#��=}��t�A�KK�X��G����p9*�8w�0{׋O�	�h��u�@s� u�q^�?,�a���v8hV�9���.�ᩚaqH�@J�dg�Z��O���
�+K�tK$�dX���f?6ON�����CW��σu�Ϸ_y���a�A$v�޼
�U�i��_�D��@�J�����
��G��*��l��Ф�7̴G�\�#]���R�Y�3��<�XC��ﶎ(�G��1U_��@�z��/L�jѬ���H��Q�dEAhNe��rA��'�`|�y<[�i���f�+k�1N2�N9,y'���?�S�嘲�|!�X|9�˿P��)Mj�<����e�A�Bb���^�ɟ�w*�Y�^����w�)������ok�i���f?|Y�\��I=yW����/��,�F�:)$aaʅ���7���s�jr�Z��7�d�#�a^�=8��
K�V�]�ڒO�٩Ql���<`�'���G\��jҔ�Y;��ѥ��Dz������Ƥc�,s�XbX�+X���ʚ��G�Wf�޼c^�X:ƶ]I�ץfjZ�P�-tˁ�x:��������=z�W��VV�����+Xº����P1���M��,�s_ax�>��I��~�b�j�&(�����F��?��_�e��/�
B�[�>~����үHGX��ѷ2:��+
0R9�T�U���FͰؘҪ���>����~+�.����)nVW`N�Ԓ~_�Kq_�?�n/�{��B���o�/ik���mI�e�0��q�W*]ۗ����o�W߳���g��.����
񵸹��{���q���#
��z���	�OjZO�g�q�IԢ�&��V�絎-_�l����[D2�b���\�,(�qjz����lH3��|�~Ϻ��P�vF�(��UGy�N��D�-��Eb�����1i�/'��n�?�/�m�?r�O⛸��!��۫���yX�������~��?���-�y�SB�Mm_6g�Q�R�6��$�����7��"4y�h�]�]�#K��ծ�@/,�r����C����S��eJ+���<�Lg/v
�����/���|o�O�� }g]���os5ْk�\L��C��������}�.���=��e�YYN��5ީv�S�<��%F�W��x[Ƒ_�6:@��f��1���6�.���E�Y�OQ�v�Fp<��%�>����Q�������@�����a޹q�FNk��0�1�>�����~
���[R�Ś���o�Z�F:y����+μ]�O��4h�/�_xV�rE� y��H����o�~j3�o"+$\����\�s�Y�(�4�Q�Pxd)!_݃�BA=��|�+1��[Y������?�,��;x�⮤�M���E�1�\3L�=�GG��J���Y���_�%C�:��a��������zo�/�����aH���
 '
{�}��ʿ?i�b2���C�9��~����nr��,2��cc�7�/���ʖ~�� k�����F��N�����A�i#nx�N��(?ο?<G�3� ��R+�ϧ�*.D.����O�y���Ĺ�$�:���i��$oA�FO�ξF�m9_��S���ZW?L/�o�h፤P$��=r;{W7�9�b��2U���s����%���wJ�z� ~��z/�W����'m:�~�f��<Fװ.A)ny7a�O88&':�F&ڗS겞�3Z�%�4�}o���P���[$�w~��?��o�L���t�z_cl�O���*t��uO�3�zG�f�uI<;�Y["�E�̱>��6��(Iˌn�c]���X|Gе�S�>1��y�e�i��i,�ذ		t�g�2#V?2䌊r̡/����9�1��ծ{��T-��~�\� �\(��$�u-��	#m� ��H����\�s���	�u?���羼��I[;�4��%����7�Ŕ��$w�;��g��-^x���>�,Q,�|���-$��r�G�2VO24$�C($�|�q9�%}-���U�ZT��-��_c�����y^Rj˸~�͘0'���jշ�[��o[�z����g�eO���y��^Xj9�f�
��$-����
�l����7���=��?�vRƭ��"[��1#r�3Œ��#+�q_B�gNsR��,6W��T����7������َn-RF>� �z
�o��Y"��+q#�}2p{��q�c�(��tOi?E����h�'𶔯c5���GaA�"."*3��IF$W��W��J�}��c���l�[,2]�Z�D�v��n��'9l��T��e*Y��V��iK!�ZҥkZ��}�s��r�����]���֍ud
��2�T�,8$ۊ��~�?�J�����sŗ�M�c?���qǶ�?��Z��]G�U�x�|k���(������P	q!�dv�L�<W��~�Z�u �~(x^�H���f��	�'�ӄ���m�ѿ�3:�7���=�P��]h��
�J�L���Dd�W�h����<G����[K�~x�<b8��O��L���5Q�~7x��׾#�P�����#�y�.�l+q��ۻ>��+[�_��g�3���䜌}k��J��S��z���1��4����SȾ"��?<-&��mfkh�N�o���VQ��5�zׅ<9u~m5_izu�a�e,�<����v�`{W证�nkkݍ10��n��ol���]���I�'�4�\��l�u+�T��I�鏭{�3�5jѿ��T�y}�]?'�����ӧ�"�7^լ�G�[%�M����nןk?��lK��lu�u<9�~{�g���~�x�	���I��@�X�/I|?~�f������+^/��	���l�xR�ÿ4�<��FF��*�����'o�Ꮵz4^]Yۗ��ue����>t��c�X��7��$�6Zv�kq��,��x�+) I:�k�_���Y�_Ֆ������LNr3�מ���m��SŰh>?���i7,:��G�U�%Y� �
��_���_�����7�<A��Ar���{�Z��Af`n4�I��$�v�Mw�cJt�iϙ��)��Uc�|�m�h5�E�ȸ�<�-��=��y�g�I;�\��y_�_
��f��'��?�x~��yYm��3!1ʼ�T���k���H��dWS�2��W���b���>���}E�Ƴ5�%Vܫ��O��Im�ɧG-�IaPp铻���k�mW���!�я�տ:ß�����j�Y��ڪI�x��a•���F�֑g�Z�W7֐��T��oλN���W�xGY�(�,㶐+d��|m��H������4Y<�/~�2d��V#����^��o�;	H��(]p�G����O��s����;榹�)攧����j��-_N�Q�Η~aRSϹ���s�h�q،װ迶���E��K��c�X�L�-�t�NOrs��y��o�S�>+�{�2�
��~O*���<*��W�Rb	m$����,��e�W�}�*j����U�k�M�hL���B[5��
���q�{�Ig-�g���1��w�{����L&ԵKa�Y�Qh83�nH�[��һ���o��?�j7����N�X翵g�q����A�W�|`����Z�摣\�c�;H�l�sw�6�U��h�Q����(#��|+��=�F�{$y8�jϒ����_�?���]޼�g�kc�ۭ�D�m��pF'9-���|�o_J���Y���镡�����܀_�sU�/�Eue��XU%ɳ��ӌep���.S[���|z��|u��˕��	��^N�e7L"�ds�_��,U^v��f�/J)KDw�	�4����%֮]���p_�x�zb�����5�hM�2Cy�A�4s?�%���@�T�H?Q_�R���h�h�tq�z�mU0]��L1����:)�#ÿ��υ�ﮭ>?xៈm�	�K�\�7�6�Do\W
t�9�j�j���3��UV��f~�����2Jc�
��Ԫ��W�߷��Oj��.��!�t���m.�K�s�Wk�u�ɯ�>���������A�^D�uy��f6PAӎ�W��?�'��l4���.���z�h7����c�p咲}O3�b�wh��K���d�m��ck�S�h�����)�+#<b^;e������o}7���d�7�(�H֬ʭ֟h�Ϝ���go	85���C�x����f�5j���$z�����.8%��H�¼C�s���7O�����i\$̉ui$����[����ta�a*���g[^�[����g���_��=Z����V�n./6A�ʪCc'%y�/�
���-ж���/4�[�"�V�涷�c�a�����c�j����s��C�����7��{+�B��-�mRw�Ž;p<�Ŀ�[����v`���&�*�Y�mq`�
 �G���Zi�*v�fqF�I{ҍ��	<5�
ˤjv �>�w��뺕Ƨ5�w&Ir�
��?�vig�ċ�,L�mg���`A�������P|Y��2i�wwyp�������FwE�[}����&p�	l��^�����:n��xB�akb&�[�!7_����ly	�,kȜ(���s����,Ϥ�}PX�ɶ�Dz�#YY��f���X�C��O��]���!�Ii!TB���詰s�x��o�t����|<�E䪼le�B�.�2��`d�4���J=9�M9&�PE-ِgnP�ar;�Bp+����T��U�C�Ju�����n�o�	�8��e����;�B����FZ��e߉<���bxfH�Ѣi�V��@=r��Nv�+�>8���
�"�Z[��ۈm�Z���8��3��ͷq!y:�5�
�K?5'��.u�4+������dc�F���͌�k�T��˲[��9B���u<e��¶������ƥ9�MKۗ��O9�0~e��<x��N������D�+�s�øI#�Ke����7��_]�����1-r��i��&O�����Cyo$�\�e��6�=�!ϩ��޳�b���t�t9�R�1��ε��_�-uN���l�G��c���/��5ox��t�)a�oe�<�y��+7��3��<O���}7b��z���_[�̟	�?��$��晦O�kH
M6��<��
y'�O���'�珨����/2Ƭ==w>0��M����7;��-��]��$(���G�n+�����LQ��,߻�g���bu���!F��D��-��P�;�u�OҤ$����A��r�r�=���;�s�����}MG�}߅l�+�'�<}�忌��Q�~Ⱥ�����z�M�,�3</xPyJW�^Pxns��W��/��|aa�����0@�.��%�q�G/�q���gM��2�N��ϻ�r�`F��J��_�]����զh���O��+��#��b���D�f���b�#'�
���e�)�ČI�k�K0��I�A�Z ��*���~�^���O�x*�<G�xb�{�ԭb��n��	 �PF"X#�.A����c�Fi��^k����I(��f�T-q��%C:�<����۟�!���/�P|�d��5��Ŀ
"�v:���A��p$��g�b�k+"��Sq�V���kSF��n|��ъ�`q�:�<r:u��� ƨ�
�%��Dzi�k�:��M��g[K�һ:?ٰn�
Wખ��Xr��c�=.yh��~��W_��¶:��֚]����sn���!Q�ry 6q�1_"�ї��ğ�KE🆵��)�-?٧��t_ؠk�md�O$�#*y�+�_������y��N9��V�����;ˀ��al���[�Z@ǜ�,~Ŀ�Q�~��K��j-�֥uŅ��~���1���@�hp<
��<���4��yC>d�l���zO������5��q�8r8%�V$�]�f9brj��47��L��漏���3��=`1�yׂ�#������ewd[I����L�4R.W�G��sk�����㛳��~�YU���Fb'�m� 9�x�i:��=�ܒ����ۢ�J�D��k�'X:lqX(�
ck�ݛpT"m��9N:��~$������P;_����;�Wb�N�\�Tǒb3_
�=�G�[L�E�l��~'�u]*;���r����"h����mwS�a�>6A�C�GS���m�G{V�t��o.�(��4�N�* ���Lˈ�,�<>���y^�忧C��a0��LB�k�?N|G�_�_|+"Gk�=���co
�jh�0�ۋ&������Wּ3�i��w^!���8��3M;�n��G�]�S�N�U!�q�|ue�e|I��o>�Ԭ,}�"i�ϣ�F`�iXIA�~�`��W�+�H�[�(�o}��-�N��ֺlz����ĸe�d�h�4i�8Vm�0<׍���t������V����}6+�i�R�Onǣ�����m
M�H�k�O�.'��$�c[5���6�Ė�U~ȷ��_s��]��,��Y��Z�UK;ݤ^K���7���.{m�c㶿�	���7�֠�l�!H"����O7*�lgɋ�B�[g9��?���C�VF{�i�/%��]�g��G\J�6'?�8��Ǘ�Xx�`�)*�|��]k�>ǫ��8�Z.;�v=?V��|{���Ğ���?Xڨ����W�FxeD�7�r���2������`�Y�5��K�l>�t�&[�A�V���
U��Hd9e@����Gig�_i_o
��ŚN���Ay�{=�mu��_z��(���ر �1\���þ#��C�����?��5yg���Ъl0�')����+L��9�P���f���޶�,u�>���4�.�een�~��ɮ|{־�^!���x��������./-Q�$�hȿf�w��J�6r9��?ǝ#���o�o4�}R8��m+\:[i���<����G��F26�
�
�G��袿���`�Ӣ��ɶ�	v4PZ+(ؑ j��*AZ�g�O��C�7����kc�K��n ����0��X�#ee�
A!�1�T�,,]9���+�My���;#��
���nqM'e�S���>;��hx���-�7�4�x��Zƣq��n��z���giⵁ�,[́B�Y�&�+/�F��<Is�h6Б�Gx���x�jeya,<�ҡ�̌*
�ר���Y�O�����Y5��ٗ(�CpT�le$Lʎ�q�1�b�7|=�G��U���-��_��KFԢ��=4������ȍ7��8�8|�׎�b�<\h��f�ޒ��k���^G		�E���m߭�O�w�)��A�kt��5�
x��=kV�t�$�"ڲ�y>��t��A!(��{�W�[��xq��χZ�Z=�:�����\F�.
�ݺ1X]�#+�|Fj�ß|_��x��:׆n|�f�_ԡ����ђH��<op�԰V8�Z���jzr\i^��
�Y�ܱH�W�|�W��H��0?6�Lq�h*��-]���V��}?�y���P�*�z�r����ҴO�I��|�;d�/n���h6��[�����3�̌є
�D�W5�||���ωI��9Tք�O��;&u��~�M�� ��v���_�g��o����>*^�Gī�K����ﮕP�˲Krͼ��w^��M�;���o�}n���m�6x���Y�����������-.7(V!s�qP�a���!(���J땭��Zy�s�p�f�(��VNoKw�~�3�`�{^�mo����	�j���w���h�#�m�p��e��!�U���;�������ڃ���xJ-/��t��-a�{]J��v�&HdPd]�	@�a���|Y}��QԼ�� ��sfj�7>%��ᶴ�%��@�ܐ̸x!%2#rT�����k:����^�>x�P��]48���Q]���#����T�2�
�s#䌕�+�6�{��ϩ�幎WMKr�������~x+��ڎ��J�ۑmym�5�ͅ��]E��K�c|��=�63N�?fH4_�o���X�e�=���3�&���#���V���V�4�7�F��o"���M���xr�L[y��嵺��I$o8�e���)(�N+�>�!��> j�-�u��k��V�2�鬴�o$���6�����ٽ�{Fv��V�!T��׼��}�������� ��w}��E�����)��緺}3d:����6M B
��m9H�RN8�Oß��ʞ@��b�zo��k>(��jz_�|Y���V�Fմ��ר�wG=��et�V�d\|��|��৏�z���)n�l\ۇh��,2��e�K�Gz��F�Nu5�ͣ��<j�\+�,<���t^���W�_��G�(��	�q���_���5�[��|�2�n�O�{g�¿!��]ǃ�L,n,�Q�2��#��cq�[<��^���߆uK�I��=�J��=e��;�d�yE���_>����ƙ�麜�"D�2��ލ��a�q_�X���k�x�/|���~�w����<H~xԜ��ctl3�6a�_��f?��@�Lj���
�(������[O��V�y)H���;�y�BG}�<�@����J6�Y�z��C���[���dؼB�$w>mIt�^��om�Dq-��ZH��4E[Y
�M���K�U���b���2�ݷ���x�v��tC(�rT�ó+��Fn�D����P����䶶оX���D��c�>+�o�*g�!&��|;�׮&��;mx����]Z�t��H;�9�N1�j��؈P�,Egd|�:�W�S՟�����_D�s�	����O��\�NcF��!�������JԸ��L|S��xtؼ��I$q$c �)��x���=��Tm<
x�8�1mȠ��k�g��P|\�I�������|�tb-U2�۷,@X���U����H���{�i�Zn���팗:�ޫoskc
��s��4��mDBX����g���j��F_W����¾|��
��ž	�/��_塶�*�FZY$r�J9i$eE�}���	f|Ag��u]~Xb?h�H�H,'���-��y�C��s�~k+lAY%��������ྫ��ְ�󢶣��X��֝H�4LBD��,
�|�a���5='@�
��xnm�I�c=�wC,{�
Fc$��Æ�Q_5��%$������0x��L�'?��=�0�ZošhV�Z�1j/�$��3e�̂m��s�LW�?�������>"�v�m���,Z$��F\�n��V�ߵ|l��^�X�tyn�/��^�?��8�eO��a�8�sҽ��L�V���W�4{�.>�u$�,�!���;����(�3�=��4��o5v���a�N���n�;�O��~�zf��mn[�
Jdk�I�˖�K���v6ۨ"��3�.vk��:΅�hv�蚾�.��
��AZ	#`����=8<�k�
�=�?ѼGmg`�h��71]Go�مb�=�=č�E~Yx����7x��]{Q���̗һ=���,��rX�2y�V���i��5��Jv�]W�������Q^��;�)ڠ��{oj���|q�Gxn=C·�e���� Cy>�H��˷+')?)�	�����rW�>�l�I�m3W�bk��KO0��J�v��^��w�Z/�?#�}g�߆.�r[^��)<�8�k��N���y�
n�rW<�ş����t�񞑯hW��6�GT�����`z�N
}� �]���-+L��t�;�mdS7��<��_!�I��O���|�e���%e��%��+����������?���|H�u���7��vS��[\�X�6��?�Vh՗������?`<K��ɢנ�u�
�V�j�iVP�w=�!*��6����1�u�π�?�Þw�>���Z�6��?�3���M�x�
q�9�zm�Q�h�d+j�[�a��8�u''�ZS��W�fk-�n����nJ�n�}8f�s[V�������%�K��l�~| ��u=�߆ln5y���V@M��d�s���5'�/����w�I�>h�¡e�k��!')s��=I��L��To����Ey���g�N�Qu+������ xUI$��^����C���[Ē��.�Nĩ�*�,G@\gt����i��3�ڳZ�h�B���^?���񯋴�A-�Ņ�F�H�#t��.T.��O�,����wW�?���h�A�M%#�u�/qq�F_;��I�� 溏��W�-�v��j�t�F�X�m 
�h������A d�	��n�x��S/y��&�4�A��O^y<�����c:��7cТ�M)/x����]'L���6��{b��H[�((I#���&[<����<Y�wB�/�f�����[˳�DY�R?�%�NF툀���v�E}K�'�ޓ�?^kzƭc�i���K�dl}���z���~Я�j��S��Eqm6�$w2=�r[ei�`<��lʓ������F�4Ӎ�B�!�'�$����3���ƫr�xB���
R4I{oon��!L���Pc,�1[�4��5�M�m�W��-m�>!�m�=�*~�h��&,�nsZZ��u�����O�}YN�o�j׍��Q)ԩ�#V9Q�I&���ۑOu3���b�Р�@��$��%b���>����9J^�[v)En�V�����:�#����a�7�CT!U���eS>�ްm*���͌��.���"L �|�<��dG�i}�s�Em|�-��mf+;B��
�W;V4�����ٮNYT��M]�cZ�c��[���(|�<E�^x�V��]6�吙\,sJ�E�"�����>4~ן�!�CJ��𽭕��Tm=��,���k�F�|����ڈ�����Cu �/��I�z����X/� �W3Kz�s/��#G�~�����eЧ���z��pX�x�T���[+<���)$����%��;�O}�K��ڼ�)��D,zv��?:����v1�{~�c�y��1ԓ�{s�\�|[��z7��Vo)~y�r���g���WT�JZ�z�%h�|O��S��E���p-�W����5�^%��^|��>ѭG+��O�w�Q��F=���&�*�e��g#����UH�����X�n�Ʒ�%6J�f��o��cÆpz��$TsNN��G�4���&��)~k7��x�K��
��jY=7n_����^ss���&+s��M,16]�-9��<t_5	�z�z�k�N�%����H� ��)h���z7~��My�F���y]T��Lh{*��N⺡��}�ل���~dx��	��[@3�oa��3��ܤR0Q��L�8PI�:�㽃�����Z�3N��-��dB�ijYT����1_�7�-n��y�B|����r�����9�9�ϟ��A�}5���:Kt��Xo4��j�ŕ+d�!Gⷎ:wF+NI�q�+���O�oCw��.�Y���1�װFx�$#��	���!���u��_�x\�n�,�چ���^�E �9I`�A�9�|	�C�	_����o��^�|B��m&L�iX#�J�)`8�����ao�$����7��H�<S6�c�����{��swqy�Y\�'i���%�y��2UU�+���A��������.�����y�幝W�	�;�$�(
z%��C��{=j���&�mKN1�@�%]�E(,8e'�~n���LO��<�5w��W-<���.�����8�\�8��w=k����>&�$��Z��nH��O!d1���渪T�=&�8kי�7�K~�>	��58����1o^�Yo4-z��%+�Gq^ x�/�W�����<oa�|B�&Լ)mx�L��cO�p�W���m `�ׁ�|w��� #�."��F#�Y���y<�������ז��:���n�'�q�DZ5��x[8�x)�S}R��_�����q�Z���?k����?|��?O��C�Mʺ�n�N�bm��3� ][8���du5�|m�׊m<?t���B#��)�)�J��8=�ҽN�}��ƾ�Lj���&f�L��y�C�냻���/��g�����i�(�f�lR!=��W�d����t��W��8'���RQ�=u�w�]l}N+��ٹU��6�e��4�އ�~�?��q�3à'�ot�������
��P�1�Ų��b�����J�߉�/�١f��4_��]�h��0��z����rmYh�ⴉ���mw�yH#�k/J��a�_K{]7��<���[�1�W!�g�^����IB����-�K�>�.⼺T�ۏ5�nߙ��㞗�ip�v
H��,��Y�qo-��1!z6NH#�$ן�I��s��E�LJo#ӯu�3��bk�8�'�`�9��߲��+����(ԣ��\ǥ�tC�Q��|��3^�����+᛿j:���Z�,d��4���+��ܨ�0ym���˒t�΢�������q*�Ҋ��Տ0���Yx�T�'�h>1[85
6w��$i�72�Pc,�G�{�G�2��~)���*mniu?
]��g�E�0ɋ�~6�ܒkR|!��5�y�Ҵk�K{X����2NF$u
�`J�����'��q7��U�o4s\��K���d�#i���S~Iq�d��^?Q�R�ro��'e��������
�]Z��;�g�|O����#��^�iX���z��ɾ]W�ר&��wb9�c�Ȭ�븍�U?��P�|!������k��jzl�~#MjX�Ԯ.����
'�GZ��?��m���+�~(Xx~}Nw�-���Ǎ�'2W�x��77��-��j�+듩qqw���U��A�w䜂j�l��
�0�n2M�����]l���:�jJ�M]k�}U��Y���Fi�Hҿ����6�I�j����B�
�.c����	���E��/�|C��^:��.��.��;�ɧ��n��Lv��d�E�p�W��W�'�g�������ɵ���WN�E�I ��{��=���5��Ņ�'��}��-�ū|�4�CE*�d;d���eL
<ckl������o3��-BiӦ�V����?�x�ߴ�a�]x���S0��iv�E��n�<�W�X����q\���n���xSI���?��Kw�Aaio��H�{���dxcDl������?��;e�?K�[&���65;��k	QA(�N�\�\��=Et��x���Θ�,�'��azO��ۡ�:�{��GN��yK28�%�%8���2�M��$�Y]}�^/���b��彣����?��
�gυZ��|yk�}kL��X��=In�n��;f��p�`���y\d9�O�>7j�橫j^-�cd��}R�L��8�����Ycx<����`��?a��ᗊ~#|;���w��G$���;�,�+��C��#��p��:^�����~��-I�n�y�s����㗗f	�ֽz
��2�B���goq�׳���W���P�j��շnoO3�����Ƅ|u���4�����=<֒Aqo)�!S���l��֙��~��4�#��i4H-���o$��#��>�yՂ��+�t$�T ��|��e�{Ḇ�mu�Mϼ��p�$|�,���#������.�����6���D�������̖6w�6���&$Ib%�zE<%h֜*�Q�҂m�n��ӽ��P���&�}������-���!�`��i�Z���ыd-đ�U\C��n�د�6�4]
��z����*;n�5HnWϱ�Hϒ�[�34L?�y^a�"���;�&����'���߁|`��um�ߙ
��D�=�jY�,h�s����V֝�0| �3f���3D�ش�b�i�,rHv�g�FA۟J�Q���M�<����K�J��<�w��{�S��ܮ�Nݺx����-_Q𗏼3�HVE��]F�ew�;c`�b>`xɯF����s�
[����Kn�%�bt��{f]�yȕ�W���^ ���g/�$��)��={N�����&���D��H�a�����v�/Y���xw�"kO
�^;���n�K��O�n�#��ֿC�8YP��7�c~e~�M��A�S,6O�?D<�_|#��Q֬|7�Xۭ����s�Ϊ�b;x������I⳾1��.k����x���{�iz��E֫!}�KE&��`�ڊ�7~����p�п�5�i�
�#��R#x�'0k���81�(r1�1�<���?|?���{�]CU�񇊚I-���dk�d#;��͖fs��ӌW�ʮ,��&�l~kS�8������֟��?��%�V�yi�ٯb{!�tL�p�:��������GW����׽�D��˦B���=9'�6GRH�?�_5��lj��ڍ�[�V��o*���y9��0y
nj��[�B@��
�n����dt��3�$��~���wG���,2�z�󋟇��P�u5��-$c�v+�������rǵY�w�n�]E��"����I����o��;��k�mkQ��->O��,;�Bʐ�Я�H8�}ON�}6��š3�la����́��1�rz�� [�c�O���zJl��tT�Ѭ�[˩^�=�L��*�f�:�X.zg"���\�	�/�V�nd,̫�@��<�>f'�A�V4P�ܭ,�E�ʱ�{4a��!@��$c#8-�f���]����[G�%��c#2�Sw��2?s��U8JrU����9�kݲ����w"Z���T�,�s��'�g=+G�>��ݵ����:2E$�w�Z�h#_-�!s��^5�ek<��I��}v��1
�JI�@w>�:V�O���_��%�����ͫ4HL�6�x�8i�H
�8��)7�ٮ�j(#��'�o�E��t�ː�<(
�����V;�Qe� b&���-}i�-���ë���@%�$�����L�9����go_�����]j����V���"��!�G���$�4��I�i��>,�ᗎ4;�I�c�v��1���3�#<��p�8ӫ�v�k��Ӕ)���P����(��|Wkq5���:���������f#*A�F�����2f�R�����f�����e�9�c`��"��������cᕕ�:���"��t�(�$6�������-(�'J7��k{}urRI����%�D�q�$6���*;ש�U)U�FZۡ�yL�N
5�>���<?→�}d��O�o�NF����X?���4+�5�+7����i�;��W�n~�=+���׆4�/��XL4�Q#R��K2���28���=k��O�����9簱��̷�t��D�"���;�u���|u�N�����ނ?���#��4إӼK"�a
�l�y�x>���3�]�A�]ZIu����%������C�^��u��mE�tamԆ<t��W�x��&��|E���['"��i�dB|�'���?(�d���٦g5>n��c:xI-c��9�&���.`2k~�s�d�He�#����G�^��k�����ӵ{o��7O�I��e���sFJ���~�|r���F��uΊ��&�-�d��y��p�9�Wi�	Z���6�Z�Eq�<��,6rM�*�c��~�nEn��m�rZy#(��t���W���_��X�>��iCrVy���9�MI8*X��E}�|,��^�b��؂I@�r� c�-�$u�R)|;�]���k��Ed���E��`�r`�^s��xp��ƿ�`�i��fXg�$2(ӭ\�xҁ�ڀ��̣�\�]�jrmܵ���nS�>%x|=�i����c3Dd�g�H�8��Q$�T#�	��\�񭆓���4sK��m�n	/�m,����S|V�~4ү��;N�c�0��^F�*<sņ]��1W,�sm�
�{���x����Ú5�ئ�R�hme�lB|Ƀ(g<�$|��,�պ�RI��ǜk��y��Mx#�.����7��J��(��V
1�;���[m6���xZɭ$�N�7�UZ�n$�N�l�lR!�HG
 ��k���.|�Y��Ŏ��-0Xx6�c ��v:�F9[��b`�xf���iK��V�A
$x��.�3�e�	�]�g�h.]f��U�`�z�_
�J��vn�3N����d����;u9�j��c���7�$7Ҹ!B�ܑ���X�_��+-K[u�\K�B��#���-ɪcF�_
[�	�)f�2M!�T/���Ex�j7ksx�N�ب��>*��� ���`���>�����-"�b��������lC����pZ��_#���?�'�b�#��$m�An�o��]��e}�B~@#�%�G4�1G�!���{�H�_k��t����^���ؕ	{��r���0h��{$�][�6�UD�܏���x��k_k^�5�K1���v�&��:<���C���,����dͪ2��d/�������qf'������i|���d�zzuij�h�x����7w��)��o����q�	��k��q���f�H��/�
�0	�P��_cX�w���kh��rJȳ5��Ø"^����@�h�
�]�^��i�җKQ1�K�����;������_y�
i]jy��ffh�w��ih�������	.>�7����x5�u�-gb�|��%���.ّ�$��z���Q�Șe��_3!<`c�c��٪
���ޕ�Z�ia6@>`�G8��>���Qu_1�_��v���KXJ��@Rg܉�󎥋��W=*��k�X]���
��7����ѹv����*�7�h�]j������+h~R��$�{��W]R{Ra>0� ��˜}�3�s��/y�r��nO6�l"��kYTn"S�̌���������/��$�2��xܸV�@��`N3��5��̺t��`.W�HN���pp_�h=���kImt4�ao��cY�ID�xo��8�3SR0���h��9��=���x���(��zTO�� \\�$l��v��8���|k�u;��@����\�A�������W��?�)��%���~!/�nd�o~&�]BK��O��-���0�YH=��}�����t��_�b�ό���-C��"��n4��$�k[��dc0�\����.�3��4#��aJ�rr�捽���f�6�"��@�e's9b��n;s^=�o_��ܶ���$t�]	��R;0��k�i����u�b�O���v�Y��T1F�@��Qp�� �8�'x�╗�M����ye�fM��~`����\��1�p��g�y�69�ò٘�壒�q��^I} 2��Hc/�n����pm���G#1FG�#���+��ɉ&(٣�\�W�B����އ�R��N'w�Eo��hP�$O5��f�c�|�s�.�����MWa$$��[o#��z�4�G��2 ��9>ٯ>�nT�L�c�Ȧ3D�?����������v�R�6�1�O����:j6~	�@�,��V�;G5�fF v�����s7>��2�rCW/���E~��|�-��EM
Ө����U)P�}�j�|�y�B���'�uh70�"m#�WP���u_��O�:.��_�uq4n�%�%7�����>��`���[9c}�vn_j����+J��t��z�N.z
�
v�u?S>~ְ~ҿ|�k�9k�	
�P��Z�����c����
��|w���@��b�|E���.u]V���e(�I�����Ʊq&�r<̅�l�H5��Ö��H����V�&�q�?�Kr�|]�����K'�:W\�Uh�)J�&�{���TSZ'����`���|6�o�v�u��8m��m?�M�ګp�;8\v�:�v��a��Z���>��<O/��/(HАɹA��W�?���m-��
a�0��̍��� �=��p8�
][��<�FnP3�~B�z9R�R�n�S�e)C�^��O��_�O��O&�.��I,����NH��>��������l��_�
���έ�Ԙ����טi���ڲAV�3���0#��*�A�K:��Uo���d��S��q�r�u٘:���Ug�x��
�B��os���$�۴'�&d�N$TR8#�
����H�k�g@����t�n����Qi�$`�@e%X:�H=y��yP��|�'ˁAVt�ċ)g M�c	�R�\�t�v1�
��Jտ��%X��
|7��Q�D.�����%�$(�p+N/�)/�.4�-�|?�h�2M�5ϔXY7�����g�Z����ͽ��I�@w�ۑ��S��%�D�Nw;�O�j��[B����]�Q��x��
u��Ȯ���u�|��g�F�'��>��h�d���h�>�o��v��&��`e
�Jƹf�%�����~$֌�S�%"�㉣o�#�29��~���^/�y�g����1�a�AP�˜�H��׹��[�r�w�ǝZ�;���՞E�.�]�j9���Jr����gR6�$���O~����
m����a\c�y<���g���y��x��v�#q#�^5��@�%�O,$�d*71#�I=����/��Т�qF��������T}���&K�f@��3`������<3��Zi�6�b�V-o�|q��!P������뎵�N��7��=����ڱ�[�E'GL� �q_C��4�K'�>[_J#��/���%$ɍ���>��W����UT����(S���g�xա�_��9��!�J���*����~L�F�����̡lm��㶄^�E�D8�<c�@�~�|����^�gX��c�/��ٻ'���޻���|O��� еxo.�`�:�2$m#3�T?˜����ج8��N1]C�&v�)K���Mn��;j�<X�+�t�����0 U}��������m�K�[¹�Km�1�����]K|bUa�>d���T��������4��/��-,/m����k
���N��.{�y�+���O�h�I��lX��L�{�k�[-�:��o5�u�)�ګ�˒1�͎�ꏁ4{���%򤴰��Y/ g7H�K7=�=1�Y~$��}�Mz�E�������I*~Fq�6�{
v��M�-5u�;�6r�f*���6b7�� c$�T����z'���� �Jүu�{��C
�H�P�
y�a���9W�뻄�L�Zi�ׯ������zQ���i?
l�5[�I5�%�a��!���a��$������=��KG�T�+ܕ�{�Ys�ڹ�*�ԚMԔ�ކ�7����#�
/��뗖�5��K��ٜ�,C���W�|6�:��`��]�uۭU��|�u���u�s�����Ӧ+��'��/�8��aXa�B�w%�IIb��OQ�3��X�𾧯|E�R����Mi$�KԱ��xbIYJ��$��n�l���hᜭo�穀��%��f����f�Æ
;RH?����N~G��[#��v��t
x�HԖ�llu���n�I=��d���!���10���<Q���C�lS�)�n�(�渒���o0�eI�xQ�@�eL�UfO��>�,�,�:"�]�\j�ܦ����
�A�9+��1��9���Ζ&2{#�W�z�H��;�?�K��[A�Έ�h\Aj I��0��b0��O"�R����C}&�mu��&̖��.����I�<E�<q���O�/�}t
���j�#�Ҡ���]���O�|7�.����)��g�ue��b;r���C`����&��'�b%RC��Ya�|���I�G4�wQ0Y���RhT���9�u����N�L����J2��.@Xg�O�?�~�𥤋=�����'y�_��2q��Mռm�i��.%�.�[��������em��C�V@:�+��e���p�lڮ&1�3h�oj��=F�MJL��j&Hc��F:��p>ҵ߈��k��Ė:L�i�,�Ffe<�����v�����/�]�G�0�~���='_�RK��5��;u��zn�Q�[���?n�U��U䎰Zڝ6[��`|���+�;@=�z5��H�ԔU�_V̡��D���|N�>����p��nW��Gg�J}�9�	�F�ҵ�j-6��	���|�4�����6ѴcԎ)</�k_�6qN������BX#y����*�/
��h�T5{�[�NE�)�H.a����|����wr�c\PN+�Z���SW35_x��TK+5(��ArU��0pF����n��u����CE�c��Й$3�"EI���d0�ӌ�s���i�a�
B�^�UQm�c�Y�˖|��ڃ��`�6�y7�b[�,���d��Ԯ���\�E��
�Vfev�A�'��T��c��ԩʷg��K������֒_��Ih���h�	#6N��x��ǀ)�>���"������W��?�E�Ge�j��i��#��1���㓟��?f��ګ��z�6��1��6�Q&�Lڻ�#HI{��H���a����<c�֖:n��_�t~äi!1���|������z��i�X��+�zQ������_��7�dڽ���y�H�Op+�o��Up�� R^�4��-�J��s��p3�L�-YmR�p�4�$
���2OJ��t�{��㘫B�t���}5�֜��'�Y&���"�`��/�`�7���V' o�{x��s���ǝ'�T��x����&6v�SyqKw*�H#� �GEV5�e�#[�H��Gi��@�68g�#d��οۯ���ۿ��{m�V��o�zޞ�5Ęk�W;w����DE2w�������2j��F�'Zi��Ǚ�t8�أ�7��h��K{u�_k~ �k��X��I%f��UPq_��g�>��Ę�I.��x�W�����<<o��Ė���4�H��iel�)<g:}k�¿��a�t�KK;���g�.1ُ#�q�CF�%:�������˙��m�����cT�dUd%���2zW�z��qs+F��3���s�+�s�5ޗt�o9�[{ ڹ�'��͞5�5��lE�Ž��fa�x|��RC������W�'�9�ף>�/����S�.-���5�Cyv�Yg<���ʋ�P~9����n�d���e�)�0��7��=k��d�%��h�N}w{��٪6���q�ذ=%�`s�s_�<�,��T���Y���C���S��Is���?,c�@�s�Nk#@�<�0��D�/Q������'�F�����U�|e�_
��r���3��W�r�:�Wᛍ0���r5rr��2������~�T��-��=��G���5���gV� ���m���B@�s�s��\��\.����H�[m2��y.&�k��y�<Zޓ��>��,|"Ֆ Nm�BG���\���&��E�N���-��;��֮�e54�M=�c��\�M�Q��U
�Ö���lp�q_>��6�3���2K{Vx��b=J�O-��g$s��R�.�d�Q2L%o0��X{Sh��W'�#�_���x�|[s�^H�������l���Uۍ��3ߊ���T��Deco�Sv?*b�sy��76���
��@�k��y�����{���E�-sß�w�E�i������mSO���Z���إ���D��I|�\��a/���)9����E������L�h�����ٻF�M�6h�擠�H�g����^6��Gm��`���� �'�1J�m��.^e�.x���u>����e{��0M���i��剣��G�����~e~к}���Z���V���/�m�����\g�e��{��|��o����|e�s��^D��O<z���&�E�1q�;��/�����>_���߇ݮR�54��P�`7�+s&��v�Q�zt�Z���y����H�1'ę��	�'�S��@�e���(IʟƼ�dO��r\��O\���[ڙ��8�z˴��
��Z�5�>5l)��H�O�W7�S��`q�Q��;�[X�k�[*ZF-�L�=g�%�8V���c@�0�ā�+���/�WO���i���x�o��?�U�X�ҲG�´%�GS��1nX��R�3{�?(7�N��M��Mqv�0�y7�+k�z:��f�v,w9|.>�����
��S��������&J���s1(�>��^����q$M^	b����b�Ds�ds��k��%5d�k[��^F$�Vh���~����x��	��J��İ�uȬ0�`���~~�Z���h��Nk�3�Lӿ���Y|E� /<���ڴ`�T6x핯kU*��b�I�|�����X5RX�?w���_���F�r0g#�T^%��PU1#,͝�o�Nj����z�o0�,	�#�|�V�NZ�£+�q���{IeV�AF#򫺍�P��&�0�7���s�5�m<���%��pz�A�&KY�B�����z����T�e�?��My睋�ҪY�'�!\�[)�ݧ]O2[Fbf�yuQ����I��I1$g��:��A˖�p\����kg�����`�0�l��)�.��V�tw�@�-��~�sP?�.�-�l�\�z1��R��L#H�J�G+�kh*����o�s��_7]�����C���}ᯉ߁�2	dK%�ܔ\�c�8��^�xz�R`\H�:�#��]�~�7���t�o�q<�D-�a;C��$c��#}���ҵ��;�nǶ|3[�[J��[g���ÉnFB�$p;��&=*[�p�˹�ٱ\>����ߵu햟6>��i�?:脌�s�տ�t���v�[�m7I��V8��.�9Q����k^r�앑p�\���ŏ�=�G��7�<WH�|��>l�<9ǵ{g��㦭��N/��M6[�B�Kp�€YWFz���_�'�Cmj�5��ɇ�g,#��j�7��t~��g��U��67�R�f�a�M���]��(
9'�^�L��%�n����7�#�?��8����w�l����'�`�#q���I$��#ޜW�u�!~ž"����\�+�/iM���M�u��쇔���ǵ~��Cdѿિ������V������M�^����Ķ�
���U�yUW��Ȅm
��o�_	��K�t_�6�F���̑}�(�ku~���98�oF{�*	�ë��qɗac���ǝ��F��;�E���_�~.�tx�<��0�1��4��y���*���(�w���hS4�>��Ҙ�n.m�o)���T�|����������"�-�ֵ��
;Iy!*��8���w>\3X�8���O�x;L�R�b�ծCK�H���K��:_���u]i��>��.<�I#�7�����ٱ(?l�� K��T|���]���j70A/� ���?�Z\��1��,ٞ�7g�t��÷�
�%��w�u�sG�]F�S���Ks;��"P,e�>q����o�~�g��%�?W�hCòGw�\���-Fx�nl�nF���eG�,k̅.i�.��X*r���>�[�
�Ayiy�k#Ú5�H֖66q��#�4�V>8>I�@��e��>|9Ү�S��u�����3j
�!��؟x�A��U߃_����h�E�xO[����D=p�;�ڽ[E�"�h,�c�A�Hߒ���L˲\
8)A&|�#Y�Y�M��#�H��{m+l��wl�]�b7��2����3�+?R�V�$K$��+�Y#in�U ���0Es_~�:��q�{�m��3�I��g��X��oIr��N�+x�ћ�1������,N��١�T����p̭촽�Y!)�$��X�t#����M:����o��p�#0c�����g_��WӒi��k[H71���{���^C�_����ހ��Û�궰��#��ڱ�F=�`��j�־+j��Ei�E��ke �k+F6�6��-�@2�ʪ���<�K-�(�G{�b��{���s��W�ȓM��lc���=<�������e�{�7ok�_\�D�c:��m-''��wc��Pi��u�I4���9�dv�v�6��ț���������;9��6��kݧt���H�=vƻc��t�V_-Y��f���oƿ�_����Z���*�&f�?�u��U��=�F8�פ���?�5��c�?�w�}�qu�]j��X�$�*����Y+���%�[Z2X���#�X��\r1X�_�|3~��$3M�Q��2͂KB���5��5�.Z�K���J���g��E�O��ē�����It�����D�Ƒ��Zy@2���g��g�g�l���2��+�J�ᣚ���y %�@׽}a6��L�Gl�s�Ѹ
���_<{`�^c�A|+���.��X�l׷tr�FK|�F8\I�v��#c�y�ܺpN�Z/�(�i%#�|i���^�>��G4SO� �&�#��n,�l��tp�rk��=�Dž$�WKKh�m�P*�
��+n$��9$�k	tK��m��CRB�b��&i$p7��̀7g&�N
�н���Ԇx$�7���o�A��^L�-=X%gdtK�X�n�R��e�n��*L���5�Pv�m�Q����
���?���W���φ��[��{������!n��:�*���!��1(=q�R���,�x��V>�>��B���=Z�a(���P
c�d�"��W���v_�ᆯ
���O�p������%��S
�67-��K�e�T�p�U��-![��tE�-%Q?~Z%�~Fŏ��3���*���Z�y�j�"���Z���#�YF�lJ8)�u�Xb���&}�̲��3ש�}�l�,�c�Y
�<�����)��q�mT��'`J�PT�@����5x�J�Q�KN�tG%4��[վ���"��,d�ĸH�}���mN9�y��̆Pq���A�埌S�-��kch�\�\�)\�pc�1��=���_�?t�o|A�[����Kg�k����¸i6�߁�By�~�*�FݚT�"�-�~
�x�H7��ٷ�R���y�vfc�x��~�v��xma�,��d���d�7c���l~��P�N�u-��Z�M�ߌ��I�#�x�b�g�1��^���|9�0x�ᦡ�Iv���������ax�fS��%[�����i�o��ù�YʝYZ/A�_
��<Ѹ��uZ^�y�[y̆8�e���Z�c��k�W��x��Z�nO"���{�0+�+O��w�
���߃���fE���F�3���_��%��e<Te�X�2ͨ]*M;����2C�����m���o��Z���ώ��5X�
��k�L��p���sՇ�^S����������HKg�;��UB�I��G�
'�'Z���n���1o:k�<���cQ،6s_S��*b�*��Ҏ���3lB�gM�>��G�������}g��Y܀3���8������ÿo�i~�셿�x�Y��.���&�<q�[�?����+�._Z�!��T����.8_��־wԾ���[���]\�2M�j$6��<l��rNބW��8��UU%�Z}��ƽX���r?�~"����O�~�#m2[Ǯ�M��FW}��	W��Uc��E}�8x%�h�x�O	?���ϽD��̼�Ͳ%
��1�3_<K�#]մ�[�?S�Η*�6w�.-� Vۄ�G��xwB���M,[Z_K^E��[OjS�]rT��S���Q����JW�V�Ky�*ʦ!�{8�����N�T��F�Ɓ̑X���2q�J5���x~�T����i�[$s2I$��Z�kM����r&�m[P��%�յ��l�zs"��^�����	i�U�m�ܽųCt�Sy0�>Nõ͎9#��\p�Z�su!���=~g�,L�T�����j>���Cs�XF�U��T0=9#�~�KT�#}Im큛x�±|=��4����"����	.oA_�ƿ2��{�G�������o���3
j7�1�m����0�#���E$�Jnt֫}��U�5g��5��~��h�<9�x}�9�A�sZ��_��P���],���T8���w�����t�K�v�����b��vl�&&��bL�s]���R_i�j�L�R���m��1�r�`w�	.(���w��⩚E~�P��{�	c�cě��?o>pP'�������Swk	.l�)4���v��%�\�_�z���i�����
��R'�"�<��W��/"��K[O(K �A��7�LW���	�N�K�V��F�
𻎞g���		�xBc'�<S���j�	ǧ�:{f��]�|Vѭ��ֿ4`�ݥ��=Ԩj���R��&��O= P�h��=��S����C6�=��Ҿ��8�>Oh��'�R�5�?.�$�;"��H�M���7��͹#'d n��_��_
&�_�/��<p>�ƕ�}��O�� l���pĺv�I��r$El~u�x��O�<r�.�KH�p@��Dm�r{�~1�/viK�9*d4��A���~ا����?�~�$���� �{T��*N}��s��>&|4�ss�O}m ]�r%�'�BN?
��������N���W��wl��ן�_<x�	��/��:%ƥon3e3]@��~��8��:V���>����u%%�G�����ַO-�䷔�c9�sU�u������ �?�5���������_�x�.&/{mw�F��$��JTa����\7�g����j�|Q��"�I�ɗ��?�v~e��NJ��$��k���P������Yfuc+bO�?34�r?����Qdf@<Ə��_V~�?�'� ���"��X��"X,aB:�q�ƾd��?d�����%��4_:�~�3��G� ����/��ž,�{�$kx��,UU��ib2�E{H�2�H�ψ<[&��{�ydh�)P� �\�����;
I��W`ۉ�ט���7ۼ@�L��;-�l��-�":�p0��:��v�shc�T}��֚6���2$9̵�O�S��,d��Q!�o�H��|c��Fs�~5`|Z0\#fA�g�W�)N\йsͨ�}d�����qKm��}�j}ť����n5
LY)B�
򑎀w�W�w���^݄��k+Ŀ5_N��y�ܜOj�S�s�Cί�S_��~�˵���>nh�=y�xS�F���ˌ�#9�RO_z�����q�֯�Zܖ��a�%���4��ʏ]���u�V�*6�Ԛgs�7����Dz]��B$��}������n�f�,k
��_ξE����ir�*�GU9���O�~���!im-nc9���p�jN�w.Y���g�f�gux����9� u���%���t���+;�Bd.�)f�-���9=���툺t�4�4��0Lw�2�|*��<K�SY]���uv��.n�h���!�	
2x3tPO�r�L]���g,e9+�s����c��ͫ�rEco%��7��ֱ�'�b��ށQ�=&���$
w��|=&����`j7�U��a�~H��\��^�����d�W��Q���^9��Qr>�9�U@�C�'�}����i�ya��u��c&�"�#Fa,��`A^�קJ��6��_�<��y�c�/����in�-Vhf���C3�䍘�$��$�FI�J�mt��h�_!�b�Q�܅-���גx��v�kr�����K�’�UHPޜ��g W�Il|_qu�O���^��ly�3�0���8
������hF�Yw}3�v[��io���ը�m�Uh-,˓/��G���q�ѯ"���-��m��Ǫ�����gq%ɝ�a��ʃ� ھ��_A��?�^>�j���o�]Jd��.]gԱ��3
G�1�88⾏��ïx1<��zf�����s�I�7�jg��"7�����+�9)U���#�ⷃ��~ ��m�}�K�k���\LUFр�8-�QW��7_��T���v2�jSx;E!<�`�Sk�M�y��W?L`����R<K��O>���9 Ƀ�ָmE��GM7M�������g�B������1�Ed�������6~��x;�σ<5m�����o&��:����d�>����㿄��ƿ<!�X�jJ4�:g���z�
z�Yx�51�P�ǝ��#�&��m�������<�]�a������l˂ñ��};V�ҬW$b��5M{�*�W��m�Z��"��Z];P�9�ݙ��I�"���?��ݛ=:�Kдv�Ⱥ��O��r��I��ֽ���z���`�k��,'��(���mD���"�O^
A��.���am�h���[�1�|������2zִ��4�Y��RK��Gź�w�����}SN�u{��r�[�-�~Iܑ±Ǹ�,�}W�+��Z�ùt6�Ư|S���I4������ц1�,�8�~`=�n��_�tK'��Ǐ�~�<3��-�oI.gx�^�ی��xO��ۃX�Dˣxw��������R)'��,0���'�k�¹�J�_{��<��Z����
c�]Y�`���>)�,�z7�����K�;���2�������e'�W����~O%��_�-#��
+���ꎕ��|!���
���į�/�hw����JE
�2MY7wžs_)�ڟ�C���^�Q�G�Z����<1��U�{�����
$�1¢����UOE}	7Jϻ9e�����}���O��[���ǤZ�'�-N���;���$qۅ2�7�;�D�$n���߿
u��.t����w�#M�ť���3E,�P�q��w �O5��C�?�F���~�������miu�^�7�-X�OC�����5��f|6�g�ol�m
?(Mw4�m�'y�c�B�3������b�KI�_$]|�H3��~߾1�w���YYJ� ��$mH����P眲Bkͼo�/�ߴ^�-έ��oa�t���:I+����,h}�!Ns\��!ӵ�H��/"B!f�RA�G��U��r����5��(�m�x�t��&�g�巂�̉n���x`���c�W��3V����=:8~I]��<E�����1�5?j��k
�{���GF��Y��6�rs�Hu��w^�4���g�����C����6�6�񩉆3�e�rA�9�7���o�[:�iV7q�iqH�L��H�l���B�'������O�=mf��:J�rug�#9 d��=N9�ѩ^\�{�z[�
w_ב���eu�"��x��.�g$�w���RFծʃ��y��!� Nw;��p�菫j���{ust�wR��d$��g'�;����Ǧ:��3����+�sR��BY��+HP�8W�Fy�R��mNlDO,nRX��$��I�{��9UJя�:����o���ȭ��L�r�H ����N3�3��.g�k��V4
pCt�/���k�֤�-��Y\�Ž��Yz�$X@5h�B ;q�"�=�ݮoOEvA����\��=��
�2^I,�ykim/���/B�{�����o�OX���A�yc��^�ռ��EM/F�^���maU&5�Bm��9 ױ��G<m�x'���G�1G�O*j��\��2/��P~w-�+dc��_&|"�5�w�6�6��ye���y�q9
�����W��P�j&����kt~�~�^M�s�z�~*��{e�k�����4�p�=�E|�:X^?�~�4O���Q�G����l��?&�V;��}����]�յ
ZxM�b���������e�>�+2ל��K�����Z�4���_��e�K���q�ݺ3���Q�vx���骸	о�t>7	U��ƫZ&~S~�~�5���ZXӁ���@澒���hz��MM4�	�j�lR�X4��L�06os��W�?�d���)WM�f�r[��zW�뚭����sX�i����WI��ϰ���e��BOW��y��D�G��i�������M[�i�U�ҍ|똧?,1��[�$�ɯ��?��5�E�x*]/ƞ$�'�V���m>SpVF�)"dh�g~��~{O|"�n����kmS���_/3\	0�����u���jz�]&�O��#���.HRg�a������9�^t�ʕE��wU������~���M��>&���xL�U�a꧜��CQ���i�(�\
�˨D���XJl�q�i�O9�I��d��ߎm|G�˩4���[K��2�Ӝy�V����k��9n4u/vҁi w��ܜ�r�S"����4�5��)��V~���c��}�6��Z�����ׂ࡚5��u?���m�n���f�@��`��k�����Uޑ�MK��톭q��oS,�x�@�W�sI�
h�M�Ě���않*:����Mn|;�A��jF�m^���t9���rs�z�+*�U�C�KM�Rӷu��/�!No�M�?-���x���x�+�B�����-�/����ïJ��t+�r��P�ڇL�����6H�YH<y�8�|5�P+?���r�H��%ҎDlà�T>.д��q���Eذ[HH@��
�N|��^4���,t�^*�τ<Y���=n=OB�j�S�y	3�S�	�Ww�6x�����5����u�mh���0��}�ϯZ�C�N��x��K������ݼ�()�?u$��-�i>,��[��$B=����+���tk�0p�,?��i=�?R�������/���E�|�x�,�т��ʤ�
H9�^#�F|R��ᯄ��[��lm��;���q�l��9�/��~"��>6�����cTA�ݤ�ٲq���>����<9�HT�E'��i��h.�[���ׯ��CBڲm=Te��Gs��2j�jrԤ��g�~�?��_�e�WV��ލ�k�.�}E�;y������$�ѓ��ӿ
h�~�O�5Y���>��$�}iw��g�Ep0�q�q_(xsZ𼗚~��j;��6�-�cれ3�³~1����<ca�`\[e�_��:c�O5�֫_[���$ܯe{��j��Vîe/qt��ޞ>��ej��{�[�I<�R��pY����������
�o>��__K�� +(�����ƾH���u?���V���C�]���t��]/��_��������ӠĢ9��`~D��#ү��p�)B*O}]�\>#N_���f}'ma���kU�v\ɧ,����1�����WG�f�`�k�# /;옏�q�%=�ż������E��˻����	��ܻ��sӸ�W�"�����q�!kiv�%H����^�ہ�ԝ(���?���8���E*���۱F�w���"xn����dM�޾�9�t�G}x�_>X �?���<�]+O];L�����ڵ�aHbr'���o�?Qՙ4{����PaK`�Ƞ���=����2I{_��v���2�r�A�-W�d���ׄ�(��U�m|��J�|�F{��gƟ�'޷�y%�<z5���������\�����l�+��^	l.��	��U��׽u�~���t �"?u��}�_�5.jO���0�r�W^g�~1��f�w�oiEo�	Vy�1\B:m��+�ڳ�	ťx��X�H�#x�H%�e�t�8e�=k�?����gHۨ?�V�n��:��qk )?�N������2M���Q��3i7�Ŧ�i"c��'QֿDɸ�bR��V}��L~U*?�����O�OV�'�.4�^����݊�R���P{��w�:�W�W��%i��6P�Ks���}��y#��=׵~q��R�?ýCT�����*�1�'� ��9�����M/h���:����'>���ַ�>��"Gg)ieR�q��,�-#��F�0�@VQ�$�㨤�t"�)��*8,D���G��JJ�g�j�B����0�y��9���^*���7�$���a��z��GBNњ4D𵡤��ɘ�f�u	�B�w��6�`�-��G�gnКz���l�w��{ӕR6�c�`rM}{�'��>mS@���h/,�4��]�/!;\��m�x����ch�i�J��֍՗,����7�?ڛQ{�s��V�@�Z�З�I�Wpd\p�I��߂��χ��z�C�Ŏ�%�����"�fC�|��
�'��z��߅��y��ҭ�e��\}�B�"%�T.р7q�v~�_%Njm�--���4�B�.ã���8䓞0���8�U�ȾT��-�5���7�G�8�hb3�$*7���h�kᅣ�Oş�p�3Pe�h!�c���	�@�����ll�I$��PF!�dnl~5迳N�o�'��6�B^F�b���^�I�Ч5Ak���`�J���1F�Xn�#���K���L{W��:��<1���̶�"�F��B�Cr��}��x�,�x*�TǕ
�?.Ap��Ǹ� >,��I{��J��[4/
�^fX�;���}}�x������p�����E�����:�g�k:kgc<�~��~Ei
YIe�@���g��4�%��&��ƹ�����O�F�S\����}�$
��rbh�I?.���֤����?g�/D�WR�L��Ãc�q#�	���UJ�ҥi�slf1�mr�?�ߋ^<���^Iqcm�i�Ho�!x�C��E�O��Ƭ�Q�I#�t_ۇ᷈/mE�u���&n.o��]6R�B\:�ж���$�x��~�ө�^���‘��m����}<T�V�S��R������n�&����[mb쭤m3�
���'�����~�j�4s�M���?B���=��6�w��"�v��w�Ҥt`p{㵯ڣ��/�k)Z���^��;|��~�����O○���]/Z�a�.8�aae�>�!���p
�'��rq_Q�"�Կf��\������
������(T�����H!��N��9مZu�����Kj�5�����G����S}Z�;���W2���֌���p��>+�7�.
�վ+x��]�w���C1"�����8�	~�v�|^��Ė�T�5��Ē�Y�[^�¨����X�q���E���y6�v���$sċ���5N6��G4��<:��>+�,4�i�
�6%�)�z�c�3�����n.Z�շ��ŶB}W���7>4�tɏ�u��3�
�[����?ş��|4�f���Ю��'5�5E���MS��3M��ku�=v���9Cl~W���$��u��D����o(�%�Y��60��c��@OJ�;�ڛ�z����1�>(�BA��Oo'#�y��A��s�YK�[K%��ƙ�izy�)��n��P0k�s���j>ƞ�zt4��m���/�6�}_�N���u[	��<��TBřwm�f�ڣ
�[_ެ��2^���)-'NW�>p�=��>j?�A}�k���kY�Y��ѕ<$+�v��*8-\�į�%��w��#8U�������D���<���W�f0�Z�t�c�U8�6j���lzsN��zU���6�E79
����UPX�n���!�K�-.���@--.H����es��^��=k��W�:�����g�,]����'�=�n2	̔��hGz��>k?�s����_��l�p�eKdY��.��j΍9�*q���҄W�vz?�_��~����-g�;8��b���O��M�.���{
�,�nl4?
[������W!/|�����F��bX���-�i_>���7q˨_�MJ��������z�Ǟ�i�Z�� �U�@�H�ҽ����~��?���>�I�Yh�/�ch����-���1#����O>-:���&������x�4���`m���r8�����K�S�̒"�����=8+˔4�;,�+2�լ�-̓B�����M�s�;�V�z_�延��J�x�*��kmnH,�u$��X�,P �(��I����,9g'�c�R+�<I�t�>M^��c1��+��TQ�ҷwS�W���>�R�en���Õnq�P٣־!hp��~�T����\[Z�ͥ����[w19$W�?��HU�b�����u�^�2�?�{��]��-�/�5��	�8l!X �G8�ֽ����R����~�~5����j�u*)5葤kӧ��;]���M3�֑�o��ٙ^O���<��j����g2�;�v1^���[���e�K���&���Y���
���x�-� h[˂5U�$�g��ھ��
j��ו����4�c��*�4�{Mf���Kd��b�ewd =����ҵ����.�bk�D��u�#��\>�\��f�<1h�	LZM�wv�B��-�����?�i]�6��~^���&��6�ެ4���[Y�f�l��BH��VF��F�
�k�'�����	�ݤ`T�8pF�>�SY����F4��-/P��5�\)�u;�6-��l񞽫��$z��#]���ċ�B�k{���0����w������ުRZ�6���1�D|��?X�Iu����z��7M�b���x�@�Zx��<�j�;]�Ĩ$�i������~	|��M�),|M���=�R�0nf�c�����[�D�m�	.fPm���A��=3_���J���I5�l�~����U}�Z>��^i:�����[���p��Ű��W�ݜ�W�|4�-5B��v�Z��f7���q���eZ|s�
��}j���P���.Ζ����1�{N��O�l��մ�$񉤞���p��O^��e���y붏��E(E�ֳ8+��77Z�I42�2��UU�/O™��B|��<��r�^d]۽B�q�������Ki}�%�b�����<�5�>!�#/��#�_]joa�[(����r�����O	R1��Q�:t�m�o���Z���j,�C�H C��1��A�׮�+��};�����"��cY���k�Ҽ)�O�������[ϧk$��B�L<1���J_��B�IΟgs��yQ�L�ጳ�=M\#QG��=��P�O���|Aq��Ѵ�j^k5�%d�i����৊�'�M��zkMJT[M>1[v�y��Mw�[_������,
�"˿�8�x��!�wV����J�R�Y�+�B�s���>s��{.�Z��҄y��_k�G�Juy�r��?
5}wS�k�"��0f�X2�K�L���c����[�]R��7R�m�G��"�;�yR<�����'ǿ
�������[��<���W���A��
�(�ai-Us��['�$��y�8���R�t��4qf�u�J��}�߄��3�~(��Ci-��/5n�	2�Œ��zGß|q��]/�����2�l�%{�;���C�|-�'�K
�whN���@��x~/|M����]��{�O]��O%����QҾ�y���jӤ���Z�;�u�|�ȨBv��z#�!��u�9�=-���>d�l˜���[�u���~���Z��ҙgI�Hp�F�i'��S�g��+sa��*:��CzJ��fP:69$�w��-��>+������G�8�q;��5�L=ZX�:NZ��;��
�����|�Q���/3%�G{v�Y�d��m=���R蚭��7r�wuP�
�-���8�־jӿbK�x�I��1ӧ�.=���Gӷ�{�߃4��]�ZY�{a{<�e��Y��0s�Z��V����ײG���~�ܣt����>:|<�����oof�u�`'�C��g�Z��|C��o�í9Ү,�A2��.C�W�|C�����u��x�KӄVڶ��.Qz4�=GN1��H,4����iv��S4��$d�=���*��N�ͥ}w=�4_�_>�=�L� �C�^�d�dB;���
��=�@��/��I��"寴��8�6Eݷ?�`J�ھ���Zh�FB��!�H\�����ZW�/�P�_���ݿ��8iK��=��{W�$�F�V����|U�X�����g�f��̋G�b����Ex�c�>o�z����]��I[Kx�
�#�6:mS��+�
#���s�jҾY۬o�j�Z�F�,�,����ǯ�q���l�ҿ�%-���?�\(V��z���գ�μݥt�3��ỤN�͟�_���������	�Y�W�[�'�}=v��
���U�>0�7QE|-��̖�C8=K( �<f����=GY�#oxa�[�W[C���Ơd(���/z��xc���O�[}:7UO!n6,�yU���rz���|�RRs���ҧJ���}�#��V�
�V{�g�>�%�5gi����w�q��k��Wz�̾D@�P�B	���<q��
��q�I�n~Ȅ��K�8�O$�j�5�B�.--�<q�{<U��$��p+���97'�ݿ�sĜ�4����O�|�84�}kVDx��6ۂ���I�4M�w��L�F��\>h�t�I�*pf1����_�|5�G�Ŭ�֚�N�
69‰�N�wc��"i�]��$W�4Q���r�@���(�N���R�U^�����3�x(7x��<���3x���=������&���T;X� /"��|�>%�qk~���SΞT���7ʨY��j����M#��z���ltt���l�Ͻm"q�fy����`�+�d�
xs�	�h巸�{�=ʴڌ��� b3��s�̫�=i���
q�cfT�|�	�����~k�y���6�cb��cj�����>�֧��v}n6�\����!����# ���;��������t�2�
�=R =�]���Q�x2�-3O�Պ�-�fb��H�Q��F|�}�׺�er��y��_����A��"M[Sp�r ہ��}��5�?��Z�Y��ޠ/��HČ@�…�V׀hF���֞&��,�=9$��l(�������p�+[M��他=��*�F>l{��dS��x��IRi���(��Ӵ�ۼ)22�*?�~F|mО�+	��R��&*���<�����:�+�i�2������l�t�#�ڿ*>2xSU���s��
-���Mԋ�ԓ��rOJ�>0��YɑM���yO��=���X���uu-:KI!��-Y�0��u��:��$��|/�6�.�}���f���Jg���� s�Q:�w޽���K�x�Z-�}>0�̊�nd��'>�>��n��¾�/V��Kh�8�|��!�q��zW�|��=燓M��},�ӚQ��~x|h����6�����}���7R��	�1ۊ�S�_��NKh-�x��p��#!�=�k���/G�h��m�f�l���
Qp1��32��k��K� �>�庆��˥S+�N�@�N+��:��zK���e,�
/z\�r�����ve�vg!���㚒���4�\�z�����J�~u���_�V���]r��������y�D,�ʨ�X�s�|�����߃:�ާe��֑ۼ����v��\n'���Ḷ�J|��uK����*um���F���p����@/����i��$���9�OسE��w5�ׇ��6�e{+D�h]��Y�q���~��'���x[Mә$�դ��Y",�8�%�q��
zt��/��-o��Y%I����|�>3x�U�{��[ ����uc��k�+��\�jz��l��i�}�{���
�	���kE�7��z}�R/��#��I�#�]��/���s����L��R�Km2k��`��<�W�S����{��,�[Z�7�|W��������i��Yi�d��c�f��n�.�;;d��W�Mg6���o��4�x��B�����@9'$�]�<!��f�����2�P�:����#�M��=:��	t�3<�\���J�`��ӥp�3*՚V����u�4��X�d�#�F�4H"�|�Xpv�`�A����{P���5"��,��-��l�`rkcĞ�]�1��{�G�t�in.Tn�*���¨�X�u�&�X��$[��.^<�	L���l������Ge
�E4���t�9�	�X-��g���@u$`w5�Y~Ŀ>�(�?�'���'�e�=N8?�nJ���|�����K��e���y���d2��ц�C�g8��x��W|I�rv�k��e���4܌�ܜ�kܡ����-;���R��Q��v;�����x.e����nX��F�I'>��~����ⲱ�A� c��-Չ����L3�Iv�ZilK�Ic������rQ!B�–�x�Oש�W�k��svZ
����;�,s��@�~f�o˥ƃQ��ZAd�=����5ͣ�*[�q�J�v�ns��{Ѡx�^�-�:4:i���=��oE��36Jl��}�s��oKR��)�̪W� �>��~�_��d��5��fC��k���m�G;2�1U^�5��٧ƞ!�I��LJ�>�	�5ID>w���s`+��Mc��m��Ṥ<�CE���i_s��ա��j�k�ZG!���pg�g�`���[�@�}�/XjJ�>C�:�s��'��Y�3���m%����V�����G�+�,[�dā�=�e�(��]�O)ћU�B����J�=�^����l�>�E=�M|/��$��=LJ���}�tӜxsU�ϾT�q�p|�M�q!��=�Q�_ܺ�2�A���}��~=�Au���<�m�!��W����R_*{�a������
�?�z�Xr�4�~G�쒻[�G�-@Oᛛ�z]�M��I�2l��q�w����N�|��F����ٛw�*��=8�ƚ�|E�oR��ia��8�N
��S��e%d'���Rk�_HkχWz��ʒB�?��ߠ�xx��[n�G�хQmkt��8��sp��u�+�1�$L�X��ku�Y��7�-Dӭ�ҥ���MBo*(�.�X�i��Ҳ?e�
C�x'����%���ô�������?to��j�x�A��-e[�-�r�a�_� ���u�?LpR�ս�dzR�|�=6=s����Jח�5��,��g����Ey����CL���p_����)��W�����?ݏ�A���x�$}Mo�|ϛ��#���i�?�5~�B������{��F�����+�5����_�QEMo���ƎS��>����l?�|�a#E�d{K�k�a/�T�#�����_���5����K���(�ο�?P��ο�����j�e�����
���(�(��M��Ϫ�e�.?���^���%z����F�+��>�,_��<�?�0��}
��I-�W.��x���;�E�{��/^S�g�o�~�E��?�h�]L��O�^?�Y���k�,/�����0�E��ُ��>?�h��'Kg�\���+���?�|;���[�B����:��_E��?	��⟯�p��������?�[�ׇ��h���0��G�5���l�g� ���?�y����J����
(���W�x�����#_���?��4���E���p���)�%�X��E����;?�-��эE�?�|Ϊ��z���M���ҟ�O�-���	��5W��0p2��|�KG�����t��W�?��?U�Ш�����by9��ϩ�o��tO��+���W����E��c����^���s�Ǐ�?뽟�������梊��{"��1�]�����"b}Ɗ+������>�������.��SW�_������w���������G�d�‘���*�����5��O�랩Eσ�c�(������Ȥ?��:��J��n��z(�{�X�]O���/��o�^r5�K���?���ёQEv?��z���"ݏ�*Ɵ�!s�]��BQ]O�"k
�K���M��?�R��V�+i���٤�����۱�J����o��_�K���]���/���(�2GT�"п�9/�赯.���!x�ߗ�F=W���������������z'ѿ�[���%�K�t�TQ_yWt|�~�����'��:���'���Y�w�(��1�U?�}��������ȁ�v�+�|G���?��W�Cx���_��O��|����ёװx/�@��_���+Ǝ��CSg�4��ȕ�����5�^������J(�_�g�=�����uploaded_files/birthday-catering-servicecs.jpeg0000644000352000025440000032445314374642626022466 0ustar  thediannthediann���JFIF``��C		



	
��C���9"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�����������������������������������������������������������������������?�B�6���u���u�*��<E.��݇vUv�?z�t[��D��vًv�?ݮ���,> �'Үx�����yҦ�u}��~��
o�=DŽa�~d����
A���⵮��nh~G�����U�]}�H<��GeD�]��> ��1k�3\��mL���|��r�`������8����i�Zh�o�O��tkMB����r�O�k���}�xŸt��
�<+�;Uv�|*����i"*�P}���f��?f����K{����Уn���W�O����9����,?�C����#���큧�S6��L�\��H�r�W�~���/>ߪ\�IϽ��S?e/�'N��ğn��㿗�f'w��+xF�M�D0�jʻx��cg)����G�4yt��
��Z���lⷷQ&�_�wn�6��3�%��Mj��]��w3��8���Β�I��v�o����6i��[m�&���8��i�
wL��N�U5����oپ���v��0M�����Y�o�g�x�K�5|�f����������.����v��f����+�<Y�6�|Ŋ�h«6v�5��˱�9sGS�&�v_q�����?�vW)s3ni�����0|T�p%�e�XW�Ɗ����\߈�]s��n[h`��~V��/��X�f��b[��e��T۵kũ��U��t�J�������x����T�K�c�9�}�"�7�~��Z���.��|Oup#��y_���ݵ��W�|3��4=��{h|���;Y��#Z��a�]�ݗ1��+���xJ<���9�|kϒ��G5��W��tp�6v�i͝�7����PMj�	V/�v��]��_$���^��5�SHQ[��j�<�L^�_97̩��f��殤�㷞��q9�
6�*�����x���|��K^�V���gdr�ͱU=�-|�y�ST�e��پ�n�ksA��q�M�Ws#�<�9�GX��
��y�f��M'[����:k�qH���5'���f�·�ڗ1*M�rW�.��o��<���X��Y�\�ݷ�^��=kN�Ah�Q��ܿ/��s�x������S��aiWt��s����<�ߴB#R�n �>h����V����~�q�P��0[��D�v��q��6��4�ɹ�U�F֮k����{j���v�Kp�c��j�z��
�}f�����sPt�f�%�_/S��L�u�1\M�E�p[�Z�����j̣w��U�ï� ��q�ꊿ/�ɷ����>�g��$q$�S[6ߘI��V�Lڥz*�wG�řv5,<������t�h��o�ǫyl~��h�4+.ݧ��S�o���n�����fx�\��������yv���~o�z��eͳl�"֯�t�:>��]Թ��iR*6���j�k�ve��Z��[+wo�;\7��!�|j��L�����;?���������*u�����=�i�Y������w歋U�h��n+�����nXv5vԗ��s����[�x�|�h�#6�;�o��]7�l��;�Y��Ww;��?g]�H���ͼ����#׾�n�6�T�\Xj��SgMHE^+�"׼}�Y\Km�m��X�8��!�η�^��i��:��]w�ݼ�՟��/��R{nVc����r���KmO7�c�]��&W��j���P�~���Z����ۯ�
���E���Zk��'�5�H�C���B��/%����%�k뻹��$��+��������|F��}#O��w��Dݷ���U�?d8��~e���f3����O����+���ѵ/�2�oٿ��W�C.�&��{����^ғ�v�C�+�^�y����-�ϣ�?�yn��û�W_�z�
��;��;_�g���q|R��<C`�h��͚(�no5~e��~�xv].o&�!���:H�����_�:��5owD�ܟ�A�z�p�x|����ަ���v�Vmշ�KQ
�����f��n�=����Լnz�����fk�۷����̿v�/�,���v�ď��۲��!_�ƥ9�O#ּ"mU��[�W=u��n��o�k�u�>K��/�U�j�ѳ|���k�2�9cζ9=?G�K�$n���?���e�)�������1���y����\��m�����
�h��~Z�mT��q����W�xWWe����z>��ľ�S2w��zK��.5M�ul-C�x�<=�4��6�^[�_�o� ���?�W��О8m/G�U�~Z�����w�%�cϿiO��׫n�3
X��f�\c�O���-{����+D��o�w�U�o����5���׫�G��Q�|�����w:��~�ͻ�<E���c�m�ԙ���K��Eg��]��}|��]f�{���/ڡU�$
��_9\/�[5����0ߟ��ׅ�<ɸ�*��#��G�c%y�KF����_t���,W�2�k���V�w/��Ӿڅ֡���\ٵkR�)xxݤ}��;��c	۷���L�f����/��M�k��O��۞y���*���N������X�<�6��j�<+�\}�btZ��x�\m������9.��jߚ�"1��N�b{�%Y��k��'�V��	��^��a](��/�Y^.Tkfn�Z��/|�Q�O3�^k2a����O���U�⋡c��ϻPmI��]S��:����|�l��r�ܟ⮦��7Er���V�����^M�G�1ۻ�2E�?�֭O�^:o�P�ҿxO���/��_�Q�eF7z���⨵VS��}N��g�ks��e�¾7��ĭK�'���H�۾G�k���?j���v������U�h̫����������)��ݞ��3�v��q.qS
S�
漏��r:X�*u��mu>����K�kKIe_��m�i�;Mc'�a�U����������<I4�Â��g�_���,����?��jן��UN^\L,��v�F����mi�`eʹy�z׷���.�慿�__|P�׭C�RB�*�U%��w�.�nf�o���>0��3K���&��kw>�?�����V��y~�~u]~�V�2I���m�o��������/�^�:�֏4�|>#-�R�<<��?A[�.�x��2�;k7R�@�o�6��_j_�嶒��ջ]���v��F�ֽ����_󶶫���IE�xj���
Q�^���w�p�n��x�Z��
J�Y%������a~�j�G��F?��J�w-Ź����U�[�:���#�ب�)��Y�x��Rn��rטx���瘉s�d��6���4ӻC�}ի�{O��,'���f�����4�%��yJS~�wZ�\�4�L���5�h��͔�V܋ڢ���,$۵���ߎs�ï��\X~�i˚��<z�9W��P��?��öj�!O��j��Q����v��I���~b����E�|z�t14�^�J��]�S�� �y��T���Ǫ�tM-q���[��t�Yv4u��}�c͡�G�|�؋����+{����.���8��J����6���چ�Z��7���y�#g�Z���\.�m�]zm�j�:�-^�<��s�Z���"�>�U�y1�}�+��垛
��Tu�ej��0�V\*�z��_[�x���:�ݷ�N?L��7�z�
�n�.�SڅY�?v��a��~��U��z�Щ��=�������#F��m������u��ۗ������K��/��f�z�i)*�G�~��]ݟ�|����m�v?�]��z�v����m^k���4�5�KM�r��3���/὘�4w|�mcO����[#OV�xX0j�ߎ��_����3�5�:��گ�f�V�����������H�sZT��Ȍ}�x�����O�l���WY�H�ϝ�v�+���lb_ż��5����i��P�S�.֬���F�˔���7K��?�]ޗ7�-Ճ|��5q^G�X����/x�Ϋ�kM��'9�>��|�?�-.��#����W�vZ_��1 ��Ao��_�V����n�$Ed������*�p�:��U�+۫�����kb�k*�[�O�h�>���4�h�۰e�����i�_F󪩍�.v�M'B��9��y������Y���%�2�Q+7��Ъ$��grr�5<u�� ��S�B̬�����j�'o�?h+W�Mӭa��1D�b�������K��-ɾ��6���^���I��|+���f�w��m�[���gR�w���E�
i��~F|R��C��CY��+yaݵ
B���/��^Uo�����kA4��2�{��<j���~�k.]C�qz��4��W�}ݎ˻����ǎ��|7���"��ۚ�o�z�N��wG9�+_�S��7��_�m���u}�zE��{�gVX�̿{���Y�l���ݯ��u�
��_u+�����'�����Uee����O�#�
�_��>9��uI��\��%��h��ލ���VO
v��=,.i:�Қ�[��ݕ��Vv��C&��].x۝۪V����v�����;#[ȷot��O���IcP>a�5���~f�j���SծZܫC��ߗ���=s�e�^���a��Uf�>S^M�ں�9��k�|*��\�
|�mʠv�y�Ί�R�ի�i���/eV������ח>�-|�Kx�$�����͑s{E�5��g��3���������o�~j����a�+��v"m{�f}���kk���|����:����<~)P[&y��%���Ti�l��s�m���]#C��]�u��D���K"�[3V\?�ƭD�o��Z=O4���5�RFv߹����2Kی��W�:|�\�K��H����i��>^y\��}��w|��5��k�J7��3-y&�q��A"O���U������#Ĭ���,(��N�<}��}W��ɵ��-vV��k3�z/�~��/��U���d�����k3�a+D�ixo��W�o�g�fF���
YZ�d�o�sZ^e���?���{�4OK�u��T�k7���w
V��Yl��o��<Q Kr����Y� <�^cy�yg�?����F��&���ݹ�Y����ށ
��y�
ܮ���Kx��j�|�����7��?xW����<;p���eh��_��r�jZ�C}�AVuK�y�M���z�4�r�K�1�u�[��-_��=7y~��r�O��>g���'��lgR�8�b��~�xg�>�z�Guk�R6��2ת��V����vih!����[��C�.������2���fKW�BJ�O�n�S�U,]F�}�S�'±�`�.�ۘU�z��M���٬�{(�&���Q�����C��US�_��>	��[k�Cz�˙[�)�8���D/�=ʹ��T�Z���/M�Ö��A	�Ey���6rhr5����+?��<�oM�^\��ݾR[�W����Zf��S5��&��w�W�W��E��.]�+:�p�\��z����f��,��CG7ȁw|���R�o�(���Xڧ�f��_�����w��
�y&�i77�k������P�X���nV���e4p�匒��K�]z���z��L��K[��ʏ�l�|���ٵَ�6��%~V�u�������x>he�4fM�&���W��8��s$B1�ya~�i��´��w��0iF���7�|auj�����Ilo2Een�Fj�-u��=]!��3�Q�m�v�+A���1���W-����eF��ϲ��n"�p��E;V��4�o���~���QEqu���_�z�M�w+*�7�o�^��_�:J�*n�n�v�c
�X�B�$}^"N�7)#���mc�k����ǚ�5w2xf�z|sOq��wv�~j����޼l-a�;_n�>U����E��^�h��/<��ϵc�k����5��W��uw���fY�'���}K��bѮ4�,�.a%v��[���U�����O\I
��i�j�����٦�P�u	��'�������U�^ݬX�?ղ�|�w����up�N����L�U1.�_��⵵�����񌍵�#n��5o�6w��~\�R>��[�k�φ�Wڿu��7����e]�w�^�eh�̨��ϥ�$~�����Is�cݍ����T-n�Z��vUg��k̿i�S]h�[����_�^���Z�#�6�2F��zQ��L�Ӌ��}�c�>�t�0\B�ş᮫�+����_�kϟ�nѺ�U�w���K���R�.��j�$߄f��ѪK�6���մy��na����G뭍�
&3���l��k�|�6�o�xCv�g���g?5v
:��ͱs�֛��Yfګ��H�Un^��:�D���٭�RK�63/���8�W\��_�����5�¿>���-�ʐ��ՅJ���I�3�B�g�M]�B�7	c�C#��Y�W�ax��P�f���{:��kE���ꑣ��.�/�\�	���&��nUV�j� �9GS�8
���ն����f8f8Hٕ��שi��:��C�wz����o�N�c��l��\�z���M7G����ާ��)�Imb+S�$�-їk�k�.����]��I�+U�ª�g_�ֶ�;X�a؟��1��#��E�ʎ;���a�S���v�t���#�Z��?mz�w����~�WB����&�3�(s�
�N��V��J����j�>�;kb��vw�j�E�F��,����}B�H4ؒ�k.пuU����A	��`�Uv����K�6�����[�;�s{���&��
��Ȼ�}�Pn�?�F٬������i�΍�U�I�gv��N�_1�8��(�7v��-RE]���v��4�溙ը��6�~W��U�-K^];l�e�w��]���1���5�,ۼ�˻��ʿ��yg���O�M27�d�*���ꊻ���յhlt�2��Uw5R哿m�������o�9�^���u�D�|��wͶ�!���Z��
u�_���k���>���_�����7�!��XὍ�|������7�a���~<j�_jWP][����ʪ��o�����Xi}Y�:�����5���7���#���h#ʨ]Օ�j�/�����/��L���K�_���bo������#?���k�$��m����X:�:��㌇6���j���j��m��迆����<m�g�+*����c��
����o�6��1�v%$�?��k8��v��_ݮ��z��`W���
|Un���8��~Rl�s7�׈~�_�?�?d
�lk��ϣ�?���ݛ�fݳr��V�_=����pv���˳,3�৯���<y��Ȋ�[m|q���g��԰��z���⧗�K�
��[�%�5B��n�C�2���f�s�T�$O{����.�'���Fk\}��_6~�0����W��g�Xߥx��K�J�c��c��t��N������%"�����(�4y�v��q_|c���H��W�´e��#�6��G|��iv��]6/�ߪ{�o&��{�.6����ˡ�Ж����� �������g.Sm|��I�w���_����>Ț~��o�_#��h#�����=�K�E�U��\���G)�V4�c�P��\��My�ޫ���Ɵ�{��ݹ�x��jk��]W�[v��w�מ.�����Wrש�/�Z����]��$Lc+˘�Hcۧ����z��i�|wW������o�n�󏈋���ڼ��w����o?�Re�̱�v��z}�?����z�T49�ml~�j�0��l���ə�A�[w�]ςn�~'X[�)���ߺ��|�I|GҴ��/o�v鬍��ߗ��5��D�.�5��kh5-%���2|�����_���A�E;���f�=l6�s��|��n�>��h�:$�ַN�+���/���S/xSR��-��6U�v�eZ�/�
M�\x���2�wfR~�|�u�0�k�Y���|�^�v���������z�[�����/�ͭ�Kx���p������_��f�> ��������3f�ݵ�����)���~��^��o��?�l����|̿ĵ�W8�i9Vwӡ�S���}�&��T[|F��%��C^ݒW�n��<e��xAI�3"��>o�����a��1�v�\R6�m��x���>��
�5�	��_���!������}��e6�G����}�o�E�~�*?��ko�쪾�^Km!��vw|��t���4�a�����������X�,�Ѧ�$����۷j����$r�n֋��s����TI-��$|Z�l�4�Z1,#����	|3��r���i$͹p�z�x��Q����[����^ffTO��5}�~�2�]�]E�C���e�
�_J�9�M��<�ت�q�P�l�o������-b ��L/�����?�e�����l72��W�_�f]O��l�Y~^v�۫���ͦ�"Ij�~j��')��R)�����>w�{��T�b��Ef��.�O~���}��EHW�m�y��q�Fo�>�b�*��W��?���H��,z���i��:6���ݯG2�r\�
�k�燌�u9��~��/�	���OI>��s3��=��?`�����|ȾV�i��_m�4��|@�Ḃ��S2+)FV��O�kQ�V�eo�k�HU�a��|�o�=������4��h�R��.��VkMKO�$��y�~V�{�������r��.+�?���}µ�;���.����e�9��9�$���l�e��v�z�Oc^!��iS�g�^��|M�{�Y�ݿ�Z����W�m����
ڧ�4���Α~o��_#xk�:��E���k��OP�T֓Κʨ?��k��zʲ����U���Z���S�W������]\.����,��~*��ɨ��3.�sW�=��|=���e�Uk�oxgE��|�m�5~�_9�JJ3�W�l׫8&������<��<�����|�O�V���$���^ܸ_3j��v����e�C��1��#.��؇்?g��#Po-��]ʃ����L�J�W�t<<ڍZ0Z]\�C���k6��E;�V�����:��+}�x��`Fz��b�g��$�GWgt��%sS*��!ܵ�zǍ5��t(�{�շ�ߋ�6�R�Y������5.z�r|�Y~Z�a�>��&�=�[r��յ��C�D�+��~�O2�-�o͵�T�G�J�֝iӗ<�������Ꭵ͝���mݾ7ڱ��z��c�:��V��ۑU�������/�"�7���<��@��������fht��-4̍#����%Nӝ$��D�)N�Gv��s���tն�zD��b����^�o-���{yw�I�
��V�*�8���^��*SQ���q�;�����$��X����/w���5�xvO�����5s�ۦ$
��]��9�~�0Ǩxd�K�o����>�i�
m���ĩ���~�ڥ�����c�T~��m3J}-���fU�q:��(���|��;2?�����WU���e�����tu�Q����܎�B��Sat�[[�g��UoP�MJ�O�E�Ǫ���R�瓷-Oanp�0�}����+�hU%�吪���*�ll��e����?��*�eZ�ծ�.�F9m�خ㦱���b�*�[ٕQ��|��-E_��#���g��O���^&��]:�8b���̭���W�Ml�\:��y�q �y��?.>x6�\�wڲGt�J���s*�uk�l~�q4��,���o���Y�Ea�N)��:9�d�>z�׈>�\�q�kU��As�v��*�-��x���a��=Ŀ����.�_�
�ƺ�ka�;v}Rk��T1���H�����G?�f��R���M�]��{Z��~�>�eY~Z�N�IGU�Q�w%fy����o)�S��в�WM9�o����=�|Q����n�?�2��
g|4ּc�\[��G��}��l�ʭ�++�]��-���V�\�k�}o�x�VFm���z�)�};=̱�C��D^<����d��#�U�ۛ5��Ǐ����'�©o�Y�����e������*���^��auox�Jm��m��T�tWV��nj�?/�_����tSyzw�4��l���#/���j���a*J�Gtש��qS�j���\~8x�i5�9w	���?�YY����4��_"��5�_�Po��?m���lH�[C���'���̻ٯ,���k̆4)rG��ƴ��9u>���ae�����
}A�H�o��Q�v���g��|�}�z����П��÷�_��8y��>T}�_Z4�ʿhO�l�D���{Ě�jW�ٮ��Ǐ%���~7ᫌ�lP����FM���4�>sS�ON���t���>J�I-t���6qi���\���5��M�kniU�7BcN0��K�'����*��5���=�Ÿ2{z���M��&��ת��-�u�_�����w��;0�y�Q�޽��
����x���+3}�z�O��̕��o����[�COs��o��){��=(�yƓ���f,?�w�e]��>�|�+T����v���
%�;U/~!=��-�M�؝�vߗ���i�f-�F�*�mh��*����+�M+L��ͷ��Ν撩%t���myx�Ww͹���?����?�����v�����EY4삚��>���k�i�׭��7ȫ��'��?+}֯��
Ȗ?�aC��>���E��W��g>_x��/�m6����E�5����u�ڳoU�Yٶ��&ݿ�^��9�M�x_���Ӓ��m����G�c'v�����3��5XC�S�m{�-����ݞ#�o|/��5]z�N�e�/�7o_�m����j�2�d�s�Yam���՗�nZ�_�6��k1��ܼ>n�V�����	��/��2}^��K�f���j��/�|���\1Rsu��,�ݴ���w��F�(U�t��
��ƥ��	f�-Ԑ���=�ם��gݻ�v��jO�'�ټ���Z�j�u���
'�1i�w�����~��j����q�,��q؊�]hQ�W[�7����.�U��+V��o�+�o:R�����ai���5�>nv��~j�χ�|1�x>%6֯��gU޿�kw�v�y��J1����q��p�O���]ٓ���o�-7T��>t�w��Z��>���;[ܴ��쪒|���4��:���C�_��_a���������s��㖯�6��gR񧈙�&�8�	�V����f�o�Qo*�,��������R�f��;��ʪ�j�f�z���]M�;�iu�	�&f]��]�����L2|N*��OGm���9�#��{X���nw����ýY��G�W�B�宾?�(F���gU�oܓ�j��\ֿ�.���v�Ͱ}֮CC�k}�MS��&�w.\}�c2�S�b��|߇08��Q����O�����?���tл�2ov��U�׉~1]x����O�Z=���ޯl�����n�JИn��1���K�|֦��;�/�k��Y��f����a1��v��ɳn��Ɋ��M.�ߙ�<g�kᭇڴ��X�B���޿���������>7��DzW��d��7��T�#�
�������Vعeo3��&��{\��|Tf��8g�'�v��ޯ���Е)�PW��;�?���wMa�<�z�~X�X�֬R�[��r���o�
|s��#�N�J��̾g��5�����:�Wr�+����W���?�^{&�6�1�`]��_7��ĺ*�e~G��}=l����e5�]�ι�R�R�O�n�^��7�W�~k�O�1���/˷���^��qɭx����}��6�k�-g�	ɣ���P�Sk�mފ��^�gƘ<3Q�s���^�\ƒujK��i}_��l)�E����{�&�ִ~*�������
ۗcv�x+�	��$5�����}k�~ǚO�4�Kx�|�y��u��\�I����_������C$�.��c|��g�Y��E�6�W�	ִ-^5�$���+Wϟ�fY.���9�%�r���>4���߃�t�Z�y�+Y^�l偞(n>��r��+�wnܿ�W�
��(żJi��������.�S��~z�N���+�	�?�
���m"�c��U�ࡆ����U���Y�x�9�M�l*��S+�ܮ����~�W�>2�|x��kV��Z�	����5���Y�_�ʿ7���U��.��f��y饞���~k��B��)�/������u��鍿3W�]x�F���}RC��7�2����.6��V�m������׈~�r�%��/��ԗ|������;~�q�b�3J�/��x�3��U��������f���Xe�a޿/.���C�ž�42[J�E�vQ�Wஏ�;Ŀ/ė����3/Ȓ�o��}�Z�?���*>�����[�.�Ί��7�&�r�5����H�n��n_R�g9I/�s�O��/5��9v��Փ��U4��K�lڵ�w�+[��f���5{o�uf�4x���]����0�(a��;iֿ���o�>��ƴh�;����O�M_A�!���f�v��w*��^���jPͱ|����X�(����<+��V�vQ��9��V�7x�ު���K$;$Ee�R�B2)�lݻ��W'�x��I���ۛ��oޮ��>"�C�>[no���e�W��������c	J�u<#�����|M�ܬ-,7�����j�?f_x��ͷ٤��k�ߖO��O�Cð�?��U��Y���_�m?�K�Ε�	&��eõ�w�^j�^-9;?�����(��[K_%F~�Y���i?-���[e��C�He�n�����W=�j�S��w����o2����z�;�q�&�152*:�����Bw���v��ҋ-����x�l�@ʿ�����j�;�.�v���Z��Ae>\k�y��L�M�B>�-�-��E�W�fR�@��������K�aVg�m���VN�l���p�+cWa��֮���1��ܺny���Q��˔���c��-�c��>V�����̲�{�歖�mWkyj��Y��1h�w��զ��n�`մ�a�E۱��/��w�ׇf�WG�ܬ�� C�K��Z��{����ʟh��ͻq��י�`��^xw���j����*��]�����Nz�ﭏ>����ۯ�L߹�4M6,��x�#2����c����|l�~�`�eԴ��|��D̻ѿ�e��Y�_���j������g�Y���o�=^��Kx�
�Em�������}�feU�Й��?1F1P�>R��?��?���g�WR�ћH�5�[��4�h�����������]~1~�z�Ρ�;�_h����j�j
��ۻk����_�DŽ�Z��6I�bZ�%�Wˇ	"~o���N��ޜ�8;yt?��@<O�GP�H�>��xR��h/�Z'�����ך|a�ܯ�{|�/ޯ�����~�^�Ѽ[��/R��6
�D7��;Y�+/���a��?�Hߊ_���=�xK�6�-��t�N�J��&���˹~�U��)���mY�=��Ե9/�c��#{��.�]�|/�[uw3|�v����-�
�?> &�^����Oٯ��b��E���;���+|Et�wk7-��^,�<��S��?
���٫��7�_~�i�!⨣V��nW��Z��T�+�[�_�D���
e�G�������w�Ȳ1�wmq�	�X���]�|f����\�W�g�Kdu?
�=��z��OӑlF��J��Kk"ש���K?����*���S�bcx�OU�||���;�����U��V[��.~�y��<��Q���Zr�H��w�^۫}��U/i!�!V����X�M��]�w�����մ��&8m޵оS÷�a�v�֯���9�[���
m�<��T���O5�?�ځG�?f���7P�M�}��s�ꬿ�m�X_�|6?4s��əv�ߗr��U�ڵ���6�Zњ���]���Vto�w+|���;��Y=�ӵ�K����o�c�����_ył�y5lD��׮�������~��Ax��D��-:��lNw�=^w�W��h�� V���5��:�<[�V�.|���(�7,��
|��C��~	Z����4���mW�	�����Ҩ��o���o���0�jp��($��M�d޽��j� �̳_�8e��@�����犵�w�C�"2���Ww��v�C��B�a����+/�;���5��㵧�lߖyW��x�:��m���1��4�F���ȉ|��p�;2"�_�>"���=��yx~nSk|���~�w-���̿.w2׎|W���9a��љv�5����W5���ۈ�L����%����*���5mI���ʮ�_/j��f�|��#����4��e��"��f�k���?����H.���#F������N�q�f�U֣���ή�*nm��[/�
<񝼏�ʭJ8�Q�9��}�ѯ
�$�=X��^"�$i.]���Xտ����I��?�^�)/�[�ڛ��+_F|;��hR�0��Wy�Z�[�l�|�D��wuva��

Nm�������nR��>R�G��L�Wx��2�gI�m�kmrq��w>��kS̊?����w��z�ͽ��ԣ�,�]�\��������
:�o�
�]۫���]9:�������g*.z.�����imG����)#�k�6����r���V�f�v�ڻ��卿������Q��wm�
���ȿ3�ͷm|ɭ��~%�V��J���k���2]Fҫ���g��_�e�˒Q�+�s�&ϳV!�f�i�Z+]��a�f�Wn��\���Ou-���/_��7����?f�J�^�v����ip�7���m��Z�۵W���-�J�\!�5�O�k+�W�MB�ѣ�Ul�̻�k������J5`�'��^�j�{�������\�lu+�7GO��-��B�Į�����^��G��wee{��.��@�O��۳3mW�yU[w�^=�3���W�-r�@񎭮K���֛w�h5E��Ķ��mUf�?v�G��m�$�~-օ���Ck{�#Eqpг"Ef�]��Y�E_���ƞ#8Qm-oo�q��3Ƹ���9I��N����ԯ.���H�Ɠz�jף�[[��7>U�i�v�����
��9�Գ�t�Rt��u��\ý��?��|ʿv��w�@Y�'�6�>�g���XO*�:�_�ɷ�o���L?�5�x�gO��w�w���_:N�Sr]Uҡ���/��Ւ�t���[|����Wwce�x����-ݚ%��IU�1�w��������'^o6�����z��ff������e_���j���6���xxhrx�ƚ��Kȑ���ݙvF�ͻr�7�k�<�Y�˨�����~�Z�F3�qU+�ӋI�OO����š}����F/�������u�W>*�,!��u`�������_3m[�]�Ҫ���/ͷ�-y���ko���l�迶|)�^�Ŭk�k��qY��(��bM�6����m�=�?j?h�&�-�Zm'R�T�h]⼺]�2ۧ�W_�6߽^�{�Y����F��u���w�.g���䮛M�{v�����c�:�W^!�GBMF��sCuc�j�m�ꖫ�|gk}�o�7̭K�W���?.����j�ڲZ�a��Ϩˠ۳��ol��ZVڪ���6�e� ������<=�i�e��,充Q�:��>뇚Wݳ��_/���I��jXx3��z=��&��h�����y+��w�Wk3�ff����yʤ�<EeO���-�M�\���j�jrmm���m�L��~'�p�L�k�����n���T��'ڥ��<C�m��z��|���-�CG���K��Y�n^-̿/�����[�Mi7�?�'�tT�F��y�k+�[i++mi�G����*���ܭ�k�o
��l�.�.�M{��+Ğ
����-JI�[닏�IY�����ϹY~_�Wn���P��O;[['�{��}l}.'3������;��[w����~1�2|m�?��j�f�V�Yk[��v��5����|giq
���_.��
m��B���/�꺖��u��#����cnY�3H�~VUm���W�_
�h[���Xi�V��jȗH�3-��w���v�|N75�SV��^�/���<�a��p�4��ѻ]Z�];���:MSO��R�[��ߕ��׿j�����Z�m-��s;�ʫY��3�Z䎩�C�hη2�*#*���ۛ�~Z��{¾ 񇅦�Դ�Ś�o�y�����)���Sx�I�m-cm=]���<2�W�D��OU��S�<'�2�'��6XjQ�K_H�-�'�9YVLGy�m��M~i������[}#�]���W�.����M�~�~��Bx#�v�3�F�>B�e]�Wn����/��U\zu�]/���xr�p�3�����:ޏ��7ݬ�0�����Y��v�7�z���B�#����~Vm�y�j-'H�����3�X{�����-j�b��r�Gܛ>�S���.�q|֨��;^�������˨j�~�����)�m��/�̃�����Z��؇G�����$�,M���RMZ��4lVV�~�m��k珇Կ	~2jV�bj���leU����[�ܥ��֭	�~��}U�WF�:2�C�)$R��_��O:<��(o���.P�E�V�Hy�J��|���!>#M�h��w�=\~�"Y�'y·�?���x�-K\�a~c@��}ߚ�uKQy���s�ݿ5e}l�|�?a����kdP��Ep���¯�o�Vh�#�}�]ׇ��&8�M�n��~2[}���mݷ�_�Y�W>+ZMGv��J���S��o�Tk(U�E����W��>$���v�p
ӛk�٢O��-KTi�Xm�".�o��h�b���G�E?ʎ���4}|>�ok����̾lk��m�y����]ۗ���\��=�o�Yx�v���v�}uvm�H���e�~Z")=|%���ƾҟΒXt���'�[���3��|7�f�P��In,%���o�>\����*�o=_Qq�[.����剛�ﻺ��uk6�햭�mV��m�Nr�����E����,�M^U����_�E�y����u������omBK _��d���*���5u�V?x�A�ό�i����ueg_��[kV���+j���+M4i�eU���*�_���}���4�����/Y�MW�T<_�S�鬑���Wn��٤�{�{�~�p<5�*4X�t�&����Z�������%p�v��I̜�|�W�^�����մ5�Kk�`�R��)�5�S��7F��kO8i�>'��T���tɽ��VU���Z�4���֥�����$}�4��-^��Q����?�Q�Z�I�M�Qm%��7�2��OFۻ��_�0�^��	��OR�>i:��k7�ՓIm&��"Tf��[v�ګ��W���:1���{��waqQ��j-��|�֝�ߴý+:����j�A���:�ٗ��޲�P|=�<u����>ܤ���ZF��/�=��&|;�+�C�v�w�Up'u]����KΉ.��;�yu��]v��*��_�^\�)�B�������S��OW��U}�
���=�:��/�s^M��Cߛ��6���ߵ/�3�{���V��5�F���3mfF���o��ie�^x�K����B���Mg?�,���V�o����'��54��E)���M���寤���a�D�u}m���LF>�j�I�^��W�xN���čo���m���c<r��hٶ�i�_�[��4V��?z��
aqg'����Z�&�B�v�*�v�u�_�漙uk\wֿ5�Q�spG�aksAI�����o�W2� ���S�]=��j��w?��ן-=ӯ��?�#F6�۶�5�����>ԙ�����ۃT�is\��Kx�g���|��x��l�k�Z�R��T�xwĚ\|
�#��i�
k9GݸľS��w�?ޣ¹�����X�syLG�*��mq>�L�	�'l�h��=DUX�ʭ+�k���MͶ���?�};��>�Df�b�|�o��:�o��u}��W5F�~*�i�s��%b1�zz_O��s�_��'�4��;�s���w�*����Oi��n�E۴����c࿏>�����~r���ykm]���v�G���K�|�d+�PA�m�?�ץS6�)ʖ&��z�]��D�
��d��;���3�?mO�'��7��u�-���O���*�Ǻ��#�x�B�s\oFڵ�?k��Z�΍x�~V�7�^{��ڢ}5��ʾW�-�6կ��\G>��Kk�C��Mĕ�j��_�W��
Կ�[6�g��j����D��,��,�w+������������Z�E��mo��}�����L�,t_�C��r�����a�6�C����T�^��ާ̚��KO�I���n$���77��]/�~jzT�>��w�p��V��oi��h �de.�j��{���Z��ö���'��}ϳ�i�4y9��l�7q�=.�'�Y��b�������#��Xm^��7�����>߲I�^��[����_nԤm7L��y�Zo�kZ8�ګ�9&�����Ц��!
<��y��{��n�"Yn�df�D{���������+�h��t�jkᇓN�R&�~XbM��Y�3mo�V?i�S�����X�?}�^�m^�S�m^;k�kmwvݳs}ߺ��|e�����ٷU�1x�þ,:���Os�y"_�&�egVN��u}�Ђuk]���ޛ�C���r�w��00R[ͯ�];�n�
9��=~�����z��-�̏��ċv�TeV�ʬ����-~V��ߵόh��fOx?������D����;[v%�wʌ����US���_⿏�'�ǧhi��>u6�v��2�37��o��wur�
���|!��WI�w�<M�i��W��m��ֹ�"T{7�ۿo���Q���U,|��Z_��i�?�si�sU'J0I-�ݽ[z�D�>���+_�n�[���~?AcP\2D�]�A���n��&�32������>0�����F�Ww�/�1ZY_�l��X�Tfkx���8�o���{kW���Zg��Em�+����YZQ3��nfm�_�e]�5v??c_|X�M�.�}��7�ן��+@�����˷sG�v����a���L3M��v������
TN0���;��|u��?�m�x�ڤFh���Y�����Ċې3��m���'�u�x��zv�kya�˽Jk�K���۳6b��m�/�꾵�?����fK�X�sg�b��Y�ȸv�w7έ�,���dk_�B�ڃ�u۟-��W��Yj�rά����s��[k�pR�ѥR�=���O=����b#/f���p�w�/�"~�0鶾+��[yt�n�l�[U�U_�w7�[��c�g���?	��oQ��P�����u����{4�ʪ軿�o���S�����_	h�7O�?�uo\Y�baw��]�|߻ض�����
����C�~!�=;�V��?bԮvũB��}�eeUel
˻v��{o���X|�Vn��|���OGm�p��:�[�m�w��T���O�^h�����p�i��4��U�����jLjd��'�-M𥟏<5��/ȖmY��)�de���U����w�]|(�©����~'����	�My�S�o����w�T?�/��a��_��H�O�%��]"�TDI�G��ރr�w�̻~]��k�pu�Q�e9�NW������2k�G�>��=�h���oN_=��>�M�����o��!���XZ��(��u����ޟ+3+��o�YY����N���W�M�|?��j�VW1�<�
������S�>"�����E���8v|���/��\Ϗ<]�;����G��8��Ϩ�k��,�
<F*�%�K�$��]���Y+[Gs��&�I��X]�g/��g�����'�'���ڗ�����U�օ�A��4_�FuTe��{�e�ku|����g��1x�J�z��z�sE-���H���:��_smo�n��5}�]x�I�����-o��o��A,�����m�;�r����ۯ�7��W�3�^3��Z�7�����Ļ��Q��ق�-���ő�NR��K�uf��Ӓo���R�V�lY�V�FR�J��~iu[���>]����?a��[L�4V��S���<�9U�v*��
�5V�׈o<u�A_x��'��[o
Y���}5�[�"g�v��/�ef�ʬۙ��a~Ϟ,�7����m�������9���n�VR�s+.~U��W�h��x���-o|]u�4���C�#2��{��FO�k�mTf��~�RUi�P�%���/%����~E��}b�v�{�]��i�{_�]�&�V��/�V��`��m6��Q�H��eU2�_q�Uv۷�e]��u}%�"�B־�F�=y��=p��rU��~Um�W�W�e�~�~e�_ľ��~�6�W�'�
=ƥ�=b����*���ȱ*�Vf��W�ڵ�1���>4��a�-��4k˦m.�X|�=��mۗw��^F2�#
�Z�����w���^ݵ>�×
X��R�SO_嵷�G���O��O��Ԭv�|���ׅ���u����i�蚆�=��n��^m��������5��
2H�˵�������*��˖Vo���¿�%��2�]^Ŧ�nky'U����寽�s<6y���M-Wu��Of�O����S���U(ǚo�o�D��|.�}��kc���0;ZI���~�7���'�>
h�%��<G�Oywq
�؅������nu�*��Z~%��_���jH�1e]$����L�b[�Z:��q�"*��vfo��7ޯbZ>�8
�ӄ,�{i�M[Wo�Sʛ���'���_�ž���ZKm&�Ɂ~f�"����^��oo<ַ����-�r�ݕ�F�!�lH%d�Fm����7|�|a7���j:��
�B_2�o}���ڬڅZk��WI&�O}7W���c���a�K�M�7����zٞ����l��"õ7������̇^��;yO���U�����r-gW��~8��B�f;#�ݺ�w���}+���]#K����r#U)���pؿ~�����w�Ȝ�"��T�0i�Uٯ'�E����v��m�S��[��Pܯ٬慦�����V�Ʈ�U����j�W?Z�o|q�+�\����O�~�V����׻%���-����xT�j�������>�y���P��R���.�uy6��>ꢪ�uk�c���LC�۾]�\�WN��^g2.�wm����o����A�]�v�����LV�5:2�֧�WZ��*�C�0¸w]��W�x��Njf��qyp�����1�-�}ݵ�w
ן�Zy��B�Q���kV[)uЈF�g�}�lso�Qj{[}�(�ͦ�~��[�)&��B��i+cD���~��?��?�t���*�ͽ����#7+�n�V�eY���]��wo����+�ڷ��Z~���#M,vW���X��r�~���2�b�rRs�M8��)u2����߈&b�~����F���.� Xv�>�ڍ&���|�.�O�k�������wm�"�e]�'կ,U���h�7�Z�:.���C��o��-��N����#7��5�/�K�R)]�f��7��5ͅS�����Z����sǾ6�#��n4_�k>)�k�/.��Q���"�h�|��m�A�<M�mj�I��F��8�p٨��ۿ���*���u�Y��$�/ⁱ����~ l}:dUt��H$���6�m���WD�^Z.�?�#S����;&�q>ߪKs�~D�"��÷�ު������]+I4���I"���6�|�٘n_O��'�mf�~�-�&9��E��w���^e�|x�	I�ˋ�/�,����VI%k���۵�}���)�eӰ{h��_"Η�k~'�ob��J��%����o���w�]��������4��=K���.7]C�`���v�l�ʬ��w�ܿ-v��_��3��r\�[��n��r�7��ѿj_���๬?�ӻ/��4�N�OW�[�Ҭ��%d������[�>�9f�U������z�����~�Ԟ:w�|9��,�����g�o�#�����W�[�ж���df?3#m��tJ*w��>r����gş��n�]�x����v�&��=>����yU[������5s���ֻX���ͻ���Ҹ�.-YVX�Y�V���h�&���(_>�ᔇ¾*UfK�t���}�ާʭ����W��ɠ����ӧ��Pp����s��!�c=>��ǃ�v�EU������Z��P�f����կV��mY�Vu�wr��5~z��_>)�?��#�o���L�U��f�&�p����a���؏�
)�����^%{�ON�5�۫��KvU��閾�5`��7���罔�VS_�1��U/���A�_�xK��\��k�-v�]�_�_h�]�>����Mîj�eX�墶�m��կ�t�z
IT��fu��<C����g�e��T�W��ԫ�Z��Y7Z����ul���8cc����a�Tˊ�)Ѿ�=)T�1:o
��}ͻ���Og'��c��nk3Mӌ6�W;�Z�4{ao�qYT��6�S]�?:�s{�Z�¬���g��¹�''����E��mn��C���V�i[tM���lv�
�tړ�����_��k�������(�h�-�6��}�M�����W�o��Ὲ�H�<�h���	x��]cܬ��J����Uڭ_�ӧOY�%f�O^����Я������}���=�X��צ��QdV��6
�{�P��7��
�j���]+��"+�������V���(���ж�V����E��z�¢��3ȫ�#�k�n��!w{(p�7ܯ�?l���v�6�!6��7�_m��f�?7��-x_��g��[‹�m�����r�)Tõ������
l&)N�Y%�|m�3K�S�٢��.o�r�u���\���+��P���I����۷���^���7�B��Q�V]�)�-�^?��^���y1��r'�U�ı�f2�'�b�en���;�q�_:*�n�w�g!��0�ޣ�à��kڧ�e�\|ͨ*��F�������o��o��g���Y�Mk#$���F��.��<7��_iZ�p��i7I<N��w��/�	Y��ٷ����{���<G�M
^Zé^�.��4��²��ݴ+yޯAʢ�����nwg~ ��j��Rs�֖��Z[u���wC?f	j?~�x�ĶQ����n��~ө/���
��^��O|8�e�N=*�bg����/3j�˵�_�v���_l��l촘c};OM�kP��~P���׆�3�_�<e�Q���7W���&{5�����w����z��Ў�E)9nޗ��k��[^�aύ������[���*���/^�g�q�����cRgk�c[��9��˷�[~Te��W�_e��^?���}\�|���~�ךCySn��3"�3|��������񿅵�
|<���(��+��WV\n�-�|�;X�}c��/t�	&���O�m�/ͷ���w�VA���BJ�_uv��+�C��NA��rRSm��[_��]����O���7�7�+�<M�-��gn�%T٧K��DUV�W�m��W���������0�R�U�\���G=�,�g�[m��*�{�m�*������c}�k���:*H�沦�������Eρ��}�x��^_�>1�e�'ԝ�O�o�U�Vdv���z�8G챴�_��]m��}�n	��B~�}�t�߳�kž���G|𯉼K�Z���\x��z�hjK终�V�e�7mV���6�M��U�5��gy�}o�Z�n�r��ym&�������-�/�^����o]�o4_��O�"�[B���T��W���Z�O
���`�v�c�M���_���іGS�˵�"����}���
���*�Z�[�OO^̗P�l���Y���v��f���R�h�\F��p�o��#�O
X�6�/�~��hQ�r�}��wm_������jIgr����w��}ܫ��o��^�jTT��+I�Z����ƴ�j��_֝� �3��Z��c���
oy�|�7�w�_�����O��n�fԵo�Z��i��Ph�cnt�߻j�f�ۛr��ݵ��|m�����hkz���̈́I�]��k��h?j>=��t�`��|%�2�X�Rf����o������o��Şe����Rj��n��Ky,��a$�Q�/G����O.��v~�ڤ�У�:�:|wKyw{oi�Af��O��ݏ�����>ͮhI�h�-g����/��y���'�u�7@�oZ���H���>�mn�q�"e���+��gx�T��a�t��״?
�v��d�cP�?���Q^vGùV_���"�U��F�˶��m�n�~�Ҽ&���Ri|4Ӛ�����V%����Ea��A}{m��%o-�m��S������/<_��n�&���_l�l�|�?{h��mV�j�#�8���k�2h�%ן�zV���_\
��ʣ�v�%�wo�W�?��5�|z��;�E=´v��k;�7m\������e9eJU+҃�Z���wK�'vߣ��B����i�kItjih����ml|��?�;�!�����֓��-��}�2��
��3s��W�_|���7�^��7����Mu�"�O�v�*��̪����~�h�t6��>�����d�ۻc'�B�o��C�����Cr�m����v�e�w�����ukΗ�9>Q�MrG�I�����k�������ڼ��y�5�w^Zj��o����o~��������Z3��o��&�Y�U>_��^o�v��<)Ꮐ>$�n�k�k�$�m�=>��-��/��UV}�w2�����'�~/��&��V/�ܥw>�8�{�p'EwE]���>���/��Ѧ�����S�k���8(��oO����JO�&-����4�x�+����Q{C'��%k�vEr���Y����ͺ�E�9�s������};�L	iki[#�Tq^�|��3�.6�?�).~k��#vW�V�(��ԧ{�{����N�O���^�>_���Y��j�跣̼VKx|��3��*۶����|׌���,ү�d���/.m�_�?G��7��µ���?�I��ḵ��~����7o�~�C�����E؈����$L7;�;��|>G��nD���w�V�~͗q^+�x�6�o��w���ϓ5]{��ַƛ}t�G�n�.7<��7�m�u��Z�O�6�m��m��UL��J�<��2��c�n�'������G��ɫ�w4v��Ÿ���7�V
�|��߳��~|�|39v���3���1������R�z�Y�ΔQ���S���e�`�Dc]M]����k���sJ���I����c�=���K'��m��V����բ�I�E8fiw�EM�*���V���$��i�VT�v�I�o��d�F��=���X��I��_��ᯣ��T+�=j�s��u���w���99��S����x����|G���4��+��Z�����~��Y�&��(�$𿋛P�M~�m��%�G�V��n��6��N�;$N���R�����n��G�:���Nߙ�U�N�)*�_-���I�V>�<u���yn5*�|�G�}o��f��i^$i�^e�q�O�l4�˖r�A�}U�'��u��W�VB
�$Q�=ڴ<I��@��8ʟ���џ�T��=�ƪ�3��5鵕q��(P�,J�&�O���ݿ��S��W|�o��S������g���|�|�M�w�5wE�X��H�(�w?�Z�	e#�*������e�X~&�,���O�~��nt��c�^�x���_N�.����Nq���X�Ck=�y;�]�?�mx'���C��r���M�3��ϻ�e�\[�V�߬�"����~���W;��5��|]��xd��Wb���fM�*7��e���z�Fm;4�g�z?��2�j��u׿��L�d�qK�cT��Gor6�\q��[�v�G�o�����)-�އ�m;���=�x��ɤԾ0k>K/�oe��j�����^�}y3y��Yj�O2���^$�.C\y��΀6�-U~_���s��yWS�MJ���Gu��F��4ۈ!]�Z�-�����ۿ�,�q��>f��f�9���*�s�+��4���YuoY��+��9$]ۓ�˷���-�����_8��h�[��r�n������T�*i����s��j�P����R�-,]�����y~o�괾(G��0ܩ��7Ip���Ы��ώ^Ok�[�#G��Y,��Y%ٹ��fe��V���M6��_�{VYc���Y�����̹~ѷ�k�j�
�dEe��}�P�u��7�?�W?��R�o\�O�hw���mѲ7���
7O{�K��&{n���4�/�[|G�M&�?4��8�������oVh$d۵�������~_�^�9�N>*�����%�<3�m_C�����|_/�|�Z��ƞ	��_�<)$W0A���ww��k��I&>�ސ>O��)���,t������ŕ�����;��F�j��6�3/�m�V������$�'N�o��g
�7��5b�\}�ܽ)�k��}��cVf����wۻ5\�d�Q;��������!��>UeV�f�l�{i���ƭ�A&���_O��m���5]̥�_�/����~�/a���M�[���[���¯�:��}�v�-�e߅�kچ�<���f��4r��Ĭ��UD�"�n�}�w-|u��c�^|T��]M���{w.��ܻ�o�]�ۿ��w5zMݷ��J\��^�������>�}�)o��y-�w7�ʿu���_x7�D�mG|�������@KO�(�����xW���,��ZM>f��E*/̻����~��_��)"��d?k���|?�vo��Y����w���yw|���\x���Dt`�xC�>p���ڔ+m�n���Υ��Lοݯko�6���mE�ς�x~VR��n��Y����_�_�B�ڳ��~���ߛ�X�v��w���0I�AG�6�������Uj���c�ע\�5�h߇�|7:���j;y>��qo/�?�+7��⏀�3���<
�dfۿ�"������f�{S��Zz/�c�g��Y�����?�*��>����%���������_��������־�-�'J�N*��d���Oi��埉4�/mU����v�̿�m�J�6ߗmq����O�D���<Yv�����l��M�߻�w�n��w�Z��(/�.V��f��mu��22�v����^��.u��2�7�N��@[��/��m�������0ӛ��ު���#&cF�*S�M6֎���n}�������$k�V����Uw|�\
�su�-[N��w���v��xe��������?��J�����ȟ{r��kF�V������-5��I�4[[�AZڵf�!����;�����}FMyu�طW7��KP�h���+����x�Յ�l��]��.^S��8�s�t��u�j^�M$R��-X�9����˷��_^G�̾|Zf��&d�6_��w�U�U�3x^��+���U���Q�K�����Q���ݵ����LF_
�w�����v���~��C�^��K�l��O�O#*������|@����R�MmCw��~Ԫ��D���7�e_Fk?~�Bo=#}6�m�>�_���k�ڧ�	��7�/�`�>�B��Ϳ�����k?�ϖ��2���{�<��2�j�I'�d�����\�l�2ˡS���&�ݿ+�����׼M{7�"�-�ٳz$�������U��[�xk�O�4��M.�u�k�[��smn�6s*|ۗo̻�*��%�r�]gy�hV�G���WKx�Cmo=��n�}<�]���3;n�����"���>��-�p�*�7�2h3�	o3��q,H��l�}�s��]�L�5�U��^��w��祯��3o�]P˰P�%��-{~L����׉<?�Zص��֯Z�E��t�_�2�3������v�j�>���xw�'�4�[��zG��i|?.���חW���l��ʬYw����_
��_�y��:O���|a��gp���V�wqg���v
�"i~m�5p����φ�.�u�N�ƹ��{�K˩d���+}�/��=r*$h���5z�<:�y����'ki奶���s�q�!f8�Q�ʕ8Y�x�]�t޺�]������x�����|1�?����|8������M\	w���(�.��˹�Y�eZ���d�'�| �ƫ���v����P��6�*���Z����~)k��/�I�����
D���xgkW����ie1Et�eh���]��.�O~��2�{
�爾1���j�����{w,PŹc�k|�����wiG
FUe�zEm�ou����3�q
H�R�U;���ӧߩ��ڳ��俓R���^˥���k��H��+2��?��|��#��ԷÍ2��L�V�K�9���mu6�Wj���|�����ޯ?�a�MF?R_
��Ouo��wD����n�ڿ������돇z=����m�^���,4���Ĭ���>�m����k�Y�lN"�~ǥ�����3���a���Xxik�}�m���>��9x��O��ψZ&��k�^�E�'ܬ�̫�%HY�[b��۷����z5���f��rk���Οuu��_H���?-�2G]�����~]��/��b_�7���O�5-:�Ú��,�g쳊�G�#÷�/ʿ+�����m^�ᖁ�Cucs��j�yy2]\mw]˷��Ws+{���?_��L��Zn�o[��n�뫾���fY
xp��o�J��߻���><|i�ms�i���m^�-��5{i�o�v��n��_�Z�w�G�1��D���_��k�L���$��vv��-��ݶ(�~UUU�B�&��C֭�n#I!��]̉���-۷�U�x�۳�i�el��!��r1��x�,e?��.ߘtUf��׷��0S��]������_b�]��C�aW3}}{vK��翶�q�R�𧀴�{���?�.[m��n���3H̛Wj��V�=���ğ�d�O���k/O��ڼ��0��,
���v�l]����Zo��5|K����v�f��<�&��D���v�]����o���S�ǀ.�*h�մ�y}��}�$��"���[���ɯ��S�����&�{�-t��'��Z�W�~v�]��x���'���^�,ˣ����f5F�ȿy�#|�y��o��ݿ{��຿
��F�~�c�j���KSO�b�,?|�?�]�[���w��4-{Jg��t߻͏�{���|ۙ�گ��(���	�)|V����Sķ{.�iw<S�_��_o�����0ќ�_߆�J��t�-z���a�ԋ�'%���n���_?k�E|S��i��twʫ$hY�o�����Z_|B�>ʗ�^\_Cb�kF_�dL�<��Ļwm�yk���X�"x~�E��[mJ�x��T���2�����W�m�2����5y��x�&�$X"Ig�M����]��K6��ߗ毌���1/�INj]��'��O���mR�%���v�?��Ki�3��H�� �{��������U�ï�0|K�u��L�^D$�/����_�*��S��ux��ĝs]�s����7K���e�~m���UA�v���x�H��23ck���UU����u���n��>J[A�m,��[��s帡��ԯ7ߧ�����j7��ퟙ��q$J��_O�Ws�A�o+�f��ۻn�۷��^}�S����m��:[^�̌�$�ݛhf�^�?��=':����i����-�7�E�]?c�"xwL�N�b��hUG�Q�e�v�H���O~�?ts�4�H!�Ve��G���f
�Է_�/��I�[\�����<l�W���wn�?2�u����+�kY�/�~]��W�E��j��Y���Vo��j��4�\?O�\�M5;�k�骷k��}�B��N&�C[�l�k�w6?`�S�z�����:uꡇL�m�$(�;����z��?�Qj?�νago���6�n�\�+,J�ʥv��r��W��?�����E��/�M�U��;��࡟t�y�5��ֶ�����U�Di�ݢem�z�6?����>�<��*KYS�����}�M����|��>'5���J�$�I-��e�y��i���j���:bL�`�t���f���U���T�<D��qpn&f!��۷�]��
y��n�^a���K2�����Q�������\�Sc��_�w������W�VS^n��{���V:R�d��},k��P]k�JIdE�5��s>�ͷ�ݵ�Z�<i�5ͦ��Y��y�'x��ۿڬ���(��1X��QQ����e��k��W���uR�F��D���ګ�������;x�b�rP]og��<{8EO��/��ڲ�¶���4��l�Q5�����������ռS���%��$�*�{v��Z�RԖ�$J�m�Uv�|���`~������ͭ����b�v}��Z��Z���VA�2�ﻻ�_oKZ�*�糴��|�M��F{�`�YQ��~�O��{��,��ݭb��W�,{��{�h]�x�5�8ݾg��|�y�~&����|#y�;M�Þ$����+_�Ak��;�ͷ���_}��I�<{�ۙ</
֫5�L��O��_�k6��U��ׯ�R�RP��TqvV��/���j�
���Q�]�W;�S�v|Iya2�w�ܳ|���+/�����/�?C�jwW	�[��������W�j�����+_�\kS}��&hڷ2�(��eU�U�1���3�v�j����=�2�H�7�e
��U��eƸ�TXl=i���^#��c
�o
�ޗ��O��=���?
xj8�u�y��U^(7H������U�ۣ��Ӭ�x�/>_��T���>��5C��n�4̻U'�kh��%o�mz֓�-|��b�;o2]��Y��
7�f}�y����G�ˌ��4pфݧ�ܭ�6r`����ɴ��L�o��^��ض��}�O��f�W���\7�OjO�u����P��kx#��m���U��ͷw�z��+|f��?	[i���^I<6�l�Y�o*'g��w:��]��m���v�`H救ѧ��o��}��ͻo��_�ఙ�!�8����U�}��Z�zUi�P�]u���|7�o4��[�ud�[t���ݵ��w4���y�W��_��[�z���4Vw�Mj���mF]̫���]�柴B_��7խ,~���M�y��c�E�s���I*|��U�|���鶺}�0�{E}���euV�e�i_j�����
�<�jɥ���ǹ���W	E�I��v~��^���›yn�w�~��}��֍�������U�ys�[@�i����s3��^g�x�=?�c�V��%�+��v�����7�^ݣ�CC�����#��~���S��R�e�Z�w���L{/��=��%�������ٕ�.�7m��kqdo3���
#+��F�1�dPq�W��[Xٮ��ߚ�n��u���k}�jkm��/{�+{X�I�UZἭ��+2�{�m�v�)o�ۿ��j����c��Z��w6�C�,��ڿ�U�|�U��.�Ue���L�>j��K�U-����I��$<�摕W��_�\��|Q�Ȍ�z����1��nգ��4J̋��ybV���������O��B�����u h�]��W�e1��V��~^�P�]��j�Y�Ij�+/ڭ�ZK�|͵�km��o���ɶ��t:v���~|-5��u1{�#����‰�pȉ���ͻn��
���-��v��B�ͷv2��'��?�V%���%0�%�)!EE��E{�����7����wZn��e$�?���)���G%�y!�3	l�.ԋMKG�~x�]���ٗ���S�x��}GHOk	�H��ui"G��+3�]���Ş��m#�ͺ���?1��k�#�����
LJ�M�Z�2I�VP�Bme��.��ZR_e!%����^:��-'^�M�
��ۛ9��<Mug�����ﯽ��gj~9x|3�|8�#yi���d�~�E��z��R��>#�Ht}Y����k�+�b�W�U�j����V���j� �ͧ�<�x�U�[o��Q���Z�j.[�9�-���a~��Fy?��l�k�?\�G�@�"�=gF��b�y|�����q��Յ�����/����h;b��<3=���2��}����]��>1�b�KX�|q�\I�,%�U����;��U���Үڵ��[�.��K�x�����i�T��������*ט��&����#
W��Ɍ"�?j�7J�����~�y,�m�V�-��[��2���?{w��Q�R����	���}K�獼Io��+M�����KϺ۶@�ʻ��3�����Ѿ"���t�KJQ�"C*8F�Ńoܿ.�6�#�q�1��ck�f�M����k�i�"n���f�͵�|J����������Ta�S�jޟ#��r��7ȿ7�z����r�	�������/i������"5Ż��z����ۿ�_���z�����]-���eo�0D�����^G��\3U��mOFpJ?�?����M�Ծ��{a}�^B���<�.o�*����m��]��}��,:ߊ��ɗr�V�k�fm������|3c�YD�^��w[w��Ϸ�`�û��Ͽ	�O��z��|b��W��������n�ݹ��Y�:�$I�Y�j7�,�b�_UPV�}o����<�-�;�I=b�e��-w���2h���<-�5�&8����m[ʙ�++/�_yW���h��c��\�ʱXI.��4h�6��ŷsm�ռ�k�4�5�&��Z��ٛ���F_�����~"�ğnV�X��z��p6��ț��C�NP��[?����G�΋�־���iG�[P�~a��itX�(_vU�AS����R=Q��jC���/\�}[O���6xf�k��K^�2�Vj~�wk�z��>'|:��k�L;�:����|��7��"�ym��.~ڤ:�^h[�K���FO�޿yY��
�b��!G�ԭ�f��?ެ�[���;���!�fE]��˷�����#���]�#�V�|1խm��[��l���D�Y]>���V��[���sJX(:��iw���}vI��4��M���۪����>�����.n �0�&�B7ޮ��η7�)t�Y���i�W���7�=_x�'�,���k�o�̷}̿�]e���=%��&�)u���*�
��i�ўg�8�=G$���g����Cʩ�.cۺ���Zn��ot�+�D�+�=����]�Y���������Z�?���.,w�l2�zk3��'�U�1tݜy�G�O��4���φխ.�|�\�V����VO�z��/�7�{�����ខ��gv��A���³�̲l��~V������e� ��H�|���o�#E�Q���e���r��� ��O�8��uv�O�ԭ�o�%�����r�xr�J��!V�d��n��C(}��U�o��������Ë�m'^��ݵ��]jqܢJ�ʤ��۶���z���/ƭ"f���?�T�|j�Q��#����S!ɧ�~S�J���?M}K���C�KἾ�Wuf쥢����9~�j�+2��h�c	l�k8��ռ��ڭ��s�j�je_��y����3*�y���cҦo�V�������g �u;�¹$����+ٴ��C֥�f�Q��~�w(蟰-�f���i��ܰ�6A-�p�Y�u|�j��0��T��-�c�C�M*=Ņ���ȿz��d��|̯����!��[��k��T:��`�,^��yRNŕ���|>ɱy(�	-����C��y��G9M뽴_%��|��|U��4/�~	�o���m~�s�%�v1*�FFd5���e�kv������K�7�Ꮖl�ذ<�x�-��wuXZI[���ޯ�4Y��w���8�Hz��}��Ik�*��+�{f�>��-��*��4���|ڿ��;��^�Ҭ�b�[k	#w�܌���5w���e�2ѯ���m/��-���H�{�*ץ��SPYm̍�%j��ƭ�..?�t�<�k|r�ɯ�9㇬�����~1�V��kp�[�H��+{�h���P�������sg�E���j���y��Wj��ړ��
�up�ժ���Mj5��f�:�^e¬%*� �OF���n�Ռ�&��}�#�M?�dž�F�E⪬�h�D�W�m���>:�����Ǧ�$���$���B�-���K��6�ڻ��S������]]/��M�Dx�Y�o�ﺜÁ��g?��Q�r��[�������eX�v�ؤ��}m��W��O��sk�xq�ԦM��S��|����_v�_~ȿ�#���P���ڧ��`��+�vhaf��[�ۙ�]��^�7��F<_��uN��3�J���^��8rFu6����vo��f8��Nm$޻������5G�~���/�U��"�|E����ow�/R�c��;���ev��k�.>:x�O��]�z���椻f�����{"T�)ժ�jߑ��!Ʃ]M/���|�����v��A�ʈj7�!���Y�v�i��ms�G���m;F�l�|>5���k,�M˷j��o���X���ɘ3M!?�Vև��U\\ȿ�}���=�*_W�שR*ּ��=.���NJ�ڳ�R{~?��iY���5���V��6�f�R�EV�g�j��~�~2����5�Ē&��u+��^=��ܯs"��=��%S0��������GM5�UmY��򎍳���{���+�̻rVw���ii���g=��H��+nao�J���Ү��Wā������闚�;w}���z8+&��B��'�ea_I7���?�=�sM-Ϗ�[��;����ߙ�o�v���L_���w�}c�/�狮��r��%���[���:�/�[�~?<+�����v���!�^�����S�2��ƞ���{�ܟ�^Oy/����oW��j�Ce�x�T�����͑��h�?��G��o�;�N����8V�6ܩs{qr���+U|t��,�������7��M��g��]�]��35v�����Zi�=_�qO)�V��]C�����
q��3̟+L�4���mj�oc��:v����[۪ה]~�Zz���������-��]���e�T�¿��.u�]
�v��Z.�d�e��[��ҕ$��iŵ�-����F��S�%������.��
�Z����
�O+�i���W���G��mn�K�G��^��4n��}������:d~�J���4n�{r��ٯ���7ŧ�>��Kh�������,��~n[n��֘�5X���m:��]6=��5˩�µ�d��ӭ��j�O��}{K�w�H��=KV�Y�D����/7�UDO�����k�'^�A�sms4�"�e��_����W�z����ÿ����m?	xv�u+׉Ѽ�`Vwf]۾]��U��f��%|-�L�6�kY%���k�u�v���y��~�x�4eMIY��:��|o��'J��<l�Z6��i�ȿ�?▟�J�7�ǁn�L�OÍYm5(���{���v��L��
�c�K�.��i�]M���]M++4���UUU~U���������g���zןd���oc�޼����[}�!e_�o*���X|��^��]j�U�lZ
���ƣ�點r���J�Ҷ�+�_�w}߼����¬n��mz4��Y֧?bݡ+?'t�ת�t�f������]���*���_.�t���?�.ʿ��y�·R�
�e�G����o��_��L��nh#?��[���_��wӒ���T�����$�O����T�dV������*�ck}���u�&T?�&�k�t��ԣ�fif������u+��.c����/��f�iJ�l�X�-�5|��s_L���q��Y�G�����v�ֺ=���L�ğ{���Z�W��X����̥X/����v��_u���jksr��q�G�xHX�-B�UY^��v��}�f�ge����=���!���W+�Z���Ɗ���vg���eV_��k����^�{����A/"�+�Ć2���m����Uhw/P���ޥ�_���Ј�i>�ԲFy��ͺ���a�,ەj�>S"�@x���ԭ�"�͹�����-Q�ie��R�5Ǹ���F��M �˘|�:�R��	/�b�S�d������|��"W�e��Fܭ�Z�[����τ�"�V���5'ܖ|��s�o�b۾�����W���ºW�.�{�5g��+���l��%V����/�ٶ_h���V�%���37�ۙ�ne��{v�aR�\�/SH��XH��~!��ϋ/4\�]�.���>��w����nm�7�Wo�V�ho
��k�5�E�r7��i�^��`���M-����U]��U���9��\ѼK5����1=�K��۾�6ߗr˷��wuy��`��d�$��<?�K.��H�_1vBȎ��<�w|ʭ���(š��O���u&յw�������Y�;+�sM����X?�����㝧���_�X
:���\:S�}O�A�;��G,����ok|W��U6����+Jt��S�t����kW����O�7P�x�J�k�Y�d�ߙ��gu=��i�{��O?S����O�n�{���̻��uv�v�����/��Z�D��|С-�k25/�<��x��zl���t�浗
�Y�vV���e��Ǟ�?J�U'�chҊ��[+���m��x��/4>�}�.4E�o��bެ��/�S�9[
��w�#ɲ�W�y]�s34����&f�?|A
�����/��)�����٨�f�5ٷ��j�G�T�&q�������j�ru\�����?6�Jѥ-������T�x�Sxsº1�F�w�c7��ǫ���>:������,�&��=��,��w>7m������#�P�{���3o�/�ȹ��l��r3}�wW�<Ѭ�?x�o��KAi�U��y��m_�u�㳼Na���쮿��~��e8
���Po���{�N�)�|Q�c�w�5o鷐}����ڦ����Y]�j�V��W�_�w�o�%���t-R�5�H�/��+G���{���-��}����M�m���.��o�����Շ�[�c�Y���2\ϵ�w���W�h���^��vo�]t>�Ui}[�٧�2��KK6x߇���l���Mg\�g��O�\%�ߙ�o����z��C�7�.��&�w�-<����n���M�׋x�h���Tk>�xo4g[���]�#n�wW����^	�n�o/��6�[������<F0�)ҡmdۨ��K��1���֯%m�������z_����BTյ�R����
��[�m����]Q�@���ݶ�)����o�����^��K�0��r�&�g�kJ۾�$,���V���^	���o�Oض�t�_��x�ծ?q�il�)
��gM�������
�<E�Ն��i����۵�sڟ��?	,mkJ�ӓ�Zu{�����>��r��[�5�������/3�ʍ��U��^>��ßej:�v�5ݒ,�G��ͻ���>$C�m�����{�������|�hKy�o��ҵFg[p�3#}�ͷ���7��/J�N~Gm���Zݶ߹��]��,Z���씥em:�~���w��sz����Ż.�z���}f%��Vl��vh��5���|�t�4xf�e���j��?ٯA���O.���F������W��h�8������<p�5J܊�HE�{?�E������;��m�X��O��fZ�?����7�/-�F�ɽ_�B��W�~�>5�e?n�xoW�����q4�n��̟{m{�����富th��e�'M���H�*כK�_��:�-k�K�W��{�U{]lάo
`�����{.�~��d����]h��m�4�o��Yz��M��2�6�g��W��wg�77����I�.��~_����ʟ�RO���ԼC��D>�l�]o@�R�5+}��2�)�k2�/ͻk/����a����V��9��]'�Tg$���u9
'Px���u
	���K�_Nh�&:�-��~mi?��ċ�_�x�R�%"Q��;�Z�!���+���1�D3m}��i��}|���V��(���oO�1b�S�l����4Q���S|���/��B���]4-�O3��&��_�)�>���L���M&/�����*�c���
���T��
-U��	P��l���~�[�����K�Xf��So�P�.|�����wW���T�m�'���g�?৞-�M�'��o��:��Z֟�Tm&�����f�72K��p��K��B��`���۶Է^>xaM�X��%|/���jw/�|.�w�</��NO�*w���Hx\�ߝ�z�<G��o��<;[��}�y�2E�������Ս}�2��;>�^Ŗ�C�����W�D�������
���|���
����_�����ߘ�9��ٯ��;%_�u�?���E��z��}���_'7��]e��S���H��S��|'�_��o������;�OV��_��}�֍�*����/�n-���+�q�_��^�G;��/���-�4/
�l%o����������ԗ���> jM������-a����/ᯚ�~�_~8x��Þ𶇬k�����o�ٷ�T_�f�V�U�f�طPӾ[K�6��P�5��n �c�-l��6�����5���y�~��/�ާ�q6"�K�\��'wn�_6��|���C �,f������)���Re�Y����s���i9�n��f�?g�Y�٠ۻ���5},r*�jk��S�0_f��5���f^m��������\0���ھؓ�>��	|/g�ܫ���ե�;]"8��=K�/��諻��]Q�f�)�E_ ��}���>��fK�E_�����WQ�_	Mg�h�o�r�_�=�y~VU������5����
�1��U!Uv��_#jk�<Ux��ih����/�C�}���^~>+iԋqٽ��ֺ|����L���]�m����~$x�ÿ
�K�_\�����W~F�o��mT]�_*x��
�;}�ʆ�Z�oU�^I�t��o��ۿ�[j���ſ�hu�Ԗ�����	;.��n_���_v�b���`�_�Z�^�yg5�_�#���~_��Z�J�W�X���_�}�
+��#�؇�
e�+T�1\�gg��l�%uh��e���2�߷�"�T�Ʊ���2y�#ue�yv����#��m5����a�Xg�ԉ����~�~�1��xCÚ/���'��Qo��O������/��6�)��Jq�Eo��>;<�1��Vn�^G�G�J_Y͇��o�ؿz��|�U94۝�Y�Ȼv���?�:tz����Gm����m[��^�5D���O7wM�D��s3
��%R�M�z5'����>�w�÷�Z�:�����O�����AM=��\�璫|����ᯝ�˨��n7*�mmV8�eVh�w��meڿ2�����2��<W���sI�V��n�ʂU�Ǫ�m�ǫ���_�~M9�f�$X����u���V�w���l֜��'�
�z.���7V"4������z���=[��Oڛ�W���!��Te[��o"��Z	���͹e����5}���ok�^kZl�R���=���/���[s�o�k�ٳ��W�>9xJ�Q�ml'�\�t����i�DZ�]�wnv_��{��������Di����ݯC)��ë�ۯ���x��x���T��ݮ謹��.����s-�46��K'�_����ެ�kT��^ {�E�T���V��a�I<Kx葭��;3F�{�ff��Ժ.�$���)����^�-�ȟ1�>��������e����|̰*��-���5#�F���jͶ=_�F_�~�)��9�J旁�R�K���R?ޱ?uF�k��~��
,.VD������}��������uC��D��ik�Cmu�OxR��Ŧ���ܟ�VYv�n�{wޡ�&1��b�:4��ܫ4Ӽ���v��*��������[�Y��{]&������kn�H�>��w��Z�ȯ���}�q(P�~b>��я�7�b[��O���ḚԮ�����ֱ���6��M�W���U�5��=��/]���o�
=�/�o���nf_��Co� ����n���#f_���i[F�^�]ꪫY��c!a�YW����Z,�^u:<�ŗj�ۿݧ-�f�ѷPID�Tr�C'��̻��k������*G샯h?�>)iw�}�_�[����.�{sym4Cw�b��$ڪ�^ߛ�6���[=����ɿn�a����(]#��mCLӢC�f���Y�~����_��J�>h��2�:_�?��_�G?��|eΈ�
<�x���~���F��s�Z�*��E��Ϳ4H��m�ɟ�gЇ�?�\��Ϳe��[�	5��8u+�H���-"���;�gͷ���^���'���m���VV�c��㇂��k뾺�"~�ߵ��Ο���cVV����կ�l~�>+ɨi�u��{{ޤ���7ko���Wo�M]��%ޣrnĚ���M�B۾�?x��v��5���RxK��%�!M�_3;(�UY~�+��6���\�T�����zu�}����83/��fu�MN=���.���[~����_�۾.6��ֱ�:XW2+F�7�e]������T�J�G㌿��;���U�w��؇�a��:��(t��k����|�V����뷗��-{����:�m���l������e_���}NQ*��I�Vm��y?��x�cB�e���v����> ���|;�t�b�֭�n�E_-w��xğ�T3k�?�n�hWr��D��������m��?|Qys�����o�����q�������>>��1��B��^M\�)r������k�'���箥k8�W��>�W^�ѿ�>��kz�����O^y�8������~�|Ks�o�A�^��wW�GS��}����㹿x�m˖���
���/���+M}���"�S�Ƹ��0�&��Z�Y��K�(N\w^o���ڟ�7���ǟj�+��]�zb�
�YW�m���[�8��H�{m����37�k�����F��둬3\K5Ū��'��̻��_\�V�����/|1�4�5o]<�!��ضzj#3go��bm�~Vj�ȱL&�H��R����^5����Ԫ'��R��kx�����mCR�޹y����o�<�P�$�ͺ�/�m��U��_�^S�=��I|K��#�i�R?Pּ�5�������e�vO��F빗o�|��o�/�/�?���S^�/�t}G�����m_�$O�f�Wj��W�?��%�~:���~%j�Rhן�����e����+x��w,H���3W�c���%:��}l�ZtK���׽���5NP�o�G�^�?^> k_�=i��U��t{7��H����w/��Z�~	�4ԏ�ڔwv0ĩR:�F��~o��_�~/O�Gogу�l��g�kټ3��m%!��m:x�U(�[�^5>#����c0��Uk��_���N�9)�v��|�C�X,V�[:�F�2�S7��s:���Tz�C�?����ߙ,���4�m���m_�Z�'V���K_�_�B�����o����^�*�ex[���im���9�ĩ����zG�t�I��mj�ȻY%O����Z�|}�|�5�ۮ4�/G�e�$�c�f��j�j�t����~)x��J׵h�l�ce����y��37���|=�[�N��d��*�m_@���5	Y�M������\\)UXȤ��z�)��xt�}���������i�m�D��e��ɤ�<���|���_���~U������%��5��	�R��Vy�Ff��3���}��_�ߵօ7�/o�=�l	��1H���m���|Q�����'�΋��K�{�r�r��ѿگ����&�Tw�$~g�e����5E�
]5���ǫ�Y$a���j�v���y��<z�n��	i�@�ky�~�+�W������ux�t|M,�`��v�V���_��T[F�u�Z%��tYL���[�;V����v�[M�Yn{���:i.��Ox�����+�P�����������e��UY<|�	^X8�7���*�_��W�[O��T��R�|6�n�ս����T�K�x�Dյ������
�s�o�������cxkB���,}m9�+�P�s����ۭĉot���$�t�>��ʇSѮ�����j��嬬.�#�l?���jk�1��~��x�:s咱�>W�U�Q��.����uv����R�ެ_%�����h����~�c�zG�G>��~"F8_�
�ë;m
�}V$;�����Ɠ�ɨ]EK�I>U�zԠ�[��i#��u�j0�iv�^�L�c����Z�U�Ϥ�I:���Sۗ��,�ޯt�_�>�~�-�?	jjԖ�$e]��Uo�k���>��ji���>$h<�����wWz��#H�W&�a��S�?sMz�������fך��|�k֛�iq��(o���o������ۄ���x�P۹��%��w�uvo�����o]i��\^Y�E*mfeo�������W^񦤫g��F�w̑YU���4)������&''�%��⚇H��Ӯ���?F?a����w���h,�D���l��"�����/��V���>6M�8���_���o��|�u����{�5á�K�b��%��q?ݭ�'�����7I���mG����j�r�'����F	�}���8�#���s�gU��z��?u�?���,�3iڕ��1��VVZε���}�6�����U����F�w���~/_~�<a��<=�\x^�O���&�6����[?�W�O�ϯ�}�kk��|�ng��vf�ͻ?�^��0�gOW��w>�f6Pu�L0��}d���_�����,5H�RXf��W?�H�L�ZK����W�<]�|Ѣ�׼Ut��w����B���qx���Si_
-潖��S�m���v��N<�v�{����{��+xYY�t�su_M���^��ִ�ym �4V�
�-y��<7�^[��ַ��`�k�~��^)�M��|K�WS�/�rFcfo�E_��o���o��ԼX�ͬhh�k+,^k�I2n����tC�L��5:�mꚿ��������
^k�Zi_��<��7�{�7��Aqg��D"}��v�v�+�)�o�{�{��ӷ|�1ǹ�K_t�0�7�4y.I6��~o����|���f��R�D��K]��j���۷���7;�6KȵZ8�?]-s��~+Ͳ䰵$�}��������&���2��6km�����M���5�{
N�+��O����g�W�C���H<I��U���V�L�]�"�����d|f�|�6�|M�M�2|�q�����ۛ�YV��!����e��Ӓ���y�e���J_/�ך��/�
'�7ڥ��˵����Vg��i���O�A�K�b��#�������W��5�=�[��Msa&�y��nK�ZT��z�v������>���VU]��w|�Ŋ�Kđ������|Ȇg�Ԅ�����ַæ�-�]�M�;�#^����,����]���g���m/eU�麌�&�X�gWo������W�?���~��?��I����+�w劣|����ux�?gK�<o�-$�]\�Ņ�,�3<3��*�[>o�_����U�EIo�[��>��S���{�)6���w��<K�.�l�%��qk�'�
o:�>h�d_*����-���O���~��@�8�Ñ%�n7�_��?w����ᄑ�� ѵx�,��az�[�lڍ��.Y[o������So��wíGN�4{X�E��4�����;>ߺ��Y-?gO���O�ǯ�.a����*OUw�������E��+H^A�$m�U�i:J��.Ы�q?u�w�Z��v�6�r�v��?�5j�+o�+�v��ױ���#����~��ҤUY-`��h�Bo󺚹���ﺻj{u?a�O���o��5���|~e�#t��?�[�����]�x��dz����i�PJ�+my~��?�Uu_�
}gq�
?K�-���������U�A�;C��-.����CK�
�j�.͋���ܻW���~�f��.��T䚹��R�ƞ�uKvYSP�K�)�[�[j����v��]5�{�a�Q�/��_�z�l��|i��_�X�uX�w��֗y�m�ʊ��ʻ�o��YZ����a�,[ʒ7�o�]w�ZGUn�s_ގ�.&Vîߛ�o���ǩa�����Uf�lfh�kCG�,-;����*�<�ܥ��e��7s���I��t�ʻv��q���Pæ���U_��s�_/�N]�(�1N�J�.�ܬ�朗W��wj��z�� ��#m��Jq�fJؔ�i�y���ko���5nj��s窶�κ�->7m��&��̊kX��<��5�G��Dž4
2�O��R�<��~+�P���ZȖ���YSs:��j��v���O:�ܿ�4�o���+I��������w�MW�_�1�ͮ���}A�c�>m�W�YWs�[j>��i��Ț���T����x����]E���P
���y꛿����^��z�k��6��UM.i���ʷ��I�-Z(�v��ݫ��m}��_���
R���m���0]���i:η7����4�oZ�dJʭ�p�w������n�t����V�OT��Ѷ�"���ߗ��>���W�$�Pi��ԯ�c�u'�-�?3\#N쬿���e��G�!n�����~Ψ��*���ڵ���
7y�o����~��b�ժOG蚷���zo�wg�x�O��K�M.���
n��wn����z/�}R�	�̮�-�O����ʵG�Uҗ�	�a�����;��Տ���7�������nj�����d�i�Wv�ޯe����c��[�U�K����ĉ���7Qo�iZ���=���e������ɾ�A�Ke_�_��C~��o	k���m^���t��f��v��V۵�Y��j�|�Ǟ��贝6m.Yex6y�o�]��;Y�j���X:X�I�&Ԟ�$쟝ڶ����¹&2FY��Q�z��7Ku����|]�|?���m�n���<�_y�!\�9��c�K����)[����ka�Sg$*�
�"�\�֮���Im��XU���}�"��ݯw3R�R���?>��?y�v}��9r��&������K�E��~����-�i"m�>�*8w��������A�!��ai�%���mb�[�7��(��2Ŗ{�U_���7n��w35r^���c%Յ�5����;|��Ï�����I��ڣ\��+��毩O�i�ż��?��}��D��o�k�ɳ�N�0u$��M^�����<�̒u��Q�8-n�Ev�]5�>^��{�/�(�+_���=M��~�����X���y��ݮC���.���^�i
�_��ۺ�N>��:G�"�����~Xf�ѬR9#o�������	^�/�G�no�{[�
?��O�j��ԱHY�n��eX�6�[v��5��,l��bP������Z�Z�[>�Q�*[����{v?�f�]x��6:T7�׳ǽ��M<�6�m�����Wwʵ�~x���6���=ð�J�k��j�y�W�]�����eV�f�c�|�w�ķ��/�7�׺�/�fѴ�{)gU���Y�ڮ�
g���(���WĐ:�:�]���?��&��)*�m}vY�T熕j59��N���3˩�uT'E���GĿڣ��	�U�T[y�_�Q��_��j���?�	��VIq{c�)R)6�]������~$���"���?��It���˸؎DI��*����F껙Y������h��~:~ʟf񟊾x�>k���-��ZZ7ݹ���E_�܊ʼ�լ!�K��P{;��J5��Փ�>9���/gᱤX�Iu��nO�ָOi��	�+M*h�tfO5��]�K����{R�������sxf��u���m-�K�*>�y&WEf_����\������1��>�> x�M�M��ƹ�Mq�곶Ş��*�YU���?{�Nq���oG�j�S1Ͳ�U�X&���k��{>��~ǟ�k���6�Ri�V�m�V�j+/�wuz��Ii��#���
��n�����n����.�j�~�k�wM׼��6�0T����v�����/̭��X���}j��,y�W��U!
p��<��T11��Ο[��Zh|��;Ꮚ�	x��I��m���K������ݬ]7Z�.�a�X��\���<�}=�
sğ�D��Ι�kz��ɋ8Y6���*��3W��7����F�Ei�K�r<O�~�-�,S���nU�����W��3�*nSZ���0�j�J�4W���菜�|0�Ė���}պ��n���V�k���W�͗���#Ӵ�X��S�_����ݮ����<"�z������73Ok��Y]Wv�Z������uO�v��Zݬ�W��Aq��6_��,�ݯ��ל�	ԗ��Q��熣'v�����:K+;Xb�,AYQ���E�z:�S��=��~[�-���w|۫�<�R�e�G���Pӕ���eo��z���Z�6��Zҥ�l5UG�#W�ⲜN����eק��}6S��_܎�-�n��v��̍�a�
����&ò�x�My�B͑�(�r���D6W���ݷQ��EG�{3CI���eܫ�W%v���]Ǐ>����K��[˪��+�x�m�:���+*�w�	����K�:Ơn��e�R��?�i���h-�������8�w��ɹ��7�j���:��6��5�q������wv��Ϭ?�:�ψ`�,f�PfO�T,��
{_��>$�?���'N���V��-�|������_���>��χ^#�TF������V�B��m\X�gN���<I�Vh�t��vZƬ�}����XߨIJ�'X��]�>/�����5��}�|e��h��&���NJ/��/��gο/����׮x_���Un<�4��r?�M����^��s�2x����C5��g��U�IY�r�_�j�Ǜ�׾����n��,ﴻ-�R՞F��2���]v�:T�ʴJ����I����ʣKKl��V[�W�>y������SZ��8?,_�7��^���+�߃�/2�I����%j��?iOx\��_�y'�AoM��/�
��O�
���Z����)�U�UUou�i�ٯ:XYV�h�5�-���G:�.��R�Uh+z���{�^��4�M;}�5v��l�ψ^2�����?��"�ʿ��ެρ��|`�SAa�_K$K:�=�Y�Ɵ��Ww���o���f�7m�0�F7�5�gv�(e�z��7w��/��*���iQ�����5�~��_�]z�u[��^H��#uH�w��]��</�t�?E���ue�`�Mҳ/�.��k���Ax��x�I�XT�V�LV�}���_����m�댓�uG�FݲU��u�N^XK�/��޿�y^Q���Δ��{);~^�����E��6�
��2�[��h��o���S5�}J}z;��=?E�-���f{����/���y
���;����J�.?ʷ��Un�k�I'0���?�^-�		�Λ����}緇�7r�9�u���[�g���^\xoF�<I�\|�h�Ybo��������Sx��T�4��o�d�����o�Ưi����/E��ٮ�?1�����UuW�>Ǥ�s�x�P���_�!�h�F�ev��^�#4�ƒ�K���_��K���������'�d���j�	��}2C�����+��v��U���ơ�}.T�Ιjm�t���v�{�^�'�/�>��"jW~b��Whի������T;xWM�mۑ�Jɷ�v��
\U)�ƥ��r�p�'<��������TR�k_3�l�h�O�~����%��mʭ���a�����v�oe��7��k{�Y�����ն�/�����p�~(�`��ºB�.�Dv��?�J����9��jV���]���2�f��~��U�k	˒�.����g�W�lv��E��݌�������~�zk5D��M�h
��.��ծK�:P��+��Y-��V����k��Q�Ju|�E~�#]+�z�����l4���RXo��tاu�a���q�m�	p�n~�����j���Z�c�t�w�wú;n�S��=�� �U���l��+}�Df��vW�Ê��Z�n�^�W�N�;X�N�ft�c'E���ϥ�ho�o╮�gc�kN�v�#l��_:
�yY�B�2��O�~_��u]/��m�w���PH�k)]٭!�YW{:��m�mVm����寨?h=c��*�Y`���zr��
G�mv���ve�V	W�Wݷ�Uݹv��<'���P�xWE�\VV�ѣ_�:�IU��h�w������B�T�JW�G����g6iNSp�
��
�wש�~���Q����|Um˨Aj��1F�Z�,�|���Y�M}��~:Э����[�K�i"��U�9�s+2��]����[~V|X4������ckq�@��>���4��"Te���ʟws>ߙZ���{�Mn�YR���L�S��*��pҪ%����32�۶�wyy6{9O�buj�-��~����C���t�o���>؎�
7B��
F]��\���Z�M��f�@_����w��kϿhK�i�
��6�ʼn��5	R�{�[u[�S�)}���Z�?d�5�WU�f���%ߢi�s?�wq�ٻ[}�fU_��H�ٙ�r�����W���#�Xi*>�N�=]�R[�_U7q.��{9��[|q�#9fe���,6�_������Ot�Cyx�r�z6�U��Uj��O�c���W���X��/Q�)>]�d��3?�uذ�߻�k��5�˷��5�-���1�����%>�k�������
6�]Aՙ�x��+g�ZK
�پ��\\	c\�mn��"��dG�[����עk�%�.,�7,w
Bȟ~��7�nV�s�v�u-����V�~x���~t?�*���|��n�QR�Iu_ֆt��7(�k��bi_��L�X�D�v�%��оߙ	�����$��1��NM6�R]6���j�۷/˷v�o���{���|M�K�j�+�طҴT�U��ۉ�n�f\mym���v��5ax��ޝ�M-n���b+�=�rKy;Z�M��Wo�ݵ�ݬ9k�j�k��
κu0�ڷ�~����X[��5�Gmy?��YW����e��}�6M�*��j��&��o�����i��r��.��n$#��f�",�˹���|�����P�֭`��5�ۗ��_�@�.�ݹ���T�Y+�^��e�z]��h�ZO�#�ͻn>-���w}��]v��AiZ����I�܉�ᕗ�������|Uy�CR�����כ�˹�nWj����};}��m��	�o�?��i���V[9��mbX��[k+*��ʻW䍿��4��ѯ/�c7[���~��l�Q><���m�Y6��y;7��-]��o�O6���"�i.C�����x�o���}�>m��&���Ķ�~_������=7�^�yyj����L�e���ï�2��+��ޭ��o�V"����GC��x�I[�v�[ٌ��E�Fv۵����W����|&���~���d��(>����"<��Fu_����~����0$K�S�6�v�5�mi
��CI*�U�Wڴ���FQ��L�߆V�\jS��Q�f�/�j۫����O������8���U���=��t4����g
;ĺ��4���Ԣزğ,R&���m��y7��.�?h�tc�,4�_�ʟ��I��i�j�����}Y�[m7�ޕ�W3�|4������tTmbU��mݻn�ٛ�_%���1x�X��v����3��"u�ƝGu����G�Mn/��
����0�P}�GޮOPբ��++vV�vm�_������<?�<q5����l]Ll�v}�v����^:����U��ڛ��+�j1��n���m�ݶߡחS��I�_��dk��|���D�u��.%�e#��2�Q|��37��gT�����:�36ˌ7�m�7-}G���^x�E����p�6�tۻ��q����^%�-��uk��o�B���737�]��7�i�&8<�8Jw�-�I������rF�t?��>*Y�<����{-Ԗ�R��n�k��y_3/��_ź�����J-SZ�%��-��Q?ۭZ[�m�۳j����|��*���� �簂�_P����VYYo͹�w����'=�ĽU��?��������*��n�w}ծ����cᄨ�>f���Z���#'�_�2��:ڒ���ےK��]��1d/�%��?e�����0�Զ5��"���>o)�Eo���������^˨�zE���j��6�n���Vrv)��\/�r?_��t���4S�H�{{�.-J��%efET��%UU�f�5��X�`�wP�9�,O�̿ƞ���+����k8���W[7MSz��t�xy���T�15$�]t�f�
������\#�3�_�#���Xm4K���IfDc��v��ɦ����71�T�F�� ��ZҦ��M�$�>Ӹ,�2�i���¯N�
58_��N�u�4��(�V��_�=�1���7��umbu�,��h��w4�
�{����+ƿ��)����2��5y��_�Z���3Y�o
ē$��e�Y?��eܬ�/͟�x�_�����C��<ZT�]Ѹ	%���E\)�Ց���.J��^YO��Mai_O��6��٫v��5:s��pui�9��mmz���s|0��{�i������^�R�g,Pۣ�����?��v��^����.�
��wV�1�heܒ/������❇���k�2��R��>�n�u�E�z�[Z
�7߉|�d���W�_�L��j&��q����K(��[]FXmd|�7���Wb���˵j��~����6*�]�ӵ��n��>7�U��tg=~����k���d��jz4�S$
p�vz��T�x���h�|��o#a�]�~���x#G�/|]�����k{�_��v��'��d��TU۹��o�۳m~�x�Y��m:�O��eԒX�~ݱ��+�â�k�~�ş	5�x�!��m:�M�k	�%XgFG�fڬ���{o���k��r��?a}��������P�I��/���>��k��g�'��g/˨�j�L�_g�Amp�����t�:��\���;�n]�-u��O� ��?ۚ��^�׃�,���_�A;��#���������+�S��_�Q�|S�j"�0�Z�l��V4L�U��A�����ueW_���W����v~����[;X��|��X�U€�c�k��z�e8ן����m�j�w��T�<=:w����^~��S���?�	��:�s����i�COt�z���i~����W���ڿ��yH��!��
n\/���k�������aDm�yc�c���ݶ��nX������5��{����u���^�!�|[z�t�|��N���e3i��U��d37���;k�/�
A�x�Z�Y�\Y��\i�+���FYf����۶�{��k�t�/����=H�=�����.h4����D�P�R�ּL�Y�z*�F��pi��Mh�i�߷�c�2^(�B�|�>I�i����3�"�)�3U���&��=B[;먢k[8K�Cs��>���#K��3���6�_�o�kM�X��Z2Iyk�縛o���v���}�H��������j��Py����q|�;;6���ZoV_���YWz�*�f��U|6%����6��^������[�~��Uv�f��,�G0�B�+wgʺy7�l�s̫���Vp���W�]L���_�4��?���u����#yvm���}W���Q�'��C��w[���ּ;�I�+��]7�w��|��.��w}ߙ�e��_���c�i|0���᷊t����������Tк��7�YW�����?o/��S��<���/�{黕��t�Wr����v��s^��
���Y�7T�+֚P�oM;��N�ߋ.�;�n-�	a�]$eee�*���a�����-�7�:+uӼAn�Oz]�������f����W���?	~�e"�"^x�Z�?{wv�J�~m�#mU�����W+�\��<	��]�4E��lS}�����W�:�6�?����n��_�p�]�����/�~���u���x?��k��ޭ�u/����e��2������2�ۛ�����;�ϴ���?'t�<;k�:�~����̿ݭ?���G�/�~�|+�c�-�o��e{}Ce�Z��u_�V��u��?ݯI����g���߃5����U���io+}����f�3W	���R���K�k���0��5����W���|��ڹ>��{;K[�Cf�{/�_�e�ח|L���ߊj�.�X���(�dp��G�e_h~����ggc���x��[��O�ƿ�L�|�7�U���2�v�?č5�y<?��>�M�-����r��{s�����O<�*�'m��~�\SJ����sZs�J+���C�>����N���~������R�tv��v_��ݯ�?a�#�� ^x��KY�ڕ��^�^m�������7��ݿ��x�ÿ��6��a���n��W�J��2��3/��]���e��������k��mz8�ET�(�'�{����z�I�<W�_ژ��	�A_�_�]��O�>3~����d�ӼU�
6��&U��͕Q>�mZ���m���~$����Ꮗ:|���#�r�L��~��Y���Z�-t��kR�Ma
��͵��U�o����_�?����K:A�ٶ�e�n�w��^m
�L�����w%�v<ܷ�<�V��_�PU���v��[�|{�Y_�ϵc�I�UU�w?�?3V�����3E$��^~��U�w��o��I,��7엿3E#��o�Wn�宼T�~�o�y�G�<�m]���9��g�~���T5O.�>E��G��+kJ�c��n�~m�x/��gun�?	�I�	�-�C
�i'��R1��m��
v��'[�����7��ݫ��������?�|I�Agg��5��,IimK-�qQWs7�5s�i+S���1��2��GO���7�9��7?
��Η����mG���V�Ϳ�j�/���yk�<#���7�<��~�ω�uilʗz��7B��-�Wsmf�����5}#�6��#>"�{����f�|቏���n�ضS�z~�k+W�O�����~i��i�N��\h�zc��,�,+��x6�)�lcv�[��^���>+�f)N�u��_o�u��ݷ���߱��`�_��~'K�����D.b�����#?��mfi�O�5
9&����6vO6+w�7��ح�|ʿ5~���`�e�O�ŏ	x�O��[��i{ks�e3?���-�����~���^�GX�N֭~�u������]��웑Q�֯��o��s������N���LWғ-�w�T�S=��Z�������m�N��?|��y����n][ٳ�+D�J#��|����Z��D�X����<����N���_�{���e�*�)���]��쫹�m�n��>$m[Z�"�tK�68nxu�ǂ�^Ԭ���ky�m�O�����]۾o���?uMėzW���5�/"�冕�[������Ye��b��ud��uo��������s���K_f��zzw?�<D�8�L�B��B$�����Z%}K���č#�wƟ
�w�6��}�H��R��z[EuH�z�#-ŭ����X�
���L��?��9�>x�[�]7�m��仆��0���;�L�u��R�;�]��Vh�|��ڛ�^��n/O���c�V�jڶ��os��\A�&�)�ށ�e�&��˱���I�Si_���'�/x��<i��mz�Ú�M}u�=�6��J���W����d����p�R/�i%���i~�]���d�6�7y7�ޭ��}��n��m;���w���l�=_úo������,�姚��>�<�w_�#۲�ɿo�6?
�;O��%-��x~�>�/g{��?f�ޯ.�܋���~�կ�	���o��:��WX�y��Yip[�}�[�y��Ֆk}�̌��X�k$��[o�ǁt�9e�[����W��b�}^�o�bo�E.��n�f_�������y>h��.W�N��t���>�,��Mћ�~_���G�k�
|/��w?��f��d�G����m��J��D���m˵[kn������-b�ݢ�����F��j�,�r�$/6r�1�.��V����OK��u�/|#���M���8.t�Y�>UV���7�M��+2���?kc�5lt�
=>��\��+kX[���Ufo����d�W��6�OK=��3li�1�-j���׿���X'��c���i�q(�1�m�����+7��o�
n��^x_I���h���73��k��ʫ�򪪯��X�g�
;_��mkq,ZL�#]۾�h�~�4���K����~�uw��,��n-V-����n�%���/��^�����o�����NRwhg�t�]��y$��T��ۊ����Yfo�V������wn�f
��i�/D��h����^�٫���s��ek6�i��h�m�-N`���/���]��Ļ���V�Z��J�����V�ƾ���s��ß�D�c��sT�(�O�b��Z����
Τ��b��ؿp��*7ʫ�v�v��"�!�E�N��I���2�6�dem�ʬ��w4������ԤҼE�=��j6�/����������w�m���{y��an�]PB�1�jWr�*"�ٴ��]�U�s�zi�KI�_��IF�v:��Cgt��s��&���e����wn���椚
^�o4}�H��y���[����+�g�
/�:��y4�e]"�F�e�P��?���[�TUo�e�[Z妍�#V6m���A�#e�J�.�,�yw+:�}�6�V��ʻ���oe�N�������V?�4�g]�������t��Wr��g5���L��ZZ5��qIp�,l��bV��»v�z���?�O��+"h~0��Qe�v\�
���Vؿ7��5��šƇ�Ck���5)��-Y��_�%V��m�+��ffV��V�զ�F�t�d����{��u�u�t�n�-ľT;]���㝿�з/�YPk���[@�#�Tw;��}������W��2/�=M��L��|�"���Y~�W��;Z��M/M�Y鋍�+$��#{��Yε�ק��
)�����z��G�i�gr��)by'�1��=���ֱ�s�ZK$�Xoq�e�Y"���ޕ��^�ݧ�}Q�Gޗ�_AIܧ�~ª@�"EQ�
�>7��	�اes
���6һ��m��ߟ�vr]�C�_����?͝�(�dR��}�&�s'����ӗ��D��ϟ�+���Ѵ?�[\?�u ��i[v�fo�����s��W�H`Wh��T_���Z�[R�O�-�c6����6�.%����k���<io�|M���0�����M�4��n������5�Vo����%'���^v�[_D��|eg���Iv�{t��t_�޻���_�_*�M=#��|�Y�w��o��_��������ź�j�C�[������r�Wm��w�{���T���6�2�v���~��fۻ����^��u��C^��n|@��]�u���_i�ؿ+�[�cVݻ�e��k�C:�+5�<N
����mk���>A�:I���6>~�����<Og�.�wy,vZ{ě����]�9���˱����۷m��~��|��Ҵ[Y'�b�P�mӏ�s����Z��}�3���?�xvKӣh08���^Wf��vwnfwc�~�uZ��*8�x���v���Z��xc����4�q���D��۷ˡ�R���7�/��U�n���Ĝ�;W��W'����>MS���Vv��:����Oʻ��LGO�/�^sc��XN������P����=�}�H#@^V&ܪ�^7aX�sj4��Z�c��'�����_Nќ�g_�o�Ο��wko&6yngF�;t^�wm����*'ß�7��&�4ȷ�b[9V�7�W{���D����Ws.���ګ���W�S�S[���9
��k��J��f��,���f�W�TX�]�{���/G�o�z��Ή��X��7Nc���%�+�ӣ����h�fD�Yu�ٝ���9�b'�R�M8������C��q*�}�*�6���ߵ�u����h{��r��š����V�s�_�y���2��f}����U�݅lW⮫�7����>1jzV�����V��ڦ�sa+��Y�}���m�Ss'��΍�zG�L^�Q��hڌ:^�E����n�|�*%��ٮ��l����.ߙY6�m�'R���dխ��H�_���}j�6��[Di|�i�b�p۷;nee�7lej�͸�c�i8{;6����_M��~'3�W��R-TZ��/���G�~��Oy�x�Oi�z��,<3��x��W����n�R[�4�mG��i��d�v�+4H�7�;��?
�J�|c��.���b�l4w���A��
�4��߼��}�Z�c�m��_��)��>.G�_x���x�Z3�XR����{��eV���U���'����c��~Ÿ�"�9�|�w�/�N�[
>�)n�W�Q���u��ݱ"v�۝U���~�*�����/+�n��������Ӎ]��o��˧[kw��W��].��/�?�^�������ʫn�x{̭�K�ܿ7ʵ�ڗ���/�7RưB�<��yo�5�?��e/���_źL6I�=^k�M:����S��V-���.ݵ�������(�k�𥭾�/#��z��v��,�{�W��N�WR��7��$�}�I��d~��G��i+t�V�[�[�]\�����j��ž��k��7*m�*�zVg�����嶿
�Y˱�.���.��*�����/�E���o��=����՝C�_f�XM%Ք�<27��,�zmn?�u��Ş)�q��Z�ӡ%}u�j�6W����m��G���a	IS���I�}�n��%��Ӫ�&S����M
�s����G���^֞�M���o�j��|L��I���*��Rt�.��۶�}����ǝS'q������|�R��|��kJ��76C*YS�W?(����a���?�џ��?�����\��~-�ͤ{���Oe�e���o�3�]��}�r~�ݤ��筶�;�zQ�\E}��w�s�> �M���/[��׬n��=��$��ݙ\mel{�:������"n~5Z�g৅|5�°?���s�9o%��u/�|��/̻v��>/�>&��(���o�I�Y�W�1�h_�
�o�֚f�l��4�[����6i�-�'����ڿ���m���YΫ��j������e�\�ajP�z�?��?���������#U�X��jO�Y>�gT���#m�,R+|���f��k�w��`���;Zɦ��d���E��o����*�����(h����?s�S�:����Mu�i�|���\,Q��-˹[k�vm�c.�ۙ�����������5��\nX����f�۷"���~]�W�3m_���OJ��������>?�R�)��״��um;�㯉v:
���*�¬ܷ�5���mi���;�V�r����{��!�kK7�uo^�ɵ�{�m���|׎�J��j�f�x���d��zȻw2����eo�����U�A�S��_��=��ON�e^����~d~��D_4Q��i.����<M�6��.Wo��^/�kuE��/.-&V�3*��}�����~�Q�~��v����[ߥ���D�K�ʪ��=۶�ڨ�{u|
�xQ�|=�k���ִ���W���sc��bv��?��nߛ�]��?,ƪ�3���C�J��>*
�9{���5f������}5��O��^gċ
S_�Ƿ��h���zJ��U��n]���m};�~�??l_��w��=ag-�����%�˻�jne�?5~Yx_�~$ׯC�i��[�L���/��׷\~Ͼ3�|?
�����]"�
Nh�+6�澇%���E�|+[^�m���1��F�%W�VP�����]|�F��>��M�#��/5'Ӓ�ώ�cmYbo���˻�k�l�����䅃}������5�/�g����
Hxr	�<Co��nڅ��_*mm�3}�]ͻs/�U�Z����/�SiZ����j����m��˻r�����%_
W*jk�Z�;��ӽ�H�6w*�M:X�ԯQ&���_O�K�U��7�ᛏ����f��ƪ�"�������N��|�}*�����,���?�|��矺�O����$��5(%��I��|&f����>Uܵ�Z|�I�ռ��:���qk4v���H�:���
��{���j���u��Wv��WWw�U���iK뒥�����U�ו��{'��/�պ%旯�rY\B��8\4_�m���m|w�@��g�ɦk�]�3m���l���Y?��ݯ�_��G��h��)])嵍.���&֕풶r(�������;�m���4&�����׭�#��a#s�+o쫍��
{���P��y�_Kk�]v�~����T�����U����t���ϯ��'������=�����%�,�R�m���+��_��k�o�*��vx/�0�2YXZj�1�O�5눗ΐ��e����[sW?�����S���,�t�5hw+�:�M�u!pQ�>C|�s���#y�ǔP�=��I�,��?ֱPj��լ��u�m�|Y�C3�1-�]<2���V�{>��~��?�_�W�����M���c�_Y�w�\R�uщ�xᶫO��Y�v��ޛ�B;ǒ�b��y�ڮ���O3Io/�#�c}�C(=“��gP���4g۷������Vz�����E��+���d���_�/��^iwS&�}KO������2o_����k-~l���M�|
��W��>&K����ay�Ke�d��{?�4�̰3E��3,�������C��s,�7���̿�*�����k�S��Ҿ�=��������a��wk{��%�9��|�����+|�d���x�5;յ�j��I���l��f?i�����ū8~.��t����G��g����U�^uv�|��.���7ʫ����_��x^�ν����l�����7�6�<��:[�2E'��(�UӪ����~Vۋ�?���t��?F�7�vG���;�V���h�6�{�v�o��k�ښ�^"דV�״�.��?�R��;�Xb����"fF��fݹ��Z��W�:�X�\��I��'u�=�*aj�ZQ�_v�U����u�X����@�v��V���.���Uu
JX�/�%c�.'F�Ss��mۗ��=_@��p�
�
���Wƚ�5���ڝ���$���~��}�&�Y�6Ů�+]{����X׭�?��7Z����:J����ݷ|�|Ы��h�Vڪ��W���4Z?�����՜�=���?�5�w��-Z[�]�1e���m̫}�,�S�+�w��M~�Ί��yٵ��o��;?|)���<[�/\i6z��b�[�U4��>���v���eE����iݲ��&v�M��?�o��x��޵�_�z�Ƽ%�k��Z�w�"yn����}��TU_���L���x���o���jzn�u�*��|����T��%��#��ĉ�n�n��M�6~�Z������q�ln�/-t�˭�Tk(��"�,�$�4����/��/~[)`1��T�iw�tV��v�}Z�f��Z4�Mtj�/���~-�˥�}�N��h,�Y�R:�$�Yw*��yv�V}���-,"y.&���?5�	�n�VU�_w�}.�-o�;𶓦�}����Z1v�4�����i�w������F�W��>+Y��O���,���n�ݮe�t�7�Eu]�ʱ����w��jƜڝ�%����[�]���)B�5:i]����>���LZ�m�[ڝ>TkQ:4�.ߙ���ʌ���Wj�7�n����+}��Z�
����Wο�j
c�_|,5�]>�ź�v�y�D�Mk�~���ge۵Y�����?������Kl.�fQ����&?��/�~o�/Źlsd�Ji6���ץ�3��6Yl3iA�Tm/����.{F��_j�_�yk�<��Uj�5�c��M�r�	ړ�.�_�w���/ڒ=zFK�n�M�!VU��Km���Z���&Xx����G�k�;Ԟ;���3mUeV�&VV��V�\��젛O������|�v�t������Z�R�Q�uV�����X��*����W���H���dm�X�%����%�y?�Z�y��&c��UJ�G�1�%�{�֙����F7�!tF�w��F��ko�����u���k��W��-�F�G��=-[��(�Y�nP����ʭ��m�տ��
A���m'O�m�ub6�u;/�&���w4�ӕV���^��U�$��<EW�(ݞ�y���񖟭�Z|��}���uYo,���l��2������5T�>&��1�\Yk׿�{�|�y:-��32���u�lu��[������ޛ���'��{	��/�/u�=/����3oT��7�U���֗�+�F��?g�
j����Y�45�|7�,��Ix�x��e�w�]~e�Y��~T�T��Gggo�����q��[F���lu��.��}�u/?J�<؄1�+*����_���o�k�c���A��w�f��5_*��G:���<���U�[o���
����]��ߏ�"��5O��xFF�"��c��w,�6����S�l]��+&�m��cE�7�F���iO��i��?������[ю���y��z��b=�$h;��|�[ym��#���E�׷����s�e�8���I�]��&d������6���W�j�?�
�?�$���_���Z�ү�MQ]].����⮟b����K��G���Z���k	���w6�ݙ��e��k�V���h̒kr��ݢ\�˻�k�v�l��ex�$IZZ�-���G���;�_�������y?�k��ֽ���?��R��-�=3Y�Kp�Vv�w>��?�$6Ww3��N����­�Q��|����t�K^��o��m܆mʻ���5�|t��l�=-�]:ϪK�kC
6�_���Ա0�))+�Z~&�*�����㟳&�{���oY�.ɷsn������O�
4���5Xk��q�KE-�E�͖;Q���Wr��۷n�x�;���-5��~���Zl��^ߪ�w-��$_�y�;k3�q֮�mg���\��U���~_���8��<]�'p�Zsrs{'���W�[Y�����r�GS����$�mm��9��f��]K5�����,>�_�v�~�v��i���j:���*���G�����+_?�|>ՑU�&���6���T�
;�;��YM�g��fj�ʰ\O��TX(N���k{��-n��].�
�vO^���?[?�>?�>��`��$ۂ�m0��I_��>#|`��>�|;}��V?5�,�k��Q"M�N���Cy���4m#n�~m��'��c�11En���<L��8|z��v�w�oh�3��m�{5��C�W�Κz>H�|�δ���<��gO���ϙ|My�Ɵ��zx/�Qxz�Y��q4䲫�\<��,{>VEU�z�K��vW�xw���MKW�m�wz���e,Q�c�E��5⺽��]�E�o��Gm��v3��߳��7�e�Ԥ]��?�C���‘6��>FߒY�����W�b1U���^n��ku�v�ly��jMZ��i���������I����/|I�:�w��͜�|Z|����C�o}�dٻ��mb�
��y�)�ɫ�e��7چ����ؒ�D��ȾtddtfgW�sy���m}�Mj�O�F�o����~�W�����8���V�\8�&�#�O�;����m5:���	F�ZV�s��;⵷�?�~"�������ۻ��$PZ��-ܻ�x��x6#E�7'ϱU�Z���k�B�4�uMu�W�-q�O��ý�k�ov�ѭZX�vo����6�۵k��i=@�/t��%ݽ���nm��Eq������۫+L���O�ZTvzg�5]2��%H47��Uڻ���~_�
M.(�s)O/�M<��K���]?�7��4�e�gƟ�v��/|����7�_��˨��mrٙ�?���(���3�nۑwym?�ܭٿ~���64��x�R���o���ڮ�����g�_�ܫ�w"�����]W�
���'���$��$���V=���8�!�3�!L�u�x�4�YՎQ��j���OK%�w��{jՕN�M~��?�N��.��귚��ڷ��K̲H��UVmۛj���M�~�W�?�i��Qc���o)��g_�9V����/�,2��"ԏ��}�}��l���������x��R����u|�^�������Y������ڛ�����5ׇ~�2�Ơ.�����~]>���X�T�?+��ϳ�����?�'�i�`��Umj�&�w�-Z�<��tMI�Ҵ�����E������O�
�\)�7�����œ�
��}No�k[�f_�n_�&���4��J�<��j�wr��n��^��\D����*�-�t��3�����;�ZV��÷z��˯��I���O���ao�uo���ɻ�]ʫ�k/�z��5mj�f��a��Q��o�ҿ+���^<���A�*��5�}�px�Q��}U�_uPJ�v��_�+S?�kJ4t��7e-o��W�T��{�W�a0�>~���|��k�2���Z���9�˫:�-��B�*�|/e�Η�~)����
�)��o�v�&u���Ū�.��װMʵ��<q��b(&���o#m{��m���77�j2���p��_��.�z=I�N�%�NU������O|=��[�w���e�l��|�����Y~���ok3hѵ��妓f�Yٯ�<N�c���k���Z���?d��ߌ��|dԼQq�/�
Z�l�-��u+UvV�bDO�k/�<[_n�ߢ����}�A�M�H�Z���,/��E>����7ޯ�2^�pԣVR�#ӕ7/���G���փtiҜ俚�:뾟rz��'�*��/�|C2��TEGH�,q|Ͷ-�6�ݹ��Y����i��{���t�5duE�����wm����/�_�?�{YӦy�|#�EV���ϝ�v�b��Z��z�^0���񦩩Z���:u�@���+n�ٙ�o�*��o�lp�
M[��[�w����x/��%�2��{ymc��-~�N7p���n��y���e�򟻶����������[..�>`���]��_��u|��;�
^�-�6�$r}�w�:���u��j�|K�/T�Κ��w��!w#i�_�3D�v�F���~5Ɍ��m��e�\�w���U���[(�L&S�By����j��<���q��O�x�G�ln$�W�]�m��ًkn_����A���[�l�φ�!�%���[�Ԯ�{�����FU[����
W��_����o	�cRԼc�#���-���(�~�nM�lWo��2��+~<h��ď��{�x�_����}B��7�R~`���q�>�~6��+;4�M���z �V8`�T�i�]/w�O���_�`��5����&�E��(��Y'���v*��ݱ]~o�\���!�p�dv:��,�īg�T��f�~o�w|�7�[�|j�
�mS[���{v]��
;��[vϕY�_�Y[��Eޣ�kZo�_O�y!�ukvɲTV_�o�*����p�XƬoN��4�N�m�}6���6g�q'R�X+���W^�5�{���<)a������G�ݪZ�2��t�y3�����Zz���:�����yt��x����֙#}�U�̣+�����u}�7~±����z������RU��IU�H�n3��o��(V_�����{�F���x_G�ڀѲۮ�?���4d^f��T3j�Cgg�k�t��#��/r�g��s9/�n_G�Ϯ�m+�K�	-�+�n���/�o�uk�q_Ϭ���+���A|��O�}g�<9�u��k+�a�6(��g�H�墍����-0��>l5~���4җ���<��s�0�ϟ^u:{�z]�����u��(�k��?�k�4�o�_�ɤBˠ��"��ݛ���mo�_�ukcY�/m���wȷ|.>���k���WZ�iu3��� �wW�t�2w�V�?��(׭���e�՟�߳��t*M����2�oJ�}�æ�#�S��(_�S�˥�d�P��{��O�nxܚ]���s"�ϱ?��j��J����|ա$��?�\׉<aam6�q?� ef_����8�j���ב�+��ҭҵ���%�wެ��6�Gh���V�R�t6���7ʿx�]��X��L�c+y���J��m��?�&�Jy�:�U���
%��!ε^�����{����&�n�%�d_B�{����?|q�M�|S����x����IJ�<�)�BE������u��1�Eg��E�����Xך��5��Ϸ��[֍5	Er���SNu�)��n��k:Jx[H�/	\2��Hy�y�EI�DVc��J򲲪|�ʩ��W���|��5_x�þ�+��K]Ĺ� �~��e���;�U[��o�����k�0�����ڧ&��Ogl�zл.-�/��?uY�e�X�p����_��}�jB:&��v?�_������G��_���^|��|���YC��[N���YbT_6v�����G'�UUZ���O�|o���]����4�sXд�.����>v�������E�6�m��(���I/��_4���T�?���?N:%���Վ�x�����ie�Ȫ�準ue�㗿�l���2��j����<:���u��ۢ���[��kn�,]:��n���id�^Z�;o��L�����U��{���"_�-K����w��^!��b_x��׉�l�v�@�1�<1D���Z�����>�f������+�f�"[���9�&o�Y�go�w�g�j�?�������h�޹�xo��5)���XYc���X���X"�cn_��vff�Ud�@�?i?�,�I��h�l����f�-�Ⱦa��,����l��2���*�Z\��m+[ko��i���Q�Jp��WK����n�1�Yx�x���v�2ϡi���nv�7�w�l�V��e�)xV}4�je�⸃R��7��o)�վo���k�X��|	�]�un����[�B�Ѽ�U�k}�m���e��q���ӡ���o�D�]��Y�?�J�3|��?*���m�9�\��}	+6��}6^z-;#��x���W�
J�m��eww�v����#��>%�t��dVo�~����������o�D��>3~�z֥i���E��O��h���ݾg�m�`��Y�w������<%��w��求-VM�6��V����ܝ���f��۾UdvV�
+������
����i����]&�Y��%eVtfV���[�U��˾�E�V������j�tծ�4���|���RMUi��V�>���/|C�uK�	�k	#vWI-�'۹���o�k˼i�k�����R\y�@�r?����[�7�+���m/����5hu/B���奬����������4N��2��Y�r��c���PO��3M�_�K}���%_������(E���i�V�=�����ni���i�rZh��^ks�_�$g��k�>~��
�d>��W����|����G�v�"����t{Mj&���0GqȪ�[k|�o�����gឃ��~�l�-����U�t��������TTpЦ��2���N�yog�6�w��W�oXǦYx���|�KEʌ���676�s�Y�?�_|	��~xO�7�!��m<?uua+�mp��,J�̪�YQ[�U���I&��eOn���0��t]�YT���ς?j�#M���}�����n�y ���kؠg�ޭ����/�Y��Yv��7��v~	���%����}÷��.��V���/���w��>i:���49�֡Kk���d�	����Y��j�C���R�7�H|���E�t�of�+�l���[w�5�?�V��+�N�Ct�]7���w>�*�e��/
R���kt����KX���Ȯ-�#r�u�|�����eԥ
-��[~_�����ο��>�w�����:��캲��F�����Y�eZ�?�3�~׻u=G���2�wZ���[.߼��W�����_5��J�7��2��o������5�;����q�Iu�宯�Wg�?��e��j�;����]��/�~�i������|D�,�����	�O�	�%���c�tƗ͸�&�u	�W�kj����U�UUW����_��T�*��$����?5�)�I]_����E�t��cֵ<��E�{W�<�v���054�
�oj����>V%w7��_6�߿ ��/��1��ϊ�k��B�鶖��D�ʉ�M�ƌ�r�.�ܘ����n�:=޻wt�f�e��|�^]�ح�i�
j�Xo|�{TV��v�W�}��{�����0�O��+s���_���v.lT'%v��i;�;��O�`��0\|۰~fj���C�Kqauuk42�N���z�����o}�<�ɼA���xWX�r��[	���o�k̼/��A�D]�&���|U�f�i<%E.e-~��Fk��p��7x=����;�?<g%�Cs}5�C�l�U���j�>:x�M�����?���|���Q���/_����M�~���W�gT0T�"��o�Ϛ�`��5o��2�ᡯW��#m�/���~�P��6���=փ�B��|�1�x�c�V��q>c�;��qɰox��o�COfɱ��n��ԿhM��{�_M����x=#�vW9�xM>o�?����v�x���o�l7�_���||П�Z�/�ŮwZ�ˤ^C(K���|�������\v����[�X�ߝM�7z��Z�n�*.���Ҟ�v7�E�sDf-6���yl�����&����˦�1o� �����xky�$q�k���V���%���$�����OJ��o���o��U���}x>n�YW��j�\i�
+[���}�v��^���\����X��O�u�E��%����efU��w3(m�����k�~
�~/|f����4����`��1����=�촫^�^���{�]�on�#�hB��+Z��/��k���KF�����c
ط̵O�[�����_e�z��i�xWǰx{��ܚ����yZݦ�o4}��bBȱ:��v����f���E�D�~����(���t��b��Q�[�yJUWvߔH����m�ߗV���0˙���z�ռ�q���j�=�-U�WO��Z��l|��h�V����}]~jׂ;�Kۯ��ƽ#��Y�{�j�X�Ş
�l��a֣[�?��H���v��ڿ�mo����]{�W��56��ݵ�[O�=S5ZNݿ3^�*�u��jw�~���߉��Ku�5���Q�U]͂��|�*�v�]o�E�ï^h�,���m=��m3.���[k/�Y[���_}~�?��7�z�tx�þ+�狣MG\խ�.7#n�(��D���.�o�snj��_�
Ρ໯��)�O��[V���X�wmG}�4��v��۷����8~�h{XM9%����qas�=J���ok��?�{Y�>!�����[�7�}��Cqz�4�g>֔��̪�[�j�~��	]��ݴo�	�/6)$���n7.�d)/ʭ껫�;����_^<7H���)fO�"3y��[v�}ߖ�N��>1�%�aq����|=��׆�k�Z��O*V�켘�yW�ݹY�Woʵ�X�����܊��e���X��`�	�jߖ�z{u>HԿa_�O��}7�~<�m���xquuk,#��go���36ﺿ6��%��?���_g�nf�8}C�Hd_�2�*/����Z�}��<�+i�Ȩ�~VV��/�e\|<Ү#�P�g
��2/����^x�=����t'ʭ�j��練�rjѝ�S�_�7�=~��xsĚύ<��Z���T�nnW��쫹���n�o��|K�U�5g��K�.M���H�	����羚�	�i5�K{�����tV?����?�2��H[�m;Z�Y���� }�7̤6��V�\�+�pʧ�z�~[?�+�o�q�/c(趽��t�w�~{���5��ό�t��_i�6�Y�~܍���wkW�ďڇ��KK{�Q��.5�Y�4�KH�K�Y��Մ3��E�7neVܻ~�|���&ׁ�A;�E�ˏ
�6�i�Y��-�ى�D�ܯ�j؇�><��^E��jv��m������N�"��Ϙ����ٖIWd�Wb��p_e�:S�����V�H��z;������O;���s���4��f�{h���m�����TLּC/��Ҭ㷷%���-����|�R?��w.�!�m�5K��~	����W�g��v�*�����$Z�i���=Y�&����m���{��>����3�-E�-�E��"��Z=�d��ٙ�U����D�6�fm̻~Geo���u��Hx�_񟇭�O�*N�c�L�d���d��&�]���]�ݮ�.+����+n�լ��������X{Z�#���i���={��I^�.~|F���t�^xUuH��+��rD�6�)x�YY[�Eo��k��#�/ÏZ�~�,i�=WD�b���\�s"}�����o�^6��g�G�x��%���K��*ھ�mw����S���Bв�4�cVU��W�v���c��sL�t}N����]՚�u���md��w��Ѷ�+
�3���˵Uwm��6�U�1���a4�S�kG����mvӷ�a��"�ޟ#�V�m�
�Z;=�[馬����vRj_b��t��!��?�G�O�Y��m,St�pE��Ȣ�2�)�I���\\�y6�|,�ryk&�V����#�z�[[�gǶ�^i��s�9B�W��>ffX���U�e_����/�x��Z[��YYz�'��|��^����m�o-֧�k|M���ޔ��M�)�t����ڼ�z���Wsyn�h��5�;�:�N�~#4�^�*���9���2�?�ݷ��]��~)]�y#d�k,k�����}���z��C�Z�,��}��P�nj��t��n�Uu����o�}�
_F֗K��1��,���7�����~,������E��;H�[�X�2������|ۨ�qW��e�VW�g\/���Ǚ�2�t*{4�~w����O�.M����k%�����O��~ݞ%/i5��WI�ԒVmޛ�ʿ�W�>�����AwHW��kB�k��#����B�,އ�f��{�W��ɵ](I}�4��������7��z�N�"���f�/=Z�����~�e���`����~]���g־4��4�\[:�\I�cv每5_��?n�k�����>�?�/�c�*i�p����$v�Uf��kF�pܔV�5o�Z��E�~���ơk
���-��ԍv��.�+���o�1t@��Y����_`�(���k�֍�m
�
@�KKh�EEUA�r�s1��6k겉bsh:�ĕ=,��������kF�^…�����~,�D����|���i��W_t�Ȭ�z�m�=b-�R{K��7����u�YYW��؃���W��Z�f�o����ʉ�����6��uտ��?༟��Y~�����<#'��o����zi����������7�X��C�ǿ����I�E�-|K�}B+����%�h��#*,�'�Ҷ���"���}��xb�LE:�y�84�f����껜|ֵ8J��:i�z_���;�fTm�~\����^s�z͵i�--g���v�-������ح�M�k��[Wƿ��nm�)b�]�s�H~Uʯޕ�c_�}03�k�>��LWM4�ڦ��m��o�@����E?�nffoCZ8���i����O=�Z�u7*rMnQ��It���S��Gh�����E����_�k�����1	$k�Qj����Kw?ͷ��W��i�j�|�޼��pn4v_?_/��m���o�KR�ڶ.��i����|�Y��=���Q[nO�X��6xS�}�-׈�_�Yh:=�����ϵwD��2�mDVf�j�5i�N�v�^�q�(�_��߷�鿴���d���!���D�߸x�v��75zoß
x�~4�d�F�ci�Y������
��?�����ʞkm����k揃��}������lR����i���u��Am,��嬛�r��UUUf���|%�����(��4�&��D���K6�#����ݷ��"���Uq��J5~˽��_+�~���'�A�K�����O�����_<~�۵�5��,��[�����u�/�|׫�Yɣ�u4��[�<�w������6��?m�|p��5��6�*5��hѥ�_���o�V۽��wu{/���Y���'�-��ko��/����!Y����V���k���|�S����V�Io��y��u�Vr[Z˽�.��W���y$񷁴�Z�K�F-KA�F��˹�66x���f���_~ؚ爼Ucy
đ[ïnO�K��o+��vm��|�����&��K%�߇g����z������[_j�ͻn��W+��
o�KU���-���V�Ks�-3~�f��h�*����Wc])ן��]6V��u�����q��n��_��=K���|�f�f��j�Z��m��R�v������.�*��m�,M����M��Kn�ٴF�QA�k.�vuU_����W��3�
 ?l�^ �%݄�ڮ�o6��^����|�r����ۻr��nZ�������������j6��:]�����
��"��}������_y��Q���P����ݿ��#$�%���t�v��.�_��ձ��/��!��y�-̿��Y��ժv-�͕��3��}�^��?����7��+6W�PM���G6��eRW(�`��P�Ÿ��ߏݬox���*b����c���R<���������W�t+F��;F`�#
����2���ѕz�ʵ7D�,�MO��M:�G�t�V��O��ʂ�%����u�5oP�.�M|���O�����Z�ov��G�_�W2�'8��/���Ԕ%/��K;5�_�2����+W���S=��j�{kx��"��=Y�Ȥ���U��ڨ�憙e�J6ڝЂ��V�ںY�6��7������I�:)���.͞c�����5��s}��!���7�VƗ⫍)��7�@�����&�8���/�q^���O�hWZn�g
�x�\��.�}����oÿ>����i�>�Ff����毢-~ �6�!�Q�����X��$w��+��~����f�]���\�S�K/�1�	?�ͤ��]ϙ5o��[Z&]�.��/�xuB���zW�~1�դw�&��{��k��<7�j���4n��7�o��Z���-wMh}�Oļ�U���Z)?���+#P�c�w{�]��<7��y}ykci|�Nꑯ���<���%�ٌVq�M�r�ʉ���o���*�Fm��
�Q�����-�T�7���J����T}��<;�N��������������ֵ�?`���F��|��f��k���5}j@�jcm�go-�o���V�R�/Oݺg��ɫ�Y�_��H�z^�-ռ��cʪ���U�v��S�Z����.���m��|��5��<{�xNmz�@�_H��7�dV��������|7���FmH��l≐�ڲ;�ڻ���S�k��h�"�iB6���i���y��
�ܪsY����K\��ڕH�?��.�kß�>.��,4��_��V��N��*ץ��V��
s��^��X�ن^�{a�s"�U	�9g��ox���
�ZM
�kr���k��^U�C���m�uW�WmyY�>�cm޶�o�=LW��>J���O��$�k����Ǟ���,��O�����_�~��n��}�o�_��^࿷>���GI�+k���������]�{��}݈��m�%����W^!����q�X�	�]'O؟j?�Y�Q�G��s��Wo˵v�_���:��'�|)�4�4H`���$��6��4�YW�V�B���e�׎"\���v�����{h�K��P�c���F�/�zr�ݽ>w}v�G·<K�_R�Ķ~�ƕ|�u�O/�/��m��7��fߓ�~�fU�Y�
?j�ߊ�F��x{B�?������<I���N�6�ܗw��]��Y�k3l۹����(�:׊5�~1���?K����4S�ٕF�U�2���6߼�꺇�E�|%��|����;���4p�-�L�6��ī���m�{�ۚ���1��Zqq��R�F��Zkש��y�JrR�RNѼR�i��Z����?���7�}ֹ���>�$ѵ�{p���y�f�����W����>��ß��<�?�5
v�=%
��q�*���6�v�_�ݻsV�z�&�?�
<x�_��#{�ڝ֡�^�ݵ����ܫ���O�_��c�L藳��U���8���U��R��m쫷�_���毕}BYw�T�m_��{��G��u�t�TX,7�����V��kӭ���-Mk�2|;���ÿx�ῌ����]c�!Dm�K#O��f������]����N�G�f���sŚޕ��ѵ9͎��w��v��wkmo�sW�~
���a�����C�&�g��*��e�F�o�U��_L�'�υ�kKa�}A�N��\�>��E�kkO5��5��|�[jm����B�>�2���wR6ӑ���sEꓶ���^o���%��kg+�^[�g�t�4�|vҧ�-�7�K�~Uw��}ɹb��͘�̈��[�/�Z����?h���
G�F�Z��Y<'?ÍQ���T��3N��m�c�$����_����o�ѿ�_����k7W�}��¬�-�<�gn����/θ��>�C��ī/�x�ŗSj�ުb��w�\�<��S}�fm��W�v��p�o��'�x�s��-�G������q��2L�S�T�{Z-�ߒM�۷S�4�j�KIa��ٝR�R+���kpȮb�wm�ՕY�km]�j��Бl�l�x��x|?~|<��^xz-2i�Ե�Ɣ�t�\J���I)M��w<�7Ȼ�����O��Oe�{�m{q
��w0[[DҲ��w}�~ef`�v���řN��S��U������|7[������<��W�J�F��[;Y~�{�1��/F�x]Nߙ/�v�[Kk���-�k���Ve��J���.[Y��SS�ؘȻn��v�ݜ����.,VU����Vm�Qyfc��UFwW˾&Ͱ���p���ԓ{;t��k}�&p��>��Ó�~���}�)���V����x�H��iS͍�_j��?��˺���o�\.�
���ۯ�\kI{f�s2�̰��|��6�}��^O��-���(�;�eόt�.|C���xoRӚ���w/��s�R�n�T����Eݽ�W�W��sL�g�y8��s^���}t�{��C�\ۈ0�<G>���|�Ϣ����G�>���q�/�Hm#MDa�N���p�D��ᕚG�Uw|����ݶ�0l��R�����u/
�0�io�Ht�t�v:����Ҵ6쫵��n�U�%e�۫�����Wů��V������G��.t��KD����t�UR�Ui�V��6�fU��_���J���%ա�lu&��lMF���UhUZYWv���O������U0��B�8^�|n7J�i^�e���\�!�����l�W��i�{#�d���D~Кo�<%�x�ះ�}[�r-����,�n�]�>W�mۑ��2׵����wK�>��7�u�:[-�6�L���ɵb��Vo5Z$gܟĻ�~q��WpX
7�w?��S]=��7�Ժؙ��+�Kj�Ҫ�:3��/�w����ۍ?D𾓥Gy��"ySQ�[tdg�vum�36؛k2�ʵ�X�9F>�;Zֺ��[�ɯ?O��RnME]v��=W����o�oƷ�R�<Auد�I4�b�[E�m�4�?�
.�t��n��V���@�~)x�R�<c���e��M��G�i)#�DveUo6TT}�'ʈ�z������M^c��y���hԵ[���R�etDH|��ʊ-����#��ݬ�]�����}��m����n��+-?PF�ԥ�wH��wm��ՆUVu�۾e���ԫ�%i�w���{��n�Zt3,Kj��%m��yo��=�G��u/��s\����k�f�Ԛ�;h����]du�v׋�Y[�j��'6�⟉5o��[�����;�n�P�T�絋�l0ʭ*I���J��oʿ*�'q��K�-l���k��-I+켇w�vlmm�7;n_᯾������\_k�GS��I'�5[�eצ�j�Z�Ud}�
����M��{�
��<;��>�N�Z�[y��.��`3{z��5wW��k��k�5m,}I��.�ud� \���:�����s�i���g�n��(^���ٿmo���Y��'��	o,�wP���+|�/��.�w*�ߗmyǁ,��4���֯��^m:{���v�h�2�/�ʿ6�]�_���1��R�RV��wz+�����q�h��`��w���E�	���O�Ftd������~V��ֿ��6���t��ںȀ̬������kVz��}s�~&��N����%��:K=��iVE��%YS+�����<�P����kw{���_�,�[�Y2�˻o�]��W�(U�ѕ���J�Gk��=t�|�E��q3�j�uΗ��g�����g~ާ�߲w�sa�{�7�^"�}.�K��xE�����VVf��m�z�~#�P`�CA�i2�x`�sq����G��_9Ok��u���J���B�=����X^%���e�7�􋏞��S�,FDW1]*�duO�z�rb��#t~���Mv����Y~�O��R�2X�Ɯ����'���l{M����]*��
���on���jֵ��uY�飼��g�v�Ϸo����o�7>�W:՛���yپ��Y�A��Z���K�ͦ��맊ug����,m���̟��UfmJ��j����h�G�<���4�F	t�'�ٳ���3ʼn�K�j�+�G��2���nݳ��Z��k����*���~/�g��M�q\|-�.-��6�.!��X�6���m�:�_��V�r�#�2���Y��t��*�ïE��}қ��t�-�w.կs�����bӵ��^���Wz3�?�Vts'S8��QWK[[OM��[o��M�?��D���%�d�'����/�����z��xkJ��Xc��D{�n~IA��6Ult�7�~�|�	7��
�7�o#�l5�ek���*����P�����ٯJ��T9�t\��&���׽ߕ�4~}S(�q�^�v?G?l_�+���SA���?���r�;I�dX�z��}��A�s�߻_����{��z�k�}�[�n����m�?�_�sz����	m��X3ė>��v�'��]��me}���۷U?�#G��KX�c�
�ee2���«|̠�]�^6kZy�/�q
��J�����}~�y�8;?���.Ϧ�~=O��e�GT�O�7��ll�^ ����x�l�m��F�kn_��;�d����}��c�R��;wH�e:D�Ҵ��f��~_��_���� �*~�3����-m|=�x���U༚��Fߺҳ��_��uxO���?����7�G��o!�d��._��z23��h�Uf�~o�k�|n�=���YY�]��C��"����]=ӿ�c�K�W�a�-sU��7�E�ޯx���.�܉�Lվ�7����G���'L�����CQ�-�u��v���w�������'����O��Euy������K+J�t�~fm�D�^��	�,|1�.t߆���*��McM�Ӎ�ݻ�+�hۦ���̺X8�J�P�������Q�޷�9�o�'�'�?h�]�T�cԳj*V;�iWs&�r����fU]�W�B�|�����z�E���%�����?�߿��|�7�
�{,��6�H|=�o	�в���02��z��v���]���5kU�D�"�M�Γ�A��&�'ef��Yk�μ��B�^���~l�:<)�ࠥV��o�&|5����]�
���x�Y����Z�as"@�n�o
����uiw�nڹW�������+����âh��mu-#d���`�$�˱Wk���]���[�x���;j��$�+��yw�4�~o�����W�|<Qk��ۣG�glq��E��G�U��*��6wKed���K�L󱙎�7O6���G����;�a��T�X�N~���S�]*�����UI��G����>X.��3��q�do���ߘ�
�ܐ��H�og����|u�K�AR�?���3����5�K�>�����Ϻ�w���mm^�O6fl7���K�w.�>b�6?���U�r�����k�O&5(��_���
��-A{���hv�z�؞�=�[w�U�k��V�a����CČ�5Q3�n�v��Sym�M��-�jo'�ZD��hY�&�*�u�V���e�X��?�2�^[���]�l6�+8����1��q���w��wU�Z����{���U��)����!1����/+��_y�;�
y����`ҵ=B?j۞+�����V��*�����_]�lYZ��yf��̫�W��Q�ox�RԼ'd���mbkXmeI&km�6"���2�3/˵�|���41S���z'��N���o�^�F~E�����_~�>g����S��G&��__\*���c�q?����6׼P�<���y�����}ڵ�j>)���
�_Z��W��C+mfk{�f�r��3*��+p_4��,gm�M*�ި̯�{o�c_�y�W��kw/W����c0��44^Z|��u/�;�RF�o�u��o�
z��隷���Bi�W��n�c��d�V��qpz/�;�����y�[=cw��s�D��'�w����\�W|/}�?�Rx]�?�Յ[�׊�{c�g���V�К�7��5�f����m���Q��R�y��F�ď�,|Y�XxZ�P�����ޟs�NR4���~�����s���xo�

�_^�^!����~�{-�m�V�q�&����%~̾)���&'�4��-��3z�I�B��'͹O�_5}_�@~�����
ST����^3��R]w�4kp��m��o�,I�nm��ʻ��}=zX>��*:�ҳ����N[ݦ��m�]OK.�;��Z�:}կ4���&����l�	�ؾ�8K��B�}N>��co
��f\²GTf�Y��Eo���Oï���;-_Z���	aK�I'��(ⅸO��ݻq�3m�����	w�|�������Ƕ6w�=*x
����	�{?�*��s�����ƛ��
j��v��Ϯ]�쎪"��UQ�X�������j���K��n�jI��V�Ϛ�<t�#����~{�M��qkM޻�c�5�x>MCM�_ڝ^�7�M�co�L�Ru���efTo�v���iW���]A<Dl56����D�R[33#:K+�L�������/��^��WX_]xQ�|!��Z+x�V�_��@��|�b�~Fh���|��e����W�/�u_|EoX[�-���ٳ�i&��I[s:�
�2���5��=�Q�ՕU�����KMV�J��V?'�Q���Buw;9��ew�m?>�O��5a����e��f��O�ˑ�/��o��Z�]@��V����-[V�[UHt�V����*�no��6�
�$��u_��.�U�
F�Ú4����������Jٸ0�	��"���U�r�f�f���_�뷚~��հ�U��mo�>X.��TeO��6km���WfC�	���5n���۵��3�Uź9\y�Yzyٿ���y>+���2ҵ?
�XѦ�C��-ⱋ�߇v]�����j���A񅶣6��R�P��h|��WjnUG���x/�n��
x^^�w�yl|���,=�uV�����������Awg�[��j�E�ݝ���n��6�7��ͷv֯�����8{ה��2I蝒�˥��3�2�
�V���!�i�ܳ]U�m��n}��h>
���֤�G���뇗qK˒��m��O������:��u�Kĺ���.M7�eia�*���Q�@f?Ż-X���>'�|ա�u?h�߀�)s}l$k���bM��ww��_5|z�|{�_ګ���5}�R�]���ɔo�M����m���sb����)��
�m��2�V��z駛��ʰ�#�N�:r��mkmV��[��v=�X>�Y}�_Z���-�ol�S��*2�����7�5�/�?ऺ��>(��E����!�tk+{�v��2|��b[���0_ϭx��5��l��b��m���_�m���3U��ث������񕾿�"�-"�Vf�5��I]��;*��m��^�	a,<���W}[m_O���AV�\�5ez�;/�Iiw���q���ml5(��?�mb�h��Ȼ�?7�Տ��>���}7Ě���=1��A%�%a>Ω�W�w��{�~Ϳ�5�9��e�o���m��}E���6<�{|���"�W�Ukͬ?g�_
<?��wC��7���꺇�%�۪�nu�]�m��[����|1��Um�;�Z��[+�'���c�"~��<�E+���m����=����GNӼc��}>{{�u������x�w+2H�m��\�����wE�g���&�\��j�n�k�y��O;ω]�7�}�U��>2~�?g_�{x��$\�G�:y[��Ҳ�k����_��/�'�a�u�Ht�[�Q���y�o/̿����mݷ���V�\���/	�������^-߿[^ڳ�s������	�ź*i~V�w��-�]n�e�{���Q�#�z>���+MMQ�����Eck�/!Dv�d��.�w/˷v�j�~*��ߍ��K⎣�b�����t
6�R�{��J��f��c�E4L�Q�;Wj5z��[�
��A���z����ˬ]$��Y���]�]v��n����^�
OxZ[�t߇�Z΁d��ݖ(��i����+p�q*�J�V���g��6U*8Q�m�u�ޝ.����m��~0��8�LD���*���Qw��u���{iѕ~"���G����_�:��|A�}*��H����z
��y{eYbg���ws�������~"M7��)K�&�f�Ij�R�ۣ;;"�.K7̪�U~Z�'����>(~��|@����z��+�}.�E����Oo���;�?v�YVV��o�z�-t�G/�"��ڛ�$�~&x�3c��\�ˢ�|�&��+L�++|��Uޯ��S�
3u���Kzh읬�ύ��r�5JQjN�6ӷ��u���ǯڌk3�֟����~�N��_�]-��n�ݜn���*�n_�ڻ�o��~��9�[�_���Ŧ��'�n%���th�V�K�dު|���4���GhO��g���W�j�,���\iPy�䉙���*����W�	���W�&�|�;�_u?j�oNx����gVx�Wd����7o��-s�ha#jJ-5m|�ե����\O�X�8iA�i{u�~�.��l����[X����|�מ�8�%������
ջʩ$�:�5ZXշ;n^*o|M��X�%�j�x���mJ�Y<����5·�p�틹~m�~�����5�P�>2ݶ��N_�kUkXV�Fx林��Ĉ�.ؙ��g�����������8�[�#�)�_Þ�G�<p��ʧ�.�d����m�,�>%gv���oᮺ�p��Y|)wi�+���w����m[�B�*�.�O��

MMCT - 2023