
    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_eb73500a10c2bea4c8f27937.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_c70c9a24f4eb1f6d6e0bff6d.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_6f854f3af3beda0efb8e7188.woff')format("woff");}.ff3{font-family:ff3;line-height:1.237305;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_9503ac9a402787c74e5f317d.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_98dee46a4dfaefe9136e62f9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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_47f27c69cb59df88ca9b4a1c.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_59e495ea5c0523440b1dbe67.woff')format("woff");}.ff7{font-family:ff7;line-height:1.105957;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_6641dfd1d705834832411798.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3d4bb16c0062a8c9e1714eaf.woff')format("woff");}.ff9{font-family:ff9;line-height:1.090332;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);}
.v4{vertical-align:-11.982600px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.054000px;}
.v2{vertical-align:13.947600px;}
.v3{vertical-align:16.977000px;}
.v1{vertical-align:21.979800px;}
.ls6{letter-spacing:-10.152000px;}
.ls1f{letter-spacing:-3.726000px;}
.ls21{letter-spacing:-3.243000px;}
.ls20{letter-spacing:-2.760000px;}
.ls27{letter-spacing:-2.484000px;}
.ls26{letter-spacing:-2.277000px;}
.ls18{letter-spacing:-2.070000px;}
.ls16{letter-spacing:-2.001000px;}
.ls1a{letter-spacing:-1.863000px;}
.ls14{letter-spacing:-1.656000px;}
.ls15{letter-spacing:-1.518000px;}
.ls10{letter-spacing:-1.350000px;}
.ls1c{letter-spacing:-1.173000px;}
.ls30{letter-spacing:-1.008000px;}
.ls1b{letter-spacing:-0.690000px;}
.ls4{letter-spacing:-0.180000px;}
.ls1d{letter-spacing:-0.138000px;}
.ls2c{letter-spacing:-0.081000px;}
.ls2a{letter-spacing:-0.069000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000300px;}
.ls19{letter-spacing:0.131100px;}
.lsf{letter-spacing:0.364158px;}
.ls7{letter-spacing:1.322244px;}
.ls5{letter-spacing:1.404000px;}
.ls1{letter-spacing:1.638000px;}
.ls13{letter-spacing:1.725000px;}
.lsa{letter-spacing:4.176000px;}
.ls9{letter-spacing:4.200000px;}
.ls12{letter-spacing:4.950000px;}
.lsc{letter-spacing:5.460000px;}
.ls2b{letter-spacing:5.475000px;}
.ls8{letter-spacing:5.760000px;}
.lsd{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls2d{letter-spacing:6.300000px;}
.ls33{letter-spacing:6.375000px;}
.ls24{letter-spacing:7.350000px;}
.ls1e{letter-spacing:7.725000px;}
.ls25{letter-spacing:7.935000px;}
.ls11{letter-spacing:7.950000px;}
.lsb{letter-spacing:8.100000px;}
.ls23{letter-spacing:8.160156px;}
.ls22{letter-spacing:8.160756px;}
.ls17{letter-spacing:8.250000px;}
.ls2f{letter-spacing:8.316000px;}
.ls29{letter-spacing:8.325000px;}
.ls3{letter-spacing:8.400000px;}
.ls2e{letter-spacing:8.700000px;}
.ls31{letter-spacing:8.820000px;}
.ls32{letter-spacing:19.278000px;}
.ls28{letter-spacing:24.667500px;}
.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;}
}
.ws3e{word-spacing:-29.775000px;}
.ws38{word-spacing:-29.400000px;}
.ws1e{word-spacing:-29.325000px;}
.ws9{word-spacing:-29.175000px;}
.ws15{word-spacing:-29.025000px;}
.ws27{word-spacing:-28.800000px;}
.ws2c{word-spacing:-28.425000px;}
.ws46{word-spacing:-27.450000px;}
.ws3c{word-spacing:-26.550000px;}
.ws44{word-spacing:-26.523000px;}
.ws19{word-spacing:-26.025000px;}
.ws3f{word-spacing:-26.019000px;}
.ws45{word-spacing:-22.860000px;}
.wsc{word-spacing:-22.740000px;}
.ws3d{word-spacing:-22.680000px;}
.ws1{word-spacing:-22.620000px;}
.ws10{word-spacing:-19.389000px;}
.ws42{word-spacing:-17.703000px;}
.wsa{word-spacing:-17.262000px;}
.ws1a{word-spacing:-17.043000px;}
.ws39{word-spacing:-16.974000px;}
.ws36{word-spacing:-16.860000px;}
.ws24{word-spacing:-16.353000px;}
.ws43{word-spacing:-15.561000px;}
.ws1b{word-spacing:-15.525000px;}
.ws23{word-spacing:-15.180000px;}
.ws14{word-spacing:-15.174000px;}
.ws0{word-spacing:-15.083376px;}
.ws1c{word-spacing:-15.042000px;}
.ws1f{word-spacing:-14.973000px;}
.wsb{word-spacing:-14.820000px;}
.ws2d{word-spacing:-14.766000px;}
.ws37{word-spacing:-14.559000px;}
.ws41{word-spacing:-14.553000px;}
.ws2a{word-spacing:-14.283000px;}
.ws13{word-spacing:-13.338000px;}
.ws12{word-spacing:-11.988000px;}
.ws11{word-spacing:-11.303787px;}
.wsd{word-spacing:-9.829380px;}
.ws5{word-spacing:-8.400000px;}
.ws35{word-spacing:-7.935000px;}
.ws40{word-spacing:-6.300000px;}
.ws4{word-spacing:-6.000000px;}
.wsf{word-spacing:-4.200000px;}
.wse{word-spacing:-4.176000px;}
.ws29{word-spacing:-3.726000px;}
.ws3{word-spacing:-1.638000px;}
.ws7{word-spacing:-1.404000px;}
.ws18{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws25{word-spacing:0.069000px;}
.ws26{word-spacing:0.138000px;}
.ws6{word-spacing:0.180000px;}
.ws22{word-spacing:0.690000px;}
.ws1d{word-spacing:1.656000px;}
.ws3a{word-spacing:2.001000px;}
.ws3b{word-spacing:2.208000px;}
.ws20{word-spacing:2.760000px;}
.ws2b{word-spacing:3.243000px;}
.ws21{word-spacing:3.381000px;}
.ws28{word-spacing:3.726000px;}
.ws16{word-spacing:5.022000px;}
.ws17{word-spacing:6.534000px;}
.ws8{word-spacing:10.152000px;}
.ws32{word-spacing:655.260000px;}
.ws34{word-spacing:658.020000px;}
.ws2e{word-spacing:658.680000px;}
.ws2f{word-spacing:663.420000px;}
.ws31{word-spacing:664.380000px;}
.ws30{word-spacing:665.340000px;}
.ws33{word-spacing:670.560000px;}
._30{margin-left:-19.116600px;}
._42{margin-left:-17.200500px;}
._46{margin-left:-9.164400px;}
._d{margin-left:-8.014200px;}
._2f{margin-left:-6.858600px;}
._3{margin-left:-5.852700px;}
._8{margin-left:-4.709700px;}
._7{margin-left:-3.597600px;}
._5{margin-left:-1.650600px;}
._4{width:1.241100px;}
._1{width:2.400000px;}
._c{width:3.409500px;}
._9{width:5.283300px;}
._6{width:6.452700px;}
._a{width:7.506000px;}
._b{width:8.601900px;}
._11{width:9.753000px;}
._f{width:10.810800px;}
._10{width:12.535800px;}
._e{width:13.578900px;}
._1f{width:15.029100px;}
._1e{width:16.056300px;}
._2a{width:17.716800px;}
._43{width:19.317000px;}
._2e{width:20.562000px;}
._45{width:21.603000px;}
._17{width:22.632000px;}
._1c{width:24.222600px;}
._41{width:25.455900px;}
._48{width:26.582100px;}
._37{width:27.704160px;}
._14{width:29.167200px;}
._47{width:30.334500px;}
._44{width:35.139072px;}
._38{width:36.454800px;}
._1b{width:39.400686px;}
._1a{width:41.335614px;}
._18{width:43.445160px;}
._2b{width:50.770500px;}
._1d{width:52.673400px;}
._49{width:70.585200px;}
._13{width:85.554000px;}
._19{width:184.412214px;}
._22{width:257.538900px;}
._15{width:260.610000px;}
._31{width:266.967300px;}
._21{width:284.427300px;}
._32{width:318.109500px;}
._40{width:486.405000px;}
._12{width:489.570000px;}
._2d{width:490.725000px;}
._29{width:493.852200px;}
._4a{width:496.211100px;}
._39{width:564.240000px;}
._3b{width:568.020000px;}
._0{width:578.400000px;}
._3d{width:585.000000px;}
._33{width:619.020000px;}
._35{width:622.080000px;}
._23{width:623.460000px;}
._26{width:643.560000px;}
._34{width:664.620000px;}
._25{width:675.960000px;}
._24{width:679.560000px;}
._36{width:684.420000px;}
._27{width:690.000000px;}
._28{width:705.600000px;}
._3a{width:780.480000px;}
._3c{width:798.240000px;}
._3e{width:810.120000px;}
._3f{width:815.760000px;}
._16{width:993.211200px;}
._2c{width:996.331200px;}
._2{width:1000.381200px;}
._20{width:1002.361200px;}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:31.482000px;}
.fs8{font-size:34.980000px;}
.fsb{font-size:40.227000px;}
.fs7{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs5{font-size:48.972000px;}
.fsd{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fsa{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs9{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y1c4{bottom:106.050000px;}
.ye4{bottom:106.165350px;}
.y240{bottom:106.181850px;}
.y1e{bottom:106.247100px;}
.y10a{bottom:106.268850px;}
.y13a{bottom:106.284450px;}
.y42{bottom:106.286400px;}
.y6c{bottom:106.290300px;}
.y8e{bottom:106.296300px;}
.ybd{bottom:106.296450px;}
.y220{bottom:106.323600px;}
.y268{bottom:106.327050px;}
.y17e{bottom:106.342650px;}
.y1e4{bottom:106.402350px;}
.y202{bottom:106.496850px;}
.y115{bottom:108.439350px;}
.yaf{bottom:109.294950px;}
.y139{bottom:123.537450px;}
.y6b{bottom:123.543300px;}
.y267{bottom:125.842050px;}
.y1d{bottom:126.407100px;}
.y8d{bottom:126.544800px;}
.ybc{bottom:126.544950px;}
.ye3{bottom:126.589350px;}
.y1e3{bottom:126.908850px;}
.y17d{bottom:126.956400px;}
.y41{bottom:127.089900px;}
.y109{bottom:127.227600px;}
.y201{bottom:127.633350px;}
.y23f{bottom:127.649100px;}
.y1c3{bottom:128.147250px;}
.y21f{bottom:128.200350px;}
.y114{bottom:128.690850px;}
.y15b{bottom:130.797000px;}
.y138{bottom:140.790450px;}
.y6a{bottom:140.796300px;}
.y8c{bottom:145.027200px;}
.y266{bottom:145.357050px;}
.y1c{bottom:146.567100px;}
.ye2{bottom:147.013350px;}
.y17c{bottom:147.570150px;}
.y40{bottom:147.893400px;}
.y108{bottom:148.186350px;}
.y113{bottom:148.942350px;}
.y1c2{bottom:150.244500px;}
.y1a1{bottom:153.251400px;}
.yae{bottom:153.329250px;}
.y1e2{bottom:155.920350px;}
.y200{bottom:157.274850px;}
.y23e{bottom:157.621350px;}
.y69{bottom:158.031300px;}
.y137{bottom:158.043450px;}
.y21e{bottom:158.582100px;}
.y8b{bottom:162.280200px;}
.y265{bottom:164.872050px;}
.y1b{bottom:166.727100px;}
.ye1{bottom:167.437350px;}
.y17b{bottom:168.183900px;}
.y107{bottom:169.145100px;}
.y112{bottom:169.193850px;}
.y1c1{bottom:172.341750px;}
.y1a0{bottom:174.072150px;}
.yad{bottom:174.184500px;}
.y68{bottom:175.284300px;}
.y136{bottom:175.296450px;}
.y1e1{bottom:176.426850px;}
.y1ff{bottom:178.411350px;}
.y23d{bottom:179.088600px;}
.y8a{bottom:179.533200px;}
.y21d{bottom:180.458850px;}
.y15a{bottom:181.633200px;}
.y264{bottom:184.387050px;}
.y1a{bottom:186.887100px;}
.ye0{bottom:187.861350px;}
.y17a{bottom:188.797650px;}
.y111{bottom:189.445350px;}
.y3f{bottom:189.950400px;}
.y106{bottom:190.103850px;}
.y67{bottom:192.537300px;}
.ybb{bottom:193.951350px;}
.y1c0{bottom:194.439000px;}
.y19f{bottom:194.892900px;}
.yac{bottom:195.039750px;}
.y135{bottom:195.544950px;}
.y89{bottom:196.786200px;}
.y21c{bottom:202.335600px;}
.y263{bottom:203.902050px;}
.y159{bottom:204.358200px;}
.y1e0{bottom:205.438350px;}
.y19{bottom:207.047100px;}
.y1fe{bottom:208.052850px;}
.ydf{bottom:208.285350px;}
.y23c{bottom:209.060850px;}
.y179{bottom:209.411400px;}
.y110{bottom:209.696850px;}
.y66{bottom:209.790300px;}
.y105{bottom:211.062600px;}
.y88{bottom:214.039200px;}
.y19e{bottom:215.713650px;}
.yab{bottom:215.895000px;}
.y1bf{bottom:216.536250px;}
.y262{bottom:223.417050px;}
.y1df{bottom:225.944850px;}
.y65{bottom:227.043300px;}
.y158{bottom:227.083200px;}
.y18{bottom:227.207100px;}
.yde{bottom:228.709350px;}
.y10f{bottom:229.948350px;}
.y178{bottom:230.025150px;}
.y23b{bottom:230.528100px;}
.y87{bottom:231.292200px;}
.y104{bottom:232.021350px;}
.y21b{bottom:232.717350px;}
.y19d{bottom:236.534400px;}
.yaa{bottom:236.750250px;}
.y1be{bottom:238.633500px;}
.y134{bottom:239.580300px;}
.y261{bottom:242.932050px;}
.y64{bottom:244.296300px;}
.y17{bottom:247.367100px;}
.y86{bottom:248.545200px;}
.ydd{bottom:249.133350px;}
.y157{bottom:249.808200px;}
.y10e{bottom:250.199850px;}
.y177{bottom:250.638900px;}
.y23a{bottom:251.995350px;}
.y3e{bottom:252.779400px;}
.y103{bottom:252.980100px;}
.y21a{bottom:254.594100px;}
.y1de{bottom:254.956350px;}
.y19c{bottom:257.355150px;}
.y1fd{bottom:259.712850px;}
.y247{bottom:260.500350px;}
.y1bd{bottom:260.730750px;}
.y133{bottom:260.970300px;}
.y260{bottom:262.447050px;}
.y63{bottom:264.544800px;}
.y85{bottom:265.798200px;}
.y16{bottom:267.527100px;}
.ydc{bottom:269.557350px;}
.y10d{bottom:270.451350px;}
.y176{bottom:271.252650px;}
.y156{bottom:272.533200px;}
.y102{bottom:273.938850px;}
.y3d{bottom:274.319400px;}
.y1dd{bottom:275.462850px;}
.y219{bottom:276.470850px;}
.y19b{bottom:278.175900px;}
.y25f{bottom:281.962050px;}
.y239{bottom:281.967600px;}
.y132{bottom:282.360300px;}
.y1bc{bottom:282.828000px;}
.y62{bottom:283.045200px;}
.y84{bottom:283.051200px;}
.y1fc{bottom:285.101850px;}
.y15{bottom:287.687100px;}
.ydb{bottom:289.981350px;}
.y175{bottom:291.866400px;}
.y101{bottom:294.897600px;}
.y155{bottom:295.258200px;}
.y3c{bottom:295.859400px;}
.ya9{bottom:297.648300px;}
.y19a{bottom:298.996650px;}
.y61{bottom:300.298200px;}
.y285{bottom:300.942750px;}
.y25e{bottom:301.473450px;}
.y238{bottom:303.434850px;}
.y131{bottom:303.750300px;}
.y1dc{bottom:304.474350px;}
.y1bb{bottom:304.925250px;}
.y218{bottom:306.852600px;}
.y14{bottom:307.847100px;}
.yda{bottom:310.405350px;}
.y1fb{bottom:310.490850px;}
.y10c{bottom:310.951350px;}
.y174{bottom:312.480150px;}
.y100{bottom:315.856350px;}
.y3b{bottom:317.548350px;}
.y154{bottom:317.983200px;}
.y199{bottom:319.817400px;}
.ya8{bottom:320.373300px;}
.y60{bottom:320.546700px;}
.y25d{bottom:320.988450px;}
.y284{bottom:321.192750px;}
.y237{bottom:324.902100px;}
.y1db{bottom:324.980850px;}
.y130{bottom:325.140300px;}
.y1ba{bottom:327.022500px;}
.y13{bottom:328.007100px;}
.y217{bottom:328.729350px;}
.yd9{bottom:330.829350px;}
.y10b{bottom:331.201350px;}
.y173{bottom:333.093900px;}
.y246{bottom:333.407100px;}
.y1fa{bottom:335.879850px;}
.yff{bottom:336.815100px;}
.y3a{bottom:337.588350px;}
.y5f{bottom:339.044250px;}
.y198{bottom:340.638150px;}
.y153{bottom:340.708200px;}
.y283{bottom:341.442750px;}
.ya7{bottom:343.098300px;}
.y1da{bottom:345.487350px;}
.y236{bottom:346.369350px;}
.y12f{bottom:346.530300px;}
.y1b9{bottom:349.119750px;}
.yd8{bottom:351.253350px;}
.y25c{bottom:353.268450px;}
.y172{bottom:353.707650px;}
.y245{bottom:354.874350px;}
.y5e{bottom:356.297250px;}
.y39{bottom:357.628350px;}
.yfe{bottom:357.773850px;}
.y216{bottom:359.111100px;}
.y12{bottom:360.917100px;}
.y1f9{bottom:361.268850px;}
.y197{bottom:361.458900px;}
.y282{bottom:361.692750px;}
.y152{bottom:363.433200px;}
.ya6{bottom:365.823300px;}
.y1d9{bottom:365.993850px;}
.y12e{bottom:367.920300px;}
.y1b8{bottom:371.217000px;}
.yd7{bottom:371.677350px;}
.y5d{bottom:373.550250px;}
.y171{bottom:374.321400px;}
.y235{bottom:376.341600px;}
.y38{bottom:377.668350px;}
.yfd{bottom:378.732600px;}
.y215{bottom:380.987850px;}
.y196{bottom:382.279650px;}
.y151{bottom:386.158200px;}
.y1f8{bottom:386.657850px;}
.ya5{bottom:388.548300px;}
.y12d{bottom:389.310300px;}
.yd6{bottom:392.101350px;}
.y1b7{bottom:393.314250px;}
.y5c{bottom:393.798750px;}
.y281{bottom:394.692750px;}
.y170{bottom:394.935150px;}
.y1d8{bottom:395.005350px;}
.y37{bottom:397.708350px;}
.y234{bottom:397.808850px;}
.yfc{bottom:399.691350px;}
.y195{bottom:403.100400px;}
.y150{bottom:408.883200px;}
.y12c{bottom:410.700300px;}
.y25b{bottom:411.044700px;}
.y214{bottom:411.369600px;}
.y1f7{bottom:412.046850px;}
.y5b{bottom:412.299150px;}
.yd5{bottom:412.525350px;}
.y1b6{bottom:415.411500px;}
.y1d7{bottom:415.511850px;}
.y16f{bottom:415.548900px;}
.y36{bottom:417.748350px;}
.ya4{bottom:418.630500px;}
.y11{bottom:419.338200px;}
.yfb{bottom:420.650100px;}
.y194{bottom:423.921150px;}
.y233{bottom:427.781100px;}
.y5a{bottom:429.552150px;}
.y12b{bottom:432.090300px;}
.yd4{bottom:432.949350px;}
.y213{bottom:433.246350px;}
.y16e{bottom:436.162650px;}
.y280{bottom:436.197750px;}
.y83{bottom:436.916850px;}
.y1f6{bottom:437.435850px;}
.y1b5{bottom:437.508750px;}
.y35{bottom:437.788350px;}
.y25a{bottom:438.062550px;}
.ya3{bottom:438.745500px;}
.y14f{bottom:439.211850px;}
.yfa{bottom:441.608850px;}
.y1d6{bottom:444.523350px;}
.y193{bottom:444.662100px;}
.y10{bottom:446.993250px;}
.y232{bottom:449.248350px;}
.y59{bottom:449.800650px;}
.yd3{bottom:453.373350px;}
.y12a{bottom:453.480300px;}
.y212{bottom:455.123100px;}
.y27f{bottom:455.697750px;}
.y16d{bottom:456.776400px;}
.y82{bottom:457.168350px;}
.y34{bottom:457.828350px;}
.ya2{bottom:458.860500px;}
.y1b4{bottom:459.606000px;}
.yf9{bottom:462.567600px;}
.y1f5{bottom:462.824850px;}
.y1d5{bottom:465.029850px;}
.y259{bottom:465.089550px;}
.y192{bottom:465.482850px;}
.y58{bottom:468.304050px;}
.yd2{bottom:473.797350px;}
.yf{bottom:474.650250px;}
.y129{bottom:474.901350px;}
.y27e{bottom:475.197750px;}
.y16c{bottom:477.390150px;}
.y81{bottom:477.419850px;}
.y33{bottom:477.868350px;}
.y231{bottom:479.220600px;}
.y14e{bottom:480.803550px;}
.y1b3{bottom:481.703250px;}
.yf8{bottom:483.526350px;}
.y211{bottom:485.504850px;}
.y191{bottom:486.303600px;}
.y57{bottom:488.552700px;}
.y1d4{bottom:494.041350px;}
.yd1{bottom:494.221350px;}
.y27d{bottom:494.697750px;}
.y128{bottom:496.291350px;}
.y80{bottom:497.671350px;}
.y32{bottom:497.908350px;}
.y16b{bottom:498.003900px;}
.ya1{bottom:500.285850px;}
.y230{bottom:500.687850px;}
.y14d{bottom:501.900300px;}
.y1b2{bottom:503.800500px;}
.yf7{bottom:504.485100px;}
.y190{bottom:507.124350px;}
.y210{bottom:507.381600px;}
.y27c{bottom:514.197750px;}
.y1f4{bottom:514.484850px;}
.y1d3{bottom:514.547850px;}
.yd0{bottom:514.645350px;}
.y127{bottom:517.681350px;}
.y7f{bottom:517.922850px;}
.y31{bottom:517.948350px;}
.y16a{bottom:518.617650px;}
.ya0{bottom:521.141100px;}
.y22f{bottom:522.155100px;}
.y14c{bottom:522.997050px;}
.ye{bottom:523.554300px;}
.yf6{bottom:525.443850px;}
.y1b1{bottom:525.897750px;}
.y18f{bottom:527.945100px;}
.y20f{bottom:529.258350px;}
.y244{bottom:530.660100px;}
.y56{bottom:532.576500px;}
.y27b{bottom:533.697750px;}
.y1d2{bottom:535.054350px;}
.ycf{bottom:535.069350px;}
.y1f3{bottom:535.621350px;}
.y30{bottom:537.988350px;}
.y7e{bottom:538.174350px;}
.y126{bottom:539.071350px;}
.y169{bottom:539.231400px;}
.y9f{bottom:541.996350px;}
.y258{bottom:542.094600px;}
.y14b{bottom:544.093800px;}
.yf5{bottom:546.402600px;}
.y1b0{bottom:547.995000px;}
.y18e{bottom:548.765850px;}
.y22e{bottom:552.127350px;}
.y55{bottom:553.138500px;}
.y27a{bottom:553.197750px;}
.yce{bottom:555.493350px;}
.yd{bottom:555.711300px;}
.y1f2{bottom:556.757850px;}
.y2f{bottom:558.028350px;}
.y7d{bottom:558.425850px;}
.y20e{bottom:559.640100px;}
.y168{bottom:559.845150px;}
.y125{bottom:560.461350px;}
.y257{bottom:562.364850px;}
.y9e{bottom:562.851600px;}
.y1d1{bottom:564.065850px;}
.y14a{bottom:565.190550px;}
.yf4{bottom:567.361350px;}
.y18d{bottom:569.586600px;}
.y1af{bottom:570.092250px;}
.y279{bottom:572.697750px;}
.y22d{bottom:573.594600px;}
.y54{bottom:573.700500px;}
.ycd{bottom:575.917350px;}
.y1f1{bottom:577.894350px;}
.y2e{bottom:578.068350px;}
.y7c{bottom:578.677350px;}
.y167{bottom:580.458900px;}
.y20d{bottom:581.516850px;}
.y124{bottom:581.851350px;}
.y243{bottom:582.099600px;}
.y9d{bottom:583.706850px;}
.y1d0{bottom:584.572350px;}
.y149{bottom:586.279950px;}
.yc{bottom:587.868300px;}
.yf3{bottom:588.320100px;}
.y256{bottom:591.140100px;}
.y1ae{bottom:592.189500px;}
.y278{bottom:592.197750px;}
.y53{bottom:594.262500px;}
.ycc{bottom:596.341350px;}
.y2d{bottom:598.108350px;}
.y7b{bottom:598.928850px;}
.yba{bottom:598.934850px;}
.y123{bottom:603.241350px;}
.y22c{bottom:603.566850px;}
.y9c{bottom:604.562100px;}
.y1cf{bottom:605.078850px;}
.y148{bottom:607.376700px;}
.y1f0{bottom:607.535850px;}
.yf2{bottom:609.278850px;}
.y18c{bottom:611.210850px;}
.y255{bottom:611.410350px;}
.y277{bottom:611.697750px;}
.y20c{bottom:611.898600px;}
.y1ad{bottom:614.286750px;}
.y52{bottom:614.824500px;}
.ycb{bottom:616.765350px;}
.y2c{bottom:618.148350px;}
.y7a{bottom:619.180350px;}
.yb9{bottom:619.186350px;}
.yb{bottom:620.025300px;}
.y122{bottom:624.631350px;}
.y22b{bottom:625.034100px;}
.y9b{bottom:625.417350px;}
.y147{bottom:628.473450px;}
.y1ef{bottom:628.672350px;}
.yf1{bottom:630.237600px;}
.y276{bottom:631.197750px;}
.y254{bottom:631.680600px;}
.y18b{bottom:632.031600px;}
.y242{bottom:633.539100px;}
.y20b{bottom:633.775350px;}
.y1ce{bottom:634.090350px;}
.y51{bottom:635.386500px;}
.y1ac{bottom:636.384000px;}
.yca{bottom:637.189350px;}
.y2b{bottom:638.188350px;}
.y79{bottom:639.431850px;}
.yb8{bottom:639.437850px;}
.y166{bottom:641.113350px;}
.y121{bottom:646.021350px;}
.y9a{bottom:646.272600px;}
.y146{bottom:649.540350px;}
.y275{bottom:650.697750px;}
.yf0{bottom:651.196350px;}
.y253{bottom:651.950850px;}
.ya{bottom:652.182300px;}
.y18a{bottom:652.852350px;}
.y1cd{bottom:654.596850px;}
.y22a{bottom:655.006350px;}
.y50{bottom:655.948500px;}
.yc9{bottom:657.613350px;}
.y2a{bottom:658.228350px;}
.y1ee{bottom:658.313850px;}
.y1ab{bottom:658.481250px;}
.y78{bottom:659.683350px;}
.yb7{bottom:659.689350px;}
.y165{bottom:663.838350px;}
.y20a{bottom:664.157100px;}
.y99{bottom:667.127850px;}
.y120{bottom:667.411350px;}
.y274{bottom:670.197750px;}
.y145{bottom:670.637100px;}
.yef{bottom:672.155100px;}
.y252{bottom:672.221100px;}
.y189{bottom:673.673100px;}
.y229{bottom:676.473600px;}
.y4f{bottom:676.516050px;}
.yc8{bottom:678.037350px;}
.y29{bottom:678.268350px;}
.y77{bottom:679.934850px;}
.yb6{bottom:679.940850px;}
.y1aa{bottom:680.578500px;}
.y1cc{bottom:683.608350px;}
.y9{bottom:684.339300px;}
.y241{bottom:684.978600px;}
.y209{bottom:686.033850px;}
.y164{bottom:686.563350px;}
.y1ed{bottom:687.955350px;}
.y98{bottom:687.983100px;}
.y11f{bottom:688.801350px;}
.y273{bottom:689.697750px;}
.y144{bottom:691.733850px;}
.y251{bottom:692.491350px;}
.yee{bottom:693.113850px;}
.y188{bottom:694.493850px;}
.y4e{bottom:697.078050px;}
.y28{bottom:698.308350px;}
.yc7{bottom:698.461350px;}
.y76{bottom:700.186350px;}
.yb5{bottom:700.192350px;}
.y1a9{bottom:702.675750px;}
.y1cb{bottom:704.114850px;}
.y228{bottom:706.445850px;}
.y97{bottom:708.838350px;}
.y272{bottom:709.197750px;}
.y163{bottom:709.288350px;}
.y11e{bottom:710.191350px;}
.y250{bottom:712.761600px;}
.y143{bottom:712.830600px;}
.yed{bottom:714.072600px;}
.y187{bottom:715.314600px;}
.y208{bottom:716.415600px;}
.y8{bottom:716.496300px;}
.y1ec{bottom:717.596850px;}
.y4d{bottom:717.640050px;}
.y27{bottom:718.356450px;}
.yc6{bottom:718.885350px;}
.y75{bottom:720.437850px;}
.yb4{bottom:720.443850px;}
.y1ca{bottom:724.621350px;}
.y1a8{bottom:724.773000px;}
.y227{bottom:727.913100px;}
.y271{bottom:728.697750px;}
.y96{bottom:729.693600px;}
.y11d{bottom:731.581350px;}
.y162{bottom:732.013350px;}
.y24f{bottom:733.031850px;}
.y142{bottom:733.927350px;}
.yec{bottom:735.031350px;}
.y186{bottom:736.135350px;}
.y4c{bottom:738.202050px;}
.y26{bottom:738.396450px;}
.yc5{bottom:739.309350px;}
.y74{bottom:740.689350px;}
.yb3{bottom:740.695350px;}
.y1a7{bottom:746.870250px;}
.y1eb{bottom:747.238350px;}
.y270{bottom:748.197750px;}
.y161{bottom:750.013350px;}
.y95{bottom:750.548850px;}
.y11c{bottom:752.971350px;}
.y24e{bottom:753.302100px;}
.y1c9{bottom:753.632850px;}
.y141{bottom:755.024100px;}
.yeb{bottom:755.990100px;}
.y185{bottom:756.956100px;}
.y226{bottom:757.885350px;}
.y4b{bottom:758.764050px;}
.yc4{bottom:759.733350px;}
.y73{bottom:760.940850px;}
.yb2{bottom:760.946850px;}
.y26f{bottom:767.697750px;}
.y1ea{bottom:768.374850px;}
.y207{bottom:768.800100px;}
.y1a6{bottom:768.967500px;}
.y25{bottom:771.201450px;}
.y94{bottom:771.404100px;}
.y24d{bottom:773.572350px;}
.y1c8{bottom:774.139350px;}
.y11b{bottom:774.361350px;}
.y140{bottom:776.120850px;}
.yea{bottom:776.948850px;}
.y184{bottom:777.776850px;}
.y7{bottom:778.393800px;}
.y4a{bottom:779.326050px;}
.y225{bottom:779.352600px;}
.y160{bottom:779.868900px;}
.yc3{bottom:780.157350px;}
.y72{bottom:781.192350px;}
.yb1{bottom:781.198350px;}
.y26e{bottom:787.197750px;}
.y1a5{bottom:791.064750px;}
.y93{bottom:792.267300px;}
.y24c{bottom:793.842600px;}
.y11a{bottom:795.751350px;}
.y13f{bottom:797.217600px;}
.ye9{bottom:797.907600px;}
.y1e9{bottom:798.016350px;}
.y183{bottom:798.597600px;}
.y206{bottom:799.181850px;}
.y15f{bottom:799.728900px;}
.y49{bottom:799.888050px;}
.yc2{bottom:800.581350px;}
.y71{bottom:801.443850px;}
.yb0{bottom:801.449850px;}
.y1c7{bottom:803.150850px;}
.y26d{bottom:806.697750px;}
.y6{bottom:808.558800px;}
.y224{bottom:809.324850px;}
.y92{bottom:813.122550px;}
.y1a4{bottom:813.162000px;}
.y24b{bottom:814.112850px;}
.y119{bottom:817.141350px;}
.y13e{bottom:818.314350px;}
.ye8{bottom:818.866350px;}
.y1e8{bottom:819.152850px;}
.y182{bottom:819.418350px;}
.y48{bottom:820.453350px;}
.yc1{bottom:821.005350px;}
.y24{bottom:821.016450px;}
.y70{bottom:821.695350px;}
.y1c6{bottom:823.657350px;}
.y26c{bottom:826.197750px;}
.y205{bottom:829.563600px;}
.y5{bottom:830.218800px;}
.y223{bottom:830.792100px;}
.y91{bottom:833.977800px;}
.y24a{bottom:834.383100px;}
.y1a3{bottom:835.259250px;}
.y118{bottom:838.531350px;}
.y13d{bottom:839.411100px;}
.ye7{bottom:839.825100px;}
.y181{bottom:840.239100px;}
.y1e7{bottom:840.289350px;}
.y15e{bottom:840.860100px;}
.y47{bottom:841.015350px;}
.yc0{bottom:841.429350px;}
.y6f{bottom:841.946850px;}
.y23{bottom:842.556450px;}
.y26b{bottom:845.697750px;}
.y204{bottom:851.440350px;}
.y1c5{bottom:852.668850px;}
.y249{bottom:854.653350px;}
.y1a2{bottom:857.356500px;}
.y117{bottom:859.921350px;}
.y4{bottom:860.383800px;}
.y13c{bottom:860.507850px;}
.y222{bottom:860.764350px;}
.ye6{bottom:860.783850px;}
.y180{bottom:861.059850px;}
.y1e6{bottom:861.425850px;}
.y15d{bottom:861.473850px;}
.y46{bottom:861.577350px;}
.ybf{bottom:861.853350px;}
.y6e{bottom:862.198350px;}
.y22{bottom:864.117750px;}
.y26a{bottom:865.197750px;}
.y90{bottom:876.102450px;}
.y116{bottom:881.311350px;}
.y13b{bottom:881.604600px;}
.ye5{bottom:881.742600px;}
.y203{bottom:881.822100px;}
.y17f{bottom:881.880600px;}
.y3{bottom:882.043800px;}
.y15c{bottom:882.087600px;}
.y45{bottom:882.139350px;}
.y221{bottom:882.231600px;}
.ybe{bottom:882.277350px;}
.y6d{bottom:882.449850px;}
.y1e5{bottom:882.562350px;}
.y248{bottom:883.428600px;}
.y21{bottom:884.157750px;}
.y269{bottom:884.697750px;}
.y8f{bottom:900.706200px;}
.y44{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y20{bottom:904.197750px;}
.y1f{bottom:948.189000px;}
.y43{bottom:966.189000px;}
.hd{height:33.869939px;}
.h11{height:33.870539px;}
.h9{height:40.757812px;}
.hf{height:40.936945px;}
.hc{height:41.396484px;}
.he{height:45.852539px;}
.h12{height:45.924539px;}
.h16{height:47.605957px;}
.h4{height:50.947266px;}
.h1a{height:50.961666px;}
.h10{height:52.918945px;}
.h3{height:53.494629px;}
.hb{height:58.589355px;}
.h14{height:58.613355px;}
.h8{height:58.798828px;}
.h17{height:58.908555px;}
.h13{height:59.600098px;}
.h18{height:61.738770px;}
.h2{height:63.684082px;}
.h15{height:67.618652px;}
.ha{height:68.778809px;}
.h6{height:71.326172px;}
.h7{height:71.333972px;}
.h19{height:71.362772px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x18{left:80.958450px;}
.x8{left:82.449600px;}
.x6{left:83.490600px;}
.x1{left:85.039350px;}
.xd{left:103.724700px;}
.x7{left:105.029250px;}
.x5{left:106.365600px;}
.xa{left:115.645050px;}
.xf{left:121.134900px;}
.xe{left:123.113700px;}
.x13{left:128.298000px;}
.x16{left:131.733000px;}
.x17{left:133.038000px;}
.xb{left:158.020050px;}
.xc{left:159.325050px;}
.x9{left:191.698500px;}
.x4{left:230.529900px;}
.x3{left:231.879900px;}
.x2{left:233.439750px;}
.x10{left:351.580200px;}
.x11{left:352.915200px;}
.x12{left:354.730200px;}
.x14{left:433.173000px;}
.x15{left:437.613000px;}
@media print{
.v4{vertical-align:-10.651200pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.714667pt;}
.v2{vertical-align:12.397867pt;}
.v3{vertical-align:15.090667pt;}
.v1{vertical-align:19.537600pt;}
.ls6{letter-spacing:-9.024000pt;}
.ls1f{letter-spacing:-3.312000pt;}
.ls21{letter-spacing:-2.882667pt;}
.ls20{letter-spacing:-2.453333pt;}
.ls27{letter-spacing:-2.208000pt;}
.ls26{letter-spacing:-2.024000pt;}
.ls18{letter-spacing:-1.840000pt;}
.ls16{letter-spacing:-1.778667pt;}
.ls1a{letter-spacing:-1.656000pt;}
.ls14{letter-spacing:-1.472000pt;}
.ls15{letter-spacing:-1.349333pt;}
.ls10{letter-spacing:-1.200000pt;}
.ls1c{letter-spacing:-1.042667pt;}
.ls30{letter-spacing:-0.896000pt;}
.ls1b{letter-spacing:-0.613333pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls1d{letter-spacing:-0.122667pt;}
.ls2c{letter-spacing:-0.072000pt;}
.ls2a{letter-spacing:-0.061333pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000267pt;}
.ls19{letter-spacing:0.116533pt;}
.lsf{letter-spacing:0.323696pt;}
.ls7{letter-spacing:1.175328pt;}
.ls5{letter-spacing:1.248000pt;}
.ls1{letter-spacing:1.456000pt;}
.ls13{letter-spacing:1.533333pt;}
.lsa{letter-spacing:3.712000pt;}
.ls9{letter-spacing:3.733333pt;}
.ls12{letter-spacing:4.400000pt;}
.lsc{letter-spacing:4.853333pt;}
.ls2b{letter-spacing:4.866667pt;}
.ls8{letter-spacing:5.120000pt;}
.lsd{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls2d{letter-spacing:5.600000pt;}
.ls33{letter-spacing:5.666667pt;}
.ls24{letter-spacing:6.533333pt;}
.ls1e{letter-spacing:6.866667pt;}
.ls25{letter-spacing:7.053333pt;}
.ls11{letter-spacing:7.066667pt;}
.lsb{letter-spacing:7.200000pt;}
.ls23{letter-spacing:7.253472pt;}
.ls22{letter-spacing:7.254005pt;}
.ls17{letter-spacing:7.333333pt;}
.ls2f{letter-spacing:7.392000pt;}
.ls29{letter-spacing:7.400000pt;}
.ls3{letter-spacing:7.466667pt;}
.ls2e{letter-spacing:7.733333pt;}
.ls31{letter-spacing:7.840000pt;}
.ls32{letter-spacing:17.136000pt;}
.ls28{letter-spacing:21.926667pt;}
.ws3e{word-spacing:-26.466667pt;}
.ws38{word-spacing:-26.133333pt;}
.ws1e{word-spacing:-26.066667pt;}
.ws9{word-spacing:-25.933333pt;}
.ws15{word-spacing:-25.800000pt;}
.ws27{word-spacing:-25.600000pt;}
.ws2c{word-spacing:-25.266667pt;}
.ws46{word-spacing:-24.400000pt;}
.ws3c{word-spacing:-23.600000pt;}
.ws44{word-spacing:-23.576000pt;}
.ws19{word-spacing:-23.133333pt;}
.ws3f{word-spacing:-23.128000pt;}
.ws45{word-spacing:-20.320000pt;}
.wsc{word-spacing:-20.213333pt;}
.ws3d{word-spacing:-20.160000pt;}
.ws1{word-spacing:-20.106667pt;}
.ws10{word-spacing:-17.234667pt;}
.ws42{word-spacing:-15.736000pt;}
.wsa{word-spacing:-15.344000pt;}
.ws1a{word-spacing:-15.149333pt;}
.ws39{word-spacing:-15.088000pt;}
.ws36{word-spacing:-14.986667pt;}
.ws24{word-spacing:-14.536000pt;}
.ws43{word-spacing:-13.832000pt;}
.ws1b{word-spacing:-13.800000pt;}
.ws23{word-spacing:-13.493333pt;}
.ws14{word-spacing:-13.488000pt;}
.ws0{word-spacing:-13.407445pt;}
.ws1c{word-spacing:-13.370667pt;}
.ws1f{word-spacing:-13.309333pt;}
.wsb{word-spacing:-13.173333pt;}
.ws2d{word-spacing:-13.125333pt;}
.ws37{word-spacing:-12.941333pt;}
.ws41{word-spacing:-12.936000pt;}
.ws2a{word-spacing:-12.696000pt;}
.ws13{word-spacing:-11.856000pt;}
.ws12{word-spacing:-10.656000pt;}
.ws11{word-spacing:-10.047811pt;}
.wsd{word-spacing:-8.737227pt;}
.ws5{word-spacing:-7.466667pt;}
.ws35{word-spacing:-7.053333pt;}
.ws40{word-spacing:-5.600000pt;}
.ws4{word-spacing:-5.333333pt;}
.wsf{word-spacing:-3.733333pt;}
.wse{word-spacing:-3.712000pt;}
.ws29{word-spacing:-3.312000pt;}
.ws3{word-spacing:-1.456000pt;}
.ws7{word-spacing:-1.248000pt;}
.ws18{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws25{word-spacing:0.061333pt;}
.ws26{word-spacing:0.122667pt;}
.ws6{word-spacing:0.160000pt;}
.ws22{word-spacing:0.613333pt;}
.ws1d{word-spacing:1.472000pt;}
.ws3a{word-spacing:1.778667pt;}
.ws3b{word-spacing:1.962667pt;}
.ws20{word-spacing:2.453333pt;}
.ws2b{word-spacing:2.882667pt;}
.ws21{word-spacing:3.005333pt;}
.ws28{word-spacing:3.312000pt;}
.ws16{word-spacing:4.464000pt;}
.ws17{word-spacing:5.808000pt;}
.ws8{word-spacing:9.024000pt;}
.ws32{word-spacing:582.453333pt;}
.ws34{word-spacing:584.906667pt;}
.ws2e{word-spacing:585.493333pt;}
.ws2f{word-spacing:589.706667pt;}
.ws31{word-spacing:590.560000pt;}
.ws30{word-spacing:591.413333pt;}
.ws33{word-spacing:596.053333pt;}
._30{margin-left:-16.992533pt;}
._42{margin-left:-15.289333pt;}
._46{margin-left:-8.146133pt;}
._d{margin-left:-7.123733pt;}
._2f{margin-left:-6.096533pt;}
._3{margin-left:-5.202400pt;}
._8{margin-left:-4.186400pt;}
._7{margin-left:-3.197867pt;}
._5{margin-left:-1.467200pt;}
._4{width:1.103200pt;}
._1{width:2.133333pt;}
._c{width:3.030667pt;}
._9{width:4.696267pt;}
._6{width:5.735733pt;}
._a{width:6.672000pt;}
._b{width:7.646133pt;}
._11{width:8.669333pt;}
._f{width:9.609600pt;}
._10{width:11.142933pt;}
._e{width:12.070133pt;}
._1f{width:13.359200pt;}
._1e{width:14.272267pt;}
._2a{width:15.748267pt;}
._43{width:17.170667pt;}
._2e{width:18.277333pt;}
._45{width:19.202667pt;}
._17{width:20.117333pt;}
._1c{width:21.531200pt;}
._41{width:22.627467pt;}
._48{width:23.628533pt;}
._37{width:24.625920pt;}
._14{width:25.926400pt;}
._47{width:26.964000pt;}
._44{width:31.234731pt;}
._38{width:32.404267pt;}
._1b{width:35.022832pt;}
._1a{width:36.742768pt;}
._18{width:38.617920pt;}
._2b{width:45.129333pt;}
._1d{width:46.820800pt;}
._49{width:62.742400pt;}
._13{width:76.048000pt;}
._19{width:163.921968pt;}
._22{width:228.923467pt;}
._15{width:231.653333pt;}
._31{width:237.304267pt;}
._21{width:252.824267pt;}
._32{width:282.764000pt;}
._40{width:432.360000pt;}
._12{width:435.173333pt;}
._2d{width:436.200000pt;}
._29{width:438.979733pt;}
._4a{width:441.076533pt;}
._39{width:501.546667pt;}
._3b{width:504.906667pt;}
._0{width:514.133333pt;}
._3d{width:520.000000pt;}
._33{width:550.240000pt;}
._35{width:552.960000pt;}
._23{width:554.186667pt;}
._26{width:572.053333pt;}
._34{width:590.773333pt;}
._25{width:600.853333pt;}
._24{width:604.053333pt;}
._36{width:608.373333pt;}
._27{width:613.333333pt;}
._28{width:627.200000pt;}
._3a{width:693.760000pt;}
._3c{width:709.546667pt;}
._3e{width:720.106667pt;}
._3f{width:725.120000pt;}
._16{width:882.854400pt;}
._2c{width:885.627733pt;}
._2{width:889.227733pt;}
._20{width:890.987733pt;}
.fsc{font-size:27.984000pt;}
.fs8{font-size:31.093333pt;}
.fsb{font-size:35.757333pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs5{font-size:43.530667pt;}
.fsd{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fsa{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs9{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y1c4{bottom:94.266667pt;}
.ye4{bottom:94.369200pt;}
.y240{bottom:94.383867pt;}
.y1e{bottom:94.441867pt;}
.y10a{bottom:94.461200pt;}
.y13a{bottom:94.475067pt;}
.y42{bottom:94.476800pt;}
.y6c{bottom:94.480267pt;}
.y8e{bottom:94.485600pt;}
.ybd{bottom:94.485733pt;}
.y220{bottom:94.509867pt;}
.y268{bottom:94.512933pt;}
.y17e{bottom:94.526800pt;}
.y1e4{bottom:94.579867pt;}
.y202{bottom:94.663867pt;}
.y115{bottom:96.390533pt;}
.yaf{bottom:97.151067pt;}
.y139{bottom:109.811067pt;}
.y6b{bottom:109.816267pt;}
.y267{bottom:111.859600pt;}
.y1d{bottom:112.361867pt;}
.y8d{bottom:112.484267pt;}
.ybc{bottom:112.484400pt;}
.ye3{bottom:112.523867pt;}
.y1e3{bottom:112.807867pt;}
.y17d{bottom:112.850133pt;}
.y41{bottom:112.968800pt;}
.y109{bottom:113.091200pt;}
.y201{bottom:113.451867pt;}
.y23f{bottom:113.465867pt;}
.y1c3{bottom:113.908667pt;}
.y21f{bottom:113.955867pt;}
.y114{bottom:114.391867pt;}
.y15b{bottom:116.264000pt;}
.y138{bottom:125.147067pt;}
.y6a{bottom:125.152267pt;}
.y8c{bottom:128.913067pt;}
.y266{bottom:129.206267pt;}
.y1c{bottom:130.281867pt;}
.ye2{bottom:130.678533pt;}
.y17c{bottom:131.173467pt;}
.y40{bottom:131.460800pt;}
.y108{bottom:131.721200pt;}
.y113{bottom:132.393200pt;}
.y1c2{bottom:133.550667pt;}
.y1a1{bottom:136.223467pt;}
.yae{bottom:136.292667pt;}
.y1e2{bottom:138.595867pt;}
.y200{bottom:139.799867pt;}
.y23e{bottom:140.107867pt;}
.y69{bottom:140.472267pt;}
.y137{bottom:140.483067pt;}
.y21e{bottom:140.961867pt;}
.y8b{bottom:144.249067pt;}
.y265{bottom:146.552933pt;}
.y1b{bottom:148.201867pt;}
.ye1{bottom:148.833200pt;}
.y17b{bottom:149.496800pt;}
.y107{bottom:150.351200pt;}
.y112{bottom:150.394533pt;}
.y1c1{bottom:153.192667pt;}
.y1a0{bottom:154.730800pt;}
.yad{bottom:154.830667pt;}
.y68{bottom:155.808267pt;}
.y136{bottom:155.819067pt;}
.y1e1{bottom:156.823867pt;}
.y1ff{bottom:158.587867pt;}
.y23d{bottom:159.189867pt;}
.y8a{bottom:159.585067pt;}
.y21d{bottom:160.407867pt;}
.y15a{bottom:161.451733pt;}
.y264{bottom:163.899600pt;}
.y1a{bottom:166.121867pt;}
.ye0{bottom:166.987867pt;}
.y17a{bottom:167.820133pt;}
.y111{bottom:168.395867pt;}
.y3f{bottom:168.844800pt;}
.y106{bottom:168.981200pt;}
.y67{bottom:171.144267pt;}
.ybb{bottom:172.401200pt;}
.y1c0{bottom:172.834667pt;}
.y19f{bottom:173.238133pt;}
.yac{bottom:173.368667pt;}
.y135{bottom:173.817733pt;}
.y89{bottom:174.921067pt;}
.y21c{bottom:179.853867pt;}
.y263{bottom:181.246267pt;}
.y159{bottom:181.651733pt;}
.y1e0{bottom:182.611867pt;}
.y19{bottom:184.041867pt;}
.y1fe{bottom:184.935867pt;}
.ydf{bottom:185.142533pt;}
.y23c{bottom:185.831867pt;}
.y179{bottom:186.143467pt;}
.y110{bottom:186.397200pt;}
.y66{bottom:186.480267pt;}
.y105{bottom:187.611200pt;}
.y88{bottom:190.257067pt;}
.y19e{bottom:191.745467pt;}
.yab{bottom:191.906667pt;}
.y1bf{bottom:192.476667pt;}
.y262{bottom:198.592933pt;}
.y1df{bottom:200.839867pt;}
.y65{bottom:201.816267pt;}
.y158{bottom:201.851733pt;}
.y18{bottom:201.961867pt;}
.yde{bottom:203.297200pt;}
.y10f{bottom:204.398533pt;}
.y178{bottom:204.466800pt;}
.y23b{bottom:204.913867pt;}
.y87{bottom:205.593067pt;}
.y104{bottom:206.241200pt;}
.y21b{bottom:206.859867pt;}
.y19d{bottom:210.252800pt;}
.yaa{bottom:210.444667pt;}
.y1be{bottom:212.118667pt;}
.y134{bottom:212.960267pt;}
.y261{bottom:215.939600pt;}
.y64{bottom:217.152267pt;}
.y17{bottom:219.881867pt;}
.y86{bottom:220.929067pt;}
.ydd{bottom:221.451867pt;}
.y157{bottom:222.051733pt;}
.y10e{bottom:222.399867pt;}
.y177{bottom:222.790133pt;}
.y23a{bottom:223.995867pt;}
.y3e{bottom:224.692800pt;}
.y103{bottom:224.871200pt;}
.y21a{bottom:226.305867pt;}
.y1de{bottom:226.627867pt;}
.y19c{bottom:228.760133pt;}
.y1fd{bottom:230.855867pt;}
.y247{bottom:231.555867pt;}
.y1bd{bottom:231.760667pt;}
.y133{bottom:231.973600pt;}
.y260{bottom:233.286267pt;}
.y63{bottom:235.150933pt;}
.y85{bottom:236.265067pt;}
.y16{bottom:237.801867pt;}
.ydc{bottom:239.606533pt;}
.y10d{bottom:240.401200pt;}
.y176{bottom:241.113467pt;}
.y156{bottom:242.251733pt;}
.y102{bottom:243.501200pt;}
.y3d{bottom:243.839467pt;}
.y1dd{bottom:244.855867pt;}
.y219{bottom:245.751867pt;}
.y19b{bottom:247.267467pt;}
.y25f{bottom:250.632933pt;}
.y239{bottom:250.637867pt;}
.y132{bottom:250.986933pt;}
.y1bc{bottom:251.402667pt;}
.y62{bottom:251.595733pt;}
.y84{bottom:251.601067pt;}
.y1fc{bottom:253.423867pt;}
.y15{bottom:255.721867pt;}
.ydb{bottom:257.761200pt;}
.y175{bottom:259.436800pt;}
.y101{bottom:262.131200pt;}
.y155{bottom:262.451733pt;}
.y3c{bottom:262.986133pt;}
.ya9{bottom:264.576267pt;}
.y19a{bottom:265.774800pt;}
.y61{bottom:266.931733pt;}
.y285{bottom:267.504667pt;}
.y25e{bottom:267.976400pt;}
.y238{bottom:269.719867pt;}
.y131{bottom:270.000267pt;}
.y1dc{bottom:270.643867pt;}
.y1bb{bottom:271.044667pt;}
.y218{bottom:272.757867pt;}
.y14{bottom:273.641867pt;}
.yda{bottom:275.915867pt;}
.y1fb{bottom:275.991867pt;}
.y10c{bottom:276.401200pt;}
.y174{bottom:277.760133pt;}
.y100{bottom:280.761200pt;}
.y3b{bottom:282.265200pt;}
.y154{bottom:282.651733pt;}
.y199{bottom:284.282133pt;}
.ya8{bottom:284.776267pt;}
.y60{bottom:284.930400pt;}
.y25d{bottom:285.323067pt;}
.y284{bottom:285.504667pt;}
.y237{bottom:288.801867pt;}
.y1db{bottom:288.871867pt;}
.y130{bottom:289.013600pt;}
.y1ba{bottom:290.686667pt;}
.y13{bottom:291.561867pt;}
.y217{bottom:292.203867pt;}
.yd9{bottom:294.070533pt;}
.y10b{bottom:294.401200pt;}
.y173{bottom:296.083467pt;}
.y246{bottom:296.361867pt;}
.y1fa{bottom:298.559867pt;}
.yff{bottom:299.391200pt;}
.y3a{bottom:300.078533pt;}
.y5f{bottom:301.372667pt;}
.y198{bottom:302.789467pt;}
.y153{bottom:302.851733pt;}
.y283{bottom:303.504667pt;}
.ya7{bottom:304.976267pt;}
.y1da{bottom:307.099867pt;}
.y236{bottom:307.883867pt;}
.y12f{bottom:308.026933pt;}
.y1b9{bottom:310.328667pt;}
.yd8{bottom:312.225200pt;}
.y25c{bottom:314.016400pt;}
.y172{bottom:314.406800pt;}
.y245{bottom:315.443867pt;}
.y5e{bottom:316.708667pt;}
.y39{bottom:317.891867pt;}
.yfe{bottom:318.021200pt;}
.y216{bottom:319.209867pt;}
.y12{bottom:320.815200pt;}
.y1f9{bottom:321.127867pt;}
.y197{bottom:321.296800pt;}
.y282{bottom:321.504667pt;}
.y152{bottom:323.051733pt;}
.ya6{bottom:325.176267pt;}
.y1d9{bottom:325.327867pt;}
.y12e{bottom:327.040267pt;}
.y1b8{bottom:329.970667pt;}
.yd7{bottom:330.379867pt;}
.y5d{bottom:332.044667pt;}
.y171{bottom:332.730133pt;}
.y235{bottom:334.525867pt;}
.y38{bottom:335.705200pt;}
.yfd{bottom:336.651200pt;}
.y215{bottom:338.655867pt;}
.y196{bottom:339.804133pt;}
.y151{bottom:343.251733pt;}
.y1f8{bottom:343.695867pt;}
.ya5{bottom:345.376267pt;}
.y12d{bottom:346.053600pt;}
.yd6{bottom:348.534533pt;}
.y1b7{bottom:349.612667pt;}
.y5c{bottom:350.043333pt;}
.y281{bottom:350.838000pt;}
.y170{bottom:351.053467pt;}
.y1d8{bottom:351.115867pt;}
.y37{bottom:353.518533pt;}
.y234{bottom:353.607867pt;}
.yfc{bottom:355.281200pt;}
.y195{bottom:358.311467pt;}
.y150{bottom:363.451733pt;}
.y12c{bottom:365.066933pt;}
.y25b{bottom:365.373067pt;}
.y214{bottom:365.661867pt;}
.y1f7{bottom:366.263867pt;}
.y5b{bottom:366.488133pt;}
.yd5{bottom:366.689200pt;}
.y1b6{bottom:369.254667pt;}
.y1d7{bottom:369.343867pt;}
.y16f{bottom:369.376800pt;}
.y36{bottom:371.331867pt;}
.ya4{bottom:372.116000pt;}
.y11{bottom:372.745067pt;}
.yfb{bottom:373.911200pt;}
.y194{bottom:376.818800pt;}
.y233{bottom:380.249867pt;}
.y5a{bottom:381.824133pt;}
.y12b{bottom:384.080267pt;}
.yd4{bottom:384.843867pt;}
.y213{bottom:385.107867pt;}
.y16e{bottom:387.700133pt;}
.y280{bottom:387.731333pt;}
.y83{bottom:388.370533pt;}
.y1f6{bottom:388.831867pt;}
.y1b5{bottom:388.896667pt;}
.y35{bottom:389.145200pt;}
.y25a{bottom:389.388933pt;}
.ya3{bottom:389.996000pt;}
.y14f{bottom:390.410533pt;}
.yfa{bottom:392.541200pt;}
.y1d6{bottom:395.131867pt;}
.y193{bottom:395.255200pt;}
.y10{bottom:397.327333pt;}
.y232{bottom:399.331867pt;}
.y59{bottom:399.822800pt;}
.yd3{bottom:402.998533pt;}
.y12a{bottom:403.093600pt;}
.y212{bottom:404.553867pt;}
.y27f{bottom:405.064667pt;}
.y16d{bottom:406.023467pt;}
.y82{bottom:406.371867pt;}
.y34{bottom:406.958533pt;}
.ya2{bottom:407.876000pt;}
.y1b4{bottom:408.538667pt;}
.yf9{bottom:411.171200pt;}
.y1f5{bottom:411.399867pt;}
.y1d5{bottom:413.359867pt;}
.y259{bottom:413.412933pt;}
.y192{bottom:413.762533pt;}
.y58{bottom:416.270267pt;}
.yd2{bottom:421.153200pt;}
.yf{bottom:421.911333pt;}
.y129{bottom:422.134533pt;}
.y27e{bottom:422.398000pt;}
.y16c{bottom:424.346800pt;}
.y81{bottom:424.373200pt;}
.y33{bottom:424.771867pt;}
.y231{bottom:425.973867pt;}
.y14e{bottom:427.380933pt;}
.y1b3{bottom:428.180667pt;}
.yf8{bottom:429.801200pt;}
.y211{bottom:431.559867pt;}
.y191{bottom:432.269867pt;}
.y57{bottom:434.269067pt;}
.y1d4{bottom:439.147867pt;}
.yd1{bottom:439.307867pt;}
.y27d{bottom:439.731333pt;}
.y128{bottom:441.147867pt;}
.y80{bottom:442.374533pt;}
.y32{bottom:442.585200pt;}
.y16b{bottom:442.670133pt;}
.ya1{bottom:444.698533pt;}
.y230{bottom:445.055867pt;}
.y14d{bottom:446.133600pt;}
.y1b2{bottom:447.822667pt;}
.yf7{bottom:448.431200pt;}
.y190{bottom:450.777200pt;}
.y210{bottom:451.005867pt;}
.y27c{bottom:457.064667pt;}
.y1f4{bottom:457.319867pt;}
.y1d3{bottom:457.375867pt;}
.yd0{bottom:457.462533pt;}
.y127{bottom:460.161200pt;}
.y7f{bottom:460.375867pt;}
.y31{bottom:460.398533pt;}
.y16a{bottom:460.993467pt;}
.ya0{bottom:463.236533pt;}
.y22f{bottom:464.137867pt;}
.y14c{bottom:464.886267pt;}
.ye{bottom:465.381600pt;}
.yf6{bottom:467.061200pt;}
.y1b1{bottom:467.464667pt;}
.y18f{bottom:469.284533pt;}
.y20f{bottom:470.451867pt;}
.y244{bottom:471.697867pt;}
.y56{bottom:473.401333pt;}
.y27b{bottom:474.398000pt;}
.y1d2{bottom:475.603867pt;}
.ycf{bottom:475.617200pt;}
.y1f3{bottom:476.107867pt;}
.y30{bottom:478.211867pt;}
.y7e{bottom:478.377200pt;}
.y126{bottom:479.174533pt;}
.y169{bottom:479.316800pt;}
.y9f{bottom:481.774533pt;}
.y258{bottom:481.861867pt;}
.y14b{bottom:483.638933pt;}
.yf5{bottom:485.691200pt;}
.y1b0{bottom:487.106667pt;}
.y18e{bottom:487.791867pt;}
.y22e{bottom:490.779867pt;}
.y55{bottom:491.678667pt;}
.y27a{bottom:491.731333pt;}
.yce{bottom:493.771867pt;}
.yd{bottom:493.965600pt;}
.y1f2{bottom:494.895867pt;}
.y2f{bottom:496.025200pt;}
.y7d{bottom:496.378533pt;}
.y20e{bottom:497.457867pt;}
.y168{bottom:497.640133pt;}
.y125{bottom:498.187867pt;}
.y257{bottom:499.879867pt;}
.y9e{bottom:500.312533pt;}
.y1d1{bottom:501.391867pt;}
.y14a{bottom:502.391600pt;}
.yf4{bottom:504.321200pt;}
.y18d{bottom:506.299200pt;}
.y1af{bottom:506.748667pt;}
.y279{bottom:509.064667pt;}
.y22d{bottom:509.861867pt;}
.y54{bottom:509.956000pt;}
.ycd{bottom:511.926533pt;}
.y1f1{bottom:513.683867pt;}
.y2e{bottom:513.838533pt;}
.y7c{bottom:514.379867pt;}
.y167{bottom:515.963467pt;}
.y20d{bottom:516.903867pt;}
.y124{bottom:517.201200pt;}
.y243{bottom:517.421867pt;}
.y9d{bottom:518.850533pt;}
.y1d0{bottom:519.619867pt;}
.y149{bottom:521.137733pt;}
.yc{bottom:522.549600pt;}
.yf3{bottom:522.951200pt;}
.y256{bottom:525.457867pt;}
.y1ae{bottom:526.390667pt;}
.y278{bottom:526.398000pt;}
.y53{bottom:528.233333pt;}
.ycc{bottom:530.081200pt;}
.y2d{bottom:531.651867pt;}
.y7b{bottom:532.381200pt;}
.yba{bottom:532.386533pt;}
.y123{bottom:536.214533pt;}
.y22c{bottom:536.503867pt;}
.y9c{bottom:537.388533pt;}
.y1cf{bottom:537.847867pt;}
.y148{bottom:539.890400pt;}
.y1f0{bottom:540.031867pt;}
.yf2{bottom:541.581200pt;}
.y18c{bottom:543.298533pt;}
.y255{bottom:543.475867pt;}
.y277{bottom:543.731333pt;}
.y20c{bottom:543.909867pt;}
.y1ad{bottom:546.032667pt;}
.y52{bottom:546.510667pt;}
.ycb{bottom:548.235867pt;}
.y2c{bottom:549.465200pt;}
.y7a{bottom:550.382533pt;}
.yb9{bottom:550.387867pt;}
.yb{bottom:551.133600pt;}
.y122{bottom:555.227867pt;}
.y22b{bottom:555.585867pt;}
.y9b{bottom:555.926533pt;}
.y147{bottom:558.643067pt;}
.y1ef{bottom:558.819867pt;}
.yf1{bottom:560.211200pt;}
.y276{bottom:561.064667pt;}
.y254{bottom:561.493867pt;}
.y18b{bottom:561.805867pt;}
.y242{bottom:563.145867pt;}
.y20b{bottom:563.355867pt;}
.y1ce{bottom:563.635867pt;}
.y51{bottom:564.788000pt;}
.y1ac{bottom:565.674667pt;}
.yca{bottom:566.390533pt;}
.y2b{bottom:567.278533pt;}
.y79{bottom:568.383867pt;}
.yb8{bottom:568.389200pt;}
.y166{bottom:569.878533pt;}
.y121{bottom:574.241200pt;}
.y9a{bottom:574.464533pt;}
.y146{bottom:577.369200pt;}
.y275{bottom:578.398000pt;}
.yf0{bottom:578.841200pt;}
.y253{bottom:579.511867pt;}
.ya{bottom:579.717600pt;}
.y18a{bottom:580.313200pt;}
.y1cd{bottom:581.863867pt;}
.y22a{bottom:582.227867pt;}
.y50{bottom:583.065333pt;}
.yc9{bottom:584.545200pt;}
.y2a{bottom:585.091867pt;}
.y1ee{bottom:585.167867pt;}
.y1ab{bottom:585.316667pt;}
.y78{bottom:586.385200pt;}
.yb7{bottom:586.390533pt;}
.y165{bottom:590.078533pt;}
.y20a{bottom:590.361867pt;}
.y99{bottom:593.002533pt;}
.y120{bottom:593.254533pt;}
.y274{bottom:595.731333pt;}
.y145{bottom:596.121867pt;}
.yef{bottom:597.471200pt;}
.y252{bottom:597.529867pt;}
.y189{bottom:598.820533pt;}
.y229{bottom:601.309867pt;}
.y4f{bottom:601.347600pt;}
.yc8{bottom:602.699867pt;}
.y29{bottom:602.905200pt;}
.y77{bottom:604.386533pt;}
.yb6{bottom:604.391867pt;}
.y1aa{bottom:604.958667pt;}
.y1cc{bottom:607.651867pt;}
.y9{bottom:608.301600pt;}
.y241{bottom:608.869867pt;}
.y209{bottom:609.807867pt;}
.y164{bottom:610.278533pt;}
.y1ed{bottom:611.515867pt;}
.y98{bottom:611.540533pt;}
.y11f{bottom:612.267867pt;}
.y273{bottom:613.064667pt;}
.y144{bottom:614.874533pt;}
.y251{bottom:615.547867pt;}
.yee{bottom:616.101200pt;}
.y188{bottom:617.327867pt;}
.y4e{bottom:619.624933pt;}
.y28{bottom:620.718533pt;}
.yc7{bottom:620.854533pt;}
.y76{bottom:622.387867pt;}
.yb5{bottom:622.393200pt;}
.y1a9{bottom:624.600667pt;}
.y1cb{bottom:625.879867pt;}
.y228{bottom:627.951867pt;}
.y97{bottom:630.078533pt;}
.y272{bottom:630.398000pt;}
.y163{bottom:630.478533pt;}
.y11e{bottom:631.281200pt;}
.y250{bottom:633.565867pt;}
.y143{bottom:633.627200pt;}
.yed{bottom:634.731200pt;}
.y187{bottom:635.835200pt;}
.y208{bottom:636.813867pt;}
.y8{bottom:636.885600pt;}
.y1ec{bottom:637.863867pt;}
.y4d{bottom:637.902267pt;}
.y27{bottom:638.539067pt;}
.yc6{bottom:639.009200pt;}
.y75{bottom:640.389200pt;}
.yb4{bottom:640.394533pt;}
.y1ca{bottom:644.107867pt;}
.y1a8{bottom:644.242667pt;}
.y227{bottom:647.033867pt;}
.y271{bottom:647.731333pt;}
.y96{bottom:648.616533pt;}
.y11d{bottom:650.294533pt;}
.y162{bottom:650.678533pt;}
.y24f{bottom:651.583867pt;}
.y142{bottom:652.379867pt;}
.yec{bottom:653.361200pt;}
.y186{bottom:654.342533pt;}
.y4c{bottom:656.179600pt;}
.y26{bottom:656.352400pt;}
.yc5{bottom:657.163867pt;}
.y74{bottom:658.390533pt;}
.yb3{bottom:658.395867pt;}
.y1a7{bottom:663.884667pt;}
.y1eb{bottom:664.211867pt;}
.y270{bottom:665.064667pt;}
.y161{bottom:666.678533pt;}
.y95{bottom:667.154533pt;}
.y11c{bottom:669.307867pt;}
.y24e{bottom:669.601867pt;}
.y1c9{bottom:669.895867pt;}
.y141{bottom:671.132533pt;}
.yeb{bottom:671.991200pt;}
.y185{bottom:672.849867pt;}
.y226{bottom:673.675867pt;}
.y4b{bottom:674.456933pt;}
.yc4{bottom:675.318533pt;}
.y73{bottom:676.391867pt;}
.yb2{bottom:676.397200pt;}
.y26f{bottom:682.398000pt;}
.y1ea{bottom:682.999867pt;}
.y207{bottom:683.377867pt;}
.y1a6{bottom:683.526667pt;}
.y25{bottom:685.512400pt;}
.y94{bottom:685.692533pt;}
.y24d{bottom:687.619867pt;}
.y1c8{bottom:688.123867pt;}
.y11b{bottom:688.321200pt;}
.y140{bottom:689.885200pt;}
.yea{bottom:690.621200pt;}
.y184{bottom:691.357200pt;}
.y7{bottom:691.905600pt;}
.y4a{bottom:692.734267pt;}
.y225{bottom:692.757867pt;}
.y160{bottom:693.216800pt;}
.yc3{bottom:693.473200pt;}
.y72{bottom:694.393200pt;}
.yb1{bottom:694.398533pt;}
.y26e{bottom:699.731333pt;}
.y1a5{bottom:703.168667pt;}
.y93{bottom:704.237600pt;}
.y24c{bottom:705.637867pt;}
.y11a{bottom:707.334533pt;}
.y13f{bottom:708.637867pt;}
.ye9{bottom:709.251200pt;}
.y1e9{bottom:709.347867pt;}
.y183{bottom:709.864533pt;}
.y206{bottom:710.383867pt;}
.y15f{bottom:710.870133pt;}
.y49{bottom:711.011600pt;}
.yc2{bottom:711.627867pt;}
.y71{bottom:712.394533pt;}
.yb0{bottom:712.399867pt;}
.y1c7{bottom:713.911867pt;}
.y26d{bottom:717.064667pt;}
.y6{bottom:718.718933pt;}
.y224{bottom:719.399867pt;}
.y92{bottom:722.775600pt;}
.y1a4{bottom:722.810667pt;}
.y24b{bottom:723.655867pt;}
.y119{bottom:726.347867pt;}
.y13e{bottom:727.390533pt;}
.ye8{bottom:727.881200pt;}
.y1e8{bottom:728.135867pt;}
.y182{bottom:728.371867pt;}
.y48{bottom:729.291867pt;}
.yc1{bottom:729.782533pt;}
.y24{bottom:729.792400pt;}
.y70{bottom:730.395867pt;}
.y1c6{bottom:732.139867pt;}
.y26c{bottom:734.398000pt;}
.y205{bottom:737.389867pt;}
.y5{bottom:737.972267pt;}
.y223{bottom:738.481867pt;}
.y91{bottom:741.313600pt;}
.y24a{bottom:741.673867pt;}
.y1a3{bottom:742.452667pt;}
.y118{bottom:745.361200pt;}
.y13d{bottom:746.143200pt;}
.ye7{bottom:746.511200pt;}
.y181{bottom:746.879200pt;}
.y1e7{bottom:746.923867pt;}
.y15e{bottom:747.431200pt;}
.y47{bottom:747.569200pt;}
.yc0{bottom:747.937200pt;}
.y6f{bottom:748.397200pt;}
.y23{bottom:748.939067pt;}
.y26b{bottom:751.731333pt;}
.y204{bottom:756.835867pt;}
.y1c5{bottom:757.927867pt;}
.y249{bottom:759.691867pt;}
.y1a2{bottom:762.094667pt;}
.y117{bottom:764.374533pt;}
.y4{bottom:764.785600pt;}
.y13c{bottom:764.895867pt;}
.y222{bottom:765.123867pt;}
.ye6{bottom:765.141200pt;}
.y180{bottom:765.386533pt;}
.y1e6{bottom:765.711867pt;}
.y15d{bottom:765.754533pt;}
.y46{bottom:765.846533pt;}
.ybf{bottom:766.091867pt;}
.y6e{bottom:766.398533pt;}
.y22{bottom:768.104667pt;}
.y26a{bottom:769.064667pt;}
.y90{bottom:778.757733pt;}
.y116{bottom:783.387867pt;}
.y13b{bottom:783.648533pt;}
.ye5{bottom:783.771200pt;}
.y203{bottom:783.841867pt;}
.y17f{bottom:783.893867pt;}
.y3{bottom:784.038933pt;}
.y15c{bottom:784.077867pt;}
.y45{bottom:784.123867pt;}
.y221{bottom:784.205867pt;}
.ybe{bottom:784.246533pt;}
.y6d{bottom:784.399867pt;}
.y1e5{bottom:784.499867pt;}
.y248{bottom:785.269867pt;}
.y21{bottom:785.918000pt;}
.y269{bottom:786.398000pt;}
.y8f{bottom:800.627733pt;}
.y44{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y20{bottom:803.731333pt;}
.y1f{bottom:842.834667pt;}
.y43{bottom:858.834667pt;}
.hd{height:30.106613pt;}
.h11{height:30.107146pt;}
.h9{height:36.229167pt;}
.hf{height:36.388396pt;}
.hc{height:36.796875pt;}
.he{height:40.757812pt;}
.h12{height:40.821813pt;}
.h16{height:42.316406pt;}
.h4{height:45.286458pt;}
.h1a{height:45.299258pt;}
.h10{height:47.039062pt;}
.h3{height:47.550781pt;}
.hb{height:52.079427pt;}
.h14{height:52.100760pt;}
.h8{height:52.265625pt;}
.h17{height:52.363160pt;}
.h13{height:52.977865pt;}
.h18{height:54.878906pt;}
.h2{height:56.608073pt;}
.h15{height:60.105469pt;}
.ha{height:61.136719pt;}
.h6{height:63.401042pt;}
.h7{height:63.407975pt;}
.h19{height:63.433575pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x18{left:71.963067pt;}
.x8{left:73.288533pt;}
.x6{left:74.213867pt;}
.x1{left:75.590533pt;}
.xd{left:92.199733pt;}
.x7{left:93.359333pt;}
.x5{left:94.547200pt;}
.xa{left:102.795600pt;}
.xf{left:107.675467pt;}
.xe{left:109.434400pt;}
.x13{left:114.042667pt;}
.x16{left:117.096000pt;}
.x17{left:118.256000pt;}
.xb{left:140.462267pt;}
.xc{left:141.622267pt;}
.x9{left:170.398667pt;}
.x4{left:204.915467pt;}
.x3{left:206.115467pt;}
.x2{left:207.502000pt;}
.x10{left:312.515733pt;}
.x11{left:313.702400pt;}
.x12{left:315.315733pt;}
.x14{left:385.042667pt;}
.x15{left:388.989333pt;}
}




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