
    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_e36fd6a9119d58261bd9a2c3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_76e1b03990dfa246ef592182.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123000;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_5090bfb42611bb508428dfcc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.990000;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_07557bab71ef872b8eef4fdf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.760000;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_c286bc9982e2550ec1f4ed62.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.009000;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_23df1747000a8887c82c871b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.126000;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_4abefedb5773d22b6938be2b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.765625;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;}
.m5{transform:matrix(0.000000,-0.237500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.237500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.237500,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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);}
.m2{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);}
.v4{vertical-align:-19.974600px;}
.v6{vertical-align:-7.182000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.216000px;}
.v5{vertical-align:16.983000px;}
.v3{vertical-align:17.986800px;}
.v1{vertical-align:19.980000px;}
.ls12{letter-spacing:-3.060000px;}
.ls2f{letter-spacing:-2.520000px;}
.ls1f{letter-spacing:-2.460000px;}
.ls1b{letter-spacing:-2.430000px;}
.ls13{letter-spacing:-1.860000px;}
.ls20{letter-spacing:-1.800000px;}
.ls1a{letter-spacing:-1.620000px;}
.ls21{letter-spacing:-1.500000px;}
.ls2d{letter-spacing:-1.350000px;}
.ls2e{letter-spacing:-1.200000px;}
.ls11{letter-spacing:-1.140000px;}
.ls1c{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-1.020000px;}
.lsf{letter-spacing:-0.900000px;}
.lsa{letter-spacing:-0.600000px;}
.ls19{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.510000px;}
.ls3{letter-spacing:-0.480000px;}
.ls4{letter-spacing:-0.456000px;}
.ls9{letter-spacing:-0.420000px;}
.ls18{letter-spacing:-0.378000px;}
.lsb{letter-spacing:-0.349800px;}
.ls8{letter-spacing:-0.315000px;}
.ls30{letter-spacing:-0.270000px;}
.lsc{letter-spacing:-0.244860px;}
.ls29{letter-spacing:-0.216000px;}
.ls35{letter-spacing:-0.162000px;}
.ls2{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.045000px;}
.ls1{letter-spacing:0.051000px;}
.ls16{letter-spacing:0.054000px;}
.ls1d{letter-spacing:0.060000px;}
.ls1e{letter-spacing:0.089199px;}
.lse{letter-spacing:0.104940px;}
.ls15{letter-spacing:0.162000px;}
.ls24{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.324000px;}
.ls7{letter-spacing:0.450000px;}
.ls23{letter-spacing:0.454740px;}
.ls6{letter-spacing:0.510000px;}
.ls28{letter-spacing:0.600000px;}
.ls22{letter-spacing:0.660000px;}
.ls36{letter-spacing:0.702000px;}
.ls31{letter-spacing:0.756000px;}
.ls0{letter-spacing:0.803940px;}
.ls2a{letter-spacing:1.242000px;}
.ls34{letter-spacing:2.376000px;}
.ls33{letter-spacing:2.646000px;}
.ls32{letter-spacing:3.240000px;}
.ls10{letter-spacing:5.160000px;}
.ls2b{letter-spacing:7.276800px;}
.ls2c{letter-spacing:21.360000px;}
.ls27{letter-spacing:70.956000px;}
.ls25{letter-spacing:74.682000px;}
.ls26{letter-spacing:78.408000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws35{word-spacing:-124.956000px;}
.ws32{word-spacing:-91.044000px;}
.ws34{word-spacing:-84.618000px;}
.ws43{word-spacing:-15.876000px;}
.ws1{word-spacing:-15.444000px;}
.ws44{word-spacing:-15.282000px;}
.ws45{word-spacing:-15.012000px;}
.ws2a{word-spacing:-14.700000px;}
.ws2c{word-spacing:-14.640000px;}
.ws2d{word-spacing:-14.220000px;}
.ws3d{word-spacing:-14.100000px;}
.wsd{word-spacing:-14.040000px;}
.ws39{word-spacing:-13.878000px;}
.ws11{word-spacing:-13.620000px;}
.ws12{word-spacing:-13.440000px;}
.ws42{word-spacing:-13.392000px;}
.ws47{word-spacing:-13.338000px;}
.ws16{word-spacing:-13.140000px;}
.ws13{word-spacing:-13.020000px;}
.ws1c{word-spacing:-12.960000px;}
.ws3e{word-spacing:-12.900000px;}
.ws3c{word-spacing:-12.840000px;}
.ws1f{word-spacing:-12.798000px;}
.ws22{word-spacing:-12.690000px;}
.ws1b{word-spacing:-12.636000px;}
.ws29{word-spacing:-12.540000px;}
.ws46{word-spacing:-12.474000px;}
.ws4{word-spacing:-12.444000px;}
.ws2f{word-spacing:-12.420000px;}
.ws3f{word-spacing:-12.366000px;}
.ws1d{word-spacing:-12.258000px;}
.ws28{word-spacing:-12.240000px;}
.ws1e{word-spacing:-12.096000px;}
.ws2{word-spacing:-11.934000px;}
.ws27{word-spacing:-11.580000px;}
.ws23{word-spacing:-11.556000px;}
.ws3{word-spacing:-11.424000px;}
.ws3b{word-spacing:-11.286000px;}
.ws0{word-spacing:-11.232000px;}
.ws21{word-spacing:-11.016000px;}
.ws6{word-spacing:-10.980000px;}
.ws5{word-spacing:-10.530000px;}
.ws2b{word-spacing:-8.640060px;}
.ws26{word-spacing:-8.290260px;}
.wse{word-spacing:-8.185320px;}
.ws10{word-spacing:-7.940460px;}
.wsf{word-spacing:-7.835520px;}
.ws20{word-spacing:-7.366788px;}
.ws17{word-spacing:-5.160000px;}
.ws38{word-spacing:-0.600000px;}
.wsa{word-spacing:-0.510000px;}
.wsb{word-spacing:-0.450000px;}
.ws7{word-spacing:0.000000px;}
.ws41{word-spacing:0.270000px;}
.wsc{word-spacing:0.315000px;}
.ws14{word-spacing:0.420000px;}
.ws9{word-spacing:0.456000px;}
.ws8{word-spacing:0.480000px;}
.ws25{word-spacing:0.540000px;}
.ws15{word-spacing:0.600000px;}
.ws1a{word-spacing:1.020000px;}
.ws18{word-spacing:1.140000px;}
.ws19{word-spacing:1.860000px;}
.ws24{word-spacing:2.430000px;}
.ws40{word-spacing:2.520000px;}
.ws30{word-spacing:16.956000px;}
.ws2e{word-spacing:45.846000px;}
.ws31{word-spacing:47.952000px;}
.ws33{word-spacing:51.570000px;}
.ws37{word-spacing:54.972000px;}
.ws36{word-spacing:62.046000px;}
.ws3a{word-spacing:146.124000px;}
._16{margin-left:-1036.136526px;}
._17{margin-left:-946.941789px;}
._2d{margin-left:-21.180000px;}
._24{margin-left:-10.504800px;}
._14{margin-left:-8.898000px;}
._13{margin-left:-7.752000px;}
._10{margin-left:-6.618000px;}
._f{margin-left:-5.580000px;}
._6{margin-left:-4.207200px;}
._4{margin-left:-2.700000px;}
._5{margin-left:-1.080000px;}
._1{width:1.260000px;}
._2{width:2.503200px;}
._3{width:3.754800px;}
._8{width:5.037600px;}
._7{width:7.007400px;}
._9{width:8.904600px;}
._b{width:10.893600px;}
._c{width:12.645000px;}
._a{width:14.382000px;}
._18{width:16.332000px;}
._30{width:17.649000px;}
._12{width:18.780000px;}
._15{width:20.700000px;}
._2c{width:21.840000px;}
._2e{width:23.004000px;}
._11{width:25.164000px;}
._1a{width:26.365080px;}
._19{width:27.454920px;}
._32{width:29.332800px;}
._2f{width:40.753800px;}
._1e{width:53.964000px;}
._20{width:60.480000px;}
._1d{width:68.058000px;}
._1f{width:73.062000px;}
._23{width:74.682000px;}
._22{width:77.688000px;}
._21{width:78.943200px;}
._1c{width:86.562000px;}
._1b{width:90.828000px;}
._28{width:196.632000px;}
._25{width:277.488000px;}
._27{width:674.766000px;}
._26{width:702.144000px;}
._2a{width:749.502000px;}
._d{width:818.393400px;}
._29{width:950.148000px;}
._2b{width:1944.270000px;}
._31{width:2120.815200px;}
._e{width:2147.815200px;}
._0{width:2665.582200px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,111,158);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:29.733000px;}
.fsa{font-size:31.482000px;}
.fs4{font-size:34.980000px;}
.fs8{font-size:42.000000px;}
.fs0{font-size:45.000000px;}
.fs7{font-size:45.600000px;}
.fs5{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:79.557450px;}
.y76{bottom:111.688500px;}
.ye{bottom:112.440900px;}
.yd{bottom:130.441500px;}
.y75{bottom:131.188500px;}
.ya5{bottom:136.047450px;}
.yd0{bottom:136.055850px;}
.y1a1{bottom:136.063050px;}
.y1f6{bottom:136.231800px;}
.y1d0{bottom:137.472000px;}
.y229{bottom:138.158100px;}
.y146{bottom:138.297150px;}
.y139{bottom:143.280450px;}
.y26b{bottom:147.535650px;}
.y1a0{bottom:150.688050px;}
.y74{bottom:150.688500px;}
.y124{bottom:153.708900px;}
.ya4{bottom:155.592450px;}
.ycf{bottom:155.706450px;}
.y228{bottom:155.708100px;}
.y1f5{bottom:155.731800px;}
.y1cf{bottom:156.972000px;}
.y138{bottom:157.786800px;}
.y145{bottom:157.797150px;}
.y264{bottom:165.085650px;}
.y19e{bottom:169.697550px;}
.y73{bottom:170.188500px;}
.y40{bottom:172.127550px;}
.y123{bottom:173.151300px;}
.y227{bottom:173.258250px;}
.y3c{bottom:173.477550px;}
.ya3{bottom:175.137450px;}
.y1f4{bottom:175.231800px;}
.yce{bottom:175.371450px;}
.y1ce{bottom:176.472000px;}
.y137{bottom:177.286800px;}
.y144{bottom:177.297150px;}
.y19f{bottom:181.619100px;}
.y262{bottom:182.635500px;}
.y263{bottom:182.635650px;}
.y3f{bottom:186.752550px;}
.y11f{bottom:189.351300px;}
.y72{bottom:189.688500px;}
.y19d{bottom:189.947550px;}
.y226{bottom:190.808250px;}
.ya2{bottom:194.682450px;}
.y1f3{bottom:194.731800px;}
.ycd{bottom:194.981700px;}
.y1cd{bottom:195.972000px;}
.y136{bottom:196.786800px;}
.y143{bottom:196.797150px;}
.y261{bottom:200.185500px;}
.y3e{bottom:201.377550px;}
.y11e{bottom:205.550100px;}
.y122{bottom:205.551300px;}
.y225{bottom:208.358250px;}
.y71{bottom:209.188500px;}
.y19b{bottom:211.587000px;}
.y1f2{bottom:214.231800px;}
.ycc{bottom:214.646700px;}
.y1cc{bottom:215.472000px;}
.y3d{bottom:216.002550px;}
.y135{bottom:216.286800px;}
.y142{bottom:216.297150px;}
.y260{bottom:217.735500px;}
.y25f{bottom:217.735650px;}
.y11d{bottom:221.750100px;}
.y121{bottom:221.751300px;}
.y19c{bottom:223.508550px;}
.ya1{bottom:224.862450px;}
.y224{bottom:225.908250px;}
.y70{bottom:228.688500px;}
.y3b{bottom:230.627550px;}
.y19a{bottom:231.837000px;}
.y1f1{bottom:233.731800px;}
.y1cb{bottom:234.972000px;}
.y25e{bottom:235.285650px;}
.y134{bottom:235.786800px;}
.y141{bottom:235.797150px;}
.y11c{bottom:237.950100px;}
.y120{bottom:237.951300px;}
.y223{bottom:243.458100px;}
.y3a{bottom:245.252550px;}
.ycb{bottom:247.061700px;}
.y6f{bottom:248.188500px;}
.y26a{bottom:252.835500px;}
.y25d{bottom:252.835650px;}
.y1f0{bottom:253.231800px;}
.y198{bottom:253.476450px;}
.y1ca{bottom:254.472000px;}
.y133{bottom:255.286800px;}
.y140{bottom:255.297150px;}
.y39{bottom:259.877550px;}
.y11b{bottom:260.441100px;}
.y222{bottom:261.008100px;}
.y221{bottom:261.008250px;}
.y199{bottom:265.398000px;}
.y6e{bottom:267.688500px;}
.ya0{bottom:269.922450px;}
.y269{bottom:270.385500px;}
.y25c{bottom:270.385650px;}
.y1ef{bottom:272.731800px;}
.y197{bottom:273.726450px;}
.y1c9{bottom:273.972000px;}
.y38{bottom:274.502550px;}
.y132{bottom:274.786800px;}
.y13f{bottom:274.797150px;}
.y117{bottom:276.641100px;}
.y220{bottom:278.558250px;}
.yca{bottom:279.476700px;}
.y6d{bottom:287.188500px;}
.y268{bottom:287.935500px;}
.y25b{bottom:287.935650px;}
.y9f{bottom:289.467450px;}
.y1ee{bottom:292.231800px;}
.y116{bottom:292.840050px;}
.y11a{bottom:292.841100px;}
.y1c8{bottom:293.472000px;}
.y131{bottom:294.286800px;}
.y13e{bottom:294.297150px;}
.y195{bottom:295.365900px;}
.y21f{bottom:296.108250px;}
.y267{bottom:305.485500px;}
.y25a{bottom:305.485650px;}
.y6c{bottom:306.688500px;}
.y196{bottom:307.287450px;}
.y9e{bottom:309.012450px;}
.y115{bottom:309.040050px;}
.y119{bottom:309.041100px;}
.y1ed{bottom:311.731800px;}
.y1c7{bottom:312.972000px;}
.y21e{bottom:313.658250px;}
.y130{bottom:313.786800px;}
.y13d{bottom:313.801800px;}
.y194{bottom:315.615900px;}
.yc{bottom:320.856600px;}
.y259{bottom:323.035650px;}
.y114{bottom:325.240050px;}
.y118{bottom:325.241100px;}
.y6b{bottom:326.188500px;}
.y9d{bottom:328.557450px;}
.y21d{bottom:331.208100px;}
.y1ec{bottom:331.231800px;}
.y1c6{bottom:332.472000px;}
.y12f{bottom:333.286800px;}
.y192{bottom:337.255350px;}
.yc9{bottom:338.126700px;}
.y258{bottom:340.585650px;}
.y6a{bottom:345.688500px;}
.y113{bottom:347.731050px;}
.y9c{bottom:348.102450px;}
.y21c{bottom:348.758100px;}
.y193{bottom:349.176900px;}
.y1eb{bottom:350.731800px;}
.y1c5{bottom:351.972000px;}
.y12e{bottom:352.786800px;}
.y13c{bottom:352.801800px;}
.y191{bottom:357.505350px;}
.yc8{bottom:357.791700px;}
.y257{bottom:358.135650px;}
.y112{bottom:363.931050px;}
.y69{bottom:365.188500px;}
.y21b{bottom:366.308100px;}
.y9b{bottom:367.647450px;}
.y1ea{bottom:370.231800px;}
.y1c4{bottom:371.472000px;}
.y12d{bottom:372.286800px;}
.y256{bottom:375.685650px;}
.yc7{bottom:377.456700px;}
.y18f{bottom:379.144950px;}
.y111{bottom:380.131050px;}
.y21a{bottom:383.858100px;}
.y68{bottom:384.688500px;}
.y9a{bottom:387.192450px;}
.y1e9{bottom:389.731800px;}
.y1c3{bottom:390.972000px;}
.y190{bottom:391.066350px;}
.y12c{bottom:391.786800px;}
.y13b{bottom:391.801800px;}
.y255{bottom:393.235650px;}
.y10d{bottom:396.331050px;}
.yc6{bottom:397.121700px;}
.y18e{bottom:399.394950px;}
.y219{bottom:401.408100px;}
.y218{bottom:401.408250px;}
.y67{bottom:404.188500px;}
.y99{bottom:406.737450px;}
.y1e8{bottom:409.231800px;}
.y1c2{bottom:410.472000px;}
.y254{bottom:410.785650px;}
.y12b{bottom:411.286800px;}
.y10c{bottom:412.529850px;}
.y110{bottom:412.531050px;}
.yc5{bottom:416.786700px;}
.y217{bottom:418.958250px;}
.y18c{bottom:421.034400px;}
.y66{bottom:423.688500px;}
.y98{bottom:426.277350px;}
.y253{bottom:428.335650px;}
.y10b{bottom:428.729850px;}
.y10f{bottom:428.731050px;}
.y1e7{bottom:428.731800px;}
.y1c1{bottom:429.972000px;}
.y12a{bottom:430.786800px;}
.y13a{bottom:430.801800px;}
.y18d{bottom:432.955950px;}
.yc4{bottom:436.451700px;}
.y216{bottom:436.508250px;}
.y18b{bottom:441.284400px;}
.y65{bottom:443.188500px;}
.y10a{bottom:444.929850px;}
.y10e{bottom:444.931050px;}
.y97{bottom:445.822350px;}
.y252{bottom:445.885650px;}
.y1e6{bottom:448.231800px;}
.y1c0{bottom:449.472000px;}
.y129{bottom:450.286800px;}
.y215{bottom:454.058250px;}
.yc3{bottom:456.080550px;}
.y64{bottom:462.688500px;}
.y189{bottom:462.925800px;}
.y251{bottom:463.435650px;}
.y96{bottom:465.367350px;}
.y106{bottom:467.420850px;}
.y1e5{bottom:467.731800px;}
.y1bf{bottom:468.972000px;}
.y128{bottom:469.786800px;}
.y214{bottom:471.608250px;}
.y18a{bottom:474.845400px;}
.yc2{bottom:475.745550px;}
.y250{bottom:480.985650px;}
.y63{bottom:482.188500px;}
.y188{bottom:483.175800px;}
.y105{bottom:483.619800px;}
.y109{bottom:483.620850px;}
.y95{bottom:484.912350px;}
.y1e4{bottom:487.231800px;}
.y1be{bottom:488.472000px;}
.y213{bottom:489.158250px;}
.y127{bottom:489.286800px;}
.yc1{bottom:495.410550px;}
.y24f{bottom:498.535650px;}
.y104{bottom:499.819800px;}
.y108{bottom:499.820850px;}
.y62{bottom:501.688500px;}
.y94{bottom:504.457350px;}
.y212{bottom:506.708250px;}
.y1e3{bottom:506.731800px;}
.y187{bottom:507.367800px;}
.y1bd{bottom:507.972000px;}
.y126{bottom:508.786800px;}
.y185{bottom:512.659800px;}
.yc0{bottom:515.075550px;}
.y103{bottom:516.019800px;}
.y107{bottom:516.020850px;}
.y24e{bottom:516.085650px;}
.y61{bottom:521.188500px;}
.y93{bottom:524.002350px;}
.y211{bottom:524.258250px;}
.y1e2{bottom:526.231800px;}
.y1bc{bottom:527.472000px;}
.y125{bottom:528.286800px;}
.y184{bottom:532.909800px;}
.y24d{bottom:533.635650px;}
.ybf{bottom:534.740550px;}
.y186{bottom:536.149800px;}
.y102{bottom:538.510800px;}
.y23{bottom:539.286300px;}
.y37{bottom:539.299050px;}
.y60{bottom:540.688500px;}
.y210{bottom:541.808250px;}
.y92{bottom:543.547350px;}
.y1e1{bottom:545.731800px;}
.y1bb{bottom:546.972000px;}
.y24c{bottom:551.185650px;}
.ybe{bottom:554.362350px;}
.y101{bottom:554.710800px;}
.y22{bottom:555.861300px;}
.y36{bottom:555.874050px;}
.y20f{bottom:559.358250px;}
.y5f{bottom:560.188500px;}
.y91{bottom:563.092350px;}
.y183{bottom:564.748650px;}
.y1e0{bottom:565.231800px;}
.y1ba{bottom:566.472000px;}
.y24b{bottom:568.735650px;}
.yfd{bottom:570.910800px;}
.ybd{bottom:574.027350px;}
.y21{bottom:576.682050px;}
.y35{bottom:576.694800px;}
.y20e{bottom:576.908250px;}
.y5e{bottom:579.688500px;}
.y90{bottom:582.637350px;}
.y1df{bottom:584.731800px;}
.y1b9{bottom:585.972000px;}
.y24a{bottom:586.285650px;}
.yfc{bottom:587.109750px;}
.y100{bottom:587.110800px;}
.y20{bottom:593.257050px;}
.y34{bottom:593.269800px;}
.ybc{bottom:593.692350px;}
.y147{bottom:593.821500px;}
.y20d{bottom:594.458250px;}
.y5d{bottom:599.188500px;}
.y8f{bottom:602.180100px;}
.yfb{bottom:603.309750px;}
.yff{bottom:603.310800px;}
.y249{bottom:603.835650px;}
.y1de{bottom:604.231800px;}
.y1b8{bottom:605.472000px;}
.y1f{bottom:609.832050px;}
.y33{bottom:609.844800px;}
.y20b{bottom:612.008100px;}
.y20c{bottom:612.008250px;}
.ybb{bottom:613.357350px;}
.y5c{bottom:618.688500px;}
.yfa{bottom:619.509750px;}
.yfe{bottom:619.510800px;}
.y248{bottom:621.385650px;}
.y8e{bottom:621.725100px;}
.y1dd{bottom:623.731800px;}
.y1b7{bottom:624.972000px;}
.y1e{bottom:626.407050px;}
.y32{bottom:626.419800px;}
.y20a{bottom:629.558100px;}
.y209{bottom:629.558250px;}
.yba{bottom:633.022350px;}
.y5b{bottom:638.188500px;}
.y247{bottom:638.935650px;}
.y8d{bottom:641.270100px;}
.y182{bottom:641.838150px;}
.yf9{bottom:642.000750px;}
.y1d{bottom:642.982050px;}
.y31{bottom:642.994800px;}
.y1dc{bottom:643.231800px;}
.y16e{bottom:643.232250px;}
.y1b6{bottom:644.472000px;}
.y208{bottom:647.108250px;}
.yb9{bottom:652.687350px;}
.y246{bottom:656.485650px;}
.y5a{bottom:657.688500px;}
.yf8{bottom:658.200750px;}
.y1c{bottom:659.557050px;}
.y30{bottom:659.569800px;}
.y8c{bottom:660.815100px;}
.y181{bottom:661.338150px;}
.y1db{bottom:662.731800px;}
.y16d{bottom:662.732250px;}
.y1b5{bottom:663.972000px;}
.y207{bottom:664.658250px;}
.yb8{bottom:672.333150px;}
.y245{bottom:674.035650px;}
.yf7{bottom:674.400750px;}
.y152{bottom:675.975300px;}
.y1b{bottom:676.132050px;}
.y2f{bottom:676.144800px;}
.y59{bottom:677.188500px;}
.y8b{bottom:680.359500px;}
.y180{bottom:680.836800px;}
.y206{bottom:682.208250px;}
.y1da{bottom:682.231800px;}
.y16c{bottom:682.232250px;}
.y1b4{bottom:683.472000px;}
.yf6{bottom:690.600750px;}
.y244{bottom:691.585650px;}
.yb7{bottom:691.998150px;}
.y1a{bottom:692.707050px;}
.y2e{bottom:692.719800px;}
.y58{bottom:696.688500px;}
.y205{bottom:699.758250px;}
.y8a{bottom:699.904650px;}
.y17f{bottom:700.336800px;}
.y1d9{bottom:701.731800px;}
.y16b{bottom:701.732250px;}
.y1b3{bottom:702.972000px;}
.yf2{bottom:706.800750px;}
.y243{bottom:709.135650px;}
.y19{bottom:709.282050px;}
.y2d{bottom:709.294800px;}
.yb6{bottom:711.663150px;}
.y57{bottom:716.188500px;}
.y204{bottom:717.308100px;}
.y89{bottom:719.449650px;}
.y17e{bottom:719.836800px;}
.y1d8{bottom:721.231800px;}
.y16a{bottom:721.232250px;}
.y1b2{bottom:722.471850px;}
.y1d3{bottom:722.472000px;}
.yf1{bottom:722.999550px;}
.yf5{bottom:723.000750px;}
.y18{bottom:725.857050px;}
.y2c{bottom:725.869800px;}
.y242{bottom:726.685650px;}
.y158{bottom:733.253550px;}
.y203{bottom:734.858250px;}
.y56{bottom:735.688500px;}
.y88{bottom:738.994650px;}
.yf0{bottom:739.199550px;}
.yf4{bottom:739.200750px;}
.y1d7{bottom:740.731800px;}
.y169{bottom:740.732250px;}
.y1b1{bottom:741.971850px;}
.yb5{bottom:744.078150px;}
.y241{bottom:744.235650px;}
.y17{bottom:746.677800px;}
.y2b{bottom:746.690550px;}
.y157{bottom:749.453550px;}
.y17d{bottom:749.971800px;}
.y202{bottom:752.408100px;}
.y55{bottom:755.188500px;}
.yef{bottom:755.399550px;}
.yf3{bottom:755.400750px;}
.y87{bottom:758.539650px;}
.y1d6{bottom:760.231800px;}
.y168{bottom:760.232250px;}
.y1b0{bottom:761.471850px;}
.y240{bottom:761.785650px;}
.y16{bottom:763.252800px;}
.y2a{bottom:763.265550px;}
.y201{bottom:769.958100px;}
.y54{bottom:774.688500px;}
.yee{bottom:777.890550px;}
.y23f{bottom:779.335650px;}
.y1d5{bottom:779.731800px;}
.y167{bottom:779.732250px;}
.y15{bottom:779.827800px;}
.y29{bottom:779.840550px;}
.y1af{bottom:780.971850px;}
.y200{bottom:787.508100px;}
.y86{bottom:790.834650px;}
.yb4{bottom:793.392450px;}
.yea{bottom:794.090550px;}
.y53{bottom:794.188500px;}
.y14{bottom:796.402800px;}
.y28{bottom:796.415550px;}
.y23e{bottom:796.885650px;}
.y17c{bottom:799.231800px;}
.y166{bottom:799.232250px;}
.y1d2{bottom:800.472000px;}
.y151{bottom:804.967350px;}
.y1ff{bottom:805.058100px;}
.ye9{bottom:810.289500px;}
.yed{bottom:810.290550px;}
.y85{bottom:810.379650px;}
.y13{bottom:812.977800px;}
.y27{bottom:812.990550px;}
.yb3{bottom:813.057450px;}
.y52{bottom:813.688500px;}
.y23d{bottom:814.435650px;}
.y17b{bottom:818.731800px;}
.y165{bottom:818.732250px;}
.y1ae{bottom:819.971850px;}
.y1d1{bottom:819.972000px;}
.y150{bottom:821.167350px;}
.y1fe{bottom:822.608250px;}
.ye8{bottom:826.489500px;}
.yec{bottom:826.490550px;}
.y12{bottom:829.552800px;}
.y26{bottom:829.565550px;}
.y23c{bottom:831.985650px;}
.yb2{bottom:832.722450px;}
.y51{bottom:833.188500px;}
.y17a{bottom:838.231800px;}
.y164{bottom:838.232250px;}
.y1fd{bottom:840.158250px;}
.y84{bottom:842.674650px;}
.ye7{bottom:842.689500px;}
.yeb{bottom:842.690550px;}
.y11{bottom:846.127800px;}
.y25{bottom:846.140550px;}
.y23b{bottom:849.535650px;}
.yb1{bottom:852.387450px;}
.y156{bottom:852.683550px;}
.y50{bottom:852.688500px;}
.y179{bottom:857.731800px;}
.y163{bottom:857.732250px;}
.ye6{bottom:865.180500px;}
.y10{bottom:866.948550px;}
.y24{bottom:866.961300px;}
.y23a{bottom:867.085650px;}
.y155{bottom:868.883550px;}
.yb0{bottom:872.052450px;}
.y4f{bottom:872.188500px;}
.y1fc{bottom:877.208100px;}
.y178{bottom:877.231800px;}
.y162{bottom:877.232250px;}
.ye2{bottom:881.380500px;}
.y239{bottom:884.635650px;}
.y4e{bottom:891.688500px;}
.yaf{bottom:891.717450px;}
.y1ad{bottom:892.233300px;}
.y83{bottom:896.239650px;}
.y177{bottom:896.731800px;}
.y161{bottom:896.732250px;}
.ye1{bottom:897.579300px;}
.ye5{bottom:897.580500px;}
.y238{bottom:902.185650px;}
.y14f{bottom:902.553300px;}
.y4d{bottom:911.188500px;}
.yae{bottom:911.382450px;}
.ye0{bottom:913.779300px;}
.ye4{bottom:913.780500px;}
.y1ac{bottom:914.724300px;}
.y82{bottom:915.784650px;}
.y176{bottom:916.231800px;}
.y160{bottom:916.232250px;}
.y237{bottom:919.735650px;}
.y6{bottom:927.182250px;}
.ydf{bottom:929.979300px;}
.ye3{bottom:929.980500px;}
.y4c{bottom:930.688500px;}
.y81{bottom:935.329650px;}
.y1fb{bottom:935.698650px;}
.y175{bottom:935.731800px;}
.y15f{bottom:935.732250px;}
.y1ab{bottom:937.215300px;}
.y236{bottom:937.285650px;}
.yad{bottom:943.797450px;}
.y4b{bottom:950.188500px;}
.yde{bottom:952.470300px;}
.y235{bottom:954.835650px;}
.y80{bottom:954.874650px;}
.y1fa{bottom:955.198650px;}
.y174{bottom:955.231800px;}
.y15e{bottom:955.232250px;}
.y154{bottom:956.481750px;}
.y1aa{bottom:959.706300px;}
.yda{bottom:968.670300px;}
.y4a{bottom:969.688500px;}
.y5{bottom:969.941850px;}
.y234{bottom:972.385650px;}
.y153{bottom:972.681750px;}
.y7f{bottom:974.419650px;}
.y173{bottom:974.731800px;}
.y15d{bottom:974.732250px;}
.y1a9{bottom:982.197300px;}
.yd9{bottom:984.869100px;}
.ydd{bottom:984.870300px;}
.y49{bottom:989.188500px;}
.y233{bottom:989.935650px;}
.yac{bottom:993.222450px;}
.y7e{bottom:993.964650px;}
.y4{bottom:994.091850px;}
.y1f9{bottom:994.215300px;}
.y15c{bottom:994.231800px;}
.y14e{bottom:1000.616700px;}
.yd8{bottom:1001.069100px;}
.ydc{bottom:1001.070300px;}
.y1a8{bottom:1004.688300px;}
.y232{bottom:1007.485650px;}
.y48{bottom:1008.688500px;}
.y148{bottom:1008.937050px;}
.yab{bottom:1012.887450px;}
.y7d{bottom:1013.506800px;}
.y1f8{bottom:1013.715300px;}
.y172{bottom:1013.731800px;}
.y14d{bottom:1016.816700px;}
.yd7{bottom:1017.269100px;}
.ydb{bottom:1017.270300px;}
.y231{bottom:1025.035650px;}
.y230{bottom:1025.035800px;}
.y1a7{bottom:1027.179300px;}
.y47{bottom:1028.188500px;}
.yaa{bottom:1032.552450px;}
.y14c{bottom:1033.016700px;}
.y7c{bottom:1033.051800px;}
.y1f7{bottom:1033.215300px;}
.y15b{bottom:1033.231800px;}
.y3{bottom:1035.251850px;}
.yd5{bottom:1039.760100px;}
.y266{bottom:1042.585650px;}
.y22f{bottom:1042.585800px;}
.y46{bottom:1047.688500px;}
.y14b{bottom:1049.216700px;}
.y1a6{bottom:1049.670300px;}
.ya9{bottom:1052.217450px;}
.y7b{bottom:1052.596800px;}
.y1d4{bottom:1052.731800px;}
.y171{bottom:1052.732250px;}
.yd4{bottom:1055.960100px;}
.y2{bottom:1059.401850px;}
.y265{bottom:1060.135650px;}
.y22e{bottom:1060.135800px;}
.yd6{bottom:1064.060100px;}
.y14a{bottom:1065.416700px;}
.y45{bottom:1067.188500px;}
.y1a2{bottom:1069.015200px;}
.ya8{bottom:1071.882450px;}
.y7a{bottom:1072.141800px;}
.yd3{bottom:1072.160100px;}
.y1a4{bottom:1072.160700px;}
.y15a{bottom:1072.231800px;}
.y1a5{bottom:1076.655600px;}
.y22c{bottom:1077.685650px;}
.y22d{bottom:1077.685800px;}
.y149{bottom:1085.869200px;}
.y44{bottom:1086.688500px;}
.yd2{bottom:1088.360100px;}
.y1a3{bottom:1088.360700px;}
.ya7{bottom:1091.547450px;}
.y79{bottom:1091.686800px;}
.y159{bottom:1091.731800px;}
.y170{bottom:1091.732250px;}
.y22b{bottom:1095.235650px;}
.yb{bottom:1102.473300px;}
.y77{bottom:1106.188500px;}
.ya6{bottom:1111.212450px;}
.y78{bottom:1111.231800px;}
.y16f{bottom:1111.232250px;}
.yd1{bottom:1112.779950px;}
.y22a{bottom:1112.785650px;}
.y43{bottom:1125.688500px;}
.ya{bottom:1156.174950px;}
.yf{bottom:1157.337450px;}
.y9{bottom:1170.574950px;}
.y42{bottom:1175.577150px;}
.y41{bottom:1186.623150px;}
.y8{bottom:1193.482950px;}
.y7{bottom:1207.882950px;}
.h22{height:27.609714px;}
.h9{height:31.332000px;}
.h1d{height:32.645400px;}
.hf{height:36.834000px;}
.hc{height:39.465000px;}
.hd{height:39.600000px;}
.h8{height:39.991200px;}
.h21{height:41.343750px;}
.h6{height:42.096000px;}
.he{height:43.050000px;}
.hb{height:44.727000px;}
.ha{height:44.880000px;}
.h1e{height:45.600000px;}
.h2{height:47.358000px;}
.h1c{height:47.520000px;}
.h10{height:52.620000px;}
.h23{height:52.620600px;}
.h1f{height:52.621800px;}
.h12{height:52.622400px;}
.h20{height:52.625400px;}
.h13{height:52.629000px;}
.h11{height:52.631400px;}
.h14{height:52.640400px;}
.h1b{height:52.648800px;}
.h1a{height:52.677600px;}
.h16{height:52.696800px;}
.h18{height:52.764600px;}
.h17{height:52.792800px;}
.h5{height:52.800000px;}
.h19{height:52.839000px;}
.h15{height:53.062800px;}
.h7{height:58.080000px;}
.h4{height:62.748000px;}
.h3{height:73.920000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:68.034600px;}
.xe{left:72.471000px;}
.x1{left:93.543300px;}
.x21{left:97.982850px;}
.xb{left:106.300800px;}
.x8{left:110.551800px;}
.x14{left:117.544200px;}
.x2e{left:119.055150px;}
.xf{left:144.751350px;}
.x10{left:153.256350px;}
.x7{left:178.795200px;}
.x18{left:181.395900px;}
.x15{left:184.820400px;}
.x16{left:191.707425px;}
.x6{left:195.590550px;}
.x23{left:199.990800px;}
.x31{left:202.788300px;}
.x17{left:208.639050px;}
.x32{left:222.133050px;}
.x1a{left:223.762650px;}
.x3a{left:249.172650px;}
.x2f{left:261.686850px;}
.x33{left:292.534050px;}
.x30{left:294.963300px;}
.x19{left:315.853200px;}
.x11{left:365.857050px;}
.x12{left:374.362050px;}
.x34{left:412.951650px;}
.x9{left:463.471800px;}
.x22{left:465.459600px;}
.xa{left:480.480300px;}
.x28{left:488.976450px;}
.x13{left:493.419900px;}
.x36{left:514.728600px;}
.x29{left:531.362550px;}
.x37{left:537.710850px;}
.xc{left:554.377650px;}
.x20{left:558.401700px;}
.x1d{left:563.618400px;}
.x1b{left:564.884700px;}
.x1f{left:569.636400px;}
.x2a{left:586.937100px;}
.x1c{left:592.086525px;}
.x5{left:598.637100px;}
.x2{left:602.597100px;}
.x3{left:615.077100px;}
.x4{left:621.401100px;}
.x2d{left:632.931150px;}
.x1e{left:653.508825px;}
.x2b{left:662.455350px;}
.x3b{left:668.422050px;}
.x38{left:682.002900px;}
.x24{left:711.676800px;}
.x27{left:717.493200px;}
.x39{left:718.506600px;}
.x25{left:731.273400px;}
.x2c{left:734.827800px;}
.x26{left:757.945650px;}
.x35{left:782.872950px;}
@media print{
.v4{vertical-align:-17.755200pt;}
.v6{vertical-align:-6.384000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.525333pt;}
.v5{vertical-align:15.096000pt;}
.v3{vertical-align:15.988267pt;}
.v1{vertical-align:17.760000pt;}
.ls12{letter-spacing:-2.720000pt;}
.ls2f{letter-spacing:-2.240000pt;}
.ls1f{letter-spacing:-2.186667pt;}
.ls1b{letter-spacing:-2.160000pt;}
.ls13{letter-spacing:-1.653333pt;}
.ls20{letter-spacing:-1.600000pt;}
.ls1a{letter-spacing:-1.440000pt;}
.ls21{letter-spacing:-1.333333pt;}
.ls2d{letter-spacing:-1.200000pt;}
.ls2e{letter-spacing:-1.066667pt;}
.ls11{letter-spacing:-1.013333pt;}
.ls1c{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.906667pt;}
.lsf{letter-spacing:-0.800000pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.453333pt;}
.ls3{letter-spacing:-0.426667pt;}
.ls4{letter-spacing:-0.405333pt;}
.ls9{letter-spacing:-0.373333pt;}
.ls18{letter-spacing:-0.336000pt;}
.lsb{letter-spacing:-0.310933pt;}
.ls8{letter-spacing:-0.280000pt;}
.ls30{letter-spacing:-0.240000pt;}
.lsc{letter-spacing:-0.217653pt;}
.ls29{letter-spacing:-0.192000pt;}
.ls35{letter-spacing:-0.144000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.040000pt;}
.ls1{letter-spacing:0.045333pt;}
.ls16{letter-spacing:0.048000pt;}
.ls1d{letter-spacing:0.053333pt;}
.ls1e{letter-spacing:0.079288pt;}
.lse{letter-spacing:0.093280pt;}
.ls15{letter-spacing:0.144000pt;}
.ls24{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.288000pt;}
.ls7{letter-spacing:0.400000pt;}
.ls23{letter-spacing:0.404213pt;}
.ls6{letter-spacing:0.453333pt;}
.ls28{letter-spacing:0.533333pt;}
.ls22{letter-spacing:0.586667pt;}
.ls36{letter-spacing:0.624000pt;}
.ls31{letter-spacing:0.672000pt;}
.ls0{letter-spacing:0.714613pt;}
.ls2a{letter-spacing:1.104000pt;}
.ls34{letter-spacing:2.112000pt;}
.ls33{letter-spacing:2.352000pt;}
.ls32{letter-spacing:2.880000pt;}
.ls10{letter-spacing:4.586667pt;}
.ls2b{letter-spacing:6.468267pt;}
.ls2c{letter-spacing:18.986667pt;}
.ls27{letter-spacing:63.072000pt;}
.ls25{letter-spacing:66.384000pt;}
.ls26{letter-spacing:69.696000pt;}
.ws35{word-spacing:-111.072000pt;}
.ws32{word-spacing:-80.928000pt;}
.ws34{word-spacing:-75.216000pt;}
.ws43{word-spacing:-14.112000pt;}
.ws1{word-spacing:-13.728000pt;}
.ws44{word-spacing:-13.584000pt;}
.ws45{word-spacing:-13.344000pt;}
.ws2a{word-spacing:-13.066667pt;}
.ws2c{word-spacing:-13.013333pt;}
.ws2d{word-spacing:-12.640000pt;}
.ws3d{word-spacing:-12.533333pt;}
.wsd{word-spacing:-12.480000pt;}
.ws39{word-spacing:-12.336000pt;}
.ws11{word-spacing:-12.106667pt;}
.ws12{word-spacing:-11.946667pt;}
.ws42{word-spacing:-11.904000pt;}
.ws47{word-spacing:-11.856000pt;}
.ws16{word-spacing:-11.680000pt;}
.ws13{word-spacing:-11.573333pt;}
.ws1c{word-spacing:-11.520000pt;}
.ws3e{word-spacing:-11.466667pt;}
.ws3c{word-spacing:-11.413333pt;}
.ws1f{word-spacing:-11.376000pt;}
.ws22{word-spacing:-11.280000pt;}
.ws1b{word-spacing:-11.232000pt;}
.ws29{word-spacing:-11.146667pt;}
.ws46{word-spacing:-11.088000pt;}
.ws4{word-spacing:-11.061333pt;}
.ws2f{word-spacing:-11.040000pt;}
.ws3f{word-spacing:-10.992000pt;}
.ws1d{word-spacing:-10.896000pt;}
.ws28{word-spacing:-10.880000pt;}
.ws1e{word-spacing:-10.752000pt;}
.ws2{word-spacing:-10.608000pt;}
.ws27{word-spacing:-10.293333pt;}
.ws23{word-spacing:-10.272000pt;}
.ws3{word-spacing:-10.154667pt;}
.ws3b{word-spacing:-10.032000pt;}
.ws0{word-spacing:-9.984000pt;}
.ws21{word-spacing:-9.792000pt;}
.ws6{word-spacing:-9.760000pt;}
.ws5{word-spacing:-9.360000pt;}
.ws2b{word-spacing:-7.680053pt;}
.ws26{word-spacing:-7.369120pt;}
.wse{word-spacing:-7.275840pt;}
.ws10{word-spacing:-7.058187pt;}
.wsf{word-spacing:-6.964907pt;}
.ws20{word-spacing:-6.548256pt;}
.ws17{word-spacing:-4.586667pt;}
.ws38{word-spacing:-0.533333pt;}
.wsa{word-spacing:-0.453333pt;}
.wsb{word-spacing:-0.400000pt;}
.ws7{word-spacing:0.000000pt;}
.ws41{word-spacing:0.240000pt;}
.wsc{word-spacing:0.280000pt;}
.ws14{word-spacing:0.373333pt;}
.ws9{word-spacing:0.405333pt;}
.ws8{word-spacing:0.426667pt;}
.ws25{word-spacing:0.480000pt;}
.ws15{word-spacing:0.533333pt;}
.ws1a{word-spacing:0.906667pt;}
.ws18{word-spacing:1.013333pt;}
.ws19{word-spacing:1.653333pt;}
.ws24{word-spacing:2.160000pt;}
.ws40{word-spacing:2.240000pt;}
.ws30{word-spacing:15.072000pt;}
.ws2e{word-spacing:40.752000pt;}
.ws31{word-spacing:42.624000pt;}
.ws33{word-spacing:45.840000pt;}
.ws37{word-spacing:48.864000pt;}
.ws36{word-spacing:55.152000pt;}
.ws3a{word-spacing:129.888000pt;}
._16{margin-left:-921.010246pt;}
._17{margin-left:-841.726035pt;}
._2d{margin-left:-18.826667pt;}
._24{margin-left:-9.337600pt;}
._14{margin-left:-7.909333pt;}
._13{margin-left:-6.890667pt;}
._10{margin-left:-5.882667pt;}
._f{margin-left:-4.960000pt;}
._6{margin-left:-3.739733pt;}
._4{margin-left:-2.400000pt;}
._5{margin-left:-0.960000pt;}
._1{width:1.120000pt;}
._2{width:2.225067pt;}
._3{width:3.337600pt;}
._8{width:4.477867pt;}
._7{width:6.228800pt;}
._9{width:7.915200pt;}
._b{width:9.683200pt;}
._c{width:11.240000pt;}
._a{width:12.784000pt;}
._18{width:14.517333pt;}
._30{width:15.688000pt;}
._12{width:16.693333pt;}
._15{width:18.400000pt;}
._2c{width:19.413333pt;}
._2e{width:20.448000pt;}
._11{width:22.368000pt;}
._1a{width:23.435627pt;}
._19{width:24.404373pt;}
._32{width:26.073600pt;}
._2f{width:36.225600pt;}
._1e{width:47.968000pt;}
._20{width:53.760000pt;}
._1d{width:60.496000pt;}
._1f{width:64.944000pt;}
._23{width:66.384000pt;}
._22{width:69.056000pt;}
._21{width:70.171733pt;}
._1c{width:76.944000pt;}
._1b{width:80.736000pt;}
._28{width:174.784000pt;}
._25{width:246.656000pt;}
._27{width:599.792000pt;}
._26{width:624.128000pt;}
._2a{width:666.224000pt;}
._d{width:727.460800pt;}
._29{width:844.576000pt;}
._2b{width:1728.240000pt;}
._31{width:1885.169067pt;}
._e{width:1909.169067pt;}
._0{width:2369.406400pt;}
.fsb{font-size:26.429333pt;}
.fsa{font-size:27.984000pt;}
.fs4{font-size:31.093333pt;}
.fs8{font-size:37.333333pt;}
.fs0{font-size:40.000000pt;}
.fs7{font-size:40.533333pt;}
.fs5{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:70.717733pt;}
.y76{bottom:99.278667pt;}
.ye{bottom:99.947467pt;}
.yd{bottom:115.948000pt;}
.y75{bottom:116.612000pt;}
.ya5{bottom:120.931067pt;}
.yd0{bottom:120.938533pt;}
.y1a1{bottom:120.944933pt;}
.y1f6{bottom:121.094933pt;}
.y1d0{bottom:122.197333pt;}
.y229{bottom:122.807200pt;}
.y146{bottom:122.930800pt;}
.y139{bottom:127.360400pt;}
.y26b{bottom:131.142800pt;}
.y1a0{bottom:133.944933pt;}
.y74{bottom:133.945333pt;}
.y124{bottom:136.630133pt;}
.ya4{bottom:138.304400pt;}
.ycf{bottom:138.405733pt;}
.y228{bottom:138.407200pt;}
.y1f5{bottom:138.428267pt;}
.y1cf{bottom:139.530667pt;}
.y138{bottom:140.254933pt;}
.y145{bottom:140.264133pt;}
.y264{bottom:146.742800pt;}
.y19e{bottom:150.842267pt;}
.y73{bottom:151.278667pt;}
.y40{bottom:153.002267pt;}
.y123{bottom:153.912267pt;}
.y227{bottom:154.007333pt;}
.y3c{bottom:154.202267pt;}
.ya3{bottom:155.677733pt;}
.y1f4{bottom:155.761600pt;}
.yce{bottom:155.885733pt;}
.y1ce{bottom:156.864000pt;}
.y137{bottom:157.588267pt;}
.y144{bottom:157.597467pt;}
.y19f{bottom:161.439200pt;}
.y262{bottom:162.342667pt;}
.y263{bottom:162.342800pt;}
.y3f{bottom:166.002267pt;}
.y11f{bottom:168.312267pt;}
.y72{bottom:168.612000pt;}
.y19d{bottom:168.842267pt;}
.y226{bottom:169.607333pt;}
.ya2{bottom:173.051067pt;}
.y1f3{bottom:173.094933pt;}
.ycd{bottom:173.317067pt;}
.y1cd{bottom:174.197333pt;}
.y136{bottom:174.921600pt;}
.y143{bottom:174.930800pt;}
.y261{bottom:177.942667pt;}
.y3e{bottom:179.002267pt;}
.y11e{bottom:182.711200pt;}
.y122{bottom:182.712267pt;}
.y225{bottom:185.207333pt;}
.y71{bottom:185.945333pt;}
.y19b{bottom:188.077333pt;}
.y1f2{bottom:190.428267pt;}
.ycc{bottom:190.797067pt;}
.y1cc{bottom:191.530667pt;}
.y3d{bottom:192.002267pt;}
.y135{bottom:192.254933pt;}
.y142{bottom:192.264133pt;}
.y260{bottom:193.542667pt;}
.y25f{bottom:193.542800pt;}
.y11d{bottom:197.111200pt;}
.y121{bottom:197.112267pt;}
.y19c{bottom:198.674267pt;}
.ya1{bottom:199.877733pt;}
.y224{bottom:200.807333pt;}
.y70{bottom:203.278667pt;}
.y3b{bottom:205.002267pt;}
.y19a{bottom:206.077333pt;}
.y1f1{bottom:207.761600pt;}
.y1cb{bottom:208.864000pt;}
.y25e{bottom:209.142800pt;}
.y134{bottom:209.588267pt;}
.y141{bottom:209.597467pt;}
.y11c{bottom:211.511200pt;}
.y120{bottom:211.512267pt;}
.y223{bottom:216.407200pt;}
.y3a{bottom:218.002267pt;}
.ycb{bottom:219.610400pt;}
.y6f{bottom:220.612000pt;}
.y26a{bottom:224.742667pt;}
.y25d{bottom:224.742800pt;}
.y1f0{bottom:225.094933pt;}
.y198{bottom:225.312400pt;}
.y1ca{bottom:226.197333pt;}
.y133{bottom:226.921600pt;}
.y140{bottom:226.930800pt;}
.y39{bottom:231.002267pt;}
.y11b{bottom:231.503200pt;}
.y222{bottom:232.007200pt;}
.y221{bottom:232.007333pt;}
.y199{bottom:235.909333pt;}
.y6e{bottom:237.945333pt;}
.ya0{bottom:239.931067pt;}
.y269{bottom:240.342667pt;}
.y25c{bottom:240.342800pt;}
.y1ef{bottom:242.428267pt;}
.y197{bottom:243.312400pt;}
.y1c9{bottom:243.530667pt;}
.y38{bottom:244.002267pt;}
.y132{bottom:244.254933pt;}
.y13f{bottom:244.264133pt;}
.y117{bottom:245.903200pt;}
.y220{bottom:247.607333pt;}
.yca{bottom:248.423733pt;}
.y6d{bottom:255.278667pt;}
.y268{bottom:255.942667pt;}
.y25b{bottom:255.942800pt;}
.y9f{bottom:257.304400pt;}
.y1ee{bottom:259.761600pt;}
.y116{bottom:260.302267pt;}
.y11a{bottom:260.303200pt;}
.y1c8{bottom:260.864000pt;}
.y131{bottom:261.588267pt;}
.y13e{bottom:261.597467pt;}
.y195{bottom:262.547467pt;}
.y21f{bottom:263.207333pt;}
.y267{bottom:271.542667pt;}
.y25a{bottom:271.542800pt;}
.y6c{bottom:272.612000pt;}
.y196{bottom:273.144400pt;}
.y9e{bottom:274.677733pt;}
.y115{bottom:274.702267pt;}
.y119{bottom:274.703200pt;}
.y1ed{bottom:277.094933pt;}
.y1c7{bottom:278.197333pt;}
.y21e{bottom:278.807333pt;}
.y130{bottom:278.921600pt;}
.y13d{bottom:278.934933pt;}
.y194{bottom:280.547467pt;}
.yc{bottom:285.205867pt;}
.y259{bottom:287.142800pt;}
.y114{bottom:289.102267pt;}
.y118{bottom:289.103200pt;}
.y6b{bottom:289.945333pt;}
.y9d{bottom:292.051067pt;}
.y21d{bottom:294.407200pt;}
.y1ec{bottom:294.428267pt;}
.y1c6{bottom:295.530667pt;}
.y12f{bottom:296.254933pt;}
.y192{bottom:299.782533pt;}
.yc9{bottom:300.557067pt;}
.y258{bottom:302.742800pt;}
.y6a{bottom:307.278667pt;}
.y113{bottom:309.094267pt;}
.y9c{bottom:309.424400pt;}
.y21c{bottom:310.007200pt;}
.y193{bottom:310.379467pt;}
.y1eb{bottom:311.761600pt;}
.y1c5{bottom:312.864000pt;}
.y12e{bottom:313.588267pt;}
.y13c{bottom:313.601600pt;}
.y191{bottom:317.782533pt;}
.yc8{bottom:318.037067pt;}
.y257{bottom:318.342800pt;}
.y112{bottom:323.494267pt;}
.y69{bottom:324.612000pt;}
.y21b{bottom:325.607200pt;}
.y9b{bottom:326.797733pt;}
.y1ea{bottom:329.094933pt;}
.y1c4{bottom:330.197333pt;}
.y12d{bottom:330.921600pt;}
.y256{bottom:333.942800pt;}
.yc7{bottom:335.517067pt;}
.y18f{bottom:337.017733pt;}
.y111{bottom:337.894267pt;}
.y21a{bottom:341.207200pt;}
.y68{bottom:341.945333pt;}
.y9a{bottom:344.171067pt;}
.y1e9{bottom:346.428267pt;}
.y1c3{bottom:347.530667pt;}
.y190{bottom:347.614533pt;}
.y12c{bottom:348.254933pt;}
.y13b{bottom:348.268267pt;}
.y255{bottom:349.542800pt;}
.y10d{bottom:352.294267pt;}
.yc6{bottom:352.997067pt;}
.y18e{bottom:355.017733pt;}
.y219{bottom:356.807200pt;}
.y218{bottom:356.807333pt;}
.y67{bottom:359.278667pt;}
.y99{bottom:361.544400pt;}
.y1e8{bottom:363.761600pt;}
.y1c2{bottom:364.864000pt;}
.y254{bottom:365.142800pt;}
.y12b{bottom:365.588267pt;}
.y10c{bottom:366.693200pt;}
.y110{bottom:366.694267pt;}
.yc5{bottom:370.477067pt;}
.y217{bottom:372.407333pt;}
.y18c{bottom:374.252800pt;}
.y66{bottom:376.612000pt;}
.y98{bottom:378.913200pt;}
.y253{bottom:380.742800pt;}
.y10b{bottom:381.093200pt;}
.y10f{bottom:381.094267pt;}
.y1e7{bottom:381.094933pt;}
.y1c1{bottom:382.197333pt;}
.y12a{bottom:382.921600pt;}
.y13a{bottom:382.934933pt;}
.y18d{bottom:384.849733pt;}
.yc4{bottom:387.957067pt;}
.y216{bottom:388.007333pt;}
.y18b{bottom:392.252800pt;}
.y65{bottom:393.945333pt;}
.y10a{bottom:395.493200pt;}
.y10e{bottom:395.494267pt;}
.y97{bottom:396.286533pt;}
.y252{bottom:396.342800pt;}
.y1e6{bottom:398.428267pt;}
.y1c0{bottom:399.530667pt;}
.y129{bottom:400.254933pt;}
.y215{bottom:403.607333pt;}
.yc3{bottom:405.404933pt;}
.y64{bottom:411.278667pt;}
.y189{bottom:411.489600pt;}
.y251{bottom:411.942800pt;}
.y96{bottom:413.659867pt;}
.y106{bottom:415.485200pt;}
.y1e5{bottom:415.761600pt;}
.y1bf{bottom:416.864000pt;}
.y128{bottom:417.588267pt;}
.y214{bottom:419.207333pt;}
.y18a{bottom:422.084800pt;}
.yc2{bottom:422.884933pt;}
.y250{bottom:427.542800pt;}
.y63{bottom:428.612000pt;}
.y188{bottom:429.489600pt;}
.y105{bottom:429.884267pt;}
.y109{bottom:429.885200pt;}
.y95{bottom:431.033200pt;}
.y1e4{bottom:433.094933pt;}
.y1be{bottom:434.197333pt;}
.y213{bottom:434.807333pt;}
.y127{bottom:434.921600pt;}
.yc1{bottom:440.364933pt;}
.y24f{bottom:443.142800pt;}
.y104{bottom:444.284267pt;}
.y108{bottom:444.285200pt;}
.y62{bottom:445.945333pt;}
.y94{bottom:448.406533pt;}
.y212{bottom:450.407333pt;}
.y1e3{bottom:450.428267pt;}
.y187{bottom:450.993600pt;}
.y1bd{bottom:451.530667pt;}
.y126{bottom:452.254933pt;}
.y185{bottom:455.697600pt;}
.yc0{bottom:457.844933pt;}
.y103{bottom:458.684267pt;}
.y107{bottom:458.685200pt;}
.y24e{bottom:458.742800pt;}
.y61{bottom:463.278667pt;}
.y93{bottom:465.779867pt;}
.y211{bottom:466.007333pt;}
.y1e2{bottom:467.761600pt;}
.y1bc{bottom:468.864000pt;}
.y125{bottom:469.588267pt;}
.y184{bottom:473.697600pt;}
.y24d{bottom:474.342800pt;}
.ybf{bottom:475.324933pt;}
.y186{bottom:476.577600pt;}
.y102{bottom:478.676267pt;}
.y23{bottom:479.365600pt;}
.y37{bottom:479.376933pt;}
.y60{bottom:480.612000pt;}
.y210{bottom:481.607333pt;}
.y92{bottom:483.153200pt;}
.y1e1{bottom:485.094933pt;}
.y1bb{bottom:486.197333pt;}
.y24c{bottom:489.942800pt;}
.ybe{bottom:492.766533pt;}
.y101{bottom:493.076267pt;}
.y22{bottom:494.098933pt;}
.y36{bottom:494.110267pt;}
.y20f{bottom:497.207333pt;}
.y5f{bottom:497.945333pt;}
.y91{bottom:500.526533pt;}
.y183{bottom:501.998800pt;}
.y1e0{bottom:502.428267pt;}
.y1ba{bottom:503.530667pt;}
.y24b{bottom:505.542800pt;}
.yfd{bottom:507.476267pt;}
.ybd{bottom:510.246533pt;}
.y21{bottom:512.606267pt;}
.y35{bottom:512.617600pt;}
.y20e{bottom:512.807333pt;}
.y5e{bottom:515.278667pt;}
.y90{bottom:517.899867pt;}
.y1df{bottom:519.761600pt;}
.y1b9{bottom:520.864000pt;}
.y24a{bottom:521.142800pt;}
.yfc{bottom:521.875333pt;}
.y100{bottom:521.876267pt;}
.y20{bottom:527.339600pt;}
.y34{bottom:527.350933pt;}
.ybc{bottom:527.726533pt;}
.y147{bottom:527.841333pt;}
.y20d{bottom:528.407333pt;}
.y5d{bottom:532.612000pt;}
.y8f{bottom:535.271200pt;}
.yfb{bottom:536.275333pt;}
.yff{bottom:536.276267pt;}
.y249{bottom:536.742800pt;}
.y1de{bottom:537.094933pt;}
.y1b8{bottom:538.197333pt;}
.y1f{bottom:542.072933pt;}
.y33{bottom:542.084267pt;}
.y20b{bottom:544.007200pt;}
.y20c{bottom:544.007333pt;}
.ybb{bottom:545.206533pt;}
.y5c{bottom:549.945333pt;}
.yfa{bottom:550.675333pt;}
.yfe{bottom:550.676267pt;}
.y248{bottom:552.342800pt;}
.y8e{bottom:552.644533pt;}
.y1dd{bottom:554.428267pt;}
.y1b7{bottom:555.530667pt;}
.y1e{bottom:556.806267pt;}
.y32{bottom:556.817600pt;}
.y20a{bottom:559.607200pt;}
.y209{bottom:559.607333pt;}
.yba{bottom:562.686533pt;}
.y5b{bottom:567.278667pt;}
.y247{bottom:567.942800pt;}
.y8d{bottom:570.017867pt;}
.y182{bottom:570.522800pt;}
.yf9{bottom:570.667333pt;}
.y1d{bottom:571.539600pt;}
.y31{bottom:571.550933pt;}
.y1dc{bottom:571.761600pt;}
.y16e{bottom:571.762000pt;}
.y1b6{bottom:572.864000pt;}
.y208{bottom:575.207333pt;}
.yb9{bottom:580.166533pt;}
.y246{bottom:583.542800pt;}
.y5a{bottom:584.612000pt;}
.yf8{bottom:585.067333pt;}
.y1c{bottom:586.272933pt;}
.y30{bottom:586.284267pt;}
.y8c{bottom:587.391200pt;}
.y181{bottom:587.856133pt;}
.y1db{bottom:589.094933pt;}
.y16d{bottom:589.095333pt;}
.y1b5{bottom:590.197333pt;}
.y207{bottom:590.807333pt;}
.yb8{bottom:597.629467pt;}
.y245{bottom:599.142800pt;}
.yf7{bottom:599.467333pt;}
.y152{bottom:600.866933pt;}
.y1b{bottom:601.006267pt;}
.y2f{bottom:601.017600pt;}
.y59{bottom:601.945333pt;}
.y8b{bottom:604.764000pt;}
.y180{bottom:605.188267pt;}
.y206{bottom:606.407333pt;}
.y1da{bottom:606.428267pt;}
.y16c{bottom:606.428667pt;}
.y1b4{bottom:607.530667pt;}
.yf6{bottom:613.867333pt;}
.y244{bottom:614.742800pt;}
.yb7{bottom:615.109467pt;}
.y1a{bottom:615.739600pt;}
.y2e{bottom:615.750933pt;}
.y58{bottom:619.278667pt;}
.y205{bottom:622.007333pt;}
.y8a{bottom:622.137467pt;}
.y17f{bottom:622.521600pt;}
.y1d9{bottom:623.761600pt;}
.y16b{bottom:623.762000pt;}
.y1b3{bottom:624.864000pt;}
.yf2{bottom:628.267333pt;}
.y243{bottom:630.342800pt;}
.y19{bottom:630.472933pt;}
.y2d{bottom:630.484267pt;}
.yb6{bottom:632.589467pt;}
.y57{bottom:636.612000pt;}
.y204{bottom:637.607200pt;}
.y89{bottom:639.510800pt;}
.y17e{bottom:639.854933pt;}
.y1d8{bottom:641.094933pt;}
.y16a{bottom:641.095333pt;}
.y1b2{bottom:642.197200pt;}
.y1d3{bottom:642.197333pt;}
.yf1{bottom:642.666267pt;}
.yf5{bottom:642.667333pt;}
.y18{bottom:645.206267pt;}
.y2c{bottom:645.217600pt;}
.y242{bottom:645.942800pt;}
.y158{bottom:651.780933pt;}
.y203{bottom:653.207333pt;}
.y56{bottom:653.945333pt;}
.y88{bottom:656.884133pt;}
.yf0{bottom:657.066267pt;}
.yf4{bottom:657.067333pt;}
.y1d7{bottom:658.428267pt;}
.y169{bottom:658.428667pt;}
.y1b1{bottom:659.530533pt;}
.yb5{bottom:661.402800pt;}
.y241{bottom:661.542800pt;}
.y17{bottom:663.713600pt;}
.y2b{bottom:663.724933pt;}
.y157{bottom:666.180933pt;}
.y17d{bottom:666.641600pt;}
.y202{bottom:668.807200pt;}
.y55{bottom:671.278667pt;}
.yef{bottom:671.466267pt;}
.yf3{bottom:671.467333pt;}
.y87{bottom:674.257467pt;}
.y1d6{bottom:675.761600pt;}
.y168{bottom:675.762000pt;}
.y1b0{bottom:676.863867pt;}
.y240{bottom:677.142800pt;}
.y16{bottom:678.446933pt;}
.y2a{bottom:678.458267pt;}
.y201{bottom:684.407200pt;}
.y54{bottom:688.612000pt;}
.yee{bottom:691.458267pt;}
.y23f{bottom:692.742800pt;}
.y1d5{bottom:693.094933pt;}
.y167{bottom:693.095333pt;}
.y15{bottom:693.180267pt;}
.y29{bottom:693.191600pt;}
.y1af{bottom:694.197200pt;}
.y200{bottom:700.007200pt;}
.y86{bottom:702.964133pt;}
.yb4{bottom:705.237733pt;}
.yea{bottom:705.858267pt;}
.y53{bottom:705.945333pt;}
.y14{bottom:707.913600pt;}
.y28{bottom:707.924933pt;}
.y23e{bottom:708.342800pt;}
.y17c{bottom:710.428267pt;}
.y166{bottom:710.428667pt;}
.y1d2{bottom:711.530667pt;}
.y151{bottom:715.526533pt;}
.y1ff{bottom:715.607200pt;}
.ye9{bottom:720.257333pt;}
.yed{bottom:720.258267pt;}
.y85{bottom:720.337467pt;}
.y13{bottom:722.646933pt;}
.y27{bottom:722.658267pt;}
.yb3{bottom:722.717733pt;}
.y52{bottom:723.278667pt;}
.y23d{bottom:723.942800pt;}
.y17b{bottom:727.761600pt;}
.y165{bottom:727.762000pt;}
.y1ae{bottom:728.863867pt;}
.y1d1{bottom:728.864000pt;}
.y150{bottom:729.926533pt;}
.y1fe{bottom:731.207333pt;}
.ye8{bottom:734.657333pt;}
.yec{bottom:734.658267pt;}
.y12{bottom:737.380267pt;}
.y26{bottom:737.391600pt;}
.y23c{bottom:739.542800pt;}
.yb2{bottom:740.197733pt;}
.y51{bottom:740.612000pt;}
.y17a{bottom:745.094933pt;}
.y164{bottom:745.095333pt;}
.y1fd{bottom:746.807333pt;}
.y84{bottom:749.044133pt;}
.ye7{bottom:749.057333pt;}
.yeb{bottom:749.058267pt;}
.y11{bottom:752.113600pt;}
.y25{bottom:752.124933pt;}
.y23b{bottom:755.142800pt;}
.yb1{bottom:757.677733pt;}
.y156{bottom:757.940933pt;}
.y50{bottom:757.945333pt;}
.y179{bottom:762.428267pt;}
.y163{bottom:762.428667pt;}
.ye6{bottom:769.049333pt;}
.y10{bottom:770.620933pt;}
.y24{bottom:770.632267pt;}
.y23a{bottom:770.742800pt;}
.y155{bottom:772.340933pt;}
.yb0{bottom:775.157733pt;}
.y4f{bottom:775.278667pt;}
.y1fc{bottom:779.740533pt;}
.y178{bottom:779.761600pt;}
.y162{bottom:779.762000pt;}
.ye2{bottom:783.449333pt;}
.y239{bottom:786.342800pt;}
.y4e{bottom:792.612000pt;}
.yaf{bottom:792.637733pt;}
.y1ad{bottom:793.096267pt;}
.y83{bottom:796.657467pt;}
.y177{bottom:797.094933pt;}
.y161{bottom:797.095333pt;}
.ye1{bottom:797.848267pt;}
.ye5{bottom:797.849333pt;}
.y238{bottom:801.942800pt;}
.y14f{bottom:802.269600pt;}
.y4d{bottom:809.945333pt;}
.yae{bottom:810.117733pt;}
.ye0{bottom:812.248267pt;}
.ye4{bottom:812.249333pt;}
.y1ac{bottom:813.088267pt;}
.y82{bottom:814.030800pt;}
.y176{bottom:814.428267pt;}
.y160{bottom:814.428667pt;}
.y237{bottom:817.542800pt;}
.y6{bottom:824.162000pt;}
.ydf{bottom:826.648267pt;}
.ye3{bottom:826.649333pt;}
.y4c{bottom:827.278667pt;}
.y81{bottom:831.404133pt;}
.y1fb{bottom:831.732133pt;}
.y175{bottom:831.761600pt;}
.y15f{bottom:831.762000pt;}
.y1ab{bottom:833.080267pt;}
.y236{bottom:833.142800pt;}
.yad{bottom:838.931067pt;}
.y4b{bottom:844.612000pt;}
.yde{bottom:846.640267pt;}
.y235{bottom:848.742800pt;}
.y80{bottom:848.777467pt;}
.y1fa{bottom:849.065467pt;}
.y174{bottom:849.094933pt;}
.y15e{bottom:849.095333pt;}
.y154{bottom:850.206000pt;}
.y1aa{bottom:853.072267pt;}
.yda{bottom:861.040267pt;}
.y4a{bottom:861.945333pt;}
.y5{bottom:862.170533pt;}
.y234{bottom:864.342800pt;}
.y153{bottom:864.606000pt;}
.y7f{bottom:866.150800pt;}
.y173{bottom:866.428267pt;}
.y15d{bottom:866.428667pt;}
.y1a9{bottom:873.064267pt;}
.yd9{bottom:875.439200pt;}
.ydd{bottom:875.440267pt;}
.y49{bottom:879.278667pt;}
.y233{bottom:879.942800pt;}
.yac{bottom:882.864400pt;}
.y7e{bottom:883.524133pt;}
.y4{bottom:883.637200pt;}
.y1f9{bottom:883.746933pt;}
.y15c{bottom:883.761600pt;}
.y14e{bottom:889.437067pt;}
.yd8{bottom:889.839200pt;}
.ydc{bottom:889.840267pt;}
.y1a8{bottom:893.056267pt;}
.y232{bottom:895.542800pt;}
.y48{bottom:896.612000pt;}
.y148{bottom:896.832933pt;}
.yab{bottom:900.344400pt;}
.y7d{bottom:900.894933pt;}
.y1f8{bottom:901.080267pt;}
.y172{bottom:901.094933pt;}
.y14d{bottom:903.837067pt;}
.yd7{bottom:904.239200pt;}
.ydb{bottom:904.240267pt;}
.y231{bottom:911.142800pt;}
.y230{bottom:911.142933pt;}
.y1a7{bottom:913.048267pt;}
.y47{bottom:913.945333pt;}
.yaa{bottom:917.824400pt;}
.y14c{bottom:918.237067pt;}
.y7c{bottom:918.268267pt;}
.y1f7{bottom:918.413600pt;}
.y15b{bottom:918.428267pt;}
.y3{bottom:920.223867pt;}
.yd5{bottom:924.231200pt;}
.y266{bottom:926.742800pt;}
.y22f{bottom:926.742933pt;}
.y46{bottom:931.278667pt;}
.y14b{bottom:932.637067pt;}
.y1a6{bottom:933.040267pt;}
.ya9{bottom:935.304400pt;}
.y7b{bottom:935.641600pt;}
.y1d4{bottom:935.761600pt;}
.y171{bottom:935.762000pt;}
.yd4{bottom:938.631200pt;}
.y2{bottom:941.690533pt;}
.y265{bottom:942.342800pt;}
.y22e{bottom:942.342933pt;}
.yd6{bottom:945.831200pt;}
.y14a{bottom:947.037067pt;}
.y45{bottom:948.612000pt;}
.y1a2{bottom:950.235733pt;}
.ya8{bottom:952.784400pt;}
.y7a{bottom:953.014933pt;}
.yd3{bottom:953.031200pt;}
.y1a4{bottom:953.031733pt;}
.y15a{bottom:953.094933pt;}
.y1a5{bottom:957.027200pt;}
.y22c{bottom:957.942800pt;}
.y22d{bottom:957.942933pt;}
.y149{bottom:965.217067pt;}
.y44{bottom:965.945333pt;}
.yd2{bottom:967.431200pt;}
.y1a3{bottom:967.431733pt;}
.ya7{bottom:970.264400pt;}
.y79{bottom:970.388267pt;}
.y159{bottom:970.428267pt;}
.y170{bottom:970.428667pt;}
.y22b{bottom:973.542800pt;}
.yb{bottom:979.976267pt;}
.y77{bottom:983.278667pt;}
.ya6{bottom:987.744400pt;}
.y78{bottom:987.761600pt;}
.y16f{bottom:987.762000pt;}
.yd1{bottom:989.137733pt;}
.y22a{bottom:989.142800pt;}
.y43{bottom:1000.612000pt;}
.ya{bottom:1027.711067pt;}
.yf{bottom:1028.744400pt;}
.y9{bottom:1040.511067pt;}
.y42{bottom:1044.957467pt;}
.y41{bottom:1054.776133pt;}
.y8{bottom:1060.873733pt;}
.y7{bottom:1073.673733pt;}
.h22{height:24.541968pt;}
.h9{height:27.850667pt;}
.h1d{height:29.018133pt;}
.hf{height:32.741333pt;}
.hc{height:35.080000pt;}
.hd{height:35.200000pt;}
.h8{height:35.547733pt;}
.h21{height:36.750000pt;}
.h6{height:37.418667pt;}
.he{height:38.266667pt;}
.hb{height:39.757333pt;}
.ha{height:39.893333pt;}
.h1e{height:40.533333pt;}
.h2{height:42.096000pt;}
.h1c{height:42.240000pt;}
.h10{height:46.773333pt;}
.h23{height:46.773867pt;}
.h1f{height:46.774933pt;}
.h12{height:46.775467pt;}
.h20{height:46.778133pt;}
.h13{height:46.781333pt;}
.h11{height:46.783467pt;}
.h14{height:46.791467pt;}
.h1b{height:46.798933pt;}
.h1a{height:46.824533pt;}
.h16{height:46.841600pt;}
.h18{height:46.901867pt;}
.h17{height:46.926933pt;}
.h5{height:46.933333pt;}
.h19{height:46.968000pt;}
.h15{height:47.166933pt;}
.h7{height:51.626667pt;}
.h4{height:55.776000pt;}
.h3{height:65.706667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:60.475200pt;}
.xe{left:64.418667pt;}
.x1{left:83.149600pt;}
.x21{left:87.095867pt;}
.xb{left:94.489600pt;}
.x8{left:98.268267pt;}
.x14{left:104.483733pt;}
.x2e{left:105.826800pt;}
.xf{left:128.667867pt;}
.x10{left:136.227867pt;}
.x7{left:158.929067pt;}
.x18{left:161.240800pt;}
.x15{left:164.284800pt;}
.x16{left:170.406600pt;}
.x6{left:173.858267pt;}
.x23{left:177.769600pt;}
.x31{left:180.256267pt;}
.x17{left:185.456933pt;}
.x32{left:197.451600pt;}
.x1a{left:198.900133pt;}
.x3a{left:221.486800pt;}
.x2f{left:232.610533pt;}
.x33{left:260.030267pt;}
.x30{left:262.189600pt;}
.x19{left:280.758400pt;}
.x11{left:325.206267pt;}
.x12{left:332.766267pt;}
.x34{left:367.068133pt;}
.x9{left:411.974933pt;}
.x22{left:413.741867pt;}
.xa{left:427.093600pt;}
.x28{left:434.645733pt;}
.x13{left:438.595467pt;}
.x36{left:457.536533pt;}
.x29{left:472.322267pt;}
.x37{left:477.965200pt;}
.xc{left:492.780133pt;}
.x20{left:496.357067pt;}
.x1d{left:500.994133pt;}
.x1b{left:502.119733pt;}
.x1f{left:506.343467pt;}
.x2a{left:521.721867pt;}
.x1c{left:526.299133pt;}
.x5{left:532.121867pt;}
.x2{left:535.641867pt;}
.x3{left:546.735200pt;}
.x4{left:552.356533pt;}
.x2d{left:562.605467pt;}
.x1e{left:580.896733pt;}
.x2b{left:588.849200pt;}
.x3b{left:594.152933pt;}
.x38{left:606.224800pt;}
.x24{left:632.601600pt;}
.x27{left:637.771733pt;}
.x39{left:638.672533pt;}
.x25{left:650.020800pt;}
.x2c{left:653.180267pt;}
.x26{left:673.729467pt;}
.x35{left:695.887067pt;}
}




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