
    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_f1d8fd9de5dfc13a233ca866.woff')format("woff");}.ff1{font-family:ff1;line-height:1.230957;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_ac61a0d11928b7b8b4838595.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_bc5c087b509e58a933fb2cac.woff')format("woff");}.ff3{font-family:ff3;line-height:1.066406;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_3dde3d5993cae67bfbc92b04.woff')format("woff");}.ff4{font-family:ff4;line-height:1.402832;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_397a50135dcaed121499294a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.230957;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_c699fe6465e0db2d56586e14.woff')format("woff");}.ff6{font-family:ff6;line-height:1.230957;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_e1d291cee9fe66f083c0ca5e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.099609;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);}
.v3{vertical-align:-11.982000px;}
.v7{vertical-align:-1.972200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.964400px;}
.v2{vertical-align:16.893600px;}
.v5{vertical-align:18.000000px;}
.v8{vertical-align:23.031000px;}
.v6{vertical-align:36.000000px;}
.v4{vertical-align:68.820000px;}
.ls2a{letter-spacing:-3.240000px;}
.ls55{letter-spacing:-2.691000px;}
.ls5e{letter-spacing:-2.550000px;}
.ls2e{letter-spacing:-2.400000px;}
.ls1f{letter-spacing:-2.025000px;}
.ls4d{letter-spacing:-1.794000px;}
.ls52{letter-spacing:-1.656000px;}
.ls4e{letter-spacing:-1.518000px;}
.ls24{letter-spacing:-1.500000px;}
.ls9{letter-spacing:-1.425000px;}
.ls2b{letter-spacing:-1.380000px;}
.ls28{letter-spacing:-1.320000px;}
.ls42{letter-spacing:-1.242000px;}
.ls58{letter-spacing:-1.215000px;}
.ls26{letter-spacing:-1.200000px;}
.ls30{letter-spacing:-1.140000px;}
.ls23{letter-spacing:-1.080000px;}
.ls29{letter-spacing:-0.960000px;}
.lsb{letter-spacing:-0.855000px;}
.ls27{letter-spacing:-0.840000px;}
.ls25{letter-spacing:-0.780000px;}
.ls4a{letter-spacing:-0.759000px;}
.ls5a{letter-spacing:-0.750000px;}
.ls4b{letter-spacing:-0.690000px;}
.ls32{letter-spacing:-0.660000px;}
.ls37{letter-spacing:-0.627000px;}
.ls4c{letter-spacing:-0.621000px;}
.ls2f{letter-spacing:-0.540000px;}
.ls3f{letter-spacing:-0.345000px;}
.ls22{letter-spacing:-0.300000px;}
.ls31{letter-spacing:-0.240000px;}
.ls57{letter-spacing:-0.171000px;}
.ls35{letter-spacing:-0.060000px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000300px;}
.ls48{letter-spacing:0.001554px;}
.ls47{letter-spacing:0.002154px;}
.ls46{letter-spacing:0.004158px;}
.ls3c{letter-spacing:0.013362px;}
.ls2c{letter-spacing:0.060000px;}
.ls10{letter-spacing:0.081000px;}
.ls12{letter-spacing:0.120000px;}
.ls2d{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.240000px;}
.ls44{letter-spacing:0.345000px;}
.ls17{letter-spacing:0.480000px;}
.ls4f{letter-spacing:0.621000px;}
.ls45{letter-spacing:0.738600px;}
.ls40{letter-spacing:0.828000px;}
.ls5{letter-spacing:0.840000px;}
.ls21{letter-spacing:0.900000px;}
.ls50{letter-spacing:0.966000px;}
.ls13{letter-spacing:1.020000px;}
.ls51{letter-spacing:1.035000px;}
.ls16{letter-spacing:1.080000px;}
.ls3{letter-spacing:1.260000px;}
.ls3b{letter-spacing:1.276500px;}
.ls1b{letter-spacing:1.713420px;}
.ls8{letter-spacing:2.400000px;}
.ls14{letter-spacing:2.580000px;}
.ls39{letter-spacing:2.587500px;}
.ls18{letter-spacing:2.820000px;}
.ls3d{letter-spacing:3.208500px;}
.ls49{letter-spacing:3.574200px;}
.ls41{letter-spacing:3.588000px;}
.ls1d{letter-spacing:3.600000px;}
.ls3e{letter-spacing:3.898500px;}
.ls7{letter-spacing:4.200000px;}
.ls56{letter-spacing:5.002500px;}
.ls4{letter-spacing:5.760000px;}
.lsa{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls15{letter-spacing:6.300000px;}
.ls34{letter-spacing:6.360000px;}
.ls33{letter-spacing:7.260000px;}
.ls54{letter-spacing:8.160156px;}
.ls60{letter-spacing:8.640000px;}
.ls5b{letter-spacing:8.820000px;}
.ls5c{letter-spacing:29.295000px;}
.ls38{letter-spacing:466.507200px;}
.lse{letter-spacing:467.032200px;}
.ls43{letter-spacing:467.107200px;}
.ls53{letter-spacing:467.294400px;}
.ls5f{letter-spacing:467.962200px;}
.ls59{letter-spacing:468.262200px;}
.ls6{letter-spacing:469.139400px;}
.ls11{letter-spacing:469.949400px;}
.ls5d{letter-spacing:471.329400px;}
.ls1a{letter-spacing:562.948200px;}
.ls1c{letter-spacing:569.040000px;}
.ls19{letter-spacing:644.340000px;}
.ls1e{letter-spacing:653.989800px;}
.lsc{letter-spacing:952.522800px;}
.ls36{letter-spacing:953.017800px;}
.ls3a{letter-spacing:955.642800px;}
.ls0{letter-spacing:959.692800px;}
.lsf{letter-spacing:961.672800px;}
.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;}
}
.ws5b{word-spacing:-26.523000px;}
.ws60{word-spacing:-25.500000px;}
.ws7{word-spacing:-22.740000px;}
.ws0{word-spacing:-22.620000px;}
.ws35{word-spacing:-22.080000px;}
.ws36{word-spacing:-21.180000px;}
.ws10{word-spacing:-21.075000px;}
.ws5a{word-spacing:-20.325000px;}
.ws5{word-spacing:-19.650000px;}
.ws11{word-spacing:-19.389000px;}
.ws15{word-spacing:-19.050000px;}
.ws13{word-spacing:-18.630000px;}
.ws5f{word-spacing:-18.525000px;}
.ws53{word-spacing:-18.009000px;}
.ws45{word-spacing:-17.871000px;}
.ws5e{word-spacing:-17.703000px;}
.ws52{word-spacing:-17.664000px;}
.ws16{word-spacing:-17.100000px;}
.wsa{word-spacing:-17.043000px;}
.ws18{word-spacing:-16.860000px;}
.ws4c{word-spacing:-16.698000px;}
.ws4b{word-spacing:-16.422000px;}
.ws37{word-spacing:-16.020000px;}
.ws46{word-spacing:-15.801000px;}
.ws1{word-spacing:-15.660000px;}
.ws5c{word-spacing:-15.561000px;}
.ws4e{word-spacing:-15.525000px;}
.ws4d{word-spacing:-15.249000px;}
.ws47{word-spacing:-15.174000px;}
.ws24{word-spacing:-15.000000px;}
.ws23{word-spacing:-14.880000px;}
.ws9{word-spacing:-14.820000px;}
.wsf{word-spacing:-13.338000px;}
.ws6{word-spacing:-13.062000px;}
.wse{word-spacing:-11.303787px;}
.ws61{word-spacing:-10.812318px;}
.ws8{word-spacing:-9.829380px;}
.ws5d{word-spacing:-6.300000px;}
.ws3{word-spacing:-6.000000px;}
.wsc{word-spacing:-4.200000px;}
.ws29{word-spacing:-3.750000px;}
.ws49{word-spacing:-3.588000px;}
.ws26{word-spacing:-2.448000px;}
.wsb{word-spacing:-2.400000px;}
.ws4{word-spacing:-1.260000px;}
.ws54{word-spacing:-1.035000px;}
.ws51{word-spacing:-0.345000px;}
.ws3c{word-spacing:-0.240000px;}
.ws42{word-spacing:-0.180000px;}
.ws14{word-spacing:-0.081000px;}
.ws2{word-spacing:0.000000px;}
.ws43{word-spacing:0.060000px;}
.ws58{word-spacing:0.171000px;}
.ws41{word-spacing:0.240000px;}
.ws3d{word-spacing:0.300000px;}
.ws48{word-spacing:0.345000px;}
.ws44{word-spacing:0.627000px;}
.ws50{word-spacing:0.690000px;}
.ws4f{word-spacing:0.759000px;}
.ws40{word-spacing:0.840000px;}
.wsd{word-spacing:0.855000px;}
.ws4a{word-spacing:1.080000px;}
.ws3f{word-spacing:1.140000px;}
.ws59{word-spacing:1.215000px;}
.ws3e{word-spacing:1.380000px;}
.ws55{word-spacing:1.656000px;}
.ws27{word-spacing:1.992000px;}
.ws56{word-spacing:2.691000px;}
.ws57{word-spacing:6.279000px;}
.ws12{word-spacing:43.445160px;}
.ws3b{word-spacing:500.233200px;}
.ws39{word-spacing:506.406000px;}
.ws2e{word-spacing:529.806000px;}
.ws34{word-spacing:550.812000px;}
.ws31{word-spacing:563.442000px;}
.ws1c{word-spacing:567.162000px;}
.ws2f{word-spacing:569.442000px;}
.ws2d{word-spacing:571.920000px;}
.ws1a{word-spacing:575.016000px;}
.ws17{word-spacing:575.196000px;}
.ws2a{word-spacing:575.844000px;}
.ws19{word-spacing:576.042000px;}
.ws28{word-spacing:576.072000px;}
.ws21{word-spacing:578.340000px;}
.ws1f{word-spacing:579.492000px;}
.ws2c{word-spacing:579.516000px;}
.ws1e{word-spacing:579.840000px;}
.ws2b{word-spacing:579.906000px;}
.ws1d{word-spacing:581.436000px;}
.ws1b{word-spacing:581.616000px;}
.ws22{word-spacing:583.062000px;}
.ws20{word-spacing:583.914000px;}
.ws25{word-spacing:589.440000px;}
.ws33{word-spacing:598.776000px;}
.ws30{word-spacing:605.202000px;}
.ws32{word-spacing:623.340000px;}
.ws38{word-spacing:624.840000px;}
.ws3a{word-spacing:637.200000px;}
._f{margin-left:-16.703400px;}
._c{margin-left:-9.396300px;}
._a{margin-left:-7.636200px;}
._1f{margin-left:-6.614700px;}
._d{margin-left:-5.518800px;}
._b{margin-left:-4.428000px;}
._2e{margin-left:-3.425100px;}
._9{margin-left:-2.424000px;}
._8{margin-left:-1.314000px;}
._3{width:1.190700px;}
._1{width:2.400000px;}
._2{width:3.572400px;}
._5{width:5.132100px;}
._4{width:6.603900px;}
._6{width:7.948200px;}
._7{width:9.259800px;}
._12{width:11.196900px;}
._2d{width:12.199200px;}
._2f{width:13.281300px;}
._30{width:14.349000px;}
._32{width:16.531200px;}
._13{width:23.476800px;}
._11{width:24.723000px;}
._31{width:27.704160px;}
._33{width:33.329100px;}
._14{width:43.445160px;}
._e{width:85.554000px;}
._16{width:218.208000px;}
._15{width:239.034600px;}
._10{width:260.610000px;}
._26{width:277.375800px;}
._22{width:352.047900px;}
._20{width:354.406500px;}
._2c{width:370.467900px;}
._2b{width:375.286500px;}
._1d{width:418.311600px;}
._23{width:442.786200px;}
._21{width:466.044000px;}
._27{width:467.257200px;}
._1c{width:468.867900px;}
._28{width:485.857200px;}
._17{width:500.418600px;}
._29{width:504.595800px;}
._24{width:506.397300px;}
._18{width:553.017300px;}
._25{width:559.134000px;}
._0{width:578.400000px;}
._1a{width:595.770000px;}
._19{width:600.177300px;}
._1b{width:615.387900px;}
._1e{width:621.407400px;}
._2a{width:627.898200px;}
.fc1{color:rgb(0,100,0);}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:31.482000px;}
.fs8{font-size:34.980000px;}
.fs10{font-size:38.478000px;}
.fsc{font-size:40.227000px;}
.fs7{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fse{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fsf{font-size:66.000000px;}
.fsb{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fsa{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.ycd{bottom:100.609350px;}
.y166{bottom:106.165350px;}
.y1f2{bottom:106.181850px;}
.y20{bottom:106.209150px;}
.y232{bottom:106.213350px;}
.y1d2{bottom:106.231200px;}
.y1b1{bottom:106.234050px;}
.y211{bottom:106.244850px;}
.y7c{bottom:106.269150px;}
.ye6{bottom:106.270650px;}
.y6a{bottom:106.287300px;}
.y44{bottom:106.291200px;}
.y18d{bottom:106.293300px;}
.y9d{bottom:106.293450px;}
.yf5{bottom:106.296450px;}
.y11a{bottom:109.294800px;}
.ycc{bottom:117.814350px;}
.y7b{bottom:123.522150px;}
.y69{bottom:123.540300px;}
.y18c{bottom:123.546300px;}
.y9c{bottom:123.546450px;}
.ye5{bottom:126.522150px;}
.yf4{bottom:126.544950px;}
.y165{bottom:126.589350px;}
.y1b0{bottom:126.604050px;}
.y1f{bottom:126.609150px;}
.y43{bottom:127.111950px;}
.y13f{bottom:127.246050px;}
.y231{bottom:127.286850px;}
.y1f1{bottom:127.649100px;}
.y119{bottom:130.796700px;}
.ycb{bottom:135.517050px;}
.y1d1{bottom:136.061700px;}
.y210{bottom:136.358850px;}
.y7a{bottom:140.775150px;}
.y68{bottom:140.793300px;}
.y18b{bottom:143.794800px;}
.y9b{bottom:143.794950px;}
.ye4{bottom:146.773650px;}
.y1af{bottom:146.974050px;}
.y1e{bottom:147.009150px;}
.y164{bottom:147.013350px;}
.y42{bottom:147.932700px;}
.y13e{bottom:148.204800px;}
.yca{bottom:153.712800px;}
.y230{bottom:156.865350px;}
.y1f0{bottom:157.621350px;}
.y20f{bottom:157.967850px;}
.y79{bottom:158.028150px;}
.y67{bottom:158.046300px;}
.y18a{bottom:162.283200px;}
.y1d0{bottom:165.892200px;}
.ye3{bottom:167.025150px;}
.y1ae{bottom:167.344050px;}
.y1d{bottom:167.409150px;}
.y163{bottom:167.437350px;}
.y41{bottom:168.753450px;}
.y13d{bottom:169.163550px;}
.yc9{bottom:171.412800px;}
.yf3{bottom:173.698350px;}
.y118{bottom:174.720600px;}
.y78{bottom:175.281150px;}
.y22f{bottom:177.938850px;}
.y66{bottom:178.294800px;}
.y1ef{bottom:179.088600px;}
.y189{bottom:179.536200px;}
.y1cf{bottom:187.217700px;}
.ye2{bottom:187.276650px;}
.y1ad{bottom:187.714050px;}
.y1c{bottom:187.809150px;}
.y162{bottom:187.861350px;}
.y20e{bottom:188.081850px;}
.yc8{bottom:188.617800px;}
.y40{bottom:189.574200px;}
.y13c{bottom:190.122300px;}
.y77{bottom:192.534150px;}
.yf2{bottom:193.949850px;}
.y117{bottom:195.524100px;}
.y188{bottom:196.789200px;}
.y65{bottom:196.792200px;}
.y22e{bottom:199.012350px;}
.yc7{bottom:205.822800px;}
.ye1{bottom:207.528150px;}
.y1ac{bottom:208.084050px;}
.y1b{bottom:208.209150px;}
.y161{bottom:208.285350px;}
.y1ee{bottom:209.060850px;}
.y20d{bottom:209.690850px;}
.y76{bottom:209.787150px;}
.y3f{bottom:210.394950px;}
.y13b{bottom:211.081050px;}
.y187{bottom:214.042200px;}
.y64{bottom:214.045200px;}
.yf1{bottom:214.187850px;}
.y116{bottom:216.327600px;}
.y1ce{bottom:217.048200px;}
.y22d{bottom:220.085850px;}
.yc6{bottom:223.027800px;}
.y75{bottom:227.040150px;}
.ye0{bottom:227.779650px;}
.y1ab{bottom:228.454050px;}
.y1a{bottom:228.609150px;}
.y160{bottom:228.709350px;}
.y1ed{bottom:230.528100px;}
.y250{bottom:230.923950px;}
.y186{bottom:231.295200px;}
.y63{bottom:231.298200px;}
.y20c{bottom:231.299850px;}
.y13a{bottom:232.039800px;}
.yf0{bottom:234.439350px;}
.y115{bottom:237.131100px;}
.y1cd{bottom:238.373700px;}
.yc5{bottom:240.232800px;}
.y74{bottom:244.293150px;}
.ydf{bottom:248.031150px;}
.y9a{bottom:248.411850px;}
.y185{bottom:248.548200px;}
.y1aa{bottom:248.824050px;}
.y19{bottom:249.009150px;}
.y15f{bottom:249.133350px;}
.y22c{bottom:249.664350px;}
.y24f{bottom:251.173950px;}
.y62{bottom:251.546700px;}
.y3e{bottom:252.474000px;}
.y139{bottom:252.998550px;}
.yef{bottom:254.690850px;}
.yc4{bottom:257.437800px;}
.y114{bottom:257.934600px;}
.y1ec{bottom:260.500350px;}
.y20b{bottom:261.413850px;}
.y73{bottom:261.546150px;}
.y1cc{bottom:268.204200px;}
.yde{bottom:268.282650px;}
.y99{bottom:268.663350px;}
.y184{bottom:268.796700px;}
.y1a9{bottom:269.194050px;}
.y18{bottom:269.409150px;}
.y15e{bottom:269.557350px;}
.y61{bottom:270.047250px;}
.y22b{bottom:270.737850px;}
.y24e{bottom:271.423950px;}
.y138{bottom:273.957300px;}
.yc3{bottom:274.642800px;}
.yee{bottom:274.942350px;}
.y113{bottom:278.738100px;}
.y72{bottom:278.799150px;}
.y71{bottom:281.794650px;}
.y1eb{bottom:281.967600px;}
.y20a{bottom:283.022850px;}
.y60{bottom:287.300250px;}
.ydd{bottom:288.534150px;}
.y98{bottom:288.914850px;}
.y1cb{bottom:289.529700px;}
.y1a8{bottom:289.564050px;}
.y17{bottom:289.809150px;}
.y15d{bottom:289.981350px;}
.y24d{bottom:291.673950px;}
.y137{bottom:294.916050px;}
.yed{bottom:295.193850px;}
.y112{bottom:299.541600px;}
.y70{bottom:300.295200px;}
.y22a{bottom:300.316350px;}
.yc2{bottom:300.847800px;}
.y5f{bottom:307.548750px;}
.ydc{bottom:308.785650px;}
.y97{bottom:309.166350px;}
.y1a7{bottom:309.934050px;}
.y16{bottom:310.209150px;}
.y15c{bottom:310.405350px;}
.y1ea{bottom:311.939850px;}
.y183{bottom:312.818100px;}
.y209{bottom:313.136850px;}
.y3d{bottom:315.310050px;}
.yec{bottom:315.445350px;}
.y136{bottom:315.874800px;}
.y6f{bottom:317.548200px;}
.y1ca{bottom:319.360200px;}
.y111{bottom:320.345100px;}
.y229{bottom:321.389850px;}
.y24c{bottom:324.673950px;}
.yc1{bottom:327.052800px;}
.ydb{bottom:329.037150px;}
.y96{bottom:329.417850px;}
.y1a6{bottom:330.304050px;}
.y15{bottom:330.609150px;}
.y15b{bottom:330.829350px;}
.y182{bottom:333.171750px;}
.y1e9{bottom:333.407100px;}
.y208{bottom:334.745850px;}
.yeb{bottom:335.696850px;}
.y135{bottom:336.833550px;}
.y3c{bottom:336.880050px;}
.y6e{bottom:337.796700px;}
.y1c9{bottom:340.685700px;}
.y110{bottom:341.148600px;}
.y228{bottom:342.463350px;}
.yc0{bottom:344.256750px;}
.yda{bottom:349.288650px;}
.y95{bottom:349.669350px;}
.y1a5{bottom:350.674050px;}
.y14{bottom:351.009150px;}
.y15a{bottom:351.253350px;}
.y5e{bottom:351.575400px;}
.y181{bottom:353.509500px;}
.y1e8{bottom:354.874350px;}
.yea{bottom:355.948350px;}
.y134{bottom:357.792300px;}
.y3b{bottom:358.434000px;}
.ybf{bottom:361.461150px;}
.y10f{bottom:361.952100px;}
.y1c8{bottom:362.011200px;}
.y207{bottom:364.859850px;}
.y24b{bottom:366.129900px;}
.yd9{bottom:369.540150px;}
.y94{bottom:369.920850px;}
.y1a4{bottom:371.006100px;}
.y13{bottom:371.409150px;}
.y159{bottom:371.677350px;}
.y227{bottom:372.041850px;}
.y180{bottom:373.847250px;}
.y5d{bottom:374.535150px;}
.ye9{bottom:376.199850px;}
.y3a{bottom:378.504000px;}
.ybe{bottom:378.666150px;}
.y133{bottom:378.751050px;}
.y6d{bottom:381.811950px;}
.y10e{bottom:382.755600px;}
.y1e7{bottom:384.846600px;}
.y24a{bottom:385.632900px;}
.y206{bottom:386.468850px;}
.yd8{bottom:389.791650px;}
.y93{bottom:390.172350px;}
.y1a3{bottom:391.376100px;}
.y12{bottom:391.809150px;}
.y1c7{bottom:391.841700px;}
.y158{bottom:392.101350px;}
.y226{bottom:393.115350px;}
.y17f{bottom:394.185000px;}
.ybd{bottom:395.871150px;}
.ye8{bottom:396.451350px;}
.y5c{bottom:397.503150px;}
.y39{bottom:398.574000px;}
.y132{bottom:399.709800px;}
.y6c{bottom:402.063450px;}
.y10d{bottom:403.559100px;}
.y249{bottom:405.135900px;}
.y1e6{bottom:406.313850px;}
.yd7{bottom:410.043150px;}
.y92{bottom:410.423850px;}
.y1a2{bottom:411.746100px;}
.y11{bottom:412.209150px;}
.y157{bottom:412.525350px;}
.ybc{bottom:413.076150px;}
.y1c6{bottom:413.167200px;}
.y17e{bottom:414.522750px;}
.y205{bottom:416.582850px;}
.y38{bottom:418.644000px;}
.y5b{bottom:420.462900px;}
.y131{bottom:420.667650px;}
.y6b{bottom:422.314950px;}
.y225{bottom:422.693850px;}
.y10c{bottom:424.362600px;}
.y248{bottom:424.638900px;}
.ybb{bottom:430.281150px;}
.yd6{bottom:430.294650px;}
.y1a1{bottom:432.116100px;}
.y10{bottom:432.609150px;}
.y156{bottom:432.949350px;}
.y1c5{bottom:434.492700px;}
.y17d{bottom:434.933100px;}
.y1e5{bottom:436.286100px;}
.ye7{bottom:436.954050px;}
.y204{bottom:438.191850px;}
.y37{bottom:438.714000px;}
.y130{bottom:441.608850px;}
.y5a{bottom:443.485500px;}
.y224{bottom:443.767350px;}
.y247{bottom:444.141900px;}
.y10b{bottom:445.166100px;}
.yba{bottom:447.486150px;}
.yd5{bottom:450.546150px;}
.y91{bottom:451.937400px;}
.y1a0{bottom:452.486100px;}
.yf{bottom:453.009150px;}
.y155{bottom:453.373350px;}
.y17c{bottom:455.270850px;}
.yb7{bottom:456.096150px;}
.y1e4{bottom:457.753350px;}
.y36{bottom:458.784000px;}
.y12f{bottom:462.567600px;}
.y246{bottom:463.644900px;}
.y1c4{bottom:464.323200px;}
.yb9{bottom:464.691150px;}
.y10a{bottom:465.956100px;}
.y59{bottom:466.445250px;}
.y203{bottom:468.305850px;}
.yd4{bottom:470.797650px;}
.y7d{bottom:471.968400px;}
.y19f{bottom:472.856100px;}
.y223{bottom:473.345850px;}
.ye{bottom:473.409150px;}
.y154{bottom:473.797350px;}
.y17b{bottom:475.608600px;}
.y90{bottom:475.933650px;}
.y35{bottom:478.854000px;}
.y1e3{bottom:479.220600px;}
.yb8{bottom:481.896150px;}
.y245{bottom:483.147900px;}
.y12e{bottom:483.526350px;}
.y1c3{bottom:485.648700px;}
.y109{bottom:486.759600px;}
.y58{bottom:489.405000px;}
.y202{bottom:489.914850px;}
.yd3{bottom:491.049150px;}
.y19e{bottom:493.226100px;}
.y153{bottom:494.221350px;}
.y222{bottom:494.419350px;}
.y17a{bottom:495.946350px;}
.y34{bottom:498.924000px;}
.yb6{bottom:499.101150px;}
.y244{bottom:502.650900px;}
.y12d{bottom:504.485100px;}
.yd{bottom:506.559150px;}
.y108{bottom:507.522600px;}
.y1e2{bottom:509.192850px;}
.y57{bottom:512.364750px;}
.y152{bottom:514.645350px;}
.y1c2{bottom:515.479200px;}
.y221{bottom:515.492850px;}
.y179{bottom:516.284100px;}
.yb5{bottom:516.306150px;}
.y33{bottom:518.994000px;}
.y201{bottom:520.028850px;}
.y243{bottom:522.153900px;}
.y12c{bottom:525.443850px;}
.y107{bottom:528.326100px;}
.y1e1{bottom:530.660100px;}
.yd2{bottom:532.566600px;}
.y19d{bottom:534.850500px;}
.y151{bottom:535.069350px;}
.y56{bottom:535.324500px;}
.y178{bottom:536.621850px;}
.y1c1{bottom:536.804700px;}
.y8f{bottom:538.184850px;}
.y32{bottom:539.064000px;}
.y200{bottom:541.637850px;}
.y242{bottom:541.656900px;}
.y220{bottom:545.071350px;}
.y12b{bottom:546.402600px;}
.y106{bottom:549.129600px;}
.yb4{bottom:550.716150px;}
.y1e0{bottom:552.127350px;}
.y150{bottom:555.493350px;}
.yd1{bottom:556.562850px;}
.y177{bottom:556.959600px;}
.y1c0{bottom:558.130200px;}
.y55{bottom:558.284250px;}
.y8e{bottom:558.436350px;}
.y31{bottom:559.134000px;}
.y241{bottom:561.159900px;}
.yc{bottom:565.235700px;}
.y21f{bottom:566.144850px;}
.y12a{bottom:567.361350px;}
.yb3{bottom:567.921150px;}
.y105{bottom:569.933100px;}
.y1ff{bottom:571.751850px;}
.y1df{bottom:573.594600px;}
.y14f{bottom:575.917350px;}
.y176{bottom:577.297350px;}
.y8d{bottom:578.687850px;}
.y30{bottom:579.204000px;}
.y1bf{bottom:579.455700px;}
.yd0{bottom:580.559100px;}
.y240{bottom:580.662900px;}
.y54{bottom:581.244000px;}
.yb2{bottom:585.126150px;}
.y129{bottom:588.320100px;}
.y104{bottom:590.736600px;}
.yb{bottom:593.123700px;}
.y1fe{bottom:593.360850px;}
.yae{bottom:593.736150px;}
.y21e{bottom:595.723350px;}
.y14e{bottom:596.341350px;}
.y19c{bottom:597.117600px;}
.y175{bottom:597.635100px;}
.y8c{bottom:598.939350px;}
.y2f{bottom:599.274000px;}
.y23f{bottom:600.165900px;}
.y1be{bottom:600.781200px;}
.yb1{bottom:602.331150px;}
.y1de{bottom:603.566850px;}
.y53{bottom:604.203750px;}
.y128{bottom:609.278850px;}
.y103{bottom:611.540100px;}
.y14d{bottom:616.765350px;}
.y21d{bottom:616.796850px;}
.y19b{bottom:617.489850px;}
.y174{bottom:617.972850px;}
.y8b{bottom:619.190850px;}
.y2e{bottom:619.344000px;}
.yb0{bottom:619.536150px;}
.y23e{bottom:619.668900px;}
.ya{bottom:621.011700px;}
.y1bd{bottom:622.106700px;}
.y1fd{bottom:623.474850px;}
.y1dd{bottom:625.034100px;}
.y52{bottom:627.163500px;}
.y127{bottom:630.237600px;}
.y102{bottom:632.255850px;}
.yaf{bottom:636.741150px;}
.y14c{bottom:637.189350px;}
.y19a{bottom:637.862100px;}
.y173{bottom:638.310600px;}
.y23d{bottom:639.171900px;}
.y2d{bottom:639.414000px;}
.y8a{bottom:639.442350px;}
.y1bc{bottom:643.432200px;}
.y1fc{bottom:645.083850px;}
.y21c{bottom:646.375350px;}
.y51{bottom:650.123250px;}
.y126{bottom:651.196350px;}
.y101{bottom:653.059350px;}
.yad{bottom:654.726150px;}
.y1dc{bottom:655.006350px;}
.y14b{bottom:657.613350px;}
.y199{bottom:658.234350px;}
.y172{bottom:658.648350px;}
.y23c{bottom:658.674900px;}
.y2c{bottom:659.484000px;}
.y89{bottom:659.693850px;}
.y1fb{bottom:666.692850px;}
.y21b{bottom:667.448850px;}
.y9{bottom:670.151400px;}
.y125{bottom:672.155100px;}
.yac{bottom:672.696150px;}
.y50{bottom:673.083000px;}
.y1bb{bottom:673.262700px;}
.y100{bottom:673.862850px;}
.y1db{bottom:676.473600px;}
.y14a{bottom:678.037350px;}
.y23b{bottom:678.177900px;}
.y198{bottom:678.606600px;}
.y171{bottom:678.986100px;}
.y2b{bottom:679.554000px;}
.y88{bottom:679.945350px;}
.ya9{bottom:682.071150px;}
.y21a{bottom:688.522350px;}
.yab{bottom:690.666150px;}
.y124{bottom:693.113850px;}
.y1ba{bottom:694.588200px;}
.yff{bottom:694.666350px;}
.y4f{bottom:696.042750px;}
.y1fa{bottom:696.806850px;}
.y23a{bottom:697.680900px;}
.y149{bottom:698.461350px;}
.y197{bottom:698.978850px;}
.y170{bottom:699.323850px;}
.y2a{bottom:699.624000px;}
.y87{bottom:700.196850px;}
.y8{bottom:702.551400px;}
.y1da{bottom:706.445850px;}
.yaa{bottom:709.416150px;}
.y219{bottom:709.595850px;}
.y123{bottom:714.072600px;}
.yfe{bottom:715.469850px;}
.y1b9{bottom:715.913700px;}
.y239{bottom:717.177900px;}
.y148{bottom:718.885350px;}
.y4e{bottom:719.002500px;}
.y196{bottom:719.351100px;}
.y16f{bottom:719.661600px;}
.y29{bottom:719.697750px;}
.y86{bottom:720.448350px;}
.y1f9{bottom:726.920850px;}
.y1d9{bottom:727.913100px;}
.ya8{bottom:728.166150px;}
.y7{bottom:734.951400px;}
.y122{bottom:735.031350px;}
.yfd{bottom:736.273350px;}
.y238{bottom:736.680900px;}
.ycf{bottom:737.254650px;}
.y218{bottom:739.174350px;}
.y147{bottom:739.309350px;}
.y195{bottom:739.723350px;}
.y28{bottom:739.767750px;}
.y16e{bottom:739.999350px;}
.y85{bottom:740.699850px;}
.y4d{bottom:741.962250px;}
.y1b8{bottom:745.744200px;}
.ya7{bottom:746.136150px;}
.y1f8{bottom:748.529850px;}
.y1d8{bottom:749.380350px;}
.ya4{bottom:753.966150px;}
.y121{bottom:755.990100px;}
.y237{bottom:756.183900px;}
.yfc{bottom:757.076850px;}
.yce{bottom:757.504650px;}
.y146{bottom:759.733350px;}
.y27{bottom:759.837750px;}
.y194{bottom:760.095600px;}
.y217{bottom:760.247850px;}
.y16d{bottom:760.337100px;}
.y84{bottom:760.940850px;}
.ya6{bottom:763.341150px;}
.y4c{bottom:764.922000px;}
.y6{bottom:767.351400px;}
.y120{bottom:776.948850px;}
.yfb{bottom:777.880350px;}
.y1f7{bottom:778.643850px;}
.y1d7{bottom:779.352600px;}
.y26{bottom:779.907750px;}
.y145{bottom:780.157350px;}
.y193{bottom:780.467850px;}
.ya5{bottom:780.546150px;}
.y16c{bottom:780.674850px;}
.y83{bottom:781.192350px;}
.y216{bottom:781.321350px;}
.y4b{bottom:787.902600px;}
.y236{bottom:788.439750px;}
.y1b7{bottom:797.547750px;}
.y11f{bottom:797.907600px;}
.yfa{bottom:798.683850px;}
.ya3{bottom:799.791150px;}
.y25{bottom:799.977750px;}
.y1f6{bottom:800.252850px;}
.y144{bottom:800.581350px;}
.y1d6{bottom:800.819850px;}
.y192{bottom:800.840100px;}
.y16b{bottom:801.012600px;}
.y82{bottom:801.443850px;}
.y4a{bottom:810.862350px;}
.y215{bottom:810.899850px;}
.ya0{bottom:818.541150px;}
.y11e{bottom:818.866350px;}
.y1b6{bottom:818.877750px;}
.yf9{bottom:819.487350px;}
.ya2{bottom:819.816150px;}
.y143{bottom:821.005350px;}
.y191{bottom:821.212350px;}
.y16a{bottom:821.350350px;}
.y81{bottom:821.695350px;}
.y5{bottom:829.498950px;}
.y1f5{bottom:830.366850px;}
.y1d5{bottom:830.792100px;}
.y214{bottom:831.973350px;}
.y24{bottom:832.797750px;}
.y49{bottom:833.822100px;}
.ya1{bottom:838.566150px;}
.y11d{bottom:839.825100px;}
.y1b5{bottom:840.207750px;}
.yf8{bottom:840.290850px;}
.y142{bottom:841.429350px;}
.y190{bottom:841.584600px;}
.y169{bottom:841.688100px;}
.y80{bottom:841.946850px;}
.y235{bottom:846.195450px;}
.y4{bottom:851.398950px;}
.y1f4{bottom:851.975850px;}
.y1d4{bottom:852.259350px;}
.y213{bottom:853.046850px;}
.y48{bottom:856.781850px;}
.y9f{bottom:857.316150px;}
.y11c{bottom:860.783850px;}
.yf7{bottom:861.094350px;}
.y1b4{bottom:861.537750px;}
.y141{bottom:861.853350px;}
.y18f{bottom:861.956850px;}
.y168{bottom:862.025850px;}
.y7f{bottom:862.198350px;}
.y234{bottom:873.201450px;}
.y9e{bottom:876.066150px;}
.y47{bottom:879.741600px;}
.y11b{bottom:881.742600px;}
.y3{bottom:881.803950px;}
.yf6{bottom:881.897850px;}
.y1f3{bottom:882.089850px;}
.y1d3{bottom:882.231600px;}
.y140{bottom:882.277350px;}
.y18e{bottom:882.329100px;}
.y167{bottom:882.363600px;}
.y7e{bottom:882.449850px;}
.y212{bottom:882.625350px;}
.y23{bottom:882.627750px;}
.y1b3{bottom:882.867750px;}
.y233{bottom:900.207450px;}
.y46{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y22{bottom:904.193550px;}
.y1b2{bottom:904.197750px;}
.y21{bottom:948.189000px;}
.y45{bottom:966.189000px;}
.he{height:21.720735px;}
.hb{height:40.620539px;}
.h7{height:46.757812px;}
.h10{height:51.826172px;}
.hc{height:52.602539px;}
.h1e{height:55.488281px;}
.h16{height:58.436466px;}
.h4{height:58.447266px;}
.h8{height:58.464066px;}
.h12{height:59.396484px;}
.h3{height:61.369629px;}
.h15{height:62.296992px;}
.h14{height:62.319792px;}
.h1c{height:64.291992px;}
.h1d{height:64.315992px;}
.ha{height:67.214355px;}
.h1b{height:67.217955px;}
.hd{height:67.226355px;}
.hf{height:67.256355px;}
.h17{height:67.268355px;}
.h1a{height:67.284555px;}
.h19{height:67.376355px;}
.h18{height:67.565355px;}
.h2{height:73.059082px;}
.h9{height:78.903809px;}
.h6{height:81.826172px;}
.h13{height:94.447266px;}
.h5{height:105.205078px;}
.h11{height:127.267266px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:82.464300px;}
.x6{left:83.686650px;}
.x1{left:85.039350px;}
.xa{left:90.607950px;}
.x7{left:105.029250px;}
.x5{left:106.365600px;}
.x1d{left:118.027050px;}
.x16{left:120.483600px;}
.x18{left:125.107050px;}
.x19{left:129.067050px;}
.x1e{left:133.987050px;}
.x1f{left:138.502050px;}
.x22{left:141.154350px;}
.x21{left:143.164350px;}
.x1b{left:144.277050px;}
.x20{left:147.429600px;}
.x1c{left:156.907050px;}
.x17{left:159.607050px;}
.x14{left:162.877950px;}
.x15{left:169.477950px;}
.x13{left:173.377950px;}
.xc{left:178.102950px;}
.xe{left:179.632950px;}
.x8{left:212.664000px;}
.x3{left:230.594700px;}
.x4{left:231.863700px;}
.x2{left:233.581500px;}
.x12{left:270.082950px;}
.x1a{left:297.127050px;}
.xb{left:338.812950px;}
.x11{left:355.702950px;}
.xf{left:359.677950px;}
.xd{left:371.362950px;}
.x10{left:373.192950px;}
@media print{
.v3{vertical-align:-10.650667pt;}
.v7{vertical-align:-1.753067pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.412800pt;}
.v2{vertical-align:15.016533pt;}
.v5{vertical-align:16.000000pt;}
.v8{vertical-align:20.472000pt;}
.v6{vertical-align:32.000000pt;}
.v4{vertical-align:61.173333pt;}
.ls2a{letter-spacing:-2.880000pt;}
.ls55{letter-spacing:-2.392000pt;}
.ls5e{letter-spacing:-2.266667pt;}
.ls2e{letter-spacing:-2.133333pt;}
.ls1f{letter-spacing:-1.800000pt;}
.ls4d{letter-spacing:-1.594667pt;}
.ls52{letter-spacing:-1.472000pt;}
.ls4e{letter-spacing:-1.349333pt;}
.ls24{letter-spacing:-1.333333pt;}
.ls9{letter-spacing:-1.266667pt;}
.ls2b{letter-spacing:-1.226667pt;}
.ls28{letter-spacing:-1.173333pt;}
.ls42{letter-spacing:-1.104000pt;}
.ls58{letter-spacing:-1.080000pt;}
.ls26{letter-spacing:-1.066667pt;}
.ls30{letter-spacing:-1.013333pt;}
.ls23{letter-spacing:-0.960000pt;}
.ls29{letter-spacing:-0.853333pt;}
.lsb{letter-spacing:-0.760000pt;}
.ls27{letter-spacing:-0.746667pt;}
.ls25{letter-spacing:-0.693333pt;}
.ls4a{letter-spacing:-0.674667pt;}
.ls5a{letter-spacing:-0.666667pt;}
.ls4b{letter-spacing:-0.613333pt;}
.ls32{letter-spacing:-0.586667pt;}
.ls37{letter-spacing:-0.557333pt;}
.ls4c{letter-spacing:-0.552000pt;}
.ls2f{letter-spacing:-0.480000pt;}
.ls3f{letter-spacing:-0.306667pt;}
.ls22{letter-spacing:-0.266667pt;}
.ls31{letter-spacing:-0.213333pt;}
.ls57{letter-spacing:-0.152000pt;}
.ls35{letter-spacing:-0.053333pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000267pt;}
.ls48{letter-spacing:0.001381pt;}
.ls47{letter-spacing:0.001915pt;}
.ls46{letter-spacing:0.003696pt;}
.ls3c{letter-spacing:0.011877pt;}
.ls2c{letter-spacing:0.053333pt;}
.ls10{letter-spacing:0.072000pt;}
.ls12{letter-spacing:0.106667pt;}
.ls2d{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.213333pt;}
.ls44{letter-spacing:0.306667pt;}
.ls17{letter-spacing:0.426667pt;}
.ls4f{letter-spacing:0.552000pt;}
.ls45{letter-spacing:0.656533pt;}
.ls40{letter-spacing:0.736000pt;}
.ls5{letter-spacing:0.746667pt;}
.ls21{letter-spacing:0.800000pt;}
.ls50{letter-spacing:0.858667pt;}
.ls13{letter-spacing:0.906667pt;}
.ls51{letter-spacing:0.920000pt;}
.ls16{letter-spacing:0.960000pt;}
.ls3{letter-spacing:1.120000pt;}
.ls3b{letter-spacing:1.134667pt;}
.ls1b{letter-spacing:1.523040pt;}
.ls8{letter-spacing:2.133333pt;}
.ls14{letter-spacing:2.293333pt;}
.ls39{letter-spacing:2.300000pt;}
.ls18{letter-spacing:2.506667pt;}
.ls3d{letter-spacing:2.852000pt;}
.ls49{letter-spacing:3.177067pt;}
.ls41{letter-spacing:3.189333pt;}
.ls1d{letter-spacing:3.200000pt;}
.ls3e{letter-spacing:3.465333pt;}
.ls7{letter-spacing:3.733333pt;}
.ls56{letter-spacing:4.446667pt;}
.ls4{letter-spacing:5.120000pt;}
.lsa{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls15{letter-spacing:5.600000pt;}
.ls34{letter-spacing:5.653333pt;}
.ls33{letter-spacing:6.453333pt;}
.ls54{letter-spacing:7.253472pt;}
.ls60{letter-spacing:7.680000pt;}
.ls5b{letter-spacing:7.840000pt;}
.ls5c{letter-spacing:26.040000pt;}
.ls38{letter-spacing:414.673067pt;}
.lse{letter-spacing:415.139733pt;}
.ls43{letter-spacing:415.206400pt;}
.ls53{letter-spacing:415.372800pt;}
.ls5f{letter-spacing:415.966400pt;}
.ls59{letter-spacing:416.233067pt;}
.ls6{letter-spacing:417.012800pt;}
.ls11{letter-spacing:417.732800pt;}
.ls5d{letter-spacing:418.959467pt;}
.ls1a{letter-spacing:500.398400pt;}
.ls1c{letter-spacing:505.813333pt;}
.ls19{letter-spacing:572.746667pt;}
.ls1e{letter-spacing:581.324267pt;}
.lsc{letter-spacing:846.686933pt;}
.ls36{letter-spacing:847.126933pt;}
.ls3a{letter-spacing:849.460267pt;}
.ls0{letter-spacing:853.060267pt;}
.lsf{letter-spacing:854.820267pt;}
.ws5b{word-spacing:-23.576000pt;}
.ws60{word-spacing:-22.666667pt;}
.ws7{word-spacing:-20.213333pt;}
.ws0{word-spacing:-20.106667pt;}
.ws35{word-spacing:-19.626667pt;}
.ws36{word-spacing:-18.826667pt;}
.ws10{word-spacing:-18.733333pt;}
.ws5a{word-spacing:-18.066667pt;}
.ws5{word-spacing:-17.466667pt;}
.ws11{word-spacing:-17.234667pt;}
.ws15{word-spacing:-16.933333pt;}
.ws13{word-spacing:-16.560000pt;}
.ws5f{word-spacing:-16.466667pt;}
.ws53{word-spacing:-16.008000pt;}
.ws45{word-spacing:-15.885333pt;}
.ws5e{word-spacing:-15.736000pt;}
.ws52{word-spacing:-15.701333pt;}
.ws16{word-spacing:-15.200000pt;}
.wsa{word-spacing:-15.149333pt;}
.ws18{word-spacing:-14.986667pt;}
.ws4c{word-spacing:-14.842667pt;}
.ws4b{word-spacing:-14.597333pt;}
.ws37{word-spacing:-14.240000pt;}
.ws46{word-spacing:-14.045333pt;}
.ws1{word-spacing:-13.920000pt;}
.ws5c{word-spacing:-13.832000pt;}
.ws4e{word-spacing:-13.800000pt;}
.ws4d{word-spacing:-13.554667pt;}
.ws47{word-spacing:-13.488000pt;}
.ws24{word-spacing:-13.333333pt;}
.ws23{word-spacing:-13.226667pt;}
.ws9{word-spacing:-13.173333pt;}
.wsf{word-spacing:-11.856000pt;}
.ws6{word-spacing:-11.610667pt;}
.wse{word-spacing:-10.047811pt;}
.ws61{word-spacing:-9.610949pt;}
.ws8{word-spacing:-8.737227pt;}
.ws5d{word-spacing:-5.600000pt;}
.ws3{word-spacing:-5.333333pt;}
.wsc{word-spacing:-3.733333pt;}
.ws29{word-spacing:-3.333333pt;}
.ws49{word-spacing:-3.189333pt;}
.ws26{word-spacing:-2.176000pt;}
.wsb{word-spacing:-2.133333pt;}
.ws4{word-spacing:-1.120000pt;}
.ws54{word-spacing:-0.920000pt;}
.ws51{word-spacing:-0.306667pt;}
.ws3c{word-spacing:-0.213333pt;}
.ws42{word-spacing:-0.160000pt;}
.ws14{word-spacing:-0.072000pt;}
.ws2{word-spacing:0.000000pt;}
.ws43{word-spacing:0.053333pt;}
.ws58{word-spacing:0.152000pt;}
.ws41{word-spacing:0.213333pt;}
.ws3d{word-spacing:0.266667pt;}
.ws48{word-spacing:0.306667pt;}
.ws44{word-spacing:0.557333pt;}
.ws50{word-spacing:0.613333pt;}
.ws4f{word-spacing:0.674667pt;}
.ws40{word-spacing:0.746667pt;}
.wsd{word-spacing:0.760000pt;}
.ws4a{word-spacing:0.960000pt;}
.ws3f{word-spacing:1.013333pt;}
.ws59{word-spacing:1.080000pt;}
.ws3e{word-spacing:1.226667pt;}
.ws55{word-spacing:1.472000pt;}
.ws27{word-spacing:1.770667pt;}
.ws56{word-spacing:2.392000pt;}
.ws57{word-spacing:5.581333pt;}
.ws12{word-spacing:38.617920pt;}
.ws3b{word-spacing:444.651733pt;}
.ws39{word-spacing:450.138667pt;}
.ws2e{word-spacing:470.938667pt;}
.ws34{word-spacing:489.610667pt;}
.ws31{word-spacing:500.837333pt;}
.ws1c{word-spacing:504.144000pt;}
.ws2f{word-spacing:506.170667pt;}
.ws2d{word-spacing:508.373333pt;}
.ws1a{word-spacing:511.125333pt;}
.ws17{word-spacing:511.285333pt;}
.ws2a{word-spacing:511.861333pt;}
.ws19{word-spacing:512.037333pt;}
.ws28{word-spacing:512.064000pt;}
.ws21{word-spacing:514.080000pt;}
.ws1f{word-spacing:515.104000pt;}
.ws2c{word-spacing:515.125333pt;}
.ws1e{word-spacing:515.413333pt;}
.ws2b{word-spacing:515.472000pt;}
.ws1d{word-spacing:516.832000pt;}
.ws1b{word-spacing:516.992000pt;}
.ws22{word-spacing:518.277333pt;}
.ws20{word-spacing:519.034667pt;}
.ws25{word-spacing:523.946667pt;}
.ws33{word-spacing:532.245333pt;}
.ws30{word-spacing:537.957333pt;}
.ws32{word-spacing:554.080000pt;}
.ws38{word-spacing:555.413333pt;}
.ws3a{word-spacing:566.400000pt;}
._f{margin-left:-14.847467pt;}
._c{margin-left:-8.352267pt;}
._a{margin-left:-6.787733pt;}
._1f{margin-left:-5.879733pt;}
._d{margin-left:-4.905600pt;}
._b{margin-left:-3.936000pt;}
._2e{margin-left:-3.044533pt;}
._9{margin-left:-2.154667pt;}
._8{margin-left:-1.168000pt;}
._3{width:1.058400pt;}
._1{width:2.133333pt;}
._2{width:3.175467pt;}
._5{width:4.561867pt;}
._4{width:5.870133pt;}
._6{width:7.065067pt;}
._7{width:8.230933pt;}
._12{width:9.952800pt;}
._2d{width:10.843733pt;}
._2f{width:11.805600pt;}
._30{width:12.754667pt;}
._32{width:14.694400pt;}
._13{width:20.868267pt;}
._11{width:21.976000pt;}
._31{width:24.625920pt;}
._33{width:29.625867pt;}
._14{width:38.617920pt;}
._e{width:76.048000pt;}
._16{width:193.962667pt;}
._15{width:212.475200pt;}
._10{width:231.653333pt;}
._26{width:246.556267pt;}
._22{width:312.931467pt;}
._20{width:315.028000pt;}
._2c{width:329.304800pt;}
._2b{width:333.588000pt;}
._1d{width:371.832533pt;}
._23{width:393.587733pt;}
._21{width:414.261333pt;}
._27{width:415.339733pt;}
._1c{width:416.771467pt;}
._28{width:431.873067pt;}
._17{width:444.816533pt;}
._29{width:448.529600pt;}
._24{width:450.130933pt;}
._18{width:491.570933pt;}
._25{width:497.008000pt;}
._0{width:514.133333pt;}
._1a{width:529.573333pt;}
._19{width:533.490933pt;}
._1b{width:547.011467pt;}
._1e{width:552.362133pt;}
._2a{width:558.131733pt;}
.fsd{font-size:27.984000pt;}
.fs8{font-size:31.093333pt;}
.fs10{font-size:34.202667pt;}
.fsc{font-size:35.757333pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fse{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fsf{font-size:58.666667pt;}
.fsb{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fsa{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.ycd{bottom:89.430533pt;}
.y166{bottom:94.369200pt;}
.y1f2{bottom:94.383867pt;}
.y20{bottom:94.408133pt;}
.y232{bottom:94.411867pt;}
.y1d2{bottom:94.427733pt;}
.y1b1{bottom:94.430267pt;}
.y211{bottom:94.439867pt;}
.y7c{bottom:94.461467pt;}
.ye6{bottom:94.462800pt;}
.y6a{bottom:94.477600pt;}
.y44{bottom:94.481067pt;}
.y18d{bottom:94.482933pt;}
.y9d{bottom:94.483067pt;}
.yf5{bottom:94.485733pt;}
.y11a{bottom:97.150933pt;}
.ycc{bottom:104.723867pt;}
.y7b{bottom:109.797467pt;}
.y69{bottom:109.813600pt;}
.y18c{bottom:109.818933pt;}
.y9c{bottom:109.819067pt;}
.ye5{bottom:112.464133pt;}
.yf4{bottom:112.484400pt;}
.y165{bottom:112.523867pt;}
.y1b0{bottom:112.536933pt;}
.y1f{bottom:112.541467pt;}
.y43{bottom:112.988400pt;}
.y13f{bottom:113.107600pt;}
.y231{bottom:113.143867pt;}
.y1f1{bottom:113.465867pt;}
.y119{bottom:116.263733pt;}
.ycb{bottom:120.459600pt;}
.y1d1{bottom:120.943733pt;}
.y210{bottom:121.207867pt;}
.y7a{bottom:125.133467pt;}
.y68{bottom:125.149600pt;}
.y18b{bottom:127.817600pt;}
.y9b{bottom:127.817733pt;}
.ye4{bottom:130.465467pt;}
.y1af{bottom:130.643600pt;}
.y1e{bottom:130.674800pt;}
.y164{bottom:130.678533pt;}
.y42{bottom:131.495733pt;}
.y13e{bottom:131.737600pt;}
.yca{bottom:136.633600pt;}
.y230{bottom:139.435867pt;}
.y1f0{bottom:140.107867pt;}
.y20f{bottom:140.415867pt;}
.y79{bottom:140.469467pt;}
.y67{bottom:140.485600pt;}
.y18a{bottom:144.251733pt;}
.y1d0{bottom:147.459733pt;}
.ye3{bottom:148.466800pt;}
.y1ae{bottom:148.750267pt;}
.y1d{bottom:148.808133pt;}
.y163{bottom:148.833200pt;}
.y41{bottom:150.003067pt;}
.y13d{bottom:150.367600pt;}
.yc9{bottom:152.366933pt;}
.yf3{bottom:154.398533pt;}
.y118{bottom:155.307200pt;}
.y78{bottom:155.805467pt;}
.y22f{bottom:158.167867pt;}
.y66{bottom:158.484267pt;}
.y1ef{bottom:159.189867pt;}
.y189{bottom:159.587733pt;}
.y1cf{bottom:166.415733pt;}
.ye2{bottom:166.468133pt;}
.y1ad{bottom:166.856933pt;}
.y1c{bottom:166.941467pt;}
.y162{bottom:166.987867pt;}
.y20e{bottom:167.183867pt;}
.yc8{bottom:167.660267pt;}
.y40{bottom:168.510400pt;}
.y13c{bottom:168.997600pt;}
.y77{bottom:171.141467pt;}
.yf2{bottom:172.399867pt;}
.y117{bottom:173.799200pt;}
.y188{bottom:174.923733pt;}
.y65{bottom:174.926400pt;}
.y22e{bottom:176.899867pt;}
.yc7{bottom:182.953600pt;}
.ye1{bottom:184.469467pt;}
.y1ac{bottom:184.963600pt;}
.y1b{bottom:185.074800pt;}
.y161{bottom:185.142533pt;}
.y1ee{bottom:185.831867pt;}
.y20d{bottom:186.391867pt;}
.y76{bottom:186.477467pt;}
.y3f{bottom:187.017733pt;}
.y13b{bottom:187.627600pt;}
.y187{bottom:190.259733pt;}
.y64{bottom:190.262400pt;}
.yf1{bottom:190.389200pt;}
.y116{bottom:192.291200pt;}
.y1ce{bottom:192.931733pt;}
.y22d{bottom:195.631867pt;}
.yc6{bottom:198.246933pt;}
.y75{bottom:201.813467pt;}
.ye0{bottom:202.470800pt;}
.y1ab{bottom:203.070267pt;}
.y1a{bottom:203.208133pt;}
.y160{bottom:203.297200pt;}
.y1ed{bottom:204.913867pt;}
.y250{bottom:205.265733pt;}
.y186{bottom:205.595733pt;}
.y63{bottom:205.598400pt;}
.y20c{bottom:205.599867pt;}
.y13a{bottom:206.257600pt;}
.yf0{bottom:208.390533pt;}
.y115{bottom:210.783200pt;}
.y1cd{bottom:211.887733pt;}
.yc5{bottom:213.540267pt;}
.y74{bottom:217.149467pt;}
.ydf{bottom:220.472133pt;}
.y9a{bottom:220.810533pt;}
.y185{bottom:220.931733pt;}
.y1aa{bottom:221.176933pt;}
.y19{bottom:221.341467pt;}
.y15f{bottom:221.451867pt;}
.y22c{bottom:221.923867pt;}
.y24f{bottom:223.265733pt;}
.y62{bottom:223.597067pt;}
.y3e{bottom:224.421333pt;}
.y139{bottom:224.887600pt;}
.yef{bottom:226.391867pt;}
.yc4{bottom:228.833600pt;}
.y114{bottom:229.275200pt;}
.y1ec{bottom:231.555867pt;}
.y20b{bottom:232.367867pt;}
.y73{bottom:232.485467pt;}
.y1cc{bottom:238.403733pt;}
.yde{bottom:238.473467pt;}
.y99{bottom:238.811867pt;}
.y184{bottom:238.930400pt;}
.y1a9{bottom:239.283600pt;}
.y18{bottom:239.474800pt;}
.y15e{bottom:239.606533pt;}
.y61{bottom:240.042000pt;}
.y22b{bottom:240.655867pt;}
.y24e{bottom:241.265733pt;}
.y138{bottom:243.517600pt;}
.yc3{bottom:244.126933pt;}
.yee{bottom:244.393200pt;}
.y113{bottom:247.767200pt;}
.y72{bottom:247.821467pt;}
.y71{bottom:250.484133pt;}
.y1eb{bottom:250.637867pt;}
.y20a{bottom:251.575867pt;}
.y60{bottom:255.378000pt;}
.ydd{bottom:256.474800pt;}
.y98{bottom:256.813200pt;}
.y1cb{bottom:257.359733pt;}
.y1a8{bottom:257.390267pt;}
.y17{bottom:257.608133pt;}
.y15d{bottom:257.761200pt;}
.y24d{bottom:259.265733pt;}
.y137{bottom:262.147600pt;}
.yed{bottom:262.394533pt;}
.y112{bottom:266.259200pt;}
.y70{bottom:266.929067pt;}
.y22a{bottom:266.947867pt;}
.yc2{bottom:267.420267pt;}
.y5f{bottom:273.376667pt;}
.ydc{bottom:274.476133pt;}
.y97{bottom:274.814533pt;}
.y1a7{bottom:275.496933pt;}
.y16{bottom:275.741467pt;}
.y15c{bottom:275.915867pt;}
.y1ea{bottom:277.279867pt;}
.y183{bottom:278.060533pt;}
.y209{bottom:278.343867pt;}
.y3d{bottom:280.275600pt;}
.yec{bottom:280.395867pt;}
.y136{bottom:280.777600pt;}
.y6f{bottom:282.265067pt;}
.y1ca{bottom:283.875733pt;}
.y111{bottom:284.751200pt;}
.y229{bottom:285.679867pt;}
.y24c{bottom:288.599067pt;}
.yc1{bottom:290.713600pt;}
.ydb{bottom:292.477467pt;}
.y96{bottom:292.815867pt;}
.y1a6{bottom:293.603600pt;}
.y15{bottom:293.874800pt;}
.y15b{bottom:294.070533pt;}
.y182{bottom:296.152667pt;}
.y1e9{bottom:296.361867pt;}
.y208{bottom:297.551867pt;}
.yeb{bottom:298.397200pt;}
.y135{bottom:299.407600pt;}
.y3c{bottom:299.448933pt;}
.y6e{bottom:300.263733pt;}
.y1c9{bottom:302.831733pt;}
.y110{bottom:303.243200pt;}
.y228{bottom:304.411867pt;}
.yc0{bottom:306.006000pt;}
.yda{bottom:310.478800pt;}
.y95{bottom:310.817200pt;}
.y1a5{bottom:311.710267pt;}
.y14{bottom:312.008133pt;}
.y15a{bottom:312.225200pt;}
.y5e{bottom:312.511467pt;}
.y181{bottom:314.230667pt;}
.y1e8{bottom:315.443867pt;}
.yea{bottom:316.398533pt;}
.y134{bottom:318.037600pt;}
.y3b{bottom:318.608000pt;}
.ybf{bottom:321.298800pt;}
.y10f{bottom:321.735200pt;}
.y1c8{bottom:321.787733pt;}
.y207{bottom:324.319867pt;}
.y24b{bottom:325.448800pt;}
.yd9{bottom:328.480133pt;}
.y94{bottom:328.818533pt;}
.y1a4{bottom:329.783200pt;}
.y13{bottom:330.141467pt;}
.y159{bottom:330.379867pt;}
.y227{bottom:330.703867pt;}
.y180{bottom:332.308667pt;}
.y5d{bottom:332.920133pt;}
.ye9{bottom:334.399867pt;}
.y3a{bottom:336.448000pt;}
.ybe{bottom:336.592133pt;}
.y133{bottom:336.667600pt;}
.y6d{bottom:339.388400pt;}
.y10e{bottom:340.227200pt;}
.y1e7{bottom:342.085867pt;}
.y24a{bottom:342.784800pt;}
.y206{bottom:343.527867pt;}
.yd8{bottom:346.481467pt;}
.y93{bottom:346.819867pt;}
.y1a3{bottom:347.889867pt;}
.y12{bottom:348.274800pt;}
.y1c7{bottom:348.303733pt;}
.y158{bottom:348.534533pt;}
.y226{bottom:349.435867pt;}
.y17f{bottom:350.386667pt;}
.ybd{bottom:351.885467pt;}
.ye8{bottom:352.401200pt;}
.y5c{bottom:353.336133pt;}
.y39{bottom:354.288000pt;}
.y132{bottom:355.297600pt;}
.y6c{bottom:357.389733pt;}
.y10d{bottom:358.719200pt;}
.y249{bottom:360.120800pt;}
.y1e6{bottom:361.167867pt;}
.yd7{bottom:364.482800pt;}
.y92{bottom:364.821200pt;}
.y1a2{bottom:365.996533pt;}
.y11{bottom:366.408133pt;}
.y157{bottom:366.689200pt;}
.ybc{bottom:367.178800pt;}
.y1c6{bottom:367.259733pt;}
.y17e{bottom:368.464667pt;}
.y205{bottom:370.295867pt;}
.y38{bottom:372.128000pt;}
.y5b{bottom:373.744800pt;}
.y131{bottom:373.926800pt;}
.y6b{bottom:375.391067pt;}
.y225{bottom:375.727867pt;}
.y10c{bottom:377.211200pt;}
.y248{bottom:377.456800pt;}
.ybb{bottom:382.472133pt;}
.yd6{bottom:382.484133pt;}
.y1a1{bottom:384.103200pt;}
.y10{bottom:384.541467pt;}
.y156{bottom:384.843867pt;}
.y1c5{bottom:386.215733pt;}
.y17d{bottom:386.607200pt;}
.y1e5{bottom:387.809867pt;}
.ye7{bottom:388.403600pt;}
.y204{bottom:389.503867pt;}
.y37{bottom:389.968000pt;}
.y130{bottom:392.541200pt;}
.y5a{bottom:394.209333pt;}
.y224{bottom:394.459867pt;}
.y247{bottom:394.792800pt;}
.y10b{bottom:395.703200pt;}
.yba{bottom:397.765467pt;}
.yd5{bottom:400.485467pt;}
.y91{bottom:401.722133pt;}
.y1a0{bottom:402.209867pt;}
.yf{bottom:402.674800pt;}
.y155{bottom:402.998533pt;}
.y17c{bottom:404.685200pt;}
.yb7{bottom:405.418800pt;}
.y1e4{bottom:406.891867pt;}
.y36{bottom:407.808000pt;}
.y12f{bottom:411.171200pt;}
.y246{bottom:412.128800pt;}
.y1c4{bottom:412.731733pt;}
.yb9{bottom:413.058800pt;}
.y10a{bottom:414.183200pt;}
.y59{bottom:414.618000pt;}
.y203{bottom:416.271867pt;}
.yd4{bottom:418.486800pt;}
.y7d{bottom:419.527467pt;}
.y19f{bottom:420.316533pt;}
.y223{bottom:420.751867pt;}
.ye{bottom:420.808133pt;}
.y154{bottom:421.153200pt;}
.y17b{bottom:422.763200pt;}
.y90{bottom:423.052133pt;}
.y35{bottom:425.648000pt;}
.y1e3{bottom:425.973867pt;}
.yb8{bottom:428.352133pt;}
.y245{bottom:429.464800pt;}
.y12e{bottom:429.801200pt;}
.y1c3{bottom:431.687733pt;}
.y109{bottom:432.675200pt;}
.y58{bottom:435.026667pt;}
.y202{bottom:435.479867pt;}
.yd3{bottom:436.488133pt;}
.y19e{bottom:438.423200pt;}
.y153{bottom:439.307867pt;}
.y222{bottom:439.483867pt;}
.y17a{bottom:440.841200pt;}
.y34{bottom:443.488000pt;}
.yb6{bottom:443.645467pt;}
.y244{bottom:446.800800pt;}
.y12d{bottom:448.431200pt;}
.yd{bottom:450.274800pt;}
.y108{bottom:451.131200pt;}
.y1e2{bottom:452.615867pt;}
.y57{bottom:455.435333pt;}
.y152{bottom:457.462533pt;}
.y1c2{bottom:458.203733pt;}
.y221{bottom:458.215867pt;}
.y179{bottom:458.919200pt;}
.yb5{bottom:458.938800pt;}
.y33{bottom:461.328000pt;}
.y201{bottom:462.247867pt;}
.y243{bottom:464.136800pt;}
.y12c{bottom:467.061200pt;}
.y107{bottom:469.623200pt;}
.y1e1{bottom:471.697867pt;}
.yd2{bottom:473.392533pt;}
.y19d{bottom:475.422667pt;}
.y151{bottom:475.617200pt;}
.y56{bottom:475.844000pt;}
.y178{bottom:476.997200pt;}
.y1c1{bottom:477.159733pt;}
.y8f{bottom:478.386533pt;}
.y32{bottom:479.168000pt;}
.y200{bottom:481.455867pt;}
.y242{bottom:481.472800pt;}
.y220{bottom:484.507867pt;}
.y12b{bottom:485.691200pt;}
.y106{bottom:488.115200pt;}
.yb4{bottom:489.525467pt;}
.y1e0{bottom:490.779867pt;}
.y150{bottom:493.771867pt;}
.yd1{bottom:494.722533pt;}
.y177{bottom:495.075200pt;}
.y1c0{bottom:496.115733pt;}
.y55{bottom:496.252667pt;}
.y8e{bottom:496.387867pt;}
.y31{bottom:497.008000pt;}
.y241{bottom:498.808800pt;}
.yc{bottom:502.431733pt;}
.y21f{bottom:503.239867pt;}
.y12a{bottom:504.321200pt;}
.yb3{bottom:504.818800pt;}
.y105{bottom:506.607200pt;}
.y1ff{bottom:508.223867pt;}
.y1df{bottom:509.861867pt;}
.y14f{bottom:511.926533pt;}
.y176{bottom:513.153200pt;}
.y8d{bottom:514.389200pt;}
.y30{bottom:514.848000pt;}
.y1bf{bottom:515.071733pt;}
.yd0{bottom:516.052533pt;}
.y240{bottom:516.144800pt;}
.y54{bottom:516.661333pt;}
.yb2{bottom:520.112133pt;}
.y129{bottom:522.951200pt;}
.y104{bottom:525.099200pt;}
.yb{bottom:527.221067pt;}
.y1fe{bottom:527.431867pt;}
.yae{bottom:527.765467pt;}
.y21e{bottom:529.531867pt;}
.y14e{bottom:530.081200pt;}
.y19c{bottom:530.771200pt;}
.y175{bottom:531.231200pt;}
.y8c{bottom:532.390533pt;}
.y2f{bottom:532.688000pt;}
.y23f{bottom:533.480800pt;}
.y1be{bottom:534.027733pt;}
.yb1{bottom:535.405467pt;}
.y1de{bottom:536.503867pt;}
.y53{bottom:537.070000pt;}
.y128{bottom:541.581200pt;}
.y103{bottom:543.591200pt;}
.y14d{bottom:548.235867pt;}
.y21d{bottom:548.263867pt;}
.y19b{bottom:548.879867pt;}
.y174{bottom:549.309200pt;}
.y8b{bottom:550.391867pt;}
.y2e{bottom:550.528000pt;}
.yb0{bottom:550.698800pt;}
.y23e{bottom:550.816800pt;}
.ya{bottom:552.010400pt;}
.y1bd{bottom:552.983733pt;}
.y1fd{bottom:554.199867pt;}
.y1dd{bottom:555.585867pt;}
.y52{bottom:557.478667pt;}
.y127{bottom:560.211200pt;}
.y102{bottom:562.005200pt;}
.yaf{bottom:565.992133pt;}
.y14c{bottom:566.390533pt;}
.y19a{bottom:566.988533pt;}
.y173{bottom:567.387200pt;}
.y23d{bottom:568.152800pt;}
.y2d{bottom:568.368000pt;}
.y8a{bottom:568.393200pt;}
.y1bc{bottom:571.939733pt;}
.y1fc{bottom:573.407867pt;}
.y21c{bottom:574.555867pt;}
.y51{bottom:577.887333pt;}
.y126{bottom:578.841200pt;}
.y101{bottom:580.497200pt;}
.yad{bottom:581.978800pt;}
.y1dc{bottom:582.227867pt;}
.y14b{bottom:584.545200pt;}
.y199{bottom:585.097200pt;}
.y172{bottom:585.465200pt;}
.y23c{bottom:585.488800pt;}
.y2c{bottom:586.208000pt;}
.y89{bottom:586.394533pt;}
.y1fb{bottom:592.615867pt;}
.y21b{bottom:593.287867pt;}
.y9{bottom:595.690133pt;}
.y125{bottom:597.471200pt;}
.yac{bottom:597.952133pt;}
.y50{bottom:598.296000pt;}
.y1bb{bottom:598.455733pt;}
.y100{bottom:598.989200pt;}
.y1db{bottom:601.309867pt;}
.y14a{bottom:602.699867pt;}
.y23b{bottom:602.824800pt;}
.y198{bottom:603.205867pt;}
.y171{bottom:603.543200pt;}
.y2b{bottom:604.048000pt;}
.y88{bottom:604.395867pt;}
.ya9{bottom:606.285467pt;}
.y21a{bottom:612.019867pt;}
.yab{bottom:613.925467pt;}
.y124{bottom:616.101200pt;}
.y1ba{bottom:617.411733pt;}
.yff{bottom:617.481200pt;}
.y4f{bottom:618.704667pt;}
.y1fa{bottom:619.383867pt;}
.y23a{bottom:620.160800pt;}
.y149{bottom:620.854533pt;}
.y197{bottom:621.314533pt;}
.y170{bottom:621.621200pt;}
.y2a{bottom:621.888000pt;}
.y87{bottom:622.397200pt;}
.y8{bottom:624.490133pt;}
.y1da{bottom:627.951867pt;}
.yaa{bottom:630.592133pt;}
.y219{bottom:630.751867pt;}
.y123{bottom:634.731200pt;}
.yfe{bottom:635.973200pt;}
.y1b9{bottom:636.367733pt;}
.y239{bottom:637.491467pt;}
.y148{bottom:639.009200pt;}
.y4e{bottom:639.113333pt;}
.y196{bottom:639.423200pt;}
.y16f{bottom:639.699200pt;}
.y29{bottom:639.731333pt;}
.y86{bottom:640.398533pt;}
.y1f9{bottom:646.151867pt;}
.y1d9{bottom:647.033867pt;}
.ya8{bottom:647.258800pt;}
.y7{bottom:653.290133pt;}
.y122{bottom:653.361200pt;}
.yfd{bottom:654.465200pt;}
.y238{bottom:654.827467pt;}
.ycf{bottom:655.337467pt;}
.y218{bottom:657.043867pt;}
.y147{bottom:657.163867pt;}
.y195{bottom:657.531867pt;}
.y28{bottom:657.571333pt;}
.y16e{bottom:657.777200pt;}
.y85{bottom:658.399867pt;}
.y4d{bottom:659.522000pt;}
.y1b8{bottom:662.883733pt;}
.ya7{bottom:663.232133pt;}
.y1f8{bottom:665.359867pt;}
.y1d8{bottom:666.115867pt;}
.ya4{bottom:670.192133pt;}
.y121{bottom:671.991200pt;}
.y237{bottom:672.163467pt;}
.yfc{bottom:672.957200pt;}
.yce{bottom:673.337467pt;}
.y146{bottom:675.318533pt;}
.y27{bottom:675.411333pt;}
.y194{bottom:675.640533pt;}
.y217{bottom:675.775867pt;}
.y16d{bottom:675.855200pt;}
.y84{bottom:676.391867pt;}
.ya6{bottom:678.525467pt;}
.y4c{bottom:679.930667pt;}
.y6{bottom:682.090133pt;}
.y120{bottom:690.621200pt;}
.yfb{bottom:691.449200pt;}
.y1f7{bottom:692.127867pt;}
.y1d7{bottom:692.757867pt;}
.y26{bottom:693.251333pt;}
.y145{bottom:693.473200pt;}
.y193{bottom:693.749200pt;}
.ya5{bottom:693.818800pt;}
.y16c{bottom:693.933200pt;}
.y83{bottom:694.393200pt;}
.y216{bottom:694.507867pt;}
.y4b{bottom:700.357867pt;}
.y236{bottom:700.835333pt;}
.y1b7{bottom:708.931333pt;}
.y11f{bottom:709.251200pt;}
.yfa{bottom:709.941200pt;}
.ya3{bottom:710.925467pt;}
.y25{bottom:711.091333pt;}
.y1f6{bottom:711.335867pt;}
.y144{bottom:711.627867pt;}
.y1d6{bottom:711.839867pt;}
.y192{bottom:711.857867pt;}
.y16b{bottom:712.011200pt;}
.y82{bottom:712.394533pt;}
.y4a{bottom:720.766533pt;}
.y215{bottom:720.799867pt;}
.ya0{bottom:727.592133pt;}
.y11e{bottom:727.881200pt;}
.y1b6{bottom:727.891333pt;}
.yf9{bottom:728.433200pt;}
.ya2{bottom:728.725467pt;}
.y143{bottom:729.782533pt;}
.y191{bottom:729.966533pt;}
.y16a{bottom:730.089200pt;}
.y81{bottom:730.395867pt;}
.y5{bottom:737.332400pt;}
.y1f5{bottom:738.103867pt;}
.y1d5{bottom:738.481867pt;}
.y214{bottom:739.531867pt;}
.y24{bottom:740.264667pt;}
.y49{bottom:741.175200pt;}
.ya1{bottom:745.392133pt;}
.y11d{bottom:746.511200pt;}
.y1b5{bottom:746.851333pt;}
.yf8{bottom:746.925200pt;}
.y142{bottom:747.937200pt;}
.y190{bottom:748.075200pt;}
.y169{bottom:748.167200pt;}
.y80{bottom:748.397200pt;}
.y235{bottom:752.173733pt;}
.y4{bottom:756.799067pt;}
.y1f4{bottom:757.311867pt;}
.y1d4{bottom:757.563867pt;}
.y213{bottom:758.263867pt;}
.y48{bottom:761.583867pt;}
.y9f{bottom:762.058800pt;}
.y11c{bottom:765.141200pt;}
.yf7{bottom:765.417200pt;}
.y1b4{bottom:765.811333pt;}
.y141{bottom:766.091867pt;}
.y18f{bottom:766.183867pt;}
.y168{bottom:766.245200pt;}
.y7f{bottom:766.398533pt;}
.y234{bottom:776.179067pt;}
.y9e{bottom:778.725467pt;}
.y47{bottom:781.992533pt;}
.y11b{bottom:783.771200pt;}
.y3{bottom:783.825733pt;}
.yf6{bottom:783.909200pt;}
.y1f3{bottom:784.079867pt;}
.y1d3{bottom:784.205867pt;}
.y140{bottom:784.246533pt;}
.y18e{bottom:784.292533pt;}
.y167{bottom:784.323200pt;}
.y7e{bottom:784.399867pt;}
.y212{bottom:784.555867pt;}
.y23{bottom:784.558000pt;}
.y1b3{bottom:784.771333pt;}
.y233{bottom:800.184400pt;}
.y46{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y22{bottom:803.727600pt;}
.y1b2{bottom:803.731333pt;}
.y21{bottom:842.834667pt;}
.y45{bottom:858.834667pt;}
.he{height:19.307320pt;}
.hb{height:36.107146pt;}
.h7{height:41.562500pt;}
.h10{height:46.067708pt;}
.hc{height:46.757812pt;}
.h1e{height:49.322917pt;}
.h16{height:51.943525pt;}
.h4{height:51.953125pt;}
.h8{height:51.968058pt;}
.h12{height:52.796875pt;}
.h3{height:54.550781pt;}
.h15{height:55.375104pt;}
.h14{height:55.395371pt;}
.h1c{height:57.148438pt;}
.h1d{height:57.169771pt;}
.ha{height:59.746094pt;}
.h1b{height:59.749294pt;}
.hd{height:59.756760pt;}
.hf{height:59.783427pt;}
.h17{height:59.794094pt;}
.h1a{height:59.808494pt;}
.h19{height:59.890094pt;}
.h18{height:60.058094pt;}
.h2{height:64.941406pt;}
.h9{height:70.136719pt;}
.h6{height:72.734375pt;}
.h13{height:83.953125pt;}
.h5{height:93.515625pt;}
.h11{height:113.126458pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:73.301600pt;}
.x6{left:74.388133pt;}
.x1{left:75.590533pt;}
.xa{left:80.540400pt;}
.x7{left:93.359333pt;}
.x5{left:94.547200pt;}
.x1d{left:104.912933pt;}
.x16{left:107.096533pt;}
.x18{left:111.206267pt;}
.x19{left:114.726267pt;}
.x1e{left:119.099600pt;}
.x1f{left:123.112933pt;}
.x22{left:125.470533pt;}
.x21{left:127.257200pt;}
.x1b{left:128.246267pt;}
.x20{left:131.048533pt;}
.x1c{left:139.472933pt;}
.x17{left:141.872933pt;}
.x14{left:144.780400pt;}
.x15{left:150.647067pt;}
.x13{left:154.113733pt;}
.xc{left:158.313733pt;}
.xe{left:159.673733pt;}
.x8{left:189.034667pt;}
.x3{left:204.973067pt;}
.x4{left:206.101067pt;}
.x2{left:207.628000pt;}
.x12{left:240.073733pt;}
.x1a{left:264.112933pt;}
.xb{left:301.167067pt;}
.x11{left:316.180400pt;}
.xf{left:319.713733pt;}
.xd{left:330.100400pt;}
.x10{left:331.727067pt;}
}




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