
    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_de7fa20d9ec938cb96a884d2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_88022e036610421e0c0da4fd.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_e2729e8d35fc21e0deb84d43.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_f5414ce4fa22acb5dde528e9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_9f1efe1c8d182fc871c884e6.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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_94f54b8bda3c9a20363541bb.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a32f26dedf6f344ea4e94285.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_341695a15fc39ad3d0175dcf.woff')format("woff");}.ff9{font-family:ff9;line-height:0.681641;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_a41702324ccaea2fbb516f4c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.893066;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_827bcb2f180bcac3d135258b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.858398;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_35b01c2e20c068c3744cf5c9.woff')format("woff");}.ffc{font-family:ffc;line-height:0.921387;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_3d9eb9bac7ac3d125ffc8e3f.woff')format("woff");}.ffd{font-family:ffd;line-height:0.893555;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_976f91f244f7b5573025a0d8.woff')format("woff");}.ffe{font-family:ffe;line-height:0.896973;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_1c552e922be0c9a69a8e9bf0.woff')format("woff");}.fff{font-family:fff;line-height:0.677734;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_51ceb0f456ea9e8ff1594ea6.woff')format("woff");}.ff10{font-family:ff10;line-height:0.910645;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_c6fdfb13332da629da3e64f3.woff')format("woff");}.ff11{font-family:ff11;line-height:0.914062;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_5337e27493bf36187440a975.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_bf37abb26201b5dbbe9ba0e5.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_3f6540bdcd0e57cc9bd85325.woff')format("woff");}.ff14{font-family:ff14;line-height:0.681641;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;}
