
    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_dc692139f44213f275de4946.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_44c08a8f425ba5f404f28e9e.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_2bcb3b395f86a19ba49eee2b.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_d2447c3cf8692986d1a2b04d.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_62e5c0807f45b045c5d7d754.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7b2d36a03252acf5c65ab59e.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dfa75bac17511dc97962e652.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_799b8701a23a2d9e13f7b87a.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_19ec3325302bbf617bb3f2be.woff')format("woff");}.ff9{font-family:ff9;line-height:0.932129;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f55308cf9191d69be3882182.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a0cf6c800d62ad94a1286665.woff')format("woff");}.ffc{font-family:ffc;line-height:0.939941;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_ce375085ee9f4788b14cde5f.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_441b53d436a2593c7835871e.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_ae3d6d9b6c0c54ee35816189.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_c10fb345c2832f9280d6e7b8.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_e3e4f40a7c5185f12119b583.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_688f5127ccb648c96d7c8550.woff')format("woff");}.ff12{font-family:ff12;line-height:0.950684;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_ed23ec6514ff8d9c33076742.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_498c1d0a24b4c55d3a5911dc.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_c7bba9be028002c2ac3246b3.woff')format("woff");}.ff15{font-family:ff15;line-height:1.649414;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:ff16;src:url('chunks/assets/font_dc7389ba0b4f5eb23b726a7c.woff')format("woff");}.ff16{font-family:ff16;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;}
