/*
Theme Name: Twenty Ten
Theme URI: http://wordpress.org/
Description: The 2010 default theme for WordPress.
Author: the WordPress team
Version: 1.0
Tags: black, blue, white, two-columns, fixed-width, custom-header, theme-options, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style
*/

/* Basic fixes & styles */
div,ul{zoom:1}
input{vertical-align:middle;}


/* Input with class="type" & class="hover" for 'submit' type */
* html input{
  behavior: expression(
    this.parsed ? 0 : (
      this.className = this.getAttribute('type'),
      this.getAttribute('type') == 'submit' ? (
        this.onmouseover=new Function("this.className+=' hover'"),
        this.onmouseout=new Function("this.className=this.className.replace(' hover','')")
      ) : 0,
      this.parsed = 1
    )
  );
}
* html input.submit{cursor:pointer}
* html input.checkbox{border:0!important}
* html input.radio{border:0!important}

* html #video_main .leave_comment input.image{float:right;}
* html #bottom_boxes div.box_1 input.text{padding:2px 0;font-size:15px;color:#C7C7C7;width:135px;margin-right:10px;border:0;}
* html #bottom_boxes div.box_1 input.submit{cursor:pointer;border:0;width:84px;height:30px;background:url(../images/btn-sign_up_2.png) no-repeat;overflow:hidden;text-indent:-9999px;}
* html #bottom_boxes div.box_1 input.hover{background-position:0 -30px;}
* html .boxes2 div.box_1 input.text{padding:2px 0;font-size:15px;color:#C7C7C7;width:150px;margin-right:10px;border:0;}
* html .boxes2 div.box_1 input.submit{cursor:pointer;border:0;width:92px;height:33px;background:url(../images/btn-sign_up.png) no-repeat;overflow:hidden;text-indent:-9999px;}
* html .boxes2 div.box_1 input.hover{background-position:0 -33px;}
* html #kiu_pilot{width:381px;}

/*  HOVER fix */
* html #nav li{
  behavior: expression(
    this.parsed ? 0 : (
      this.onmouseover=new Function("this.className+=' hover'"),
      this.onmouseout=new Function("this.className=this.className.replace(' hover','')"),
      this.parsed = 1
    )
  );
}
* html #nav li.hover ul{display:block;}


/* PNG fix - short version only for img */
img.play{
  behavior: expression(
    this.parsed ? 0 : (
      this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+this.src+"', sizingMethod='image')",
      this.src = "images/blank.gif",
      this.parsed = 1
    )
  );
}



