
    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_990fbd38d6d1244087b40eff.woff2')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_286935a4426cf712118f2fb7.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7c71a3a2fc590c254b660071.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_89b8c7b844f34216064715b1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ed773ca7a0337f0cbdd5b664.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_77706ec1338967c549590e05.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f7a9a41082677c6f6b281666.woff2')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_bdc1c0c86c844ca030a36044.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.854980;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_68a77cdb5b219882446efce6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.854980;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_a374a9f1c842d76990d08713.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.875488;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);}
.v3{vertical-align:-25.044880px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:31.875289px;}
.v1{vertical-align:52.366549px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:68.135741px;}
.ls2{letter-spacing:86.135741px;}
.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;}
}
.ws4{word-spacing:-41.999999px;}
.ws2f{word-spacing:-40.605468px;}
.ws3a{word-spacing:-36.005859px;}
.ws59{word-spacing:-36.000000px;}
.wse{word-spacing:-33.837890px;}
.wsb{word-spacing:-33.000001px;}
.ws19{word-spacing:-29.999999px;}
.ws35{word-spacing:-22.605502px;}
.ws2e{word-spacing:-22.605484px;}
.ws31{word-spacing:-22.605480px;}
.ws32{word-spacing:-22.605472px;}
.ws2b{word-spacing:-22.605469px;}
.ws36{word-spacing:-22.605460px;}
.ws2d{word-spacing:-22.605458px;}
.ws30{word-spacing:-22.605447px;}
.ws2{word-spacing:-21.045564px;}
.ws1{word-spacing:-21.037784px;}
.ws0{word-spacing:-21.035152px;}
.ws3{word-spacing:-21.023435px;}
.ws6{word-spacing:-20.700000px;}
.ws8{word-spacing:-19.800000px;}
.ws62{word-spacing:-18.906027px;}
.ws61{word-spacing:-18.906002px;}
.ws64{word-spacing:-18.019919px;}
.ws63{word-spacing:-18.019889px;}
.ws5b{word-spacing:-18.000037px;}
.ws60{word-spacing:-18.000033px;}
.ws5d{word-spacing:-18.000022px;}
.ws4c{word-spacing:-18.000014px;}
.ws56{word-spacing:-18.000013px;}
.ws5c{word-spacing:-18.000012px;}
.ws57{word-spacing:-18.000010px;}
.ws38{word-spacing:-18.000002px;}
.ws1f{word-spacing:-18.000000px;}
.ws44{word-spacing:-17.999999px;}
.ws2a{word-spacing:-17.999998px;}
.ws4e{word-spacing:-17.999996px;}
.ws29{word-spacing:-17.999988px;}
.ws5a{word-spacing:-17.999987px;}
.ws50{word-spacing:-17.999977px;}
.ws58{word-spacing:-17.999967px;}
.wsa{word-spacing:-16.535155px;}
.ws9{word-spacing:-16.532537px;}
.ws13{word-spacing:-15.018859px;}
.wsc{word-spacing:-15.016224px;}
.wsd{word-spacing:-15.000000px;}
.ws65{word-spacing:-1.800317px;}
.ws4f{word-spacing:-1.800314px;}
.ws66{word-spacing:-1.800292px;}
.ws5{word-spacing:-0.032522px;}
.ws69{word-spacing:-0.028080px;}
.ws6a{word-spacing:-0.028063px;}
.ws67{word-spacing:-0.028060px;}
.ws68{word-spacing:-0.028059px;}
.ws7{word-spacing:-0.024729px;}
.ws1b{word-spacing:-0.024113px;}
.wsf{word-spacing:-0.022758px;}
.ws1c{word-spacing:-0.021491px;}
.ws12{word-spacing:-0.017671px;}
.ws16{word-spacing:-0.017657px;}
.ws15{word-spacing:-0.017630px;}
.ws17{word-spacing:-0.017626px;}
.ws14{word-spacing:-0.017585px;}
.ws10{word-spacing:-0.017579px;}
.ws11{word-spacing:-0.017405px;}
.ws1a{word-spacing:-0.016254px;}
.ws18{word-spacing:-0.014946px;}
.ws1d{word-spacing:-0.013661px;}
.ws33{word-spacing:-0.000034px;}
.ws5f{word-spacing:-0.000024px;}
.ws24{word-spacing:-0.000023px;}
.ws5e{word-spacing:-0.000014px;}
.ws23{word-spacing:-0.000012px;}
.ws27{word-spacing:-0.000011px;}
.ws26{word-spacing:-0.000008px;}
.ws37{word-spacing:-0.000005px;}
.ws25{word-spacing:-0.000004px;}
.ws21{word-spacing:-0.000002px;}
.ws4d{word-spacing:-0.000001px;}
.ws1e{word-spacing:0.000000px;}
.ws22{word-spacing:0.000002px;}
.ws28{word-spacing:0.000006px;}
.ws3d{word-spacing:0.000009px;}
.ws45{word-spacing:0.000011px;}
.ws2c{word-spacing:0.000023px;}
.ws34{word-spacing:0.000034px;}
.ws48{word-spacing:32.062499px;}
.ws3c{word-spacing:77.062499px;}
.ws55{word-spacing:86.062499px;}
.ws3e{word-spacing:95.062499px;}
.ws47{word-spacing:156.023438px;}
.ws4b{word-spacing:174.023438px;}
.ws53{word-spacing:184.007813px;}
.ws3b{word-spacing:201.023438px;}
.ws54{word-spacing:210.023438px;}
.ws46{word-spacing:219.023438px;}
.ws49{word-spacing:236.039062px;}
.ws52{word-spacing:256.042968px;}
.ws40{word-spacing:263.953125px;}
.ws43{word-spacing:279.914062px;}
.ws51{word-spacing:287.894532px;}
.ws3f{word-spacing:335.953125px;}
.ws4a{word-spacing:361.441407px;}
.ws41{word-spacing:380.039062px;}
.ws42{word-spacing:480.023438px;}
.ws39{word-spacing:531.984375px;}
.ws20{word-spacing:2225.014627px;}
._1b{margin-left:-9.281228px;}
._2{margin-left:-7.851668px;}
._1a{margin-left:-6.609375px;}
._1{margin-left:-5.151624px;}
._3{margin-left:-3.513216px;}
._0{margin-left:-1.738712px;}
._1c{width:1.300790px;}
._1d{width:2.563999px;}
._3d{width:4.410588px;}
._5{width:33.616060px;}
._4{width:42.104673px;}
._3a{width:47.039066px;}
._31{width:61.099181px;}
._8{width:92.979905px;}
._35{width:108.135839px;}
._2b{width:117.262152px;}
._2a{width:125.681181px;}
._22{width:130.007811px;}
._1e{width:131.941407px;}
._38{width:136.879340px;}
._21{width:145.968748px;}
._20{width:158.062498px;}
._29{width:188.578123px;}
._25{width:198.105467px;}
._2f{width:211.499998px;}
._34{width:215.613281px;}
._27{width:222.082030px;}
._26{width:225.949217px;}
._3c{width:233.894520px;}
._1f{width:241.661651px;}
._37{width:243.500865px;}
._28{width:249.925780px;}
._23{width:253.862834px;}
._2e{width:265.464842px;}
._36{width:269.648438px;}
._39{width:277.768012px;}
._3b{width:284.687708px;}
._24{width:305.929687px;}
._30{width:363.883241px;}
._2c{width:379.617188px;}
._f{width:397.253012px;}
._32{width:403.593750px;}
._2d{width:407.460938px;}
._17{width:429.245199px;}
._33{width:431.437500px;}
._e{width:905.225669px;}
._12{width:979.323220px;}
._19{width:983.342856px;}
._15{width:1187.272463px;}
._c{width:1559.401345px;}
._13{width:1565.448218px;}
._b{width:1589.249002px;}
._14{width:1633.124002px;}
._a{width:1643.178697px;}
._11{width:1680.322506px;}
._9{width:1711.206033px;}
._18{width:1732.088557px;}
._d{width:1829.155252px;}
._6{width:1832.881816px;}
._16{width:1851.022441px;}
._10{width:1860.252193px;}
._7{width:1864.330313px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:39.600001px;}
.fs2{font-size:50.399999px;}
.fs5{font-size:59.999999px;}
.fs4{font-size:66.000002px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:82.800000px;}
.fs0{font-size:83.999997px;}
.y0{bottom:0.000000px;}
.y6b{bottom:3.893548px;}
.y6e{bottom:3.893552px;}
.y40{bottom:3.893555px;}
.y74{bottom:3.893566px;}
.y6a{bottom:24.591793px;}
.y65{bottom:24.591797px;}
.y8f{bottom:36.369141px;}
.y56{bottom:36.369873px;}
.y1b{bottom:36.370239px;}
.y35{bottom:36.370605px;}
.y5e{bottom:36.370606px;}
.y15f{bottom:36.375000px;}
.y69{bottom:45.290038px;}
.y190{bottom:111.676762px;}
.y5c{bottom:117.396248px;}
.y179{bottom:117.527348px;}
.y1bf{bottom:118.423822px;}
.y19{bottom:125.189028px;}
.y87{bottom:127.089846px;}
.yd5{bottom:130.394538px;}
.y1db{bottom:130.825934px;}
.y88{bottom:137.440428px;}
.y141{bottom:137.777348px;}
.yf1{bottom:138.196293px;}
.y133{bottom:138.999023px;}
.y1f5{bottom:139.245854px;}
.y158{bottom:142.664062px;}
.y1af{bottom:145.423822px;}
.y1b0{bottom:146.326177px;}
.ybd{bottom:146.329102px;}
.ya6{bottom:149.027348px;}
.y18{bottom:151.061823px;}
.y18f{bottom:153.073237px;}
.y5b{bottom:158.792723px;}
.y178{bottom:158.923822px;}
.y1be{bottom:159.820312px;}
.yd3{bottom:161.557611px;}
.y1da{bottom:170.786864px;}
.yd4{bottom:171.905268px;}
.y120{bottom:173.967773px;}
.y17{bottom:176.934633px;}
.yf0{bottom:177.571293px;}
.y86{bottom:177.826173px;}
.y15d{bottom:179.173823px;}
.y1f4{bottom:179.206784px;}
.y140{bottom:180.395512px;}
.y132{bottom:181.617187px;}
.y157{bottom:184.060552px;}
.y1ae{bottom:186.820312px;}
.y198{bottom:187.722652px;}
.ybc{bottom:187.725592px;}
.ya5{bottom:190.423823px;}
.y18e{bottom:194.469727px;}
.y5a{bottom:200.189213px;}
.y177{bottom:200.320312px;}
.y1bd{bottom:201.216803px;}
.y16{bottom:202.807429px;}
.y1d9{bottom:210.753659px;}
.y11f{bottom:215.364262px;}
.yef{bottom:216.946293px;}
.y85{bottom:217.201173px;}
.y1f3{bottom:219.167729px;}
.y13f{bottom:221.791988px;}
.y146{bottom:223.013678px;}
.y156{bottom:225.457028px;}
.y1ad{bottom:228.216802px;}
.yd2{bottom:228.670898px;}
.y197{bottom:229.119142px;}
.ybb{bottom:229.122067px;}
.ya4{bottom:231.820312px;}
.y18d{bottom:235.866217px;}
.y59{bottom:241.585687px;}
.y176{bottom:241.716802px;}
.y1bc{bottom:242.613278px;}
.y15{bottom:246.680239px;}
.y83{bottom:247.236321px;}
.y1d8{bottom:250.714604px;}
.y55{bottom:252.607178px;}
.yee{bottom:256.321293px;}
.y84{bottom:257.586918px;}
.y11e{bottom:257.982428px;}
.y1f2{bottom:259.236323px;}
.y13e{bottom:263.188478px;}
.y131{bottom:264.410152px;}
.y155{bottom:266.853517px;}
.y1ac{bottom:269.613277px;}
.yd1{bottom:270.067387px;}
.y196{bottom:270.515617px;}
.yba{bottom:270.518558px;}
.ya3{bottom:273.216802px;}
.y18c{bottom:277.262693px;}
.y51{bottom:280.203742px;}
.y58{bottom:282.982178px;}
.y175{bottom:283.113278px;}
.y81{bottom:288.632811px;}
.y14{bottom:290.553033px;}
.y1d7{bottom:290.675534px;}
.y1bb{bottom:291.656242px;}
.yed{bottom:295.696293px;}
.y82{bottom:298.983393px;}
.y1f1{bottom:300.530999px;}
.y15c{bottom:304.584967px;}
.y130{bottom:305.806642px;}
.y154{bottom:308.249992px;}
.y1ab{bottom:311.009768px;}
.yd0{bottom:311.463863px;}
.y195{bottom:311.912107px;}
.yb9{bottom:311.915032px;}
.ya2{bottom:314.613277px;}
.y13{bottom:316.425843px;}
.y18b{bottom:318.659182px;}
.y50{bottom:321.600217px;}
.y57{bottom:324.378667px;}
.y174{bottom:324.509768px;}
.y61{bottom:325.605473px;}
.y1d6{bottom:330.636479px;}
.yec{bottom:335.071293px;}
.y80{bottom:339.369138px;}
.y1f0{bottom:340.491944px;}
.y11d{bottom:340.775392px;}
.y12{bottom:342.298638px;}
.y15b{bottom:345.981443px;}
.y12f{bottom:347.203117px;}
.y145{bottom:348.424807px;}
.y153{bottom:349.646483px;}
.ycf{bottom:352.860353px;}
.y194{bottom:353.308598px;}
.yb8{bottom:353.311523px;}
.ya1{bottom:356.009767px;}
.y18a{bottom:360.055657px;}
.y1ba{bottom:360.058597px;}
.y4f{bottom:362.996707px;}
.y173{bottom:365.906242px;}
.y60{bottom:367.001947px;}
.y11{bottom:368.171448px;}
.y1d5{bottom:370.597409px;}
.yeb{bottom:374.446293px;}
.y7f{bottom:378.744138px;}
.y1ef{bottom:380.452874px;}
.y11c{bottom:382.171867px;}
.y10d{bottom:383.897468px;}
.y12e{bottom:388.599607px;}
.y144{bottom:389.821283px;}
.y152{bottom:391.042973px;}
.y10{bottom:394.044243px;}
.yce{bottom:394.256842px;}
.y193{bottom:394.705072px;}
.yb7{bottom:394.708012px;}
.ya0{bottom:397.406242px;}
.y1b9{bottom:401.449223px;}
.y189{bottom:401.452148px;}
.y172{bottom:407.302733px;}
.y1d4{bottom:410.564204px;}
.yea{bottom:413.821293px;}
.y4e{bottom:414.662838px;}
.y7e{bottom:418.119138px;}
.yf{bottom:419.917054px;}
.y1ee{bottom:420.413819px;}
.y11b{bottom:424.790033px;}
.y10c{bottom:425.293943px;}
.y1aa{bottom:428.452147px;}
.y149{bottom:429.996098px;}
.y12d{bottom:431.217773px;}
.y151{bottom:432.439447px;}
.ycd{bottom:435.653318px;}
.y192{bottom:436.101562px;}
.yb6{bottom:436.104488px;}
.y4d{bottom:437.611083px;}
.y9f{bottom:438.802733px;}
.y1b8{bottom:442.851562px;}
.y171{bottom:448.699223px;}
.y188{bottom:450.498052px;}
.y1d3{bottom:450.525149px;}
.ye9{bottom:453.196293px;}
.y7d{bottom:457.494138px;}
.y4c{bottom:459.434328px;}
.y1ed{bottom:460.380614px;}
.ye{bottom:463.789848px;}
.y10b{bottom:466.690433px;}
.y1a9{bottom:469.848637px;}
.y15a{bottom:471.392573px;}
.y13d{bottom:472.614262px;}
.yfd{bottom:474.984367px;}
.y150{bottom:475.057613px;}
.ycc{bottom:477.049807px;}
.y191{bottom:477.498052px;}
.yb5{bottom:477.500977px;}
.y9e{bottom:480.199222px;}
.y4b{bottom:481.257573px;}
.y1b7{bottom:484.242187px;}
.yd{bottom:489.662703px;}
.y170{bottom:490.095697px;}
.y1d2{bottom:490.486079px;}
.ye8{bottom:492.571293px;}
.y7c{bottom:496.869138px;}
.y1ec{bottom:500.335694px;}
.y4a{bottom:503.080818px;}
.y11a{bottom:507.583012px;}
.y10a{bottom:508.086908px;}
.y1a8{bottom:511.245112px;}
.y12c{bottom:514.010738px;}
.yc{bottom:515.535513px;}
.y14f{bottom:516.454103px;}
.ycb{bottom:518.446283px;}
.y187{bottom:518.894527px;}
.yb4{bottom:518.897467px;}
.y9d{bottom:521.595697px;}
.y49{bottom:524.904048px;}
.y1b6{bottom:525.644527px;}
.y1d1{bottom:527.465332px;}
.y16f{bottom:531.492188px;}
.ye7{bottom:531.946293px;}
.yfc{bottom:535.989258px;}
.y7b{bottom:536.244138px;}
.y1eb{bottom:540.302489px;}
.yb{bottom:541.408308px;}
.y48{bottom:546.727293px;}
.y119{bottom:548.979488px;}
.y109{bottom:549.483398px;}
.y1a7{bottom:552.641602px;}
.y12b{bottom:555.407228px;}
.y13c{bottom:556.628902px;}
.y14e{bottom:557.850592px;}
.yca{bottom:559.842773px;}
.y33{bottom:560.285708px;}
.y186{bottom:560.291017px;}
.yb3{bottom:560.293942px;}
.y9c{bottom:562.992188px;}
.y1d0{bottom:564.431399px;}
.y79{bottom:566.279301px;}
.y1b5{bottom:567.038092px;}
.ya{bottom:567.281119px;}
.y47{bottom:568.550538px;}
.ye6{bottom:571.321293px;}
.y16e{bottom:572.888677px;}
.yfb{bottom:575.364258px;}
.y7a{bottom:576.629883px;}
.y1ea{bottom:580.269284px;}
.y32{bottom:585.483952px;}
.y108{bottom:590.879887px;}
.y118{bottom:591.597652px;}
.y46{bottom:592.399653px;}
.y1a6{bottom:594.038092px;}
.y45{bottom:594.425538px;}
.y159{bottom:596.803718px;}
.y12a{bottom:598.025392px;}
.y14d{bottom:599.247068px;}
.yc9{bottom:601.239262px;}
.y185{bottom:601.687492px;}
.yb2{bottom:601.690432px;}
.y1cf{bottom:604.398194px;}
.y1b4{bottom:608.434567px;}
.y31{bottom:610.682182px;}
.ye5{bottom:610.696293px;}
.y9{bottom:612.340798px;}
.y16d{bottom:614.285152px;}
.yfa{bottom:614.739258px;}
.y44{bottom:616.248783px;}
.y78{bottom:617.015628px;}
.y1e9{bottom:620.224364px;}
.y1a5{bottom:635.434567px;}
.y30{bottom:635.880427px;}
.y43{bottom:638.072028px;}
.y13b{bottom:639.421867px;}
.y107{bottom:639.928717px;}
.y14c{bottom:640.643558px;}
.y8{bottom:640.800882px;}
.yc8{bottom:642.635738px;}
.y184{bottom:643.083982px;}
.yb1{bottom:643.086908px;}
.y1ce{bottom:644.359124px;}
.y9b{bottom:645.785152px;}
.y1b3{bottom:649.831058px;}
.ye4{bottom:650.071293px;}
.yf9{bottom:654.114258px;}
.y16c{bottom:655.681642px;}
.y77{bottom:656.390628px;}
.y42{bottom:659.895258px;}
.y1e8{bottom:660.191159px;}
.y2f{bottom:661.078673px;}
.y117{bottom:674.390618px;}
.y1a4{bottom:676.831057px;}
.y129{bottom:680.818358px;}
.y41{bottom:681.718503px;}
.y13a{bottom:682.040033px;}
.yc7{bottom:684.032228px;}
.y1cd{bottom:684.320069px;}
.y183{bottom:684.480473px;}
.yb0{bottom:684.483398px;}
.y2e{bottom:686.276918px;}
.y9a{bottom:687.181642px;}
.ye3{bottom:689.446293px;}
.y1b2{bottom:691.227533px;}
.yf8{bottom:693.489258px;}
.y76{bottom:695.765628px;}
.y16b{bottom:697.078118px;}
.y1e7{bottom:700.152104px;}
.y3f{bottom:704.666748px;}
.y106{bottom:708.325192px;}
.y2d{bottom:711.475163px;}
.y116{bottom:715.787107px;}
.y1a3{bottom:718.227532px;}
.y128{bottom:722.214848px;}
.y139{bottom:723.436522px;}
.y1cc{bottom:724.280999px;}
.y14b{bottom:724.658198px;}
.yc6{bottom:725.428717px;}
.y73{bottom:725.800776px;}
.y182{bottom:725.876948px;}
.yaf{bottom:725.879887px;}
.y99{bottom:728.578118px;}
.ye2{bottom:728.821293px;}
.yf7{bottom:732.864258px;}
.y75{bottom:736.151373px;}
.y2c{bottom:736.673408px;}
.y16a{bottom:738.474607px;}
.y1e6{bottom:740.113034px;}
.y1b1{bottom:740.273437px;}
.y105{bottom:749.721683px;}
.y115{bottom:758.405273px;}
.y1a2{bottom:759.624022px;}
.y2b{bottom:761.871638px;}
.y127{bottom:763.611322px;}
.y1cb{bottom:764.247809px;}
.y138{bottom:764.833012px;}
.y14a{bottom:766.054688px;}
.yc5{bottom:766.825192px;}
.y72{bottom:767.197266px;}
.y181{bottom:767.273437px;}
.yae{bottom:767.276363px;}
.ye1{bottom:768.196293px;}
.y98{bottom:769.974607px;}
.yf6{bottom:772.239258px;}
.y3e{bottom:775.593382px;}
.y71{bottom:777.547848px;}
.y169{bottom:779.871098px;}
.y1e5{bottom:780.073979px;}
.y2a{bottom:787.069882px;}
.y104{bottom:791.118158px;}
.y1a1{bottom:801.020512px;}
.y1ca{bottom:804.208739px;}
.y148{bottom:805.007812px;}
.y126{bottom:806.229488px;}
.y3d{bottom:806.640743px;}
.y137{bottom:807.451178px;}
.ye0{bottom:807.571293px;}
.yc4{bottom:808.221683px;}
.y180{bottom:808.669928px;}
.yad{bottom:808.672852px;}
.y97{bottom:811.371098px;}
.yf5{bottom:811.614258px;}
.y29{bottom:812.268127px;}
.y70{bottom:817.933593px;}
.y1e4{bottom:820.040774px;}
.y168{bottom:821.267572px;}
.y103{bottom:832.514648px;}
.y28{bottom:837.466373px;}
.ydf{bottom:837.606441px;}
.y114{bottom:841.198238px;}
.y1a0{bottom:842.416987px;}
.y1c9{bottom:844.169684px;}
.y143{bottom:847.625977px;}
.yde{bottom:847.957038px;}
.y136{bottom:848.847652px;}
.yc3{bottom:849.618158px;}
.y17f{bottom:850.066402px;}
.yac{bottom:850.069342px;}
.yf4{bottom:850.989258px;}
.y96{bottom:852.767572px;}
.y7{bottom:852.889867px;}
.y3c{bottom:855.688117px;}
.y6f{bottom:857.308593px;}
.y1e3{bottom:860.001704px;}
.y1f9{bottom:861.437249px;}
.y167{bottom:862.664062px;}
.y27{bottom:862.664617px;}
.y102{bottom:873.911137px;}
.y113{bottom:882.594727px;}
.y19f{bottom:883.813477px;}
.y1c8{bottom:884.136479px;}
.y6d{bottom:887.343756px;}
.y26{bottom:887.862847px;}
.ydd{bottom:888.342768px;}
.y125{bottom:889.022467px;}
.y135{bottom:890.244142px;}
.yf3{bottom:890.364258px;}
.yc2{bottom:891.014647px;}
.y17e{bottom:891.462892px;}
.yab{bottom:891.465817px;}
.y95{bottom:894.164062px;}
.y6c{bottom:897.694338px;}
.y1e2{bottom:899.962649px;}
.y1f8{bottom:901.398194px;}
.y166{bottom:904.060552px;}
.y6{bottom:907.331407px;}
.y25{bottom:913.061092px;}
.y3b{bottom:913.735478px;}
.y101{bottom:915.307613px;}
.ydc{bottom:918.377931px;}
.y1c7{bottom:924.097409px;}
.y19e{bottom:925.209967px;}
.y112{bottom:925.212892px;}
.ydb{bottom:928.728513px;}
.y68{bottom:928.740234px;}
.yf2{bottom:929.739258px;}
.y124{bottom:930.418942px;}
.y134{bottom:931.640617px;}
.yc1{bottom:932.411137px;}
.y17d{bottom:932.859367px;}
.yaa{bottom:932.862307px;}
.y94{bottom:935.560552px;}
.y24{bottom:938.259338px;}
.y1e1{bottom:939.929444px;}
.y1f7{bottom:941.359124px;}
.y165{bottom:945.457027px;}
.y67{bottom:949.438473px;}
.y1c2{bottom:953.109367px;}
.y23{bottom:963.457582px;}
.y1c6{bottom:964.160152px;}
.y100{bottom:964.353517px;}
.y19d{bottom:966.606442px;}
.y111{bottom:966.609367px;}
.yda{bottom:969.114258px;}
.y147{bottom:971.815433px;}
.y123{bottom:973.037108px;}
.yc0{bottom:973.807613px;}
.y3a{bottom:974.156621px;}
.y5{bottom:974.156816px;}
.y17c{bottom:974.255858px;}
.ya9{bottom:974.258783px;}
.y93{bottom:976.957027px;}
.y1e0{bottom:979.998052px;}
.y164{bottom:981.002929px;}
.y1f6{bottom:981.325934px;}
.y8e{bottom:983.748048px;}
.y22{bottom:988.655827px;}
.y19b{bottom:994.502929px;}
.y66{bottom:1000.174804px;}
.y1c5{bottom:1005.562500px;}
.y19c{bottom:1008.002929px;}
.y110{bottom:1008.005859px;}
.yd9{bottom:1008.489258px;}
.y39{bottom:1010.378540px;}
.y4{bottom:1010.378745px;}
.y8c{bottom:1013.783204px;}
.y21{bottom:1013.854065px;}
.y142{bottom:1014.433593px;}
.ybf{bottom:1015.204101px;}
.y17b{bottom:1015.652343px;}
.ya8{bottom:1015.655274px;}
.y92{bottom:1018.353516px;}
.y1df{bottom:1021.281006px;}
.y1c1{bottom:1021.500000px;}
.y8d{bottom:1024.133788px;}
.y64{bottom:1031.334961px;}
.yff{bottom:1032.750000px;}
.y20{bottom:1039.052307px;}
.y63{bottom:1041.685546px;}
.y38{bottom:1046.600463px;}
.y3{bottom:1046.600669px;}
.yd8{bottom:1047.864258px;}
.y1c4{bottom:1048.177734px;}
.y163{bottom:1049.399414px;}
.y10f{bottom:1049.402343px;}
.ybe{bottom:1050.749999px;}
.y122{bottom:1055.830078px;}
.y17a{bottom:1057.048828px;}
.ya7{bottom:1057.051758px;}
.y91{bottom:1059.750000px;}
.y1f{bottom:1059.750549px;}
.y1de{bottom:1061.247803px;}
.y19a{bottom:1062.899414px;}
.y1c0{bottom:1062.902343px;}
.y8b{bottom:1064.519532px;}
.yfe{bottom:1081.798828px;}
.y1e{bottom:1084.948791px;}
.yd7{bottom:1087.239258px;}
.y1c3{bottom:1090.792968px;}
.y162{bottom:1090.795899px;}
.y10e{bottom:1090.798828px;}
.y37{bottom:1091.822387px;}
.y2{bottom:1091.822594px;}
.y89{bottom:1094.554688px;}
.y121{bottom:1097.226562px;}
.y161{bottom:1098.445312px;}
.y62{bottom:1098.448242px;}
.y1dd{bottom:1101.214599px;}
.y199{bottom:1104.295899px;}
.y90{bottom:1108.798828px;}
.y1d{bottom:1110.147033px;}
.y8a{bottom:1115.252929px;}
.yd6{bottom:1126.614258px;}
.y1c{bottom:1135.345276px;}
.y36{bottom:1137.044312px;}
.y1{bottom:1137.044528px;}
.y160{bottom:1139.841797px;}
.y5f{bottom:1139.844726px;}
.y52{bottom:1139.845094px;}
.y54{bottom:1139.845460px;}
.y1dc{bottom:1141.169678px;}
.y15e{bottom:1156.646484px;}
.y5d{bottom:1156.649414px;}
.y34{bottom:1156.649781px;}
.y1a{bottom:1156.649964px;}
.y53{bottom:1156.650147px;}
.hf{height:20.698242px;}
.hc{height:21.823242px;}
.h3{height:27.495704px;}
.h15{height:39.990233px;}
.h6{height:40.664061px;}
.h10{height:41.396484px;}
.h5{height:41.689452px;}
.h14{height:43.989259px;}
.h4{height:45.826173px;}
.h9{height:48.796875px;}
.hb{height:49.042969px;}
.h12{height:49.992188px;}
.h8{height:50.027344px;}
.h1{height:56.929685px;}
.h11{height:62.094726px;}
.hd{height:106.349853px;}
.h7{height:106.350036px;}
.ha{height:106.350219px;}
.he{height:106.350586px;}
.h13{height:106.353516px;}
.h2{height:109.897994px;}
.h0{height:1263.000000px;}
.w4{width:41.625046px;}
.w6{width:74.250000px;}
.w7{width:79.875000px;}
.w9{width:112.499978px;}
.w3{width:127.125000px;}
.w5{width:200.249977px;}
.wa{width:236.250000px;}
.w2{width:294.749970px;}
.w8{width:324.000090px;}
.wb{width:329.625090px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x6{left:1.125000px;}
.x14{left:4.126465px;}
.x3c{left:5.422852px;}
.xf{left:13.500000px;}
.x1a{left:14.800781px;}
.x28{left:17.011231px;}
.x13{left:18.760254px;}
.x1f{left:21.177246px;}
.xc{left:22.500000px;}
.x1e{left:25.294922px;}
.x19{left:28.125000px;}
.xa{left:31.500000px;}
.x1c{left:32.625000px;}
.x23{left:34.026856px;}
.x11{left:35.903321px;}
.x16{left:37.687500px;}
.x2a{left:39.902344px;}
.x3d{left:41.176758px;}
.x33{left:43.294922px;}
.x31{left:50.581055px;}
.x3b{left:53.389160px;}
.x21{left:57.893555px;}
.x1d{left:62.011231px;}
.x32{left:63.241699px;}
.x43{left:67.016602px;}
.x38{left:68.879883px;}
.xb{left:70.505859px;}
.x36{left:71.881347px;}
.x2f{left:73.177734px;}
.x30{left:74.184082px;}
.x40{left:76.139649px;}
.x2c{left:78.473144px;}
.xd{left:79.505859px;}
.x34{left:81.518555px;}
.xe{left:84.005859px;}
.x3e{left:94.095703px;}
.x24{left:97.264160px;}
.x2d{left:100.309571px;}
.x44{left:109.309571px;}
.x8{left:111.005859px;}
.x20{left:112.754883px;}
.x45{left:114.249024px;}
.x22{left:115.756347px;}
.x41{left:117.461426px;}
.x3a{left:119.953125px;}
.x39{left:122.203125px;}
.x3f{left:125.666016px;}
.x1{left:127.575005px;}
.x2e{left:129.405762px;}
.x46{left:134.314453px;}
.x37{left:135.812988px;}
.x42{left:137.333496px;}
.x1b{left:145.001953px;}
.x35{left:147.432129px;}
.x4{left:154.575005px;}
.x18{left:159.750000px;}
.x27{left:170.325005px;}
.x5{left:181.575005px;}
.x25{left:196.200005px;}
.x26{left:223.200005px;}
.x4c{left:233.325005px;}
.x4b{left:235.575005px;}
.x29{left:240.074982px;}
.x4a{left:246.825005px;}
.x4d{left:276.075005px;}
.x48{left:289.575005px;}
.x47{left:294.075005px;}
.x12{left:327.824985px;}
.x49{left:397.575005px;}
.x15{left:402.074985px;}
.x3{left:411.955227px;}
.x7{left:422.324985px;}
.x2b{left:476.324985px;}
.x17{left:481.949985px;}
.x9{left:549.449985px;}
.x10{left:747.338427px;}
.x2{left:756.338427px;}
@media print{
.v3{vertical-align:-22.262116pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:28.333590pt;}
.v1{vertical-align:46.548043pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:60.565103pt;}
.ls2{letter-spacing:76.565103pt;}
.ws4{word-spacing:-37.333332pt;}
.ws2f{word-spacing:-36.093750pt;}
.ws3a{word-spacing:-32.005208pt;}
.ws59{word-spacing:-32.000000pt;}
.wse{word-spacing:-30.078124pt;}
.wsb{word-spacing:-29.333334pt;}
.ws19{word-spacing:-26.666666pt;}
.ws35{word-spacing:-20.093780pt;}
.ws2e{word-spacing:-20.093763pt;}
.ws31{word-spacing:-20.093760pt;}
.ws32{word-spacing:-20.093753pt;}
.ws2b{word-spacing:-20.093750pt;}
.ws36{word-spacing:-20.093742pt;}
.ws2d{word-spacing:-20.093740pt;}
.ws30{word-spacing:-20.093730pt;}
.ws2{word-spacing:-18.707168pt;}
.ws1{word-spacing:-18.700252pt;}
.ws0{word-spacing:-18.697913pt;}
.ws3{word-spacing:-18.687498pt;}
.ws6{word-spacing:-18.400000pt;}
.ws8{word-spacing:-17.600000pt;}
.ws62{word-spacing:-16.805357pt;}
.ws61{word-spacing:-16.805335pt;}
.ws64{word-spacing:-16.017706pt;}
.ws63{word-spacing:-16.017679pt;}
.ws5b{word-spacing:-16.000033pt;}
.ws60{word-spacing:-16.000030pt;}
.ws5d{word-spacing:-16.000020pt;}
.ws4c{word-spacing:-16.000013pt;}
.ws56{word-spacing:-16.000012pt;}
.ws5c{word-spacing:-16.000010pt;}
.ws57{word-spacing:-16.000009pt;}
.ws38{word-spacing:-16.000002pt;}
.ws1f{word-spacing:-16.000000pt;}
.ws44{word-spacing:-15.999999pt;}
.ws2a{word-spacing:-15.999998pt;}
.ws4e{word-spacing:-15.999997pt;}
.ws29{word-spacing:-15.999990pt;}
.ws5a{word-spacing:-15.999988pt;}
.ws50{word-spacing:-15.999979pt;}
.ws58{word-spacing:-15.999970pt;}
.wsa{word-spacing:-14.697916pt;}
.ws9{word-spacing:-14.695589pt;}
.ws13{word-spacing:-13.350097pt;}
.wsc{word-spacing:-13.347755pt;}
.wsd{word-spacing:-13.333333pt;}
.ws65{word-spacing:-1.600281pt;}
.ws4f{word-spacing:-1.600279pt;}
.ws66{word-spacing:-1.600259pt;}
.ws5{word-spacing:-0.028908pt;}
.ws69{word-spacing:-0.024960pt;}
.ws6a{word-spacing:-0.024945pt;}
.ws67{word-spacing:-0.024943pt;}
.ws68{word-spacing:-0.024941pt;}
.ws7{word-spacing:-0.021981pt;}
.ws1b{word-spacing:-0.021434pt;}
.wsf{word-spacing:-0.020230pt;}
.ws1c{word-spacing:-0.019103pt;}
.ws12{word-spacing:-0.015708pt;}
.ws16{word-spacing:-0.015695pt;}
.ws15{word-spacing:-0.015671pt;}
.ws17{word-spacing:-0.015668pt;}
.ws14{word-spacing:-0.015631pt;}
.ws10{word-spacing:-0.015625pt;}
.ws11{word-spacing:-0.015471pt;}
.ws1a{word-spacing:-0.014448pt;}
.ws18{word-spacing:-0.013285pt;}
.ws1d{word-spacing:-0.012143pt;}
.ws33{word-spacing:-0.000030pt;}
.ws5f{word-spacing:-0.000021pt;}
.ws24{word-spacing:-0.000020pt;}
.ws5e{word-spacing:-0.000012pt;}
.ws23{word-spacing:-0.000011pt;}
.ws27{word-spacing:-0.000010pt;}
.ws26{word-spacing:-0.000007pt;}
.ws37{word-spacing:-0.000004pt;}
.ws25{word-spacing:-0.000003pt;}
.ws21{word-spacing:-0.000002pt;}
.ws4d{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.000000pt;}
.ws22{word-spacing:0.000002pt;}
.ws28{word-spacing:0.000005pt;}
.ws3d{word-spacing:0.000008pt;}
.ws45{word-spacing:0.000010pt;}
.ws2c{word-spacing:0.000020pt;}
.ws34{word-spacing:0.000030pt;}
.ws48{word-spacing:28.499999pt;}
.ws3c{word-spacing:68.499999pt;}
.ws55{word-spacing:76.499999pt;}
.ws3e{word-spacing:84.499999pt;}
.ws47{word-spacing:138.687500pt;}
.ws4b{word-spacing:154.687500pt;}
.ws53{word-spacing:163.562500pt;}
.ws3b{word-spacing:178.687500pt;}
.ws54{word-spacing:186.687500pt;}
.ws46{word-spacing:194.687500pt;}
.ws49{word-spacing:209.812500pt;}
.ws52{word-spacing:227.593750pt;}
.ws40{word-spacing:234.625000pt;}
.ws43{word-spacing:248.812500pt;}
.ws51{word-spacing:255.906251pt;}
.ws3f{word-spacing:298.625000pt;}
.ws4a{word-spacing:321.281251pt;}
.ws41{word-spacing:337.812500pt;}
.ws42{word-spacing:426.687500pt;}
.ws39{word-spacing:472.875000pt;}
.ws20{word-spacing:1977.790780pt;}
._1b{margin-left:-8.249981pt;}
._2{margin-left:-6.979260pt;}
._1a{margin-left:-5.875000pt;}
._1{margin-left:-4.579221pt;}
._3{margin-left:-3.122859pt;}
._0{margin-left:-1.545522pt;}
._1c{width:1.156258pt;}
._1d{width:2.279110pt;}
._3d{width:3.920523pt;}
._5{width:29.880942pt;}
._4{width:37.426376pt;}
._3a{width:41.812503pt;}
._31{width:54.310383pt;}
._8{width:82.648805pt;}
._35{width:96.120746pt;}
._2b{width:104.233024pt;}
._2a{width:111.716606pt;}
._22{width:115.562498pt;}
._1e{width:117.281251pt;}
._38{width:121.670525pt;}
._21{width:129.749998pt;}
._20{width:140.499998pt;}
._29{width:167.624998pt;}
._25{width:176.093749pt;}
._2f{width:187.999998pt;}
._34{width:191.656250pt;}
._27{width:197.406249pt;}
._26{width:200.843749pt;}
._3c{width:207.906240pt;}
._1f{width:214.810357pt;}
._37{width:216.445213pt;}
._28{width:222.156249pt;}
._23{width:225.655853pt;}
._2e{width:235.968749pt;}
._36{width:239.687500pt;}
._39{width:246.904899pt;}
._3b{width:253.055741pt;}
._24{width:271.937499pt;}
._30{width:323.451770pt;}
._2c{width:337.437500pt;}
._f{width:353.113789pt;}
._32{width:358.750000pt;}
._2d{width:362.187500pt;}
._17{width:381.551288pt;}
._33{width:383.500000pt;}
._e{width:804.645039pt;}
._12{width:870.509529pt;}
._19{width:874.082539pt;}
._15{width:1055.353301pt;}
._c{width:1386.134529pt;}
._13{width:1391.509527pt;}
._b{width:1412.665779pt;}
._14{width:1451.665780pt;}
._a{width:1460.603286pt;}
._11{width:1493.620006pt;}
._9{width:1521.072029pt;}
._18{width:1539.634273pt;}
._d{width:1625.915779pt;}
._6{width:1629.228281pt;}
._16{width:1645.353281pt;}
._10{width:1653.557505pt;}
._7{width:1657.182501pt;}
.fs3{font-size:35.200001pt;}
.fs2{font-size:44.799999pt;}
.fs5{font-size:53.333332pt;}
.fs4{font-size:58.666668pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:73.600000pt;}
.fs0{font-size:74.666664pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:3.460932pt;}
.y6e{bottom:3.460935pt;}
.y40{bottom:3.460937pt;}
.y74{bottom:3.460948pt;}
.y6a{bottom:21.859372pt;}
.y65{bottom:21.859375pt;}
.y8f{bottom:32.328125pt;}
.y56{bottom:32.328776pt;}
.y1b{bottom:32.329101pt;}
.y35{bottom:32.329427pt;}
.y5e{bottom:32.329428pt;}
.y15f{bottom:32.333333pt;}
.y69{bottom:40.257812pt;}
.y190{bottom:99.268233pt;}
.y5c{bottom:104.352220pt;}
.y179{bottom:104.468753pt;}
.y1bf{bottom:105.265620pt;}
.y19{bottom:111.279136pt;}
.y87{bottom:112.968752pt;}
.yd5{bottom:115.906256pt;}
.y1db{bottom:116.289719pt;}
.y88{bottom:122.169269pt;}
.y141{bottom:122.468753pt;}
.yf1{bottom:122.841149pt;}
.y133{bottom:123.554687pt;}
.y1f5{bottom:123.774092pt;}
.y158{bottom:126.812500pt;}
.y1af{bottom:129.265620pt;}
.y1b0{bottom:130.067713pt;}
.ybd{bottom:130.070313pt;}
.ya6{bottom:132.468753pt;}
.y18{bottom:134.277176pt;}
.y18f{bottom:136.065100pt;}
.y5b{bottom:141.149087pt;}
.y178{bottom:141.265620pt;}
.y1be{bottom:142.062500pt;}
.yd3{bottom:143.606765pt;}
.y1da{bottom:151.810545pt;}
.yd4{bottom:152.804683pt;}
.y120{bottom:154.638020pt;}
.y17{bottom:157.275230pt;}
.yf0{bottom:157.841149pt;}
.y86{bottom:158.067709pt;}
.y15d{bottom:159.265620pt;}
.y1f4{bottom:159.294919pt;}
.y140{bottom:160.351567pt;}
.y132{bottom:161.437500pt;}
.y157{bottom:163.609380pt;}
.y1ae{bottom:166.062500pt;}
.y198{bottom:166.864580pt;}
.ybc{bottom:166.867193pt;}
.ya5{bottom:169.265620pt;}
.y18e{bottom:172.861980pt;}
.y5a{bottom:177.945967pt;}
.y177{bottom:178.062500pt;}
.y1bd{bottom:178.859380pt;}
.y16{bottom:180.273271pt;}
.y1d9{bottom:187.336585pt;}
.y11f{bottom:191.434900pt;}
.yef{bottom:192.841149pt;}
.y85{bottom:193.067709pt;}
.y1f3{bottom:194.815759pt;}
.y13f{bottom:197.148433pt;}
.y146{bottom:198.234380pt;}
.y156{bottom:200.406247pt;}
.y1ad{bottom:202.859380pt;}
.yd2{bottom:203.263020pt;}
.y197{bottom:203.661460pt;}
.ybb{bottom:203.664060pt;}
.ya4{bottom:206.062500pt;}
.y18d{bottom:209.658860pt;}
.y59{bottom:214.742833pt;}
.y176{bottom:214.859380pt;}
.y1bc{bottom:215.656247pt;}
.y15{bottom:219.271324pt;}
.y83{bottom:219.765619pt;}
.y1d8{bottom:222.857425pt;}
.y55{bottom:224.539713pt;}
.yee{bottom:227.841149pt;}
.y84{bottom:228.966149pt;}
.y11e{bottom:229.317713pt;}
.y1f2{bottom:230.432287pt;}
.y13e{bottom:233.945313pt;}
.y131{bottom:235.031247pt;}
.y155{bottom:237.203127pt;}
.y1ac{bottom:239.656247pt;}
.yd1{bottom:240.059900pt;}
.y196{bottom:240.458327pt;}
.yba{bottom:240.460940pt;}
.ya3{bottom:242.859380pt;}
.y18c{bottom:246.455727pt;}
.y51{bottom:249.069993pt;}
.y58{bottom:251.539713pt;}
.y175{bottom:251.656247pt;}
.y81{bottom:256.562499pt;}
.y14{bottom:258.269363pt;}
.y1d7{bottom:258.378252pt;}
.y1bb{bottom:259.249993pt;}
.yed{bottom:262.841149pt;}
.y82{bottom:265.763016pt;}
.y1f1{bottom:267.138665pt;}
.y15c{bottom:270.742193pt;}
.y130{bottom:271.828127pt;}
.y154{bottom:273.999993pt;}
.y1ab{bottom:276.453127pt;}
.yd0{bottom:276.856767pt;}
.y195{bottom:277.255207pt;}
.yb9{bottom:277.257807pt;}
.ya2{bottom:279.656247pt;}
.y13{bottom:281.267416pt;}
.y18b{bottom:283.252607pt;}
.y50{bottom:285.866860pt;}
.y57{bottom:288.336593pt;}
.y174{bottom:288.453127pt;}
.y61{bottom:289.427087pt;}
.y1d6{bottom:293.899092pt;}
.yec{bottom:297.841149pt;}
.y80{bottom:301.661456pt;}
.y1f0{bottom:302.659505pt;}
.y11d{bottom:302.911460pt;}
.y12{bottom:304.265456pt;}
.y15b{bottom:307.539060pt;}
.y12f{bottom:308.624993pt;}
.y145{bottom:309.710940pt;}
.y153{bottom:310.796873pt;}
.ycf{bottom:313.653647pt;}
.y194{bottom:314.052087pt;}
.yb8{bottom:314.054687pt;}
.ya1{bottom:316.453127pt;}
.y18a{bottom:320.049473pt;}
.y1ba{bottom:320.052087pt;}
.y4f{bottom:322.663740pt;}
.y173{bottom:325.249993pt;}
.y60{bottom:326.223953pt;}
.y11{bottom:327.263510pt;}
.y1d5{bottom:329.419919pt;}
.yeb{bottom:332.841149pt;}
.y7f{bottom:336.661456pt;}
.y1ef{bottom:338.180332pt;}
.y11c{bottom:339.708327pt;}
.y10d{bottom:341.242193pt;}
.y12e{bottom:345.421873pt;}
.y144{bottom:346.507807pt;}
.y152{bottom:347.593753pt;}
.y10{bottom:350.261550pt;}
.yce{bottom:350.450527pt;}
.y193{bottom:350.848953pt;}
.yb7{bottom:350.851567pt;}
.ya0{bottom:353.249993pt;}
.y1b9{bottom:356.843753pt;}
.y189{bottom:356.846353pt;}
.y172{bottom:362.046873pt;}
.y1d4{bottom:364.945959pt;}
.yea{bottom:367.841149pt;}
.y4e{bottom:368.589189pt;}
.y7e{bottom:371.661456pt;}
.yf{bottom:373.259604pt;}
.y1ee{bottom:373.701172pt;}
.y11b{bottom:377.591140pt;}
.y10c{bottom:378.039060pt;}
.y1aa{bottom:380.846353pt;}
.y149{bottom:382.218753pt;}
.y12d{bottom:383.304687pt;}
.y151{bottom:384.390620pt;}
.ycd{bottom:387.247393pt;}
.y192{bottom:387.645833pt;}
.yb6{bottom:387.648433pt;}
.y4d{bottom:388.987629pt;}
.y9f{bottom:390.046873pt;}
.y1b8{bottom:393.645833pt;}
.y171{bottom:398.843753pt;}
.y188{bottom:400.442713pt;}
.y1d3{bottom:400.466799pt;}
.ye9{bottom:402.841149pt;}
.y7d{bottom:406.661456pt;}
.y4c{bottom:408.386069pt;}
.y1ed{bottom:409.227212pt;}
.ye{bottom:412.257643pt;}
.y10b{bottom:414.835940pt;}
.y1a9{bottom:417.643233pt;}
.y15a{bottom:419.015620pt;}
.y13d{bottom:420.101567pt;}
.yfd{bottom:422.208327pt;}
.y150{bottom:422.273433pt;}
.ycc{bottom:424.044273pt;}
.y191{bottom:424.442713pt;}
.yb5{bottom:424.445313pt;}
.y9e{bottom:426.843753pt;}
.y4b{bottom:427.784509pt;}
.y1b7{bottom:430.437500pt;}
.yd{bottom:435.255736pt;}
.y170{bottom:435.640620pt;}
.y1d2{bottom:435.987625pt;}
.ye8{bottom:437.841149pt;}
.y7c{bottom:441.661456pt;}
.y1ec{bottom:444.742839pt;}
.y4a{bottom:447.182949pt;}
.y11a{bottom:451.184900pt;}
.y10a{bottom:451.632807pt;}
.y1a8{bottom:454.440100pt;}
.y12c{bottom:456.898433pt;}
.yc{bottom:458.253790pt;}
.y14f{bottom:459.070313pt;}
.ycb{bottom:460.841140pt;}
.y187{bottom:461.239580pt;}
.yb4{bottom:461.242193pt;}
.y9d{bottom:463.640620pt;}
.y49{bottom:466.581376pt;}
.y1b6{bottom:467.239580pt;}
.y1d1{bottom:468.858073pt;}
.y16f{bottom:472.437500pt;}
.ye7{bottom:472.841149pt;}
.yfc{bottom:476.434896pt;}
.y7b{bottom:476.661456pt;}
.y1eb{bottom:480.268879pt;}
.yb{bottom:481.251830pt;}
.y48{bottom:485.979816pt;}
.y119{bottom:487.981767pt;}
.y109{bottom:488.429687pt;}
.y1a7{bottom:491.236980pt;}
.y12b{bottom:493.695313pt;}
.y13c{bottom:494.781247pt;}
.y14e{bottom:495.867193pt;}
.yca{bottom:497.638020pt;}
.y33{bottom:498.031740pt;}
.y186{bottom:498.036460pt;}
.yb3{bottom:498.039060pt;}
.y9c{bottom:500.437500pt;}
.y1d0{bottom:501.716799pt;}
.y79{bottom:503.359379pt;}
.y1b5{bottom:504.033860pt;}
.ya{bottom:504.249884pt;}
.y47{bottom:505.378256pt;}
.ye6{bottom:507.841149pt;}
.y16e{bottom:509.234380pt;}
.yfb{bottom:511.434896pt;}
.y7a{bottom:512.559896pt;}
.y1ea{bottom:515.794919pt;}
.y32{bottom:520.430180pt;}
.y108{bottom:525.226567pt;}
.y118{bottom:525.864580pt;}
.y46{bottom:526.577469pt;}
.y1a6{bottom:528.033860pt;}
.y45{bottom:528.378256pt;}
.y159{bottom:530.492193pt;}
.y12a{bottom:531.578127pt;}
.y14d{bottom:532.664060pt;}
.yc9{bottom:534.434900pt;}
.y185{bottom:534.833327pt;}
.yb2{bottom:534.835940pt;}
.y1cf{bottom:537.242839pt;}
.y1b4{bottom:540.830727pt;}
.y31{bottom:542.828607pt;}
.ye5{bottom:542.841149pt;}
.y9{bottom:544.302932pt;}
.y16d{bottom:546.031247pt;}
.yfa{bottom:546.434896pt;}
.y44{bottom:547.776696pt;}
.y78{bottom:548.458336pt;}
.y1e9{bottom:551.310545pt;}
.y1a5{bottom:564.830727pt;}
.y30{bottom:565.227047pt;}
.y43{bottom:567.175136pt;}
.y13b{bottom:568.374993pt;}
.y107{bottom:568.825526pt;}
.y14c{bottom:569.460940pt;}
.y8{bottom:569.600784pt;}
.yc8{bottom:571.231767pt;}
.y184{bottom:571.630207pt;}
.yb1{bottom:571.632807pt;}
.y1ce{bottom:572.763665pt;}
.y9b{bottom:574.031247pt;}
.y1b3{bottom:577.627607pt;}
.ye4{bottom:577.841149pt;}
.yf9{bottom:581.434896pt;}
.y16c{bottom:582.828127pt;}
.y77{bottom:583.458336pt;}
.y42{bottom:586.573563pt;}
.y1e8{bottom:586.836585pt;}
.y2f{bottom:587.625487pt;}
.y117{bottom:599.458327pt;}
.y1a4{bottom:601.627607pt;}
.y129{bottom:605.171873pt;}
.y41{bottom:605.972003pt;}
.y13a{bottom:606.257807pt;}
.yc7{bottom:608.028647pt;}
.y1cd{bottom:608.284505pt;}
.y183{bottom:608.427087pt;}
.yb0{bottom:608.429687pt;}
.y2e{bottom:610.023927pt;}
.y9a{bottom:610.828127pt;}
.ye3{bottom:612.841149pt;}
.y1b2{bottom:614.424473pt;}
.yf8{bottom:616.434896pt;}
.y76{bottom:618.458336pt;}
.y16b{bottom:619.624993pt;}
.y1e7{bottom:622.357425pt;}
.y3f{bottom:626.370443pt;}
.y106{bottom:629.622393pt;}
.y2d{bottom:632.422367pt;}
.y116{bottom:636.255207pt;}
.y1a3{bottom:638.424473pt;}
.y128{bottom:641.968753pt;}
.y139{bottom:643.054687pt;}
.y1cc{bottom:643.805332pt;}
.y14b{bottom:644.140620pt;}
.yc6{bottom:644.825527pt;}
.y73{bottom:645.156245pt;}
.y182{bottom:645.223953pt;}
.yaf{bottom:645.226567pt;}
.y99{bottom:647.624993pt;}
.ye2{bottom:647.841149pt;}
.yf7{bottom:651.434896pt;}
.y75{bottom:654.356776pt;}
.y2c{bottom:654.820807pt;}
.y16a{bottom:656.421873pt;}
.y1e6{bottom:657.878252pt;}
.y1b1{bottom:658.020833pt;}
.y105{bottom:666.419273pt;}
.y115{bottom:674.138020pt;}
.y1a2{bottom:675.221353pt;}
.y2b{bottom:677.219233pt;}
.y127{bottom:678.765620pt;}
.y1cb{bottom:679.331385pt;}
.y138{bottom:679.851567pt;}
.y14a{bottom:680.937500pt;}
.yc5{bottom:681.622393pt;}
.y72{bottom:681.953125pt;}
.y181{bottom:682.020833pt;}
.yae{bottom:682.023433pt;}
.ye1{bottom:682.841149pt;}
.y98{bottom:684.421873pt;}
.yf6{bottom:686.434896pt;}
.y3e{bottom:689.416340pt;}
.y71{bottom:691.153643pt;}
.y169{bottom:693.218753pt;}
.y1e5{bottom:693.399092pt;}
.y2a{bottom:699.617673pt;}
.y104{bottom:703.216140pt;}
.y1a1{bottom:712.018233pt;}
.y1ca{bottom:714.852212pt;}
.y148{bottom:715.562500pt;}
.y126{bottom:716.648433pt;}
.y3d{bottom:717.013993pt;}
.y137{bottom:717.734380pt;}
.ye0{bottom:717.841149pt;}
.yc4{bottom:718.419273pt;}
.y180{bottom:718.817713pt;}
.yad{bottom:718.820313pt;}
.y97{bottom:721.218753pt;}
.yf5{bottom:721.434896pt;}
.y29{bottom:722.016113pt;}
.y70{bottom:727.052083pt;}
.y1e4{bottom:728.925132pt;}
.y168{bottom:730.015620pt;}
.y103{bottom:740.013020pt;}
.y28{bottom:744.414553pt;}
.ydf{bottom:744.539059pt;}
.y114{bottom:747.731767pt;}
.y1a0{bottom:748.815100pt;}
.y1c9{bottom:750.373052pt;}
.y143{bottom:753.445313pt;}
.yde{bottom:753.739589pt;}
.y136{bottom:754.531247pt;}
.yc3{bottom:755.216140pt;}
.y17f{bottom:755.614580pt;}
.yac{bottom:755.617193pt;}
.yf4{bottom:756.434896pt;}
.y96{bottom:758.015620pt;}
.y7{bottom:758.124327pt;}
.y3c{bottom:760.611659pt;}
.y6f{bottom:762.052083pt;}
.y1e3{bottom:764.445959pt;}
.y1f9{bottom:765.721999pt;}
.y167{bottom:766.812500pt;}
.y27{bottom:766.812993pt;}
.y102{bottom:776.809900pt;}
.y113{bottom:784.528647pt;}
.y19f{bottom:785.611980pt;}
.y1c8{bottom:785.899092pt;}
.y6d{bottom:788.750005pt;}
.y26{bottom:789.211420pt;}
.ydd{bottom:789.638016pt;}
.y125{bottom:790.242193pt;}
.y135{bottom:791.328127pt;}
.yf3{bottom:791.434896pt;}
.yc2{bottom:792.013020pt;}
.y17e{bottom:792.411460pt;}
.yab{bottom:792.414060pt;}
.y95{bottom:794.812500pt;}
.y6c{bottom:797.950523pt;}
.y1e2{bottom:799.966799pt;}
.y1f8{bottom:801.242839pt;}
.y166{bottom:803.609380pt;}
.y6{bottom:806.516806pt;}
.y25{bottom:811.609860pt;}
.y3b{bottom:812.209313pt;}
.y101{bottom:813.606767pt;}
.ydc{bottom:816.335939pt;}
.y1c7{bottom:821.419919pt;}
.y19e{bottom:822.408860pt;}
.y112{bottom:822.411460pt;}
.ydb{bottom:825.536456pt;}
.y68{bottom:825.546875pt;}
.yf2{bottom:826.434896pt;}
.y124{bottom:827.039060pt;}
.y134{bottom:828.124993pt;}
.yc1{bottom:828.809900pt;}
.y17d{bottom:829.208327pt;}
.yaa{bottom:829.210940pt;}
.y94{bottom:831.609380pt;}
.y24{bottom:834.008300pt;}
.y1e1{bottom:835.492839pt;}
.y1f7{bottom:836.763665pt;}
.y165{bottom:840.406247pt;}
.y67{bottom:843.945309pt;}
.y1c2{bottom:847.208326pt;}
.y23{bottom:856.406740pt;}
.y1c6{bottom:857.031247pt;}
.y100{bottom:857.203126pt;}
.y19d{bottom:859.205727pt;}
.y111{bottom:859.208327pt;}
.yda{bottom:861.434896pt;}
.y147{bottom:863.835940pt;}
.y123{bottom:864.921873pt;}
.yc0{bottom:865.606767pt;}
.y3a{bottom:865.916996pt;}
.y5{bottom:865.917169pt;}
.y17c{bottom:866.005207pt;}
.ya9{bottom:866.007807pt;}
.y93{bottom:868.406247pt;}
.y1e0{bottom:871.109380pt;}
.y164{bottom:872.002603pt;}
.y1f6{bottom:872.289719pt;}
.y8e{bottom:874.442709pt;}
.y22{bottom:878.805180pt;}
.y19b{bottom:884.002603pt;}
.y66{bottom:889.044271pt;}
.y1c5{bottom:893.833333pt;}
.y19c{bottom:896.002604pt;}
.y110{bottom:896.005208pt;}
.yd9{bottom:896.434896pt;}
.y39{bottom:898.114257pt;}
.y4{bottom:898.114440pt;}
.y8c{bottom:901.140625pt;}
.y21{bottom:901.203613pt;}
.y142{bottom:901.718749pt;}
.ybf{bottom:902.403645pt;}
.y17b{bottom:902.802083pt;}
.ya8{bottom:902.804688pt;}
.y92{bottom:905.203125pt;}
.y1df{bottom:907.805339pt;}
.y1c1{bottom:908.000000pt;}
.y8d{bottom:910.341145pt;}
.y64{bottom:916.742188pt;}
.yff{bottom:918.000000pt;}
.y20{bottom:923.602051pt;}
.y63{bottom:925.942708pt;}
.y38{bottom:930.311523pt;}
.y3{bottom:930.311705pt;}
.yd8{bottom:931.434896pt;}
.y1c4{bottom:931.713541pt;}
.y163{bottom:932.799479pt;}
.y10f{bottom:932.802083pt;}
.ybe{bottom:933.999999pt;}
.y122{bottom:938.515625pt;}
.y17a{bottom:939.598959pt;}
.ya7{bottom:939.601563pt;}
.y91{bottom:942.000000pt;}
.y1f{bottom:942.000488pt;}
.y1de{bottom:943.331380pt;}
.y19a{bottom:944.799479pt;}
.y1c0{bottom:944.802083pt;}
.y8b{bottom:946.239584pt;}
.yfe{bottom:961.598958pt;}
.y1e{bottom:964.398925pt;}
.yd7{bottom:966.434896pt;}
.y1c3{bottom:969.593749pt;}
.y162{bottom:969.596355pt;}
.y10e{bottom:969.598959pt;}
.y37{bottom:970.508788pt;}
.y2{bottom:970.508972pt;}
.y89{bottom:972.937500pt;}
.y121{bottom:975.312500pt;}
.y161{bottom:976.395833pt;}
.y62{bottom:976.398437pt;}
.y1dd{bottom:978.857421pt;}
.y199{bottom:981.596355pt;}
.y90{bottom:985.598959pt;}
.y1d{bottom:986.797363pt;}
.y8a{bottom:991.335937pt;}
.yd6{bottom:1001.434896pt;}
.y1c{bottom:1009.195801pt;}
.y36{bottom:1010.706055pt;}
.y1{bottom:1010.706247pt;}
.y160{bottom:1013.192708pt;}
.y5f{bottom:1013.195312pt;}
.y52{bottom:1013.195639pt;}
.y54{bottom:1013.195964pt;}
.y1dc{bottom:1014.373047pt;}
.y15e{bottom:1028.130208pt;}
.y5d{bottom:1028.132812pt;}
.y34{bottom:1028.133139pt;}
.y1a{bottom:1028.133301pt;}
.y53{bottom:1028.133464pt;}
.hf{height:18.398437pt;}
.hc{height:19.398437pt;}
.h3{height:24.440626pt;}
.h15{height:35.546874pt;}
.h6{height:36.145832pt;}
.h10{height:36.796875pt;}
.h5{height:37.057291pt;}
.h14{height:39.101563pt;}
.h4{height:40.734376pt;}
.h9{height:43.375000pt;}
.hb{height:43.593750pt;}
.h12{height:44.437500pt;}
.h8{height:44.468750pt;}
.h1{height:50.604165pt;}
.h11{height:55.195312pt;}
.hd{height:94.533203pt;}
.h7{height:94.533365pt;}
.ha{height:94.533528pt;}
.he{height:94.533855pt;}
.h13{height:94.536459pt;}
.h2{height:97.687106pt;}
.h0{height:1122.666667pt;}
.w4{width:37.000041pt;}
.w6{width:66.000000pt;}
.w7{width:71.000000pt;}
.w9{width:99.999980pt;}
.w3{width:113.000000pt;}
.w5{width:177.999980pt;}
.wa{width:210.000000pt;}
.w2{width:261.999973pt;}
.w8{width:288.000080pt;}
.wb{width:293.000080pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x6{left:1.000000pt;}
.x14{left:3.667969pt;}
.x3c{left:4.820312pt;}
.xf{left:12.000000pt;}
.x1a{left:13.156250pt;}
.x28{left:15.121094pt;}
.x13{left:16.675781pt;}
.x1f{left:18.824219pt;}
.xc{left:20.000000pt;}
.x1e{left:22.484375pt;}
.x19{left:25.000000pt;}
.xa{left:28.000000pt;}
.x1c{left:29.000000pt;}
.x23{left:30.246094pt;}
.x11{left:31.914063pt;}
.x16{left:33.500000pt;}
.x2a{left:35.468750pt;}
.x3d{left:36.601563pt;}
.x33{left:38.484375pt;}
.x31{left:44.960938pt;}
.x3b{left:47.457031pt;}
.x21{left:51.460938pt;}
.x1d{left:55.121094pt;}
.x32{left:56.214844pt;}
.x43{left:59.570313pt;}
.x38{left:61.226563pt;}
.xb{left:62.671875pt;}
.x36{left:63.894531pt;}
.x2f{left:65.046875pt;}
.x30{left:65.941406pt;}
.x40{left:67.679688pt;}
.x2c{left:69.753906pt;}
.xd{left:70.671875pt;}
.x34{left:72.460938pt;}
.xe{left:74.671875pt;}
.x3e{left:83.640625pt;}
.x24{left:86.457031pt;}
.x2d{left:89.164063pt;}
.x44{left:97.164063pt;}
.x8{left:98.671875pt;}
.x20{left:100.226563pt;}
.x45{left:101.554688pt;}
.x22{left:102.894531pt;}
.x41{left:104.410156pt;}
.x3a{left:106.625000pt;}
.x39{left:108.625000pt;}
.x3f{left:111.703125pt;}
.x1{left:113.400004pt;}
.x2e{left:115.027344pt;}
.x46{left:119.390625pt;}
.x37{left:120.722656pt;}
.x42{left:122.074219pt;}
.x1b{left:128.890625pt;}
.x35{left:131.050781pt;}
.x4{left:137.400004pt;}
.x18{left:142.000000pt;}
.x27{left:151.400004pt;}
.x5{left:161.400004pt;}
.x25{left:174.400004pt;}
.x26{left:198.400004pt;}
.x4c{left:207.400004pt;}
.x4b{left:209.400004pt;}
.x29{left:213.399984pt;}
.x4a{left:219.400004pt;}
.x4d{left:245.400004pt;}
.x48{left:257.400004pt;}
.x47{left:261.400004pt;}
.x12{left:291.399987pt;}
.x49{left:353.400004pt;}
.x15{left:357.399987pt;}
.x3{left:366.182424pt;}
.x7{left:375.399987pt;}
.x2b{left:423.399987pt;}
.x17{left:428.399987pt;}
.x9{left:488.399987pt;}
.x10{left:664.300824pt;}
.x2{left:672.300824pt;}
}




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