
    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_92f87e79a0730e108b563d12.woff')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_61fe5440ae49ee1a5d8a3ae3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_445f01e24b79b933e869205d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.931152;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_ebb28fcee139c8e074992fdb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.904785;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_9d469d240d34eba4c9a74498.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_d85257dae435ad2845392982.woff')format("woff");}.ff6{font-family:ff6;line-height:0.958594;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_2a51d8126ae7cc68c8b0a8e9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.944336;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.067000px;}
.v2{vertical-align:36.000000px;}
.ls10{letter-spacing:-11.040000px;}
.ls18{letter-spacing:-2.109000px;}
.ls9{letter-spacing:-1.944000px;}
.ls24{letter-spacing:-1.500000px;}
.ls8{letter-spacing:-1.380000px;}
.lse{letter-spacing:-1.215000px;}
.lsa{letter-spacing:-1.092000px;}
.ls2a{letter-spacing:-1.080000px;}
.ls17{letter-spacing:-0.972000px;}
.ls11{letter-spacing:-0.855000px;}
.ls20{letter-spacing:-0.840000px;}
.ls1c{letter-spacing:-0.627000px;}
.ls1e{letter-spacing:-0.570000px;}
.ls15{letter-spacing:-0.552000px;}
.ls32{letter-spacing:-0.504000px;}
.ls21{letter-spacing:-0.480000px;}
.ls13{letter-spacing:-0.324000px;}
.ls1d{letter-spacing:-0.171000px;}
.ls16{letter-spacing:-0.138000px;}
.ls22{letter-spacing:-0.120000px;}
.ls25{letter-spacing:-0.081000px;}
.ls3{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.162000px;}
.ls12{letter-spacing:0.486000px;}
.ls1f{letter-spacing:1.215000px;}
.ls6{letter-spacing:1.260000px;}
.ls1b{letter-spacing:1.482000px;}
.ls2e{letter-spacing:1.997100px;}
.lsf{letter-spacing:2.400000px;}
.ls14{letter-spacing:3.300000px;}
.ls1{letter-spacing:3.450000px;}
.ls0{letter-spacing:3.600000px;}
.lsc{letter-spacing:4.200000px;}
.ls7{letter-spacing:5.700000px;}
.lsd{letter-spacing:5.760000px;}
.ls23{letter-spacing:5.850000px;}
.ls4{letter-spacing:5.880000px;}
.ls33{letter-spacing:6.000000px;}
.ls2d{letter-spacing:6.300000px;}
.ls1a{letter-spacing:6.831000px;}
.ls19{letter-spacing:6.844800px;}
.ls30{letter-spacing:6.867000px;}
.ls2{letter-spacing:7.260000px;}
.ls2b{letter-spacing:7.530000px;}
.ls5{letter-spacing:8.400000px;}
.lsb{letter-spacing:8.520000px;}
.ls31{letter-spacing:8.927100px;}
.ls2f{letter-spacing:15.787800px;}
.ls26{letter-spacing:99.600000px;}
.ls29{letter-spacing:105.840000px;}
.ls28{letter-spacing:108.660000px;}
.ls27{letter-spacing:125.580000px;}
.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;}
}
.ws14{word-spacing:-57.960000px;}
.ws52{word-spacing:-28.605000px;}
.ws3{word-spacing:-28.404000px;}
.ws43{word-spacing:-26.925000px;}
.ws5a{word-spacing:-24.570000px;}
.ws0{word-spacing:-24.525000px;}
.ws1b{word-spacing:-24.375000px;}
.ws2f{word-spacing:-23.976000px;}
.ws53{word-spacing:-22.923000px;}
.ws6e{word-spacing:-22.860000px;}
.ws46{word-spacing:-22.680000px;}
.wsc{word-spacing:-22.620000px;}
.ws55{word-spacing:-21.789000px;}
.wsd{word-spacing:-21.546000px;}
.ws15{word-spacing:-19.389000px;}
.ws66{word-spacing:-17.703000px;}
.ws1{word-spacing:-17.088000px;}
.ws28{word-spacing:-17.043000px;}
.ws33{word-spacing:-16.860000px;}
.ws32{word-spacing:-16.740000px;}
.ws31{word-spacing:-16.200000px;}
.ws4a{word-spacing:-15.780000px;}
.ws5b{word-spacing:-15.561000px;}
.ws2{word-spacing:-15.480000px;}
.ws30{word-spacing:-15.360000px;}
.ws44{word-spacing:-14.820000px;}
.ws45{word-spacing:-13.320000px;}
.wse{word-spacing:-11.303787px;}
.ws5d{word-spacing:-6.300000px;}
.ws9{word-spacing:-5.700000px;}
.ws5c{word-spacing:-5.040000px;}
.ws21{word-spacing:-4.692000px;}
.ws13{word-spacing:-4.278000px;}
.ws11{word-spacing:-4.200000px;}
.ws6d{word-spacing:-3.780000px;}
.ws36{word-spacing:-3.450000px;}
.ws3b{word-spacing:-3.312000px;}
.ws20{word-spacing:-3.243000px;}
.ws35{word-spacing:-3.036000px;}
.ws3c{word-spacing:-2.898000px;}
.ws57{word-spacing:-2.829000px;}
.ws49{word-spacing:-2.691000px;}
.ws7{word-spacing:-2.400000px;}
.ws29{word-spacing:-1.482000px;}
.ws61{word-spacing:-1.323000px;}
.ws4{word-spacing:-1.260000px;}
.ws40{word-spacing:-1.242000px;}
.ws62{word-spacing:-1.134000px;}
.ws3f{word-spacing:-1.104000px;}
.ws42{word-spacing:-0.897000px;}
.ws41{word-spacing:-0.759000px;}
.ws68{word-spacing:-0.567000px;}
.ws69{word-spacing:-0.504000px;}
.ws19{word-spacing:-0.486000px;}
.ws4d{word-spacing:-0.483000px;}
.ws58{word-spacing:-0.138000px;}
.ws5{word-spacing:0.000000px;}
.ws22{word-spacing:0.069000px;}
.ws6{word-spacing:0.120000px;}
.ws1f{word-spacing:0.138000px;}
.ws2b{word-spacing:0.171000px;}
.ws1a{word-spacing:0.324000px;}
.ws3a{word-spacing:0.480000px;}
.ws39{word-spacing:0.483000px;}
.ws6b{word-spacing:0.504000px;}
.ws1d{word-spacing:0.552000px;}
.ws2d{word-spacing:0.570000px;}
.ws2a{word-spacing:0.627000px;}
.ws16{word-spacing:0.828000px;}
.ws18{word-spacing:0.855000px;}
.ws23{word-spacing:0.972000px;}
.wsa{word-spacing:1.092000px;}
.ws2c{word-spacing:1.311000px;}
.ws50{word-spacing:2.070000px;}
.ws60{word-spacing:2.079000px;}
.ws26{word-spacing:2.109000px;}
.ws2e{word-spacing:2.208000px;}
.ws48{word-spacing:2.277000px;}
.ws5f{word-spacing:2.331000px;}
.ws4f{word-spacing:2.484000px;}
.ws47{word-spacing:2.553000px;}
.ws25{word-spacing:2.760000px;}
.ws4e{word-spacing:2.898000px;}
.ws38{word-spacing:4.416000px;}
.ws1e{word-spacing:4.485000px;}
.ws8{word-spacing:4.740000px;}
.ws37{word-spacing:5.037000px;}
.ws1c{word-spacing:5.106000px;}
.ws5e{word-spacing:6.048000px;}
.ws54{word-spacing:6.969000px;}
.ws17{word-spacing:7.452000px;}
.ws3d{word-spacing:7.797000px;}
.ws6a{word-spacing:7.875000px;}
.ws12{word-spacing:8.418000px;}
.ws3e{word-spacing:8.901000px;}
.ws6c{word-spacing:9.009000px;}
.ws67{word-spacing:11.655000px;}
.ws24{word-spacing:11.661000px;}
.ws65{word-spacing:12.033000px;}
.ws34{word-spacing:12.903000px;}
.ws10{word-spacing:13.200000px;}
.wsb{word-spacing:13.980000px;}
.ws27{word-spacing:15.387000px;}
.ws63{word-spacing:15.876000px;}
.ws56{word-spacing:17.457000px;}
.ws64{word-spacing:18.144000px;}
.ws59{word-spacing:19.182000px;}
.ws51{word-spacing:24.909000px;}
.ws4b{word-spacing:75.780000px;}
.ws4c{word-spacing:76.680000px;}
.wsf{word-spacing:256.410000px;}
._1d{margin-left:-24.306000px;}
._11{margin-left:-17.115000px;}
._29{margin-left:-12.604200px;}
._28{margin-left:-11.115600px;}
._a{margin-left:-8.380500px;}
._1b{margin-left:-6.943200px;}
._8{margin-left:-5.899500px;}
._5{margin-left:-4.182000px;}
._4{margin-left:-2.496000px;}
._3{margin-left:-1.452000px;}
._0{width:1.582500px;}
._9{width:2.703000px;}
._1{width:4.072500px;}
._6{width:5.169000px;}
._7{width:6.388500px;}
._36{width:7.389000px;}
._10{width:8.389500px;}
._c{width:10.278000px;}
._1a{width:11.801100px;}
._1c{width:13.395900px;}
._d{width:14.526000px;}
._b{width:15.804000px;}
._1f{width:17.075400px;}
._1e{width:18.142200px;}
._37{width:19.251900px;}
._19{width:20.748300px;}
._15{width:22.429500px;}
._16{width:23.585100px;}
._27{width:25.067400px;}
._34{width:26.266800px;}
._17{width:27.703500px;}
._25{width:29.384700px;}
._26{width:30.915600px;}
._21{width:31.958100px;}
._20{width:32.971800px;}
._35{width:34.024500px;}
._2a{width:35.324100px;}
._33{width:44.026800px;}
._13{width:45.098100px;}
._14{width:46.350000px;}
._12{width:85.554000px;}
._2f{width:97.500000px;}
._30{width:104.640000px;}
._31{width:108.360000px;}
._2e{width:413.844000px;}
._2d{width:444.652200px;}
._18{width:448.286700px;}
._2{width:449.400000px;}
._23{width:451.432500px;}
._2c{width:486.552000px;}
._e{width:578.400000px;}
._32{width:908.539500px;}
._22{width:955.441200px;}
._24{width:958.066200px;}
._2b{width:962.116200px;}
._f{width:964.096200px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fsa{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs8{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fs7{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y201{bottom:106.132350px;}
.y1dd{bottom:106.165350px;}
.y225{bottom:106.199400px;}
.y3f{bottom:106.231200px;}
.yaa{bottom:106.234650px;}
.yb4{bottom:106.250550px;}
.y66{bottom:106.268850px;}
.yd5{bottom:106.270200px;}
.y87{bottom:106.278300px;}
.yf0{bottom:106.279800px;}
.y245{bottom:106.293450px;}
.y1d{bottom:106.320600px;}
.y1b6{bottom:106.417200px;}
.y281{bottom:107.940600px;}
.y114{bottom:112.691100px;}
.y118{bottom:114.251100px;}
.y200{bottom:126.401100px;}
.y1c{bottom:126.525600px;}
.y224{bottom:126.571650px;}
.yd4{bottom:126.573450px;}
.yef{bottom:126.583050px;}
.y1dc{bottom:126.589350px;}
.y3e{bottom:126.793200px;}
.yb3{bottom:127.071300px;}
.y86{bottom:127.099050px;}
.y65{bottom:127.227600px;}
.y244{bottom:127.303950px;}
.y1b5{bottom:127.324200px;}
.ya9{bottom:127.641900px;}
.y280{bottom:128.190600px;}
.y113{bottom:130.691100px;}
.y117{bottom:132.251100px;}
.y110{bottom:140.471100px;}
.y1ff{bottom:146.669850px;}
.y1b{bottom:146.730600px;}
.yd3{bottom:146.876700px;}
.yee{bottom:146.886300px;}
.y223{bottom:146.943900px;}
.y1db{bottom:147.013350px;}
.y3d{bottom:147.355200px;}
.yb2{bottom:147.892050px;}
.y85{bottom:147.919800px;}
.y64{bottom:148.186350px;}
.y1b4{bottom:148.231200px;}
.y27f{bottom:148.440600px;}
.y112{bottom:148.691100px;}
.ya8{bottom:149.049150px;}
.y116{bottom:150.251100px;}
.y243{bottom:156.819450px;}
.y111{bottom:166.691100px;}
.y1a{bottom:166.935600px;}
.y1fe{bottom:166.938600px;}
.yd2{bottom:167.179950px;}
.yed{bottom:167.189550px;}
.y222{bottom:167.316150px;}
.y1da{bottom:167.437350px;}
.y3c{bottom:167.917200px;}
.y115{bottom:168.251100px;}
.y27e{bottom:168.690600px;}
.yb1{bottom:168.712800px;}
.y84{bottom:168.740550px;}
.y1b3{bottom:169.138200px;}
.y63{bottom:169.145100px;}
.ya7{bottom:170.456400px;}
.y242{bottom:177.829950px;}
.y19{bottom:187.140600px;}
.y1fd{bottom:187.207350px;}
.yd1{bottom:187.483200px;}
.yec{bottom:187.492800px;}
.y221{bottom:187.688400px;}
.y1d9{bottom:187.861350px;}
.y3b{bottom:188.479200px;}
.y27d{bottom:188.940600px;}
.yb0{bottom:189.533550px;}
.y1b2{bottom:190.045200px;}
.y62{bottom:190.103850px;}
.y176{bottom:190.488300px;}
.y10f{bottom:190.991100px;}
.ya6{bottom:191.863650px;}
.y170{bottom:199.488300px;}
.y241{bottom:207.345450px;}
.y18{bottom:207.345600px;}
.y1fc{bottom:207.476100px;}
.yd0{bottom:207.786450px;}
.y220{bottom:208.060650px;}
.y1d8{bottom:208.285350px;}
.y175{bottom:208.488300px;}
.y3a{bottom:209.041200px;}
.y27c{bottom:209.190600px;}
.yaf{bottom:210.354300px;}
.y83{bottom:210.814200px;}
.y1b1{bottom:210.952200px;}
.y61{bottom:211.062600px;}
.ya5{bottom:213.270900px;}
.y10e{bottom:215.291100px;}
.y16f{bottom:217.488300px;}
.y174{bottom:226.488300px;}
.y17{bottom:227.550600px;}
.y1fb{bottom:227.744850px;}
.ycf{bottom:228.089700px;}
.y240{bottom:228.355950px;}
.y21f{bottom:228.432900px;}
.y1d7{bottom:228.709350px;}
.yeb{bottom:229.051050px;}
.y39{bottom:229.603200px;}
.yae{bottom:231.175050px;}
.y1b0{bottom:231.859200px;}
.y60{bottom:232.021350px;}
.ya4{bottom:234.678150px;}
.y16e{bottom:235.488300px;}
.y10d{bottom:239.591100px;}
.y27b{bottom:242.190600px;}
.y173{bottom:244.488300px;}
.y16{bottom:247.755600px;}
.y1fa{bottom:248.013600px;}
.y21e{bottom:248.805150px;}
.y1d6{bottom:249.133350px;}
.y38{bottom:250.165200px;}
.yad{bottom:251.995800px;}
.y1af{bottom:252.766200px;}
.y5f{bottom:252.980100px;}
.y16d{bottom:253.488300px;}
.ya3{bottom:256.085400px;}
.y10c{bottom:257.591100px;}
.y23f{bottom:257.871450px;}
.y192{bottom:258.100050px;}
.y27a{bottom:262.440600px;}
.y172{bottom:262.488300px;}
.y15{bottom:267.960600px;}
.y1f9{bottom:268.282350px;}
.y21d{bottom:269.177400px;}
.y1d5{bottom:269.557350px;}
.yce{bottom:269.647800px;}
.y37{bottom:270.727200px;}
.y16c{bottom:271.488300px;}
.y1ae{bottom:273.673200px;}
.y5e{bottom:273.938850px;}
.y109{bottom:275.591100px;}
.ya2{bottom:277.492650px;}
.y82{bottom:277.897650px;}
.y191{bottom:278.351550px;}
.y23e{bottom:278.881950px;}
.y171{bottom:280.488300px;}
.y279{bottom:282.690600px;}
.y13b{bottom:285.587250px;}
.y14{bottom:288.165600px;}
.y1f8{bottom:288.551100px;}
.y21c{bottom:289.549650px;}
.y1d4{bottom:289.981350px;}
.y36{bottom:291.266700px;}
.yea{bottom:291.294300px;}
.y10b{bottom:293.591100px;}
.yac{bottom:294.069300px;}
.y1ad{bottom:294.580200px;}
.y5d{bottom:294.897600px;}
.y190{bottom:298.603050px;}
.y278{bottom:302.940600px;}
.y16b{bottom:304.788300px;}
.y13a{bottom:305.838750px;}
.y23d{bottom:308.397450px;}
.y1f7{bottom:308.819850px;}
.y21b{bottom:309.921900px;}
.y1d3{bottom:310.405350px;}
.y10a{bottom:311.591100px;}
.ye9{bottom:311.597550px;}
.y35{bottom:311.828700px;}
.y165{bottom:313.788300px;}
.y1ac{bottom:315.487200px;}
.y25d{bottom:315.530850px;}
.y5c{bottom:315.856350px;}
.y18f{bottom:318.854550px;}
.ya1{bottom:320.150400px;}
.y13{bottom:321.120600px;}
.y16a{bottom:322.788300px;}
.y277{bottom:323.190600px;}
.y139{bottom:326.090250px;}
.y1f6{bottom:329.088600px;}
.y23c{bottom:329.407950px;}
.y21a{bottom:330.294150px;}
.y1d2{bottom:330.829350px;}
.y164{bottom:331.788300px;}
.ycd{bottom:331.881450px;}
.ye8{bottom:331.900800px;}
.y34{bottom:332.390700px;}
.y108{bottom:334.316100px;}
.y25c{bottom:335.785350px;}
.y1ab{bottom:336.394200px;}
.y5b{bottom:336.815100px;}
.y18e{bottom:339.106050px;}
.y81{bottom:340.541100px;}
.y169{bottom:340.788300px;}
.y276{bottom:343.440600px;}
.ya0{bottom:345.300900px;}
.y138{bottom:346.341750px;}
.y1f5{bottom:349.357350px;}
.y163{bottom:349.788300px;}
.y219{bottom:350.666400px;}
.y1d1{bottom:351.253350px;}
.ycc{bottom:352.184700px;}
.ye7{bottom:352.204050px;}
.y33{bottom:352.952700px;}
.y1aa{bottom:357.301200px;}
.y5a{bottom:357.773850px;}
.y107{bottom:358.616100px;}
.y168{bottom:358.788300px;}
.y23b{bottom:358.923450px;}
.y18d{bottom:359.357550px;}
.yab{bottom:361.152900px;}
.y80{bottom:361.361850px;}
.y25b{bottom:364.544850px;}
.y137{bottom:366.593250px;}
.y162{bottom:367.788300px;}
.y1f4{bottom:369.626100px;}
.y218{bottom:371.038650px;}
.y1d0{bottom:371.677350px;}
.ycb{bottom:372.487950px;}
.ye6{bottom:372.507300px;}
.y275{bottom:376.440600px;}
.y167{bottom:376.788300px;}
.y1a9{bottom:378.208200px;}
.y59{bottom:378.732600px;}
.y18c{bottom:379.609050px;}
.y12{bottom:379.609950px;}
.y23a{bottom:379.933950px;}
.y7f{bottom:382.182600px;}
.y106{bottom:382.916100px;}
.y25a{bottom:384.799350px;}
.y161{bottom:385.788300px;}
.y136{bottom:386.844750px;}
.y1f3{bottom:389.894850px;}
.y1cf{bottom:392.101350px;}
.yca{bottom:392.791200px;}
.ye5{bottom:392.810550px;}
.y32{bottom:394.766850px;}
.y166{bottom:394.788300px;}
.y1a8{bottom:399.115200px;}
.y58{bottom:399.691350px;}
.y18b{bottom:399.860550px;}
.y7e{bottom:403.003350px;}
.y105{bottom:407.216100px;}
.y11{bottom:407.308950px;}
.y9f{bottom:408.532050px;}
.y239{bottom:409.449450px;}
.y1f2{bottom:410.163600px;}
.y1ce{bottom:412.525350px;}
.y217{bottom:412.663050px;}
.yc9{bottom:413.094450px;}
.ye4{bottom:413.113800px;}
.y259{bottom:413.558850px;}
.y274{bottom:417.945600px;}
.y159{bottom:419.088300px;}
.y1a7{bottom:420.022200px;}
.y18a{bottom:420.112050px;}
.y57{bottom:420.650100px;}
.y7d{bottom:423.824100px;}
.y9e{bottom:429.939300px;}
.y1f1{bottom:430.432350px;}
.y104{bottom:431.516100px;}
.y1cd{bottom:432.949350px;}
.yc8{bottom:433.397700px;}
.ye3{bottom:433.417050px;}
.y258{bottom:433.813350px;}
.y10{bottom:435.007950px;}
.y158{bottom:437.088300px;}
.y273{bottom:437.445600px;}
.y238{bottom:438.964950px;}
.y189{bottom:440.363550px;}
.y103{bottom:440.516100px;}
.y56{bottom:441.608850px;}
.y101{bottom:443.186100px;}
.y7c{bottom:444.644850px;}
.y160{bottom:446.088300px;}
.y133{bottom:447.873150px;}
.y135{bottom:449.433150px;}
.y1f0{bottom:450.701100px;}
.y9d{bottom:451.346550px;}
.y1cc{bottom:453.373350px;}
.yc7{bottom:453.700950px;}
.ye2{bottom:453.720300px;}
.y157{bottom:455.088300px;}
.y272{bottom:456.945600px;}
.y237{bottom:459.975450px;}
.y188{bottom:460.615050px;}
.y100{bottom:461.186100px;}
.y55{bottom:462.567600px;}
.y257{bottom:462.572850px;}
.y15f{bottom:464.088300px;}
.y7b{bottom:465.465600px;}
.y132{bottom:465.873150px;}
.y130{bottom:466.653150px;}
.y134{bottom:467.433150px;}
.y1ef{bottom:470.969850px;}
.y9c{bottom:472.753800px;}
.y102{bottom:472.841100px;}
.y156{bottom:473.088300px;}
.y1cb{bottom:473.797350px;}
.yc6{bottom:474.004200px;}
.ye1{bottom:474.023550px;}
.y216{bottom:474.884100px;}
.y271{bottom:476.445600px;}
.y187{bottom:480.866550px;}
.y15e{bottom:482.088300px;}
.y256{bottom:482.827350px;}
.y54{bottom:483.526350px;}
.y131{bottom:483.873150px;}
.yf{bottom:483.956700px;}
.y7a{bottom:486.286350px;}
.y236{bottom:489.490950px;}
.y1a6{bottom:489.856200px;}
.y155{bottom:491.088300px;}
.y1ee{bottom:491.238600px;}
.y9b{bottom:494.161050px;}
.y1ca{bottom:494.221350px;}
.yc5{bottom:494.307450px;}
.ye0{bottom:494.326800px;}
.y215{bottom:495.256350px;}
.y270{bottom:495.945600px;}
.y15d{bottom:500.088300px;}
.y186{bottom:501.118050px;}
.yff{bottom:502.408050px;}
.y53{bottom:504.485100px;}
.y79{bottom:507.107100px;}
.y12f{bottom:508.173150px;}
.y154{bottom:509.088300px;}
.y235{bottom:510.501450px;}
.y1ed{bottom:511.507350px;}
.y255{bottom:511.586850px;}
.yc4{bottom:514.610700px;}
.ydf{bottom:514.630050px;}
.y1c9{bottom:514.645350px;}
.y26f{bottom:515.445600px;}
.y9a{bottom:515.568300px;}
.y214{bottom:515.628600px;}
.ye{bottom:516.167700px;}
.y12e{bottom:517.173150px;}
.y15c{bottom:518.088300px;}
.y31{bottom:519.006900px;}
.y12c{bottom:519.528150px;}
.y52{bottom:525.443850px;}
.y153{bottom:527.088300px;}
.y78{bottom:527.927850px;}
.y254{bottom:531.841350px;}
.yc3{bottom:534.913950px;}
.yde{bottom:534.933300px;}
.y26e{bottom:534.945600px;}
.y1c8{bottom:535.069350px;}
.y213{bottom:536.000850px;}
.y15b{bottom:536.088300px;}
.y99{bottom:536.975550px;}
.y12b{bottom:537.528150px;}
.y234{bottom:540.016950px;}
.y30{bottom:540.306900px;}
.y185{bottom:542.628000px;}
.yfe{bottom:543.163950px;}
.y152{bottom:545.088300px;}
.y51{bottom:546.402600px;}
.yd{bottom:548.378700px;}
.y77{bottom:548.748600px;}
.y12d{bottom:548.898150px;}
.y1a5{bottom:549.556200px;}
.y1ec{bottom:553.021500px;}
.y15a{bottom:554.088300px;}
.y26d{bottom:554.445600px;}
.yc2{bottom:555.217200px;}
.ydd{bottom:555.236550px;}
.y1c7{bottom:555.493350px;}
.y212{bottom:556.373100px;}
.y98{bottom:558.382800px;}
.y253{bottom:560.600850px;}
.y233{bottom:561.027450px;}
.y2f{bottom:561.648750px;}
.y151{bottom:563.088300px;}
.yfd{bottom:563.415450px;}
.y1a0{bottom:567.076200px;}
.y50{bottom:567.361350px;}
.y1a4{bottom:567.556200px;}
.y76{bottom:569.569350px;}
.y26c{bottom:573.945600px;}
.yc1{bottom:575.520450px;}
.ydc{bottom:575.539800px;}
.y1c6{bottom:575.917350px;}
.y211{bottom:576.745350px;}
.y1eb{bottom:577.038000px;}
.y12a{bottom:578.378250px;}
.y97{bottom:579.790050px;}
.yc{bottom:580.589700px;}
.y252{bottom:580.855350px;}
.y150{bottom:581.088300px;}
.y2e{bottom:581.448750px;}
.yfc{bottom:583.666950px;}
.y1a3{bottom:585.556200px;}
.y4f{bottom:588.320100px;}
.y75{bottom:590.390100px;}
.y232{bottom:590.542950px;}
.y26b{bottom:593.445600px;}
.yc0{bottom:595.823700px;}
.ydb{bottom:595.843050px;}
.y1c5{bottom:596.341350px;}
.y210{bottom:597.117600px;}
.y96{bottom:601.197300px;}
.y2d{bottom:601.248750px;}
.y1a2{bottom:603.556200px;}
.yfb{bottom:603.918450px;}
.y184{bottom:604.892700px;}
.y14f{bottom:605.388300px;}
.y4e{bottom:609.278850px;}
.y251{bottom:609.614850px;}
.y74{bottom:611.210850px;}
.y231{bottom:611.553450px;}
.yb{bottom:612.800700px;}
.y26a{bottom:612.945600px;}
.y149{bottom:614.388300px;}
.ybf{bottom:616.126950px;}
.y1c4{bottom:616.765350px;}
.y20f{bottom:617.489850px;}
.y129{bottom:619.135050px;}
.y2c{bottom:621.048750px;}
.y1a1{bottom:621.556200px;}
.y95{bottom:622.604550px;}
.y14d{bottom:623.388300px;}
.yfa{bottom:624.169950px;}
.y183{bottom:625.144200px;}
.y4d{bottom:630.237600px;}
.y73{bottom:632.031600px;}
.y148{bottom:632.388300px;}
.y269{bottom:632.445600px;}
.ybe{bottom:636.430200px;}
.y1c3{bottom:637.189350px;}
.yda{bottom:637.401300px;}
.y20e{bottom:637.862100px;}
.y250{bottom:638.374350px;}
.y1ea{bottom:639.207600px;}
.y128{bottom:639.386550px;}
.y2b{bottom:640.848750px;}
.y230{bottom:641.068950px;}
.y14c{bottom:641.388300px;}
.y94{bottom:644.011800px;}
.y19f{bottom:644.296200px;}
.y182{bottom:645.395700px;}
.y147{bottom:650.388300px;}
.y4c{bottom:651.196350px;}
.y268{bottom:651.945600px;}
.y72{bottom:652.852350px;}
.ybd{bottom:656.733450px;}
.yf9{bottom:657.169200px;}
.y1c2{bottom:657.613350px;}
.y20d{bottom:658.234350px;}
.y24f{bottom:658.628850px;}
.y14b{bottom:659.388300px;}
.y1e9{bottom:659.476350px;}
.y127{bottom:659.638050px;}
.y2a{bottom:660.648750px;}
.y19e{bottom:662.296200px;}
.y93{bottom:665.419050px;}
.y146{bottom:668.388300px;}
.y267{bottom:671.445600px;}
.y4b{bottom:672.155100px;}
.y71{bottom:673.673100px;}
.ya{bottom:674.773500px;}
.ybc{bottom:677.036700px;}
.y14a{bottom:677.388300px;}
.yf8{bottom:677.420700px;}
.y1c1{bottom:678.037350px;}
.y20c{bottom:678.606600px;}
.y1e8{bottom:679.745100px;}
.y19d{bottom:680.296200px;}
.y29{bottom:680.448750px;}
.y145{bottom:686.388300px;}
.y92{bottom:686.826300px;}
.y24e{bottom:687.388350px;}
.y199{bottom:689.296200px;}
.y266{bottom:690.945600px;}
.y22f{bottom:692.596350px;}
.y4a{bottom:693.113850px;}
.y70{bottom:694.493850px;}
.y14e{bottom:695.388300px;}
.yf7{bottom:697.672200px;}
.y19c{bottom:698.296200px;}
.y1c0{bottom:698.461350px;}
.y20b{bottom:698.978850px;}
.yd9{bottom:699.668850px;}
.y1e7{bottom:700.013850px;}
.y28{bottom:700.248750px;}
.y9{bottom:704.983500px;}
.y181{bottom:706.419750px;}
.y91{bottom:708.233550px;}
.y265{bottom:710.445600px;}
.y22e{bottom:713.606850px;}
.y49{bottom:714.072600px;}
.y6f{bottom:715.314600px;}
.y24d{bottom:716.147850px;}
.y19b{bottom:716.296200px;}
.yf6{bottom:717.923700px;}
.ybb{bottom:718.594950px;}
.y1bf{bottom:718.885350px;}
.y20a{bottom:719.351100px;}
.y144{bottom:719.688300px;}
.yd8{bottom:719.972100px;}
.y27{bottom:720.048750px;}
.y1e6{bottom:720.282600px;}
.y126{bottom:720.662250px;}
.y180{bottom:724.419750px;}
.y90{bottom:729.640800px;}
.y264{bottom:729.945600px;}
.y19a{bottom:734.296200px;}
.y22d{bottom:734.617350px;}
.y48{bottom:735.031350px;}
.y8{bottom:735.193500px;}
.y6e{bottom:736.135350px;}
.y24c{bottom:736.402350px;}
.y143{bottom:737.688300px;}
.y125{bottom:738.662250px;}
.y1be{bottom:739.309350px;}
.y209{bottom:739.723350px;}
.y26{bottom:739.848750px;}
.yd7{bottom:740.275350px;}
.y1e5{bottom:740.551350px;}
.y17f{bottom:742.419750px;}
.y263{bottom:749.445600px;}
.y8f{bottom:751.048050px;}
.y22c{bottom:755.627850px;}
.y142{bottom:755.688300px;}
.y196{bottom:755.919300px;}
.y47{bottom:755.990100px;}
.y198{bottom:756.279300px;}
.y124{bottom:756.662250px;}
.y7{bottom:756.898500px;}
.y6d{bottom:756.956100px;}
.y197{bottom:757.569300px;}
.yf5{bottom:759.433650px;}
.y25{bottom:759.648750px;}
.y1bd{bottom:759.733350px;}
.y208{bottom:760.095600px;}
.y17e{bottom:760.419750px;}
.yd6{bottom:760.578600px;}
.y1e4{bottom:760.820100px;}
.y24b{bottom:765.161850px;}
.y262{bottom:768.945600px;}
.y8e{bottom:772.455300px;}
.y141{bottom:773.688300px;}
.y123{bottom:774.662250px;}
.y22b{bottom:776.638350px;}
.y46{bottom:776.948850px;}
.y6c{bottom:777.776850px;}
.y17d{bottom:778.419750px;}
.y6{bottom:778.605000px;}
.y1bc{bottom:780.157350px;}
.y207{bottom:780.467850px;}
.yba{bottom:780.881850px;}
.y1e3{bottom:781.088850px;}
.y24a{bottom:785.416350px;}
.y140{bottom:791.688300px;}
.y24{bottom:792.213750px;}
.y8d{bottom:793.862550px;}
.y17c{bottom:796.419750px;}
.y122{bottom:797.387250px;}
.y22a{bottom:797.648850px;}
.y45{bottom:797.907600px;}
.y6b{bottom:798.597600px;}
.y1bb{bottom:800.581350px;}
.y206{bottom:800.840100px;}
.yb9{bottom:801.185100px;}
.y261{bottom:801.195600px;}
.y1e2{bottom:801.357600px;}
.y13f{bottom:809.688300px;}
.y120{bottom:813.827250px;}
.y249{bottom:814.175850px;}
.y17b{bottom:814.419750px;}
.y8c{bottom:815.269800px;}
.y11e{bottom:815.387250px;}
.y193{bottom:815.538000px;}
.y195{bottom:818.253000px;}
.y229{bottom:818.659350px;}
.y44{bottom:818.866350px;}
.y6a{bottom:819.418350px;}
.y1ba{bottom:821.005350px;}
.y205{bottom:821.212350px;}
.yb8{bottom:821.488350px;}
.y1e1{bottom:821.626350px;}
.yf4{bottom:821.695350px;}
.y13e{bottom:827.688300px;}
.y5{bottom:830.077350px;}
.y11f{bottom:831.827250px;}
.y17a{bottom:832.419750px;}
.y121{bottom:833.387250px;}
.y248{bottom:834.430350px;}
.y8b{bottom:836.677050px;}
.y228{bottom:839.669850px;}
.y43{bottom:839.825100px;}
.y69{bottom:840.239100px;}
.y1b9{bottom:841.429350px;}
.y204{bottom:841.584600px;}
.y23{bottom:841.788750px;}
.yb7{bottom:841.791600px;}
.y1e0{bottom:841.895100px;}
.yf3{bottom:841.946850px;}
.y260{bottom:846.195450px;}
.y179{bottom:850.419750px;}
.y13d{bottom:851.988300px;}
.y11d{bottom:856.112250px;}
.y8a{bottom:858.084300px;}
.y4{bottom:860.287350px;}
.y227{bottom:860.680350px;}
.y42{bottom:860.783850px;}
.y68{bottom:861.059850px;}
.y1b8{bottom:861.853350px;}
.y203{bottom:861.956850px;}
.yb6{bottom:862.094850px;}
.y1df{bottom:862.163850px;}
.yf2{bottom:862.198350px;}
.y22{bottom:863.088750px;}
.y247{bottom:863.189850px;}
.y11c{bottom:865.112250px;}
.y11a{bottom:867.782250px;}
.y25f{bottom:873.201450px;}
.y194{bottom:874.053000px;}
.y13c{bottom:874.713300px;}
.y178{bottom:874.719750px;}
.y89{bottom:879.491550px;}
.y226{bottom:881.690850px;}
.y41{bottom:881.742600px;}
.y67{bottom:881.880600px;}
.y3{bottom:881.992350px;}
.y1b7{bottom:882.277350px;}
.y202{bottom:882.329100px;}
.yb5{bottom:882.398100px;}
.y1de{bottom:882.432600px;}
.yf1{bottom:882.449850px;}
.y246{bottom:883.444350px;}
.y21{bottom:884.397750px;}
.y119{bottom:885.782250px;}
.y11b{bottom:897.437250px;}
.y177{bottom:897.444750px;}
.y25e{bottom:900.207450px;}
.y88{bottom:900.898800px;}
.y40{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y20{bottom:904.197750px;}
.y1f{bottom:948.189000px;}
.y1e{bottom:966.189000px;}
.hb{height:32.250000px;}
.h4{height:40.312500px;}
.h15{height:41.396484px;}
.h3{height:42.328125px;}
.h12{height:42.685547px;}
.ha{height:46.359375px;}
.hf{height:47.605957px;}
.h11{height:49.088379px;}
.h2{height:50.390625px;}
.h7{height:50.947266px;}
.h14{height:51.093750px;}
.h16{height:53.494629px;}
.h17{height:53.648438px;}
.h8{height:54.421875px;}
.h9{height:58.589355px;}
.he{height:58.757812px;}
.hc{height:60.720000px;}
.hd{height:63.684082px;}
.h10{height:68.778809px;}
.h6{height:71.326172px;}
.h5{height:72.562500px;}
.h13{height:78.685547px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xd{left:80.086350px;}
.x9{left:81.956400px;}
.x1{left:83.672550px;}
.x5{left:84.833250px;}
.x40{left:92.216250px;}
.x1e{left:93.776250px;}
.xe{left:96.965100px;}
.x1d{left:98.021250px;}
.x16{left:100.730100px;}
.xa{left:102.207900px;}
.x17{left:103.647150px;}
.x4{left:105.023250px;}
.x6{left:106.049250px;}
.x29{left:108.521250px;}
.x34{left:115.976250px;}
.x20{left:118.046250px;}
.x27{left:120.881250px;}
.x47{left:121.916250px;}
.x32{left:123.866250px;}
.x1f{left:124.946250px;}
.xb{left:127.720650px;}
.x33{left:131.081250px;}
.x1c{left:137.756250px;}
.x35{left:142.241250px;}
.x15{left:144.035100px;}
.x12{left:145.700100px;}
.x13{left:146.975100px;}
.x2a{left:148.976250px;}
.x28{left:150.566250px;}
.x31{left:153.371250px;}
.x59{left:155.361150px;}
.x3f{left:160.826250px;}
.x53{left:165.861150px;}
.xc{left:201.158850px;}
.x8{left:202.516800px;}
.x55{left:204.411150px;}
.x54{left:209.211150px;}
.x56{left:211.071150px;}
.x7{left:212.663850px;}
.x19{left:227.742600px;}
.x3{left:231.866400px;}
.x2{left:233.439750px;}
.x10{left:239.120100px;}
.x2b{left:278.141250px;}
.x37{left:279.656250px;}
.x21{left:280.751250px;}
.x2c{left:283.241250px;}
.x4d{left:286.241250px;}
.xf{left:287.930100px;}
.x4c{left:289.016250px;}
.x2d{left:290.501250px;}
.x39{left:294.176250px;}
.x23{left:296.501250px;}
.x22{left:308.936250px;}
.x18{left:316.227600px;}
.x49{left:321.911250px;}
.x38{left:325.691250px;}
.x36{left:329.351250px;}
.x41{left:335.021250px;}
.x48{left:337.376250px;}
.x43{left:339.446250px;}
.x3a{left:349.901250px;}
.x42{left:353.621250px;}
.x1b{left:407.787600px;}
.x58{left:410.451150px;}
.x57{left:413.091150px;}
.x4f{left:423.942600px;}
.x14{left:430.565100px;}
.x50{left:455.817600px;}
.x46{left:460.871250px;}
.x2e{left:464.096250px;}
.x3b{left:465.236250px;}
.x4a{left:468.851250px;}
.x26{left:472.391250px;}
.x3d{left:476.036250px;}
.x4e{left:478.016250px;}
.x1a{left:479.367600px;}
.x51{left:487.692600px;}
.x25{left:489.326250px;}
.x11{left:490.565100px;}
.x3c{left:500.081250px;}
.x3e{left:505.001250px;}
.x24{left:507.791250px;}
.x45{left:514.481250px;}
.x4b{left:520.346250px;}
.x44{left:522.731250px;}
.x30{left:526.841250px;}
.x2f{left:530.246250px;}
.x52{left:562.242600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.170667pt;}
.v2{vertical-align:32.000000pt;}
.ls10{letter-spacing:-9.813333pt;}
.ls18{letter-spacing:-1.874667pt;}
.ls9{letter-spacing:-1.728000pt;}
.ls24{letter-spacing:-1.333333pt;}
.ls8{letter-spacing:-1.226667pt;}
.lse{letter-spacing:-1.080000pt;}
.lsa{letter-spacing:-0.970667pt;}
.ls2a{letter-spacing:-0.960000pt;}
.ls17{letter-spacing:-0.864000pt;}
.ls11{letter-spacing:-0.760000pt;}
.ls20{letter-spacing:-0.746667pt;}
.ls1c{letter-spacing:-0.557333pt;}
.ls1e{letter-spacing:-0.506667pt;}
.ls15{letter-spacing:-0.490667pt;}
.ls32{letter-spacing:-0.448000pt;}
.ls21{letter-spacing:-0.426667pt;}
.ls13{letter-spacing:-0.288000pt;}
.ls1d{letter-spacing:-0.152000pt;}
.ls16{letter-spacing:-0.122667pt;}
.ls22{letter-spacing:-0.106667pt;}
.ls25{letter-spacing:-0.072000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.144000pt;}
.ls12{letter-spacing:0.432000pt;}
.ls1f{letter-spacing:1.080000pt;}
.ls6{letter-spacing:1.120000pt;}
.ls1b{letter-spacing:1.317333pt;}
.ls2e{letter-spacing:1.775200pt;}
.lsf{letter-spacing:2.133333pt;}
.ls14{letter-spacing:2.933333pt;}
.ls1{letter-spacing:3.066667pt;}
.ls0{letter-spacing:3.200000pt;}
.lsc{letter-spacing:3.733333pt;}
.ls7{letter-spacing:5.066667pt;}
.lsd{letter-spacing:5.120000pt;}
.ls23{letter-spacing:5.200000pt;}
.ls4{letter-spacing:5.226667pt;}
.ls33{letter-spacing:5.333333pt;}
.ls2d{letter-spacing:5.600000pt;}
.ls1a{letter-spacing:6.072000pt;}
.ls19{letter-spacing:6.084267pt;}
.ls30{letter-spacing:6.104000pt;}
.ls2{letter-spacing:6.453333pt;}
.ls2b{letter-spacing:6.693333pt;}
.ls5{letter-spacing:7.466667pt;}
.lsb{letter-spacing:7.573333pt;}
.ls31{letter-spacing:7.935200pt;}
.ls2f{letter-spacing:14.033600pt;}
.ls26{letter-spacing:88.533333pt;}
.ls29{letter-spacing:94.080000pt;}
.ls28{letter-spacing:96.586667pt;}
.ls27{letter-spacing:111.626667pt;}
.ws14{word-spacing:-51.520000pt;}
.ws52{word-spacing:-25.426667pt;}
.ws3{word-spacing:-25.248000pt;}
.ws43{word-spacing:-23.933333pt;}
.ws5a{word-spacing:-21.840000pt;}
.ws0{word-spacing:-21.800000pt;}
.ws1b{word-spacing:-21.666667pt;}
.ws2f{word-spacing:-21.312000pt;}
.ws53{word-spacing:-20.376000pt;}
.ws6e{word-spacing:-20.320000pt;}
.ws46{word-spacing:-20.160000pt;}
.wsc{word-spacing:-20.106667pt;}
.ws55{word-spacing:-19.368000pt;}
.wsd{word-spacing:-19.152000pt;}
.ws15{word-spacing:-17.234667pt;}
.ws66{word-spacing:-15.736000pt;}
.ws1{word-spacing:-15.189333pt;}
.ws28{word-spacing:-15.149333pt;}
.ws33{word-spacing:-14.986667pt;}
.ws32{word-spacing:-14.880000pt;}
.ws31{word-spacing:-14.400000pt;}
.ws4a{word-spacing:-14.026667pt;}
.ws5b{word-spacing:-13.832000pt;}
.ws2{word-spacing:-13.760000pt;}
.ws30{word-spacing:-13.653333pt;}
.ws44{word-spacing:-13.173333pt;}
.ws45{word-spacing:-11.840000pt;}
.wse{word-spacing:-10.047811pt;}
.ws5d{word-spacing:-5.600000pt;}
.ws9{word-spacing:-5.066667pt;}
.ws5c{word-spacing:-4.480000pt;}
.ws21{word-spacing:-4.170667pt;}
.ws13{word-spacing:-3.802667pt;}
.ws11{word-spacing:-3.733333pt;}
.ws6d{word-spacing:-3.360000pt;}
.ws36{word-spacing:-3.066667pt;}
.ws3b{word-spacing:-2.944000pt;}
.ws20{word-spacing:-2.882667pt;}
.ws35{word-spacing:-2.698667pt;}
.ws3c{word-spacing:-2.576000pt;}
.ws57{word-spacing:-2.514667pt;}
.ws49{word-spacing:-2.392000pt;}
.ws7{word-spacing:-2.133333pt;}
.ws29{word-spacing:-1.317333pt;}
.ws61{word-spacing:-1.176000pt;}
.ws4{word-spacing:-1.120000pt;}
.ws40{word-spacing:-1.104000pt;}
.ws62{word-spacing:-1.008000pt;}
.ws3f{word-spacing:-0.981333pt;}
.ws42{word-spacing:-0.797333pt;}
.ws41{word-spacing:-0.674667pt;}
.ws68{word-spacing:-0.504000pt;}
.ws69{word-spacing:-0.448000pt;}
.ws19{word-spacing:-0.432000pt;}
.ws4d{word-spacing:-0.429333pt;}
.ws58{word-spacing:-0.122667pt;}
.ws5{word-spacing:0.000000pt;}
.ws22{word-spacing:0.061333pt;}
.ws6{word-spacing:0.106667pt;}
.ws1f{word-spacing:0.122667pt;}
.ws2b{word-spacing:0.152000pt;}
.ws1a{word-spacing:0.288000pt;}
.ws3a{word-spacing:0.426667pt;}
.ws39{word-spacing:0.429333pt;}
.ws6b{word-spacing:0.448000pt;}
.ws1d{word-spacing:0.490667pt;}
.ws2d{word-spacing:0.506667pt;}
.ws2a{word-spacing:0.557333pt;}
.ws16{word-spacing:0.736000pt;}
.ws18{word-spacing:0.760000pt;}
.ws23{word-spacing:0.864000pt;}
.wsa{word-spacing:0.970667pt;}
.ws2c{word-spacing:1.165333pt;}
.ws50{word-spacing:1.840000pt;}
.ws60{word-spacing:1.848000pt;}
.ws26{word-spacing:1.874667pt;}
.ws2e{word-spacing:1.962667pt;}
.ws48{word-spacing:2.024000pt;}
.ws5f{word-spacing:2.072000pt;}
.ws4f{word-spacing:2.208000pt;}
.ws47{word-spacing:2.269333pt;}
.ws25{word-spacing:2.453333pt;}
.ws4e{word-spacing:2.576000pt;}
.ws38{word-spacing:3.925333pt;}
.ws1e{word-spacing:3.986667pt;}
.ws8{word-spacing:4.213333pt;}
.ws37{word-spacing:4.477333pt;}
.ws1c{word-spacing:4.538667pt;}
.ws5e{word-spacing:5.376000pt;}
.ws54{word-spacing:6.194667pt;}
.ws17{word-spacing:6.624000pt;}
.ws3d{word-spacing:6.930667pt;}
.ws6a{word-spacing:7.000000pt;}
.ws12{word-spacing:7.482667pt;}
.ws3e{word-spacing:7.912000pt;}
.ws6c{word-spacing:8.008000pt;}
.ws67{word-spacing:10.360000pt;}
.ws24{word-spacing:10.365333pt;}
.ws65{word-spacing:10.696000pt;}
.ws34{word-spacing:11.469333pt;}
.ws10{word-spacing:11.733333pt;}
.wsb{word-spacing:12.426667pt;}
.ws27{word-spacing:13.677333pt;}
.ws63{word-spacing:14.112000pt;}
.ws56{word-spacing:15.517333pt;}
.ws64{word-spacing:16.128000pt;}
.ws59{word-spacing:17.050667pt;}
.ws51{word-spacing:22.141333pt;}
.ws4b{word-spacing:67.360000pt;}
.ws4c{word-spacing:68.160000pt;}
.wsf{word-spacing:227.920000pt;}
._1d{margin-left:-21.605333pt;}
._11{margin-left:-15.213333pt;}
._29{margin-left:-11.203733pt;}
._28{margin-left:-9.880533pt;}
._a{margin-left:-7.449333pt;}
._1b{margin-left:-6.171733pt;}
._8{margin-left:-5.244000pt;}
._5{margin-left:-3.717333pt;}
._4{margin-left:-2.218667pt;}
._3{margin-left:-1.290667pt;}
._0{width:1.406667pt;}
._9{width:2.402667pt;}
._1{width:3.620000pt;}
._6{width:4.594667pt;}
._7{width:5.678667pt;}
._36{width:6.568000pt;}
._10{width:7.457333pt;}
._c{width:9.136000pt;}
._1a{width:10.489867pt;}
._1c{width:11.907467pt;}
._d{width:12.912000pt;}
._b{width:14.048000pt;}
._1f{width:15.178133pt;}
._1e{width:16.126400pt;}
._37{width:17.112800pt;}
._19{width:18.442933pt;}
._15{width:19.937333pt;}
._16{width:20.964533pt;}
._27{width:22.282133pt;}
._34{width:23.348267pt;}
._17{width:24.625333pt;}
._25{width:26.119733pt;}
._26{width:27.480533pt;}
._21{width:28.407200pt;}
._20{width:29.308267pt;}
._35{width:30.244000pt;}
._2a{width:31.399200pt;}
._33{width:39.134933pt;}
._13{width:40.087200pt;}
._14{width:41.200000pt;}
._12{width:76.048000pt;}
._2f{width:86.666667pt;}
._30{width:93.013333pt;}
._31{width:96.320000pt;}
._2e{width:367.861333pt;}
._2d{width:395.246400pt;}
._18{width:398.477067pt;}
._2{width:399.466667pt;}
._23{width:401.273333pt;}
._2c{width:432.490667pt;}
._e{width:514.133333pt;}
._32{width:807.590667pt;}
._22{width:849.281067pt;}
._24{width:851.614400pt;}
._2b{width:855.214400pt;}
._f{width:856.974400pt;}
.fs9{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fsa{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs8{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fs7{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y201{bottom:94.339867pt;}
.y1dd{bottom:94.369200pt;}
.y225{bottom:94.399467pt;}
.y3f{bottom:94.427733pt;}
.yaa{bottom:94.430800pt;}
.yb4{bottom:94.444933pt;}
.y66{bottom:94.461200pt;}
.yd5{bottom:94.462400pt;}
.y87{bottom:94.469600pt;}
.yf0{bottom:94.470933pt;}
.y245{bottom:94.483067pt;}
.y1d{bottom:94.507200pt;}
.y1b6{bottom:94.593067pt;}
.y281{bottom:95.947200pt;}
.y114{bottom:100.169867pt;}
.y118{bottom:101.556533pt;}
.y200{bottom:112.356533pt;}
.y1c{bottom:112.467200pt;}
.y224{bottom:112.508133pt;}
.yd4{bottom:112.509733pt;}
.yef{bottom:112.518267pt;}
.y1dc{bottom:112.523867pt;}
.y3e{bottom:112.705067pt;}
.yb3{bottom:112.952267pt;}
.y86{bottom:112.976933pt;}
.y65{bottom:113.091200pt;}
.y244{bottom:113.159067pt;}
.y1b5{bottom:113.177067pt;}
.ya9{bottom:113.459467pt;}
.y280{bottom:113.947200pt;}
.y113{bottom:116.169867pt;}
.y117{bottom:117.556533pt;}
.y110{bottom:124.863200pt;}
.y1ff{bottom:130.373200pt;}
.y1b{bottom:130.427200pt;}
.yd3{bottom:130.557067pt;}
.yee{bottom:130.565600pt;}
.y223{bottom:130.616800pt;}
.y1db{bottom:130.678533pt;}
.y3d{bottom:130.982400pt;}
.yb2{bottom:131.459600pt;}
.y85{bottom:131.484267pt;}
.y64{bottom:131.721200pt;}
.y1b4{bottom:131.761067pt;}
.y27f{bottom:131.947200pt;}
.y112{bottom:132.169867pt;}
.ya8{bottom:132.488133pt;}
.y116{bottom:133.556533pt;}
.y243{bottom:139.395067pt;}
.y111{bottom:148.169867pt;}
.y1a{bottom:148.387200pt;}
.y1fe{bottom:148.389867pt;}
.yd2{bottom:148.604400pt;}
.yed{bottom:148.612933pt;}
.y222{bottom:148.725467pt;}
.y1da{bottom:148.833200pt;}
.y3c{bottom:149.259733pt;}
.y115{bottom:149.556533pt;}
.y27e{bottom:149.947200pt;}
.yb1{bottom:149.966933pt;}
.y84{bottom:149.991600pt;}
.y1b3{bottom:150.345067pt;}
.y63{bottom:150.351200pt;}
.ya7{bottom:151.516800pt;}
.y242{bottom:158.071067pt;}
.y19{bottom:166.347200pt;}
.y1fd{bottom:166.406533pt;}
.yd1{bottom:166.651733pt;}
.yec{bottom:166.660267pt;}
.y221{bottom:166.834133pt;}
.y1d9{bottom:166.987867pt;}
.y3b{bottom:167.537067pt;}
.y27d{bottom:167.947200pt;}
.yb0{bottom:168.474267pt;}
.y1b2{bottom:168.929067pt;}
.y62{bottom:168.981200pt;}
.y176{bottom:169.322933pt;}
.y10f{bottom:169.769867pt;}
.ya6{bottom:170.545467pt;}
.y170{bottom:177.322933pt;}
.y241{bottom:184.307067pt;}
.y18{bottom:184.307200pt;}
.y1fc{bottom:184.423200pt;}
.yd0{bottom:184.699067pt;}
.y220{bottom:184.942800pt;}
.y1d8{bottom:185.142533pt;}
.y175{bottom:185.322933pt;}
.y3a{bottom:185.814400pt;}
.y27c{bottom:185.947200pt;}
.yaf{bottom:186.981600pt;}
.y83{bottom:187.390400pt;}
.y1b1{bottom:187.513067pt;}
.y61{bottom:187.611200pt;}
.ya5{bottom:189.574133pt;}
.y10e{bottom:191.369867pt;}
.y16f{bottom:193.322933pt;}
.y174{bottom:201.322933pt;}
.y17{bottom:202.267200pt;}
.y1fb{bottom:202.439867pt;}
.ycf{bottom:202.746400pt;}
.y240{bottom:202.983067pt;}
.y21f{bottom:203.051467pt;}
.y1d7{bottom:203.297200pt;}
.yeb{bottom:203.600933pt;}
.y39{bottom:204.091733pt;}
.yae{bottom:205.488933pt;}
.y1b0{bottom:206.097067pt;}
.y60{bottom:206.241200pt;}
.ya4{bottom:208.602800pt;}
.y16e{bottom:209.322933pt;}
.y10d{bottom:212.969867pt;}
.y27b{bottom:215.280533pt;}
.y173{bottom:217.322933pt;}
.y16{bottom:220.227200pt;}
.y1fa{bottom:220.456533pt;}
.y21e{bottom:221.160133pt;}
.y1d6{bottom:221.451867pt;}
.y38{bottom:222.369067pt;}
.yad{bottom:223.996267pt;}
.y1af{bottom:224.681067pt;}
.y5f{bottom:224.871200pt;}
.y16d{bottom:225.322933pt;}
.ya3{bottom:227.631467pt;}
.y10c{bottom:228.969867pt;}
.y23f{bottom:229.219067pt;}
.y192{bottom:229.422267pt;}
.y27a{bottom:233.280533pt;}
.y172{bottom:233.322933pt;}
.y15{bottom:238.187200pt;}
.y1f9{bottom:238.473200pt;}
.y21d{bottom:239.268800pt;}
.y1d5{bottom:239.606533pt;}
.yce{bottom:239.686933pt;}
.y37{bottom:240.646400pt;}
.y16c{bottom:241.322933pt;}
.y1ae{bottom:243.265067pt;}
.y5e{bottom:243.501200pt;}
.y109{bottom:244.969867pt;}
.ya2{bottom:246.660133pt;}
.y82{bottom:247.020133pt;}
.y191{bottom:247.423600pt;}
.y23e{bottom:247.895067pt;}
.y171{bottom:249.322933pt;}
.y279{bottom:251.280533pt;}
.y13b{bottom:253.855333pt;}
.y14{bottom:256.147200pt;}
.y1f8{bottom:256.489867pt;}
.y21c{bottom:257.377467pt;}
.y1d4{bottom:257.761200pt;}
.y36{bottom:258.903733pt;}
.yea{bottom:258.928267pt;}
.y10b{bottom:260.969867pt;}
.yac{bottom:261.394933pt;}
.y1ad{bottom:261.849067pt;}
.y5d{bottom:262.131200pt;}
.y190{bottom:265.424933pt;}
.y278{bottom:269.280533pt;}
.y16b{bottom:270.922933pt;}
.y13a{bottom:271.856667pt;}
.y23d{bottom:274.131067pt;}
.y1f7{bottom:274.506533pt;}
.y21b{bottom:275.486133pt;}
.y1d3{bottom:275.915867pt;}
.y10a{bottom:276.969867pt;}
.ye9{bottom:276.975600pt;}
.y35{bottom:277.181067pt;}
.y165{bottom:278.922933pt;}
.y1ac{bottom:280.433067pt;}
.y25d{bottom:280.471867pt;}
.y5c{bottom:280.761200pt;}
.y18f{bottom:283.426267pt;}
.ya1{bottom:284.578133pt;}
.y13{bottom:285.440533pt;}
.y16a{bottom:286.922933pt;}
.y277{bottom:287.280533pt;}
.y139{bottom:289.858000pt;}
.y1f6{bottom:292.523200pt;}
.y23c{bottom:292.807067pt;}
.y21a{bottom:293.594800pt;}
.y1d2{bottom:294.070533pt;}
.y164{bottom:294.922933pt;}
.ycd{bottom:295.005733pt;}
.ye8{bottom:295.022933pt;}
.y34{bottom:295.458400pt;}
.y108{bottom:297.169867pt;}
.y25c{bottom:298.475867pt;}
.y1ab{bottom:299.017067pt;}
.y5b{bottom:299.391200pt;}
.y18e{bottom:301.427600pt;}
.y81{bottom:302.703200pt;}
.y169{bottom:302.922933pt;}
.y276{bottom:305.280533pt;}
.ya0{bottom:306.934133pt;}
.y138{bottom:307.859333pt;}
.y1f5{bottom:310.539867pt;}
.y163{bottom:310.922933pt;}
.y219{bottom:311.703467pt;}
.y1d1{bottom:312.225200pt;}
.ycc{bottom:313.053067pt;}
.ye7{bottom:313.070267pt;}
.y33{bottom:313.735733pt;}
.y1aa{bottom:317.601067pt;}
.y5a{bottom:318.021200pt;}
.y107{bottom:318.769867pt;}
.y168{bottom:318.922933pt;}
.y23b{bottom:319.043067pt;}
.y18d{bottom:319.428933pt;}
.yab{bottom:321.024800pt;}
.y80{bottom:321.210533pt;}
.y25b{bottom:324.039867pt;}
.y137{bottom:325.860667pt;}
.y162{bottom:326.922933pt;}
.y1f4{bottom:328.556533pt;}
.y218{bottom:329.812133pt;}
.y1d0{bottom:330.379867pt;}
.ycb{bottom:331.100400pt;}
.ye6{bottom:331.117600pt;}
.y275{bottom:334.613867pt;}
.y167{bottom:334.922933pt;}
.y1a9{bottom:336.185067pt;}
.y59{bottom:336.651200pt;}
.y18c{bottom:337.430267pt;}
.y12{bottom:337.431067pt;}
.y23a{bottom:337.719067pt;}
.y7f{bottom:339.717867pt;}
.y106{bottom:340.369867pt;}
.y25a{bottom:342.043867pt;}
.y161{bottom:342.922933pt;}
.y136{bottom:343.862000pt;}
.y1f3{bottom:346.573200pt;}
.y1cf{bottom:348.534533pt;}
.yca{bottom:349.147733pt;}
.ye5{bottom:349.164933pt;}
.y32{bottom:350.903867pt;}
.y166{bottom:350.922933pt;}
.y1a8{bottom:354.769067pt;}
.y58{bottom:355.281200pt;}
.y18b{bottom:355.431600pt;}
.y7e{bottom:358.225200pt;}
.y105{bottom:361.969867pt;}
.y11{bottom:362.052400pt;}
.y9f{bottom:363.139600pt;}
.y239{bottom:363.955067pt;}
.y1f2{bottom:364.589867pt;}
.y1ce{bottom:366.689200pt;}
.y217{bottom:366.811600pt;}
.yc9{bottom:367.195067pt;}
.ye4{bottom:367.212267pt;}
.y259{bottom:367.607867pt;}
.y274{bottom:371.507200pt;}
.y159{bottom:372.522933pt;}
.y1a7{bottom:373.353067pt;}
.y18a{bottom:373.432933pt;}
.y57{bottom:373.911200pt;}
.y7d{bottom:376.732533pt;}
.y9e{bottom:382.168267pt;}
.y1f1{bottom:382.606533pt;}
.y104{bottom:383.569867pt;}
.y1cd{bottom:384.843867pt;}
.yc8{bottom:385.242400pt;}
.ye3{bottom:385.259600pt;}
.y258{bottom:385.611867pt;}
.y10{bottom:386.673733pt;}
.y158{bottom:388.522933pt;}
.y273{bottom:388.840533pt;}
.y238{bottom:390.191067pt;}
.y189{bottom:391.434267pt;}
.y103{bottom:391.569867pt;}
.y56{bottom:392.541200pt;}
.y101{bottom:393.943200pt;}
.y7c{bottom:395.239867pt;}
.y160{bottom:396.522933pt;}
.y133{bottom:398.109467pt;}
.y135{bottom:399.496133pt;}
.y1f0{bottom:400.623200pt;}
.y9d{bottom:401.196933pt;}
.y1cc{bottom:402.998533pt;}
.yc7{bottom:403.289733pt;}
.ye2{bottom:403.306933pt;}
.y157{bottom:404.522933pt;}
.y272{bottom:406.173867pt;}
.y237{bottom:408.867067pt;}
.y188{bottom:409.435600pt;}
.y100{bottom:409.943200pt;}
.y55{bottom:411.171200pt;}
.y257{bottom:411.175867pt;}
.y15f{bottom:412.522933pt;}
.y7b{bottom:413.747200pt;}
.y132{bottom:414.109467pt;}
.y130{bottom:414.802800pt;}
.y134{bottom:415.496133pt;}
.y1ef{bottom:418.639867pt;}
.y9c{bottom:420.225600pt;}
.y102{bottom:420.303200pt;}
.y156{bottom:420.522933pt;}
.y1cb{bottom:421.153200pt;}
.yc6{bottom:421.337067pt;}
.ye1{bottom:421.354267pt;}
.y216{bottom:422.119200pt;}
.y271{bottom:423.507200pt;}
.y187{bottom:427.436933pt;}
.y15e{bottom:428.522933pt;}
.y256{bottom:429.179867pt;}
.y54{bottom:429.801200pt;}
.y131{bottom:430.109467pt;}
.yf{bottom:430.183733pt;}
.y7a{bottom:432.254533pt;}
.y236{bottom:435.103067pt;}
.y1a6{bottom:435.427733pt;}
.y155{bottom:436.522933pt;}
.y1ee{bottom:436.656533pt;}
.y9b{bottom:439.254267pt;}
.y1ca{bottom:439.307867pt;}
.yc5{bottom:439.384400pt;}
.ye0{bottom:439.401600pt;}
.y215{bottom:440.227867pt;}
.y270{bottom:440.840533pt;}
.y15d{bottom:444.522933pt;}
.y186{bottom:445.438267pt;}
.yff{bottom:446.584933pt;}
.y53{bottom:448.431200pt;}
.y79{bottom:450.761867pt;}
.y12f{bottom:451.709467pt;}
.y154{bottom:452.522933pt;}
.y235{bottom:453.779067pt;}
.y1ed{bottom:454.673200pt;}
.y255{bottom:454.743867pt;}
.yc4{bottom:457.431733pt;}
.ydf{bottom:457.448933pt;}
.y1c9{bottom:457.462533pt;}
.y26f{bottom:458.173867pt;}
.y9a{bottom:458.282933pt;}
.y214{bottom:458.336533pt;}
.ye{bottom:458.815733pt;}
.y12e{bottom:459.709467pt;}
.y15c{bottom:460.522933pt;}
.y31{bottom:461.339467pt;}
.y12c{bottom:461.802800pt;}
.y52{bottom:467.061200pt;}
.y153{bottom:468.522933pt;}
.y78{bottom:469.269200pt;}
.y254{bottom:472.747867pt;}
.yc3{bottom:475.479067pt;}
.yde{bottom:475.496267pt;}
.y26e{bottom:475.507200pt;}
.y1c8{bottom:475.617200pt;}
.y213{bottom:476.445200pt;}
.y15b{bottom:476.522933pt;}
.y99{bottom:477.311600pt;}
.y12b{bottom:477.802800pt;}
.y234{bottom:480.015067pt;}
.y30{bottom:480.272800pt;}
.y185{bottom:482.336000pt;}
.yfe{bottom:482.812400pt;}
.y152{bottom:484.522933pt;}
.y51{bottom:485.691200pt;}
.yd{bottom:487.447733pt;}
.y77{bottom:487.776533pt;}
.y12d{bottom:487.909467pt;}
.y1a5{bottom:488.494400pt;}
.y1ec{bottom:491.574667pt;}
.y15a{bottom:492.522933pt;}
.y26d{bottom:492.840533pt;}
.yc2{bottom:493.526400pt;}
.ydd{bottom:493.543600pt;}
.y1c7{bottom:493.771867pt;}
.y212{bottom:494.553867pt;}
.y98{bottom:496.340267pt;}
.y253{bottom:498.311867pt;}
.y233{bottom:498.691067pt;}
.y2f{bottom:499.243333pt;}
.y151{bottom:500.522933pt;}
.yfd{bottom:500.813733pt;}
.y1a0{bottom:504.067733pt;}
.y50{bottom:504.321200pt;}
.y1a4{bottom:504.494400pt;}
.y76{bottom:506.283867pt;}
.y26c{bottom:510.173867pt;}
.yc1{bottom:511.573733pt;}
.ydc{bottom:511.590933pt;}
.y1c6{bottom:511.926533pt;}
.y211{bottom:512.662533pt;}
.y1eb{bottom:512.922667pt;}
.y12a{bottom:514.114000pt;}
.y97{bottom:515.368933pt;}
.yc{bottom:516.079733pt;}
.y252{bottom:516.315867pt;}
.y150{bottom:516.522933pt;}
.y2e{bottom:516.843333pt;}
.yfc{bottom:518.815067pt;}
.y1a3{bottom:520.494400pt;}
.y4f{bottom:522.951200pt;}
.y75{bottom:524.791200pt;}
.y232{bottom:524.927067pt;}
.y26b{bottom:527.507200pt;}
.yc0{bottom:529.621067pt;}
.ydb{bottom:529.638267pt;}
.y1c5{bottom:530.081200pt;}
.y210{bottom:530.771200pt;}
.y96{bottom:534.397600pt;}
.y2d{bottom:534.443333pt;}
.y1a2{bottom:536.494400pt;}
.yfb{bottom:536.816400pt;}
.y184{bottom:537.682400pt;}
.y14f{bottom:538.122933pt;}
.y4e{bottom:541.581200pt;}
.y251{bottom:541.879867pt;}
.y74{bottom:543.298533pt;}
.y231{bottom:543.603067pt;}
.yb{bottom:544.711733pt;}
.y26a{bottom:544.840533pt;}
.y149{bottom:546.122933pt;}
.ybf{bottom:547.668400pt;}
.y1c4{bottom:548.235867pt;}
.y20f{bottom:548.879867pt;}
.y129{bottom:550.342267pt;}
.y2c{bottom:552.043333pt;}
.y1a1{bottom:552.494400pt;}
.y95{bottom:553.426267pt;}
.y14d{bottom:554.122933pt;}
.yfa{bottom:554.817733pt;}
.y183{bottom:555.683733pt;}
.y4d{bottom:560.211200pt;}
.y73{bottom:561.805867pt;}
.y148{bottom:562.122933pt;}
.y269{bottom:562.173867pt;}
.ybe{bottom:565.715733pt;}
.y1c3{bottom:566.390533pt;}
.yda{bottom:566.578933pt;}
.y20e{bottom:566.988533pt;}
.y250{bottom:567.443867pt;}
.y1ea{bottom:568.184533pt;}
.y128{bottom:568.343600pt;}
.y2b{bottom:569.643333pt;}
.y230{bottom:569.839067pt;}
.y14c{bottom:570.122933pt;}
.y94{bottom:572.454933pt;}
.y19f{bottom:572.707733pt;}
.y182{bottom:573.685067pt;}
.y147{bottom:578.122933pt;}
.y4c{bottom:578.841200pt;}
.y268{bottom:579.507200pt;}
.y72{bottom:580.313200pt;}
.ybd{bottom:583.763067pt;}
.yf9{bottom:584.150400pt;}
.y1c2{bottom:584.545200pt;}
.y20d{bottom:585.097200pt;}
.y24f{bottom:585.447867pt;}
.y14b{bottom:586.122933pt;}
.y1e9{bottom:586.201200pt;}
.y127{bottom:586.344933pt;}
.y2a{bottom:587.243333pt;}
.y19e{bottom:588.707733pt;}
.y93{bottom:591.483600pt;}
.y146{bottom:594.122933pt;}
.y267{bottom:596.840533pt;}
.y4b{bottom:597.471200pt;}
.y71{bottom:598.820533pt;}
.ya{bottom:599.798667pt;}
.ybc{bottom:601.810400pt;}
.y14a{bottom:602.122933pt;}
.yf8{bottom:602.151733pt;}
.y1c1{bottom:602.699867pt;}
.y20c{bottom:603.205867pt;}
.y1e8{bottom:604.217867pt;}
.y19d{bottom:604.707733pt;}
.y29{bottom:604.843333pt;}
.y145{bottom:610.122933pt;}
.y92{bottom:610.512267pt;}
.y24e{bottom:611.011867pt;}
.y199{bottom:612.707733pt;}
.y266{bottom:614.173867pt;}
.y22f{bottom:615.641200pt;}
.y4a{bottom:616.101200pt;}
.y70{bottom:617.327867pt;}
.y14e{bottom:618.122933pt;}
.yf7{bottom:620.153067pt;}
.y19c{bottom:620.707733pt;}
.y1c0{bottom:620.854533pt;}
.y20b{bottom:621.314533pt;}
.yd9{bottom:621.927867pt;}
.y1e7{bottom:622.234533pt;}
.y28{bottom:622.443333pt;}
.y9{bottom:626.652000pt;}
.y181{bottom:627.928667pt;}
.y91{bottom:629.540933pt;}
.y265{bottom:631.507200pt;}
.y22e{bottom:634.317200pt;}
.y49{bottom:634.731200pt;}
.y6f{bottom:635.835200pt;}
.y24d{bottom:636.575867pt;}
.y19b{bottom:636.707733pt;}
.yf6{bottom:638.154400pt;}
.ybb{bottom:638.751067pt;}
.y1bf{bottom:639.009200pt;}
.y20a{bottom:639.423200pt;}
.y144{bottom:639.722933pt;}
.yd8{bottom:639.975200pt;}
.y27{bottom:640.043333pt;}
.y1e6{bottom:640.251200pt;}
.y126{bottom:640.588667pt;}
.y180{bottom:643.928667pt;}
.y90{bottom:648.569600pt;}
.y264{bottom:648.840533pt;}
.y19a{bottom:652.707733pt;}
.y22d{bottom:652.993200pt;}
.y48{bottom:653.361200pt;}
.y8{bottom:653.505333pt;}
.y6e{bottom:654.342533pt;}
.y24c{bottom:654.579867pt;}
.y143{bottom:655.722933pt;}
.y125{bottom:656.588667pt;}
.y1be{bottom:657.163867pt;}
.y209{bottom:657.531867pt;}
.y26{bottom:657.643333pt;}
.yd7{bottom:658.022533pt;}
.y1e5{bottom:658.267867pt;}
.y17f{bottom:659.928667pt;}
.y263{bottom:666.173867pt;}
.y8f{bottom:667.598267pt;}
.y22c{bottom:671.669200pt;}
.y142{bottom:671.722933pt;}
.y196{bottom:671.928267pt;}
.y47{bottom:671.991200pt;}
.y198{bottom:672.248267pt;}
.y124{bottom:672.588667pt;}
.y7{bottom:672.798667pt;}
.y6d{bottom:672.849867pt;}
.y197{bottom:673.394933pt;}
.yf5{bottom:675.052133pt;}
.y25{bottom:675.243333pt;}
.y1bd{bottom:675.318533pt;}
.y208{bottom:675.640533pt;}
.y17e{bottom:675.928667pt;}
.yd6{bottom:676.069867pt;}
.y1e4{bottom:676.284533pt;}
.y24b{bottom:680.143867pt;}
.y262{bottom:683.507200pt;}
.y8e{bottom:686.626933pt;}
.y141{bottom:687.722933pt;}
.y123{bottom:688.588667pt;}
.y22b{bottom:690.345200pt;}
.y46{bottom:690.621200pt;}
.y6c{bottom:691.357200pt;}
.y17d{bottom:691.928667pt;}
.y6{bottom:692.093333pt;}
.y1bc{bottom:693.473200pt;}
.y207{bottom:693.749200pt;}
.yba{bottom:694.117200pt;}
.y1e3{bottom:694.301200pt;}
.y24a{bottom:698.147867pt;}
.y140{bottom:703.722933pt;}
.y24{bottom:704.190000pt;}
.y8d{bottom:705.655600pt;}
.y17c{bottom:707.928667pt;}
.y122{bottom:708.788667pt;}
.y22a{bottom:709.021200pt;}
.y45{bottom:709.251200pt;}
.y6b{bottom:709.864533pt;}
.y1bb{bottom:711.627867pt;}
.y206{bottom:711.857867pt;}
.yb9{bottom:712.164533pt;}
.y261{bottom:712.173867pt;}
.y1e2{bottom:712.317867pt;}
.y13f{bottom:719.722933pt;}
.y120{bottom:723.402000pt;}
.y249{bottom:723.711867pt;}
.y17b{bottom:723.928667pt;}
.y8c{bottom:724.684267pt;}
.y11e{bottom:724.788667pt;}
.y193{bottom:724.922667pt;}
.y195{bottom:727.336000pt;}
.y229{bottom:727.697200pt;}
.y44{bottom:727.881200pt;}
.y6a{bottom:728.371867pt;}
.y1ba{bottom:729.782533pt;}
.y205{bottom:729.966533pt;}
.yb8{bottom:730.211867pt;}
.y1e1{bottom:730.334533pt;}
.yf4{bottom:730.395867pt;}
.y13e{bottom:735.722933pt;}
.y5{bottom:737.846533pt;}
.y11f{bottom:739.402000pt;}
.y17a{bottom:739.928667pt;}
.y121{bottom:740.788667pt;}
.y248{bottom:741.715867pt;}
.y8b{bottom:743.712933pt;}
.y228{bottom:746.373200pt;}
.y43{bottom:746.511200pt;}
.y69{bottom:746.879200pt;}
.y1b9{bottom:747.937200pt;}
.y204{bottom:748.075200pt;}
.y23{bottom:748.256667pt;}
.yb7{bottom:748.259200pt;}
.y1e0{bottom:748.351200pt;}
.yf3{bottom:748.397200pt;}
.y260{bottom:752.173733pt;}
.y179{bottom:755.928667pt;}
.y13d{bottom:757.322933pt;}
.y11d{bottom:760.988667pt;}
.y8a{bottom:762.741600pt;}
.y4{bottom:764.699867pt;}
.y227{bottom:765.049200pt;}
.y42{bottom:765.141200pt;}
.y68{bottom:765.386533pt;}
.y1b8{bottom:766.091867pt;}
.y203{bottom:766.183867pt;}
.yb6{bottom:766.306533pt;}
.y1df{bottom:766.367867pt;}
.yf2{bottom:766.398533pt;}
.y22{bottom:767.190000pt;}
.y247{bottom:767.279867pt;}
.y11c{bottom:768.988667pt;}
.y11a{bottom:771.362000pt;}
.y25f{bottom:776.179067pt;}
.y194{bottom:776.936000pt;}
.y13c{bottom:777.522933pt;}
.y178{bottom:777.528667pt;}
.y89{bottom:781.770267pt;}
.y226{bottom:783.725200pt;}
.y41{bottom:783.771200pt;}
.y67{bottom:783.893867pt;}
.y3{bottom:783.993200pt;}
.y1b7{bottom:784.246533pt;}
.y202{bottom:784.292533pt;}
.yb5{bottom:784.353867pt;}
.y1de{bottom:784.384533pt;}
.yf1{bottom:784.399867pt;}
.y246{bottom:785.283867pt;}
.y21{bottom:786.131333pt;}
.y119{bottom:787.362000pt;}
.y11b{bottom:797.722000pt;}
.y177{bottom:797.728667pt;}
.y25e{bottom:800.184400pt;}
.y88{bottom:800.798933pt;}
.y40{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y20{bottom:803.731333pt;}
.y1f{bottom:842.834667pt;}
.y1e{bottom:858.834667pt;}
.hb{height:28.666667pt;}
.h4{height:35.833333pt;}
.h15{height:36.796875pt;}
.h3{height:37.625000pt;}
.h12{height:37.942708pt;}
.ha{height:41.208333pt;}
.hf{height:42.316406pt;}
.h11{height:43.634115pt;}
.h2{height:44.791667pt;}
.h7{height:45.286458pt;}
.h14{height:45.416667pt;}
.h16{height:47.550781pt;}
.h17{height:47.687500pt;}
.h8{height:48.375000pt;}
.h9{height:52.079427pt;}
.he{height:52.229167pt;}
.hc{height:53.973333pt;}
.hd{height:56.608073pt;}
.h10{height:61.136719pt;}
.h6{height:63.401042pt;}
.h5{height:64.500000pt;}
.h13{height:69.942708pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xd{left:71.187867pt;}
.x9{left:72.850133pt;}
.x1{left:74.375600pt;}
.x5{left:75.407333pt;}
.x40{left:81.970000pt;}
.x1e{left:83.356667pt;}
.xe{left:86.191200pt;}
.x1d{left:87.130000pt;}
.x16{left:89.537867pt;}
.xa{left:90.851467pt;}
.x17{left:92.130800pt;}
.x4{left:93.354000pt;}
.x6{left:94.266000pt;}
.x29{left:96.463333pt;}
.x34{left:103.090000pt;}
.x20{left:104.930000pt;}
.x27{left:107.450000pt;}
.x47{left:108.370000pt;}
.x32{left:110.103333pt;}
.x1f{left:111.063333pt;}
.xb{left:113.529467pt;}
.x33{left:116.516667pt;}
.x1c{left:122.450000pt;}
.x35{left:126.436667pt;}
.x15{left:128.031200pt;}
.x12{left:129.511200pt;}
.x13{left:130.644533pt;}
.x2a{left:132.423333pt;}
.x28{left:133.836667pt;}
.x31{left:136.330000pt;}
.x59{left:138.098800pt;}
.x3f{left:142.956667pt;}
.x53{left:147.432133pt;}
.xc{left:178.807867pt;}
.x8{left:180.014933pt;}
.x55{left:181.698800pt;}
.x54{left:185.965467pt;}
.x56{left:187.618800pt;}
.x7{left:189.034533pt;}
.x19{left:202.437867pt;}
.x3{left:206.103467pt;}
.x2{left:207.502000pt;}
.x10{left:212.551200pt;}
.x2b{left:247.236667pt;}
.x37{left:248.583333pt;}
.x21{left:249.556667pt;}
.x2c{left:251.770000pt;}
.x4d{left:254.436667pt;}
.xf{left:255.937867pt;}
.x4c{left:256.903333pt;}
.x2d{left:258.223333pt;}
.x39{left:261.490000pt;}
.x23{left:263.556667pt;}
.x22{left:274.610000pt;}
.x18{left:281.091200pt;}
.x49{left:286.143333pt;}
.x38{left:289.503333pt;}
.x36{left:292.756667pt;}
.x41{left:297.796667pt;}
.x48{left:299.890000pt;}
.x43{left:301.730000pt;}
.x3a{left:311.023333pt;}
.x42{left:314.330000pt;}
.x1b{left:362.477867pt;}
.x58{left:364.845467pt;}
.x57{left:367.192133pt;}
.x4f{left:376.837867pt;}
.x14{left:382.724533pt;}
.x50{left:405.171200pt;}
.x46{left:409.663333pt;}
.x2e{left:412.530000pt;}
.x3b{left:413.543333pt;}
.x4a{left:416.756667pt;}
.x26{left:419.903333pt;}
.x3d{left:423.143333pt;}
.x4e{left:424.903333pt;}
.x1a{left:426.104533pt;}
.x51{left:433.504533pt;}
.x25{left:434.956667pt;}
.x11{left:436.057867pt;}
.x3c{left:444.516667pt;}
.x3e{left:448.890000pt;}
.x24{left:451.370000pt;}
.x45{left:457.316667pt;}
.x4b{left:462.530000pt;}
.x44{left:464.650000pt;}
.x30{left:468.303333pt;}
.x2f{left:471.330000pt;}
.x52{left:499.771200pt;}
}




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