.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);}
.m8{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);}
.m7{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);}
.ma{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m5{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);}
.m9{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);}
.v2{vertical-align:-10.798796px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.679987px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010553px;}
.ls2{letter-spacing:0.073080px;}
.lse{letter-spacing:0.233340px;}
.lsc{letter-spacing:0.643200px;}
.ls0{letter-spacing:0.730699px;}
.ls11{letter-spacing:1.496219px;}
.ls10{letter-spacing:1.749059px;}
.ls4{letter-spacing:3.718739px;}
.lsf{letter-spacing:5.879998px;}
.lsd{letter-spacing:17.488511px;}
.lsb{letter-spacing:55.588178px;}
.lsa{letter-spacing:60.631176px;}
.ls6{letter-spacing:62.072375px;}
.ls7{letter-spacing:62.792375px;}
.ls8{letter-spacing:64.233574px;}
.ls9{letter-spacing:65.674174px;}
.ls5{letter-spacing:69.276572px;}
.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;}
}
.wsc{word-spacing:-41.957983px;}
.ws0{word-spacing:-18.532793px;}
.ws1{word-spacing:-17.999993px;}
.wsd{word-spacing:-13.715995px;}
.ws4{word-spacing:-13.013995px;}
.ws5{word-spacing:-11.879995px;}
.ws2{word-spacing:-8.675997px;}
.wsa{word-spacing:-8.553597px;}
.ws3{word-spacing:0.000000px;}
.ws9{word-spacing:2.529575px;}
.wsb{word-spacing:2.750057px;}
.ws7{word-spacing:3.250097px;}
.ws6{word-spacing:8.948372px;}
.ws8{word-spacing:9.492609px;}
._7{margin-left:-937.399989px;}
._c{margin-left:-468.216941px;}
._3{margin-left:-277.545825px;}
._b{margin-left:-229.327439px;}
._6{margin-left:-219.254252px;}
._9{margin-left:-211.190256px;}
._1{margin-left:-90.563177px;}
._a{margin-left:-68.874927px;}
._8{margin-left:-52.559242px;}
._0{margin-left:-25.559162px;}
._5{margin-left:-16.559129px;}
._39{margin-left:-8.197401px;}
._3e{margin-left:-5.583838px;}
._31{margin-left:-3.585779px;}
._2{margin-left:-1.684403px;}
._4{width:1.236066px;}
._11{width:2.478250px;}
._19{width:3.551715px;}
._17{width:4.673673px;}
._10{width:5.914300px;}
._16{width:7.841721px;}
._1f{width:8.917074px;}
._18{width:9.954938px;}
._f{width:10.969052px;}
._e{width:11.992963px;}
._1c{width:14.251783px;}
._1a{width:15.674100px;}
._1b{width:16.730194px;}
._13{width:17.776889px;}
._12{width:18.814830px;}
._15{width:20.666771px;}
._14{width:21.822580px;}
._1d{width:23.360640px;}
._1e{width:24.428377px;}
._21{width:25.732411px;}
._20{width:27.254452px;}
._3c{width:28.267873px;}
._2e{width:29.406746px;}
._24{width:31.088181px;}
._2d{width:32.095458px;}
._33{width:33.319806px;}
._23{width:34.699283px;}
._35{width:36.003386px;}
._22{width:37.867978px;}
._27{width:39.742850px;}
._28{width:41.060322px;}
._25{width:42.834478px;}
._26{width:44.319271px;}
._29{width:45.825542px;}
._2f{width:47.725411px;}
._30{width:49.164125px;}
._34{width:50.918027px;}
._36{width:52.027312px;}
._37{width:53.890970px;}
._2b{width:56.016214px;}
._2c{width:57.039755px;}
._40{width:60.902711px;}
._41{width:63.473797px;}
._43{width:79.033178px;}
._d{width:81.069178px;}
._2a{width:82.950885px;}
._42{width:100.805600px;}
._3d{width:123.853270px;}
._38{width:128.717525px;}
._32{width:141.130013px;}
._3f{width:145.307042px;}
._3b{width:162.577219px;}
._3a{width:203.098239px;}
.fc5{color:transparent;}
.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;}
.fsc{font-size:30.239988px;}
.fsa{font-size:35.999986px;}
.fs6{font-size:38.879984px;}
.fsd{font-size:41.759983px;}
.fs5{font-size:48.239981px;}
.fs8{font-size:53.999978px;}
.fs9{font-size:59.759976px;}
.fs7{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fsb{font-size:74.879970px;}
.fs0{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs2{font-size:107.999957px;}
.y4c{bottom:-5.761018px;}
.y0{bottom:0.000000px;}
.y1d{bottom:3.059106px;}
.y137{bottom:3.059113px;}
.y139{bottom:3.059119px;}
.y13b{bottom:3.059126px;}
.y114{bottom:3.059150px;}
.y116{bottom:3.059156px;}
.y118{bottom:3.059163px;}
.y11a{bottom:3.059169px;}
.y11c{bottom:3.059175px;}
.y11e{bottom:3.059181px;}
.y120{bottom:3.059187px;}
.y122{bottom:3.059193px;}
.y124{bottom:3.059200px;}
.y126{bottom:3.059206px;}
.y9e{bottom:3.059218px;}
.yf{bottom:3.239038px;}
.yae{bottom:3.419207px;}
.yac{bottom:3.419210px;}
.y18{bottom:3.599088px;}
.y1b{bottom:3.599092px;}
.y6{bottom:4.138948px;}
.y2{bottom:4.678926px;}
.y11{bottom:4.859046px;}
.y16{bottom:4.859076px;}
.y47{bottom:6.478948px;}
.y86{bottom:58.440277px;}
.y4{bottom:58.620277px;}
.y16a{bottom:115.499954px;}
.y154{bottom:116.039954px;}
.y3c{bottom:118.739953px;}
.yc9{bottom:120.360252px;}
.ye9{bottom:120.900252px;}
.y79{bottom:121.619951px;}
.yc8{bottom:122.340251px;}
.ye8{bottom:122.880251px;}
.y45{bottom:123.239951px;}
.y83{bottom:124.139950px;}
.y112{bottom:128.459949px;}
.ye6{bottom:129.000248px;}
.yc6{bottom:129.179948px;}
.yca{bottom:129.180248px;}
.ye5{bottom:129.719948px;}
.ye7{bottom:129.720248px;}
.yaa{bottom:132.419947px;}
.yc7{bottom:135.120246px;}
.y169{bottom:138.359945px;}
.y153{bottom:139.079944px;}
.y3b{bottom:139.259944px;}
.y1a7{bottom:140.879944px;}
.y44{bottom:143.939942px;}
.y78{bottom:144.659942px;}
.y135{bottom:146.279941px;}
.y82{bottom:147.179941px;}
.y111{bottom:151.499939px;}
.ya9{bottom:155.279938px;}
.yc5{bottom:156.899937px;}
.y3a{bottom:159.959936px;}
.y168{bottom:161.399935px;}
.y152{bottom:162.119935px;}
.y1a6{bottom:163.919934px;}
.y43{bottom:164.639934px;}
.y77{bottom:167.699933px;}
.y134{bottom:169.319932px;}
.y81{bottom:170.219932px;}
.y110{bottom:174.539930px;}
.ya8{bottom:178.319929px;}
.yc4{bottom:179.939928px;}
.y39{bottom:180.659928px;}
.y167{bottom:184.439926px;}
.y151{bottom:185.159926px;}
.y42{bottom:185.339926px;}
.y1a5{bottom:186.959925px;}
.y76{bottom:190.559924px;}
.y133{bottom:192.359923px;}
.y80{bottom:193.259923px;}
.y10f{bottom:197.399921px;}
.y38{bottom:201.359919px;}
.yc3{bottom:202.979919px;}
.y41{bottom:206.039918px;}
.y166{bottom:207.479917px;}
.y150{bottom:208.379917px;}
.y1a4{bottom:209.819916px;}
.y75{bottom:213.599915px;}
.y132{bottom:215.399914px;}
.y7f{bottom:216.119914px;}
.y10e{bottom:220.439912px;}
.y37{bottom:222.059911px;}
.ya7{bottom:224.399910px;}
.yc2{bottom:226.019910px;}
.y40{bottom:226.739909px;}
.y17f{bottom:228.539909px;}
.y165{bottom:230.519908px;}
.y14f{bottom:231.419907px;}
.y1a3{bottom:232.859907px;}
.y74{bottom:236.639905px;}
.y131{bottom:238.259905px;}
.y7e{bottom:239.159904px;}
.y36{bottom:242.759903px;}
.y10d{bottom:243.479903px;}
.y3f{bottom:247.439901px;}
.yc1{bottom:248.879900px;}
.y17e{bottom:251.759899px;}
.y164{bottom:253.379899px;}
.y14e{bottom:254.459898px;}
.y1a2{bottom:255.899898px;}
.y73{bottom:259.679896px;}
.y130{bottom:261.299895px;}
.y7d{bottom:262.199895px;}
.y10c{bottom:266.519893px;}
.y3e{bottom:268.139893px;}
.y35{bottom:269.939892px;}
.ya6{bottom:270.479892px;}
.yc0{bottom:271.919891px;}
.y17d{bottom:274.619890px;}
.y163{bottom:276.419889px;}
.y14d{bottom:277.499889px;}
.y1a1{bottom:280.199888px;}
.y72{bottom:282.719887px;}
.y12f{bottom:284.339886px;}
.y7c{bottom:285.239886px;}
.y3d{bottom:288.839884px;}
.y10b{bottom:289.559884px;}
.y34{bottom:292.979883px;}
.ya5{bottom:293.339883px;}
.ybf{bottom:294.959882px;}
.y17c{bottom:297.659881px;}
.y162{bottom:299.459880px;}
.y14c{bottom:300.359880px;}
.y1a0{bottom:304.859878px;}
.y71{bottom:305.759878px;}
.y12e{bottom:307.379877px;}
.y7b{bottom:308.279877px;}
.y33{bottom:309.179876px;}
.y10a{bottom:312.419875px;}
.y32{bottom:312.959875px;}
.ya4{bottom:316.379873px;}
.ybe{bottom:317.999873px;}
.y17b{bottom:320.699872px;}
.y161{bottom:322.499871px;}
.y14b{bottom:323.399871px;}
.y70{bottom:328.619869px;}
.y19f{bottom:329.339868px;}
.y7a{bottom:329.879868px;}
.y12d{bottom:330.419868px;}
.y31{bottom:333.479867px;}
.y109{bottom:335.459866px;}
.ya3{bottom:339.419864px;}
.ybd{bottom:341.039864px;}
.y17a{bottom:343.739863px;}
.y160{bottom:345.539862px;}
.y14a{bottom:346.439861px;}
.y6f{bottom:351.659859px;}
.y12c{bottom:353.459859px;}
.y19e{bottom:353.819858px;}
.y30{bottom:356.519857px;}
.y108{bottom:358.499857px;}
.ya2{bottom:362.459855px;}
.ybc{bottom:363.179855px;}
.ybb{bottom:363.899854px;}
.y179{bottom:364.079854px;}
.y15f{bottom:368.579853px;}
.y149{bottom:369.479852px;}
.y6e{bottom:374.699850px;}
.y12b{bottom:376.319849px;}
.y19d{bottom:378.479849px;}
.y2f{bottom:379.379848px;}
.y107{bottom:381.539847px;}
.y178{bottom:384.599846px;}
.ya1{bottom:385.499846px;}
.yba{bottom:386.219846px;}
.yb9{bottom:386.939845px;}
.y15e{bottom:391.439843px;}
.y148{bottom:392.519843px;}
.y6d{bottom:397.739841px;}
.y12a{bottom:399.359840px;}
.y19c{bottom:400.259840px;}
.y2e{bottom:402.419839px;}
.y106{bottom:404.579838px;}
.y177{bottom:407.639837px;}
.ya0{bottom:408.539837px;}
.yb8{bottom:409.259836px;}
.yb7{bottom:409.979836px;}
.y15d{bottom:414.479834px;}
.y147{bottom:415.559834px;}
.y6c{bottom:420.779832px;}
.y19b{bottom:422.039831px;}
.y129{bottom:422.399831px;}
.y2d{bottom:425.459830px;}
.y105{bottom:427.619829px;}
.y176{bottom:430.679828px;}
.y9f{bottom:431.399827px;}
.yb6{bottom:433.019827px;}
.y15c{bottom:437.519825px;}
.y146{bottom:438.419825px;}
.y6b{bottom:443.819822px;}
.y128{bottom:445.439822px;}
.y19a{bottom:446.699821px;}
.y2c{bottom:448.499821px;}
.y104{bottom:450.479820px;}
.y9d{bottom:451.380600px;}
.yb5{bottom:453.179819px;}
.y175{bottom:453.719819px;}
.yb4{bottom:455.159818px;}
.ye4{bottom:456.059818px;}
.y15b{bottom:460.559816px;}
.yb2{bottom:461.279815px;}
.y145{bottom:461.459815px;}
.yb1{bottom:461.999815px;}
.y6a{bottom:466.679813px;}
.yb3{bottom:467.939813px;}
.y127{bottom:468.479813px;}
.y199{bottom:471.179812px;}
.y2b{bottom:471.539811px;}
.yab{bottom:472.620600px;}
.y103{bottom:472.799811px;}
.y102{bottom:473.519811px;}
.y9c{bottom:474.419810px;}
.y174{bottom:476.579809px;}
.ye3{bottom:479.099808px;}
.yad{bottom:479.460600px;}
.y125{bottom:482.700600px;}
.y15a{bottom:483.599807px;}
.y144{bottom:484.499806px;}
.y69{bottom:489.719804px;}
.y29{bottom:494.579802px;}
.y198{bottom:495.659802px;}
.y101{bottom:495.839802px;}
.y100{bottom:496.559801px;}
.y123{bottom:498.180600px;}
.y2a{bottom:498.359801px;}
.y173{bottom:499.619800px;}
.ye2{bottom:501.959799px;}
.y159{bottom:506.639797px;}
.y143{bottom:507.539797px;}
.y68{bottom:512.759795px;}
.y121{bottom:513.480600px;}
.y28{bottom:517.439793px;}
.yff{bottom:518.879792px;}
.yfe{bottom:519.599792px;}
.y197{bottom:520.319792px;}
.y172{bottom:522.659791px;}
.ye1{bottom:524.999790px;}
.y11f{bottom:528.780600px;}
.y158{bottom:529.679788px;}
.y142{bottom:530.579788px;}
.y67{bottom:535.799786px;}
.y26{bottom:540.479784px;}
.yfd{bottom:542.639783px;}
.y171{bottom:542.999783px;}
.y11d{bottom:544.080600px;}
.y27{bottom:544.259782px;}
.y196{bottom:544.799782px;}
.ye0{bottom:548.039781px;}
.y157{bottom:552.899779px;}
.y141{bottom:553.619779px;}
.y66{bottom:558.839776px;}
.y11b{bottom:559.380600px;}
.yfc{bottom:562.619775px;}
.y25{bottom:563.519775px;}
.yfb{bottom:564.599774px;}
.y195{bottom:569.279772px;}
.ydf{bottom:571.079772px;}
.yf9{bottom:571.439771px;}
.y119{bottom:574.860600px;}
.y156{bottom:576.119770px;}
.y140{bottom:576.479769px;}
.yfa{bottom:577.379769px;}
.y65{bottom:581.699767px;}
.y24{bottom:586.559765px;}
.y117{bottom:590.160600px;}
.y194{bottom:593.939762px;}
.yde{bottom:594.119762px;}
.yf8{bottom:596.639761px;}
.y155{bottom:599.339760px;}
.y13f{bottom:599.519760px;}
.y64{bottom:604.739758px;}
.y115{bottom:606.180600px;}
.y23{bottom:609.599756px;}
.ydd{bottom:617.159753px;}
.y193{bottom:618.419753px;}
.y113{bottom:622.380600px;}
.y13e{bottom:622.559751px;}
.y63{bottom:627.779749px;}
.y22{bottom:632.639747px;}
.ydc{bottom:640.019744px;}
.yf7{bottom:640.199744px;}
.y192{bottom:642.899743px;}
.y13d{bottom:645.599742px;}
.y62{bottom:650.819740px;}
.y21{bottom:655.499738px;}
.y170{bottom:655.679738px;}
.ydb{bottom:663.059735px;}
.yf6{bottom:663.239735px;}
.y191{bottom:667.559733px;}
.y13c{bottom:668.639733px;}
.y61{bottom:673.859730px;}
.y20{bottom:678.539729px;}
.y13a{bottom:682.860600px;}
.yda{bottom:686.099726px;}
.y190{bottom:692.039723px;}
.y9b{bottom:696.719721px;}
.y60{bottom:696.899721px;}
.y138{bottom:698.340600px;}
.y16f{bottom:701.579719px;}
.y1f{bottom:702.479719px;}
.yd9{bottom:709.139716px;}
.y136{bottom:714.360600px;}
.y18f{bottom:716.519713px;}
.y9a{bottom:719.579712px;}
.y5f{bottom:719.759712px;}
.y16e{bottom:722.099711px;}
.yd8{bottom:732.179707px;}
.y1c{bottom:733.080600px;}
.y1e{bottom:736.139706px;}
.y18e{bottom:741.179704px;}
.y99{bottom:742.619703px;}
.y5e{bottom:742.799703px;}
.yf5{bottom:754.499698px;}
.yd7{bottom:755.039698px;}
.yf4{bottom:755.219698px;}
.y16d{bottom:765.479694px;}
.y98{bottom:765.659694px;}
.y5d{bottom:765.839694px;}
.y1a{bottom:766.560600px;}
.yb0{bottom:769.619692px;}
.y19{bottom:770.159692px;}
.y17{bottom:775.560600px;}
.yf3{bottom:777.539689px;}
.yd6{bottom:778.079689px;}
.yf2{bottom:778.259689px;}
.y16c{bottom:788.519685px;}
.y96{bottom:788.699685px;}
.y5c{bottom:788.879684px;}
.y18d{bottom:790.139684px;}
.y97{bottom:792.479683px;}
.yd5{bottom:800.399680px;}
.yf1{bottom:800.579680px;}
.yd4{bottom:801.119680px;}
.yf0{bottom:801.299679px;}
.y15{bottom:804.540600px;}
.y16b{bottom:811.559675px;}
.y95{bottom:811.739675px;}
.y5b{bottom:811.919675px;}
.y18c{bottom:814.799674px;}
.yd3{bottom:823.439671px;}
.yd2{bottom:824.159670px;}
.y14{bottom:827.219669px;}
.y94{bottom:834.779666px;}
.y5a{bottom:834.959666px;}
.y18b{bottom:839.279664px;}
.yef{bottom:844.139662px;}
.yee{bottom:846.119662px;}
.yd1{bottom:847.199661px;}
.yec{bottom:852.959659px;}
.y13{bottom:854.759658px;}
.y93{bottom:857.639657px;}
.y59{bottom:857.819657px;}
.yed{bottom:858.899656px;}
.y18a{bottom:863.759654px;}
.yd0{bottom:867.359653px;}
.ycf{bottom:869.339652px;}
.ycd{bottom:876.179650px;}
.y10{bottom:880.500600px;}
.y92{bottom:880.679648px;}
.y58{bottom:880.859648px;}
.yce{bottom:882.119647px;}
.y189{bottom:888.419645px;}
.y12{bottom:890.579644px;}
.ye{bottom:900.840600px;}
.y91{bottom:903.719639px;}
.y57{bottom:903.899638px;}
.y188{bottom:912.899635px;}
.y90{bottom:926.759629px;}
.y56{bottom:926.939629px;}
.yd{bottom:934.319626px;}
.y187{bottom:937.559625px;}
.y8f{bottom:949.799620px;}
.y55{bottom:949.979620px;}
.y186{bottom:962.039615px;}
.y8e{bottom:972.839611px;}
.y54{bottom:973.019611px;}
.yc{bottom:974.999610px;}
.y185{bottom:986.519605px;}
.y8d{bottom:995.699602px;}
.y53{bottom:995.879602px;}
.yb{bottom:999.299600px;}
.y184{bottom:1011.179596px;}
.ya{bottom:1017.659593px;}
.y9{bottom:1018.019593px;}
.y8c{bottom:1018.739593px;}
.y52{bottom:1018.919592px;}
.y183{bottom:1035.659586px;}
.y8b{bottom:1041.779583px;}
.y51{bottom:1041.959583px;}
.y4b{bottom:1051.500600px;}
.y182{bottom:1060.139576px;}
.ycc{bottom:1064.279574px;}
.y8a{bottom:1064.819574px;}
.y50{bottom:1064.999574px;}
.y4a{bottom:1066.979573px;}
.y181{bottom:1084.799566px;}
.y49{bottom:1087.319565px;}
.y89{bottom:1087.859565px;}
.y4f{bottom:1088.039565px;}
.y48{bottom:1107.659557px;}
.y180{bottom:1109.279556px;}
.ycb{bottom:1110.179556px;}
.y88{bottom:1110.719556px;}
.y4e{bottom:1110.899556px;}
.yeb{bottom:1110.899856px;}
.yaf{bottom:1114.679554px;}
.y8{bottom:1118.099553px;}
.y7{bottom:1118.459553px;}
.y46{bottom:1122.600600px;}
.y5{bottom:1125.480600px;}
.y87{bottom:1133.759546px;}
.y4d{bottom:1133.939546px;}
.yea{bottom:1133.939846px;}
.y85{bottom:1150.859540px;}
.y3{bottom:1151.039540px;}
.y84{bottom:1178.940600px;}
.y1{bottom:1179.120600px;}
.h21{height:12.060000px;}
.hb{height:13.500000px;}
.h16{height:15.120000px;}
.h2c{height:15.300000px;}
.h13{height:18.720000px;}
.h9{height:18.773430px;}
.h15{height:18.900000px;}
.h25{height:19.620000px;}
.hd{height:20.160000px;}
.h11{height:20.340000px;}
.h5{height:20.520000px;}
.h1e{height:23.760000px;}
.h1{height:24.480000px;}
.h1b{height:25.913662px;}
.hf{height:25.951630px;}
.h1a{height:27.228505px;}
.h2b{height:31.585065px;}
.h18{height:32.152136px;}
.hc{height:32.199245px;}
.h27{height:33.591783px;}
.h10{height:36.179986px;}
.h23{height:36.486196px;}
.h17{height:40.842757px;}
.h1c{height:43.185920px;}
.h28{height:43.189436px;}
.h19{height:45.199318px;}
.h6{height:47.988262px;}
.he{height:48.058575px;}
.h12{height:48.199199px;}
.h14{height:50.100449px;}
.h20{height:53.999978px;}
.h8{height:54.457009px;}
.h22{height:56.159978px;}
.h24{height:56.320290px;}
.h2{height:58.861031px;}
.h29{height:59.985328px;}
.h1f{height:63.179975px;}
.ha{height:63.917904px;}
.h1d{height:70.664034px;}
.h4{height:72.562471px;}
.h26{height:74.869423px;}
.h2a{height:74.870623px;}
.h7{height:78.468719px;}
.h3{height:82.676920px;}
.h0{height:1263.000000px;}
.w19{width:0.900000px;}
.w21{width:3.240000px;}
.w23{width:3.780000px;}
.w27{width:3.960000px;}
.w2{width:4.680000px;}
.w25{width:5.040000px;}
.w16{width:5.400000px;}
.w14{width:5.760000px;}
.w1a{width:5.940000px;}
.w1c{width:6.120000px;}
.w4{width:7.020000px;}
.w55{width:7.560000px;}
.w1e{width:7.740000px;}
.we{width:8.100000px;}
.w7{width:8.280000px;}
.w6{width:8.820000px;}
.w1b{width:9.000000px;}
.w9{width:9.180000px;}
.wd{width:9.540000px;}
.w12{width:10.800000px;}
.wc{width:12.240000px;}
.w41{width:13.860000px;}
.w38{width:14.400000px;}
.w40{width:14.940000px;}
.w42{width:15.660000px;}
.w33{width:16.920000px;}
.w36{width:17.640000px;}
.w3d{width:17.820000px;}
.w2f{width:18.000000px;}
.w3c{width:18.360000px;}
.w2d{width:18.720000px;}
.w18{width:19.980000px;}
.w3e{width:21.060000px;}
.w46{width:22.680000px;}
.w4c{width:23.580000px;}
.w2c{width:24.480000px;}
.w34{width:24.660000px;}
.w5{width:24.840000px;}
.w30{width:25.200000px;}
.w45{width:25.560000px;}
.w39{width:25.740000px;}
.w43{width:26.100000px;}
.w24{width:26.280000px;}
.w2e{width:26.460000px;}
.w47{width:26.820000px;}
.w35{width:27.180000px;}
.w3a{width:27.360000px;}
.w4a{width:30.960000px;}
.w4b{width:31.140000px;}
.w4f{width:31.500000px;}
.w22{width:33.300000px;}
.w49{width:33.480000px;}
.w26{width:33.660000px;}
.w4e{width:34.200000px;}
.w1f{width:34.380000px;}
.w29{width:37.620000px;}
.w20{width:37.800000px;}
.w2a{width:39.240000px;}
.w31{width:41.040000px;}
.w13{width:45.000000px;}
.w51{width:47.340000px;}
.w28{width:53.280000px;}
.w54{width:55.620000px;}
.w1d{width:68.400000px;}
.w1{width:73.980000px;}
.w3{width:77.400000px;}
.w56{width:79.200000px;}
.wf{width:81.360000px;}
.wb{width:84.060000px;}
.w58{width:96.300000px;}
.w4d{width:114.480000px;}
.w52{width:125.280000px;}
.w50{width:128.340000px;}
.w37{width:134.640000px;}
.w44{width:143.640000px;}
.w2b{width:148.140000px;}
.w32{width:156.240000px;}
.w3f{width:159.300000px;}
.w48{width:162.360000px;}
.w3b{width:168.840000px;}
.w57{width:176.220000px;}
.w15{width:182.700000px;}
.w53{width:235.980000px;}
.w10{width:343.800000px;}
.w17{width:436.860000px;}
.wa{width:506.880000px;}
.w11{width:532.080000px;}
.w8{width:664.020000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:107.999957px;}
.x23{left:111.779955px;}
.xa{left:116.100000px;}
.x42{left:118.979952px;}
.x48{left:120.419952px;}
.x2a{left:122.219951px;}
.x43{left:124.199950px;}
.x32{left:128.520000px;}
.xc{left:130.679908px;}
.x47{left:132.119947px;}
.x2e{left:153.180000px;}
.x2f{left:158.940000px;}
.x44{left:164.519934px;}
.x45{left:166.679933px;}
.x46{left:172.439931px;}
.x49{left:176.039930px;}
.x2b{left:186.119926px;}
.x1d{left:188.460000px;}
.x2c{left:191.159924px;}
.xd{left:200.339857px;}
.xe{left:204.839853px;}
.xb{left:206.999917px;}
.x85{left:222.480000px;}
.x8a{left:236.340000px;}
.x69{left:242.640000px;}
.x25{left:249.120000px;}
.x7a{left:251.640000px;}
.x5b{left:256.140000px;}
.xf{left:259.740421px;}
.x65{left:264.240000px;}
.x76{left:267.300000px;}
.x7d{left:270.360000px;}
.x70{left:276.840000px;}
.x94{left:284.220000px;}
.x56{left:318.060000px;}
.x7e{left:320.040000px;}
.x5c{left:324.540000px;}
.x66{left:328.320000px;}
.x6a{left:329.580000px;}
.x30{left:340.920000px;}
.x6b{left:343.980000px;}
.x67{left:345.240000px;}
.x31{left:346.320000px;}
.x5d{left:349.020000px;}
.x7f{left:353.520000px;}
.x57{left:355.680000px;}
.x9{left:378.899848px;}
.x8b{left:380.700000px;}
.x2d{left:400.677454px;}
.x4f{left:402.660000px;}
.x58{left:404.280000px;}
.x80{left:408.420000px;}
.x68{left:411.660000px;}
.x5e{left:414.540000px;}
.x77{left:417.060000px;}
.x78{left:430.920000px;}
.x26{left:433.079827px;}
.x50{left:437.040000px;}
.x81{left:439.380000px;}
.x59{left:443.520000px;}
.x95{left:456.480000px;}
.x96{left:461.520000px;}
.x24{left:462.600477px;}
.x21{left:470.339812px;}
.x4a{left:471.599811px;}
.x3e{left:473.579811px;}
.x39{left:475.199810px;}
.x29{left:476.639815px;}
.x22{left:478.259809px;}
.x4d{left:479.339808px;}
.x3f{left:481.499807px;}
.x4e{left:485.459806px;}
.x5a{left:487.260000px;}
.x86{left:489.960000px;}
.x82{left:491.220000px;}
.x10{left:493.920784px;}
.x7b{left:495.540000px;}
.x71{left:497.880000px;}
.x79{left:498.960000px;}
.x4c{left:502.919799px;}
.x11{left:507.240775px;}
.x41{left:509.759796px;}
.x4b{left:514.619794px;}
.x40{left:516.239794px;}
.x7c{left:518.220000px;}
.x12{left:520.560767px;}
.x3b{left:522.359791px;}
.x87{left:523.620000px;}
.x1b{left:525.592290px;}
.x3a{left:527.579789px;}
.x3c{left:529.739788px;}
.x1e{left:532.079787px;}
.x13{left:533.700759px;}
.x3d{left:535.499786px;}
.x8c{left:536.940000px;}
.x14{left:538.200756px;}
.x35{left:540.359784px;}
.x36{left:545.399782px;}
.x1{left:549.000000px;}
.x27{left:550.250930px;}
.x8d{left:557.640000px;}
.x88{left:568.260000px;}
.x6c{left:572.580000px;}
.x83{left:573.660000px;}
.x5f{left:576.540000px;}
.x97{left:578.700000px;}
.x98{left:583.740000px;}
.x91{left:585.000000px;}
.x51{left:586.080000px;}
.x28{left:588.779764px;}
.x15{left:591.300737px;}
.x60{left:594.540000px;}
.x84{left:597.240000px;}
.x6d{left:598.320000px;}
.x89{left:602.640000px;}
.x8e{left:604.980000px;}
.x16{left:608.940666px;}
.x19{left:613.620000px;}
.x2{left:622.980000px;}
.x3{left:627.660000px;}
.x52{left:630.360000px;}
.x8f{left:639.180000px;}
.x6e{left:649.080000px;}
.x61{left:650.160000px;}
.x72{left:652.320000px;}
.x99{left:653.580000px;}
.x37{left:655.739738px;}
.x38{left:660.779736px;}
.x92{left:662.220000px;}
.x17{left:666.359733px;}
.x73{left:673.380000px;}
.x62{left:675.360000px;}
.x6f{left:676.440000px;}
.x53{left:695.340000px;}
.x1a{left:697.140000px;}
.x4{left:705.060000px;}
.x54{left:714.420000px;}
.x1f{left:719.459712px;}
.x63{left:720.540000px;}
.x5{left:722.340000px;}
.x20{left:724.859710px;}
.x74{left:730.620000px;}
.x93{left:741.420000px;}
.x6{left:747.180000px;}
.x9a{left:749.880000px;}
.x75{left:751.680000px;}
.x33{left:756.900000px;}
.x64{left:761.580000px;}
.x34{left:762.840000px;}
.x90{left:764.460000px;}
.x55{left:767.700000px;}
.x7{left:772.020000px;}
.x18{left:775.800000px;}
.x1c{left:780.300000px;}
@media print{
.v2{vertical-align:-9.598929pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.159989pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009381pt;}
.ls2{letter-spacing:0.064960pt;}
.lse{letter-spacing:0.207413pt;}
.lsc{letter-spacing:0.571733pt;}
.ls0{letter-spacing:0.649510pt;}
.ls11{letter-spacing:1.329973pt;}
.ls10{letter-spacing:1.554719pt;}
.ls4{letter-spacing:3.305545pt;}
.lsf{letter-spacing:5.226665pt;}
.lsd{letter-spacing:15.545343pt;}
.lsb{letter-spacing:49.411714pt;}
.lsa{letter-spacing:53.894378pt;}
.ls6{letter-spacing:55.175445pt;}
.ls7{letter-spacing:55.815444pt;}
.ls8{letter-spacing:57.096510pt;}
.ls9{letter-spacing:58.377043pt;}
.ls5{letter-spacing:61.579175pt;}
.wsc{word-spacing:-37.295985pt;}
.ws0{word-spacing:-16.473593pt;}
.ws1{word-spacing:-15.999994pt;}
.wsd{word-spacing:-12.191995pt;}
.ws4{word-spacing:-11.567995pt;}
.ws5{word-spacing:-10.559996pt;}
.ws2{word-spacing:-7.711997pt;}
.wsa{word-spacing:-7.603197pt;}
.ws3{word-spacing:0.000000pt;}
.ws9{word-spacing:2.248511pt;}
.wsb{word-spacing:2.444495pt;}
.ws7{word-spacing:2.888975pt;}
.ws6{word-spacing:7.954108pt;}
.ws8{word-spacing:8.437875pt;}
._7{margin-left:-833.244435pt;}
._c{margin-left:-416.192836pt;}
._3{margin-left:-246.707400pt;}
._b{margin-left:-203.846612pt;}
._6{margin-left:-194.892669pt;}
._9{margin-left:-187.724672pt;}
._1{margin-left:-80.500602pt;}
._a{margin-left:-61.222157pt;}
._8{margin-left:-46.719326pt;}
._0{margin-left:-22.719255pt;}
._5{margin-left:-14.719226pt;}
._39{margin-left:-7.286578pt;}
._3e{margin-left:-4.963411pt;}
._31{margin-left:-3.187359pt;}
._2{margin-left:-1.497247pt;}
._4{width:1.098725pt;}
._11{width:2.202889pt;}
._19{width:3.157080pt;}
._17{width:4.154376pt;}
._10{width:5.257156pt;}
._16{width:6.970419pt;}
._1f{width:7.926288pt;}
._18{width:8.848834pt;}
._f{width:9.750268pt;}
._e{width:10.660412pt;}
._1c{width:12.668252pt;}
._1a{width:13.932533pt;}
._1b{width:14.871284pt;}
._13{width:15.801679pt;}
._12{width:16.724293pt;}
._15{width:18.370463pt;}
._14{width:19.397849pt;}
._1d{width:20.765013pt;}
._1e{width:21.714113pt;}
._21{width:22.873255pt;}
._20{width:24.226179pt;}
._3c{width:25.126998pt;}
._2e{width:26.139330pt;}
._24{width:27.633939pt;}
._2d{width:28.529296pt;}
._33{width:29.617605pt;}
._23{width:30.843807pt;}
._35{width:32.003010pt;}
._22{width:33.660425pt;}
._27{width:35.326978pt;}
._28{width:36.498064pt;}
._25{width:38.075092pt;}
._26{width:39.394908pt;}
._29{width:40.733815pt;}
._2f{width:42.422588pt;}
._30{width:43.701444pt;}
._34{width:45.260468pt;}
._36{width:46.246500pt;}
._37{width:47.903084pt;}
._2b{width:49.792191pt;}
._2c{width:50.702004pt;}
._40{width:54.135743pt;}
._41{width:56.421153pt;}
._43{width:70.251714pt;}
._d{width:72.061492pt;}
._2a{width:73.734120pt;}
._42{width:89.604977pt;}
._3d{width:110.091796pt;}
._38{width:114.415577pt;}
._32{width:125.448900pt;}
._3f{width:129.161815pt;}
._3b{width:144.513084pt;}
._3a{width:180.531768pt;}
.fs3{font-size:15.999994pt;}
.fsc{font-size:26.879989pt;}
.fsa{font-size:31.999987pt;}
.fs6{font-size:34.559986pt;}
.fsd{font-size:37.119985pt;}
.fs5{font-size:42.879983pt;}
.fs8{font-size:47.999981pt;}
.fs9{font-size:53.119979pt;}
.fs7{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fsb{font-size:66.559973pt;}
.fs0{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs2{font-size:95.999962pt;}
.y4c{bottom:-5.120905pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:2.719205pt;}
.y137{bottom:2.719212pt;}
.y139{bottom:2.719217pt;}
.y13b{bottom:2.719223pt;}
.y114{bottom:2.719244pt;}
.y116{bottom:2.719250pt;}
.y118{bottom:2.719256pt;}
.y11a{bottom:2.719261pt;}
.y11c{bottom:2.719267pt;}
.y11e{bottom:2.719272pt;}
.y120{bottom:2.719278pt;}
.y122{bottom:2.719283pt;}
.y124{bottom:2.719288pt;}
.y126{bottom:2.719294pt;}
.y9e{bottom:2.719305pt;}
.yf{bottom:2.879145pt;}
.yae{bottom:3.039295pt;}
.yac{bottom:3.039297pt;}
.y18{bottom:3.199190pt;}
.y1b{bottom:3.199193pt;}
.y6{bottom:3.679065pt;}
.y2{bottom:4.159046pt;}
.y11{bottom:4.319152pt;}
.y16{bottom:4.319179pt;}
.y47{bottom:5.759065pt;}
.y86{bottom:51.946913pt;}
.y4{bottom:52.106912pt;}
.y16a{bottom:102.666626pt;}
.y154{bottom:103.146625pt;}
.y3c{bottom:105.546624pt;}
.yc9{bottom:106.986891pt;}
.ye9{bottom:107.466890pt;}
.y79{bottom:108.106623pt;}
.yc8{bottom:108.746890pt;}
.ye8{bottom:109.226890pt;}
.y45{bottom:109.546623pt;}
.y83{bottom:110.346623pt;}
.y112{bottom:114.186621pt;}
.ye6{bottom:114.666887pt;}
.yc6{bottom:114.826621pt;}
.yca{bottom:114.826887pt;}
.ye5{bottom:115.306621pt;}
.ye7{bottom:115.306887pt;}
.yaa{bottom:117.706620pt;}
.yc7{bottom:120.106885pt;}
.y169{bottom:122.986617pt;}
.y153{bottom:123.626617pt;}
.y3b{bottom:123.786617pt;}
.y1a7{bottom:125.226617pt;}
.y44{bottom:127.946615pt;}
.y78{bottom:128.586615pt;}
.y135{bottom:130.026615pt;}
.y82{bottom:130.826614pt;}
.y111{bottom:134.666613pt;}
.ya9{bottom:138.026611pt;}
.yc5{bottom:139.466611pt;}
.y3a{bottom:142.186610pt;}
.y168{bottom:143.466609pt;}
.y152{bottom:144.106609pt;}
.y1a6{bottom:145.706608pt;}
.y43{bottom:146.346608pt;}
.y77{bottom:149.066607pt;}
.y134{bottom:150.506606pt;}
.y81{bottom:151.306606pt;}
.y110{bottom:155.146605pt;}
.ya8{bottom:158.506603pt;}
.yc4{bottom:159.946603pt;}
.y39{bottom:160.586602pt;}
.y167{bottom:163.946601pt;}
.y151{bottom:164.586601pt;}
.y42{bottom:164.746601pt;}
.y1a5{bottom:166.186600pt;}
.y76{bottom:169.386599pt;}
.y133{bottom:170.986598pt;}
.y80{bottom:171.786598pt;}
.y10f{bottom:175.466596pt;}
.y38{bottom:178.986595pt;}
.yc3{bottom:180.426594pt;}
.y41{bottom:183.146593pt;}
.y166{bottom:184.426593pt;}
.y150{bottom:185.226593pt;}
.y1a4{bottom:186.506592pt;}
.y75{bottom:189.866591pt;}
.y132{bottom:191.466590pt;}
.y7f{bottom:192.106590pt;}
.y10e{bottom:195.946588pt;}
.y37{bottom:197.386588pt;}
.ya7{bottom:199.466587pt;}
.yc2{bottom:200.906586pt;}
.y40{bottom:201.546586pt;}
.y17f{bottom:203.146585pt;}
.y165{bottom:204.906585pt;}
.y14f{bottom:205.706584pt;}
.y1a3{bottom:206.986584pt;}
.y74{bottom:210.346583pt;}
.y131{bottom:211.786582pt;}
.y7e{bottom:212.586582pt;}
.y36{bottom:215.786580pt;}
.y10d{bottom:216.426580pt;}
.y3f{bottom:219.946579pt;}
.yc1{bottom:221.226578pt;}
.y17e{bottom:223.786577pt;}
.y164{bottom:225.226577pt;}
.y14e{bottom:226.186576pt;}
.y1a2{bottom:227.466576pt;}
.y73{bottom:230.826574pt;}
.y130{bottom:232.266574pt;}
.y7d{bottom:233.066573pt;}
.y10c{bottom:236.906572pt;}
.y3e{bottom:238.346571pt;}
.y35{bottom:239.946571pt;}
.ya6{bottom:240.426570pt;}
.yc0{bottom:241.706570pt;}
.y17d{bottom:244.106569pt;}
.y163{bottom:245.706568pt;}
.y14d{bottom:246.666568pt;}
.y1a1{bottom:249.066567pt;}
.y72{bottom:251.306566pt;}
.y12f{bottom:252.746566pt;}
.y7c{bottom:253.546565pt;}
.y3d{bottom:256.746564pt;}
.y10b{bottom:257.386564pt;}
.y34{bottom:260.426562pt;}
.ya5{bottom:260.746562pt;}
.ybf{bottom:262.186562pt;}
.y17c{bottom:264.586561pt;}
.y162{bottom:266.186560pt;}
.y14c{bottom:266.986560pt;}
.y1a0{bottom:270.986558pt;}
.y71{bottom:271.786558pt;}
.y12e{bottom:273.226557pt;}
.y7b{bottom:274.026557pt;}
.y33{bottom:274.826557pt;}
.y10a{bottom:277.706556pt;}
.y32{bottom:278.186555pt;}
.ya4{bottom:281.226554pt;}
.ybe{bottom:282.666554pt;}
.y17b{bottom:285.066553pt;}
.y161{bottom:286.666552pt;}
.y14b{bottom:287.466552pt;}
.y70{bottom:292.106550pt;}
.y19f{bottom:292.746550pt;}
.y7a{bottom:293.226549pt;}
.y12d{bottom:293.706549pt;}
.y31{bottom:296.426548pt;}
.y109{bottom:298.186547pt;}
.ya3{bottom:301.706546pt;}
.ybd{bottom:303.146545pt;}
.y17a{bottom:305.546544pt;}
.y160{bottom:307.146544pt;}
.y14a{bottom:307.946543pt;}
.y6f{bottom:312.586542pt;}
.y12c{bottom:314.186541pt;}
.y19e{bottom:314.506541pt;}
.y30{bottom:316.906540pt;}
.y108{bottom:318.666539pt;}
.ya2{bottom:322.186538pt;}
.ybc{bottom:322.826538pt;}
.ybb{bottom:323.466537pt;}
.y179{bottom:323.626537pt;}
.y15f{bottom:327.626536pt;}
.y149{bottom:328.426535pt;}
.y6e{bottom:333.066533pt;}
.y12b{bottom:334.506533pt;}
.y19d{bottom:336.426532pt;}
.y2f{bottom:337.226532pt;}
.y107{bottom:339.146531pt;}
.y178{bottom:341.866530pt;}
.ya1{bottom:342.666530pt;}
.yba{bottom:343.306529pt;}
.yb9{bottom:343.946529pt;}
.y15e{bottom:347.946527pt;}
.y148{bottom:348.906527pt;}
.y6d{bottom:353.546525pt;}
.y12a{bottom:354.986525pt;}
.y19c{bottom:355.786524pt;}
.y2e{bottom:357.706524pt;}
.y106{bottom:359.626523pt;}
.y177{bottom:362.346522pt;}
.ya0{bottom:363.146521pt;}
.yb8{bottom:363.786521pt;}
.yb7{bottom:364.426521pt;}
.y15d{bottom:368.426519pt;}
.y147{bottom:369.386519pt;}
.y6c{bottom:374.026517pt;}
.y19b{bottom:375.146517pt;}
.y129{bottom:375.466516pt;}
.y2d{bottom:378.186515pt;}
.y105{bottom:380.106515pt;}
.y176{bottom:382.826514pt;}
.y9f{bottom:383.466513pt;}
.yb6{bottom:384.906513pt;}
.y15c{bottom:388.906511pt;}
.y146{bottom:389.706511pt;}
.y6b{bottom:394.506509pt;}
.y128{bottom:395.946508pt;}
.y19a{bottom:397.066508pt;}
.y2c{bottom:398.666507pt;}
.y104{bottom:400.426506pt;}
.y9d{bottom:401.227200pt;}
.yb5{bottom:402.826506pt;}
.y175{bottom:403.306505pt;}
.yb4{bottom:404.586505pt;}
.ye4{bottom:405.386505pt;}
.y15b{bottom:409.386503pt;}
.yb2{bottom:410.026503pt;}
.y145{bottom:410.186503pt;}
.yb1{bottom:410.666502pt;}
.y6a{bottom:414.826501pt;}
.yb3{bottom:415.946500pt;}
.y127{bottom:416.426500pt;}
.y199{bottom:418.826499pt;}
.y2b{bottom:419.146499pt;}
.yab{bottom:420.107200pt;}
.y103{bottom:420.266499pt;}
.y102{bottom:420.906498pt;}
.y9c{bottom:421.706498pt;}
.y174{bottom:423.626497pt;}
.ye3{bottom:425.866496pt;}
.yad{bottom:426.187200pt;}
.y125{bottom:429.067200pt;}
.y15a{bottom:429.866495pt;}
.y144{bottom:430.666494pt;}
.y69{bottom:435.306493pt;}
.y29{bottom:439.626491pt;}
.y198{bottom:440.586490pt;}
.y101{bottom:440.746490pt;}
.y100{bottom:441.386490pt;}
.y123{bottom:442.827200pt;}
.y2a{bottom:442.986489pt;}
.y173{bottom:444.106489pt;}
.ye2{bottom:446.186488pt;}
.y159{bottom:450.346487pt;}
.y143{bottom:451.146486pt;}
.y68{bottom:455.786484pt;}
.y121{bottom:456.427200pt;}
.y28{bottom:459.946483pt;}
.yff{bottom:461.226482pt;}
.yfe{bottom:461.866482pt;}
.y197{bottom:462.506482pt;}
.y172{bottom:464.586481pt;}
.ye1{bottom:466.666480pt;}
.y11f{bottom:470.027200pt;}
.y158{bottom:470.826478pt;}
.y142{bottom:471.626478pt;}
.y67{bottom:476.266476pt;}
.y26{bottom:480.426474pt;}
.yfd{bottom:482.346474pt;}
.y171{bottom:482.666474pt;}
.y11d{bottom:483.627200pt;}
.y27{bottom:483.786473pt;}
.y196{bottom:484.266473pt;}
.ye0{bottom:487.146472pt;}
.y157{bottom:491.466470pt;}
.y141{bottom:492.106470pt;}
.y66{bottom:496.746468pt;}
.y11b{bottom:497.227200pt;}
.yfc{bottom:500.106467pt;}
.y25{bottom:500.906466pt;}
.yfb{bottom:501.866466pt;}
.y195{bottom:506.026464pt;}
.ydf{bottom:507.626464pt;}
.yf9{bottom:507.946463pt;}
.y119{bottom:510.987200pt;}
.y156{bottom:512.106462pt;}
.y140{bottom:512.426462pt;}
.yfa{bottom:513.226461pt;}
.y65{bottom:517.066460pt;}
.y24{bottom:521.386458pt;}
.y117{bottom:524.587200pt;}
.y194{bottom:527.946455pt;}
.yde{bottom:528.106455pt;}
.yf8{bottom:530.346455pt;}
.y155{bottom:532.746454pt;}
.y13f{bottom:532.906454pt;}
.y64{bottom:537.546452pt;}
.y115{bottom:538.827200pt;}
.y23{bottom:541.866450pt;}
.ydd{bottom:548.586447pt;}
.y193{bottom:549.706447pt;}
.y113{bottom:553.227200pt;}
.y13e{bottom:553.386445pt;}
.y63{bottom:558.026443pt;}
.y22{bottom:562.346442pt;}
.ydc{bottom:568.906439pt;}
.yf7{bottom:569.066439pt;}
.y192{bottom:571.466438pt;}
.y13d{bottom:573.866437pt;}
.y62{bottom:578.506435pt;}
.y21{bottom:582.666434pt;}
.y170{bottom:582.826434pt;}
.ydb{bottom:589.386431pt;}
.yf6{bottom:589.546431pt;}
.y191{bottom:593.386429pt;}
.y13c{bottom:594.346429pt;}
.y61{bottom:598.986427pt;}
.y20{bottom:603.146425pt;}
.y13a{bottom:606.987200pt;}
.yda{bottom:609.866423pt;}
.y190{bottom:615.146421pt;}
.y9b{bottom:619.306419pt;}
.y60{bottom:619.466419pt;}
.y138{bottom:620.747200pt;}
.y16f{bottom:623.626417pt;}
.y1f{bottom:624.426417pt;}
.yd9{bottom:630.346415pt;}
.y136{bottom:634.987200pt;}
.y18f{bottom:636.906412pt;}
.y9a{bottom:639.626411pt;}
.y5f{bottom:639.786411pt;}
.y16e{bottom:641.866410pt;}
.yd8{bottom:650.826406pt;}
.y1c{bottom:651.627200pt;}
.y1e{bottom:654.346405pt;}
.y18e{bottom:658.826403pt;}
.y99{bottom:660.106403pt;}
.y5e{bottom:660.266403pt;}
.yf5{bottom:670.666398pt;}
.yd7{bottom:671.146398pt;}
.yf4{bottom:671.306398pt;}
.y16d{bottom:680.426394pt;}
.y98{bottom:680.586394pt;}
.y5d{bottom:680.746394pt;}
.y1a{bottom:681.387200pt;}
.yb0{bottom:684.106393pt;}
.y19{bottom:684.586393pt;}
.y17{bottom:689.387200pt;}
.yf3{bottom:691.146390pt;}
.yd6{bottom:691.626390pt;}
.yf2{bottom:691.786390pt;}
.y16c{bottom:700.906386pt;}
.y96{bottom:701.066386pt;}
.y5c{bottom:701.226386pt;}
.y18d{bottom:702.346386pt;}
.y97{bottom:704.426385pt;}
.yd5{bottom:711.466382pt;}
.yf1{bottom:711.626382pt;}
.yd4{bottom:712.106382pt;}
.yf0{bottom:712.266382pt;}
.y15{bottom:715.147200pt;}
.y16b{bottom:721.386378pt;}
.y95{bottom:721.546378pt;}
.y5b{bottom:721.706378pt;}
.y18c{bottom:724.266377pt;}
.yd3{bottom:731.946374pt;}
.yd2{bottom:732.586374pt;}
.y14{bottom:735.306373pt;}
.y94{bottom:742.026370pt;}
.y5a{bottom:742.186370pt;}
.y18b{bottom:746.026368pt;}
.yef{bottom:750.346367pt;}
.yee{bottom:752.106366pt;}
.yd1{bottom:753.066365pt;}
.yec{bottom:758.186363pt;}
.y13{bottom:759.786363pt;}
.y93{bottom:762.346362pt;}
.y59{bottom:762.506362pt;}
.yed{bottom:763.466361pt;}
.y18a{bottom:767.786360pt;}
.yd0{bottom:770.986358pt;}
.ycf{bottom:772.746358pt;}
.ycd{bottom:778.826355pt;}
.y10{bottom:782.667200pt;}
.y92{bottom:782.826354pt;}
.y58{bottom:782.986353pt;}
.yce{bottom:784.106353pt;}
.y189{bottom:789.706351pt;}
.y12{bottom:791.626350pt;}
.ye{bottom:800.747200pt;}
.y91{bottom:803.306345pt;}
.y57{bottom:803.466345pt;}
.y188{bottom:811.466342pt;}
.y90{bottom:823.786337pt;}
.y56{bottom:823.946337pt;}
.yd{bottom:830.506334pt;}
.y187{bottom:833.386333pt;}
.y8f{bottom:844.266329pt;}
.y55{bottom:844.426329pt;}
.y186{bottom:855.146325pt;}
.y8e{bottom:864.746321pt;}
.y54{bottom:864.906321pt;}
.yc{bottom:866.666320pt;}
.y185{bottom:876.906316pt;}
.y8d{bottom:885.066313pt;}
.y53{bottom:885.226313pt;}
.yb{bottom:888.266311pt;}
.y184{bottom:898.826307pt;}
.ya{bottom:904.586305pt;}
.y9{bottom:904.906305pt;}
.y8c{bottom:905.546304pt;}
.y52{bottom:905.706304pt;}
.y183{bottom:920.586298pt;}
.y8b{bottom:926.026296pt;}
.y51{bottom:926.186296pt;}
.y4b{bottom:934.667200pt;}
.y182{bottom:942.346290pt;}
.ycc{bottom:946.026288pt;}
.y8a{bottom:946.506288pt;}
.y50{bottom:946.666288pt;}
.y4a{bottom:948.426287pt;}
.y181{bottom:964.266281pt;}
.y49{bottom:966.506280pt;}
.y89{bottom:966.986280pt;}
.y4f{bottom:967.146280pt;}
.y48{bottom:984.586273pt;}
.y180{bottom:986.026272pt;}
.ycb{bottom:986.826272pt;}
.y88{bottom:987.306272pt;}
.y4e{bottom:987.466272pt;}
.yeb{bottom:987.466538pt;}
.yaf{bottom:990.826270pt;}
.y8{bottom:993.866269pt;}
.y7{bottom:994.186269pt;}
.y46{bottom:997.867200pt;}
.y5{bottom:1000.427200pt;}
.y87{bottom:1007.786264pt;}
.y4d{bottom:1007.946263pt;}
.yea{bottom:1007.946530pt;}
.y85{bottom:1022.986257pt;}
.y3{bottom:1023.146257pt;}
.y84{bottom:1047.947200pt;}
.y1{bottom:1048.107200pt;}
.h21{height:10.720000pt;}
.hb{height:12.000000pt;}
.h16{height:13.440000pt;}
.h2c{height:13.600000pt;}
.h13{height:16.640000pt;}
.h9{height:16.687493pt;}
.h15{height:16.800000pt;}
.h25{height:17.440000pt;}
.hd{height:17.920000pt;}
.h11{height:18.080000pt;}
.h5{height:18.240000pt;}
.h1e{height:21.120000pt;}
.h1{height:21.760000pt;}
.h1b{height:23.034366pt;}
.hf{height:23.068116pt;}
.h1a{height:24.203115pt;}
.h2b{height:28.075614pt;}
.h18{height:28.579676pt;}
.hc{height:28.621551pt;}
.h27{height:29.859363pt;}
.h10{height:32.159987pt;}
.h23{height:32.432175pt;}
.h17{height:36.304673pt;}
.h1c{height:38.387485pt;}
.h28{height:38.390610pt;}
.h19{height:40.177171pt;}
.h6{height:42.656233pt;}
.he{height:42.718733pt;}
.h12{height:42.843733pt;}
.h14{height:44.533732pt;}
.h20{height:47.999981pt;}
.h8{height:48.406231pt;}
.h22{height:49.919980pt;}
.h24{height:50.062480pt;}
.h2{height:52.320917pt;}
.h29{height:53.320291pt;}
.h1f{height:56.159978pt;}
.ha{height:56.815915pt;}
.h1d{height:62.812475pt;}
.h4{height:64.499974pt;}
.h26{height:66.550598pt;}
.h2a{height:66.551665pt;}
.h7{height:69.749972pt;}
.h3{height:73.490596pt;}
.h0{height:1122.666667pt;}
.w19{width:0.800000pt;}
.w21{width:2.880000pt;}
.w23{width:3.360000pt;}
.w27{width:3.520000pt;}
.w2{width:4.160000pt;}
.w25{width:4.480000pt;}
.w16{width:4.800000pt;}
.w14{width:5.120000pt;}
.w1a{width:5.280000pt;}
.w1c{width:5.440000pt;}
.w4{width:6.240000pt;}
.w55{width:6.720000pt;}
.w1e{width:6.880000pt;}
.we{width:7.200000pt;}
.w7{width:7.360000pt;}
.w6{width:7.840000pt;}
.w1b{width:8.000000pt;}
.w9{width:8.160000pt;}
.wd{width:8.480000pt;}
.w12{width:9.600000pt;}
.wc{width:10.880000pt;}
.w41{width:12.320000pt;}
.w38{width:12.800000pt;}
.w40{width:13.280000pt;}
.w42{width:13.920000pt;}
.w33{width:15.040000pt;}
.w36{width:15.680000pt;}
.w3d{width:15.840000pt;}
.w2f{width:16.000000pt;}
.w3c{width:16.320000pt;}
.w2d{width:16.640000pt;}
.w18{width:17.760000pt;}
.w3e{width:18.720000pt;}
.w46{width:20.160000pt;}
.w4c{width:20.960000pt;}
.w2c{width:21.760000pt;}
.w34{width:21.920000pt;}
.w5{width:22.080000pt;}
.w30{width:22.400000pt;}
.w45{width:22.720000pt;}
.w39{width:22.880000pt;}
.w43{width:23.200000pt;}
.w24{width:23.360000pt;}
.w2e{width:23.520000pt;}
.w47{width:23.840000pt;}
.w35{width:24.160000pt;}
.w3a{width:24.320000pt;}
.w4a{width:27.520000pt;}
.w4b{width:27.680000pt;}
.w4f{width:28.000000pt;}
.w22{width:29.600000pt;}
.w49{width:29.760000pt;}
.w26{width:29.920000pt;}
.w4e{width:30.400000pt;}
.w1f{width:30.560000pt;}
.w29{width:33.440000pt;}
.w20{width:33.600000pt;}
.w2a{width:34.880000pt;}
.w31{width:36.480000pt;}
.w13{width:40.000000pt;}
.w51{width:42.080000pt;}
.w28{width:47.360000pt;}
.w54{width:49.440000pt;}
.w1d{width:60.800000pt;}
.w1{width:65.760000pt;}
.w3{width:68.800000pt;}
.w56{width:70.400000pt;}
.wf{width:72.320000pt;}
.wb{width:74.720000pt;}
.w58{width:85.600000pt;}
.w4d{width:101.760000pt;}
.w52{width:111.360000pt;}
.w50{width:114.080000pt;}
.w37{width:119.680000pt;}
.w44{width:127.680000pt;}
.w2b{width:131.680000pt;}
.w32{width:138.880000pt;}
.w3f{width:141.600000pt;}
.w48{width:144.320000pt;}
.w3b{width:150.080000pt;}
.w57{width:156.640000pt;}
.w15{width:162.400000pt;}
.w53{width:209.760000pt;}
.w10{width:305.600000pt;}
.w17{width:388.320000pt;}
.wa{width:450.560000pt;}
.w11{width:472.960000pt;}
.w8{width:590.240000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:95.999962pt;}
.x23{left:99.359960pt;}
.xa{left:103.200000pt;}
.x42{left:105.759958pt;}
.x48{left:107.039957pt;}
.x2a{left:108.639957pt;}
.x43{left:110.399956pt;}
.x32{left:114.240000pt;}
.xc{left:116.159918pt;}
.x47{left:117.439953pt;}
.x2e{left:136.160000pt;}
.x2f{left:141.280000pt;}
.x44{left:146.239942pt;}
.x45{left:148.159941pt;}
.x46{left:153.279939pt;}
.x49{left:156.479937pt;}
.x2b{left:165.439934pt;}
.x1d{left:167.520000pt;}
.x2c{left:169.919932pt;}
.xd{left:178.079873pt;}
.xe{left:182.079870pt;}
.xb{left:183.999926pt;}
.x85{left:197.760000pt;}
.x8a{left:210.080000pt;}
.x69{left:215.680000pt;}
.x25{left:221.440000pt;}
.x7a{left:223.680000pt;}
.x5b{left:227.680000pt;}
.xf{left:230.880374pt;}
.x65{left:234.880000pt;}
.x76{left:237.600000pt;}
.x7d{left:240.320000pt;}
.x70{left:246.080000pt;}
.x94{left:252.640000pt;}
.x56{left:282.720000pt;}
.x7e{left:284.480000pt;}
.x5c{left:288.480000pt;}
.x66{left:291.840000pt;}
.x6a{left:292.960000pt;}
.x30{left:303.040000pt;}
.x6b{left:305.760000pt;}
.x67{left:306.880000pt;}
.x31{left:307.840000pt;}
.x5d{left:310.240000pt;}
.x7f{left:314.240000pt;}
.x57{left:316.160000pt;}
.x9{left:336.799865pt;}
.x8b{left:338.400000pt;}
.x2d{left:356.157737pt;}
.x4f{left:357.920000pt;}
.x58{left:359.360000pt;}
.x80{left:363.040000pt;}
.x68{left:365.920000pt;}
.x5e{left:368.480000pt;}
.x77{left:370.720000pt;}
.x78{left:383.040000pt;}
.x26{left:384.959846pt;}
.x50{left:388.480000pt;}
.x81{left:390.560000pt;}
.x59{left:394.240000pt;}
.x95{left:405.760000pt;}
.x96{left:410.240000pt;}
.x24{left:411.200424pt;}
.x21{left:418.079833pt;}
.x4a{left:419.199832pt;}
.x3e{left:420.959832pt;}
.x39{left:422.399831pt;}
.x29{left:423.679835pt;}
.x22{left:425.119830pt;}
.x4d{left:426.079830pt;}
.x3f{left:427.999829pt;}
.x4e{left:431.519827pt;}
.x5a{left:433.120000pt;}
.x86{left:435.520000pt;}
.x82{left:436.640000pt;}
.x10{left:439.040697pt;}
.x7b{left:440.480000pt;}
.x71{left:442.560000pt;}
.x79{left:443.520000pt;}
.x4c{left:447.039821pt;}
.x11{left:450.880689pt;}
.x41{left:453.119819pt;}
.x4b{left:457.439817pt;}
.x40{left:458.879816pt;}
.x7c{left:460.640000pt;}
.x12{left:462.720681pt;}
.x3b{left:464.319814pt;}
.x87{left:465.440000pt;}
.x1b{left:467.193146pt;}
.x3a{left:468.959812pt;}
.x3c{left:470.879812pt;}
.x1e{left:472.959811pt;}
.x13{left:474.400675pt;}
.x3d{left:475.999810pt;}
.x8c{left:477.280000pt;}
.x14{left:478.400672pt;}
.x35{left:480.319808pt;}
.x36{left:484.799806pt;}
.x1{left:488.000000pt;}
.x27{left:489.111938pt;}
.x8d{left:495.680000pt;}
.x88{left:505.120000pt;}
.x6c{left:508.960000pt;}
.x83{left:509.920000pt;}
.x5f{left:512.480000pt;}
.x97{left:514.400000pt;}
.x98{left:518.880000pt;}
.x91{left:520.000000pt;}
.x51{left:520.960000pt;}
.x28{left:523.359791pt;}
.x15{left:525.600655pt;}
.x60{left:528.480000pt;}
.x84{left:530.880000pt;}
.x6d{left:531.840000pt;}
.x89{left:535.680000pt;}
.x8e{left:537.760000pt;}
.x16{left:541.280592pt;}
.x19{left:545.440000pt;}
.x2{left:553.760000pt;}
.x3{left:557.920000pt;}
.x52{left:560.320000pt;}
.x8f{left:568.160000pt;}
.x6e{left:576.960000pt;}
.x61{left:577.920000pt;}
.x72{left:579.840000pt;}
.x99{left:580.960000pt;}
.x37{left:582.879767pt;}
.x38{left:587.359765pt;}
.x92{left:588.640000pt;}
.x17{left:592.319763pt;}
.x73{left:598.560000pt;}
.x62{left:600.320000pt;}
.x6f{left:601.280000pt;}
.x53{left:618.080000pt;}
.x1a{left:619.680000pt;}
.x4{left:626.720000pt;}
.x54{left:635.040000pt;}
.x1f{left:639.519744pt;}
.x63{left:640.480000pt;}
.x5{left:642.080000pt;}
.x20{left:644.319742pt;}
.x74{left:649.440000pt;}
.x93{left:659.040000pt;}
.x6{left:664.160000pt;}
.x9a{left:666.560000pt;}
.x75{left:668.160000pt;}
.x33{left:672.800000pt;}
.x64{left:676.960000pt;}
.x34{left:678.080000pt;}
.x90{left:679.520000pt;}
.x55{left:682.400000pt;}
.x7{left:686.240000pt;}
.x18{left:689.600000pt;}
.x1c{left:693.600000pt;}
}




    .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; }
  