
    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_6616c70460d9b08202d2258b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_46a6cf21341d834f6577d42c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.953000;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_9fe6a0ec53e5e31b68512abe.woff')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_b13ac4d49890e917db16ea2e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.665000;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_b160eb755d3b1f84f51908e2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.664000;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_9d35d3c8e947fd02da06012c.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c377d54d5a603b47dad5c51f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_518b31c3b2e61b430b7ad050.woff')format("woff");}.ff8{font-family:ff8;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1117f3a448a56e861758601c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_20638921810004f39eb19260.woff')format("woff");}.ffa{font-family:ffa;line-height:0.687500;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:ffb;src:url('chunks/assets/font_b0a5667a1cb47db18ad82ddd.woff')format("woff");}.ffb{font-family:ffb;line-height:0.890000;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:ffc;src:url('chunks/assets/font_f97f73ca6b6411ceae16d794.woff')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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:ffd;src:url('chunks/assets/font_dea2a65a858c8e4bf6004049.woff')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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:ffe;src:url('chunks/assets/font_c8c5f574d1fa196db3602d95.woff')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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:fff;src:url('chunks/assets/font_42258837cb14c3bb4d8fd4f0.woff')format("woff");}.fff{font-family:fff;line-height:0.938477;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:ff10;src:url('chunks/assets/font_25c22d88e21c964448bed40c.woff')format("woff");}.ff10{font-family:ff10;line-height:0.429000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.696000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.754000px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:2.964877px;}
.ls2{letter-spacing:2.983842px;}
.ls1{letter-spacing:2.985234px;}
.ls7{letter-spacing:2.987675px;}
.ls5{letter-spacing:2.988780px;}
.ls3{letter-spacing:2.988900px;}
.ls0{letter-spacing:2.991234px;}
.ls6{letter-spacing:35.863409px;}
.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;}
}
.ws11a{word-spacing:-17.932680px;}
.ws4b{word-spacing:-15.118034px;}
.ws92{word-spacing:-14.943900px;}
.ws120{word-spacing:-14.920027px;}
.ws51{word-spacing:-2.988780px;}
.ws7c{word-spacing:-1.135736px;}
.wse5{word-spacing:-1.075961px;}
.ws114{word-spacing:-1.016185px;}
.ws11b{word-spacing:-0.956410px;}
.ws119{word-spacing:-0.896634px;}
.wsc6{word-spacing:-0.836858px;}
.wsc4{word-spacing:-0.793792px;}
.ws37{word-spacing:-0.597900px;}
.ws28{word-spacing:-0.478523px;}
.ws39{word-spacing:-0.418506px;}
.wsf{word-spacing:-0.322776px;}
.ws26{word-spacing:-0.239112px;}
.wsbe{word-spacing:-0.179327px;}
.ws6f{word-spacing:-0.119551px;}
.ws10a{word-spacing:-0.070163px;}
.wsab{word-spacing:-0.059776px;}
.ws12{word-spacing:-0.054011px;}
.ws8{word-spacing:-0.053796px;}
.ws4f{word-spacing:-0.027868px;}
.ws4c{word-spacing:0.000000px;}
.wsca{word-spacing:0.179327px;}
.ws48{word-spacing:0.239112px;}
.ws131{word-spacing:0.286924px;}
.wsa7{word-spacing:0.298878px;}
.wse8{word-spacing:0.358654px;}
.wse3{word-spacing:0.418429px;}
.wsb{word-spacing:0.430368px;}
.wsf3{word-spacing:0.478205px;}
.wsd7{word-spacing:0.657532px;}
.ws126{word-spacing:0.717309px;}
.ws97{word-spacing:0.777083px;}
.wsea{word-spacing:0.836858px;}
.wsd6{word-spacing:1.016185px;}
.ws47{word-spacing:1.076124px;}
.wsf4{word-spacing:1.135736px;}
.ws10{word-spacing:1.183512px;}
.ws101{word-spacing:1.255288px;}
.ws90{word-spacing:1.315063px;}
.ws70{word-spacing:1.434614px;}
.ws108{word-spacing:1.494390px;}
.ws68{word-spacing:1.554166px;}
.ws1c{word-spacing:1.554228px;}
.wsa8{word-spacing:1.613941px;}
.wsfd{word-spacing:1.673717px;}
.ws91{word-spacing:1.853044px;}
.ws38{word-spacing:1.853118px;}
.ws64{word-spacing:2.032370px;}
.ws9a{word-spacing:2.092146px;}
.ws98{word-spacing:2.151922px;}
.wsbf{word-spacing:2.271473px;}
.ws12c{word-spacing:2.295389px;}
.wse4{word-spacing:2.391024px;}
.wse6{word-spacing:2.400317px;}
.ws124{word-spacing:2.486671px;}
.ws11f{word-spacing:2.570351px;}
.ws94{word-spacing:2.601791px;}
.ws95{word-spacing:2.622474px;}
.ws96{word-spacing:2.630126px;}
.ws88{word-spacing:2.689902px;}
.ws1b{word-spacing:2.749788px;}
.ws122{word-spacing:2.773595px;}
.ws20{word-spacing:2.988900px;}
.ws24{word-spacing:2.989020px;}
.ws14{word-spacing:3.012468px;}
.ws3c{word-spacing:3.048439px;}
.wsff{word-spacing:3.048556px;}
.ws107{word-spacing:3.108331px;}
.ws127{word-spacing:3.108339px;}
.ws3a{word-spacing:3.108456px;}
.ws27{word-spacing:3.168234px;}
.wsd2{word-spacing:3.347434px;}
.ws32{word-spacing:3.407226px;}
.ws11e{word-spacing:3.466985px;}
.ws9f{word-spacing:3.586536px;}
.ws41{word-spacing:3.646458px;}
.ws79{word-spacing:3.706087px;}
.wsef{word-spacing:3.765863px;}
.ws1f{word-spacing:3.766014px;}
.ws33{word-spacing:3.825792px;}
.ws10f{word-spacing:3.885414px;}
.ws76{word-spacing:3.945190px;}
.ws7b{word-spacing:4.004965px;}
.ws74{word-spacing:4.064741px;}
.ws46{word-spacing:4.064844px;}
.wsb0{word-spacing:4.124516px;}
.ws77{word-spacing:4.303843px;}
.ws125{word-spacing:4.303854px;}
.wsbd{word-spacing:4.363619px;}
.wsbb{word-spacing:4.366512px;}
.ws5c{word-spacing:4.483170px;}
.wscb{word-spacing:4.542946px;}
.wsc2{word-spacing:4.602721px;}
.ws73{word-spacing:4.662497px;}
.wsb5{word-spacing:4.722272px;}
.wsf7{word-spacing:4.782048px;}
.ws50{word-spacing:4.782060px;}
.wsed{word-spacing:4.804208px;}
.wsb1{word-spacing:4.961375px;}
.ws86{word-spacing:5.021150px;}
.ws42{word-spacing:5.200686px;}
.ws12a{word-spacing:5.212445px;}
.ws23{word-spacing:5.260464px;}
.ws12f{word-spacing:5.308087px;}
.ws7a{word-spacing:5.499355px;}
.ws6d{word-spacing:5.618906px;}
.ws7e{word-spacing:5.678682px;}
.ws43{word-spacing:5.678910px;}
.ws9d{word-spacing:5.738458px;}
.wsd8{word-spacing:5.798233px;}
.wsd1{word-spacing:5.917784px;}
.ws57{word-spacing:5.977560px;}
.ws7{word-spacing:5.977740px;}
.ws6{word-spacing:5.977800px;}
.ws72{word-spacing:6.037336px;}
.ws99{word-spacing:6.097111px;}
.ws136{word-spacing:6.216678px;}
.wsad{word-spacing:6.336214px;}
.ws12d{word-spacing:6.455781px;}
.ws111{word-spacing:6.515540px;}
.ws6b{word-spacing:6.575316px;}
.ws1d{word-spacing:6.575341px;}
.ws5{word-spacing:6.575400px;}
.ws109{word-spacing:6.635092px;}
.ws2e{word-spacing:6.695136px;}
.ws11{word-spacing:6.724500px;}
.ws5b{word-spacing:6.754643px;}
.ws9{word-spacing:6.778296px;}
.wseb{word-spacing:6.814418px;}
.ws9b{word-spacing:6.874194px;}
.ws116{word-spacing:6.993745px;}
.wsa5{word-spacing:7.053521px;}
.wsc3{word-spacing:7.113296px;}
.ws30{word-spacing:7.113582px;}
.wsba{word-spacing:7.173072px;}
.ws59{word-spacing:7.232848px;}
.wsce{word-spacing:7.352399px;}
.ws8d{word-spacing:7.412174px;}
.ws137{word-spacing:7.460014px;}
.ws12e{word-spacing:7.651296px;}
.ws89{word-spacing:7.711052px;}
.ws128{word-spacing:7.746937px;}
.ws87{word-spacing:7.830604px;}
.wsb6{word-spacing:7.890379px;}
.ws55{word-spacing:7.950155px;}
.wsa{word-spacing:8.177046px;}
.ws10d{word-spacing:8.249033px;}
.wsd{word-spacing:8.284423px;}
.ws62{word-spacing:8.368584px;}
.wsdc{word-spacing:8.428360px;}
.ws117{word-spacing:8.547911px;}
.ws1a{word-spacing:8.548254px;}
.wsaf{word-spacing:8.667462px;}
.ws129{word-spacing:8.751170px;}
.ws71{word-spacing:8.906564px;}
.wsb9{word-spacing:8.966340px;}
.wsc0{word-spacing:9.026116px;}
.wse{word-spacing:9.037782px;}
.wscd{word-spacing:9.085891px;}
.wsb8{word-spacing:9.205442px;}
.ws9c{word-spacing:9.324994px;}
.wsc{word-spacing:9.468096px;}
.wsec{word-spacing:9.504320px;}
.ws10c{word-spacing:9.564096px;}
.ws132{word-spacing:9.611941px;}
.ws58{word-spacing:9.623872px;}
.ws2b{word-spacing:9.624258px;}
.ws1e{word-spacing:9.803472px;}
.wsd9{word-spacing:9.922750px;}
.ws5f{word-spacing:9.982525px;}
.wscf{word-spacing:10.042301px;}
.wsb2{word-spacing:10.102076px;}
.wsb4{word-spacing:10.161852px;}
.ws113{word-spacing:10.281403px;}
.ws118{word-spacing:10.341179px;}
.ws121{word-spacing:10.377070px;}
.ws5e{word-spacing:10.400954px;}
.ws112{word-spacing:10.460730px;}
.ws12b{word-spacing:10.520532px;}
.ws52{word-spacing:10.580281px;}
.wsa0{word-spacing:10.759608px;}
.ws103{word-spacing:10.819384px;}
.ws15{word-spacing:10.866738px;}
.ws78{word-spacing:10.998710px;}
.ws123{word-spacing:11.046559px;}
.ws53{word-spacing:11.237813px;}
.ws5d{word-spacing:11.357364px;}
.ws45{word-spacing:11.596992px;}
.ws7f{word-spacing:11.656242px;}
.ws3d{word-spacing:11.656949px;}
.ws93{word-spacing:11.775793px;}
.ws8e{word-spacing:11.895344px;}
.ws16{word-spacing:11.955600px;}
.ws2c{word-spacing:12.134934px;}
.wsf6{word-spacing:12.194222px;}
.ws134{word-spacing:12.194253px;}
.ws6c{word-spacing:12.313774px;}
.wsc9{word-spacing:12.373549px;}
.ws8c{word-spacing:12.433325px;}
.ws61{word-spacing:12.552876px;}
.ws104{word-spacing:12.612652px;}
.ws80{word-spacing:12.911530px;}
.ws54{word-spacing:12.971305px;}
.wsd4{word-spacing:12.993919px;}
.ws67{word-spacing:13.031081px;}
.ws19{word-spacing:13.031604px;}
.ws85{word-spacing:13.090856px;}
.ws3{word-spacing:13.246188px;}
.ws2{word-spacing:13.246236px;}
.ws8b{word-spacing:13.246306px;}
.ws82{word-spacing:13.270183px;}
.ws44{word-spacing:13.270716px;}
.wsa1{word-spacing:13.449510px;}
.wsde{word-spacing:13.509286px;}
.ws31{word-spacing:13.509828px;}
.ws110{word-spacing:13.688612px;}
.ws75{word-spacing:13.748388px;}
.ws6a{word-spacing:13.808164px;}
.wsfb{word-spacing:13.867939px;}
.wsdd{word-spacing:13.927715px;}
.ws5a{word-spacing:13.987490px;}
.ws69{word-spacing:14.047266px;}
.wsc5{word-spacing:14.085140px;}
.ws65{word-spacing:14.107042px;}
.wsf2{word-spacing:14.166817px;}
.ws29{word-spacing:14.227164px;}
.ws4{word-spacing:14.346000px;}
.ws2d{word-spacing:14.406259px;}
.ws22{word-spacing:14.466276px;}
.ws100{word-spacing:14.645022px;}
.wsd0{word-spacing:14.704798px;}
.ws4a{word-spacing:14.824944px;}
.ws56{word-spacing:14.884124px;}
.ws0{word-spacing:14.901115px;}
.ws1{word-spacing:14.901761px;}
.wsae{word-spacing:15.003676px;}
.ws40{word-spacing:15.123834px;}
.ws10e{word-spacing:15.183002px;}
.wse9{word-spacing:15.257024px;}
.wsdf{word-spacing:15.362329px;}
.ws3f{word-spacing:15.362946px;}
.ws11c{word-spacing:15.541656px;}
.ws21{word-spacing:15.542101px;}
.ws102{word-spacing:15.601432px;}
.wsa2{word-spacing:15.661207px;}
.ws63{word-spacing:15.720983px;}
.wsc7{word-spacing:15.780758px;}
.wsc8{word-spacing:16.079636px;}
.ws10b{word-spacing:16.139412px;}
.wsa3{word-spacing:16.378514px;}
.ws2f{word-spacing:16.379172px;}
.wsfa{word-spacing:16.677392px;}
.ws133{word-spacing:16.785031px;}
.ws8a{word-spacing:16.796944px;}
.ws25{word-spacing:16.857396px;}
.ws115{word-spacing:17.036046px;}
.wse2{word-spacing:17.155597px;}
.ws84{word-spacing:17.275148px;}
.ws35{word-spacing:17.275603px;}
.wse7{word-spacing:17.286808px;}
.ws49{word-spacing:17.455176px;}
.wsa4{word-spacing:17.633802px;}
.wsf5{word-spacing:17.693578px;}
.ws81{word-spacing:17.813129px;}
.ws2a{word-spacing:17.813844px;}
.ws7d{word-spacing:17.932680px;}
.ws130{word-spacing:17.932725px;}
.ws6e{word-spacing:17.992456px;}
.ws3b{word-spacing:17.993238px;}
.wsa6{word-spacing:18.052231px;}
.ws13{word-spacing:18.236844px;}
.wsfc{word-spacing:18.264808px;}
.ws60{word-spacing:18.351109px;}
.wsdb{word-spacing:18.410885px;}
.wsd3{word-spacing:18.530436px;}
.ws11d{word-spacing:18.829314px;}
.ws135{word-spacing:18.984778px;}
.wsf9{word-spacing:19.068416px;}
.wsbc{word-spacing:19.247743px;}
.ws83{word-spacing:19.486846px;}
.wsee{word-spacing:19.683140px;}
.ws105{word-spacing:19.785724px;}
.ws66{word-spacing:19.905275px;}
.ws34{word-spacing:19.906074px;}
.ws36{word-spacing:19.965852px;}
.wsf0{word-spacing:20.503031px;}
.wsfe{word-spacing:20.861024px;}
.ws4d{word-spacing:20.861684px;}
.wsc1{word-spacing:20.919025px;}
.wscc{word-spacing:20.925025px;}
.wse1{word-spacing:21.245024px;}
.ws106{word-spacing:21.758318px;}
.wsda{word-spacing:21.997421px;}
.ws18{word-spacing:21.998364px;}
.wsa9{word-spacing:22.056058px;}
.wsac{word-spacing:22.057196px;}
.ws3e{word-spacing:22.177698px;}
.ws8f{word-spacing:22.475626px;}
.wsf8{word-spacing:22.714728px;}
.ws17{word-spacing:23.432976px;}
.wsb3{word-spacing:25.021099px;}
.ws4e{word-spacing:25.499826px;}
.wsb7{word-spacing:27.425024px;}
.wse0{word-spacing:27.846808px;}
.wsd5{word-spacing:27.855430px;}
.wsaa{word-spacing:29.827163px;}
.wsf1{word-spacing:29.827716px;}
.ws9e{word-spacing:32.637478px;}
._10{margin-left:-139.354549px;}
._2{margin-left:-11.476800px;}
._5{margin-left:-8.607457px;}
._b{margin-left:-7.471497px;}
._1{margin-left:-6.454444px;}
._6{margin-left:-5.081010px;}
._3{margin-left:-3.586500px;}
._7{margin-left:-2.456765px;}
._4{margin-left:-1.434600px;}
._0{width:1.346406px;}
._9{width:2.988900px;}
._1b{width:3.996492px;}
._d{width:15.548327px;}
._13{width:16.617617px;}
._c{width:17.754066px;}
._14{width:19.313485px;}
._15{width:22.063162px;}
._16{width:23.932900px;}
._19{width:26.008352px;}
._e{width:27.563645px;}
._18{width:28.913888px;}
._8{width:30.785670px;}
._a{width:32.877900px;}
._17{width:34.018282px;}
._1a{width:35.461877px;}
._11{width:50.211630px;}
._12{width:190.033114px;}
._f{width:425.053339px;}
.fca{color:rgb(153,76,32);}
.fc8{color:rgb(35,47,62);}
.fc5{color:rgb(204,102,0);}
.fc4{color:rgb(0,0,204);}
.fc9{color:rgb(255,102,102);}
.fc7{color:rgb(76,0,153);}
.fc3{color:rgb(48,193,255);}
.fcb{color:transparent;}
.fc2{color:rgb(39,132,179);}
.fc6{color:rgb(0,102,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:27.868186px;}
.fs12{font-size:29.922180px;}
.fsc{font-size:30.190535px;}
.fsa{font-size:32.512884px;}
.fsf{font-size:33.246866px;}
.fs10{font-size:36.571553px;}
.fs11{font-size:39.896240px;}
.fs14{font-size:41.842800px;}
.fs4{font-size:41.844000px;}
.fse{font-size:43.220926px;}
.fs1{font-size:47.820000px;}
.fsd{font-size:47.820600px;}
.fs13{font-size:49.870300px;}
.fs0{font-size:53.796000px;}
.fs9{font-size:59.775600px;}
.fs5{font-size:59.778000px;}
.fs8{font-size:60.472138px;}
.fs3{font-size:65.754000px;}
.fs7{font-size:66.231389px;}
.fs6{font-size:71.990640px;}
.fs2{font-size:143.460000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:3.659524px;}
.y6e{bottom:13.934091px;}
.y6d{bottom:21.481725px;}
.y64{bottom:29.029358px;}
.y63{bottom:37.738167px;}
.y5a{bottom:55.492785px;}
.y59{bottom:57.712496px;}
.yc3{bottom:63.099000px;}
.y12b{bottom:63.100500px;}
.y6{bottom:67.420500px;}
.y62{bottom:83.023969px;}
.y36{bottom:106.299000px;}
.y192{bottom:108.300000px;}
.y191{bottom:121.749000px;}
.y35{bottom:124.231500px;}
.y68{bottom:130.632120px;}
.y190{bottom:135.199500px;}
.y57{bottom:142.164000px;}
.y69{bottom:142.243864px;}
.y34{bottom:142.465500px;}
.y94{bottom:142.575000px;}
.yc2{bottom:147.198000px;}
.y18f{bottom:148.648500px;}
.y154{bottom:160.096500px;}
.yfa{bottom:160.098000px;}
.y33{bottom:160.398000px;}
.y93{bottom:160.509000px;}
.y18e{bottom:162.099000px;}
.y56{bottom:162.325500px;}
.y65{bottom:170.692637px;}
.y18d{bottom:175.548000px;}
.yc1{bottom:176.011500px;}
.yf9{bottom:178.030500px;}
.y32{bottom:178.330500px;}
.y92{bottom:178.441500px;}
.y55{bottom:180.258000px;}
.y18c{bottom:188.997000px;}
.yc0{bottom:193.944000px;}
.yf8{bottom:195.963000px;}
.y31{bottom:196.263000px;}
.y91{bottom:196.374000px;}
.y54{bottom:198.190500px;}
.y67{bottom:199.721998px;}
.y18b{bottom:202.447500px;}
.ybf{bottom:211.876500px;}
.y6c{bottom:213.075504px;}
.y66{bottom:213.656091px;}
.yf7{bottom:213.895500px;}
.y30{bottom:214.195500px;}
.y90{bottom:214.306500px;}
.y18a{bottom:215.896500px;}
.y53{bottom:216.124500px;}
.y6b{bottom:219.461963px;}
.y61{bottom:220.042550px;}
.y6a{bottom:225.848422px;}
.y60{bottom:226.429009px;}
.y189{bottom:229.345500px;}
.ybe{bottom:229.809000px;}
.yf6{bottom:231.828000px;}
.y2f{bottom:232.129500px;}
.y8f{bottom:232.239000px;}
.y52{bottom:234.057000px;}
.y97{bottom:236.052763px;}
.y188{bottom:242.796000px;}
.ybd{bottom:247.741500px;}
.y5f{bottom:249.652498px;}
.yf5{bottom:249.760500px;}
.y2e{bottom:250.062000px;}
.y8e{bottom:250.173000px;}
.y51{bottom:251.989500px;}
.y187{bottom:256.245000px;}
.y96{bottom:260.156741px;}
.ybc{bottom:265.675500px;}
.yf4{bottom:267.694500px;}
.y2d{bottom:267.994500px;}
.y8d{bottom:268.105500px;}
.y186{bottom:269.695500px;}
.y50{bottom:269.922000px;}
.y12a{bottom:271.072500px;}
.ya6{bottom:276.780174px;}
.y185{bottom:283.144500px;}
.ybb{bottom:283.608000px;}
.yf3{bottom:285.627000px;}
.y2c{bottom:285.927000px;}
.y8c{bottom:286.038000px;}
.y129{bottom:289.005000px;}
.y4f{bottom:290.083500px;}
.ya5{bottom:291.741264px;}
.y184{bottom:296.593500px;}
.y9e{bottom:297.559466px;}
.yba{bottom:301.540500px;}
.yf2{bottom:303.559500px;}
.y2b{bottom:303.859500px;}
.y8b{bottom:303.970500px;}
.ya4{bottom:306.702354px;}
.y128{bottom:306.937500px;}
.y4e{bottom:308.016000px;}
.y183{bottom:310.044000px;}
.yb9{bottom:319.473000px;}
.yf1{bottom:321.492000px;}
.y2a{bottom:321.793500px;}
.y8a{bottom:321.903000px;}
.y182{bottom:323.493000px;}
.y127{bottom:324.871500px;}
.y4d{bottom:325.950000px;}
.ya2{bottom:329.975161px;}
.y181{bottom:336.942000px;}
.yb8{bottom:337.405500px;}
.yf0{bottom:339.424500px;}
.y29{bottom:339.726000px;}
.y89{bottom:339.835500px;}
.ya1{bottom:339.949221px;}
.y126{bottom:342.804000px;}
.y4c{bottom:343.882500px;}
.y9d{bottom:349.092109px;}
.ya0{bottom:349.923280px;}
.y180{bottom:350.392500px;}
.yb7{bottom:355.338000px;}
.yef{bottom:357.357000px;}
.y28{bottom:357.658500px;}
.y88{bottom:357.769500px;}
.y153{bottom:357.910500px;}
.y125{bottom:360.736500px;}
.y4b{bottom:361.815000px;}
.y17f{bottom:363.841500px;}
.y9a{bottom:372.364915px;}
.yb6{bottom:373.272000px;}
.yee{bottom:375.291000px;}
.y27{bottom:375.591000px;}
.ya3{bottom:375.689602px;}
.y87{bottom:375.702000px;}
.y152{bottom:375.843000px;}
.y17e{bottom:377.290500px;}
.y124{bottom:378.669000px;}
.y4a{bottom:379.747500px;}
.y17d{bottom:390.741000px;}
.yb5{bottom:391.204500px;}
.yed{bottom:393.223500px;}
.y26{bottom:393.523500px;}
.y86{bottom:393.634500px;}
.y151{bottom:393.775500px;}
.y123{bottom:396.601500px;}
.y49{bottom:397.680000px;}
.y99{bottom:399.793580px;}
.y17c{bottom:404.190000px;}
.yb4{bottom:409.137000px;}
.yec{bottom:411.156000px;}
.y25{bottom:411.456000px;}
.y85{bottom:411.567000px;}
.y150{bottom:411.708000px;}
.y9f{bottom:413.092327px;}
.y122{bottom:414.534000px;}
.y48{bottom:415.612500px;}
.y17b{bottom:417.640500px;}
.y9c{bottom:423.066386px;}
.yb3{bottom:427.162500px;}
.yeb{bottom:429.088500px;}
.y24{bottom:429.390000px;}
.y84{bottom:429.499500px;}
.y14f{bottom:429.642000px;}
.y98{bottom:429.715760px;}
.y17a{bottom:431.089500px;}
.y121{bottom:432.468000px;}
.y9b{bottom:433.040446px;}
.y47{bottom:433.546500px;}
.y179{bottom:444.538500px;}
.yb2{bottom:445.095000px;}
.yea{bottom:447.021000px;}
.y23{bottom:447.322500px;}
.y83{bottom:447.432000px;}
.y14e{bottom:447.574500px;}
.y120{bottom:450.400500px;}
.y46{bottom:451.479000px;}
.y178{bottom:457.989000px;}
.yb1{bottom:463.029000px;}
.ye9{bottom:464.953500px;}
.y22{bottom:465.255000px;}
.y82{bottom:465.366000px;}
.y14d{bottom:465.507000px;}
.y11f{bottom:468.333000px;}
.y45{bottom:469.411500px;}
.y177{bottom:471.438000px;}
.yb0{bottom:480.961500px;}
.ye8{bottom:482.886000px;}
.y21{bottom:483.187500px;}
.y81{bottom:483.298500px;}
.y14c{bottom:483.439500px;}
.y176{bottom:484.887000px;}
.y11e{bottom:486.265500px;}
.y44{bottom:487.344000px;}
.y175{bottom:498.337500px;}
.yaf{bottom:498.894000px;}
.ye7{bottom:500.820000px;}
.y20{bottom:501.120000px;}
.y80{bottom:501.231000px;}
.y14b{bottom:501.372000px;}
.y11d{bottom:504.198000px;}
.y43{bottom:507.505500px;}
.y174{bottom:511.786500px;}
.yae{bottom:516.826500px;}
.ye6{bottom:518.752500px;}
.y1f{bottom:519.052500px;}
.y7f{bottom:519.163500px;}
.y14a{bottom:519.304500px;}
.y11c{bottom:522.130500px;}
.y173{bottom:525.237000px;}
.y42{bottom:525.438000px;}
.yad{bottom:534.759000px;}
.ye5{bottom:536.685000px;}
.y1e{bottom:536.986500px;}
.y149{bottom:537.238500px;}
.y7e{bottom:537.508500px;}
.y11b{bottom:540.064500px;}
.y41{bottom:543.370500px;}
.y172{bottom:546.538500px;}
.yac{bottom:552.693000px;}
.ye4{bottom:554.617500px;}
.y7d{bottom:555.441000px;}
.y148{bottom:555.723000px;}
.y11a{bottom:557.997000px;}
.y40{bottom:561.304500px;}
.y1d{bottom:561.430500px;}
.yab{bottom:570.625500px;}
.y171{bottom:571.893000px;}
.ye3{bottom:572.550000px;}
.y7c{bottom:573.373500px;}
.y147{bottom:573.655500px;}
.y119{bottom:575.929500px;}
.y3f{bottom:579.237000px;}
.yaa{bottom:588.558000px;}
.y170{bottom:589.825500px;}
.y7b{bottom:591.306000px;}
.y146{bottom:591.589500px;}
.y118{bottom:593.862000px;}
.y1c{bottom:596.160000px;}
.ye2{bottom:596.424000px;}
.y3e{bottom:597.169500px;}
.ya9{bottom:606.490500px;}
.y16f{bottom:607.758000px;}
.y7a{bottom:609.238500px;}
.y145{bottom:609.522000px;}
.y1b{bottom:611.404500px;}
.y117{bottom:611.794500px;}
.ye1{bottom:614.356500px;}
.y3d{bottom:615.102000px;}
.ya8{bottom:624.423000px;}
.y16e{bottom:625.690500px;}
.y1a{bottom:626.349000px;}
.y79{bottom:627.171000px;}
.y144{bottom:627.454500px;}
.y116{bottom:629.727000px;}
.ye0{bottom:632.290500px;}
.y3c{bottom:633.034500px;}
.y19{bottom:641.293500px;}
.y16d{bottom:643.623000px;}
.y143{bottom:645.387000px;}
.y115{bottom:647.661000px;}
.y78{bottom:651.252000px;}
.ydf{bottom:651.621000px;}
.y18{bottom:656.236500px;}
.y16c{bottom:661.555500px;}
.y142{bottom:663.319500px;}
.y114{bottom:665.593500px;}
.y3b{bottom:669.048000px;}
.yde{bottom:669.553500px;}
.y17{bottom:671.181000px;}
.ya7{bottom:675.678000px;}
.y77{bottom:682.767000px;}
.y113{bottom:683.526000px;}
.y16b{bottom:683.752500px;}
.y16{bottom:686.125500px;}
.ydd{bottom:687.486000px;}
.y141{bottom:689.275500px;}
.y76{bottom:700.699500px;}
.y15{bottom:701.068500px;}
.y112{bottom:701.458500px;}
.y95{bottom:702.716851px;}
.ydc{bottom:705.420000px;}
.y16a{bottom:709.105500px;}
.y14{bottom:716.013000px;}
.y75{bottom:718.633500px;}
.y111{bottom:719.391000px;}
.y140{bottom:721.993500px;}
.ydb{bottom:723.352500px;}
.y169{bottom:727.038000px;}
.y13{bottom:730.956000px;}
.y3a{bottom:733.945500px;}
.y74{bottom:736.566000px;}
.y110{bottom:737.325000px;}
.y13f{bottom:739.926000px;}
.yda{bottom:741.285000px;}
.y168{bottom:744.970500px;}
.y12{bottom:745.900500px;}
.y39{bottom:751.878000px;}
.y73{bottom:754.498500px;}
.y10f{bottom:755.257500px;}
.y13e{bottom:757.860000px;}
.yd9{bottom:759.217500px;}
.y11{bottom:760.845000px;}
.y167{bottom:762.903000px;}
.y38{bottom:769.810500px;}
.y72{bottom:772.431000px;}
.y10e{bottom:773.190000px;}
.y10{bottom:775.788000px;}
.y13d{bottom:775.792500px;}
.yd8{bottom:777.150000px;}
.y166{bottom:780.835500px;}
.y37{bottom:787.743000px;}
.yf{bottom:790.732500px;}
.y10d{bottom:791.122500px;}
.y13c{bottom:793.725000px;}
.yd7{bottom:795.082500px;}
.y71{bottom:797.539500px;}
.y165{bottom:798.769500px;}
.ye{bottom:805.677000px;}
.y10c{bottom:809.055000px;}
.y13b{bottom:811.657500px;}
.yd6{bottom:813.016500px;}
.y70{bottom:815.472000px;}
.y164{bottom:816.702000px;}
.y10b{bottom:826.987500px;}
.y13a{bottom:829.590000px;}
.yd5{bottom:832.347000px;}
.y163{bottom:834.634500px;}
.y10a{bottom:844.921500px;}
.y139{bottom:847.522500px;}
.yd4{bottom:850.279500px;}
.y162{bottom:852.123000px;}
.yd{bottom:854.037000px;}
.y109{bottom:862.854000px;}
.y138{bottom:865.455000px;}
.y6f{bottom:867.576000px;}
.yd3{bottom:868.212000px;}
.y161{bottom:870.055500px;}
.yc{bottom:877.953000px;}
.y108{bottom:880.786500px;}
.y137{bottom:883.389000px;}
.yd2{bottom:886.146000px;}
.y160{bottom:887.988000px;}
.yb{bottom:891.024000px;}
.y5e{bottom:894.691530px;}
.y107{bottom:898.719000px;}
.y136{bottom:901.321500px;}
.yd1{bottom:904.078500px;}
.y15f{bottom:905.920500px;}
.ya{bottom:914.940000px;}
.y106{bottom:916.651500px;}
.y135{bottom:919.254000px;}
.yd0{bottom:922.011000px;}
.y15e{bottom:923.853000px;}
.y9{bottom:928.231500px;}
.y105{bottom:934.584000px;}
.y134{bottom:937.186500px;}
.ycf{bottom:939.943500px;}
.y15d{bottom:941.787000px;}
.y104{bottom:952.518000px;}
.y133{bottom:955.119000px;}
.yce{bottom:957.876000px;}
.y15c{bottom:959.719500px;}
.y103{bottom:970.450500px;}
.y132{bottom:973.053000px;}
.ycd{bottom:975.810000px;}
.y15b{bottom:977.652000px;}
.y102{bottom:988.383000px;}
.y131{bottom:990.985500px;}
.y8{bottom:993.238500px;}
.ycc{bottom:993.742500px;}
.y15a{bottom:995.584500px;}
.y101{bottom:1006.315500px;}
.y130{bottom:1008.918000px;}
.ycb{bottom:1011.675000px;}
.y159{bottom:1013.517000px;}
.y100{bottom:1024.248000px;}
.y12f{bottom:1026.850500px;}
.yca{bottom:1029.607500px;}
.y158{bottom:1031.451000px;}
.y7{bottom:1035.081000px;}
.y12e{bottom:1044.783000px;}
.yff{bottom:1045.560000px;}
.yc9{bottom:1047.540000px;}
.y157{bottom:1049.383500px;}
.y12d{bottom:1062.715500px;}
.yfe{bottom:1063.492500px;}
.yc8{bottom:1065.472500px;}
.y156{bottom:1067.316000px;}
.yfd{bottom:1081.425000px;}
.yc7{bottom:1083.406500px;}
.y12c{bottom:1084.804500px;}
.y155{bottom:1085.248500px;}
.yfc{bottom:1099.357500px;}
.yc6{bottom:1102.737000px;}
.yfb{bottom:1117.291500px;}
.yc5{bottom:1120.669500px;}
.yc4{bottom:1138.602000px;}
.y5{bottom:1139.469000px;}
.y4{bottom:1154.413500px;}
.y5c{bottom:1161.329008px;}
.y3{bottom:1169.356500px;}
.y2{bottom:1184.301000px;}
.y5d{bottom:1185.343500px;}
.y58{bottom:1192.284983px;}
.y1{bottom:1199.245500px;}
.hd{height:17.997660px;}
.h11{height:20.288801px;}
.h1a{height:21.784165px;}
.h12{height:21.979535px;}
.h10{height:23.670268px;}
.h17{height:24.204628px;}
.h18{height:26.625091px;}
.h6{height:27.784416px;}
.h19{height:29.045553px;}
.h16{height:31.466016px;}
.h13{height:32.900573px;}
.h21{height:33.140573px;}
.h3{height:35.434620px;}
.h20{height:35.435065px;}
.h1c{height:35.441065px;}
.h1b{height:36.306942px;}
.ha{height:37.334424px;}
.h9{height:37.603404px;}
.h2{height:39.862836px;}
.he{height:40.826735px;}
.h14{height:41.125613px;}
.h8{height:41.127264px;}
.h1e{height:41.131613px;}
.h1d{height:41.484266px;}
.h1f{height:41.783144px;}
.hc{height:44.757931px;}
.h7{height:44.833500px;}
.hb{height:47.982043px;}
.h5{height:55.554300px;}
.h4{height:98.700480px;}
.hf{height:261.844829px;}
.h15{height:453.819738px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:23.996880px;}
.w4{width:352.416444px;}
.w5{width:352.416787px;}
.w2{width:892.383975px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x42{left:3.740272px;}
.x1e{left:35.796830px;}
.x17{left:36.958004px;}
.x18{left:41.022115px;}
.x1d{left:44.414921px;}
.x19{left:54.139757px;}
.x16{left:56.244386px;}
.x1f{left:61.732749px;}
.x23{left:64.417965px;}
.x3f{left:68.844390px;}
.x22{left:72.183319px;}
.x1c{left:77.145525px;}
.x9{left:85.039500px;}
.x8{left:88.917000px;}
.x3c{left:90.857452px;}
.x41{left:93.961359px;}
.x40{left:95.130194px;}
.xe{left:99.984000px;}
.x21{left:103.335454px;}
.xa{left:106.492500px;}
.x24{left:110.692580px;}
.x4c{left:113.125500px;}
.x25{left:114.756690px;}
.x26{left:117.922708px;}
.x20{left:122.385972px;}
.x27{left:136.047915px;}
.x3d{left:137.052414px;}
.x3b{left:139.260214px;}
.x7{left:143.001000px;}
.x3a{left:145.727773px;}
.x4a{left:164.811000px;}
.xb{left:167.311500px;}
.x3e{left:168.753821px;}
.x37{left:172.573500px;}
.x45{left:179.117493px;}
.x44{left:187.468175px;}
.x43{left:190.481172px;}
.xf{left:192.171000px;}
.x6{left:195.472500px;}
.x35{left:204.847499px;}
.x2c{left:210.553580px;}
.x28{left:211.714754px;}
.x29{left:215.778865px;}
.x2b{left:219.171671px;}
.xc{left:222.949500px;}
.x2d{left:228.633431px;}
.x1a{left:230.783415px;}
.x2e{left:236.489502px;}
.x1b{left:239.174718px;}
.x38{left:245.312527px;}
.x15{left:249.922500px;}
.x2a{left:251.902275px;}
.x36{left:263.586593px;}
.x30{left:278.092204px;}
.x31{left:285.449330px;}
.x32{left:289.513440px;}
.x33{left:292.679458px;}
.x2f{left:297.142722px;}
.x46{left:304.884154px;}
.x47{left:309.040013px;}
.x34{left:310.804665px;}
.x48{left:312.169898px;}
.x39{left:320.117977px;}
.xd{left:400.942500px;}
.x10{left:455.422500px;}
.x4f{left:461.400000px;}
.x12{left:470.367000px;}
.x50{left:482.812500px;}
.x49{left:484.476000px;}
.x4b{left:491.781000px;}
.x52{left:499.417500px;}
.x4d{left:543.180000px;}
.x11{left:558.385500px;}
.x4e{left:589.806000px;}
.x5{left:630.753000px;}
.x1{left:637.921500px;}
.x2{left:645.856500px;}
.x51{left:652.306500px;}
.x4{left:673.200000px;}
.x3{left:710.776500px;}
.x13{left:770.299848px;}
.x14{left:774.164700px;}
@media print{
.v2{vertical-align:-19.285333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:2.635446pt;}
.ls2{letter-spacing:2.652304pt;}
.ls1{letter-spacing:2.653541pt;}
.ls7{letter-spacing:2.655711pt;}
.ls5{letter-spacing:2.656693pt;}
.ls3{letter-spacing:2.656800pt;}
.ls0{letter-spacing:2.658875pt;}
.ls6{letter-spacing:31.878586pt;}
.ws11a{word-spacing:-15.940160pt;}
.ws4b{word-spacing:-13.438253pt;}
.ws92{word-spacing:-13.283467pt;}
.ws120{word-spacing:-13.262246pt;}
.ws51{word-spacing:-2.656693pt;}
.ws7c{word-spacing:-1.009543pt;}
.wse5{word-spacing:-0.956410pt;}
.ws114{word-spacing:-0.903276pt;}
.ws11b{word-spacing:-0.850142pt;}
.ws119{word-spacing:-0.797008pt;}
.wsc6{word-spacing:-0.743874pt;}
.wsc4{word-spacing:-0.705593pt;}
.ws37{word-spacing:-0.531466pt;}
.ws28{word-spacing:-0.425354pt;}
.ws39{word-spacing:-0.372005pt;}
.wsf{word-spacing:-0.286912pt;}
.ws26{word-spacing:-0.212544pt;}
.wsbe{word-spacing:-0.159402pt;}
.ws6f{word-spacing:-0.106268pt;}
.ws10a{word-spacing:-0.062367pt;}
.wsab{word-spacing:-0.053134pt;}
.ws12{word-spacing:-0.048010pt;}
.ws8{word-spacing:-0.047819pt;}
.ws4f{word-spacing:-0.024772pt;}
.ws4c{word-spacing:0.000000pt;}
.wsca{word-spacing:0.159402pt;}
.ws48{word-spacing:0.212544pt;}
.ws131{word-spacing:0.255043pt;}
.wsa7{word-spacing:0.265669pt;}
.wse8{word-spacing:0.318803pt;}
.wse3{word-spacing:0.371937pt;}
.wsb{word-spacing:0.382549pt;}
.wsf3{word-spacing:0.425071pt;}
.wsd7{word-spacing:0.584473pt;}
.ws126{word-spacing:0.637608pt;}
.ws97{word-spacing:0.690740pt;}
.wsea{word-spacing:0.743874pt;}
.wsd6{word-spacing:0.903276pt;}
.ws47{word-spacing:0.956554pt;}
.wsf4{word-spacing:1.009543pt;}
.ws10{word-spacing:1.052011pt;}
.ws101{word-spacing:1.115811pt;}
.ws90{word-spacing:1.168945pt;}
.ws70{word-spacing:1.275213pt;}
.ws108{word-spacing:1.328347pt;}
.ws68{word-spacing:1.381481pt;}
.ws1c{word-spacing:1.381536pt;}
.wsa8{word-spacing:1.434614pt;}
.wsfd{word-spacing:1.487748pt;}
.ws91{word-spacing:1.647150pt;}
.ws38{word-spacing:1.647216pt;}
.ws64{word-spacing:1.806551pt;}
.ws9a{word-spacing:1.859685pt;}
.ws98{word-spacing:1.912819pt;}
.wsbf{word-spacing:2.019087pt;}
.ws12c{word-spacing:2.040346pt;}
.wse4{word-spacing:2.125355pt;}
.wse6{word-spacing:2.133615pt;}
.ws124{word-spacing:2.210374pt;}
.ws11f{word-spacing:2.284756pt;}
.ws94{word-spacing:2.312703pt;}
.ws95{word-spacing:2.331088pt;}
.ws96{word-spacing:2.337890pt;}
.ws88{word-spacing:2.391024pt;}
.ws1b{word-spacing:2.444256pt;}
.ws122{word-spacing:2.465418pt;}
.ws20{word-spacing:2.656800pt;}
.ws24{word-spacing:2.656906pt;}
.ws14{word-spacing:2.677750pt;}
.ws3c{word-spacing:2.709723pt;}
.wsff{word-spacing:2.709827pt;}
.ws107{word-spacing:2.762961pt;}
.ws127{word-spacing:2.762968pt;}
.ws3a{word-spacing:2.763072pt;}
.ws27{word-spacing:2.816208pt;}
.wsd2{word-spacing:2.975497pt;}
.ws32{word-spacing:3.028646pt;}
.ws11e{word-spacing:3.081764pt;}
.ws9f{word-spacing:3.188032pt;}
.ws41{word-spacing:3.241296pt;}
.ws79{word-spacing:3.294300pt;}
.wsef{word-spacing:3.347434pt;}
.ws1f{word-spacing:3.347568pt;}
.ws33{word-spacing:3.400704pt;}
.ws10f{word-spacing:3.453701pt;}
.ws76{word-spacing:3.506835pt;}
.ws7b{word-spacing:3.559969pt;}
.ws74{word-spacing:3.613103pt;}
.ws46{word-spacing:3.613195pt;}
.wsb0{word-spacing:3.666237pt;}
.ws77{word-spacing:3.825638pt;}
.ws125{word-spacing:3.825648pt;}
.wsbd{word-spacing:3.878772pt;}
.wsbb{word-spacing:3.881344pt;}
.ws5c{word-spacing:3.985040pt;}
.wscb{word-spacing:4.038174pt;}
.wsc2{word-spacing:4.091308pt;}
.ws73{word-spacing:4.144442pt;}
.wsb5{word-spacing:4.197575pt;}
.wsf7{word-spacing:4.250709pt;}
.ws50{word-spacing:4.250720pt;}
.wsed{word-spacing:4.270407pt;}
.wsb1{word-spacing:4.410111pt;}
.ws86{word-spacing:4.463245pt;}
.ws42{word-spacing:4.622832pt;}
.ws12a{word-spacing:4.633285pt;}
.ws23{word-spacing:4.675968pt;}
.ws12f{word-spacing:4.718299pt;}
.ws7a{word-spacing:4.888316pt;}
.ws6d{word-spacing:4.994583pt;}
.ws7e{word-spacing:5.047717pt;}
.ws43{word-spacing:5.047920pt;}
.ws9d{word-spacing:5.100851pt;}
.wsd8{word-spacing:5.153985pt;}
.wsd1{word-spacing:5.260253pt;}
.ws57{word-spacing:5.313387pt;}
.ws7{word-spacing:5.313547pt;}
.ws6{word-spacing:5.313600pt;}
.ws72{word-spacing:5.366521pt;}
.ws99{word-spacing:5.419654pt;}
.ws136{word-spacing:5.525936pt;}
.wsad{word-spacing:5.632190pt;}
.ws12d{word-spacing:5.738472pt;}
.ws111{word-spacing:5.791591pt;}
.ws6b{word-spacing:5.844725pt;}
.ws1d{word-spacing:5.844747pt;}
.ws5{word-spacing:5.844800pt;}
.ws109{word-spacing:5.897859pt;}
.ws2e{word-spacing:5.951232pt;}
.ws11{word-spacing:5.977333pt;}
.ws5b{word-spacing:6.004127pt;}
.ws9{word-spacing:6.025152pt;}
.wseb{word-spacing:6.057261pt;}
.ws9b{word-spacing:6.110395pt;}
.ws116{word-spacing:6.216662pt;}
.wsa5{word-spacing:6.269796pt;}
.wsc3{word-spacing:6.322930pt;}
.ws30{word-spacing:6.323184pt;}
.wsba{word-spacing:6.376064pt;}
.ws59{word-spacing:6.429198pt;}
.wsce{word-spacing:6.535466pt;}
.ws8d{word-spacing:6.588599pt;}
.ws137{word-spacing:6.631123pt;}
.ws12e{word-spacing:6.801152pt;}
.ws89{word-spacing:6.854269pt;}
.ws128{word-spacing:6.886166pt;}
.ws87{word-spacing:6.960537pt;}
.wsb6{word-spacing:7.013670pt;}
.ws55{word-spacing:7.066804pt;}
.wsa{word-spacing:7.268485pt;}
.ws10d{word-spacing:7.332474pt;}
.wsd{word-spacing:7.363931pt;}
.ws62{word-spacing:7.438741pt;}
.wsdc{word-spacing:7.491875pt;}
.ws117{word-spacing:7.598143pt;}
.ws1a{word-spacing:7.598448pt;}
.wsaf{word-spacing:7.704411pt;}
.ws129{word-spacing:7.778818pt;}
.ws71{word-spacing:7.916946pt;}
.wsb9{word-spacing:7.970080pt;}
.wsc0{word-spacing:8.023214pt;}
.wse{word-spacing:8.033584pt;}
.wscd{word-spacing:8.076348pt;}
.wsb8{word-spacing:8.182615pt;}
.ws9c{word-spacing:8.288883pt;}
.wsc{word-spacing:8.416085pt;}
.wsec{word-spacing:8.448285pt;}
.ws10c{word-spacing:8.501419pt;}
.ws132{word-spacing:8.543947pt;}
.ws58{word-spacing:8.554553pt;}
.ws2b{word-spacing:8.554896pt;}
.ws1e{word-spacing:8.714198pt;}
.wsd9{word-spacing:8.820222pt;}
.ws5f{word-spacing:8.873356pt;}
.wscf{word-spacing:8.926490pt;}
.wsb2{word-spacing:8.979623pt;}
.wsb4{word-spacing:9.032757pt;}
.ws113{word-spacing:9.139025pt;}
.ws118{word-spacing:9.192159pt;}
.ws121{word-spacing:9.224062pt;}
.ws5e{word-spacing:9.245293pt;}
.ws112{word-spacing:9.298427pt;}
.ws12b{word-spacing:9.351584pt;}
.ws52{word-spacing:9.404694pt;}
.wsa0{word-spacing:9.564096pt;}
.ws103{word-spacing:9.617230pt;}
.ws15{word-spacing:9.659323pt;}
.ws78{word-spacing:9.776631pt;}
.ws123{word-spacing:9.819163pt;}
.ws53{word-spacing:9.989167pt;}
.ws5d{word-spacing:10.095435pt;}
.ws45{word-spacing:10.308437pt;}
.ws7f{word-spacing:10.361104pt;}
.ws3d{word-spacing:10.361733pt;}
.ws93{word-spacing:10.467372pt;}
.ws8e{word-spacing:10.573639pt;}
.ws16{word-spacing:10.627200pt;}
.ws2c{word-spacing:10.786608pt;}
.wsf6{word-spacing:10.839309pt;}
.ws134{word-spacing:10.839336pt;}
.ws6c{word-spacing:10.945577pt;}
.wsc9{word-spacing:10.998710pt;}
.ws8c{word-spacing:11.051844pt;}
.ws61{word-spacing:11.158112pt;}
.ws104{word-spacing:11.211246pt;}
.ws80{word-spacing:11.476915pt;}
.ws54{word-spacing:11.530049pt;}
.wsd4{word-spacing:11.550150pt;}
.ws67{word-spacing:11.583183pt;}
.ws19{word-spacing:11.583648pt;}
.ws85{word-spacing:11.636317pt;}
.ws3{word-spacing:11.774389pt;}
.ws2{word-spacing:11.774432pt;}
.ws8b{word-spacing:11.774494pt;}
.ws82{word-spacing:11.795718pt;}
.ws44{word-spacing:11.796192pt;}
.wsa1{word-spacing:11.955120pt;}
.wsde{word-spacing:12.008254pt;}
.ws31{word-spacing:12.008736pt;}
.ws110{word-spacing:12.167655pt;}
.ws75{word-spacing:12.220789pt;}
.ws6a{word-spacing:12.273923pt;}
.wsfb{word-spacing:12.327057pt;}
.wsdd{word-spacing:12.380191pt;}
.ws5a{word-spacing:12.433325pt;}
.ws69{word-spacing:12.486459pt;}
.wsc5{word-spacing:12.520125pt;}
.ws65{word-spacing:12.539593pt;}
.wsf2{word-spacing:12.592726pt;}
.ws29{word-spacing:12.646368pt;}
.ws4{word-spacing:12.752000pt;}
.ws2d{word-spacing:12.805563pt;}
.ws22{word-spacing:12.858912pt;}
.ws100{word-spacing:13.017797pt;}
.wsd0{word-spacing:13.070931pt;}
.ws4a{word-spacing:13.177728pt;}
.ws56{word-spacing:13.230333pt;}
.ws0{word-spacing:13.245436pt;}
.ws1{word-spacing:13.246010pt;}
.wsae{word-spacing:13.336601pt;}
.ws40{word-spacing:13.443408pt;}
.ws10e{word-spacing:13.496002pt;}
.wse9{word-spacing:13.561799pt;}
.wsdf{word-spacing:13.655404pt;}
.ws3f{word-spacing:13.655952pt;}
.ws11c{word-spacing:13.814805pt;}
.ws21{word-spacing:13.815201pt;}
.ws102{word-spacing:13.867939pt;}
.wsa2{word-spacing:13.921073pt;}
.ws63{word-spacing:13.974207pt;}
.wsc7{word-spacing:14.027341pt;}
.wsc8{word-spacing:14.293010pt;}
.ws10b{word-spacing:14.346144pt;}
.wsa3{word-spacing:14.558679pt;}
.ws2f{word-spacing:14.559264pt;}
.wsfa{word-spacing:14.824349pt;}
.ws133{word-spacing:14.920027pt;}
.ws8a{word-spacing:14.930617pt;}
.ws25{word-spacing:14.984352pt;}
.ws115{word-spacing:15.143152pt;}
.wse2{word-spacing:15.249420pt;}
.ws84{word-spacing:15.355687pt;}
.ws35{word-spacing:15.356091pt;}
.wse7{word-spacing:15.366051pt;}
.ws49{word-spacing:15.515712pt;}
.wsa4{word-spacing:15.674491pt;}
.wsf5{word-spacing:15.727625pt;}
.ws81{word-spacing:15.833892pt;}
.ws2a{word-spacing:15.834528pt;}
.ws7d{word-spacing:15.940160pt;}
.ws130{word-spacing:15.940200pt;}
.ws6e{word-spacing:15.993294pt;}
.ws3b{word-spacing:15.993989pt;}
.wsa6{word-spacing:16.046428pt;}
.ws13{word-spacing:16.210528pt;}
.wsfc{word-spacing:16.235385pt;}
.ws60{word-spacing:16.312097pt;}
.wsdb{word-spacing:16.365231pt;}
.wsd3{word-spacing:16.471499pt;}
.ws11d{word-spacing:16.737168pt;}
.ws135{word-spacing:16.875358pt;}
.wsf9{word-spacing:16.949703pt;}
.wsbc{word-spacing:17.109105pt;}
.ws83{word-spacing:17.321641pt;}
.wsee{word-spacing:17.496125pt;}
.ws105{word-spacing:17.587310pt;}
.ws66{word-spacing:17.693578pt;}
.ws34{word-spacing:17.694288pt;}
.ws36{word-spacing:17.747424pt;}
.wsf0{word-spacing:18.224916pt;}
.wsfe{word-spacing:18.543133pt;}
.ws4d{word-spacing:18.543719pt;}
.wsc1{word-spacing:18.594689pt;}
.wscc{word-spacing:18.600022pt;}
.wse1{word-spacing:18.884466pt;}
.ws106{word-spacing:19.340727pt;}
.wsda{word-spacing:19.553263pt;}
.ws18{word-spacing:19.554101pt;}
.wsa9{word-spacing:19.605385pt;}
.wsac{word-spacing:19.606397pt;}
.ws3e{word-spacing:19.713509pt;}
.ws8f{word-spacing:19.978334pt;}
.wsf8{word-spacing:20.190869pt;}
.ws17{word-spacing:20.829312pt;}
.wsb3{word-spacing:22.240977pt;}
.ws4e{word-spacing:22.666512pt;}
.wsb7{word-spacing:24.377799pt;}
.wse0{word-spacing:24.752718pt;}
.wsd5{word-spacing:24.760382pt;}
.wsaa{word-spacing:26.513034pt;}
.wsf1{word-spacing:26.513525pt;}
.ws9e{word-spacing:29.011091pt;}
._10{margin-left:-123.870710pt;}
._2{margin-left:-10.201600pt;}
._5{margin-left:-7.651072pt;}
._b{margin-left:-6.641331pt;}
._1{margin-left:-5.737284pt;}
._6{margin-left:-4.516454pt;}
._3{margin-left:-3.188000pt;}
._7{margin-left:-2.183791pt;}
._4{margin-left:-1.275200pt;}
._0{width:1.196806pt;}
._9{width:2.656800pt;}
._1b{width:3.552437pt;}
._d{width:13.820735pt;}
._13{width:14.771215pt;}
._c{width:15.781392pt;}
._14{width:17.167542pt;}
._15{width:19.611700pt;}
._16{width:21.273689pt;}
._19{width:23.118535pt;}
._e{width:24.501018pt;}
._18{width:25.701234pt;}
._8{width:27.365040pt;}
._a{width:29.224800pt;}
._17{width:30.238473pt;}
._1a{width:31.521669pt;}
._11{width:44.632560pt;}
._12{width:168.918324pt;}
._f{width:377.825190pt;}
.fsb{font-size:24.771721pt;}
.fs12{font-size:26.597493pt;}
.fsc{font-size:26.836031pt;}
.fsa{font-size:28.900341pt;}
.fsf{font-size:29.552770pt;}
.fs10{font-size:32.508047pt;}
.fs11{font-size:35.463324pt;}
.fs14{font-size:37.193600pt;}
.fs4{font-size:37.194667pt;}
.fse{font-size:38.418601pt;}
.fs1{font-size:42.506667pt;}
.fsd{font-size:42.507200pt;}
.fs13{font-size:44.329155pt;}
.fs0{font-size:47.818667pt;}
.fs9{font-size:53.133867pt;}
.fs5{font-size:53.136000pt;}
.fs8{font-size:53.753011pt;}
.fs3{font-size:58.448000pt;}
.fs7{font-size:58.872346pt;}
.fs6{font-size:63.991680pt;}
.fs2{font-size:127.520000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:3.252910pt;}
.y6e{bottom:12.385859pt;}
.y6d{bottom:19.094866pt;}
.y64{bottom:25.803874pt;}
.y63{bottom:33.545037pt;}
.y5a{bottom:49.326920pt;}
.y59{bottom:51.299997pt;}
.yc3{bottom:56.088000pt;}
.y12b{bottom:56.089333pt;}
.y6{bottom:59.929333pt;}
.y62{bottom:73.799083pt;}
.y36{bottom:94.488000pt;}
.y192{bottom:96.266667pt;}
.y191{bottom:108.221333pt;}
.y35{bottom:110.428000pt;}
.y68{bottom:116.117440pt;}
.y190{bottom:120.177333pt;}
.y57{bottom:126.368000pt;}
.y69{bottom:126.438990pt;}
.y34{bottom:126.636000pt;}
.y94{bottom:126.733333pt;}
.yc2{bottom:130.842667pt;}
.y18f{bottom:132.132000pt;}
.y154{bottom:142.308000pt;}
.yfa{bottom:142.309333pt;}
.y33{bottom:142.576000pt;}
.y93{bottom:142.674667pt;}
.y18e{bottom:144.088000pt;}
.y56{bottom:144.289333pt;}
.y65{bottom:151.726789pt;}
.y18d{bottom:156.042667pt;}
.yc1{bottom:156.454667pt;}
.yf9{bottom:158.249333pt;}
.y32{bottom:158.516000pt;}
.y92{bottom:158.614667pt;}
.y55{bottom:160.229333pt;}
.y18c{bottom:167.997333pt;}
.yc0{bottom:172.394667pt;}
.yf8{bottom:174.189333pt;}
.y31{bottom:174.456000pt;}
.y91{bottom:174.554667pt;}
.y54{bottom:176.169333pt;}
.y67{bottom:177.530665pt;}
.y18b{bottom:179.953333pt;}
.ybf{bottom:188.334667pt;}
.y6c{bottom:189.400448pt;}
.y66{bottom:189.916525pt;}
.yf7{bottom:190.129333pt;}
.y30{bottom:190.396000pt;}
.y90{bottom:190.494667pt;}
.y18a{bottom:191.908000pt;}
.y53{bottom:192.110667pt;}
.y6b{bottom:195.077300pt;}
.y61{bottom:195.593378pt;}
.y6a{bottom:200.754153pt;}
.y60{bottom:201.270231pt;}
.y189{bottom:203.862667pt;}
.ybe{bottom:204.274667pt;}
.yf6{bottom:206.069333pt;}
.y2f{bottom:206.337333pt;}
.y8f{bottom:206.434667pt;}
.y52{bottom:208.050667pt;}
.y97{bottom:209.824678pt;}
.y188{bottom:215.818667pt;}
.ybd{bottom:220.214667pt;}
.y5f{bottom:221.913331pt;}
.yf5{bottom:222.009333pt;}
.y2e{bottom:222.277333pt;}
.y8e{bottom:222.376000pt;}
.y51{bottom:223.990667pt;}
.y187{bottom:227.773333pt;}
.y96{bottom:231.250437pt;}
.ybc{bottom:236.156000pt;}
.yf4{bottom:237.950667pt;}
.y2d{bottom:238.217333pt;}
.y8d{bottom:238.316000pt;}
.y186{bottom:239.729333pt;}
.y50{bottom:239.930667pt;}
.y12a{bottom:240.953333pt;}
.ya6{bottom:246.026822pt;}
.y185{bottom:251.684000pt;}
.ybb{bottom:252.096000pt;}
.yf3{bottom:253.890667pt;}
.y2c{bottom:254.157333pt;}
.y8c{bottom:254.256000pt;}
.y129{bottom:256.893333pt;}
.y4f{bottom:257.852000pt;}
.ya5{bottom:259.325568pt;}
.y184{bottom:263.638667pt;}
.y9e{bottom:264.497303pt;}
.yba{bottom:268.036000pt;}
.yf2{bottom:269.830667pt;}
.y2b{bottom:270.097333pt;}
.y8b{bottom:270.196000pt;}
.ya4{bottom:272.624315pt;}
.y128{bottom:272.833333pt;}
.y4e{bottom:273.792000pt;}
.y183{bottom:275.594667pt;}
.yb9{bottom:283.976000pt;}
.yf1{bottom:285.770667pt;}
.y2a{bottom:286.038667pt;}
.y8a{bottom:286.136000pt;}
.y182{bottom:287.549333pt;}
.y127{bottom:288.774667pt;}
.y4d{bottom:289.733333pt;}
.ya2{bottom:293.311254pt;}
.y181{bottom:299.504000pt;}
.yb8{bottom:299.916000pt;}
.yf0{bottom:301.710667pt;}
.y29{bottom:301.978667pt;}
.y89{bottom:302.076000pt;}
.ya1{bottom:302.177085pt;}
.y126{bottom:304.714667pt;}
.y4c{bottom:305.673333pt;}
.y9d{bottom:310.304097pt;}
.ya0{bottom:311.042916pt;}
.y180{bottom:311.460000pt;}
.yb7{bottom:315.856000pt;}
.yef{bottom:317.650667pt;}
.y28{bottom:317.918667pt;}
.y88{bottom:318.017333pt;}
.y153{bottom:318.142667pt;}
.y125{bottom:320.654667pt;}
.y4b{bottom:321.613333pt;}
.y17f{bottom:323.414667pt;}
.y9a{bottom:330.991036pt;}
.yb6{bottom:331.797333pt;}
.yee{bottom:333.592000pt;}
.y27{bottom:333.858667pt;}
.ya3{bottom:333.946313pt;}
.y87{bottom:333.957333pt;}
.y152{bottom:334.082667pt;}
.y17e{bottom:335.369333pt;}
.y124{bottom:336.594667pt;}
.y4a{bottom:337.553333pt;}
.y17d{bottom:347.325333pt;}
.yb5{bottom:347.737333pt;}
.yed{bottom:349.532000pt;}
.y26{bottom:349.798667pt;}
.y86{bottom:349.897333pt;}
.y151{bottom:350.022667pt;}
.y123{bottom:352.534667pt;}
.y49{bottom:353.493333pt;}
.y99{bottom:355.372071pt;}
.y17c{bottom:359.280000pt;}
.yb4{bottom:363.677333pt;}
.yec{bottom:365.472000pt;}
.y25{bottom:365.738667pt;}
.y85{bottom:365.837333pt;}
.y150{bottom:365.962667pt;}
.y9f{bottom:367.193179pt;}
.y122{bottom:368.474667pt;}
.y48{bottom:369.433333pt;}
.y17b{bottom:371.236000pt;}
.y9c{bottom:376.059010pt;}
.yb3{bottom:379.700000pt;}
.yeb{bottom:381.412000pt;}
.y24{bottom:381.680000pt;}
.y84{bottom:381.777333pt;}
.y14f{bottom:381.904000pt;}
.y98{bottom:381.969564pt;}
.y17a{bottom:383.190667pt;}
.y121{bottom:384.416000pt;}
.y9b{bottom:384.924841pt;}
.y47{bottom:385.374667pt;}
.y179{bottom:395.145333pt;}
.yb2{bottom:395.640000pt;}
.yea{bottom:397.352000pt;}
.y23{bottom:397.620000pt;}
.y83{bottom:397.717333pt;}
.y14e{bottom:397.844000pt;}
.y120{bottom:400.356000pt;}
.y46{bottom:401.314667pt;}
.y178{bottom:407.101333pt;}
.yb1{bottom:411.581333pt;}
.ye9{bottom:413.292000pt;}
.y22{bottom:413.560000pt;}
.y82{bottom:413.658667pt;}
.y14d{bottom:413.784000pt;}
.y11f{bottom:416.296000pt;}
.y45{bottom:417.254667pt;}
.y177{bottom:419.056000pt;}
.yb0{bottom:427.521333pt;}
.ye8{bottom:429.232000pt;}
.y21{bottom:429.500000pt;}
.y81{bottom:429.598667pt;}
.y14c{bottom:429.724000pt;}
.y176{bottom:431.010667pt;}
.y11e{bottom:432.236000pt;}
.y44{bottom:433.194667pt;}
.y175{bottom:442.966667pt;}
.yaf{bottom:443.461333pt;}
.ye7{bottom:445.173333pt;}
.y20{bottom:445.440000pt;}
.y80{bottom:445.538667pt;}
.y14b{bottom:445.664000pt;}
.y11d{bottom:448.176000pt;}
.y43{bottom:451.116000pt;}
.y174{bottom:454.921333pt;}
.yae{bottom:459.401333pt;}
.ye6{bottom:461.113333pt;}
.y1f{bottom:461.380000pt;}
.y7f{bottom:461.478667pt;}
.y14a{bottom:461.604000pt;}
.y11c{bottom:464.116000pt;}
.y173{bottom:466.877333pt;}
.y42{bottom:467.056000pt;}
.yad{bottom:475.341333pt;}
.ye5{bottom:477.053333pt;}
.y1e{bottom:477.321333pt;}
.y149{bottom:477.545333pt;}
.y7e{bottom:477.785333pt;}
.y11b{bottom:480.057333pt;}
.y41{bottom:482.996000pt;}
.y172{bottom:485.812000pt;}
.yac{bottom:491.282667pt;}
.ye4{bottom:492.993333pt;}
.y7d{bottom:493.725333pt;}
.y148{bottom:493.976000pt;}
.y11a{bottom:495.997333pt;}
.y40{bottom:498.937333pt;}
.y1d{bottom:499.049333pt;}
.yab{bottom:507.222667pt;}
.y171{bottom:508.349333pt;}
.ye3{bottom:508.933333pt;}
.y7c{bottom:509.665333pt;}
.y147{bottom:509.916000pt;}
.y119{bottom:511.937333pt;}
.y3f{bottom:514.877333pt;}
.yaa{bottom:523.162667pt;}
.y170{bottom:524.289333pt;}
.y7b{bottom:525.605333pt;}
.y146{bottom:525.857333pt;}
.y118{bottom:527.877333pt;}
.y1c{bottom:529.920000pt;}
.ye2{bottom:530.154667pt;}
.y3e{bottom:530.817333pt;}
.ya9{bottom:539.102667pt;}
.y16f{bottom:540.229333pt;}
.y7a{bottom:541.545333pt;}
.y145{bottom:541.797333pt;}
.y1b{bottom:543.470667pt;}
.y117{bottom:543.817333pt;}
.ye1{bottom:546.094667pt;}
.y3d{bottom:546.757333pt;}
.ya8{bottom:555.042667pt;}
.y16e{bottom:556.169333pt;}
.y1a{bottom:556.754667pt;}
.y79{bottom:557.485333pt;}
.y144{bottom:557.737333pt;}
.y116{bottom:559.757333pt;}
.ye0{bottom:562.036000pt;}
.y3c{bottom:562.697333pt;}
.y19{bottom:570.038667pt;}
.y16d{bottom:572.109333pt;}
.y143{bottom:573.677333pt;}
.y115{bottom:575.698667pt;}
.y78{bottom:578.890667pt;}
.ydf{bottom:579.218667pt;}
.y18{bottom:583.321333pt;}
.y16c{bottom:588.049333pt;}
.y142{bottom:589.617333pt;}
.y114{bottom:591.638667pt;}
.y3b{bottom:594.709333pt;}
.yde{bottom:595.158667pt;}
.y17{bottom:596.605333pt;}
.ya7{bottom:600.602667pt;}
.y77{bottom:606.904000pt;}
.y113{bottom:607.578667pt;}
.y16b{bottom:607.780000pt;}
.y16{bottom:609.889333pt;}
.ydd{bottom:611.098667pt;}
.y141{bottom:612.689333pt;}
.y76{bottom:622.844000pt;}
.y15{bottom:623.172000pt;}
.y112{bottom:623.518667pt;}
.y95{bottom:624.637201pt;}
.ydc{bottom:627.040000pt;}
.y16a{bottom:630.316000pt;}
.y14{bottom:636.456000pt;}
.y75{bottom:638.785333pt;}
.y111{bottom:639.458667pt;}
.y140{bottom:641.772000pt;}
.ydb{bottom:642.980000pt;}
.y169{bottom:646.256000pt;}
.y13{bottom:649.738667pt;}
.y3a{bottom:652.396000pt;}
.y74{bottom:654.725333pt;}
.y110{bottom:655.400000pt;}
.y13f{bottom:657.712000pt;}
.yda{bottom:658.920000pt;}
.y168{bottom:662.196000pt;}
.y12{bottom:663.022667pt;}
.y39{bottom:668.336000pt;}
.y73{bottom:670.665333pt;}
.y10f{bottom:671.340000pt;}
.y13e{bottom:673.653333pt;}
.yd9{bottom:674.860000pt;}
.y11{bottom:676.306667pt;}
.y167{bottom:678.136000pt;}
.y38{bottom:684.276000pt;}
.y72{bottom:686.605333pt;}
.y10e{bottom:687.280000pt;}
.y10{bottom:689.589333pt;}
.y13d{bottom:689.593333pt;}
.yd8{bottom:690.800000pt;}
.y166{bottom:694.076000pt;}
.y37{bottom:700.216000pt;}
.yf{bottom:702.873333pt;}
.y10d{bottom:703.220000pt;}
.y13c{bottom:705.533333pt;}
.yd7{bottom:706.740000pt;}
.y71{bottom:708.924000pt;}
.y165{bottom:710.017333pt;}
.ye{bottom:716.157333pt;}
.y10c{bottom:719.160000pt;}
.y13b{bottom:721.473333pt;}
.yd6{bottom:722.681333pt;}
.y70{bottom:724.864000pt;}
.y164{bottom:725.957333pt;}
.y10b{bottom:735.100000pt;}
.y13a{bottom:737.413333pt;}
.yd5{bottom:739.864000pt;}
.y163{bottom:741.897333pt;}
.y10a{bottom:751.041333pt;}
.y139{bottom:753.353333pt;}
.yd4{bottom:755.804000pt;}
.y162{bottom:757.442667pt;}
.yd{bottom:759.144000pt;}
.y109{bottom:766.981333pt;}
.y138{bottom:769.293333pt;}
.y6f{bottom:771.178667pt;}
.yd3{bottom:771.744000pt;}
.y161{bottom:773.382667pt;}
.yc{bottom:780.402667pt;}
.y108{bottom:782.921333pt;}
.y137{bottom:785.234667pt;}
.yd2{bottom:787.685333pt;}
.y160{bottom:789.322667pt;}
.yb{bottom:792.021333pt;}
.y5e{bottom:795.281360pt;}
.y107{bottom:798.861333pt;}
.y136{bottom:801.174667pt;}
.yd1{bottom:803.625333pt;}
.y15f{bottom:805.262667pt;}
.ya{bottom:813.280000pt;}
.y106{bottom:814.801333pt;}
.y135{bottom:817.114667pt;}
.yd0{bottom:819.565333pt;}
.y15e{bottom:821.202667pt;}
.y9{bottom:825.094667pt;}
.y105{bottom:830.741333pt;}
.y134{bottom:833.054667pt;}
.ycf{bottom:835.505333pt;}
.y15d{bottom:837.144000pt;}
.y104{bottom:846.682667pt;}
.y133{bottom:848.994667pt;}
.yce{bottom:851.445333pt;}
.y15c{bottom:853.084000pt;}
.y103{bottom:862.622667pt;}
.y132{bottom:864.936000pt;}
.ycd{bottom:867.386667pt;}
.y15b{bottom:869.024000pt;}
.y102{bottom:878.562667pt;}
.y131{bottom:880.876000pt;}
.y8{bottom:882.878667pt;}
.ycc{bottom:883.326667pt;}
.y15a{bottom:884.964000pt;}
.y101{bottom:894.502667pt;}
.y130{bottom:896.816000pt;}
.ycb{bottom:899.266667pt;}
.y159{bottom:900.904000pt;}
.y100{bottom:910.442667pt;}
.y12f{bottom:912.756000pt;}
.yca{bottom:915.206667pt;}
.y158{bottom:916.845333pt;}
.y7{bottom:920.072000pt;}
.y12e{bottom:928.696000pt;}
.yff{bottom:929.386667pt;}
.yc9{bottom:931.146667pt;}
.y157{bottom:932.785333pt;}
.y12d{bottom:944.636000pt;}
.yfe{bottom:945.326667pt;}
.yc8{bottom:947.086667pt;}
.y156{bottom:948.725333pt;}
.yfd{bottom:961.266667pt;}
.yc7{bottom:963.028000pt;}
.y12c{bottom:964.270667pt;}
.y155{bottom:964.665333pt;}
.yfc{bottom:977.206667pt;}
.yc6{bottom:980.210667pt;}
.yfb{bottom:993.148000pt;}
.yc5{bottom:996.150667pt;}
.yc4{bottom:1012.090667pt;}
.y5{bottom:1012.861333pt;}
.y4{bottom:1026.145333pt;}
.y5c{bottom:1032.292451pt;}
.y3{bottom:1039.428000pt;}
.y2{bottom:1052.712000pt;}
.y5d{bottom:1053.638667pt;}
.y58{bottom:1059.808874pt;}
.y1{bottom:1065.996000pt;}
.hd{height:15.997920pt;}
.h11{height:18.034490pt;}
.h1a{height:19.363702pt;}
.h12{height:19.537364pt;}
.h10{height:21.040239pt;}
.h17{height:21.515225pt;}
.h18{height:23.666747pt;}
.h6{height:24.697259pt;}
.h19{height:25.818270pt;}
.h16{height:27.969792pt;}
.h13{height:29.244954pt;}
.h21{height:29.458287pt;}
.h3{height:31.497440pt;}
.h20{height:31.497835pt;}
.h1c{height:31.503169pt;}
.h1b{height:32.272837pt;}
.ha{height:33.186155pt;}
.h9{height:33.425248pt;}
.h2{height:35.433632pt;}
.he{height:36.290431pt;}
.h14{height:36.556100pt;}
.h8{height:36.557568pt;}
.h1e{height:36.561434pt;}
.h1d{height:36.874903pt;}
.h1f{height:37.140573pt;}
.hc{height:39.784827pt;}
.h7{height:39.852000pt;}
.hb{height:42.650705pt;}
.h5{height:49.381600pt;}
.h4{height:87.733760pt;}
.hf{height:232.750959pt;}
.h15{height:403.395323pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:21.330560pt;}
.w4{width:313.259061pt;}
.w5{width:313.259366pt;}
.w2{width:793.230200pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x42{left:3.324687pt;}
.x1e{left:31.819405pt;}
.x17{left:32.851560pt;}
.x18{left:36.464102pt;}
.x1d{left:39.479930pt;}
.x19{left:48.124229pt;}
.x16{left:49.995010pt;}
.x1f{left:54.873555pt;}
.x23{left:57.260413pt;}
.x3f{left:61.195013pt;}
.x22{left:64.162950pt;}
.x1c{left:68.573800pt;}
.x9{left:75.590667pt;}
.x8{left:79.037333pt;}
.x3c{left:80.762180pt;}
.x41{left:83.521208pt;}
.x40{left:84.560172pt;}
.xe{left:88.874667pt;}
.x21{left:91.853737pt;}
.xa{left:94.660000pt;}
.x24{left:98.393404pt;}
.x4c{left:100.556000pt;}
.x25{left:102.005947pt;}
.x26{left:104.820185pt;}
.x20{left:108.787531pt;}
.x27{left:120.931480pt;}
.x3d{left:121.824368pt;}
.x3b{left:123.786857pt;}
.x7{left:127.112000pt;}
.x3a{left:129.535798pt;}
.x4a{left:146.498667pt;}
.xb{left:148.721333pt;}
.x3e{left:150.003396pt;}
.x37{left:153.398667pt;}
.x45{left:159.215549pt;}
.x44{left:166.638377pt;}
.x43{left:169.316597pt;}
.xf{left:170.818667pt;}
.x6{left:173.753333pt;}
.x35{left:182.086666pt;}
.x2c{left:187.158738pt;}
.x28{left:188.190893pt;}
.x29{left:191.803435pt;}
.x2b{left:194.819263pt;}
.xc{left:198.177333pt;}
.x2d{left:203.229717pt;}
.x1a{left:205.140814pt;}
.x2e{left:210.212891pt;}
.x1b{left:212.599749pt;}
.x38{left:218.055580pt;}
.x15{left:222.153333pt;}
.x2a{left:223.913133pt;}
.x36{left:234.299193pt;}
.x30{left:247.193070pt;}
.x31{left:253.732738pt;}
.x32{left:257.345280pt;}
.x33{left:260.159518pt;}
.x2f{left:264.126864pt;}
.x46{left:271.008137pt;}
.x47{left:274.702233pt;}
.x34{left:276.270813pt;}
.x48{left:277.484353pt;}
.x39{left:284.549312pt;}
.xd{left:356.393333pt;}
.x10{left:404.820000pt;}
.x4f{left:410.133333pt;}
.x12{left:418.104000pt;}
.x50{left:429.166667pt;}
.x49{left:430.645333pt;}
.x4b{left:437.138667pt;}
.x52{left:443.926667pt;}
.x4d{left:482.826667pt;}
.x11{left:496.342667pt;}
.x4e{left:524.272000pt;}
.x5{left:560.669333pt;}
.x1{left:567.041333pt;}
.x2{left:574.094667pt;}
.x51{left:579.828000pt;}
.x4{left:598.400000pt;}
.x3{left:631.801333pt;}
.x13{left:684.710976pt;}
.x14{left:688.146400pt;}
}




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