
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_36ad4194873936eac00b2883.woff')format("woff");}.ff1{font-family:ff1;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_30c56e4e340517addca9539b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f58031840004c58f874377cd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_62e5c0807f45b045c5d7d754.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7b2d36a03252acf5c65ab59e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_dfa75bac17511dc97962e652.woff')format("woff");}.ff6{font-family:ff6;line-height:0.726562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_799b8701a23a2d9e13f7b87a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.793457;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2c939649f2c6575f4a7d4026.woff')format("woff");}.ff8{font-family:ff8;line-height:0.932617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_edcf8d3ba116031f97868b94.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f55308cf9191d69be3882182.woff')format("woff");}.ffa{font-family:ffa;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2795506c546c973e04ece051.woff')format("woff");}.ffb{font-family:ffb;line-height:0.940430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b7bcac27e527262b2f782e76.woff')format("woff");}.ffc{font-family:ffc;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3985d071876a7fd205efa05b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ae5d7a2dc839c1dac6ea6668.woff')format("woff");}.ffe{font-family:ffe;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c10fb345c2832f9280d6e7b8.woff')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_bbb58514518c5eeb7004c075.woff')format("woff");}.ff10{font-family:ff10;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f78f4252b136ec89370f5d7f.woff')format("woff");}.ff11{font-family:ff11;line-height:0.957520;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_45bfb235685dd7f3e2174902.woff')format("woff");}.ff12{font-family:ff12;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_53cfad3d17426a24c00f2eea.woff')format("woff");}.ff13{font-family:ff13;line-height:0.922363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_85ba798249f7d5069dd05de9.woff')format("woff");}.ff14{font-family:ff14;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_3760ce2ac5fceeddafe8539e.woff')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-ms-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-webkit-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);}
.m3{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.006180px;}
.ls0{letter-spacing:0.010553px;}
.lsb{letter-spacing:0.055440px;}
.ls1{letter-spacing:0.073080px;}
.ls6{letter-spacing:0.109440px;}
.ls5{letter-spacing:0.254220px;}
.ls4{letter-spacing:0.726600px;}
.ls9{letter-spacing:0.748740px;}
.ls8{letter-spacing:1.141440px;}
.ls7{letter-spacing:1.496219px;}
.lsa{letter-spacing:1.695059px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-41.957983px;}
.ws0{word-spacing:-18.532793px;}
.ws1{word-spacing:-17.999993px;}
.ws2{word-spacing:-17.639993px;}
.ws6{word-spacing:-13.715995px;}
.ws4{word-spacing:-13.013995px;}
.ws7{word-spacing:-8.675997px;}
.ws3{word-spacing:0.000000px;}
._7{margin-left:-937.399989px;}
._c{margin-left:-468.216941px;}
._4{margin-left:-277.545825px;}
._b{margin-left:-229.327439px;}
._6{margin-left:-219.254252px;}
._9{margin-left:-211.190256px;}
._2{margin-left:-90.563177px;}
._a{margin-left:-68.874927px;}
._8{margin-left:-52.559242px;}
._1{margin-left:-25.559162px;}
._5{margin-left:-16.559129px;}
._15{margin-left:-2.712218px;}
._3{margin-left:-1.684403px;}
._0{width:1.056299px;}
._14{width:2.328296px;}
._13{width:3.696344px;}
._e{width:4.732195px;}
._f{width:6.106515px;}
._10{width:7.795201px;}
._11{width:9.124178px;}
._18{width:10.142910px;}
._1b{width:11.266879px;}
._d{width:13.151981px;}
._29{width:15.021322px;}
._2a{width:16.184296px;}
._28{width:17.582768px;}
._17{width:18.602407px;}
._12{width:19.814370px;}
._16{width:21.285430px;}
._2c{width:22.469394px;}
._34{width:23.739960px;}
._1f{width:25.029120px;}
._1e{width:26.339070px;}
._32{width:27.794907px;}
._27{width:29.358866px;}
._31{width:30.985344px;}
._26{width:32.512506px;}
._25{width:33.530789px;}
._24{width:35.052968px;}
._22{width:36.413940px;}
._23{width:38.050326px;}
._3e{width:39.079317px;}
._2d{width:40.736931px;}
._30{width:41.807974px;}
._1d{width:42.896575px;}
._1c{width:44.402615px;}
._19{width:45.715363px;}
._1a{width:46.820736px;}
._42{width:48.752344px;}
._35{width:49.943987px;}
._33{width:51.912716px;}
._48{width:53.531560px;}
._4a{width:54.813996px;}
._47{width:56.449041px;}
._46{width:57.905491px;}
._39{width:59.896044px;}
._3a{width:60.987041px;}
._20{width:62.030297px;}
._21{width:63.475583px;}
._49{width:65.285127px;}
._2e{width:66.847969px;}
._2f{width:68.506032px;}
._3f{width:70.001788px;}
._4e{width:72.115411px;}
._4f{width:73.678241px;}
._4d{width:82.803334px;}
._45{width:86.912898px;}
._37{width:88.829026px;}
._38{width:90.642671px;}
._2b{width:94.502593px;}
._43{width:99.652822px;}
._44{width:101.137098px;}
._41{width:114.938510px;}
._40{width:121.594565px;}
._36{width:127.288918px;}
._3b{width:137.647581px;}
._4c{width:156.727158px;}
._4b{width:158.113844px;}
._3c{width:166.677595px;}
._3d{width:167.684696px;}
.fc4{color:rgb(0,101,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,130,59);}
.fc0{color:rgb(51,153,51);}
.fs3{font-size:17.999993px;}
.fsb{font-size:35.999986px;}
.fs7{font-size:38.879984px;}
.fs6{font-size:48.239981px;}
.fs9{font-size:53.999978px;}
.fsa{font-size:59.759976px;}
.fs8{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fsc{font-size:74.879970px;}
.fs0{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs5{font-size:101.199557px;}
.fs2{font-size:107.999957px;}
.y4f{bottom:-5.761018px;}
.y0{bottom:0.000000px;}
.yd6{bottom:3.058957px;}
.yd8{bottom:3.058963px;}
.yda{bottom:3.058969px;}
.ydc{bottom:3.058975px;}
.yde{bottom:3.058981px;}
.ye0{bottom:3.058988px;}
.ye2{bottom:3.058994px;}
.ye4{bottom:3.059000px;}
.ye8{bottom:3.059026px;}
.yea{bottom:3.059033px;}
.yec{bottom:3.059039px;}
.yee{bottom:3.059045px;}
.yf0{bottom:3.059051px;}
.yf2{bottom:3.059057px;}
.yf4{bottom:3.059063px;}
.yf6{bottom:3.059069px;}
.y1c{bottom:3.059093px;}
.yfa{bottom:3.059096px;}
.yfc{bottom:3.059102px;}
.yfe{bottom:3.059108px;}
.y100{bottom:3.059114px;}
.y102{bottom:3.059121px;}
.y104{bottom:3.059127px;}
.y106{bottom:3.059133px;}
.y108{bottom:3.059139px;}
.yf{bottom:3.239038px;}
.y17{bottom:3.599076px;}
.y1a{bottom:3.599080px;}
.y6{bottom:4.138948px;}
.y2{bottom:4.678926px;}
.y11{bottom:4.859046px;}
.y15{bottom:4.859064px;}
.y4a{bottom:6.478948px;}
.y4{bottom:58.620277px;}
.y3a{bottom:117.119953px;}
.yb8{bottom:121.259951px;}
.y79{bottom:121.619951px;}
.yd4{bottom:121.979951px;}
.y1a6{bottom:123.599951px;}
.y181{bottom:124.139950px;}
.y159{bottom:125.219950px;}
.y90{bottom:126.659949px;}
.y48{bottom:128.099949px;}
.y11f{bottom:128.819948px;}
.y39{bottom:137.819945px;}
.yb7{bottom:144.299942px;}
.y78{bottom:144.659942px;}
.yd3{bottom:145.019942px;}
.y1a5{bottom:146.459941px;}
.y180{bottom:147.179941px;}
.y158{bottom:148.619941px;}
.y8f{bottom:149.699940px;}
.y47{bottom:151.139940px;}
.y11e{bottom:151.859939px;}
.y38{bottom:158.519937px;}
.yb6{bottom:167.339933px;}
.y77{bottom:167.699933px;}
.yd2{bottom:168.059933px;}
.y1a4{bottom:169.499932px;}
.y17f{bottom:170.039932px;}
.y157{bottom:172.199931px;}
.y8e{bottom:172.739931px;}
.y46{bottom:173.999930px;}
.y11d{bottom:174.899930px;}
.y37{bottom:179.219928px;}
.yb5{bottom:190.379924px;}
.y76{bottom:190.559924px;}
.yd1{bottom:190.919924px;}
.y1a3{bottom:192.539923px;}
.y17e{bottom:194.159922px;}
.y156{bottom:195.599922px;}
.y8d{bottom:195.779922px;}
.y45{bottom:197.039921px;}
.y11c{bottom:197.939921px;}
.y36{bottom:199.919920px;}
.yb4{bottom:213.419915px;}
.y75{bottom:213.599915px;}
.yd0{bottom:213.959914px;}
.y1a2{bottom:215.579914px;}
.y17d{bottom:218.459913px;}
.y8c{bottom:218.819912px;}
.y155{bottom:218.999912px;}
.y44{bottom:220.079912px;}
.y35{bottom:220.619912px;}
.y11b{bottom:220.979912px;}
.yb3{bottom:236.279905px;}
.y74{bottom:236.639905px;}
.ycf{bottom:236.999905px;}
.y1a1{bottom:238.619905px;}
.y8b{bottom:240.419904px;}
.y34{bottom:241.319903px;}
.y12c{bottom:241.859903px;}
.y154{bottom:242.399903px;}
.y17c{bottom:242.579903px;}
.y43{bottom:243.119903px;}
.y11a{bottom:243.839902px;}
.yb2{bottom:259.319896px;}
.y73{bottom:259.679896px;}
.yce{bottom:260.219896px;}
.y1a0{bottom:261.659895px;}
.y33{bottom:262.019895px;}
.y8a{bottom:262.199895px;}
.y12b{bottom:264.719894px;}
.y153{bottom:265.979894px;}
.y42{bottom:266.159894px;}
.y119{bottom:266.879893px;}
.yb1{bottom:282.359887px;}
.y32{bottom:282.719887px;}
.ycd{bottom:283.439887px;}
.y19f{bottom:284.519886px;}
.y89{bottom:285.239886px;}
.y12a{bottom:287.759885px;}
.y41{bottom:289.019884px;}
.y152{bottom:289.379884px;}
.y17b{bottom:289.739884px;}
.y118{bottom:289.919884px;}
.y31{bottom:303.419879px;}
.yb0{bottom:305.399878px;}
.y72{bottom:305.759878px;}
.ycc{bottom:306.659877px;}
.y19e{bottom:307.559877px;}
.y88{bottom:308.279877px;}
.y129{bottom:309.539876px;}
.y40{bottom:312.059875px;}
.y17a{bottom:312.599875px;}
.y151{bottom:312.779875px;}
.y117{bottom:312.959875px;}
.y30{bottom:324.119870px;}
.yaf{bottom:328.439869px;}
.y3f{bottom:328.619869px;}
.y19d{bottom:330.599868px;}
.y87{bottom:331.319867px;}
.y116{bottom:335.999866px;}
.y150{bottom:336.359865px;}
.y179{bottom:336.899865px;}
.y2f{bottom:344.819862px;}
.y3e{bottom:349.319860px;}
.ycb{bottom:350.039860px;}
.yae{bottom:351.299859px;}
.y71{bottom:351.659859px;}
.y19c{bottom:353.639859px;}
.y86{bottom:354.179858px;}
.y115{bottom:359.039856px;}
.y14f{bottom:359.759856px;}
.y178{bottom:361.379855px;}
.y2e{bottom:365.519854px;}
.y3d{bottom:370.019852px;}
.yca{bottom:373.079851px;}
.yad{bottom:374.339850px;}
.y70{bottom:374.699850px;}
.y19b{bottom:376.859849px;}
.y85{bottom:377.219849px;}
.y114{bottom:381.899847px;}
.y14e{bottom:383.159847px;}
.y177{bottom:385.679846px;}
.y3c{bottom:390.719844px;}
.y2d{bottom:392.519843px;}
.yc9{bottom:396.119842px;}
.yac{bottom:397.379841px;}
.y6f{bottom:397.739841px;}
.y19a{bottom:399.899840px;}
.y84{bottom:400.259840px;}
.y113{bottom:404.939838px;}
.y14d{bottom:406.739837px;}
.y176{bottom:409.799836px;}
.y3b{bottom:411.419835px;}
.y2c{bottom:415.559834px;}
.yc8{bottom:419.159832px;}
.yab{bottom:420.419832px;}
.y6e{bottom:420.779832px;}
.y199{bottom:422.939831px;}
.y83{bottom:423.299831px;}
.y112{bottom:427.979829px;}
.y14c{bottom:430.139828px;}
.y2b{bottom:431.759827px;}
.y175{bottom:434.099826px;}
.y2a{bottom:435.539826px;}
.yc7{bottom:442.199823px;}
.yaa{bottom:443.459823px;}
.y6d{bottom:443.819822px;}
.y198{bottom:445.979822px;}
.y82{bottom:446.339821px;}
.y111{bottom:451.019820px;}
.y14a{bottom:453.539819px;}
.y29{bottom:456.059818px;}
.y14b{bottom:457.319817px;}
.y174{bottom:458.219817px;}
.yc6{bottom:465.239814px;}
.ya9{bottom:466.499813px;}
.y6c{bottom:466.679813px;}
.y197{bottom:469.019812px;}
.y81{bottom:469.379812px;}
.y110{bottom:474.059810px;}
.y149{bottom:477.119809px;}
.y28{bottom:479.099808px;}
.y173{bottom:481.259807px;}
.yc5{bottom:488.099805px;}
.ya8{bottom:489.359804px;}
.y6b{bottom:489.719804px;}
.y196{bottom:492.059803px;}
.y80{bottom:492.239803px;}
.y10f{bottom:497.099801px;}
.y148{bottom:500.519800px;}
.y27{bottom:502.139799px;}
.y172{bottom:503.939798px;}
.yc4{bottom:511.139796px;}
.ya7{bottom:512.399795px;}
.y6a{bottom:512.759795px;}
.y195{bottom:514.919794px;}
.y7f{bottom:515.279794px;}
.y10e{bottom:519.959792px;}
.y147{bottom:523.919790px;}
.y26{bottom:524.999790px;}
.y171{bottom:528.239789px;}
.yc3{bottom:534.359786px;}
.ya6{bottom:535.439786px;}
.y69{bottom:535.799786px;}
.y194{bottom:537.959785px;}
.y7e{bottom:538.319785px;}
.y10d{bottom:542.999783px;}
.y146{bottom:547.499781px;}
.y25{bottom:548.039781px;}
.y170{bottom:552.539779px;}
.yc2{bottom:557.579777px;}
.ya5{bottom:558.479777px;}
.y68{bottom:558.839776px;}
.y193{bottom:560.999776px;}
.y7d{bottom:561.359775px;}
.y10c{bottom:566.039774px;}
.y145{bottom:570.899772px;}
.y24{bottom:571.079772px;}
.y16f{bottom:576.659769px;}
.yc1{bottom:580.439768px;}
.ya4{bottom:581.519767px;}
.y67{bottom:581.699767px;}
.y192{bottom:584.039766px;}
.y7c{bottom:584.399766px;}
.y10b{bottom:589.079764px;}
.y23{bottom:594.119762px;}
.y144{bottom:594.299762px;}
.y16e{bottom:600.959760px;}
.yc0{bottom:603.479759px;}
.ya3{bottom:604.559758px;}
.y66{bottom:604.739758px;}
.y191{bottom:607.079757px;}
.y7b{bottom:607.439757px;}
.y10a{bottom:612.119755px;}
.y22{bottom:617.159753px;}
.y143{bottom:617.699753px;}
.y16d{bottom:625.079750px;}
.ybf{bottom:626.519749px;}
.ya2{bottom:627.419749px;}
.y65{bottom:627.779749px;}
.y7a{bottom:629.039748px;}
.y190{bottom:630.119748px;}
.y128{bottom:630.299748px;}
.y109{bottom:634.979746px;}
.y21{bottom:640.199744px;}
.y142{bottom:641.279743px;}
.y16c{bottom:649.379740px;}
.y107{bottom:649.380600px;}
.ybe{bottom:649.739740px;}
.ya1{bottom:650.459740px;}
.y64{bottom:650.819740px;}
.y18f{bottom:652.979739px;}
.y127{bottom:653.339739px;}
.y20{bottom:663.059735px;}
.y141{bottom:664.679734px;}
.y105{bottom:664.680600px;}
.ybd{bottom:672.959731px;}
.ya0{bottom:673.499731px;}
.y63{bottom:673.859730px;}
.y18e{bottom:676.019730px;}
.y126{bottom:676.379729px;}
.y103{bottom:680.160600px;}
.y1f{bottom:686.099726px;}
.y140{bottom:688.079725px;}
.y101{bottom:695.460600px;}
.ybc{bottom:696.179722px;}
.y9f{bottom:696.539721px;}
.y62{bottom:696.899721px;}
.y16b{bottom:697.799721px;}
.y18d{bottom:699.059720px;}
.y125{bottom:699.419720px;}
.y1e{bottom:710.039716px;}
.yff{bottom:710.760600px;}
.y13f{bottom:711.659715px;}
.ybb{bottom:719.219712px;}
.y9e{bottom:719.579712px;}
.y61{bottom:719.759712px;}
.y16a{bottom:722.099711px;}
.y124{bottom:722.459711px;}
.yfd{bottom:726.060600px;}
.y13e{bottom:735.059706px;}
.yfb{bottom:741.360600px;}
.yba{bottom:742.439703px;}
.y9d{bottom:742.619703px;}
.y60{bottom:742.799703px;}
.y1d{bottom:743.699703px;}
.y18c{bottom:745.139702px;}
.y123{bottom:745.319702px;}
.y169{bottom:746.219702px;}
.yf9{bottom:757.560600px;}
.y13d{bottom:758.459697px;}
.y1b{bottom:763.680600px;}
.y9c{bottom:765.479694px;}
.yb9{bottom:765.659694px;}
.y5f{bottom:765.839694px;}
.y18b{bottom:768.179693px;}
.y122{bottom:768.359693px;}
.y168{bottom:770.519692px;}
.y13c{bottom:782.039687px;}
.yf8{bottom:785.999686px;}
.y9b{bottom:788.519685px;}
.y5e{bottom:788.879684px;}
.y18a{bottom:791.039684px;}
.y121{bottom:791.399683px;}
.y167{bottom:794.639682px;}
.y19{bottom:797.160600px;}
.y18{bottom:800.759680px;}
.y13b{bottom:805.439678px;}
.y16{bottom:806.160600px;}
.yf7{bottom:809.039676px;}
.y9a{bottom:811.559675px;}
.y5d{bottom:811.919675px;}
.y120{bottom:813.179675px;}
.y189{bottom:814.079674px;}
.y166{bottom:818.939672px;}
.yf5{bottom:823.440600px;}
.y13a{bottom:828.839668px;}
.y99{bottom:834.599666px;}
.y5c{bottom:834.959666px;}
.y14{bottom:835.140600px;}
.y188{bottom:837.119665px;}
.yf3{bottom:838.740600px;}
.y165{bottom:843.059663px;}
.y139{bottom:852.419659px;}
.yf1{bottom:854.040600px;}
.y98{bottom:857.639657px;}
.y13{bottom:857.819657px;}
.y187{bottom:860.159656px;}
.y164{bottom:867.359653px;}
.yef{bottom:869.340600px;}
.y138{bottom:875.819650px;}
.y97{bottom:880.499648px;}
.y10{bottom:880.500600px;}
.y5b{bottom:880.859648px;}
.y186{bottom:883.199647px;}
.yed{bottom:884.820600px;}
.y12{bottom:890.579644px;}
.y163{bottom:891.659643px;}
.y137{bottom:899.219640px;}
.yeb{bottom:900.120600px;}
.ye{bottom:900.840600px;}
.y96{bottom:903.539639px;}
.y5a{bottom:903.899638px;}
.y185{bottom:906.239638px;}
.ye9{bottom:915.420600px;}
.y162{bottom:915.779634px;}
.y136{bottom:922.799631px;}
.y95{bottom:926.579629px;}
.y59{bottom:926.939629px;}
.y184{bottom:929.099628px;}
.ye7{bottom:931.440600px;}
.yd{bottom:934.319626px;}
.y161{bottom:940.079624px;}
.y135{bottom:946.199622px;}
.y94{bottom:949.619620px;}
.y58{bottom:949.979620px;}
.y183{bottom:952.139619px;}
.ye6{bottom:960.059616px;}
.y160{bottom:964.199614px;}
.y134{bottom:969.599612px;}
.y93{bottom:972.659611px;}
.y57{bottom:973.019611px;}
.y182{bottom:974.279610px;}
.yc{bottom:974.999610px;}
.y1b0{bottom:980.579608px;}
.ye5{bottom:983.099607px;}
.y15f{bottom:988.499605px;}
.y133{bottom:992.999603px;}
.y92{bottom:995.699602px;}
.y56{bottom:995.879602px;}
.ye3{bottom:997.320600px;}
.yb{bottom:999.299600px;}
.y1af{bottom:1003.619599px;}
.y15e{bottom:1012.619595px;}
.ye1{bottom:1012.800600px;}
.y132{bottom:1016.579593px;}
.ya{bottom:1017.659593px;}
.y9{bottom:1018.019593px;}
.y91{bottom:1018.739593px;}
.y55{bottom:1018.919592px;}
.y1ae{bottom:1026.659589px;}
.ydf{bottom:1028.100600px;}
.y15d{bottom:1036.919585px;}
.y131{bottom:1039.979584px;}
.y54{bottom:1041.959583px;}
.ydd{bottom:1043.400600px;}
.y1aa{bottom:1047.899581px;}
.y4e{bottom:1051.500600px;}
.ydb{bottom:1058.700600px;}
.y1ad{bottom:1060.139576px;}
.y15c{bottom:1061.219576px;}
.y130{bottom:1063.379575px;}
.y53{bottom:1064.999574px;}
.y4d{bottom:1066.979573px;}
.y1a9{bottom:1069.319572px;}
.yd9{bottom:1074.000600px;}
.y1ac{bottom:1084.799566px;}
.y15b{bottom:1085.339566px;}
.y12f{bottom:1086.959565px;}
.y4c{bottom:1087.319565px;}
.y52{bottom:1088.039565px;}
.yd7{bottom:1089.480600px;}
.y1a8{bottom:1090.919564px;}
.yd5{bottom:1105.500600px;}
.y4b{bottom:1107.659557px;}
.y1ab{bottom:1109.279556px;}
.y15a{bottom:1109.639556px;}
.y12e{bottom:1110.359556px;}
.y51{bottom:1110.899556px;}
.y1a7{bottom:1112.339555px;}
.y8{bottom:1118.099553px;}
.y7{bottom:1118.459553px;}
.y49{bottom:1122.600600px;}
.y5{bottom:1125.480600px;}
.y12d{bottom:1133.759546px;}
.y50{bottom:1133.939546px;}
.y3{bottom:1151.039540px;}
.y1{bottom:1179.120600px;}
.h22{height:12.060000px;}
.hc{height:13.500000px;}
.h17{height:15.120000px;}
.h25{height:15.300000px;}
.h14{height:18.720000px;}
.h9{height:18.773430px;}
.h16{height:18.900000px;}
.he{height:20.160000px;}
.h12{height:20.340000px;}
.h5{height:20.520000px;}
.h1f{height:23.760000px;}
.h1{height:24.480000px;}
.h1b{height:25.913662px;}
.h10{height:25.951630px;}
.h1d{height:27.228505px;}
.h19{height:32.152136px;}
.hd{height:32.199245px;}
.h11{height:36.179986px;}
.h24{height:36.486196px;}
.h18{height:40.842757px;}
.h1c{height:43.185920px;}
.h1a{height:45.199318px;}
.h6{height:47.988262px;}
.hf{height:48.058575px;}
.h13{height:48.234356px;}
.h15{height:50.100449px;}
.h21{height:53.999978px;}
.h8{height:54.457009px;}
.h23{height:56.159978px;}
.h2{height:58.861031px;}
.h20{height:63.179975px;}
.ha{height:63.917904px;}
.hb{height:67.548728px;}
.h1e{height:70.664034px;}
.h4{height:72.562471px;}
.h7{height:78.468719px;}
.h3{height:82.676920px;}
.h0{height:1263.000000px;}
.w2{width:4.680000px;}
.w19{width:5.760000px;}
.w13{width:6.840000px;}
.w4{width:7.020000px;}
.w1a{width:7.740000px;}
.wf{width:8.100000px;}
.w8{width:8.280000px;}
.w7{width:8.820000px;}
.we{width:9.540000px;}
.w17{width:10.800000px;}
.wd{width:12.240000px;}
.w6{width:12.420000px;}
.w1c{width:14.220000px;}
.w1d{width:15.840000px;}
.w53{width:24.660000px;}
.w5{width:24.840000px;}
.w20{width:28.260000px;}
.w1f{width:34.020000px;}
.w59{width:35.100000px;}
.wc{width:36.900000px;}
.w5a{width:38.880000px;}
.w21{width:39.780000px;}
.w1b{width:45.180000px;}
.w2a{width:50.400000px;}
.w52{width:52.380000px;}
.w2e{width:56.160000px;}
.w1e{width:57.960000px;}
.w33{width:60.120000px;}
.w25{width:61.020000px;}
.w18{width:62.640000px;}
.w23{width:64.980000px;}
.w48{width:65.160000px;}
.w24{width:65.880000px;}
.w3d{width:66.240000px;}
.w11{width:67.140000px;}
.w42{width:67.500000px;}
.w22{width:67.860000px;}
.w43{width:68.040000px;}
.w29{width:68.220000px;}
.w44{width:68.400000px;}
.w26{width:68.580000px;}
.w28{width:68.940000px;}
.w56{width:69.480000px;}
.w45{width:69.660000px;}
.w46{width:69.840000px;}
.w47{width:70.920000px;}
.w27{width:71.100000px;}
.w4a{width:72.000000px;}
.w2d{width:72.180000px;}
.w2b{width:72.540000px;}
.w3a{width:73.080000px;}
.w36{width:73.440000px;}
.w50{width:73.620000px;}
.w2c{width:73.800000px;}
.w1{width:73.980000px;}
.w5b{width:74.160000px;}
.w49{width:74.340000px;}
.w37{width:74.520000px;}
.w3c{width:74.700000px;}
.w4f{width:74.880000px;}
.w58{width:75.060000px;}
.w35{width:75.240000px;}
.w3b{width:75.600000px;}
.w34{width:75.780000px;}
.w4c{width:76.140000px;}
.w39{width:76.320000px;}
.w30{width:76.500000px;}
.w4b{width:76.860000px;}
.w2f{width:77.040000px;}
.w3{width:77.400000px;}
.w4e{width:77.940000px;}
.w5e{width:78.480000px;}
.w3e{width:79.020000px;}
.w32{width:79.380000px;}
.w5c{width:79.920000px;}
.w55{width:80.100000px;}
.w31{width:80.460000px;}
.w4d{width:80.640000px;}
.w57{width:80.820000px;}
.w10{width:81.360000px;}
.w41{width:81.720000px;}
.w51{width:81.900000px;}
.w38{width:83.340000px;}
.w5d{width:84.240000px;}
.w3f{width:84.420000px;}
.w40{width:84.960000px;}
.w54{width:85.140000px;}
.w14{width:98.460000px;}
.w12{width:113.400000px;}
.wa{width:153.180000px;}
.w15{width:175.320000px;}
.w9{width:309.960000px;}
.w16{width:532.080000px;}
.wb{width:574.380000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x9{left:107.999957px;}
.x29{left:111.779955px;}
.xb{left:116.100000px;}
.xd{left:130.679908px;}
.x48{left:158.400000px;}
.x4f{left:164.160000px;}
.x39{left:165.960000px;}
.x42{left:169.020000px;}
.x30{left:170.640000px;}
.x5b{left:174.240000px;}
.x31{left:176.400000px;}
.x22{left:188.460000px;}
.x59{left:191.340000px;}
.xe{left:200.339857px;}
.xf{left:204.839853px;}
.xc{left:206.999917px;}
.x19{left:220.859912px;}
.x2c{left:249.120000px;}
.x23{left:255.420000px;}
.x10{left:259.740421px;}
.x1b{left:273.239891px;}
.x6f{left:277.020000px;}
.x74{left:278.640000px;}
.x6b{left:279.720000px;}
.x68{left:280.800000px;}
.x50{left:284.040000px;}
.x49{left:286.380000px;}
.x3a{left:288.540000px;}
.x63{left:295.380000px;}
.x32{left:300.060000px;}
.x28{left:305.819878px;}
.x73{left:315.720000px;}
.x3b{left:316.800000px;}
.xa{left:331.019868px;}
.x64{left:340.560000px;}
.x33{left:345.240000px;}
.x65{left:351.720000px;}
.x66{left:352.800000px;}
.x72{left:353.880000px;}
.x69{left:355.140000px;}
.x3c{left:356.580000px;}
.x4a{left:358.920000px;}
.x51{left:361.080000px;}
.x5c{left:362.160000px;}
.x24{left:368.820000px;}
.x25{left:375.660000px;}
.x5d{left:405.540000px;}
.x6c{left:407.340000px;}
.x52{left:409.500000px;}
.x71{left:410.580000px;}
.x43{left:412.200000px;}
.x3d{left:413.820000px;}
.x1a{left:416.879833px;}
.x2d{left:433.079827px;}
.x34{left:440.640000px;}
.x35{left:454.860000px;}
.x70{left:461.520000px;}
.x2b{left:462.600477px;}
.x26{left:474.120000px;}
.x3e{left:481.680000px;}
.x44{left:483.300000px;}
.x5a{left:484.380000px;}
.x53{left:486.000000px;}
.x6d{left:487.980000px;}
.x5e{left:489.960000px;}
.x11{left:493.920784px;}
.x12{left:507.240775px;}
.x13{left:520.560767px;}
.x20{left:524.512290px;}
.x14{left:533.700759px;}
.x15{left:538.200756px;}
.x5f{left:539.280000px;}
.x54{left:541.620000px;}
.x6a{left:543.420000px;}
.x4b{left:544.860000px;}
.x67{left:546.300000px;}
.x45{left:547.380000px;}
.x1{left:549.000000px;}
.x2e{left:550.250930px;}
.x1c{left:570.239772px;}
.x36{left:573.840000px;}
.x1d{left:575.100000px;}
.x2f{left:588.779764px;}
.x16{left:591.300737px;}
.x17{left:608.940666px;}
.x3f{left:614.340000px;}
.x46{left:616.320000px;}
.x4c{left:618.660000px;}
.x2a{left:619.739752px;}
.x6e{left:620.820000px;}
.x2{left:622.980000px;}
.x60{left:624.240000px;}
.x3{left:627.660000px;}
.x27{left:649.440000px;}
.x18{left:666.359733px;}
.x61{left:675.000000px;}
.x55{left:676.260000px;}
.x57{left:678.600000px;}
.x4d{left:679.860000px;}
.x1e{left:681.480000px;}
.x40{left:682.920000px;}
.x4{left:705.060000px;}
.x37{left:707.940000px;}
.x1f{left:718.200000px;}
.x5{left:722.340000px;}
.x38{left:723.780000px;}
.x6{left:747.180000px;}
.x41{left:748.800000px;}
.x47{left:750.060000px;}
.x4e{left:752.040000px;}
.x58{left:753.120000px;}
.x56{left:755.640000px;}
.x62{left:756.720000px;}
.x7{left:759.600000px;}
.x8{left:772.020000px;}
.x75{left:777.059689px;}
.x21{left:780.300000px;}
.x76{left:784.799686px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.005493pt;}
.ls0{letter-spacing:0.009381pt;}
.lsb{letter-spacing:0.049280pt;}
.ls1{letter-spacing:0.064960pt;}
.ls6{letter-spacing:0.097280pt;}
.ls5{letter-spacing:0.225973pt;}
.ls4{letter-spacing:0.645866pt;}
.ls9{letter-spacing:0.665546pt;}
.ls8{letter-spacing:1.014613pt;}
.ls7{letter-spacing:1.329973pt;}
.lsa{letter-spacing:1.506719pt;}
.ws5{word-spacing:-37.295985pt;}
.ws0{word-spacing:-16.473593pt;}
.ws1{word-spacing:-15.999994pt;}
.ws2{word-spacing:-15.679994pt;}
.ws6{word-spacing:-12.191995pt;}
.ws4{word-spacing:-11.567995pt;}
.ws7{word-spacing:-7.711997pt;}
.ws3{word-spacing:0.000000pt;}
._7{margin-left:-833.244435pt;}
._c{margin-left:-416.192836pt;}
._4{margin-left:-246.707400pt;}
._b{margin-left:-203.846612pt;}
._6{margin-left:-194.892669pt;}
._9{margin-left:-187.724672pt;}
._2{margin-left:-80.500602pt;}
._a{margin-left:-61.222157pt;}
._8{margin-left:-46.719326pt;}
._1{margin-left:-22.719255pt;}
._5{margin-left:-14.719226pt;}
._15{margin-left:-2.410860pt;}
._3{margin-left:-1.497247pt;}
._0{width:0.938932pt;}
._14{width:2.069597pt;}
._13{width:3.285639pt;}
._e{width:4.206396pt;}
._f{width:5.428013pt;}
._10{width:6.929068pt;}
._11{width:8.110380pt;}
._18{width:9.015920pt;}
._1b{width:10.015004pt;}
._d{width:11.690650pt;}
._29{width:13.352286pt;}
._2a{width:14.386041pt;}
._28{width:15.629128pt;}
._17{width:16.535473pt;}
._12{width:17.612773pt;}
._16{width:18.920383pt;}
._2c{width:19.972795pt;}
._34{width:21.102187pt;}
._1f{width:22.248107pt;}
._1e{width:23.412506pt;}
._32{width:24.706584pt;}
._27{width:26.096770pt;}
._31{width:27.542528pt;}
._26{width:28.900006pt;}
._25{width:29.805145pt;}
._24{width:31.158193pt;}
._22{width:32.367947pt;}
._23{width:33.822512pt;}
._3e{width:34.737171pt;}
._2d{width:36.210606pt;}
._30{width:37.162644pt;}
._1d{width:38.130289pt;}
._1c{width:39.468991pt;}
._19{width:40.635878pt;}
._1a{width:41.618432pt;}
._42{width:43.335416pt;}
._35{width:44.394655pt;}
._33{width:46.144636pt;}
._48{width:47.583609pt;}
._4a{width:48.723552pt;}
._47{width:50.176925pt;}
._46{width:51.471548pt;}
._39{width:53.240928pt;}
._3a{width:54.210703pt;}
._20{width:55.138042pt;}
._21{width:56.422740pt;}
._49{width:58.031224pt;}
._2e{width:59.420417pt;}
._2f{width:60.894251pt;}
._3f{width:62.223811pt;}
._4e{width:64.102588pt;}
._4f{width:65.491770pt;}
._4d{width:73.602964pt;}
._45{width:77.255909pt;}
._37{width:78.959135pt;}
._38{width:80.571263pt;}
._2b{width:84.002304pt;}
._43{width:88.580286pt;}
._44{width:89.899642pt;}
._41{width:102.167565pt;}
._40{width:108.084058pt;}
._36{width:113.145705pt;}
._3b{width:122.353405pt;}
._4c{width:139.313030pt;}
._4b{width:140.545639pt;}
._3c{width:148.157862pt;}
._3d{width:149.053063pt;}
.fs3{font-size:15.999994pt;}
.fsb{font-size:31.999987pt;}
.fs7{font-size:34.559986pt;}
.fs6{font-size:42.879983pt;}
.fs9{font-size:47.999981pt;}
.fsa{font-size:53.119979pt;}
.fs8{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fsc{font-size:66.559973pt;}
.fs0{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs5{font-size:89.955162pt;}
.fs2{font-size:95.999962pt;}
.y4f{bottom:-5.120905pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:2.719073pt;}
.yd8{bottom:2.719078pt;}
.yda{bottom:2.719084pt;}
.ydc{bottom:2.719089pt;}
.yde{bottom:2.719095pt;}
.ye0{bottom:2.719100pt;}
.ye2{bottom:2.719105pt;}
.ye4{bottom:2.719111pt;}
.ye8{bottom:2.719134pt;}
.yea{bottom:2.719140pt;}
.yec{bottom:2.719146pt;}
.yee{bottom:2.719151pt;}
.yf0{bottom:2.719156pt;}
.yf2{bottom:2.719162pt;}
.yf4{bottom:2.719167pt;}
.yf6{bottom:2.719173pt;}
.y1c{bottom:2.719194pt;}
.yfa{bottom:2.719196pt;}
.yfc{bottom:2.719202pt;}
.yfe{bottom:2.719207pt;}
.y100{bottom:2.719213pt;}
.y102{bottom:2.719218pt;}
.y104{bottom:2.719224pt;}
.y106{bottom:2.719229pt;}
.y108{bottom:2.719235pt;}
.yf{bottom:2.879145pt;}
.y17{bottom:3.199179pt;}
.y1a{bottom:3.199182pt;}
.y6{bottom:3.679065pt;}
.y2{bottom:4.159046pt;}
.y11{bottom:4.319152pt;}
.y15{bottom:4.319168pt;}
.y4a{bottom:5.759065pt;}
.y4{bottom:52.106912pt;}
.y3a{bottom:104.106625pt;}
.yb8{bottom:107.786624pt;}
.y79{bottom:108.106623pt;}
.yd4{bottom:108.426623pt;}
.y1a6{bottom:109.866623pt;}
.y181{bottom:110.346623pt;}
.y159{bottom:111.306622pt;}
.y90{bottom:112.586622pt;}
.y48{bottom:113.866621pt;}
.y11f{bottom:114.506621pt;}
.y39{bottom:122.506618pt;}
.yb7{bottom:128.266615pt;}
.y78{bottom:128.586615pt;}
.yd3{bottom:128.906615pt;}
.y1a5{bottom:130.186615pt;}
.y180{bottom:130.826614pt;}
.y158{bottom:132.106614pt;}
.y8f{bottom:133.066613pt;}
.y47{bottom:134.346613pt;}
.y11e{bottom:134.986613pt;}
.y38{bottom:140.906610pt;}
.yb6{bottom:148.746607pt;}
.y77{bottom:149.066607pt;}
.yd2{bottom:149.386607pt;}
.y1a4{bottom:150.666606pt;}
.y17f{bottom:151.146606pt;}
.y157{bottom:153.066605pt;}
.y8e{bottom:153.546605pt;}
.y46{bottom:154.666605pt;}
.y11d{bottom:155.466604pt;}
.y37{bottom:159.306603pt;}
.yb5{bottom:169.226599pt;}
.y76{bottom:169.386599pt;}
.yd1{bottom:169.706599pt;}
.y1a3{bottom:171.146598pt;}
.y17e{bottom:172.586598pt;}
.y156{bottom:173.866597pt;}
.y8d{bottom:174.026597pt;}
.y45{bottom:175.146597pt;}
.y11c{bottom:175.946596pt;}
.y36{bottom:177.706596pt;}
.yb4{bottom:189.706591pt;}
.y75{bottom:189.866591pt;}
.yd0{bottom:190.186591pt;}
.y1a2{bottom:191.626590pt;}
.y17d{bottom:194.186589pt;}
.y8c{bottom:194.506589pt;}
.y155{bottom:194.666589pt;}
.y44{bottom:195.626588pt;}
.y35{bottom:196.106588pt;}
.y11b{bottom:196.426588pt;}
.yb3{bottom:210.026583pt;}
.y74{bottom:210.346583pt;}
.ycf{bottom:210.666582pt;}
.y1a1{bottom:212.106582pt;}
.y8b{bottom:213.706581pt;}
.y34{bottom:214.506581pt;}
.y12c{bottom:214.986581pt;}
.y154{bottom:215.466580pt;}
.y17c{bottom:215.626580pt;}
.y43{bottom:216.106580pt;}
.y11a{bottom:216.746580pt;}
.yb2{bottom:230.506574pt;}
.y73{bottom:230.826574pt;}
.yce{bottom:231.306574pt;}
.y1a0{bottom:232.586574pt;}
.y33{bottom:232.906574pt;}
.y8a{bottom:233.066573pt;}
.y12b{bottom:235.306573pt;}
.y153{bottom:236.426572pt;}
.y42{bottom:236.586572pt;}
.y119{bottom:237.226572pt;}
.yb1{bottom:250.986566pt;}
.y32{bottom:251.306566pt;}
.ycd{bottom:251.946566pt;}
.y19f{bottom:252.906566pt;}
.y89{bottom:253.546565pt;}
.y12a{bottom:255.786564pt;}
.y41{bottom:256.906564pt;}
.y152{bottom:257.226564pt;}
.y17b{bottom:257.546564pt;}
.y118{bottom:257.706564pt;}
.y31{bottom:269.706559pt;}
.yb0{bottom:271.466558pt;}
.y72{bottom:271.786558pt;}
.ycc{bottom:272.586558pt;}
.y19e{bottom:273.386557pt;}
.y88{bottom:274.026557pt;}
.y129{bottom:275.146557pt;}
.y40{bottom:277.386556pt;}
.y17a{bottom:277.866556pt;}
.y151{bottom:278.026555pt;}
.y117{bottom:278.186555pt;}
.y30{bottom:288.106551pt;}
.yaf{bottom:291.946550pt;}
.y3f{bottom:292.106550pt;}
.y19d{bottom:293.866549pt;}
.y87{bottom:294.506549pt;}
.y116{bottom:298.666547pt;}
.y150{bottom:298.986547pt;}
.y179{bottom:299.466547pt;}
.y2f{bottom:306.506544pt;}
.y3e{bottom:310.506542pt;}
.ycb{bottom:311.146542pt;}
.yae{bottom:312.266542pt;}
.y71{bottom:312.586542pt;}
.y19c{bottom:314.346541pt;}
.y86{bottom:314.826541pt;}
.y115{bottom:319.146539pt;}
.y14f{bottom:319.786539pt;}
.y178{bottom:321.226538pt;}
.y2e{bottom:324.906537pt;}
.y3d{bottom:328.906535pt;}
.yca{bottom:331.626534pt;}
.yad{bottom:332.746534pt;}
.y70{bottom:333.066533pt;}
.y19b{bottom:334.986533pt;}
.y85{bottom:335.306533pt;}
.y114{bottom:339.466531pt;}
.y14e{bottom:340.586530pt;}
.y177{bottom:342.826530pt;}
.y3c{bottom:347.306528pt;}
.y2d{bottom:348.906527pt;}
.yc9{bottom:352.106526pt;}
.yac{bottom:353.226525pt;}
.y6f{bottom:353.546525pt;}
.y19a{bottom:355.466524pt;}
.y84{bottom:355.786524pt;}
.y113{bottom:359.946523pt;}
.y14d{bottom:361.546522pt;}
.y176{bottom:364.266521pt;}
.y3b{bottom:365.706520pt;}
.y2c{bottom:369.386519pt;}
.yc8{bottom:372.586518pt;}
.yab{bottom:373.706517pt;}
.y6e{bottom:374.026517pt;}
.y199{bottom:375.946516pt;}
.y83{bottom:376.266516pt;}
.y112{bottom:380.426514pt;}
.y14c{bottom:382.346514pt;}
.y2b{bottom:383.786513pt;}
.y175{bottom:385.866512pt;}
.y2a{bottom:387.146512pt;}
.yc7{bottom:393.066509pt;}
.yaa{bottom:394.186509pt;}
.y6d{bottom:394.506509pt;}
.y198{bottom:396.426508pt;}
.y82{bottom:396.746508pt;}
.y111{bottom:400.906506pt;}
.y14a{bottom:403.146505pt;}
.y29{bottom:405.386505pt;}
.y14b{bottom:406.506504pt;}
.y174{bottom:407.306504pt;}
.yc6{bottom:413.546501pt;}
.ya9{bottom:414.666501pt;}
.y6c{bottom:414.826501pt;}
.y197{bottom:416.906500pt;}
.y81{bottom:417.226500pt;}
.y110{bottom:421.386498pt;}
.y149{bottom:424.106497pt;}
.y28{bottom:425.866496pt;}
.y173{bottom:427.786496pt;}
.yc5{bottom:433.866493pt;}
.ya8{bottom:434.986493pt;}
.y6b{bottom:435.306493pt;}
.y196{bottom:437.386492pt;}
.y80{bottom:437.546492pt;}
.y10f{bottom:441.866490pt;}
.y148{bottom:444.906489pt;}
.y27{bottom:446.346488pt;}
.y172{bottom:447.946487pt;}
.yc4{bottom:454.346485pt;}
.ya7{bottom:455.466484pt;}
.y6a{bottom:455.786484pt;}
.y195{bottom:457.706484pt;}
.y7f{bottom:458.026483pt;}
.y10e{bottom:462.186482pt;}
.y147{bottom:465.706480pt;}
.y26{bottom:466.666480pt;}
.y171{bottom:469.546479pt;}
.yc3{bottom:474.986477pt;}
.ya6{bottom:475.946476pt;}
.y69{bottom:476.266476pt;}
.y194{bottom:478.186475pt;}
.y7e{bottom:478.506475pt;}
.y10d{bottom:482.666474pt;}
.y146{bottom:486.666472pt;}
.y25{bottom:487.146472pt;}
.y170{bottom:491.146470pt;}
.yc2{bottom:495.626468pt;}
.ya5{bottom:496.426468pt;}
.y68{bottom:496.746468pt;}
.y193{bottom:498.666467pt;}
.y7d{bottom:498.986467pt;}
.y10c{bottom:503.146465pt;}
.y145{bottom:507.466464pt;}
.y24{bottom:507.626464pt;}
.y16f{bottom:512.586462pt;}
.yc1{bottom:515.946460pt;}
.ya4{bottom:516.906460pt;}
.y67{bottom:517.066460pt;}
.y192{bottom:519.146459pt;}
.y7c{bottom:519.466459pt;}
.y10b{bottom:523.626457pt;}
.y23{bottom:528.106455pt;}
.y144{bottom:528.266455pt;}
.y16e{bottom:534.186453pt;}
.yc0{bottom:536.426452pt;}
.ya3{bottom:537.386452pt;}
.y66{bottom:537.546452pt;}
.y191{bottom:539.626451pt;}
.y7b{bottom:539.946451pt;}
.y10a{bottom:544.106449pt;}
.y22{bottom:548.586447pt;}
.y143{bottom:549.066447pt;}
.y16d{bottom:555.626444pt;}
.ybf{bottom:556.906444pt;}
.ya2{bottom:557.706444pt;}
.y65{bottom:558.026443pt;}
.y7a{bottom:559.146443pt;}
.y190{bottom:560.106443pt;}
.y128{bottom:560.266443pt;}
.y109{bottom:564.426441pt;}
.y21{bottom:569.066439pt;}
.y142{bottom:570.026439pt;}
.y16c{bottom:577.226436pt;}
.y107{bottom:577.227200pt;}
.ybe{bottom:577.546436pt;}
.ya1{bottom:578.186435pt;}
.y64{bottom:578.506435pt;}
.y18f{bottom:580.426434pt;}
.y127{bottom:580.746434pt;}
.y20{bottom:589.386431pt;}
.y141{bottom:590.826430pt;}
.y105{bottom:590.827200pt;}
.ybd{bottom:598.186427pt;}
.ya0{bottom:598.666427pt;}
.y63{bottom:598.986427pt;}
.y18e{bottom:600.906426pt;}
.y126{bottom:601.226426pt;}
.y103{bottom:604.587200pt;}
.y1f{bottom:609.866423pt;}
.y140{bottom:611.626422pt;}
.y101{bottom:618.187200pt;}
.ybc{bottom:618.826419pt;}
.y9f{bottom:619.146419pt;}
.y62{bottom:619.466419pt;}
.y16b{bottom:620.266419pt;}
.y18d{bottom:621.386418pt;}
.y125{bottom:621.706418pt;}
.y1e{bottom:631.146414pt;}
.yff{bottom:631.787200pt;}
.y13f{bottom:632.586414pt;}
.ybb{bottom:639.306411pt;}
.y9e{bottom:639.626411pt;}
.y61{bottom:639.786411pt;}
.y16a{bottom:641.866410pt;}
.y124{bottom:642.186410pt;}
.yfd{bottom:645.387200pt;}
.y13e{bottom:653.386405pt;}
.yfb{bottom:658.987200pt;}
.yba{bottom:659.946403pt;}
.y9d{bottom:660.106403pt;}
.y60{bottom:660.266403pt;}
.y1d{bottom:661.066402pt;}
.y18c{bottom:662.346402pt;}
.y123{bottom:662.506402pt;}
.y169{bottom:663.306401pt;}
.yf9{bottom:673.387200pt;}
.y13d{bottom:674.186397pt;}
.y1b{bottom:678.827200pt;}
.y9c{bottom:680.426394pt;}
.yb9{bottom:680.586394pt;}
.y5f{bottom:680.746394pt;}
.y18b{bottom:682.826394pt;}
.y122{bottom:682.986393pt;}
.y168{bottom:684.906393pt;}
.y13c{bottom:695.146389pt;}
.yf8{bottom:698.666387pt;}
.y9b{bottom:700.906386pt;}
.y5e{bottom:701.226386pt;}
.y18a{bottom:703.146385pt;}
.y121{bottom:703.466385pt;}
.y167{bottom:706.346384pt;}
.y19{bottom:708.587200pt;}
.y18{bottom:711.786382pt;}
.y13b{bottom:715.946380pt;}
.y16{bottom:716.587200pt;}
.yf7{bottom:719.146379pt;}
.y9a{bottom:721.386378pt;}
.y5d{bottom:721.706378pt;}
.y120{bottom:722.826378pt;}
.y189{bottom:723.626377pt;}
.y166{bottom:727.946375pt;}
.yf5{bottom:731.947200pt;}
.y13a{bottom:736.746372pt;}
.y99{bottom:741.866370pt;}
.y5c{bottom:742.186370pt;}
.y14{bottom:742.347200pt;}
.y188{bottom:744.106369pt;}
.yf3{bottom:745.547200pt;}
.y165{bottom:749.386367pt;}
.y139{bottom:757.706364pt;}
.yf1{bottom:759.147200pt;}
.y98{bottom:762.346362pt;}
.y13{bottom:762.506362pt;}
.y187{bottom:764.586361pt;}
.y164{bottom:770.986358pt;}
.yef{bottom:772.747200pt;}
.y138{bottom:778.506355pt;}
.y97{bottom:782.666354pt;}
.y10{bottom:782.667200pt;}
.y5b{bottom:782.986353pt;}
.y186{bottom:785.066353pt;}
.yed{bottom:786.507200pt;}
.y12{bottom:791.626350pt;}
.y163{bottom:792.586350pt;}
.y137{bottom:799.306347pt;}
.yeb{bottom:800.107200pt;}
.ye{bottom:800.747200pt;}
.y96{bottom:803.146345pt;}
.y5a{bottom:803.466345pt;}
.y185{bottom:805.546344pt;}
.ye9{bottom:813.707200pt;}
.y162{bottom:814.026341pt;}
.y136{bottom:820.266339pt;}
.y95{bottom:823.626337pt;}
.y59{bottom:823.946337pt;}
.y184{bottom:825.866336pt;}
.ye7{bottom:827.947200pt;}
.yd{bottom:830.506334pt;}
.y161{bottom:835.626332pt;}
.y135{bottom:841.066330pt;}
.y94{bottom:844.106329pt;}
.y58{bottom:844.426329pt;}
.y183{bottom:846.346328pt;}
.ye6{bottom:853.386325pt;}
.y160{bottom:857.066324pt;}
.y134{bottom:861.866322pt;}
.y93{bottom:864.586321pt;}
.y57{bottom:864.906321pt;}
.y182{bottom:866.026320pt;}
.yc{bottom:866.666320pt;}
.y1b0{bottom:871.626318pt;}
.ye5{bottom:873.866317pt;}
.y15f{bottom:878.666315pt;}
.y133{bottom:882.666314pt;}
.y92{bottom:885.066313pt;}
.y56{bottom:885.226313pt;}
.ye3{bottom:886.507200pt;}
.yb{bottom:888.266311pt;}
.y1af{bottom:892.106310pt;}
.y15e{bottom:900.106307pt;}
.ye1{bottom:900.267200pt;}
.y132{bottom:903.626305pt;}
.ya{bottom:904.586305pt;}
.y9{bottom:904.906305pt;}
.y91{bottom:905.546304pt;}
.y55{bottom:905.706304pt;}
.y1ae{bottom:912.586302pt;}
.ydf{bottom:913.867200pt;}
.y15d{bottom:921.706298pt;}
.y131{bottom:924.426297pt;}
.y54{bottom:926.186296pt;}
.ydd{bottom:927.467200pt;}
.y1aa{bottom:931.466294pt;}
.y4e{bottom:934.667200pt;}
.ydb{bottom:941.067200pt;}
.y1ad{bottom:942.346290pt;}
.y15c{bottom:943.306289pt;}
.y130{bottom:945.226289pt;}
.y53{bottom:946.666288pt;}
.y4d{bottom:948.426287pt;}
.y1a9{bottom:950.506286pt;}
.yd9{bottom:954.667200pt;}
.y1ac{bottom:964.266281pt;}
.y15b{bottom:964.746281pt;}
.y12f{bottom:966.186280pt;}
.y4c{bottom:966.506280pt;}
.y52{bottom:967.146280pt;}
.yd7{bottom:968.427200pt;}
.y1a8{bottom:969.706279pt;}
.yd5{bottom:982.667200pt;}
.y4b{bottom:984.586273pt;}
.y1ab{bottom:986.026272pt;}
.y15a{bottom:986.346272pt;}
.y12e{bottom:986.986272pt;}
.y51{bottom:987.466272pt;}
.y1a7{bottom:988.746271pt;}
.y8{bottom:993.866269pt;}
.y7{bottom:994.186269pt;}
.y49{bottom:997.867200pt;}
.y5{bottom:1000.427200pt;}
.y12d{bottom:1007.786264pt;}
.y50{bottom:1007.946263pt;}
.y3{bottom:1023.146257pt;}
.y1{bottom:1048.107200pt;}
.h22{height:10.720000pt;}
.hc{height:12.000000pt;}
.h17{height:13.440000pt;}
.h25{height:13.600000pt;}
.h14{height:16.640000pt;}
.h9{height:16.687493pt;}
.h16{height:16.800000pt;}
.he{height:17.920000pt;}
.h12{height:18.080000pt;}
.h5{height:18.240000pt;}
.h1f{height:21.120000pt;}
.h1{height:21.760000pt;}
.h1b{height:23.034366pt;}
.h10{height:23.068116pt;}
.h1d{height:24.203115pt;}
.h19{height:28.579676pt;}
.hd{height:28.621551pt;}
.h11{height:32.159987pt;}
.h24{height:32.432175pt;}
.h18{height:36.304673pt;}
.h1c{height:38.387485pt;}
.h1a{height:40.177171pt;}
.h6{height:42.656233pt;}
.hf{height:42.718733pt;}
.h13{height:42.874983pt;}
.h15{height:44.533732pt;}
.h21{height:47.999981pt;}
.h8{height:48.406231pt;}
.h23{height:49.919980pt;}
.h2{height:52.320917pt;}
.h20{height:56.159978pt;}
.ha{height:56.815915pt;}
.hb{height:60.043314pt;}
.h1e{height:62.812475pt;}
.h4{height:64.499974pt;}
.h7{height:69.749972pt;}
.h3{height:73.490596pt;}
.h0{height:1122.666667pt;}
.w2{width:4.160000pt;}
.w19{width:5.120000pt;}
.w13{width:6.080000pt;}
.w4{width:6.240000pt;}
.w1a{width:6.880000pt;}
.wf{width:7.200000pt;}
.w8{width:7.360000pt;}
.w7{width:7.840000pt;}
.we{width:8.480000pt;}
.w17{width:9.600000pt;}
.wd{width:10.880000pt;}
.w6{width:11.040000pt;}
.w1c{width:12.640000pt;}
.w1d{width:14.080000pt;}
.w53{width:21.920000pt;}
.w5{width:22.080000pt;}
.w20{width:25.120000pt;}
.w1f{width:30.240000pt;}
.w59{width:31.200000pt;}
.wc{width:32.800000pt;}
.w5a{width:34.560000pt;}
.w21{width:35.360000pt;}
.w1b{width:40.160000pt;}
.w2a{width:44.800000pt;}
.w52{width:46.560000pt;}
.w2e{width:49.920000pt;}
.w1e{width:51.520000pt;}
.w33{width:53.440000pt;}
.w25{width:54.240000pt;}
.w18{width:55.680000pt;}
.w23{width:57.760000pt;}
.w48{width:57.920000pt;}
.w24{width:58.560000pt;}
.w3d{width:58.880000pt;}
.w11{width:59.680000pt;}
.w42{width:60.000000pt;}
.w22{width:60.320000pt;}
.w43{width:60.480000pt;}
.w29{width:60.640000pt;}
.w44{width:60.800000pt;}
.w26{width:60.960000pt;}
.w28{width:61.280000pt;}
.w56{width:61.760000pt;}
.w45{width:61.920000pt;}
.w46{width:62.080000pt;}
.w47{width:63.040000pt;}
.w27{width:63.200000pt;}
.w4a{width:64.000000pt;}
.w2d{width:64.160000pt;}
.w2b{width:64.480000pt;}
.w3a{width:64.960000pt;}
.w36{width:65.280000pt;}
.w50{width:65.440000pt;}
.w2c{width:65.600000pt;}
.w1{width:65.760000pt;}
.w5b{width:65.920000pt;}
.w49{width:66.080000pt;}
.w37{width:66.240000pt;}
.w3c{width:66.400000pt;}
.w4f{width:66.560000pt;}
.w58{width:66.720000pt;}
.w35{width:66.880000pt;}
.w3b{width:67.200000pt;}
.w34{width:67.360000pt;}
.w4c{width:67.680000pt;}
.w39{width:67.840000pt;}
.w30{width:68.000000pt;}
.w4b{width:68.320000pt;}
.w2f{width:68.480000pt;}
.w3{width:68.800000pt;}
.w4e{width:69.280000pt;}
.w5e{width:69.760000pt;}
.w3e{width:70.240000pt;}
.w32{width:70.560000pt;}
.w5c{width:71.040000pt;}
.w55{width:71.200000pt;}
.w31{width:71.520000pt;}
.w4d{width:71.680000pt;}
.w57{width:71.840000pt;}
.w10{width:72.320000pt;}
.w41{width:72.640000pt;}
.w51{width:72.800000pt;}
.w38{width:74.080000pt;}
.w5d{width:74.880000pt;}
.w3f{width:75.040000pt;}
.w40{width:75.520000pt;}
.w54{width:75.680000pt;}
.w14{width:87.520000pt;}
.w12{width:100.800000pt;}
.wa{width:136.160000pt;}
.w15{width:155.840000pt;}
.w9{width:275.520000pt;}
.w16{width:472.960000pt;}
.wb{width:510.560000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x9{left:95.999962pt;}
.x29{left:99.359960pt;}
.xb{left:103.200000pt;}
.xd{left:116.159918pt;}
.x48{left:140.800000pt;}
.x4f{left:145.920000pt;}
.x39{left:147.520000pt;}
.x42{left:150.240000pt;}
.x30{left:151.680000pt;}
.x5b{left:154.880000pt;}
.x31{left:156.800000pt;}
.x22{left:167.520000pt;}
.x59{left:170.080000pt;}
.xe{left:178.079873pt;}
.xf{left:182.079870pt;}
.xc{left:183.999926pt;}
.x19{left:196.319921pt;}
.x2c{left:221.440000pt;}
.x23{left:227.040000pt;}
.x10{left:230.880374pt;}
.x1b{left:242.879903pt;}
.x6f{left:246.240000pt;}
.x74{left:247.680000pt;}
.x6b{left:248.640000pt;}
.x68{left:249.600000pt;}
.x50{left:252.480000pt;}
.x49{left:254.560000pt;}
.x3a{left:256.480000pt;}
.x63{left:262.560000pt;}
.x32{left:266.720000pt;}
.x28{left:271.839891pt;}
.x73{left:280.640000pt;}
.x3b{left:281.600000pt;}
.xa{left:294.239882pt;}
.x64{left:302.720000pt;}
.x33{left:306.880000pt;}
.x65{left:312.640000pt;}
.x66{left:313.600000pt;}
.x72{left:314.560000pt;}
.x69{left:315.680000pt;}
.x3c{left:316.960000pt;}
.x4a{left:319.040000pt;}
.x51{left:320.960000pt;}
.x5c{left:321.920000pt;}
.x24{left:327.840000pt;}
.x25{left:333.920000pt;}
.x5d{left:360.480000pt;}
.x6c{left:362.080000pt;}
.x52{left:364.000000pt;}
.x71{left:364.960000pt;}
.x43{left:366.400000pt;}
.x3d{left:367.840000pt;}
.x1a{left:370.559852pt;}
.x2d{left:384.959846pt;}
.x34{left:391.680000pt;}
.x35{left:404.320000pt;}
.x70{left:410.240000pt;}
.x2b{left:411.200424pt;}
.x26{left:421.440000pt;}
.x3e{left:428.160000pt;}
.x44{left:429.600000pt;}
.x5a{left:430.560000pt;}
.x53{left:432.000000pt;}
.x6d{left:433.760000pt;}
.x5e{left:435.520000pt;}
.x11{left:439.040697pt;}
.x12{left:450.880689pt;}
.x13{left:462.720681pt;}
.x20{left:466.233147pt;}
.x14{left:474.400675pt;}
.x15{left:478.400672pt;}
.x5f{left:479.360000pt;}
.x54{left:481.440000pt;}
.x6a{left:483.040000pt;}
.x4b{left:484.320000pt;}
.x67{left:485.600000pt;}
.x45{left:486.560000pt;}
.x1{left:488.000000pt;}
.x2e{left:489.111938pt;}
.x1c{left:506.879797pt;}
.x36{left:510.080000pt;}
.x1d{left:511.200000pt;}
.x2f{left:523.359791pt;}
.x16{left:525.600655pt;}
.x17{left:541.280592pt;}
.x3f{left:546.080000pt;}
.x46{left:547.840000pt;}
.x4c{left:549.920000pt;}
.x2a{left:550.879780pt;}
.x6e{left:551.840000pt;}
.x2{left:553.760000pt;}
.x60{left:554.880000pt;}
.x3{left:557.920000pt;}
.x27{left:577.280000pt;}
.x18{left:592.319763pt;}
.x61{left:600.000000pt;}
.x55{left:601.120000pt;}
.x57{left:603.200000pt;}
.x4d{left:604.320000pt;}
.x1e{left:605.760000pt;}
.x40{left:607.040000pt;}
.x4{left:626.720000pt;}
.x37{left:629.280000pt;}
.x1f{left:638.400000pt;}
.x5{left:642.080000pt;}
.x38{left:643.360000pt;}
.x6{left:664.160000pt;}
.x41{left:665.600000pt;}
.x47{left:666.720000pt;}
.x4e{left:668.480000pt;}
.x58{left:669.440000pt;}
.x56{left:671.680000pt;}
.x62{left:672.640000pt;}
.x7{left:675.200000pt;}
.x8{left:686.240000pt;}
.x75{left:690.719724pt;}
.x21{left:693.600000pt;}
.x76{left:697.599721pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  