/* Markdown.css */
/* Authors: Kevin Burke: http://kev.inburke.com/, modified by Evan Wondrasek  */
/* https://bitbucket.org/kevinburke/markdowncss */

.con h1, .con h2, .con h3, .con h4 {
    color: #000;
    font-weight: 400;
}
.con h1,.con h2, .con h3, .con h4, .con h5,.con  p {
    margin-bottom: 16px;
    padding: 0;
}
.con h1 {
    font-size: 28px;
}
.con h2 {
    font-size: 22px;
    margin: 20px 0 6px;
}
.con h3 {
    font-size: 21px;
}
.con h4 {
    font-size: 18px;
}
.con h5 {
    font-size: 16px;
}
.con a {
    color: #0099ff;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}
.con a:hover {
    text-decoration: none;
    color: #ff6600;
}
.con a:visited {
    color: purple;
}
.con ul, ol {
    padding: 0;
    margin: 0;
}
.con li {
    line-height: 26px; list-style:disc; ;
}
.con ul li,.con li ul {
    margin-left: 24px;
}
.con p, .con ul, .con ol {
    font-size: 16px;
    line-height: 24px;
    max-width:620px;
}
.con pre {
    padding: 0px 24px;
    max-width: 590px;
    white-space: pre-wrap;
}
.con code {
    font-family: Consolas, Monaco, Andale Mono, monospace;
    line-height: 1.5;
    font-size: 13px;
}
.con aside {
    display: block;
    float: right;
    width: 390px;
}

.con blockquote {

    border-left: 5px solid #bcbcbc;
    color: #999999;
    font-family: "SimSun,Arial";
    font-size: 15px;
	font-style:italic;
    line-height: 21px;
    margin: 10px 0 0 10px;
    padding: 0 10px;
    width: 100%;
}
.con blockquote cite {
    font-size:15px;
    line-height:24px;
    color:#bfbfbf;
}
.con blockquote cite:before {
    content: '\2014 \00A0';
}

.con blockquote p {   font-size:15px;
    color: #666;
    max-width: 590px;
}
.con hr {
    width: 590px;
    text-align: left;
    margin: 0 auto 0 0;
    color: #999;
}
.con p{}
.con button,
.con input,
.con select,
.con textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}
.con button, .con input {
  line-height: normal;
  *overflow: visible;
}
.con button::-moz-focus-inner, .con input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.con button,
.con input[type="button"],
.con input[type="reset"],
.con input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}
.con input[type=checkbox], .con input[type=radio] {
  cursor: pointer;
}
/* override default chrome & firefox settings */
.con input:not([type="image"]), .con textarea {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.con input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.con input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
.con label,
.con input,
.con select,
.con textarea {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: normal;
  margin-bottom: 18px;
}
.con input[type=checkbox], .con input[type=radio] {
  cursor: pointer;
  margin-bottom: 0;
}
.con input[type=text],
.con input[type=password],
.con textarea,
.con select {
  display: inline-block;
  width: 210px;
  padding: 4px;
  font-size: 13px;
  font-weight: normal;
  line-height: 18px;
  height: 18px;
  color: #808080;
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.con select, .con input[type=file] {
  height: 27px;
  line-height: 27px;
}
.con textarea {
  height: auto;
}

/* grey out placeholders */
.con :-moz-placeholder {
  color: #bfbfbf;
}
.con ::-webkit-input-placeholder {
  color: #bfbfbf;
}

.con input[type=text],
.con input[type=password],
.con select,
.con textarea {
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
.con input[type=text]:focus, .con input[type=password]:focus, .con textarea:focus {
  outline: none;
  border-color: rgba(82, 168, 236, 0.8);
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
}

/* buttons */
.con button {
  display: inline-block;
  padding: 4px 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 18px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  background-color: #0064cd;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  background-image: linear-gradient(top, #049cdb, #0064cd);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border: 1px solid #004b9a;
  border-bottom-color: #003f81;
  -webkit-transition: 0.1s linear all;
  -moz-transition: 0.1s linear all;
  transition: 0.1s linear all;
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
.con button:hover {
  color: #fff;
  background-position: 0 -15px;
  text-decoration: none;
}
.con button:active {
  -webkit-box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 3px 7px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.con button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.con{font-style: normal; color:#CC0000; }
/*´¿ÎÄÕÂÄÚÈÝÒ³*/


.con1 li {
    line-height: 26px; list-style:disc; ;
}
.con1 ul li,.con1 li ul {
    margin-left: 24px;
}
.con1 p, .con1 ul, .con1 ol {
    font-size: 16px;
    line-height: 24px;
    margin:0px 20px;
}
.con1 p { text-indent:2em;}
.con1 pre {
    padding: 0px 24px;
    white-space: pre-wrap;
}
.con1 code {
    font-family: Consolas, Monaco, Andale Mono, monospace;
    line-height: 1.2;
    font-size: 16px;
}
.con1 em{font-style: normal; color:#CC0000; }
.con1 em a{font-style: normal; color:#CC0000;}

.con1 p img {text-align:center; display:block; margin:0 auto; }

.con1 h6{text-align:center;}