.m0{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls1f{letter-spacing:-0.980064px;}
.ls22{letter-spacing:-0.776880px;}
.ls1{letter-spacing:-0.758160px;}
.ls1c{letter-spacing:-0.609552px;}
.ls11{letter-spacing:-0.597600px;}
.ls4{letter-spacing:-0.596160px;}
.ls1e{letter-spacing:-0.537840px;}
.ls20{letter-spacing:-0.478080px;}
.ls2b{letter-spacing:-0.460152px;}
.ls1a{letter-spacing:-0.418320px;}
.ls3f{letter-spacing:-0.361800px;}
.ls14{letter-spacing:-0.358560px;}
.ls3d{letter-spacing:-0.337680px;}
.ls3{letter-spacing:-0.331200px;}
.ls2{letter-spacing:-0.304704px;}
.ls3b{letter-spacing:-0.289440px;}
.ls36{letter-spacing:-0.270144px;}
.ls1d{letter-spacing:-0.256968px;}
.ls21{letter-spacing:-0.250992px;}
.ls3e{letter-spacing:-0.241200px;}
.ls1b{letter-spacing:-0.239040px;}
.ls3c{letter-spacing:-0.221904px;}
.ls2c{letter-spacing:-0.209160px;}
.ls3a{letter-spacing:-0.192960px;}
.ls2d{letter-spacing:-0.179280px;}
.ls23{letter-spacing:-0.101592px;}
.ls34{letter-spacing:-0.059760px;}
.ls17{letter-spacing:-0.053784px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053784px;}
.ls33{letter-spacing:0.059760px;}
.ls15{letter-spacing:0.107568px;}
.ls18{letter-spacing:0.119520px;}
.ls37{letter-spacing:0.144720px;}
.ls5{letter-spacing:0.152352px;}
.ls24{letter-spacing:0.155376px;}
.ls9{letter-spacing:0.179280px;}
.lsa{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.198720px;}
.ls2a{letter-spacing:0.206640px;}
.ls28{letter-spacing:0.209160px;}
.ls30{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.256968px;}
.ls7{letter-spacing:0.259920px;}
.ls26{letter-spacing:0.261360px;}
.ls31{letter-spacing:0.288000px;}
.ls38{letter-spacing:0.289440px;}
.ls12{letter-spacing:0.298800px;}
.ls19{letter-spacing:0.304776px;}
.ls2f{letter-spacing:0.336000px;}
.ls10{letter-spacing:0.358560px;}
.lsb{letter-spacing:0.360000px;}
.ls27{letter-spacing:0.360072px;}
.ls39{letter-spacing:0.361800px;}
.ls25{letter-spacing:0.362952px;}
.lse{letter-spacing:0.439200px;}
.ls29{letter-spacing:0.441360px;}
.lsc{letter-spacing:0.501840px;}
.lsd{letter-spacing:0.519840px;}
.ls35{letter-spacing:0.776880px;}
.lsf{letter-spacing:0.781920px;}
.ls32{letter-spacing:1.728000px;}
.ls16{letter-spacing:64.026720px;}
.ls2e{letter-spacing:141.276000px;}
.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;}
}
.ws12{word-spacing:-59.760000px;}
.ws0{word-spacing:-20.301840px;}
.ws29{word-spacing:-18.000000px;}
.ws7{word-spacing:-16.758720px;}
.ws6{word-spacing:-16.712352px;}
.ws1{word-spacing:-16.560000px;}
.ws2b{word-spacing:-16.488000px;}
.ws3{word-spacing:-16.255296px;}
.ws4{word-spacing:-16.228800px;}
.ws5{word-spacing:-15.963840px;}
.ws21{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.298560px;}
.ws15{word-spacing:-15.244776px;}
.wsa{word-spacing:-15.238800px;}
.ws1e{word-spacing:-15.199920px;}
.ws17{word-spacing:-15.196968px;}
.ws28{word-spacing:-15.149160px;}
.ws8{word-spacing:-15.119280px;}
.ws24{word-spacing:-15.095376px;}
.ws20{word-spacing:-15.059520px;}
.ws10{word-spacing:-15.047568px;}
.wsd{word-spacing:-14.993784px;}
.wse{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.886216px;}
.ws22{word-spacing:-14.838408px;}
.ws2a{word-spacing:-14.730840px;}
.ws18{word-spacing:-14.700960px;}
.ws1d{word-spacing:-14.689008px;}
.ws1a{word-spacing:-14.683032px;}
.ws11{word-spacing:-14.581440px;}
.ws16{word-spacing:-14.521680px;}
.ws26{word-spacing:-14.479848px;}
.ws23{word-spacing:-14.461920px;}
.ws1c{word-spacing:-14.402160px;}
.ws9{word-spacing:-14.342400px;}
.ws19{word-spacing:-14.330448px;}
.ws1f{word-spacing:-14.163120px;}
.ws1b{word-spacing:-13.959936px;}
.ws2c{word-spacing:-13.565520px;}
.ws2d{word-spacing:-13.446000px;}
.ws31{word-spacing:-12.421800px;}
.ws30{word-spacing:-12.349440px;}
.ws2f{word-spacing:-12.060000px;}
.ws32{word-spacing:-11.867040px;}
.ws35{word-spacing:-11.838096px;}
.ws38{word-spacing:-11.818800px;}
.ws2e{word-spacing:-11.789856px;}
.ws33{word-spacing:-11.770560px;}
.ws36{word-spacing:-11.722320px;}
.ws39{word-spacing:-11.698200px;}
.ws14{word-spacing:-9.720000px;}
.ws25{word-spacing:-0.418320px;}
.ws27{word-spacing:-0.358560px;}
.ws37{word-spacing:-0.337680px;}
.wsf{word-spacing:-0.239040px;}
.wsc{word-spacing:-0.059760px;}
.ws34{word-spacing:-0.048240px;}
.ws2{word-spacing:0.000000px;}
._f{margin-left:-14.490720px;}
._e{margin-left:-12.948000px;}
._a{margin-left:-11.184000px;}
._c{margin-left:-8.436000px;}
._10{margin-left:-6.744000px;}
._d{margin-left:-5.700000px;}
._b{margin-left:-3.552000px;}
._0{margin-left:-1.095120px;}
._1{width:1.461840px;}
._4{width:2.921040px;}
._7{width:4.200240px;}
._3{width:74.880000px;}
._2{width:91.440000px;}
._8{width:140.558880px;}
._5{width:846.156000px;}
._9{width:849.216000px;}
._6{width:1896.576000px;}
.fc6{color:rgb(255,0,0);}
.fc7{color:rgb(15,71,97);}
.fc4{color:rgb(112,173,71);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(32,33,36);}
.fc3{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs4{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y21e{bottom:-13.320000px;}
.y0{bottom:0.000000px;}
.y1c2{bottom:2.520000px;}
.y18{bottom:3.600000px;}
.y221{bottom:3.960000px;}
.y1e0{bottom:11.340000px;}
.y1dd{bottom:11.520000px;}
.y14e{bottom:12.060000px;}
.y153{bottom:12.240000px;}
.y157{bottom:12.285000px;}
.y220{bottom:13.140000px;}
.y1e5{bottom:16.200000px;}
.y1c1{bottom:16.380000px;}
.y15e{bottom:20.340000px;}
.y15b{bottom:20.520000px;}
.y152{bottom:21.240000px;}
.y156{bottom:21.285000px;}
.y1df{bottom:25.200000px;}
.y14d{bottom:29.340000px;}
.y15a{bottom:29.520000px;}
.y150{bottom:38.340000px;}
.y151{bottom:38.520000px;}
.y155{bottom:38.565000px;}
.y15d{bottom:46.620000px;}
.y159{bottom:46.800000px;}
.y17{bottom:53.820000px;}
.y16{bottom:57.420000px;}
.y1e8{bottom:59.220000px;}
.y1db{bottom:72.360000px;}
.y1e7{bottom:72.900000px;}
.y1e2{bottom:73.080000px;}
.y20d{bottom:112.500000px;}
.yfe{bottom:116.280000px;}
.y12b{bottom:116.640000px;}
.y214{bottom:121.500000px;}
.y5f{bottom:122.400000px;}
.y1bf{bottom:122.580000px;}
.yde{bottom:123.840000px;}
.y108{bottom:125.280000px;}
.y9b{bottom:126.000000px;}
.y1fc{bottom:126.720000px;}
.y14a{bottom:126.900000px;}
.y115{bottom:127.800000px;}
.y20c{bottom:129.780000px;}
.y15{bottom:130.320000px;}
.yc9{bottom:132.840000px;}
.y87{bottom:135.000000px;}
.y21d{bottom:138.420000px;}
.y213{bottom:138.780000px;}
.y1be{bottom:139.860000px;}
.y3c{bottom:143.460000px;}
.y149{bottom:144.900000px;}
.y20b{bottom:147.060000px;}
.yb4{bottom:150.840000px;}
.y46{bottom:152.460000px;}
.y173{bottom:154.980000px;}
.y212{bottom:156.060000px;}
.y1bd{bottom:156.960000px;}
.ydd{bottom:158.400000px;}
.y107{bottom:159.840000px;}
.y9a{bottom:160.380000px;}
.y2d{bottom:161.460000px;}
.y20a{bottom:164.340000px;}
.y1f2{bottom:166.320000px;}
.yc8{bottom:167.400000px;}
.y5e{bottom:168.480000px;}
.y174{bottom:168.660000px;}
.y12a{bottom:169.200000px;}
.y86{bottom:169.380000px;}
.y211{bottom:173.340000px;}
.y1bc{bottom:174.240000px;}
.y114{bottom:175.500000px;}
.yf5{bottom:176.400000px;}
.y14{bottom:177.300000px;}
.y13f{bottom:179.280000px;}
.y21c{bottom:182.700000px;}
.y163{bottom:185.040000px;}
.yb3{bottom:185.400000px;}
.y3b{bottom:190.440000px;}
.y1bb{bottom:191.520000px;}
.y1f1{bottom:192.600000px;}
.ydc{bottom:192.780000px;}
.y106{bottom:194.400000px;}
.y99{bottom:194.940000px;}
.y45{bottom:199.440000px;}
.y21b{bottom:199.980000px;}
.yc7{bottom:201.780000px;}
.y129{bottom:203.580000px;}
.y85{bottom:203.940000px;}
.y2c{bottom:208.470000px;}
.y1ba{bottom:208.830000px;}
.y1f0{bottom:209.910000px;}
.yf4{bottom:210.810000px;}
.y13e{bottom:213.870000px;}
.y5d{bottom:216.210000px;}
.y21a{bottom:217.290000px;}
.yb2{bottom:219.810000px;}
.y113{bottom:221.610000px;}
.y13{bottom:224.310000px;}
.y1b9{bottom:226.110000px;}
.y1ef{bottom:227.010000px;}
.ydb{bottom:227.370000px;}
.y105{bottom:228.810000px;}
.y98{bottom:229.530000px;}
.y148{bottom:231.870000px;}
.yc6{bottom:236.370000px;}
.y3a{bottom:237.270000px;}
.y84{bottom:238.530000px;}
.y1b8{bottom:243.390000px;}
.y1ee{bottom:244.290000px;}
.ye7{bottom:245.370000px;}
.y16d{bottom:246.090000px;}
.y44{bottom:246.270000px;}
.y13d{bottom:248.430000px;}
.yb1{bottom:254.370000px;}
.y2b{bottom:255.270000px;}
.y128{bottom:256.170000px;}
.y1eb{bottom:259.050000px;}
.y1b7{bottom:260.490000px;}
.y12{bottom:262.290000px;}
.y5c{bottom:262.470000px;}
.y104{bottom:263.370000px;}
.y97{bottom:263.910000px;}
.y112{bottom:265.170000px;}
.y147{bottom:266.430000px;}
.yda{bottom:270.930000px;}
.y83{bottom:272.910000px;}
.y1b6{bottom:277.770000px;}
.y18f{bottom:279.750000px;}
.yc5{bottom:279.930000px;}
.y16c{bottom:280.650000px;}
.y39{bottom:284.250000px;}
.y1ed{bottom:287.490000px;}
.yb0{bottom:288.930000px;}
.y127{bottom:290.730000px;}
.y43{bottom:293.250000px;}
.y5b{bottom:297.030000px;}
.y103{bottom:297.930000px;}
.y96{bottom:298.470000px;}
.y111{bottom:299.730000px;}
.y13c{bottom:300.810000px;}
.y1b5{bottom:300.990000px;}
.y2a{bottom:302.250000px;}
.yd9{bottom:305.310000px;}
.y82{bottom:307.470000px;}
.y11{bottom:309.090000px;}
.yc4{bottom:314.310000px;}
.y16b{bottom:315.030000px;}
.y1ec{bottom:315.750000px;}
.y18e{bottom:317.010000px;}
.y38{bottom:322.230000px;}
.yaf{bottom:323.310000px;}
.y126{bottom:325.110000px;}
.y5a{bottom:331.410000px;}
.y102{bottom:332.310000px;}
.y95{bottom:333.030000px;}
.y18d{bottom:335.010000px;}
.y13b{bottom:335.370000px;}
.yd8{bottom:339.870000px;}
.y29{bottom:340.230000px;}
.y81{bottom:342.030000px;}
.y1e6{bottom:344.190000px;}
.y1b4{bottom:345.270000px;}
.y110{bottom:347.430000px;}
.yc3{bottom:348.870000px;}
.y16a{bottom:349.590000px;}
.y146{bottom:353.370000px;}
.y10{bottom:356.070000px;}
.yae{bottom:357.870000px;}
.y1b3{bottom:362.550000px;}
.y101{bottom:366.870000px;}
.y94{bottom:367.410000px;}
.y37{bottom:369.210000px;}
.y18c{bottom:371.550000px;}
.y1ea{bottom:372.450000px;}
.yd7{bottom:374.430000px;}
.y21f{bottom:374.610000px;}
.y59{bottom:374.970000px;}
.yfd{bottom:376.410000px;}
.y125{bottom:377.670000px;}
.y1b2{bottom:379.830000px;}
.yc2{bottom:383.430000px;}
.y169{bottom:384.150000px;}
.y80{bottom:385.410000px;}
.y28{bottom:387.210000px;}
.y13a{bottom:387.930000px;}
.y18b{bottom:389.910000px;}
.yf3{bottom:392.430000px;}
.y10f{bottom:393.510000px;}
.y1b1{bottom:397.110000px;}
.y1e9{bottom:400.890000px;}
.yad{bottom:401.430000px;}
.y93{bottom:401.970000px;}
.yf{bottom:403.050000px;}
.yd6{bottom:408.810000px;}
.y18a{bottom:409.170000px;}
.yfc{bottom:410.970000px;}
.y124{bottom:412.230000px;}
.y1b0{bottom:414.210000px;}
.y36{bottom:416.190000px;}
.yc1{bottom:417.810000px;}
.y58{bottom:418.530000px;}
.y7f{bottom:419.970000px;}
.y139{bottom:422.310000px;}
.y208{bottom:424.650000px;}
.y42{bottom:425.190000px;}
.yf2{bottom:426.855000px;}
.y1e1{bottom:429.195000px;}
.y1af{bottom:431.535000px;}
.y27{bottom:434.235000px;}
.yac{bottom:435.855000px;}
.y92{bottom:436.575000px;}
.y10e{bottom:437.115000px;}
.y189{bottom:440.175000px;}
.y145{bottom:440.355000px;}
.y207{bottom:441.975000px;}
.yd5{bottom:443.415000px;}
.yfb{bottom:445.575000px;}
.y123{bottom:446.655000px;}
.y1ae{bottom:448.815000px;}
.ye{bottom:450.075000px;}
.yc0{bottom:452.415000px;}
.y57{bottom:452.955000px;}
.y168{bottom:453.135000px;}
.y7e{bottom:454.575000px;}
.y241{bottom:456.015000px;}
.y1e4{bottom:457.635000px;}
.y206{bottom:459.075000px;}
.y188{bottom:461.235000px;}
.yf1{bottom:461.415000px;}
.y35{bottom:463.035000px;}
.y1ad{bottom:466.095000px;}
.yab{bottom:470.415000px;}
.y91{bottom:470.955000px;}
.y10d{bottom:471.675000px;}
.y41{bottom:472.035000px;}
.y138{bottom:474.915000px;}
.y205{bottom:476.355000px;}
.yd4{bottom:477.975000px;}
.yfa{bottom:479.955000px;}
.y26{bottom:481.035000px;}
.y1ac{bottom:483.375000px;}
.y240{bottom:484.995000px;}
.y1e3{bottom:485.895000px;}
.ybf{bottom:486.975000px;}
.y56{bottom:487.515000px;}
.y167{bottom:487.695000px;}
.y7d{bottom:488.955000px;}
.y187{bottom:491.835000px;}
.y204{bottom:493.635000px;}
.yf0{bottom:495.975000px;}
.yd{bottom:497.055000px;}
.y122{bottom:499.215000px;}
.y1ab{bottom:500.655000px;}
.y23f{bottom:502.275000px;}
.yaa{bottom:504.975000px;}
.y90{bottom:505.515000px;}
.y137{bottom:509.475000px;}
.y34{bottom:510.015000px;}
.y1fb{bottom:510.915000px;}
.yd3{bottom:512.355000px;}
.y186{bottom:512.895000px;}
.y1da{bottom:514.335000px;}
.yf9{bottom:514.515000px;}
.y1aa{bottom:517.755000px;}
.y40{bottom:519.015000px;}
.y10c{bottom:519.375000px;}
.y23e{bottom:519.555000px;}
.ybe{bottom:521.355000px;}
.y55{bottom:522.075000px;}
.y7c{bottom:523.515000px;}
.y144{bottom:527.475000px;}
.y25{bottom:528.015000px;}
.y203{bottom:528.195000px;}
.ye6{bottom:530.355000px;}
.y121{bottom:533.775000px;}
.y1a9{bottom:535.755000px;}
.y23d{bottom:536.655000px;}
.ya9{bottom:539.355000px;}
.y185{bottom:543.495000px;}
.yc{bottom:544.035000px;}
.yd2{bottom:546.915000px;}
.y8f{bottom:549.075000px;}
.y6e{bottom:550.155000px;}
.y202{bottom:551.235000px;}
.y1de{bottom:551.595000px;}
.y23c{bottom:553.935000px;}
.y1fa{bottom:555.195000px;}
.ybd{bottom:555.915000px;}
.y54{bottom:556.455000px;}
.y166{bottom:556.635000px;}
.y33{bottom:556.995000px;}
.y7b{bottom:558.075000px;}
.y172{bottom:560.415000px;}
.y1a8{bottom:561.675000px;}
.y136{bottom:561.855000px;}
.y209{bottom:562.575000px;}
.ye5{bottom:564.915000px;}
.y10b{bottom:565.455000px;}
.y24{bottom:565.995000px;}
.y162{bottom:567.975000px;}
.y120{bottom:568.155000px;}
.y23b{bottom:571.215000px;}
.y210{bottom:571.575000px;}
.y1f9{bottom:572.475000px;}
.ya8{bottom:573.915000px;}
.y184{bottom:574.455000px;}
.y1dc{bottom:575.175000px;}
.yd1{bottom:581.475000px;}
.yf8{bottom:583.455000px;}
.y6d{bottom:587.415000px;}
.y23a{bottom:588.495000px;}
.y1f8{bottom:589.575000px;}
.ybc{bottom:590.475000px;}
.yb{bottom:590.835000px;}
.y53{bottom:591.015000px;}
.y7a{bottom:592.455000px;}
.y219{bottom:593.535000px;}
.y171{bottom:594.795000px;}
.y135{bottom:596.415000px;}
.y165{bottom:596.955000px;}
.ye4{bottom:599.475000px;}
.y161{bottom:602.355000px;}
.y32{bottom:603.975000px;}
.y183{bottom:605.415000px;}
.y239{bottom:605.775000px;}
.y1a7{bottom:605.955000px;}
.y1f7{bottom:606.855000px;}
.y1d9{bottom:607.935000px;}
.ya7{bottom:608.475000px;}
.y10a{bottom:609.015000px;}
.y218{bottom:610.815000px;}
.y23{bottom:612.975000px;}
.y143{bottom:614.415000px;}
.yd0{bottom:615.855000px;}
.yf7{bottom:618.015000px;}
.y11f{bottom:620.715000px;}
.y6c{bottom:621.795000px;}
.y238{bottom:623.055000px;}
.y1a6{bottom:623.235000px;}
.y1f6{bottom:624.135000px;}
.ybb{bottom:624.855000px;}
.y1d8{bottom:625.215000px;}
.y79{bottom:627.015000px;}
.y170{bottom:629.355000px;}
.y134{bottom:630.795000px;}
.y20f{bottom:633.135000px;}
.ye3{bottom:633.855000px;}
.y52{bottom:634.575000px;}
.y182{bottom:636.375000px;}
.ya{bottom:637.815000px;}
.y237{bottom:640.155000px;}
.y1a5{bottom:640.515000px;}
.y1f5{bottom:641.415000px;}
.ya6{bottom:642.855000px;}
.y142{bottom:648.825000px;}
.ycf{bottom:650.445000px;}
.y31{bottom:650.985000px;}
.y100{bottom:651.885000px;}
.y160{bottom:653.145000px;}
.y217{bottom:655.125000px;}
.y11e{bottom:655.305000px;}
.y6b{bottom:656.385000px;}
.y109{bottom:656.745000px;}
.y236{bottom:657.465000px;}
.y1a4{bottom:657.825000px;}
.y1f4{bottom:658.725000px;}
.yba{bottom:659.445000px;}
.y22{bottom:659.985000px;}
.y78{bottom:661.605000px;}
.y16f{bottom:663.945000px;}
.yf6{bottom:665.745000px;}
.y181{bottom:667.365000px;}
.y20e{bottom:667.725000px;}
.ye2{bottom:668.445000px;}
.y15f{bottom:670.605000px;}
.y1d7{bottom:670.785000px;}
.y216{bottom:672.405000px;}
.y235{bottom:674.745000px;}
.y1a3{bottom:675.105000px;}
.y9{bottom:675.825000px;}
.ya5{bottom:677.445000px;}
.y51{bottom:677.985000px;}
.y1f3{bottom:681.765000px;}
.y133{bottom:683.385000px;}
.yce{bottom:684.825000px;}
.yff{bottom:686.445000px;}
.y1d6{bottom:688.065000px;}
.y215{bottom:689.685000px;}
.y6a{bottom:690.945000px;}
.y234{bottom:692.025000px;}
.y1a2{bottom:692.205000px;}
.yb9{bottom:693.825000px;}
.y77{bottom:695.985000px;}
.y30{bottom:697.785000px;}
.y180{bottom:698.325000px;}
.ye1{bottom:702.825000px;}
.y16e{bottom:704.085000px;}
.y1d5{bottom:705.345000px;}
.y21{bottom:706.785000px;}
.y233{bottom:709.305000px;}
.y1a1{bottom:709.485000px;}
.ya4{bottom:711.825000px;}
.y50{bottom:712.545000px;}
.y132{bottom:717.945000px;}
.ycd{bottom:719.385000px;}
.yef{bottom:720.825000px;}
.y1d4{bottom:722.625000px;}
.y8{bottom:722.805000px;}
.y69{bottom:725.325000px;}
.y164{bottom:726.585000px;}
.y1a0{bottom:726.765000px;}
.yb8{bottom:728.385000px;}
.y17f{bottom:729.285000px;}
.y76{bottom:730.545000px;}
.y15c{bottom:732.165000px;}
.y232{bottom:732.345000px;}
.y141{bottom:735.945000px;}
.ye0{bottom:737.385000px;}
.y19f{bottom:744.045000px;}
.y2f{bottom:744.765000px;}
.ya3{bottom:746.385000px;}
.y4f{bottom:746.925000px;}
.y11d{bottom:749.085000px;}
.y1d3{bottom:751.965000px;}
.y20{bottom:753.765000px;}
.yee{bottom:755.385000px;}
.y68{bottom:759.885000px;}
.y17e{bottom:760.245000px;}
.y19e{bottom:761.325000px;}
.y231{bottom:762.405000px;}
.yb7{bottom:762.945000px;}
.y8e{bottom:764.925000px;}
.y1d2{bottom:766.365000px;}
.y7{bottom:769.785000px;}
.y131{bottom:770.325000px;}
.ydf{bottom:771.945000px;}
.y75{bottom:773.925000px;}
.y19d{bottom:778.605000px;}
.ya2{bottom:780.945000px;}
.y17d{bottom:781.305000px;}
.y4e{bottom:781.485000px;}
.y230{bottom:782.385000px;}
.yed{bottom:789.945000px;}
.y1f{bottom:791.745000px;}
.y11c{bottom:792.645000px;}
.y158{bottom:793.545000px;}
.y67{bottom:794.265000px;}
.y1d1{bottom:795.525000px;}
.y19c{bottom:795.705000px;}
.y8d{bottom:799.485000px;}
.y22f{bottom:799.665000px;}
.y130{bottom:804.885000px;}
.yb6{bottom:806.325000px;}
.y74{bottom:808.485000px;}
.y1d0{bottom:810.105000px;}
.y17c{bottom:812.085000px;}
.y19b{bottom:812.985000px;}
.ya1{bottom:815.325000px;}
.y6{bottom:816.585000px;}
.y22e{bottom:816.945000px;}
.y222{bottom:817.305000px;}
.y140{bottom:822.885000px;}
.yec{bottom:824.325000px;}
.y1cf{bottom:824.685000px;}
.y4d{bottom:825.045000px;}
.y11b{bottom:827.025000px;}
.y66{bottom:828.825000px;}
.y19a{bottom:830.265000px;}
.y8c{bottom:834.045000px;}
.y22d{bottom:834.225000px;}
.y1e{bottom:838.725000px;}
.y1ce{bottom:839.265000px;}
.ycc{bottom:840.885000px;}
.y73{bottom:843.045000px;}
.y223{bottom:845.565000px;}
.y199{bottom:847.545000px;}
.ya0{bottom:849.885000px;}
.y1cd{bottom:853.665000px;}
.y154{bottom:855.105000px;}
.y22c{bottom:857.265000px;}
.y12f{bottom:857.445000px;}
.yeb{bottom:858.885000px;}
.y11a{bottom:861.585000px;}
.y65{bottom:863.385000px;}
.y5{bottom:863.565000px;}
.y198{bottom:865.590000px;}
.y1cc{bottom:868.290000px;}
.y4c{bottom:868.470000px;}
.y17b{bottom:874.050000px;}
.ycb{bottom:875.490000px;}
.y3f{bottom:876.750000px;}
.y72{bottom:877.470000px;}
.y1cb{bottom:882.870000px;}
.y9f{bottom:884.490000px;}
.y1d{bottom:885.750000px;}
.y22b{bottom:886.650000px;}
.y197{bottom:891.510000px;}
.y12e{bottom:891.870000px;}
.yea{bottom:893.490000px;}
.y119{bottom:896.190000px;}
.y1ca{bottom:897.450000px;}
.y64{bottom:897.810000px;}
.y4b{bottom:903.030000px;}
.y22a{bottom:903.930000px;}
.y17a{bottom:905.010000px;}
.y14f{bottom:908.430000px;}
.yca{bottom:909.870000px;}
.y4{bottom:910.590000px;}
.y71{bottom:912.030000px;}
.y9e{bottom:918.870000px;}
.y229{bottom:921.210000px;}
.y3e{bottom:923.730000px;}
.y1c9{bottom:926.610000px;}
.ye9{bottom:927.870000px;}
.y118{bottom:930.570000px;}
.y1c{bottom:932.730000px;}
.y201{bottom:935.430000px;}
.y196{bottom:935.790000px;}
.y179{bottom:935.970000px;}
.y4a{bottom:937.590000px;}
.y228{bottom:938.490000px;}
.y1c8{bottom:941.010000px;}
.y12d{bottom:944.430000px;}
.y70{bottom:946.590000px;}
.y63{bottom:948.570000px;}
.y8b{bottom:950.730000px;}
.y195{bottom:953.070000px;}
.y9d{bottom:953.430000px;}
.y1c7{bottom:955.590000px;}
.y14c{bottom:961.710000px;}
.ye8{bottom:962.430000px;}
.y3{bottom:963.690000px;}
.y117{bottom:965.130000px;}
.y178{bottom:967.830000px;}
.y1c6{bottom:970.170000px;}
.y194{bottom:970.350000px;}
.y3d{bottom:970.530000px;}
.y49{bottom:971.970000px;}
.y12c{bottom:978.990000px;}
.y1b{bottom:979.530000px;}
.y200{bottom:979.710000px;}
.y6f{bottom:980.970000px;}
.y1c5{bottom:984.750000px;}
.y193{bottom:987.450000px;}
.y9c{bottom:987.990000px;}
.y227{bottom:991.050000px;}
.y62{bottom:994.830000px;}
.y8a{bottom:996.990000px;}
.y1c4{bottom:999.330000px;}
.y192{bottom:1004.730000px;}
.y226{bottom:1008.150000px;}
.y14b{bottom:1009.770000px;}
.y2{bottom:1012.110000px;}
.y116{bottom:1012.830000px;}
.y1c3{bottom:1013.910000px;}
.y1ff{bottom:1014.270000px;}
.y48{bottom:1015.530000px;}
.y1a{bottom:1017.510000px;}
.y177{bottom:1021.830000px;}
.y191{bottom:1022.010000px;}
.yb5{bottom:1022.370000px;}
.y225{bottom:1025.430000px;}
.y2e{bottom:1026.510000px;}
.y1c0{bottom:1028.310000px;}
.y61{bottom:1030.290000px;}
.y89{bottom:1031.370000px;}
.y1fe{bottom:1031.550000px;}
.y190{bottom:1040.010000px;}
.y176{bottom:1042.530000px;}
.y224{bottom:1042.710000px;}
.y1fd{bottom:1048.650000px;}
.y1{bottom:1060.350000px;}
.y47{bottom:1063.230000px;}
.y19{bottom:1064.490000px;}
.y60{bottom:1064.850000px;}
.y88{bottom:1065.930000px;}
.y175{bottom:1116.900000px;}
.h27{height:3.420000px;}
.h19{height:13.680000px;}
.h1b{height:13.860000px;}
.h1c{height:13.896000px;}
.h4{height:18.900000px;}
.h28{height:20.340000px;}
.h2a{height:20.376000px;}
.h29{height:20.568516px;}
.h20{height:22.860000px;}
.h23{height:27.540000px;}
.h25{height:27.576000px;}
.h17{height:27.720000px;}
.h18{height:32.693906px;}
.h1a{height:33.518320px;}
.h21{height:36.540000px;}
.h1d{height:39.830273px;}
.h7{height:40.501406px;}
.h1e{height:40.705664px;}
.h8{height:41.522695px;}
.h16{height:41.726953px;}
.hc{height:43.215117px;}
.he{height:43.380000px;}
.h2{height:45.992812px;}
.h3{height:46.025156px;}
.hb{height:47.894766px;}
.h5{height:47.901094px;}
.hd{height:48.014766px;}
.h6{height:48.796875px;}
.h13{height:48.972656px;}
.ha{height:48.995859px;}
.h15{height:49.042969px;}
.h9{height:50.027344px;}
.h14{height:50.800781px;}
.hf{height:52.380000px;}
.h10{height:52.596000px;}
.h1{height:57.092344px;}
.h12{height:60.660000px;}
.h11{height:60.840000px;}
.h1f{height:83.700000px;}
.h22{height:84.240000px;}
.h24{height:84.276000px;}
.h26{height:84.420000px;}
.h0{height:1188.000000px;}
.w2{width:8.280000px;}
.w3{width:16.560000px;}
.w10{width:73.440000px;}
.wf{width:73.476000px;}
.w11{width:77.220000px;}
.w12{width:77.616000px;}
.w13{width:87.120000px;}
.w4{width:113.220000px;}
.w8{width:113.580000px;}
.w9{width:120.636000px;}
.wd{width:147.816000px;}
.we{width:151.560000px;}
.w14{width:164.550000px;}
.wa{width:165.450000px;}
.w7{width:167.610000px;}
.w6{width:169.590000px;}
.w15{width:172.110000px;}
.w5{width:247.710000px;}
.wb{width:296.355000px;}
.wc{width:300.090000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x38{left:7.740000px;}
.x19{left:8.820000px;}
.x3c{left:10.800000px;}
.x12{left:12.240000px;}
.x1d{left:14.040000px;}
.x3a{left:15.336000px;}
.xf{left:17.820000px;}
.xc{left:19.110000px;}
.x3b{left:21.816000px;}
.x39{left:23.040000px;}
.x31{left:24.300000px;}
.x37{left:25.740000px;}
.x8{left:27.000000px;}
.x10{left:28.620000px;}
.xd{left:29.910000px;}
.x28{left:32.220000px;}
.x27{left:34.020000px;}
.x1b{left:36.180000px;}
.x1e{left:37.260000px;}
.x13{left:45.000000px;}
.x1a{left:47.874000px;}
.x18{left:50.754000px;}
.x11{left:53.634000px;}
.x23{left:55.110000px;}
.x17{left:57.645000px;}
.x15{left:58.890000px;}
.x22{left:61.425000px;}
.x16{left:64.125000px;}
.x14{left:65.370000px;}
.x21{left:67.905000px;}
.x20{left:69.150000px;}
.x29{left:77.220000px;}
.x2a{left:82.650000px;}
.xa{left:86.625000px;}
.x1c{left:93.825000px;}
.x1f{left:95.805000px;}
.x1{left:108.035986px;}
.x4{left:114.875986px;}
.x7{left:118.835986px;}
.x2c{left:123.525000px;}
.x2e{left:125.280000px;}
.x2{left:135.035986px;}
.x5{left:141.875986px;}
.x26{left:144.035986px;}
.x36{left:155.550000px;}
.x9{left:222.870000px;}
.x2b{left:243.390000px;}
.x32{left:317.775000px;}
.x2f{left:391.935000px;}
.x33{left:466.275000px;}
.xb{left:471.315000px;}
.x2d{left:540.465000px;}
.x34{left:614.805000px;}
.xe{left:641.805000px;}
.x30{left:689.010000px;}
.x35{left:763.350000px;}
.x6{left:793.590000px;}
.x3{left:801.870000px;}
.x25{left:807.809986px;}
.x24{left:810.149986px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls1f{letter-spacing:-0.871168pt;}
.ls22{letter-spacing:-0.690560pt;}
.ls1{letter-spacing:-0.673920pt;}
.ls1c{letter-spacing:-0.541824pt;}
.ls11{letter-spacing:-0.531200pt;}
.ls4{letter-spacing:-0.529920pt;}
.ls1e{letter-spacing:-0.478080pt;}
.ls20{letter-spacing:-0.424960pt;}
.ls2b{letter-spacing:-0.409024pt;}
.ls1a{letter-spacing:-0.371840pt;}
.ls3f{letter-spacing:-0.321600pt;}
.ls14{letter-spacing:-0.318720pt;}
.ls3d{letter-spacing:-0.300160pt;}
.ls3{letter-spacing:-0.294400pt;}
.ls2{letter-spacing:-0.270848pt;}
.ls3b{letter-spacing:-0.257280pt;}
.ls36{letter-spacing:-0.240128pt;}
.ls1d{letter-spacing:-0.228416pt;}
.ls21{letter-spacing:-0.223104pt;}
.ls3e{letter-spacing:-0.214400pt;}
.ls1b{letter-spacing:-0.212480pt;}
.ls3c{letter-spacing:-0.197248pt;}
.ls2c{letter-spacing:-0.185920pt;}
.ls3a{letter-spacing:-0.171520pt;}
.ls2d{letter-spacing:-0.159360pt;}
.ls23{letter-spacing:-0.090304pt;}
.ls34{letter-spacing:-0.053120pt;}
.ls17{letter-spacing:-0.047808pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047808pt;}
.ls33{letter-spacing:0.053120pt;}
.ls15{letter-spacing:0.095616pt;}
.ls18{letter-spacing:0.106240pt;}
.ls37{letter-spacing:0.128640pt;}
.ls5{letter-spacing:0.135424pt;}
.ls24{letter-spacing:0.138112pt;}
.ls9{letter-spacing:0.159360pt;}
.lsa{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.176640pt;}
.ls2a{letter-spacing:0.183680pt;}
.ls28{letter-spacing:0.185920pt;}
.ls30{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.228416pt;}
.ls7{letter-spacing:0.231040pt;}
.ls26{letter-spacing:0.232320pt;}
.ls31{letter-spacing:0.256000pt;}
.ls38{letter-spacing:0.257280pt;}
.ls12{letter-spacing:0.265600pt;}
.ls19{letter-spacing:0.270912pt;}
.ls2f{letter-spacing:0.298667pt;}
.ls10{letter-spacing:0.318720pt;}
.lsb{letter-spacing:0.320000pt;}
.ls27{letter-spacing:0.320064pt;}
.ls39{letter-spacing:0.321600pt;}
.ls25{letter-spacing:0.322624pt;}
.lse{letter-spacing:0.390400pt;}
.ls29{letter-spacing:0.392320pt;}
.lsc{letter-spacing:0.446080pt;}
.lsd{letter-spacing:0.462080pt;}
.ls35{letter-spacing:0.690560pt;}
.lsf{letter-spacing:0.695040pt;}
.ls32{letter-spacing:1.536000pt;}
.ls16{letter-spacing:56.912640pt;}
.ls2e{letter-spacing:125.578667pt;}
.ws12{word-spacing:-53.120000pt;}
.ws0{word-spacing:-18.046080pt;}
.ws29{word-spacing:-16.000000pt;}
.ws7{word-spacing:-14.896640pt;}
.ws6{word-spacing:-14.855424pt;}
.ws1{word-spacing:-14.720000pt;}
.ws2b{word-spacing:-14.656000pt;}
.ws3{word-spacing:-14.449152pt;}
.ws4{word-spacing:-14.425600pt;}
.ws5{word-spacing:-14.190080pt;}
.ws21{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.598720pt;}
.ws15{word-spacing:-13.550912pt;}
.wsa{word-spacing:-13.545600pt;}
.ws1e{word-spacing:-13.511040pt;}
.ws17{word-spacing:-13.508416pt;}
.ws28{word-spacing:-13.465920pt;}
.ws8{word-spacing:-13.439360pt;}
.ws24{word-spacing:-13.418112pt;}
.ws20{word-spacing:-13.386240pt;}
.ws10{word-spacing:-13.375616pt;}
.wsd{word-spacing:-13.327808pt;}
.wse{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.232192pt;}
.ws22{word-spacing:-13.189696pt;}
.ws2a{word-spacing:-13.094080pt;}
.ws18{word-spacing:-13.067520pt;}
.ws1d{word-spacing:-13.056896pt;}
.ws1a{word-spacing:-13.051584pt;}
.ws11{word-spacing:-12.961280pt;}
.ws16{word-spacing:-12.908160pt;}
.ws26{word-spacing:-12.870976pt;}
.ws23{word-spacing:-12.855040pt;}
.ws1c{word-spacing:-12.801920pt;}
.ws9{word-spacing:-12.748800pt;}
.ws19{word-spacing:-12.738176pt;}
.ws1f{word-spacing:-12.589440pt;}
.ws1b{word-spacing:-12.408832pt;}
.ws2c{word-spacing:-12.058240pt;}
.ws2d{word-spacing:-11.952000pt;}
.ws31{word-spacing:-11.041600pt;}
.ws30{word-spacing:-10.977280pt;}
.ws2f{word-spacing:-10.720000pt;}
.ws32{word-spacing:-10.548480pt;}
.ws35{word-spacing:-10.522752pt;}
.ws38{word-spacing:-10.505600pt;}
.ws2e{word-spacing:-10.479872pt;}
.ws33{word-spacing:-10.462720pt;}
.ws36{word-spacing:-10.419840pt;}
.ws39{word-spacing:-10.398400pt;}
.ws14{word-spacing:-8.640000pt;}
.ws25{word-spacing:-0.371840pt;}
.ws27{word-spacing:-0.318720pt;}
.ws37{word-spacing:-0.300160pt;}
.wsf{word-spacing:-0.212480pt;}
.wsc{word-spacing:-0.053120pt;}
.ws34{word-spacing:-0.042880pt;}
.ws2{word-spacing:0.000000pt;}
._f{margin-left:-12.880640pt;}
._e{margin-left:-11.509333pt;}
._a{margin-left:-9.941333pt;}
._c{margin-left:-7.498667pt;}
._10{margin-left:-5.994667pt;}
._d{margin-left:-5.066667pt;}
._b{margin-left:-3.157333pt;}
._0{margin-left:-0.973440pt;}
._1{width:1.299413pt;}
._4{width:2.596480pt;}
._7{width:3.733547pt;}
._3{width:66.560000pt;}
._2{width:81.280000pt;}
._8{width:124.941227pt;}
._5{width:752.138667pt;}
._9{width:754.858667pt;}
._6{width:1685.845333pt;}
.fs6{font-size:26.880000pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y21e{bottom:-11.840000pt;}
.y0{bottom:0.000000pt;}
.y1c2{bottom:2.240000pt;}
.y18{bottom:3.200000pt;}
.y221{bottom:3.520000pt;}
.y1e0{bottom:10.080000pt;}
.y1dd{bottom:10.240000pt;}
.y14e{bottom:10.720000pt;}
.y153{bottom:10.880000pt;}
.y157{bottom:10.920000pt;}
.y220{bottom:11.680000pt;}
.y1e5{bottom:14.400000pt;}
.y1c1{bottom:14.560000pt;}
.y15e{bottom:18.080000pt;}
.y15b{bottom:18.240000pt;}
.y152{bottom:18.880000pt;}
.y156{bottom:18.920000pt;}
.y1df{bottom:22.400000pt;}
.y14d{bottom:26.080000pt;}
.y15a{bottom:26.240000pt;}
.y150{bottom:34.080000pt;}
.y151{bottom:34.240000pt;}
.y155{bottom:34.280000pt;}
.y15d{bottom:41.440000pt;}
.y159{bottom:41.600000pt;}
.y17{bottom:47.840000pt;}
.y16{bottom:51.040000pt;}
.y1e8{bottom:52.640000pt;}
.y1db{bottom:64.320000pt;}
.y1e7{bottom:64.800000pt;}
.y1e2{bottom:64.960000pt;}
.y20d{bottom:100.000000pt;}
.yfe{bottom:103.360000pt;}
.y12b{bottom:103.680000pt;}
.y214{bottom:108.000000pt;}
.y5f{bottom:108.800000pt;}
.y1bf{bottom:108.960000pt;}
.yde{bottom:110.080000pt;}
.y108{bottom:111.360000pt;}
.y9b{bottom:112.000000pt;}
.y1fc{bottom:112.640000pt;}
.y14a{bottom:112.800000pt;}
.y115{bottom:113.600000pt;}
.y20c{bottom:115.360000pt;}
.y15{bottom:115.840000pt;}
.yc9{bottom:118.080000pt;}
.y87{bottom:120.000000pt;}
.y21d{bottom:123.040000pt;}
.y213{bottom:123.360000pt;}
.y1be{bottom:124.320000pt;}
.y3c{bottom:127.520000pt;}
.y149{bottom:128.800000pt;}
.y20b{bottom:130.720000pt;}
.yb4{bottom:134.080000pt;}
.y46{bottom:135.520000pt;}
.y173{bottom:137.760000pt;}
.y212{bottom:138.720000pt;}
.y1bd{bottom:139.520000pt;}
.ydd{bottom:140.800000pt;}
.y107{bottom:142.080000pt;}
.y9a{bottom:142.560000pt;}
.y2d{bottom:143.520000pt;}
.y20a{bottom:146.080000pt;}
.y1f2{bottom:147.840000pt;}
.yc8{bottom:148.800000pt;}
.y5e{bottom:149.760000pt;}
.y174{bottom:149.920000pt;}
.y12a{bottom:150.400000pt;}
.y86{bottom:150.560000pt;}
.y211{bottom:154.080000pt;}
.y1bc{bottom:154.880000pt;}
.y114{bottom:156.000000pt;}
.yf5{bottom:156.800000pt;}
.y14{bottom:157.600000pt;}
.y13f{bottom:159.360000pt;}
.y21c{bottom:162.400000pt;}
.y163{bottom:164.480000pt;}
.yb3{bottom:164.800000pt;}
.y3b{bottom:169.280000pt;}
.y1bb{bottom:170.240000pt;}
.y1f1{bottom:171.200000pt;}
.ydc{bottom:171.360000pt;}
.y106{bottom:172.800000pt;}
.y99{bottom:173.280000pt;}
.y45{bottom:177.280000pt;}
.y21b{bottom:177.760000pt;}
.yc7{bottom:179.360000pt;}
.y129{bottom:180.960000pt;}
.y85{bottom:181.280000pt;}
.y2c{bottom:185.306667pt;}
.y1ba{bottom:185.626667pt;}
.y1f0{bottom:186.586667pt;}
.yf4{bottom:187.386667pt;}
.y13e{bottom:190.106667pt;}
.y5d{bottom:192.186667pt;}
.y21a{bottom:193.146667pt;}
.yb2{bottom:195.386667pt;}
.y113{bottom:196.986667pt;}
.y13{bottom:199.386667pt;}
.y1b9{bottom:200.986667pt;}
.y1ef{bottom:201.786667pt;}
.ydb{bottom:202.106667pt;}
.y105{bottom:203.386667pt;}
.y98{bottom:204.026667pt;}
.y148{bottom:206.106667pt;}
.yc6{bottom:210.106667pt;}
.y3a{bottom:210.906667pt;}
.y84{bottom:212.026667pt;}
.y1b8{bottom:216.346667pt;}
.y1ee{bottom:217.146667pt;}
.ye7{bottom:218.106667pt;}
.y16d{bottom:218.746667pt;}
.y44{bottom:218.906667pt;}
.y13d{bottom:220.826667pt;}
.yb1{bottom:226.106667pt;}
.y2b{bottom:226.906667pt;}
.y128{bottom:227.706667pt;}
.y1eb{bottom:230.266667pt;}
.y1b7{bottom:231.546667pt;}
.y12{bottom:233.146667pt;}
.y5c{bottom:233.306667pt;}
.y104{bottom:234.106667pt;}
.y97{bottom:234.586667pt;}
.y112{bottom:235.706667pt;}
.y147{bottom:236.826667pt;}
.yda{bottom:240.826667pt;}
.y83{bottom:242.586667pt;}
.y1b6{bottom:246.906667pt;}
.y18f{bottom:248.666667pt;}
.yc5{bottom:248.826667pt;}
.y16c{bottom:249.466667pt;}
.y39{bottom:252.666667pt;}
.y1ed{bottom:255.546667pt;}
.yb0{bottom:256.826667pt;}
.y127{bottom:258.426667pt;}
.y43{bottom:260.666667pt;}
.y5b{bottom:264.026667pt;}
.y103{bottom:264.826667pt;}
.y96{bottom:265.306667pt;}
.y111{bottom:266.426667pt;}
.y13c{bottom:267.386667pt;}
.y1b5{bottom:267.546667pt;}
.y2a{bottom:268.666667pt;}
.yd9{bottom:271.386667pt;}
.y82{bottom:273.306667pt;}
.y11{bottom:274.746667pt;}
.yc4{bottom:279.386667pt;}
.y16b{bottom:280.026667pt;}
.y1ec{bottom:280.666667pt;}
.y18e{bottom:281.786667pt;}
.y38{bottom:286.426667pt;}
.yaf{bottom:287.386667pt;}
.y126{bottom:288.986667pt;}
.y5a{bottom:294.586667pt;}
.y102{bottom:295.386667pt;}
.y95{bottom:296.026667pt;}
.y18d{bottom:297.786667pt;}
.y13b{bottom:298.106667pt;}
.yd8{bottom:302.106667pt;}
.y29{bottom:302.426667pt;}
.y81{bottom:304.026667pt;}
.y1e6{bottom:305.946667pt;}
.y1b4{bottom:306.906667pt;}
.y110{bottom:308.826667pt;}
.yc3{bottom:310.106667pt;}
.y16a{bottom:310.746667pt;}
.y146{bottom:314.106667pt;}
.y10{bottom:316.506667pt;}
.yae{bottom:318.106667pt;}
.y1b3{bottom:322.266667pt;}
.y101{bottom:326.106667pt;}
.y94{bottom:326.586667pt;}
.y37{bottom:328.186667pt;}
.y18c{bottom:330.266667pt;}
.y1ea{bottom:331.066667pt;}
.yd7{bottom:332.826667pt;}
.y21f{bottom:332.986667pt;}
.y59{bottom:333.306667pt;}
.yfd{bottom:334.586667pt;}
.y125{bottom:335.706667pt;}
.y1b2{bottom:337.626667pt;}
.yc2{bottom:340.826667pt;}
.y169{bottom:341.466667pt;}
.y80{bottom:342.586667pt;}
.y28{bottom:344.186667pt;}
.y13a{bottom:344.826667pt;}
.y18b{bottom:346.586667pt;}
.yf3{bottom:348.826667pt;}
.y10f{bottom:349.786667pt;}
.y1b1{bottom:352.986667pt;}
.y1e9{bottom:356.346667pt;}
.yad{bottom:356.826667pt;}
.y93{bottom:357.306667pt;}
.yf{bottom:358.266667pt;}
.yd6{bottom:363.386667pt;}
.y18a{bottom:363.706667pt;}
.yfc{bottom:365.306667pt;}
.y124{bottom:366.426667pt;}
.y1b0{bottom:368.186667pt;}
.y36{bottom:369.946667pt;}
.yc1{bottom:371.386667pt;}
.y58{bottom:372.026667pt;}
.y7f{bottom:373.306667pt;}
.y139{bottom:375.386667pt;}
.y208{bottom:377.466667pt;}
.y42{bottom:377.946667pt;}
.yf2{bottom:379.426667pt;}
.y1e1{bottom:381.506667pt;}
.y1af{bottom:383.586667pt;}
.y27{bottom:385.986667pt;}
.yac{bottom:387.426667pt;}
.y92{bottom:388.066667pt;}
.y10e{bottom:388.546667pt;}
.y189{bottom:391.266667pt;}
.y145{bottom:391.426667pt;}
.y207{bottom:392.866667pt;}
.yd5{bottom:394.146667pt;}
.yfb{bottom:396.066667pt;}
.y123{bottom:397.026667pt;}
.y1ae{bottom:398.946667pt;}
.ye{bottom:400.066667pt;}
.yc0{bottom:402.146667pt;}
.y57{bottom:402.626667pt;}
.y168{bottom:402.786667pt;}
.y7e{bottom:404.066667pt;}
.y241{bottom:405.346667pt;}
.y1e4{bottom:406.786667pt;}
.y206{bottom:408.066667pt;}
.y188{bottom:409.986667pt;}
.yf1{bottom:410.146667pt;}
.y35{bottom:411.586667pt;}
.y1ad{bottom:414.306667pt;}
.yab{bottom:418.146667pt;}
.y91{bottom:418.626667pt;}
.y10d{bottom:419.266667pt;}
.y41{bottom:419.586667pt;}
.y138{bottom:422.146667pt;}
.y205{bottom:423.426667pt;}
.yd4{bottom:424.866667pt;}
.yfa{bottom:426.626667pt;}
.y26{bottom:427.586667pt;}
.y1ac{bottom:429.666667pt;}
.y240{bottom:431.106667pt;}
.y1e3{bottom:431.906667pt;}
.ybf{bottom:432.866667pt;}
.y56{bottom:433.346667pt;}
.y167{bottom:433.506667pt;}
.y7d{bottom:434.626667pt;}
.y187{bottom:437.186667pt;}
.y204{bottom:438.786667pt;}
.yf0{bottom:440.866667pt;}
.yd{bottom:441.826667pt;}
.y122{bottom:443.746667pt;}
.y1ab{bottom:445.026667pt;}
.y23f{bottom:446.466667pt;}
.yaa{bottom:448.866667pt;}
.y90{bottom:449.346667pt;}
.y137{bottom:452.866667pt;}
.y34{bottom:453.346667pt;}
.y1fb{bottom:454.146667pt;}
.yd3{bottom:455.426667pt;}
.y186{bottom:455.906667pt;}
.y1da{bottom:457.186667pt;}
.yf9{bottom:457.346667pt;}
.y1aa{bottom:460.226667pt;}
.y40{bottom:461.346667pt;}
.y10c{bottom:461.666667pt;}
.y23e{bottom:461.826667pt;}
.ybe{bottom:463.426667pt;}
.y55{bottom:464.066667pt;}
.y7c{bottom:465.346667pt;}
.y144{bottom:468.866667pt;}
.y25{bottom:469.346667pt;}
.y203{bottom:469.506667pt;}
.ye6{bottom:471.426667pt;}
.y121{bottom:474.466667pt;}
.y1a9{bottom:476.226667pt;}
.y23d{bottom:477.026667pt;}
.ya9{bottom:479.426667pt;}
.y185{bottom:483.106667pt;}
.yc{bottom:483.586667pt;}
.yd2{bottom:486.146667pt;}
.y8f{bottom:488.066667pt;}
.y6e{bottom:489.026667pt;}
.y202{bottom:489.986667pt;}
.y1de{bottom:490.306667pt;}
.y23c{bottom:492.386667pt;}
.y1fa{bottom:493.506667pt;}
.ybd{bottom:494.146667pt;}
.y54{bottom:494.626667pt;}
.y166{bottom:494.786667pt;}
.y33{bottom:495.106667pt;}
.y7b{bottom:496.066667pt;}
.y172{bottom:498.146667pt;}
.y1a8{bottom:499.266667pt;}
.y136{bottom:499.426667pt;}
.y209{bottom:500.066667pt;}
.ye5{bottom:502.146667pt;}
.y10b{bottom:502.626667pt;}
.y24{bottom:503.106667pt;}
.y162{bottom:504.866667pt;}
.y120{bottom:505.026667pt;}
.y23b{bottom:507.746667pt;}
.y210{bottom:508.066667pt;}
.y1f9{bottom:508.866667pt;}
.ya8{bottom:510.146667pt;}
.y184{bottom:510.626667pt;}
.y1dc{bottom:511.266667pt;}
.yd1{bottom:516.866667pt;}
.yf8{bottom:518.626667pt;}
.y6d{bottom:522.146667pt;}
.y23a{bottom:523.106667pt;}
.y1f8{bottom:524.066667pt;}
.ybc{bottom:524.866667pt;}
.yb{bottom:525.186667pt;}
.y53{bottom:525.346667pt;}
.y7a{bottom:526.626667pt;}
.y219{bottom:527.586667pt;}
.y171{bottom:528.706667pt;}
.y135{bottom:530.146667pt;}
.y165{bottom:530.626667pt;}
.ye4{bottom:532.866667pt;}
.y161{bottom:535.426667pt;}
.y32{bottom:536.866667pt;}
.y183{bottom:538.146667pt;}
.y239{bottom:538.466667pt;}
.y1a7{bottom:538.626667pt;}
.y1f7{bottom:539.426667pt;}
.y1d9{bottom:540.386667pt;}
.ya7{bottom:540.866667pt;}
.y10a{bottom:541.346667pt;}
.y218{bottom:542.946667pt;}
.y23{bottom:544.866667pt;}
.y143{bottom:546.146667pt;}
.yd0{bottom:547.426667pt;}
.yf7{bottom:549.346667pt;}
.y11f{bottom:551.746667pt;}
.y6c{bottom:552.706667pt;}
.y238{bottom:553.826667pt;}
.y1a6{bottom:553.986667pt;}
.y1f6{bottom:554.786667pt;}
.ybb{bottom:555.426667pt;}
.y1d8{bottom:555.746667pt;}
.y79{bottom:557.346667pt;}
.y170{bottom:559.426667pt;}
.y134{bottom:560.706667pt;}
.y20f{bottom:562.786667pt;}
.ye3{bottom:563.426667pt;}
.y52{bottom:564.066667pt;}
.y182{bottom:565.666667pt;}
.ya{bottom:566.946667pt;}
.y237{bottom:569.026667pt;}
.y1a5{bottom:569.346667pt;}
.y1f5{bottom:570.146667pt;}
.ya6{bottom:571.426667pt;}
.y142{bottom:576.733333pt;}
.ycf{bottom:578.173333pt;}
.y31{bottom:578.653333pt;}
.y100{bottom:579.453333pt;}
.y160{bottom:580.573333pt;}
.y217{bottom:582.333333pt;}
.y11e{bottom:582.493333pt;}
.y6b{bottom:583.453333pt;}
.y109{bottom:583.773333pt;}
.y236{bottom:584.413333pt;}
.y1a4{bottom:584.733333pt;}
.y1f4{bottom:585.533333pt;}
.yba{bottom:586.173333pt;}
.y22{bottom:586.653333pt;}
.y78{bottom:588.093333pt;}
.y16f{bottom:590.173333pt;}
.yf6{bottom:591.773333pt;}
.y181{bottom:593.213333pt;}
.y20e{bottom:593.533333pt;}
.ye2{bottom:594.173333pt;}
.y15f{bottom:596.093333pt;}
.y1d7{bottom:596.253333pt;}
.y216{bottom:597.693333pt;}
.y235{bottom:599.773333pt;}
.y1a3{bottom:600.093333pt;}
.y9{bottom:600.733333pt;}
.ya5{bottom:602.173333pt;}
.y51{bottom:602.653333pt;}
.y1f3{bottom:606.013333pt;}
.y133{bottom:607.453333pt;}
.yce{bottom:608.733333pt;}
.yff{bottom:610.173333pt;}
.y1d6{bottom:611.613333pt;}
.y215{bottom:613.053333pt;}
.y6a{bottom:614.173333pt;}
.y234{bottom:615.133333pt;}
.y1a2{bottom:615.293333pt;}
.yb9{bottom:616.733333pt;}
.y77{bottom:618.653333pt;}
.y30{bottom:620.253333pt;}
.y180{bottom:620.733333pt;}
.ye1{bottom:624.733333pt;}
.y16e{bottom:625.853333pt;}
.y1d5{bottom:626.973333pt;}
.y21{bottom:628.253333pt;}
.y233{bottom:630.493333pt;}
.y1a1{bottom:630.653333pt;}
.ya4{bottom:632.733333pt;}
.y50{bottom:633.373333pt;}
.y132{bottom:638.173333pt;}
.ycd{bottom:639.453333pt;}
.yef{bottom:640.733333pt;}
.y1d4{bottom:642.333333pt;}
.y8{bottom:642.493333pt;}
.y69{bottom:644.733333pt;}
.y164{bottom:645.853333pt;}
.y1a0{bottom:646.013333pt;}
.yb8{bottom:647.453333pt;}
.y17f{bottom:648.253333pt;}
.y76{bottom:649.373333pt;}
.y15c{bottom:650.813333pt;}
.y232{bottom:650.973333pt;}
.y141{bottom:654.173333pt;}
.ye0{bottom:655.453333pt;}
.y19f{bottom:661.373333pt;}
.y2f{bottom:662.013333pt;}
.ya3{bottom:663.453333pt;}
.y4f{bottom:663.933333pt;}
.y11d{bottom:665.853333pt;}
.y1d3{bottom:668.413333pt;}
.y20{bottom:670.013333pt;}
.yee{bottom:671.453333pt;}
.y68{bottom:675.453333pt;}
.y17e{bottom:675.773333pt;}
.y19e{bottom:676.733333pt;}
.y231{bottom:677.693333pt;}
.yb7{bottom:678.173333pt;}
.y8e{bottom:679.933333pt;}
.y1d2{bottom:681.213333pt;}
.y7{bottom:684.253333pt;}
.y131{bottom:684.733333pt;}
.ydf{bottom:686.173333pt;}
.y75{bottom:687.933333pt;}
.y19d{bottom:692.093333pt;}
.ya2{bottom:694.173333pt;}
.y17d{bottom:694.493333pt;}
.y4e{bottom:694.653333pt;}
.y230{bottom:695.453333pt;}
.yed{bottom:702.173333pt;}
.y1f{bottom:703.773333pt;}
.y11c{bottom:704.573333pt;}
.y158{bottom:705.373333pt;}
.y67{bottom:706.013333pt;}
.y1d1{bottom:707.133333pt;}
.y19c{bottom:707.293333pt;}
.y8d{bottom:710.653333pt;}
.y22f{bottom:710.813333pt;}
.y130{bottom:715.453333pt;}
.yb6{bottom:716.733333pt;}
.y74{bottom:718.653333pt;}
.y1d0{bottom:720.093333pt;}
.y17c{bottom:721.853333pt;}
.y19b{bottom:722.653333pt;}
.ya1{bottom:724.733333pt;}
.y6{bottom:725.853333pt;}
.y22e{bottom:726.173333pt;}
.y222{bottom:726.493333pt;}
.y140{bottom:731.453333pt;}
.yec{bottom:732.733333pt;}
.y1cf{bottom:733.053333pt;}
.y4d{bottom:733.373333pt;}
.y11b{bottom:735.133333pt;}
.y66{bottom:736.733333pt;}
.y19a{bottom:738.013333pt;}
.y8c{bottom:741.373333pt;}
.y22d{bottom:741.533333pt;}
.y1e{bottom:745.533333pt;}
.y1ce{bottom:746.013333pt;}
.ycc{bottom:747.453333pt;}
.y73{bottom:749.373333pt;}
.y223{bottom:751.613333pt;}
.y199{bottom:753.373333pt;}
.ya0{bottom:755.453333pt;}
.y1cd{bottom:758.813333pt;}
.y154{bottom:760.093333pt;}
.y22c{bottom:762.013333pt;}
.y12f{bottom:762.173333pt;}
.yeb{bottom:763.453333pt;}
.y11a{bottom:765.853333pt;}
.y65{bottom:767.453333pt;}
.y5{bottom:767.613333pt;}
.y198{bottom:769.413333pt;}
.y1cc{bottom:771.813333pt;}
.y4c{bottom:771.973333pt;}
.y17b{bottom:776.933333pt;}
.ycb{bottom:778.213333pt;}
.y3f{bottom:779.333333pt;}
.y72{bottom:779.973333pt;}
.y1cb{bottom:784.773333pt;}
.y9f{bottom:786.213333pt;}
.y1d{bottom:787.333333pt;}
.y22b{bottom:788.133333pt;}
.y197{bottom:792.453333pt;}
.y12e{bottom:792.773333pt;}
.yea{bottom:794.213333pt;}
.y119{bottom:796.613333pt;}
.y1ca{bottom:797.733333pt;}
.y64{bottom:798.053333pt;}
.y4b{bottom:802.693333pt;}
.y22a{bottom:803.493333pt;}
.y17a{bottom:804.453333pt;}
.y14f{bottom:807.493333pt;}
.yca{bottom:808.773333pt;}
.y4{bottom:809.413333pt;}
.y71{bottom:810.693333pt;}
.y9e{bottom:816.773333pt;}
.y229{bottom:818.853333pt;}
.y3e{bottom:821.093333pt;}
.y1c9{bottom:823.653333pt;}
.ye9{bottom:824.773333pt;}
.y118{bottom:827.173333pt;}
.y1c{bottom:829.093333pt;}
.y201{bottom:831.493333pt;}
.y196{bottom:831.813333pt;}
.y179{bottom:831.973333pt;}
.y4a{bottom:833.413333pt;}
.y228{bottom:834.213333pt;}
.y1c8{bottom:836.453333pt;}
.y12d{bottom:839.493333pt;}
.y70{bottom:841.413333pt;}
.y63{bottom:843.173333pt;}
.y8b{bottom:845.093333pt;}
.y195{bottom:847.173333pt;}
.y9d{bottom:847.493333pt;}
.y1c7{bottom:849.413333pt;}
.y14c{bottom:854.853333pt;}
.ye8{bottom:855.493333pt;}
.y3{bottom:856.613333pt;}
.y117{bottom:857.893333pt;}
.y178{bottom:860.293333pt;}
.y1c6{bottom:862.373333pt;}
.y194{bottom:862.533333pt;}
.y3d{bottom:862.693333pt;}
.y49{bottom:863.973333pt;}
.y12c{bottom:870.213333pt;}
.y1b{bottom:870.693333pt;}
.y200{bottom:870.853333pt;}
.y6f{bottom:871.973333pt;}
.y1c5{bottom:875.333333pt;}
.y193{bottom:877.733333pt;}
.y9c{bottom:878.213333pt;}
.y227{bottom:880.933333pt;}
.y62{bottom:884.293333pt;}
.y8a{bottom:886.213333pt;}
.y1c4{bottom:888.293333pt;}
.y192{bottom:893.093333pt;}
.y226{bottom:896.133333pt;}
.y14b{bottom:897.573333pt;}
.y2{bottom:899.653333pt;}
.y116{bottom:900.293333pt;}
.y1c3{bottom:901.253333pt;}
.y1ff{bottom:901.573333pt;}
.y48{bottom:902.693333pt;}
.y1a{bottom:904.453333pt;}
.y177{bottom:908.293333pt;}
.y191{bottom:908.453333pt;}
.yb5{bottom:908.773333pt;}
.y225{bottom:911.493333pt;}
.y2e{bottom:912.453333pt;}
.y1c0{bottom:914.053333pt;}
.y61{bottom:915.813333pt;}
.y89{bottom:916.773333pt;}
.y1fe{bottom:916.933333pt;}
.y190{bottom:924.453333pt;}
.y176{bottom:926.693333pt;}
.y224{bottom:926.853333pt;}
.y1fd{bottom:932.133333pt;}
.y1{bottom:942.533333pt;}
.y47{bottom:945.093333pt;}
.y19{bottom:946.213333pt;}
.y60{bottom:946.533333pt;}
.y88{bottom:947.493333pt;}
.y175{bottom:992.800000pt;}
.h27{height:3.040000pt;}
.h19{height:12.160000pt;}
.h1b{height:12.320000pt;}
.h1c{height:12.352000pt;}
.h4{height:16.800000pt;}
.h28{height:18.080000pt;}
.h2a{height:18.112000pt;}
.h29{height:18.283125pt;}
.h20{height:20.320000pt;}
.h23{height:24.480000pt;}
.h25{height:24.512000pt;}
.h17{height:24.640000pt;}
.h18{height:29.061250pt;}
.h1a{height:29.794062pt;}
.h21{height:32.480000pt;}
.h1d{height:35.404688pt;}
.h7{height:36.001250pt;}
.h1e{height:36.182813pt;}
.h8{height:36.909063pt;}
.h16{height:37.090625pt;}
.hc{height:38.413438pt;}
.he{height:38.560000pt;}
.h2{height:40.882500pt;}
.h3{height:40.911250pt;}
.hb{height:42.573125pt;}
.h5{height:42.578750pt;}
.hd{height:42.679792pt;}
.h6{height:43.375000pt;}
.h13{height:43.531250pt;}
.ha{height:43.551875pt;}
.h15{height:43.593750pt;}
.h9{height:44.468750pt;}
.h14{height:45.156250pt;}
.hf{height:46.560000pt;}
.h10{height:46.752000pt;}
.h1{height:50.748750pt;}
.h12{height:53.920000pt;}
.h11{height:54.080000pt;}
.h1f{height:74.400000pt;}
.h22{height:74.880000pt;}
.h24{height:74.912000pt;}
.h26{height:75.040000pt;}
.h0{height:1056.000000pt;}
.w2{width:7.360000pt;}
.w3{width:14.720000pt;}
.w10{width:65.280000pt;}
.wf{width:65.312000pt;}
.w11{width:68.640000pt;}
.w12{width:68.992000pt;}
.w13{width:77.440000pt;}
.w4{width:100.640000pt;}
.w8{width:100.960000pt;}
.w9{width:107.232000pt;}
.wd{width:131.392000pt;}
.we{width:134.720000pt;}
.w14{width:146.266667pt;}
.wa{width:147.066667pt;}
.w7{width:148.986667pt;}
.w6{width:150.746667pt;}
.w15{width:152.986667pt;}
.w5{width:220.186667pt;}
.wb{width:263.426667pt;}
.wc{width:266.746667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x38{left:6.880000pt;}
.x19{left:7.840000pt;}
.x3c{left:9.600000pt;}
.x12{left:10.880000pt;}
.x1d{left:12.480000pt;}
.x3a{left:13.632000pt;}
.xf{left:15.840000pt;}
.xc{left:16.986667pt;}
.x3b{left:19.392000pt;}
.x39{left:20.480000pt;}
.x31{left:21.600000pt;}
.x37{left:22.880000pt;}
.x8{left:24.000000pt;}
.x10{left:25.440000pt;}
.xd{left:26.586667pt;}
.x28{left:28.640000pt;}
.x27{left:30.240000pt;}
.x1b{left:32.160000pt;}
.x1e{left:33.120000pt;}
.x13{left:40.000000pt;}
.x1a{left:42.554667pt;}
.x18{left:45.114667pt;}
.x11{left:47.674667pt;}
.x23{left:48.986667pt;}
.x17{left:51.240000pt;}
.x15{left:52.346667pt;}
.x22{left:54.600000pt;}
.x16{left:57.000000pt;}
.x14{left:58.106667pt;}
.x21{left:60.360000pt;}
.x20{left:61.466667pt;}
.x29{left:68.640000pt;}
.x2a{left:73.466667pt;}
.xa{left:77.000000pt;}
.x1c{left:83.400000pt;}
.x1f{left:85.160000pt;}
.x1{left:96.031988pt;}
.x4{left:102.111988pt;}
.x7{left:105.631988pt;}
.x2c{left:109.800000pt;}
.x2e{left:111.360000pt;}
.x2{left:120.031988pt;}
.x5{left:126.111988pt;}
.x26{left:128.031988pt;}
.x36{left:138.266667pt;}
.x9{left:198.106667pt;}
.x2b{left:216.346667pt;}
.x32{left:282.466667pt;}
.x2f{left:348.386667pt;}
.x33{left:414.466667pt;}
.xb{left:418.946667pt;}
.x2d{left:480.413333pt;}
.x34{left:546.493333pt;}
.xe{left:570.493333pt;}
.x30{left:612.453333pt;}
.x35{left:678.533333pt;}
.x6{left:705.413333pt;}
.x3{left:712.773333pt;}
.x25{left:718.053321pt;}
.x24{left:720.133321pt;}
}




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