
    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_91d198c7e08f91ddaf0a7831.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.992000;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_800daf1bb9a306e7cb0cce5c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.992000;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_1be16685ce016161477f5ace.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_29d95e03f29ec01f1b428c9c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c0ba1e4316ecbf05ef125b6d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.746094;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_62833e15711e4aef1b996988.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.992000;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_924498eba66e6553c205ccb4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6ab576c0297d08967bb8dab6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.792000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-99.100758px;}
.v7{vertical-align:-53.537222px;}
.v5{vertical-align:-25.443676px;}
.v4{vertical-align:-18.894286px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:5.760000px;}
.va{vertical-align:29.250001px;}
.v2{vertical-align:31.218751px;}
.v6{vertical-align:36.995221px;}
.v1{vertical-align:41.625001px;}
.v8{vertical-align:71.313496px;}
.ls0{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.000090px;}
.ls14{letter-spacing:0.029850px;}
.ls24{letter-spacing:17.986178px;}
.ls17{letter-spacing:30.000349px;}
.ls23{letter-spacing:35.986178px;}
.ls22{letter-spacing:35.986183px;}
.ls25{letter-spacing:36.000285px;}
.ls27{letter-spacing:40.472082px;}
.ls20{letter-spacing:40.481579px;}
.ls28{letter-spacing:40.482072px;}
.ls21{letter-spacing:40.486183px;}
.ls1c{letter-spacing:40.500186px;}
.ls26{letter-spacing:42.493907px;}
.ls11{letter-spacing:42.519597px;}
.lsf{letter-spacing:44.988796px;}
.ls1e{letter-spacing:44.999844px;}
.ls1f{letter-spacing:49.481247px;}
.ls1d{letter-spacing:49.499853px;}
.ls7{letter-spacing:68.461922px;}
.ls1b{letter-spacing:77.972091px;}
.ls18{letter-spacing:77.981449px;}
.ls16{letter-spacing:77.986255px;}
.ls19{letter-spacing:78.000356px;}
.lsb{letter-spacing:107.974938px;}
.ls8{letter-spacing:107.977685px;}
.lse{letter-spacing:107.977762px;}
.lsc{letter-spacing:107.981456px;}
.lsd{letter-spacing:107.981465px;}
.ls6{letter-spacing:107.983215px;}
.ls4{letter-spacing:107.988802px;}
.lsa{letter-spacing:107.989112px;}
.ls15{letter-spacing:107.990552px;}
.ls12{letter-spacing:107.990719px;}
.ls9{letter-spacing:107.994323px;}
.ls5{letter-spacing:107.994378px;}
.ls2{letter-spacing:107.996134px;}
.ls10{letter-spacing:107.999868px;}
.ls3{letter-spacing:108.000197px;}
.ls2a{letter-spacing:108.000408px;}
.ls1{letter-spacing:108.000494px;}
.ls29{letter-spacing:108.000498px;}
.ls13{letter-spacing:2566.417299px;}
.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;}
}
.ws5{word-spacing:-29.916001px;}
.ws4{word-spacing:-29.736001px;}
.ws10{word-spacing:-27.505803px;}
.ws1a{word-spacing:-26.576814px;}
.ws0{word-spacing:-26.196000px;}
.wsf{word-spacing:-25.488001px;}
.ws11{word-spacing:-24.072000px;}
.wsd{word-spacing:-23.045400px;}
.ws6{word-spacing:-21.806400px;}
.ws18{word-spacing:-21.240001px;}
.ws8{word-spacing:-20.815199px;}
.wsc{word-spacing:-19.824000px;}
.ws17{word-spacing:-18.408001px;}
.ws15{word-spacing:-18.282001px;}
.ws9{word-spacing:-17.841601px;}
.ws1{word-spacing:-17.464001px;}
.ws14{word-spacing:-15.539701px;}
.ws7{word-spacing:-14.958000px;}
.wse{word-spacing:-13.296001px;}
.ws2{word-spacing:-13.098001px;}
.ws19{word-spacing:-12.744000px;}
.wsa{word-spacing:-11.328001px;}
.ws16{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws1b{word-spacing:65.536971px;}
.ws13{word-spacing:82.691572px;}
.ws12{word-spacing:85.323854px;}
.ws1c{word-spacing:1062.775875px;}
.wsb{word-spacing:1642.352325px;}
._24{margin-left:-23.945637px;}
._f{margin-left:-13.932000px;}
._5{margin-left:-11.829516px;}
._7{margin-left:-10.681804px;}
._4{margin-left:-8.695050px;}
._9{margin-left:-7.505401px;}
._0{margin-left:-6.150000px;}
._a{margin-left:-5.003550px;}
._6{margin-left:-3.937616px;}
._3{margin-left:-2.730000px;}
._1{margin-left:-1.722000px;}
._2{width:1.722000px;}
._8{width:3.857708px;}
._18{width:9.596498px;}
._26{width:13.031034px;}
._22{width:16.364554px;}
._1a{width:18.485885px;}
._1b{width:19.900106px;}
._1d{width:30.299997px;}
._1c{width:31.622666px;}
._27{width:36.971770px;}
._25{width:47.982488px;}
._19{width:56.366797px;}
._21{width:68.888019px;}
._20{width:70.210689px;}
._1e{width:91.318251px;}
._1f{width:92.434157px;}
._10{width:107.945389px;}
._11{width:109.080274px;}
._16{width:113.402739px;}
._12{width:142.053457px;}
._13{width:155.106339px;}
._23{width:192.030969px;}
._d{width:402.781245px;}
._15{width:582.936098px;}
._c{width:627.589252px;}
._b{width:797.141843px;}
._14{width:1094.298101px;}
._17{width:1130.251257px;}
._e{width:1757.283388px;}
.fcb{color:transparent;}
.fc7{color:rgb(238,116,0);}
.fc4{color:rgb(0,156,188);}
.fcc{color:rgb(165,165,165);}
.fca{color:rgb(38,38,38);}
.fc9{color:rgb(255,255,255);}
.fc8{color:rgb(1,30,65);}
.fc6{color:rgb(0,102,122);}
.fc3{color:rgb(102,102,102);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(136,136,136);}
.fc5{color:rgb(34,47,93);}
.fc0{color:rgb(0,171,197);}
.fs18{font-size:42.000000px;}
.fs11{font-size:48.000003px;}
.fs2d{font-size:50.400006px;}
.fse{font-size:54.000002px;}
.fs5{font-size:55.500005px;}
.fs1e{font-size:56.100003px;}
.fs24{font-size:60.000000px;}
.fsb{font-size:61.650164px;}
.fs21{font-size:66.000004px;}
.fsf{font-size:71.399995px;}
.fs28{font-size:72.000002px;}
.fs3{font-size:74.000004px;}
.fs16{font-size:74.550008px;}
.fs10{font-size:75.600002px;}
.fs25{font-size:78.000005px;}
.fs4{font-size:83.250003px;}
.fs17{font-size:84.000000px;}
.fsd{font-size:88.199994px;}
.fs23{font-size:90.000003px;}
.fs2a{font-size:91.800012px;}
.fsc{font-size:92.400001px;}
.fs1d{font-size:96.000006px;}
.fs19{font-size:97.417803px;}
.fsa{font-size:97.649999px;}
.fs15{font-size:98.550003px;}
.fs12{font-size:99.899999px;}
.fs2c{font-size:101.015765px;}
.fs1c{font-size:102.000000px;}
.fs2b{font-size:102.827226px;}
.fs1f{font-size:107.007699px;}
.fs13{font-size:107.100008px;}
.fs8{font-size:108.000003px;}
.fs14{font-size:110.550001px;}
.fs2{font-size:111.000001px;}
.fs29{font-size:112.613620px;}
.fs9{font-size:116.550013px;}
.fs1a{font-size:120.000001px;}
.fs22{font-size:123.000007px;}
.fs20{font-size:125.891401px;}
.fs7{font-size:126.000004px;}
.fs26{font-size:126.727807px;}
.fs1b{font-size:132.000007px;}
.fs27{font-size:138.000001px;}
.fs6{font-size:144.300002px;}
.fs1{font-size:172.799997px;}
.fs2e{font-size:240.000002px;}
.fs0{font-size:246.000014px;}
.y19f{bottom:-169.671012px;}
.y172{bottom:-59.356383px;}
.y17f{bottom:-45.641783px;}
.y171{bottom:-24.586400px;}
.y17e{bottom:-10.871789px;}
.y170{bottom:-1.816411px;}
.y0{bottom:0.000000px;}
.y9b{bottom:8.643390px;}
.y17d{bottom:11.898200px;}
.y13e{bottom:12.163331px;}
.y162{bottom:12.164051px;}
.y88{bottom:17.803725px;}
.yaf{bottom:18.370759px;}
.y15{bottom:20.881331px;}
.y16f{bottom:23.473568px;}
.y9a{bottom:33.843413px;}
.ycb{bottom:36.396544px;}
.y1a{bottom:36.797415px;}
.y54{bottom:39.488438px;}
.y1ae{bottom:39.584176px;}
.y66{bottom:39.646568px;}
.y117{bottom:39.896914px;}
.ye8{bottom:40.445858px;}
.ydb{bottom:40.587563px;}
.y3d{bottom:41.394323px;}
.yae{bottom:41.806759px;}
.y133{bottom:42.521697px;}
.y87{bottom:44.412226px;}
.y1f0{bottom:44.500201px;}
.y14{bottom:45.356832px;}
.ybd{bottom:46.947638px;}
.y30{bottom:48.101990px;}
.y126{bottom:48.927548px;}
.y1de{bottom:48.933601px;}
.y17c{bottom:49.158145px;}
.y160{bottom:49.328977px;}
.y101{bottom:49.385918px;}
.y10c{bottom:51.603541px;}
.y75{bottom:54.431904px;}
.y16e{bottom:55.783569px;}
.y173{bottom:56.561908px;}
.y53{bottom:57.632439px;}
.y99{bottom:59.043447px;}
.y13d{bottom:59.650857px;}
.y1d5{bottom:60.169948px;}
.y1e2{bottom:61.353568px;}
.y19{bottom:63.162921px;}
.y65{bottom:63.622580px;}
.yca{bottom:64.179523px;}
.y13{bottom:65.001291px;}
.yad{bottom:65.242760px;}
.yda{bottom:66.507564px;}
.y132{bottom:67.221466px;}
.ye7{bottom:68.417881px;}
.y55{bottom:70.351070px;}
.y86{bottom:71.020749px;}
.y1ad{bottom:71.974772px;}
.y198{bottom:72.406018px;}
.y116{bottom:72.521915px;}
.y145{bottom:74.468372px;}
.y125{bottom:74.847560px;}
.y52{bottom:75.776417px;}
.y1ef{bottom:76.320174px;}
.y2f{bottom:78.800372px;}
.y154{bottom:79.960112px;}
.y3c{bottom:80.784107px;}
.ybc{bottom:80.967639px;}
.y100{bottom:83.075147px;}
.y74{bottom:83.348927px;}
.y98{bottom:84.243482px;}
.y18e{bottom:85.983508px;}
.y15f{bottom:87.129023px;}
.y64{bottom:87.598615px;}
.yac{bottom:88.678761px;}
.y10b{bottom:88.863542px;}
.yf5{bottom:89.283561px;}
.y1d4{bottom:89.794941px;}
.y1dd{bottom:92.403569px;}
.yd9{bottom:93.291565px;}
.y51{bottom:93.920406px;}
.y17b{bottom:95.058147px;}
.y85{bottom:96.333250px;}
.ye6{bottom:96.389894px;}
.y153{bottom:97.960112px;}
.y2e{bottom:98.204372px;}
.y18{bottom:99.584428px;}
.y124{bottom:100.767573px;}
.y1e1{bottom:102.933558px;}
.y131{bottom:104.139130px;}
.y1ac{bottom:104.365345px;}
.y1d3{bottom:104.419941px;}
.y16d{bottom:104.713600px;}
.y115{bottom:105.146916px;}
.yc9{bottom:106.962520px;}
.y1ee{bottom:108.140148px;}
.y144{bottom:109.298369px;}
.y97{bottom:109.443505px;}
.y3b{bottom:111.024108px;}
.y63{bottom:111.574615px;}
.y1ce{bottom:111.732439px;}
.y50{bottom:112.064395px;}
.yab{bottom:112.114762px;}
.y73{bottom:112.265928px;}
.y197{bottom:113.806008px;}
.y13c{bottom:114.085840px;}
.ybb{bottom:114.987618px;}
.y152{bottom:115.960113px;}
.y84{bottom:116.461728px;}
.yff{bottom:116.764387px;}
.y2d{bottom:117.608339px;}
.y17{bottom:118.173961px;}
.y1d2{bottom:119.044940px;}
.y114{bottom:119.943547px;}
.yf4{bottom:121.683551px;}
.y18d{bottom:123.243498px;}
.yd8{bottom:123.531588px;}
.ye9{bottom:123.592181px;}
.ye5{bottom:124.361906px;}
.y15e{bottom:124.929069px;}
.y11{bottom:125.955716px;}
.y10a{bottom:126.123532px;}
.y1cb{bottom:126.357431px;}
.y1cd{bottom:126.357440px;}
.y123{bottom:126.687573px;}
.y4f{bottom:130.208385px;}
.y186{bottom:132.033562px;}
.y1d1{bottom:133.669940px;}
.y151{bottom:133.960115px;}
.y96{bottom:134.643529px;}
.yc8{bottom:134.745499px;}
.y62{bottom:135.550616px;}
.yaa{bottom:135.550762px;}
.y1dc{bottom:135.873559px;}
.y83{bottom:136.590229px;}
.y2c{bottom:137.012329px;}
.y16c{bottom:137.023601px;}
.y1ab{bottom:137.489891px;}
.y1ed{bottom:139.960133px;}
.y1e0{bottom:140.193548px;}
.y17a{bottom:140.958148px;}
.y1cc{bottom:140.982436px;}
.y72{bottom:141.182929px;}
.y3a{bottom:141.264131px;}
.y16{bottom:144.539459px;}
.y196{bottom:147.016043px;}
.y1d0{bottom:148.294936px;}
.y4e{bottom:148.352374px;}
.yba{bottom:149.007608px;}
.yfe{bottom:150.453604px;}
.ye4{bottom:152.333929px;}
.y122{bottom:152.607585px;}
.y130{bottom:153.056742px;}
.yf3{bottom:154.083529px;}
.y6{bottom:155.864933px;}
.y2b{bottom:156.416307px;}
.y82{bottom:158.014752px;}
.ya9{bottom:158.986763px;}
.y61{bottom:159.526639px;}
.y95{bottom:159.843563px;}
.y10{bottom:159.975706px;}
.y146{bottom:162.024848px;}
.y13b{bottom:162.535835px;}
.y15d{bottom:162.729115px;}
.y1cf{bottom:162.919937px;}
.y109{bottom:163.383533px;}
.y4d{bottom:166.496363px;}
.yd7{bottom:167.907597px;}
.y185{bottom:169.293552px;}
.y1c1{bottom:169.294947px;}
.y71{bottom:170.099952px;}
.y39{bottom:171.504132px;}
.y1ec{bottom:171.780117px;}
.y1aa{bottom:172.167117px;}
.yc7{bottom:174.995930px;}
.y18c{bottom:175.503530px;}
.y2a{bottom:175.820296px;}
.y113{bottom:177.483552px;}
.y1db{bottom:179.343538px;}
.ye3{bottom:180.305930px;}
.y195{bottom:181.695969px;}
.ya8{bottom:182.422730px;}
.yb9{bottom:183.027598px;}
.y60{bottom:183.502651px;}
.y1c0{bottom:183.919948px;}
.y81{bottom:184.623264px;}
.y94{bottom:185.043586px;}
.y4c{bottom:185.245186px;}
.y16b{bottom:185.953610px;}
.y179{bottom:186.858150px;}
.yf2{bottom:187.563530px;}
.y12f{bottom:189.974405px;}
.y13a{bottom:191.594428px;}
.y1ca{bottom:192.544945px;}
.y121{bottom:193.527606px;}
.yd6{bottom:193.827609px;}
.y150{bottom:193.982241px;}
.yf{bottom:193.995684px;}
.y29{bottom:195.224263px;}
.yfd{bottom:196.142837px;}
.yc6{bottom:196.995553px;}
.y1c6{bottom:198.732452px;}
.y70{bottom:199.016964px;}
.y15c{bottom:200.529105px;}
.y108{bottom:200.643557px;}
.y38{bottom:201.744133px;}
.y1eb{bottom:203.600046px;}
.y1a9{bottom:204.297152px;}
.ya7{bottom:205.858731px;}
.y4b{bottom:206.413198px;}
.y1c9{bottom:207.169945px;}
.y5f{bottom:207.478663px;}
.ye2{bottom:208.277942px;}
.y184{bottom:208.443565px;}
.y5{bottom:208.586189px;}
.y93{bottom:210.243587px;}
.y80{bottom:211.231754px;}
.y14f{bottom:211.982241px;}
.y18b{bottom:212.763554px;}
.y1c5{bottom:213.357450px;}
.y28{bottom:214.628264px;}
.y143{bottom:214.792168px;}
.yb8{bottom:217.047576px;}
.y16a{bottom:218.263611px;}
.y120{bottom:219.447584px;}
.yd5{bottom:219.747588px;}
.yc5{bottom:221.754543px;}
.y1da{bottom:222.813539px;}
.y112{bottom:223.023554px;}
.y194{bottom:223.095970px;}
.yf1{bottom:224.283543px;}
.y4a{bottom:226.774799px;}
.y12e{bottom:226.892047px;}
.y6f{bottom:227.933954px;}
.y1bf{bottom:227.982442px;}
.y1c4{bottom:227.982451px;}
.ye{bottom:228.015674px;}
.ya6{bottom:229.294732px;}
.y14e{bottom:229.982242px;}
.y5e{bottom:231.454687px;}
.y37{bottom:231.984134px;}
.y27{bottom:234.032264px;}
.y139{bottom:235.026956px;}
.y1c7{bottom:235.294946px;}
.y1ea{bottom:235.420008px;}
.y92{bottom:235.443577px;}
.ye1{bottom:236.249943px;}
.y1a8{bottom:236.427142px;}
.y7f{bottom:236.544254px;}
.y15b{bottom:239.589106px;}
.y4{bottom:240.221193px;}
.y142{bottom:242.512166px;}
.y1c3{bottom:242.607447px;}
.y49{bottom:243.910788px;}
.y178{bottom:244.758155px;}
.yfc{bottom:244.832062px;}
.y11f{bottom:245.367562px;}
.yd4{bottom:246.531577px;}
.yb0{bottom:247.108938px;}
.y14d{bottom:247.982243px;}
.yc4{bottom:249.537544px;}
.y1c8{bottom:250.107446px;}
.yb7{bottom:251.067566px;}
.y107{bottom:251.163540px;}
.ya5{bottom:252.730732px;}
.y26{bottom:253.436265px;}
.y1a1{bottom:255.228007px;}
.y5d{bottom:255.430699px;}
.y1f1{bottom:255.733234px;}
.yf0{bottom:256.683555px;}
.y6e{bottom:256.850955px;}
.y1c2{bottom:257.232447px;}
.y7e{bottom:257.968744px;}
.y91{bottom:260.643578px;}
.y48{bottom:261.853189px;}
.yd{bottom:262.035664px;}
.y36{bottom:262.224146px;}
.ye0{bottom:264.221933px;}
.y193{bottom:264.495960px;}
.y18a{bottom:265.023552px;}
.y183{bottom:265.023563px;}
.y1d9{bottom:266.283540px;}
.y169{bottom:267.193587px;}
.y1e9{bottom:267.239970px;}
.y1a7{bottom:268.557143px;}
.y111{bottom:268.563544px;}
.y11e{bottom:271.287540px;}
.y25{bottom:272.840266px;}
.y12d{bottom:275.809703px;}
.yd3{bottom:275.907567px;}
.ya4{bottom:276.166733px;}
.y138{bottom:278.459483px;}
.yfb{bottom:278.521313px;}
.y5c{bottom:279.406711px;}
.y15a{bottom:280.089108px;}
.y47{bottom:283.021178px;}
.y7d{bottom:284.577233px;}
.yb6{bottom:285.087556px;}
.y6d{bottom:285.767945px;}
.y90{bottom:285.843567px;}
.y19e{bottom:286.463993px;}
.yef{bottom:289.083556px;}
.ydc{bottom:291.551882px;}
.ydf{bottom:292.193934px;}
.y24{bottom:292.244266px;}
.yc3{bottom:292.320541px;}
.y35{bottom:292.464147px;}
.y1be{bottom:293.044956px;}
.yc{bottom:296.055643px;}
.y147{bottom:296.786769px;}
.y1e8{bottom:299.059933px;}
.y168{bottom:299.503588px;}
.ya3{bottom:299.602734px;}
.y14c{bottom:300.725788px;}
.y1a6{bottom:301.483149px;}
.yd2{bottom:301.827534px;}
.y189{bottom:302.283541px;}
.y182{bottom:302.283564px;}
.y106{bottom:303.303557px;}
.y5b{bottom:303.382723px;}
.y177{bottom:304.158146px;}
.y46{bottom:304.189168px;}
.y192{bottom:307.785962px;}
.y1d8{bottom:309.753542px;}
.y3{bottom:310.125782px;}
.y8f{bottom:311.043557px;}
.y7c{bottom:311.185734px;}
.y23{bottom:311.648267px;}
.y11d{bottom:312.207527px;}
.yfa{bottom:312.210564px;}
.y110{bottom:314.103546px;}
.y6c{bottom:314.684946px;}
.y14b{bottom:318.725788px;}
.yb5{bottom:319.107535px;}
.y19d{bottom:319.139980px;}
.y159{bottom:319.329098px;}
.y12c{bottom:319.382046px;}
.yc2{bottom:320.103542px;}
.yde{bottom:320.165935px;}
.yee{bottom:321.483535px;}
.y137{bottom:321.892011px;}
.y1bd{bottom:322.669957px;}
.y34{bottom:322.704148px;}
.ya2{bottom:323.038735px;}
.y45{bottom:324.550768px;}
.y5a{bottom:327.358735px;}
.yd1{bottom:327.747535px;}
.yb{bottom:330.075649px;}
.y1b6{bottom:330.169952px;}
.y1e7{bottom:330.879906px;}
.y22{bottom:331.052267px;}
.y8e{bottom:336.243558px;}
.y7b{bottom:336.498235px;}
.y14a{bottom:336.725789px;}
.y1a5{bottom:336.956425px;}
.y1bb{bottom:337.294953px;}
.y1ba{bottom:337.482453px;}
.y11c{bottom:338.127539px;}
.y12b{bottom:338.736535px;}
.y105{bottom:340.563546px;}
.y181{bottom:341.433543px;}
.y44{bottom:341.686769px;}
.y6b{bottom:343.601940px;}
.y1b5{bottom:344.794948px;}
.yf9{bottom:345.899804px;}
.ya1{bottom:346.474747px;}
.yc1{bottom:347.886543px;}
.ydd{bottom:348.137935px;}
.y167{bottom:348.433574px;}
.y158{bottom:348.939094px;}
.y176{bottom:350.058125px;}
.y21{bottom:350.456279px;}
.y141{bottom:351.469405px;}
.y19c{bottom:351.815977px;}
.y1bc{bottom:351.919954px;}
.y1b9{bottom:352.107449px;}
.y33{bottom:352.944149px;}
.yb4{bottom:353.127541px;}
.y1d7{bottom:353.223554px;}
.yd0{bottom:353.667536px;}
.yed{bottom:353.883536px;}
.y188{bottom:354.543533px;}
.y149{bottom:354.725789px;}
.y7a{bottom:356.626736px;}
.y12a{bottom:358.091036px;}
.y2{bottom:359.373774px;}
.y1b4{bottom:359.419949px;}
.y43{bottom:359.629158px;}
.y10f{bottom:359.643541px;}
.y8d{bottom:361.443547px;}
.y1e6{bottom:362.699868px;}
.y11b{bottom:364.047551px;}
.ya{bottom:364.095645px;}
.y136{bottom:365.324539px;}
.y1b8{bottom:366.732449px;}
.y191{bottom:368.505953px;}
.y20{bottom:369.860280px;}
.ya0{bottom:369.910747px;}
.y1a4{bottom:372.429701px;}
.y6a{bottom:372.518936px;}
.y148{bottom:372.725791px;}
.y1b3{bottom:374.044949px;}
.y59{bottom:376.109936px;}
.y104{bottom:377.823536px;}
.y79{bottom:378.051236px;}
.ycf{bottom:379.587536px;}
.y157{bottom:379.989093px;}
.y166{bottom:380.743575px;}
.y42{bottom:380.797148px;}
.y1b7{bottom:381.357450px;}
.y1b2{bottom:381.544951px;}
.y129{bottom:382.800537px;}
.y32{bottom:383.184145px;}
.y19b{bottom:384.491974px;}
.y140{bottom:384.859399px;}
.yec{bottom:386.283542px;}
.y8c{bottom:386.643542px;}
.yb3{bottom:387.147537px;}
.y1b1{bottom:388.857451px;}
.y1f{bottom:389.264281px;}
.yc0{bottom:390.669552px;}
.yf8{bottom:391.589059px;}
.y9f{bottom:393.346748px;}
.y1e5{bottom:394.519831px;}
.y175{bottom:395.958126px;}
.y1d6{bottom:396.693545px;}
.y180{bottom:398.013541px;}
.y9{bottom:398.115646px;}
.y69{bottom:401.435937px;}
.y41{bottom:401.965148px;}
.y58{bottom:404.081937px;}
.y78{bottom:404.659737px;}
.y10e{bottom:405.183537px;}
.y11a{bottom:405.291549px;}
.yce{bottom:405.507537px;}
.y1a3{bottom:407.902989px;}
.y1e{bottom:408.668281px;}
.y187{bottom:408.693537px;}
.y135{bottom:408.757073px;}
.y190{bottom:409.905950px;}
.y8b{bottom:411.843549px;}
.y31{bottom:413.424142px;}
.y103{bottom:415.083542px;}
.y9e{bottom:416.782744px;}
.y19a{bottom:417.167971px;}
.yeb{bottom:418.683538px;}
.y128{bottom:419.750038px;}
.yb2{bottom:421.167538px;}
.y40{bottom:423.133143px;}
.y156{bottom:424.779093px;}
.y1{bottom:424.791028px;}
.yf7{bottom:425.278297px;}
.y1b0{bottom:425.794960px;}
.y1e4{bottom:426.339793px;}
.y1d{bottom:428.072276px;}
.y165{bottom:429.673578px;}
.y68{bottom:430.352941px;}
.y77{bottom:431.268240px;}
.ycd{bottom:431.427543px;}
.y57{bottom:432.053935px;}
.y8{bottom:432.135647px;}
.y119{bottom:432.831544px;}
.ybf{bottom:433.452546px;}
.y8a{bottom:437.043543px;}
.y9d{bottom:440.218742px;}
.y3f{bottom:444.301142px;}
.y1c{bottom:447.476271px;}
.y199{bottom:449.843969px;}
.y10d{bottom:450.723539px;}
.yea{bottom:452.163539px;}
.y134{bottom:452.189605px;}
.y18f{bottom:453.195940px;}
.y155{bottom:453.579087px;}
.y102{bottom:453.603541px;}
.y174{bottom:453.858123px;}
.yb1{bottom:455.187539px;}
.y1a2{bottom:455.376272px;}
.y127{bottom:456.699538px;}
.y1af{bottom:457.474956px;}
.y1e3{bottom:458.159757px;}
.ycc{bottom:458.211539px;}
.y76{bottom:458.524742px;}
.yf6{bottom:458.967540px;}
.y67{bottom:459.269939px;}
.y56{bottom:460.025938px;}
.y118{bottom:460.371541px;}
.ybe{bottom:461.235541px;}
.y164{bottom:461.983576px;}
.y89{bottom:462.243541px;}
.y9c{bottom:463.654739px;}
.y3e{bottom:465.469139px;}
.y1b{bottom:466.880272px;}
.y1a0{bottom:510.744199px;}
.y7{bottom:510.744937px;}
.y13f{bottom:511.413927px;}
.y163{bottom:511.415218px;}
.y161{bottom:512.529925px;}
.y1df{bottom:516.304977px;}
.y12{bottom:544.764935px;}
.h29{height:32.760000px;}
.h16{height:34.968752px;}
.hf{height:37.440002px;}
.hc{height:39.339845px;}
.h1f{height:40.869729px;}
.h2c{height:42.120001px;}
.h26{height:46.800000px;}
.h22{height:48.082034px;}
.h9{height:48.087128px;}
.h30{height:49.470938px;}
.h24{height:51.480003px;}
.hd{height:55.691996px;}
.h2d{height:56.160002px;}
.h2b{height:56.824223px;}
.h14{height:58.149007px;}
.he{height:58.968002px;}
.h2a{height:60.840004px;}
.h32{height:63.468747px;}
.h31{height:64.218753px;}
.h15{height:65.520000px;}
.hb{height:68.795995px;}
.h25{height:70.200002px;}
.h19{height:70.922824px;}
.ha{height:72.072001px;}
.h17{height:74.435224px;}
.h4{height:74.508755px;}
.h1e{height:74.880005px;}
.h8{height:76.166999px;}
.h13{height:76.869002px;}
.h10{height:77.921999px;}
.h33{height:78.792296px;}
.h1d{height:79.560000px;}
.h2f{height:80.205237px;}
.h12{height:80.537403px;}
.h20{height:83.466006px;}
.h11{height:83.538006px;}
.h18{height:84.240003px;}
.h2e{height:87.838623px;}
.h7{height:90.909010px;}
.h27{height:92.261309px;}
.h1a{height:93.600001px;}
.h23{height:95.940005px;}
.h21{height:98.195293px;}
.h6{height:98.280003px;}
.h3{height:99.345005px;}
.h1b{height:102.960006px;}
.h28{height:107.640001px;}
.h5{height:112.554001px;}
.h2{height:134.783997px;}
.h1c{height:155.553498px;}
.h34{height:187.200001px;}
.h1{height:191.880011px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x16{left:40.591660px;}
.x7{left:46.618116px;}
.xa{left:48.667324px;}
.x31{left:52.223738px;}
.x1a{left:53.341801px;}
.x8{left:54.592552px;}
.x1{left:56.803613px;}
.x12{left:59.389982px;}
.xc{left:61.144345px;}
.x10{left:62.730512px;}
.xb{left:65.118133px;}
.x15{left:67.877912px;}
.x6{left:70.061893px;}
.x1b{left:71.360199px;}
.x18{left:73.414415px;}
.x38{left:79.154463px;}
.x33{left:83.441864px;}
.x39{left:85.524295px;}
.x32{left:87.118761px;}
.x9{left:100.618676px;}
.x54{left:104.519629px;}
.x53{left:109.238643px;}
.x3a{left:111.044315px;}
.x11{left:118.380247px;}
.x13{left:119.953402px;}
.x2{left:121.262978px;}
.x2a{left:126.649244px;}
.x28{left:152.836566px;}
.xe{left:155.264768px;}
.x3{left:171.297804px;}
.x27{left:229.776258px;}
.x5{left:256.767477px;}
.x26{left:260.543951px;}
.x24{left:263.801148px;}
.x25{left:281.385790px;}
.x23{left:296.255887px;}
.x4{left:305.948789px;}
.x21{left:314.563693px;}
.x29{left:349.873418px;}
.x22{left:359.748266px;}
.x34{left:473.168329px;}
.x37{left:478.533530px;}
.x35{left:506.183180px;}
.x3b{left:512.185066px;}
.xd{left:516.900617px;}
.x47{left:617.450710px;}
.x46{left:626.787287px;}
.x14{left:646.474604px;}
.x1d{left:681.040709px;}
.x1e{left:682.120709px;}
.x1f{left:685.999034px;}
.x19{left:688.869090px;}
.x4d{left:711.479691px;}
.x3c{left:712.799690px;}
.x43{left:716.163267px;}
.x44{left:717.479685px;}
.x49{left:721.469276px;}
.x48{left:723.143095px;}
.x4a{left:731.458209px;}
.x4e{left:739.575055px;}
.x2b{left:741.832323px;}
.x2d{left:745.734799px;}
.x45{left:749.461119px;}
.x17{left:756.249160px;}
.x2e{left:766.824887px;}
.xf{left:769.002362px;}
.x2c{left:775.824887px;}
.x2f{left:788.513526px;}
.x3e{left:830.492073px;}
.x3d{left:831.498901px;}
.x4f{left:844.491085px;}
.x40{left:849.159373px;}
.x30{left:850.692984px;}
.x3f{left:852.826685px;}
.x20{left:857.685065px;}
.x4b{left:950.787323px;}
.x42{left:952.792851px;}
.x50{left:954.800002px;}
.x41{left:956.451384px;}
.x51{left:958.119024px;}
.x4c{left:968.114136px;}
.x52{left:973.561063px;}
.x1c{left:1049.681018px;}
.x36{left:1234.907909px;}
@media print{
.v3{vertical-align:-88.089563pt;}
.v7{vertical-align:-47.588642pt;}
.v5{vertical-align:-22.616601pt;}
.v4{vertical-align:-16.794921pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:5.120000pt;}
.va{vertical-align:26.000001pt;}
.v2{vertical-align:27.750001pt;}
.v6{vertical-align:32.884641pt;}
.v1{vertical-align:37.000001pt;}
.v8{vertical-align:63.389774pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.000080pt;}
.ls14{letter-spacing:0.026533pt;}
.ls24{letter-spacing:15.987714pt;}
.ls17{letter-spacing:26.666977pt;}
.ls23{letter-spacing:31.987714pt;}
.ls22{letter-spacing:31.987718pt;}
.ls25{letter-spacing:32.000253pt;}
.ls27{letter-spacing:35.975184pt;}
.ls20{letter-spacing:35.983626pt;}
.ls28{letter-spacing:35.984064pt;}
.ls21{letter-spacing:35.987718pt;}
.ls1c{letter-spacing:36.000165pt;}
.ls26{letter-spacing:37.772362pt;}
.ls11{letter-spacing:37.795197pt;}
.lsf{letter-spacing:39.990040pt;}
.ls1e{letter-spacing:39.999861pt;}
.ls1f{letter-spacing:43.983330pt;}
.ls1d{letter-spacing:43.999869pt;}
.ls7{letter-spacing:60.855042pt;}
.ls1b{letter-spacing:69.308525pt;}
.ls18{letter-spacing:69.316843pt;}
.ls16{letter-spacing:69.321115pt;}
.ls19{letter-spacing:69.333650pt;}
.lsb{letter-spacing:95.977723pt;}
.ls8{letter-spacing:95.980165pt;}
.lse{letter-spacing:95.980233pt;}
.lsc{letter-spacing:95.983516pt;}
.lsd{letter-spacing:95.983524pt;}
.ls6{letter-spacing:95.985080pt;}
.ls4{letter-spacing:95.990046pt;}
.lsa{letter-spacing:95.990322pt;}
.ls15{letter-spacing:95.991602pt;}
.ls12{letter-spacing:95.991750pt;}
.ls9{letter-spacing:95.994953pt;}
.ls5{letter-spacing:95.995003pt;}
.ls2{letter-spacing:95.996564pt;}
.ls10{letter-spacing:95.999883pt;}
.ls3{letter-spacing:96.000175pt;}
.ls2a{letter-spacing:96.000363pt;}
.ls1{letter-spacing:96.000439pt;}
.ls29{letter-spacing:96.000443pt;}
.ls13{letter-spacing:2281.259821pt;}
.ws5{word-spacing:-26.592001pt;}
.ws4{word-spacing:-26.432001pt;}
.ws10{word-spacing:-24.449603pt;}
.ws1a{word-spacing:-23.623835pt;}
.ws0{word-spacing:-23.285333pt;}
.wsf{word-spacing:-22.656001pt;}
.ws11{word-spacing:-21.397333pt;}
.wsd{word-spacing:-20.484800pt;}
.ws6{word-spacing:-19.383467pt;}
.ws18{word-spacing:-18.880001pt;}
.ws8{word-spacing:-18.502399pt;}
.wsc{word-spacing:-17.621333pt;}
.ws17{word-spacing:-16.362668pt;}
.ws15{word-spacing:-16.250668pt;}
.ws9{word-spacing:-15.859201pt;}
.ws1{word-spacing:-15.523556pt;}
.ws14{word-spacing:-13.813067pt;}
.ws7{word-spacing:-13.296000pt;}
.wse{word-spacing:-11.818667pt;}
.ws2{word-spacing:-11.642668pt;}
.ws19{word-spacing:-11.328000pt;}
.wsa{word-spacing:-10.069334pt;}
.ws16{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws1b{word-spacing:58.255085pt;}
.ws13{word-spacing:73.503620pt;}
.ws12{word-spacing:75.843426pt;}
.ws1c{word-spacing:944.689667pt;}
.wsb{word-spacing:1459.868734pt;}
._24{margin-left:-21.285010pt;}
._f{margin-left:-12.384000pt;}
._5{margin-left:-10.515125pt;}
._7{margin-left:-9.494936pt;}
._4{margin-left:-7.728933pt;}
._9{margin-left:-6.671467pt;}
._0{margin-left:-5.466667pt;}
._a{margin-left:-4.447600pt;}
._6{margin-left:-3.500103pt;}
._3{margin-left:-2.426667pt;}
._1{margin-left:-1.530667pt;}
._2{width:1.530667pt;}
._8{width:3.429074pt;}
._18{width:8.530220pt;}
._26{width:11.583141pt;}
._22{width:14.546270pt;}
._1a{width:16.431898pt;}
._1b{width:17.688983pt;}
._1d{width:26.933331pt;}
._1c{width:28.109037pt;}
._27{width:32.863795pt;}
._25{width:42.651101pt;}
._19{width:50.103819pt;}
._21{width:61.233795pt;}
._20{width:62.409501pt;}
._1e{width:81.171779pt;}
._1f{width:82.163695pt;}
._10{width:95.951457pt;}
._11{width:96.960244pt;}
._16{width:100.802434pt;}
._12{width:126.269740pt;}
._13{width:137.872301pt;}
._23{width:170.694194pt;}
._d{width:358.027773pt;}
._15{width:518.165421pt;}
._c{width:557.857113pt;}
._b{width:708.570527pt;}
._14{width:972.709423pt;}
._17{width:1004.667784pt;}
._e{width:1562.029678pt;}
.fs18{font-size:37.333333pt;}
.fs11{font-size:42.666669pt;}
.fs2d{font-size:44.800005pt;}
.fse{font-size:48.000002pt;}
.fs5{font-size:49.333337pt;}
.fs1e{font-size:49.866670pt;}
.fs24{font-size:53.333334pt;}
.fsb{font-size:54.800146pt;}
.fs21{font-size:58.666670pt;}
.fsf{font-size:63.466662pt;}
.fs28{font-size:64.000002pt;}
.fs3{font-size:65.777781pt;}
.fs16{font-size:66.266674pt;}
.fs10{font-size:67.200002pt;}
.fs25{font-size:69.333338pt;}
.fs4{font-size:74.000002pt;}
.fs17{font-size:74.666666pt;}
.fsd{font-size:78.399995pt;}
.fs23{font-size:80.000003pt;}
.fs2a{font-size:81.600011pt;}
.fsc{font-size:82.133335pt;}
.fs1d{font-size:85.333339pt;}
.fs19{font-size:86.593603pt;}
.fsa{font-size:86.799999pt;}
.fs15{font-size:87.600003pt;}
.fs12{font-size:88.799999pt;}
.fs2c{font-size:89.791791pt;}
.fs1c{font-size:90.666667pt;}
.fs2b{font-size:91.401979pt;}
.fs1f{font-size:95.117955pt;}
.fs13{font-size:95.200007pt;}
.fs8{font-size:96.000003pt;}
.fs14{font-size:98.266667pt;}
.fs2{font-size:98.666667pt;}
.fs29{font-size:100.100995pt;}
.fs9{font-size:103.600011pt;}
.fs1a{font-size:106.666667pt;}
.fs22{font-size:109.333339pt;}
.fs20{font-size:111.903468pt;}
.fs7{font-size:112.000004pt;}
.fs26{font-size:112.646940pt;}
.fs1b{font-size:117.333340pt;}
.fs27{font-size:122.666668pt;}
.fs6{font-size:128.266668pt;}
.fs1{font-size:153.599997pt;}
.fs2e{font-size:213.333335pt;}
.fs0{font-size:218.666679pt;}
.y19f{bottom:-150.818677pt;}
.y172{bottom:-52.761229pt;}
.y17f{bottom:-40.570474pt;}
.y171{bottom:-21.854578pt;}
.y17e{bottom:-9.663813pt;}
.y170{bottom:-1.614587pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:7.683013pt;}
.y17d{bottom:10.576178pt;}
.y13e{bottom:10.811850pt;}
.y162{bottom:10.812490pt;}
.y88{bottom:15.825533pt;}
.yaf{bottom:16.329563pt;}
.y15{bottom:18.561183pt;}
.y16f{bottom:20.865393pt;}
.y9a{bottom:30.083034pt;}
.ycb{bottom:32.352484pt;}
.y1a{bottom:32.708814pt;}
.y54{bottom:35.100834pt;}
.y1ae{bottom:35.185934pt;}
.y66{bottom:35.241394pt;}
.y117{bottom:35.463924pt;}
.ye8{bottom:35.951874pt;}
.ydb{bottom:36.077834pt;}
.y3d{bottom:36.794954pt;}
.yae{bottom:37.161564pt;}
.y133{bottom:37.797064pt;}
.y87{bottom:39.477534pt;}
.y1f0{bottom:39.555734pt;}
.y14{bottom:40.317184pt;}
.ybd{bottom:41.731234pt;}
.y30{bottom:42.757324pt;}
.y126{bottom:43.491154pt;}
.y1de{bottom:43.496534pt;}
.y17c{bottom:43.696129pt;}
.y160{bottom:43.847979pt;}
.y101{bottom:43.898594pt;}
.y10c{bottom:45.869814pt;}
.y75{bottom:48.383914pt;}
.y16e{bottom:49.585394pt;}
.y173{bottom:50.277251pt;}
.y53{bottom:51.228834pt;}
.y99{bottom:52.483064pt;}
.y13d{bottom:53.022984pt;}
.y1d5{bottom:53.484398pt;}
.y1e2{bottom:54.536504pt;}
.y19{bottom:56.144819pt;}
.y65{bottom:56.553405pt;}
.yca{bottom:57.048465pt;}
.y13{bottom:57.778926pt;}
.yad{bottom:57.993565pt;}
.yda{bottom:59.117835pt;}
.y132{bottom:59.752415pt;}
.ye7{bottom:60.815895pt;}
.y55{bottom:62.534285pt;}
.y86{bottom:63.129555pt;}
.y1ad{bottom:63.977575pt;}
.y198{bottom:64.360905pt;}
.y116{bottom:64.463925pt;}
.y145{bottom:66.194109pt;}
.y125{bottom:66.531165pt;}
.y52{bottom:67.356815pt;}
.y1ef{bottom:67.840155pt;}
.y2f{bottom:70.044775pt;}
.y154{bottom:71.075655pt;}
.y3c{bottom:71.808095pt;}
.ybc{bottom:71.971235pt;}
.y100{bottom:73.844575pt;}
.y74{bottom:74.087935pt;}
.y98{bottom:74.883095pt;}
.y18e{bottom:76.429785pt;}
.y15f{bottom:77.448020pt;}
.y64{bottom:77.865435pt;}
.yac{bottom:78.825565pt;}
.y10b{bottom:78.989815pt;}
.yf5{bottom:79.363165pt;}
.y1d4{bottom:79.817725pt;}
.y1dd{bottom:82.136505pt;}
.yd9{bottom:82.925835pt;}
.y51{bottom:83.484805pt;}
.y17b{bottom:84.496130pt;}
.y85{bottom:85.629555pt;}
.ye6{bottom:85.679905pt;}
.y153{bottom:87.075656pt;}
.y2e{bottom:87.292776pt;}
.y18{bottom:88.519492pt;}
.y124{bottom:89.571176pt;}
.y1e1{bottom:91.496496pt;}
.y131{bottom:92.568116pt;}
.y1ac{bottom:92.769196pt;}
.y1d3{bottom:92.817726pt;}
.y16d{bottom:93.078756pt;}
.y115{bottom:93.463926pt;}
.yc9{bottom:95.077796pt;}
.y1ee{bottom:96.124576pt;}
.y144{bottom:97.154106pt;}
.y97{bottom:97.283116pt;}
.y3b{bottom:98.688096pt;}
.y63{bottom:99.177436pt;}
.y1ce{bottom:99.317724pt;}
.y50{bottom:99.612796pt;}
.yab{bottom:99.657566pt;}
.y73{bottom:99.791936pt;}
.y197{bottom:101.160896pt;}
.y13c{bottom:101.409636pt;}
.ybb{bottom:102.211216pt;}
.y152{bottom:103.075656pt;}
.y84{bottom:103.521536pt;}
.yff{bottom:103.790566pt;}
.y2d{bottom:104.540746pt;}
.y17{bottom:105.043521pt;}
.y1d2{bottom:105.817724pt;}
.y114{bottom:106.616486pt;}
.yf4{bottom:108.163156pt;}
.y18d{bottom:109.549776pt;}
.yd8{bottom:109.805856pt;}
.ye9{bottom:109.859716pt;}
.ye5{bottom:110.543916pt;}
.y15e{bottom:111.048061pt;}
.y11{bottom:111.960636pt;}
.y10a{bottom:112.109806pt;}
.y1cb{bottom:112.317716pt;}
.y1cd{bottom:112.317724pt;}
.y123{bottom:112.611176pt;}
.y4f{bottom:115.740786pt;}
.y186{bottom:117.363166pt;}
.y1d1{bottom:118.817725pt;}
.y151{bottom:119.075658pt;}
.y96{bottom:119.683137pt;}
.yc8{bottom:119.773777pt;}
.y62{bottom:120.489437pt;}
.yaa{bottom:120.489567pt;}
.y1dc{bottom:120.776497pt;}
.y83{bottom:121.413537pt;}
.y2c{bottom:121.788737pt;}
.y16c{bottom:121.798757pt;}
.y1ab{bottom:122.213237pt;}
.y1ed{bottom:124.409007pt;}
.y1e0{bottom:124.616487pt;}
.y17a{bottom:125.296132pt;}
.y1cc{bottom:125.317721pt;}
.y72{bottom:125.495937pt;}
.y3a{bottom:125.568117pt;}
.y16{bottom:128.479519pt;}
.y196{bottom:130.680927pt;}
.y1d0{bottom:131.817721pt;}
.y4e{bottom:131.868777pt;}
.yba{bottom:132.451207pt;}
.yfe{bottom:133.736537pt;}
.ye4{bottom:135.407937pt;}
.y122{bottom:135.651187pt;}
.y130{bottom:136.050437pt;}
.yf3{bottom:136.963137pt;}
.y6{bottom:138.546607pt;}
.y2b{bottom:139.036717pt;}
.y82{bottom:140.457557pt;}
.ya9{bottom:141.321567pt;}
.y61{bottom:141.801457pt;}
.y95{bottom:142.083167pt;}
.y10{bottom:142.200627pt;}
.y146{bottom:144.022087pt;}
.y13b{bottom:144.476297pt;}
.y15d{bottom:144.648102pt;}
.y1cf{bottom:144.817721pt;}
.y109{bottom:145.229807pt;}
.y4d{bottom:147.996767pt;}
.yd7{bottom:149.251197pt;}
.y185{bottom:150.483158pt;}
.y1c1{bottom:150.484398pt;}
.y71{bottom:151.199958pt;}
.y39{bottom:152.448118pt;}
.y1ec{bottom:152.693438pt;}
.y1aa{bottom:153.037438pt;}
.yc7{bottom:155.551938pt;}
.y18c{bottom:156.003138pt;}
.y2a{bottom:156.284708pt;}
.y113{bottom:157.763158pt;}
.y1db{bottom:159.416478pt;}
.ye3{bottom:160.271938pt;}
.y195{bottom:161.507528pt;}
.ya8{bottom:162.153538pt;}
.yb9{bottom:162.691198pt;}
.y60{bottom:163.113468pt;}
.y1c0{bottom:163.484398pt;}
.y81{bottom:164.109568pt;}
.y94{bottom:164.483188pt;}
.y4c{bottom:164.662388pt;}
.y16b{bottom:165.292098pt;}
.y179{bottom:166.096133pt;}
.yf2{bottom:166.723138pt;}
.y12f{bottom:168.866138pt;}
.y13a{bottom:170.306158pt;}
.y1ca{bottom:171.151062pt;}
.y121{bottom:172.024538pt;}
.yd6{bottom:172.291208pt;}
.y150{bottom:172.428658pt;}
.yf{bottom:172.440608pt;}
.y29{bottom:173.532678pt;}
.yfd{bottom:174.349188pt;}
.yc6{bottom:175.107158pt;}
.y1c6{bottom:176.651068pt;}
.y70{bottom:176.903968pt;}
.y15c{bottom:178.248093pt;}
.y108{bottom:178.349828pt;}
.y38{bottom:179.328118pt;}
.y1eb{bottom:180.977819pt;}
.y1a9{bottom:181.597469pt;}
.ya7{bottom:182.985539pt;}
.y4b{bottom:183.478399pt;}
.y1c9{bottom:184.151063pt;}
.y5f{bottom:184.425479pt;}
.ye2{bottom:185.135949pt;}
.y184{bottom:185.283169pt;}
.y5{bottom:185.409946pt;}
.y93{bottom:186.883189pt;}
.y80{bottom:187.761559pt;}
.y14f{bottom:188.428659pt;}
.y18b{bottom:189.123159pt;}
.y1c5{bottom:189.651067pt;}
.y28{bottom:190.780679pt;}
.y143{bottom:190.926372pt;}
.yb8{bottom:192.931179pt;}
.y16a{bottom:194.012099pt;}
.y120{bottom:195.064519pt;}
.yd5{bottom:195.331189pt;}
.yc5{bottom:197.115149pt;}
.y1da{bottom:198.056479pt;}
.y112{bottom:198.243159pt;}
.y194{bottom:198.307529pt;}
.yf1{bottom:199.363149pt;}
.y4a{bottom:201.577599pt;}
.y12e{bottom:201.681819pt;}
.y6f{bottom:202.607959pt;}
.y1bf{bottom:202.651059pt;}
.y1c4{bottom:202.651067pt;}
.ye{bottom:202.680599pt;}
.ya6{bottom:203.817539pt;}
.y14e{bottom:204.428659pt;}
.y5e{bottom:205.737499pt;}
.y37{bottom:206.208119pt;}
.y27{bottom:208.028679pt;}
.y139{bottom:208.912849pt;}
.y1c7{bottom:209.151063pt;}
.y1ea{bottom:209.262229pt;}
.y92{bottom:209.283179pt;}
.ye1{bottom:209.999949pt;}
.y1a8{bottom:210.157459pt;}
.y7f{bottom:210.261559pt;}
.y15b{bottom:212.968095pt;}
.y4{bottom:213.529950pt;}
.y142{bottom:215.566370pt;}
.y1c3{bottom:215.651064pt;}
.y49{bottom:216.809590pt;}
.y178{bottom:217.562805pt;}
.yfc{bottom:217.628500pt;}
.y11f{bottom:218.104500pt;}
.yd4{bottom:219.139180pt;}
.yb0{bottom:219.652390pt;}
.y14d{bottom:220.428661pt;}
.yc4{bottom:221.811150pt;}
.y1c8{bottom:222.317730pt;}
.yb7{bottom:223.171170pt;}
.y107{bottom:223.256480pt;}
.ya5{bottom:224.649540pt;}
.y26{bottom:225.276680pt;}
.y1a1{bottom:226.869340pt;}
.y5d{bottom:227.049510pt;}
.y1f1{bottom:227.318430pt;}
.yf0{bottom:228.163160pt;}
.y6e{bottom:228.311960pt;}
.y1c2{bottom:228.651064pt;}
.y7e{bottom:229.305550pt;}
.y91{bottom:231.683180pt;}
.y48{bottom:232.758390pt;}
.yd{bottom:232.920590pt;}
.y36{bottom:233.088130pt;}
.ye0{bottom:234.863940pt;}
.y193{bottom:235.107520pt;}
.y18a{bottom:235.576490pt;}
.y183{bottom:235.576500pt;}
.y1d9{bottom:236.696480pt;}
.y169{bottom:237.505410pt;}
.y1e9{bottom:237.546640pt;}
.y1a7{bottom:238.717460pt;}
.y111{bottom:238.723150pt;}
.y11e{bottom:241.144480pt;}
.y25{bottom:242.524680pt;}
.y12d{bottom:245.164181pt;}
.yd3{bottom:245.251171pt;}
.ya4{bottom:245.481541pt;}
.y138{bottom:247.519541pt;}
.yfb{bottom:247.574501pt;}
.y5c{bottom:248.361521pt;}
.y15a{bottom:248.968096pt;}
.y47{bottom:251.574381pt;}
.y7d{bottom:252.957541pt;}
.yb6{bottom:253.411161pt;}
.y6d{bottom:254.015951pt;}
.y90{bottom:254.083171pt;}
.y19e{bottom:254.634661pt;}
.yef{bottom:256.963161pt;}
.ydc{bottom:259.157228pt;}
.ydf{bottom:259.727941pt;}
.y24{bottom:259.772681pt;}
.yc3{bottom:259.840481pt;}
.y35{bottom:259.968131pt;}
.y1be{bottom:260.484405pt;}
.yc{bottom:263.160571pt;}
.y147{bottom:263.810461pt;}
.y1e8{bottom:265.831051pt;}
.y168{bottom:266.225411pt;}
.ya3{bottom:266.313541pt;}
.y14c{bottom:267.311811pt;}
.y1a6{bottom:267.985021pt;}
.yd2{bottom:268.291141pt;}
.y189{bottom:268.696481pt;}
.y182{bottom:268.696501pt;}
.y106{bottom:269.603161pt;}
.y5b{bottom:269.673531pt;}
.y177{bottom:270.362796pt;}
.y46{bottom:270.390371pt;}
.y192{bottom:273.587521pt;}
.y1d8{bottom:275.336482pt;}
.y3{bottom:275.667362pt;}
.y8f{bottom:276.483162pt;}
.y7c{bottom:276.609542pt;}
.y23{bottom:277.020682pt;}
.y11d{bottom:277.517802pt;}
.yfa{bottom:277.520502pt;}
.y110{bottom:279.203152pt;}
.y6c{bottom:279.719952pt;}
.y14b{bottom:283.311812pt;}
.yb5{bottom:283.651142pt;}
.y19d{bottom:283.679982pt;}
.y159{bottom:283.848087pt;}
.y12c{bottom:283.895152pt;}
.yc2{bottom:284.536482pt;}
.yde{bottom:284.591942pt;}
.yee{bottom:285.763142pt;}
.y137{bottom:286.126232pt;}
.y1bd{bottom:286.817740pt;}
.y34{bottom:286.848132pt;}
.ya2{bottom:287.145542pt;}
.y45{bottom:288.489572pt;}
.y5a{bottom:290.985542pt;}
.yd1{bottom:291.331142pt;}
.yb{bottom:293.400577pt;}
.y1b6{bottom:293.484402pt;}
.y1e7{bottom:294.115472pt;}
.y22{bottom:294.268682pt;}
.y8e{bottom:298.883162pt;}
.y7b{bottom:299.109542pt;}
.y14a{bottom:299.311812pt;}
.y1a5{bottom:299.516822pt;}
.y1bb{bottom:299.817736pt;}
.y1ba{bottom:299.984402pt;}
.y11c{bottom:300.557812pt;}
.y12b{bottom:301.099142pt;}
.y105{bottom:302.723152pt;}
.y181{bottom:303.496482pt;}
.y44{bottom:303.721572pt;}
.y6b{bottom:305.423946pt;}
.y1b5{bottom:306.484399pt;}
.yf9{bottom:307.466493pt;}
.ya1{bottom:307.977553pt;}
.yc1{bottom:309.232483pt;}
.ydd{bottom:309.455943pt;}
.y167{bottom:309.718733pt;}
.y158{bottom:310.168084pt;}
.y176{bottom:311.162778pt;}
.y21{bottom:311.516693pt;}
.y141{bottom:312.417249pt;}
.y19c{bottom:312.725313pt;}
.y1bc{bottom:312.817737pt;}
.y1b9{bottom:312.984399pt;}
.y33{bottom:313.728133pt;}
.yb4{bottom:313.891148pt;}
.y1d7{bottom:313.976493pt;}
.yd0{bottom:314.371143pt;}
.yed{bottom:314.563143pt;}
.y188{bottom:315.149807pt;}
.y149{bottom:315.311813pt;}
.y7a{bottom:317.001543pt;}
.y12a{bottom:318.303143pt;}
.y2{bottom:319.443355pt;}
.y1b4{bottom:319.484399pt;}
.y43{bottom:319.670363pt;}
.y10f{bottom:319.683148pt;}
.y8d{bottom:321.283153pt;}
.y1e6{bottom:322.399883pt;}
.y11b{bottom:323.597823pt;}
.ya{bottom:323.640573pt;}
.y136{bottom:324.732923pt;}
.y1b8{bottom:325.984399pt;}
.y191{bottom:327.560847pt;}
.y20{bottom:328.764693pt;}
.ya0{bottom:328.809553pt;}
.y1a4{bottom:331.048623pt;}
.y6a{bottom:331.127943pt;}
.y148{bottom:331.311814pt;}
.y1b3{bottom:332.484399pt;}
.y59{bottom:334.319943pt;}
.y104{bottom:335.843143pt;}
.y79{bottom:336.045543pt;}
.ycf{bottom:337.411144pt;}
.y157{bottom:337.768083pt;}
.y166{bottom:338.438734pt;}
.y42{bottom:338.486354pt;}
.y1b7{bottom:338.984400pt;}
.y1b2{bottom:339.151068pt;}
.y129{bottom:340.267144pt;}
.y32{bottom:340.608129pt;}
.y19b{bottom:341.770644pt;}
.y140{bottom:342.097244pt;}
.yec{bottom:343.363149pt;}
.y8c{bottom:343.683149pt;}
.yb3{bottom:344.131144pt;}
.y1b1{bottom:345.651068pt;}
.y1f{bottom:346.012694pt;}
.yc0{bottom:347.261824pt;}
.yf8{bottom:348.079164pt;}
.y9f{bottom:349.641554pt;}
.y1e5{bottom:350.684294pt;}
.y175{bottom:351.962779pt;}
.y1d6{bottom:352.616484pt;}
.y180{bottom:353.789814pt;}
.y9{bottom:353.880574pt;}
.y69{bottom:356.831944pt;}
.y41{bottom:357.302354pt;}
.y58{bottom:359.183944pt;}
.y78{bottom:359.697544pt;}
.y10e{bottom:360.163144pt;}
.y11a{bottom:360.259154pt;}
.yce{bottom:360.451144pt;}
.y1a3{bottom:362.580434pt;}
.y1e{bottom:363.260694pt;}
.y187{bottom:363.283144pt;}
.y135{bottom:363.339620pt;}
.y190{bottom:364.360844pt;}
.y8b{bottom:366.083154pt;}
.y31{bottom:367.488126pt;}
.y103{bottom:368.963149pt;}
.y9e{bottom:370.473551pt;}
.y19a{bottom:370.815975pt;}
.yeb{bottom:372.163145pt;}
.y128{bottom:373.111145pt;}
.yb2{bottom:374.371145pt;}
.y40{bottom:376.118350pt;}
.y156{bottom:377.581416pt;}
.y1{bottom:377.592025pt;}
.yf7{bottom:378.025153pt;}
.y1b0{bottom:378.484409pt;}
.y1e4{bottom:378.968705pt;}
.y1d{bottom:380.508690pt;}
.y165{bottom:381.932069pt;}
.y68{bottom:382.535948pt;}
.y77{bottom:383.349547pt;}
.ycd{bottom:383.491149pt;}
.y57{bottom:384.047942pt;}
.y8{bottom:384.120575pt;}
.y119{bottom:384.739150pt;}
.ybf{bottom:385.291152pt;}
.y8a{bottom:388.483149pt;}
.y9d{bottom:391.305548pt;}
.y3f{bottom:394.934348pt;}
.y1c{bottom:397.756685pt;}
.y199{bottom:399.861306pt;}
.y10d{bottom:400.643146pt;}
.yea{bottom:401.923146pt;}
.y134{bottom:401.946316pt;}
.y18f{bottom:402.840836pt;}
.y155{bottom:403.181411pt;}
.y102{bottom:403.203148pt;}
.y174{bottom:403.429443pt;}
.yb1{bottom:404.611146pt;}
.y1a2{bottom:404.778909pt;}
.y127{bottom:405.955145pt;}
.y1af{bottom:406.644406pt;}
.y1e3{bottom:407.253118pt;}
.ycc{bottom:407.299146pt;}
.y76{bottom:407.577549pt;}
.yf6{bottom:407.971147pt;}
.y67{bottom:408.239946pt;}
.y56{bottom:408.911945pt;}
.y118{bottom:409.219148pt;}
.ybe{bottom:409.987148pt;}
.y164{bottom:410.652068pt;}
.y89{bottom:410.883148pt;}
.y9c{bottom:412.137546pt;}
.y3e{bottom:413.750346pt;}
.y1b{bottom:415.004686pt;}
.y1a0{bottom:453.994844pt;}
.y7{bottom:453.995500pt;}
.y13f{bottom:454.590157pt;}
.y163{bottom:454.591305pt;}
.y161{bottom:455.582155pt;}
.y1df{bottom:458.937757pt;}
.y12{bottom:484.235498pt;}
.h29{height:29.120000pt;}
.h16{height:31.083335pt;}
.hf{height:33.280002pt;}
.hc{height:34.968751pt;}
.h1f{height:36.328648pt;}
.h2c{height:37.440001pt;}
.h26{height:41.600000pt;}
.h22{height:42.739586pt;}
.h9{height:42.744114pt;}
.h30{height:43.974167pt;}
.h24{height:45.760003pt;}
.hd{height:49.503996pt;}
.h2d{height:49.920002pt;}
.h2b{height:50.510420pt;}
.h14{height:51.688006pt;}
.he{height:52.416002pt;}
.h2a{height:54.080004pt;}
.h32{height:56.416664pt;}
.h31{height:57.083336pt;}
.h15{height:58.240000pt;}
.hb{height:61.151996pt;}
.h25{height:62.400002pt;}
.h19{height:63.042511pt;}
.ha{height:64.064001pt;}
.h17{height:66.164643pt;}
.h4{height:66.230004pt;}
.h1e{height:66.560004pt;}
.h8{height:67.703999pt;}
.h13{height:68.328002pt;}
.h10{height:69.263999pt;}
.h33{height:70.037597pt;}
.h1d{height:70.720000pt;}
.h2f{height:71.293544pt;}
.h12{height:71.588802pt;}
.h20{height:74.192005pt;}
.h11{height:74.256005pt;}
.h18{height:74.880002pt;}
.h2e{height:78.078776pt;}
.h7{height:80.808009pt;}
.h27{height:82.010052pt;}
.h1a{height:83.200001pt;}
.h23{height:85.280005pt;}
.h21{height:87.284705pt;}
.h6{height:87.360003pt;}
.h3{height:88.306671pt;}
.h1b{height:91.520005pt;}
.h28{height:95.680001pt;}
.h5{height:100.048001pt;}
.h2{height:119.807998pt;}
.h1c{height:138.269776pt;}
.h34{height:166.400001pt;}
.h1{height:170.560010pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x16{left:36.081476pt;}
.x7{left:41.438325pt;}
.xa{left:43.259843pt;}
.x31{left:46.421100pt;}
.x1a{left:47.414935pt;}
.x8{left:48.526713pt;}
.x1{left:50.492101pt;}
.x12{left:52.791095pt;}
.xc{left:54.350529pt;}
.x10{left:55.760455pt;}
.xb{left:57.882785pt;}
.x15{left:60.335922pt;}
.x6{left:62.277238pt;}
.x1b{left:63.431288pt;}
.x18{left:65.257258pt;}
.x38{left:70.359522pt;}
.x33{left:74.170545pt;}
.x39{left:76.021595pt;}
.x32{left:77.438898pt;}
.x9{left:89.438823pt;}
.x54{left:92.906337pt;}
.x53{left:97.101016pt;}
.x3a{left:98.706058pt;}
.x11{left:105.226886pt;}
.x13{left:106.625246pt;}
.x2{left:107.789313pt;}
.x2a{left:112.577106pt;}
.x28{left:135.854725pt;}
.xe{left:138.013127pt;}
.x3{left:152.264715pt;}
.x27{left:204.245563pt;}
.x5{left:228.237757pt;}
.x26{left:231.594623pt;}
.x24{left:234.489910pt;}
.x25{left:250.120702pt;}
.x23{left:263.338566pt;}
.x4{left:271.954479pt;}
.x21{left:279.612172pt;}
.x29{left:310.998594pt;}
.x22{left:319.776236pt;}
.x34{left:420.594070pt;}
.x37{left:425.363138pt;}
.x35{left:449.940604pt;}
.x3b{left:455.275615pt;}
.xd{left:459.467215pt;}
.x47{left:548.845076pt;}
.x46{left:557.144255pt;}
.x14{left:574.644092pt;}
.x1d{left:605.369519pt;}
.x1e{left:606.329519pt;}
.x1f{left:609.776920pt;}
.x19{left:612.328080pt;}
.x4d{left:632.426392pt;}
.x3c{left:633.599724pt;}
.x43{left:636.589570pt;}
.x44{left:637.759720pt;}
.x49{left:641.306024pt;}
.x48{left:642.793863pt;}
.x4a{left:650.185075pt;}
.x4e{left:657.400049pt;}
.x2b{left:659.406509pt;}
.x2d{left:662.875377pt;}
.x45{left:666.187661pt;}
.x17{left:672.221476pt;}
.x2e{left:681.622122pt;}
.xf{left:683.557655pt;}
.x2c{left:689.622122pt;}
.x2f{left:700.900912pt;}
.x3e{left:738.215176pt;}
.x3d{left:739.110135pt;}
.x4f{left:750.658742pt;}
.x40{left:754.808331pt;}
.x30{left:756.171541pt;}
.x3f{left:758.068164pt;}
.x20{left:762.386724pt;}
.x4b{left:845.144287pt;}
.x42{left:846.926979pt;}
.x50{left:848.711113pt;}
.x41{left:850.179008pt;}
.x51{left:851.661354pt;}
.x4c{left:860.545899pt;}
.x52{left:865.387612pt;}
.x1c{left:933.049794pt;}
.x36{left:1097.695919pt;}
}




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