
    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_9f0a6c0a05d689ab8bcc6cc8.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_60345ecf9551dfe23dedfc2f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d1a2712caaa538394f2d0f8e.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e41a30b6b171ce22320821dd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.923000;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_1b29fac2414b5d832911033c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.698000;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_0e27d3fce95d7305463f9567.woff')format("woff");}.ff6{font-family:ff6;line-height:0.716000;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_9988743d7c452c79519ae212.woff')format("woff");}.ff7{font-family:ff7;line-height:0.431000;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_28bcc7bd2d3c5f07a37e4b01.woff')format("woff");}.ff8{font-family:ff8;line-height:0.482000;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_22c98e90151ab4179f4aeada.woff')format("woff");}.ff9{font-family:ff9;line-height:0.704000;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_f625224183c4f267b190ee14.woff')format("woff");}.ffa{font-family:ffa;line-height:0.696000;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);}
.v2{vertical-align:-10.668000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.754000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.001618px;}
.ls2{letter-spacing:0.002700px;}
.ls23{letter-spacing:0.004318px;}
.lsf{letter-spacing:0.009779px;}
.ls1e{letter-spacing:0.016184px;}
.ls20{letter-spacing:0.022184px;}
.ls3e{letter-spacing:0.043613px;}
.ls3{letter-spacing:0.049076px;}
.ls10{letter-spacing:0.049613px;}
.ls12{letter-spacing:0.055076px;}
.lsc{letter-spacing:2.881611px;}
.ls24{letter-spacing:2.999261px;}
.ls25{letter-spacing:3.005261px;}
.ls5{letter-spacing:5.031776px;}
.ls4{letter-spacing:7.985261px;}
.ls35{letter-spacing:12.115621px;}
.ls34{letter-spacing:12.571621px;}
.ls9{letter-spacing:12.715621px;}
.ls1d{letter-spacing:14.089621px;}
.lse{letter-spacing:15.457621px;}
.ls13{letter-spacing:15.619621px;}
.lsa{letter-spacing:15.727621px;}
.ls3b{letter-spacing:16.075618px;}
.ls3c{letter-spacing:16.132887px;}
.ls1a{letter-spacing:16.417621px;}
.ls18{letter-spacing:16.795621px;}
.ls2c{letter-spacing:16.809776px;}
.ls6{letter-spacing:17.201261px;}
.ls36{letter-spacing:18.169621px;}
.ls3a{letter-spacing:18.175608px;}
.ls15{letter-spacing:18.175621px;}
.ls3f{letter-spacing:19.191208px;}
.ls7{letter-spacing:19.357621px;}
.ls16{letter-spacing:19.657621px;}
.ls2b{letter-spacing:19.757261px;}
.ls30{letter-spacing:20.283776px;}
.ls17{letter-spacing:20.839621px;}
.ls19{letter-spacing:21.019621px;}
.ls29{letter-spacing:21.185261px;}
.ls2a{letter-spacing:21.191261px;}
.ls32{letter-spacing:22.207621px;}
.ls21{letter-spacing:22.325261px;}
.ls1f{letter-spacing:22.331261px;}
.ls26{letter-spacing:22.455208px;}
.ls1b{letter-spacing:22.461208px;}
.ls11{letter-spacing:23.055208px;}
.ls22{letter-spacing:23.117261px;}
.ls2f{letter-spacing:23.237261px;}
.lsb{letter-spacing:23.775242px;}
.ls2d{letter-spacing:23.951261px;}
.ls3d{letter-spacing:24.517621px;}
.ls14{letter-spacing:24.559621px;}
.ls38{letter-spacing:24.721618px;}
.ls1c{letter-spacing:24.751621px;}
.ls39{letter-spacing:24.778887px;}
.ls2e{letter-spacing:25.311242px;}
.lsd{letter-spacing:26.759261px;}
.ls37{letter-spacing:26.827608px;}
.ls31{letter-spacing:28.301261px;}
.ls27{letter-spacing:30.699208px;}
.ls28{letter-spacing:31.065208px;}
.ls1{letter-spacing:32.727300px;}
.ls33{letter-spacing:32.739242px;}
.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;}
}
.ws12{word-spacing:-59.614769px;}
.ws11{word-spacing:-44.181855px;}
.ws15{word-spacing:-41.628853px;}
.ws54{word-spacing:-38.225486px;}
.ws25{word-spacing:-36.392758px;}
.wsbd{word-spacing:-26.116385px;}
.wsd4{word-spacing:-25.789112px;}
.wsbc{word-spacing:-25.658203px;}
.ws4a{word-spacing:-25.592749px;}
.ws59{word-spacing:-25.527294px;}
.ws5a{word-spacing:-25.514247px;}
.ws1f{word-spacing:-24.938203px;}
.wsca{word-spacing:-24.807293px;}
.ws6f{word-spacing:-24.741839px;}
.wsd0{word-spacing:-24.676384px;}
.ws40{word-spacing:-24.610930px;}
.ws7c{word-spacing:-24.545475px;}
.wsc4{word-spacing:-24.349111px;}
.ws63{word-spacing:-24.218202px;}
.wsa2{word-spacing:-24.152747px;}
.wsd1{word-spacing:-24.087293px;}
.ws1e{word-spacing:-24.021838px;}
.ws17{word-spacing:-24.015539px;}
.ws69{word-spacing:-23.956384px;}
.ws4d{word-spacing:-23.929462px;}
.ws3b{word-spacing:-23.825474px;}
.ws89{word-spacing:-23.498201px;}
.ws8f{word-spacing:-23.432747px;}
.wsa3{word-spacing:-23.367292px;}
.ws90{word-spacing:-23.348959px;}
.wsdf{word-spacing:-23.301838px;}
.wsd3{word-spacing:-23.236383px;}
.ws8a{word-spacing:-23.170928px;}
.ws85{word-spacing:-23.105474px;}
.ws84{word-spacing:-23.040019px;}
.wsce{word-spacing:-22.909110px;}
.wsdc{word-spacing:-22.843655px;}
.ws21{word-spacing:-22.778201px;}
.wsc6{word-spacing:-22.712746px;}
.ws66{word-spacing:-22.693877px;}
.ws7b{word-spacing:-22.647292px;}
.ws3c{word-spacing:-22.581837px;}
.ws64{word-spacing:-22.516382px;}
.ws4e{word-spacing:-22.450928px;}
.ws14{word-spacing:-22.320019px;}
.ws2c{word-spacing:-22.254564px;}
.wsd5{word-spacing:-22.189109px;}
.ws83{word-spacing:-22.123655px;}
.wsb3{word-spacing:-21.992746px;}
.ws0{word-spacing:-21.949747px;}
.wsd6{word-spacing:-21.927291px;}
.ws58{word-spacing:-21.861836px;}
.ws9b{word-spacing:-21.796382px;}
.ws19{word-spacing:-21.730927px;}
.ws9a{word-spacing:-21.665473px;}
.ws1d{word-spacing:-21.600018px;}
.ws6d{word-spacing:-21.534563px;}
.ws5d{word-spacing:-21.469109px;}
.ws97{word-spacing:-21.403654px;}
.wsa{word-spacing:-21.272745px;}
.ws2{word-spacing:-21.207290px;}
.ws4f{word-spacing:-21.141836px;}
.wsad{word-spacing:-21.010927px;}
.ws88{word-spacing:-20.945472px;}
.ws20{word-spacing:-20.880017px;}
.wsda{word-spacing:-20.749108px;}
.ws49{word-spacing:-20.618199px;}
.ws92{word-spacing:-20.552744px;}
.ws5c{word-spacing:-20.487290px;}
.ws5e{word-spacing:-20.356381px;}
.ws22{word-spacing:-20.290926px;}
.ws95{word-spacing:-20.225471px;}
.ws91{word-spacing:-20.160017px;}
.ws1{word-spacing:-20.094562px;}
.wsb1{word-spacing:-20.040086px;}
.wsc{word-spacing:-20.033717px;}
.ws9f{word-spacing:-20.031380px;}
.ws6{word-spacing:-20.029108px;}
.ws57{word-spacing:-20.013005px;}
.ws6e{word-spacing:-19.941274px;}
.wsa1{word-spacing:-19.832744px;}
.wsb9{word-spacing:-19.767289px;}
.ws98{word-spacing:-19.701835px;}
.ws81{word-spacing:-19.636380px;}
.ws7{word-spacing:-19.570925px;}
.ws71{word-spacing:-19.440016px;}
.wsbb{word-spacing:-19.374562px;}
.ws5b{word-spacing:-19.309107px;}
.ws6a{word-spacing:-19.243652px;}
.ws30{word-spacing:-19.178198px;}
.wsb2{word-spacing:-19.112743px;}
.ws67{word-spacing:-19.047289px;}
.ws36{word-spacing:-18.981834px;}
.ws53{word-spacing:-18.916379px;}
.ws52{word-spacing:-18.850925px;}
.ws6b{word-spacing:-18.785470px;}
.wscf{word-spacing:-18.720016px;}
.ws24{word-spacing:-18.654561px;}
.ws46{word-spacing:-18.589106px;}
.ws65{word-spacing:-18.392743px;}
.wsd{word-spacing:-18.327288px;}
.ws9{word-spacing:-18.261833px;}
.ws3{word-spacing:-18.196379px;}
.ws23{word-spacing:-18.130924px;}
.wsae{word-spacing:-18.065470px;}
.wsdb{word-spacing:-18.000015px;}
.wsc2{word-spacing:-17.934560px;}
.wsb{word-spacing:-17.607287px;}
.wsb6{word-spacing:-17.541833px;}
.ws8d{word-spacing:-17.476378px;}
.wse{word-spacing:-17.430682px;}
.ws8c{word-spacing:-17.410924px;}
.ws77{word-spacing:-17.364623px;}
.ws7a{word-spacing:-17.345469px;}
.ws82{word-spacing:-17.280014px;}
.ws99{word-spacing:-17.214560px;}
.ws87{word-spacing:-17.149105px;}
.ws7f{word-spacing:-17.083651px;}
.ws1a{word-spacing:-17.018196px;}
.ws72{word-spacing:-16.952741px;}
.wsde{word-spacing:-16.887287px;}
.ws94{word-spacing:-16.821832px;}
.wsb0{word-spacing:-16.690923px;}
.ws32{word-spacing:-16.625468px;}
.ws29{word-spacing:-16.560014px;}
.wsb4{word-spacing:-16.494559px;}
.wsf{word-spacing:-16.462310px;}
.ws96{word-spacing:-16.429105px;}
.wsb8{word-spacing:-16.363650px;}
.ws7d{word-spacing:-16.298195px;}
.ws5f{word-spacing:-16.167286px;}
.wsba{word-spacing:-16.101832px;}
.ws61{word-spacing:-16.036377px;}
.ws56{word-spacing:-15.905468px;}
.ws8e{word-spacing:-15.851062px;}
.ws48{word-spacing:-15.840013px;}
.ws18{word-spacing:-15.774559px;}
.wscc{word-spacing:-15.709104px;}
.wsd7{word-spacing:-15.643649px;}
.ws6c{word-spacing:-15.578195px;}
.ws62{word-spacing:-15.381831px;}
.ws1b{word-spacing:-15.185467px;}
.ws50{word-spacing:-15.120013px;}
.wsc5{word-spacing:-15.054558px;}
.wscd{word-spacing:-14.923649px;}
.ws55{word-spacing:-14.858194px;}
.wsb7{word-spacing:-14.792740px;}
.wsab{word-spacing:-14.727285px;}
.wsaf{word-spacing:-14.596376px;}
.ws70{word-spacing:-14.530921px;}
.ws3f{word-spacing:-14.465467px;}
.ws86{word-spacing:-14.441062px;}
.wsd2{word-spacing:-14.334557px;}
.wsdd{word-spacing:-14.269103px;}
.wsac{word-spacing:-14.203648px;}
.ws3e{word-spacing:-14.138194px;}
.ws73{word-spacing:-14.007284px;}
.ws2d{word-spacing:-13.941830px;}
.wsb5{word-spacing:-13.810921px;}
.ws68{word-spacing:-13.745466px;}
.ws7e{word-spacing:-13.680011px;}
.ws38{word-spacing:-13.614557px;}
.wsc3{word-spacing:-13.549102px;}
.wsa0{word-spacing:-13.483648px;}
.wscb{word-spacing:-13.352738px;}
.wsd8{word-spacing:-13.287284px;}
.ws8b{word-spacing:-13.025465px;}
.ws42{word-spacing:-12.960011px;}
.ws2b{word-spacing:-12.894556px;}
.wsbf{word-spacing:-12.829102px;}
.ws80{word-spacing:-12.763647px;}
.ws51{word-spacing:-12.501829px;}
.ws43{word-spacing:-12.370919px;}
.ws1c{word-spacing:-12.174556px;}
.ws47{word-spacing:-12.109101px;}
.ws44{word-spacing:-11.520010px;}
.wse0{word-spacing:-11.454555px;}
.ws37{word-spacing:-11.323646px;}
.ws3d{word-spacing:-11.258191px;}
.ws2f{word-spacing:-11.127282px;}
.ws39{word-spacing:-11.061827px;}
.ws45{word-spacing:-10.014554px;}
.ws93{word-spacing:-9.949099px;}
.ws2a{word-spacing:-9.294553px;}
.wsc9{word-spacing:-9.032735px;}
.wsc8{word-spacing:-8.574553px;}
.ws28{word-spacing:-7.854552px;}
.ws4b{word-spacing:-7.461824px;}
.wsc0{word-spacing:-6.087278px;}
.ws13{word-spacing:-5.498186px;}
.ws35{word-spacing:-5.170913px;}
.wsd9{word-spacing:-4.820323px;}
.ws31{word-spacing:-4.254549px;}
.ws60{word-spacing:-4.016947px;}
.ws27{word-spacing:-3.010912px;}
.ws33{word-spacing:-1.374547px;}
.wsbe{word-spacing:-0.140568px;}
.ws74{word-spacing:-0.065455px;}
.ws9c{word-spacing:-0.047821px;}
.ws8{word-spacing:0.000000px;}
.ws41{word-spacing:0.130909px;}
.ws26{word-spacing:0.458182px;}
.wsc1{word-spacing:3.403639px;}
.ws2e{word-spacing:5.236368px;}
.ws3a{word-spacing:10.603645px;}
.ws4c{word-spacing:13.156375px;}
.ws34{word-spacing:13.614557px;}
.wsa5{word-spacing:18.065470px;}
.ws9d{word-spacing:19.489312px;}
.wsa6{word-spacing:21.247312px;}
.ws9e{word-spacing:22.399312px;}
.ws79{word-spacing:23.432747px;}
.ws16{word-spacing:25.330930px;}
.wsa8{word-spacing:26.312749px;}
.ws78{word-spacing:26.593312px;}
.wsaa{word-spacing:26.705477px;}
.ws76{word-spacing:30.174571px;}
.ws75{word-spacing:33.331312px;}
.wsa7{word-spacing:33.447301px;}
.wsa9{word-spacing:33.512755px;}
.wsa4{word-spacing:37.112758px;}
.ws4{word-spacing:462.867577px;}
.ws5{word-spacing:528.256723px;}
.wsc7{word-spacing:2015.479873px;}
.ws10{word-spacing:2160.937933px;}
._2c{margin-left:-219.132344px;}
._e{margin-left:-32.727300px;}
._f{margin-left:-14.530921px;}
._3d{margin-left:-8.624199px;}
._27{margin-left:-7.461824px;}
._30{margin-left:-5.585461px;}
._1a{margin-left:-4.480634px;}
._31{margin-left:-3.469094px;}
._7{margin-left:-2.356366px;}
._8{margin-left:-1.178183px;}
._2f{width:1.946374px;}
._9{width:3.137176px;}
._12{width:7.738014px;}
._2e{width:10.930918px;}
._3c{width:14.290922px;}
._14{width:18.196379px;}
._2d{width:21.600018px;}
._2a{width:22.712746px;}
._25{width:25.330930px;}
._11{width:26.770931px;}
._29{width:32.740315px;}
._20{width:35.110848px;}
._1f{width:43.570541px;}
._1b{width:45.250583px;}
._15{width:50.940935px;}
._13{width:59.498231px;}
._a{width:61.723688px;}
._19{width:63.818235px;}
._17{width:65.511511px;}
._18{width:67.978294px;}
._10{width:71.775359px;}
._1c{width:72.873330px;}
._3e{width:74.120700px;}
._16{width:104.485403px;}
._3a{width:111.796457px;}
._34{width:118.996463px;}
._2{width:122.765476px;}
._4{width:148.292770px;}
._3b{width:162.720136px;}
._3{width:180.823706px;}
._1{width:184.685527px;}
._6{width:188.350985px;}
._32{width:253.646231px;}
._0{width:304.729264px;}
._37{width:319.170797px;}
._39{width:340.967179px;}
._35{width:359.229012px;}
._5{width:380.983873px;}
._38{width:409.978543px;}
._36{width:413.644001px;}
._33{width:493.869124px;}
._28{width:580.304966px;}
._22{width:902.648909px;}
._2b{width:1031.346615px;}
._24{width:1422.685706px;}
._d{width:1550.069600px;}
._26{width:1560.991276px;}
._1d{width:1735.624148px;}
._1e{width:1739.224151px;}
._21{width:1862.736982px;}
._b{width:1971.924497px;}
._c{width:2026.513633px;}
._23{width:2124.751745px;}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,125,255);}
.fs5{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y20{bottom:47.922000px;}
.yd3{bottom:119.055000px;}
.y1a2{bottom:124.204500px;}
.y13c{bottom:124.671000px;}
.yff{bottom:125.721000px;}
.y11f{bottom:129.709500px;}
.yaa{bottom:132.993000px;}
.y81{bottom:135.165000px;}
.y16d{bottom:136.600500px;}
.yd2{bottom:139.380000px;}
.y58{bottom:142.305000px;}
.y1bf{bottom:143.857500px;}
.y1a1{bottom:144.528000px;}
.yfe{bottom:146.044500px;}
.y11e{bottom:150.033000px;}
.ya9{bottom:153.316500px;}
.y80{bottom:155.488500px;}
.y16c{bottom:156.924000px;}
.y13b{bottom:158.085000px;}
.yd1{bottom:159.703500px;}
.y1a0{bottom:164.851500px;}
.yfd{bottom:166.368000px;}
.y11d{bottom:170.356500px;}
.ya8{bottom:173.641500px;}
.y7f{bottom:175.812000px;}
.y16b{bottom:177.249000px;}
.y1be{bottom:177.271500px;}
.y13a{bottom:178.410000px;}
.yd0{bottom:180.027000px;}
.y19f{bottom:185.175000px;}
.yfc{bottom:186.693000px;}
.y11c{bottom:190.681500px;}
.ya7{bottom:193.965000px;}
.y7e{bottom:196.135500px;}
.y16a{bottom:197.572500px;}
.y139{bottom:198.733500px;}
.ycf{bottom:200.350500px;}
.y19e{bottom:205.498500px;}
.y57{bottom:205.710000px;}
.yfb{bottom:207.016500px;}
.y1bd{bottom:210.687000px;}
.y11b{bottom:211.005000px;}
.ya6{bottom:214.288500px;}
.y7d{bottom:216.459000px;}
.y169{bottom:217.896000px;}
.y138{bottom:219.057000px;}
.yce{bottom:220.674000px;}
.y56{bottom:226.033500px;}
.yfa{bottom:227.340000px;}
.y11a{bottom:231.328500px;}
.ye{bottom:232.471500px;}
.ya5{bottom:234.612000px;}
.y7c{bottom:236.784000px;}
.y168{bottom:238.219500px;}
.ycd{bottom:240.999000px;}
.y55{bottom:246.357000px;}
.yf9{bottom:247.663500px;}
.y119{bottom:251.652000px;}
.yd{bottom:252.795000px;}
.y137{bottom:256.954500px;}
.y19d{bottom:258.430500px;}
.y167{bottom:258.543000px;}
.ycc{bottom:261.322500px;}
.y1bc{bottom:263.617500px;}
.y7b{bottom:265.834500px;}
.y54{bottom:266.682000px;}
.yf8{bottom:267.987000px;}
.y118{bottom:271.975500px;}
.y136{bottom:277.279500px;}
.ya4{bottom:280.755000px;}
.y7a{bottom:286.159500px;}
.yf7{bottom:288.312000px;}
.y187{bottom:289.686000px;}
.y166{bottom:291.958500px;}
.ycb{bottom:294.736500px;}
.y53{bottom:295.732500px;}
.y79{bottom:306.483000px;}
.yf6{bottom:308.635500px;}
.y186{bottom:310.009500px;}
.y165{bottom:312.282000px;}
.yca{bottom:315.060000px;}
.y52{bottom:316.057500px;}
.y117{bottom:318.118500px;}
.y135{bottom:323.421000px;}
.y78{bottom:326.806500px;}
.y19c{bottom:328.119000px;}
.yf5{bottom:328.959000px;}
.y185{bottom:330.334500px;}
.y164{bottom:332.605500px;}
.y1bb{bottom:333.307500px;}
.yc9{bottom:335.385000px;}
.y51{bottom:336.381000px;}
.ya3{bottom:342.345000px;}
.y77{bottom:347.130000px;}
.y19b{bottom:348.444000px;}
.y184{bottom:350.658000px;}
.y163{bottom:352.929000px;}
.y1ba{bottom:353.631000px;}
.yc8{bottom:355.708500px;}
.y50{bottom:356.704500px;}
.yf4{bottom:362.374500px;}
.ya2{bottom:362.668500px;}
.y183{bottom:370.981500px;}
.y1b9{bottom:373.954500px;}
.yc7{bottom:376.032000px;}
.y4f{bottom:377.028000px;}
.y116{bottom:379.708500px;}
.yf3{bottom:382.698000px;}
.ya1{bottom:382.993500px;}
.y76{bottom:383.713500px;}
.y134{bottom:384.414000px;}
.y162{bottom:386.344500px;}
.y182{bottom:391.305000px;}
.y1b8{bottom:394.278000px;}
.yc6{bottom:396.355500px;}
.y115{bottom:400.033500px;}
.y19a{bottom:401.374500px;}
.yf2{bottom:403.021500px;}
.ya0{bottom:403.317000px;}
.y75{bottom:404.037000px;}
.y133{bottom:404.737500px;}
.y4e{bottom:406.080000px;}
.y161{bottom:406.668000px;}
.y181{bottom:411.628500px;}
.y1b7{bottom:414.601500px;}
.yc5{bottom:416.679000px;}
.y114{bottom:420.357000px;}
.yf1{bottom:423.345000px;}
.y9f{bottom:423.640500px;}
.y132{bottom:425.061000px;}
.y4d{bottom:426.403500px;}
.y160{bottom:426.991500px;}
.y1b6{bottom:434.926500px;}
.yc4{bottom:437.004000px;}
.y113{bottom:440.680500px;}
.y74{bottom:441.217500px;}
.yf0{bottom:443.668500px;}
.y9e{bottom:443.964000px;}
.y180{bottom:445.044000px;}
.y131{bottom:445.386000px;}
.y4c{bottom:446.727000px;}
.y1b5{bottom:455.250000px;}
.y15f{bottom:460.407000px;}
.yef{bottom:463.993500px;}
.y9d{bottom:464.287500px;}
.y17f{bottom:465.367500px;}
.y4b{bottom:467.050500px;}
.yc3{bottom:470.418000px;}
.y199{bottom:471.064500px;}
.y1b4{bottom:475.573500px;}
.y15e{bottom:480.730500px;}
.yee{bottom:484.317000px;}
.y9c{bottom:484.612500px;}
.y17e{bottom:485.691000px;}
.yc2{bottom:490.741500px;}
.y198{bottom:491.388000px;}
.y130{bottom:491.529000px;}
.y1b3{bottom:495.897000px;}
.y112{bottom:498.579000px;}
.y15d{bottom:501.054000px;}
.y4a{bottom:503.634000px;}
.yc{bottom:504.000000px;}
.yed{bottom:504.640500px;}
.y9b{bottom:504.936000px;}
.y17d{bottom:506.014500px;}
.y73{bottom:507.874500px;}
.yc1{bottom:511.066500px;}
.y197{bottom:511.711500px;}
.y36{bottom:512.157000px;}
.y1b2{bottom:516.220500px;}
.yec{bottom:524.964000px;}
.y72{bottom:528.198000px;}
.yb{bottom:528.388500px;}
.yc0{bottom:531.390000px;}
.y196{bottom:532.035000px;}
.y15c{bottom:534.469500px;}
.y111{bottom:535.162500px;}
.y1b1{bottom:536.545500px;}
.y17c{bottom:539.430000px;}
.y49{bottom:540.814500px;}
.yeb{bottom:545.287500px;}
.y71{bottom:548.521500px;}
.y35{bottom:548.845500px;}
.y9a{bottom:551.079000px;}
.ybf{bottom:551.713500px;}
.y195{bottom:552.358500px;}
.y12f{bottom:552.520500px;}
.ya{bottom:552.777000px;}
.y15b{bottom:554.793000px;}
.y110{bottom:555.486000px;}
.y1b0{bottom:556.869000px;}
.y17b{bottom:559.753500px;}
.yea{bottom:565.611000px;}
.y70{bottom:568.846500px;}
.ybe{bottom:572.037000px;}
.y194{bottom:572.683500px;}
.y9{bottom:577.165500px;}
.y1af{bottom:577.192500px;}
.y48{bottom:577.995000px;}
.y17a{bottom:580.077000px;}
.y34{bottom:585.532500px;}
.ye9{bottom:585.936000px;}
.y15a{bottom:588.207000px;}
.y10f{bottom:592.069500px;}
.ybd{bottom:592.360500px;}
.y193{bottom:593.007000px;}
.y6f{bottom:596.770500px;}
.y1ae{bottom:597.516000px;}
.y179{bottom:600.402000px;}
.y8{bottom:601.554000px;}
.y33{bottom:605.856000px;}
.ye8{bottom:606.259500px;}
.y159{bottom:608.532000px;}
.y10e{bottom:612.393000px;}
.y99{bottom:612.669000px;}
.ybc{bottom:612.684000px;}
.y192{bottom:613.330500px;}
.y6e{bottom:617.094000px;}
.y178{bottom:620.725500px;}
.y7{bottom:625.942500px;}
.y12e{bottom:626.583000px;}
.y158{bottom:628.855500px;}
.y1f{bottom:630.072000px;}
.y1ad{bottom:630.931500px;}
.y98{bottom:632.992500px;}
.ybb{bottom:633.009000px;}
.y191{bottom:633.654000px;}
.y6d{bottom:637.419000px;}
.y47{bottom:638.428500px;}
.ye7{bottom:639.673500px;}
.y32{bottom:642.544500px;}
.y10d{bottom:648.975000px;}
.y157{bottom:649.179000px;}
.y6{bottom:650.331000px;}
.y1e{bottom:650.395500px;}
.y1ac{bottom:651.255000px;}
.y97{bottom:653.316000px;}
.yba{bottom:653.332500px;}
.y177{bottom:654.139500px;}
.y46{bottom:658.753500px;}
.ye6{bottom:659.998500px;}
.y6c{bottom:666.469500px;}
.y10c{bottom:669.300000px;}
.y156{bottom:669.502500px;}
.y1ab{bottom:671.578500px;}
.y96{bottom:673.639500px;}
.yb9{bottom:673.656000px;}
.y176{bottom:674.463000px;}
.y5{bottom:674.719500px;}
.y31{bottom:679.231500px;}
.y190{bottom:679.797000px;}
.y12d{bottom:680.322000px;}
.y6b{bottom:686.794500px;}
.y1aa{bottom:691.902000px;}
.ye5{bottom:693.412500px;}
.y95{bottom:693.964500px;}
.yb8{bottom:693.979500px;}
.y175{bottom:694.788000px;}
.y4{bottom:699.108000px;}
.y12c{bottom:700.645500px;}
.y18f{bottom:700.719000px;}
.y155{bottom:702.918000px;}
.y10b{bottom:705.882000px;}
.y6a{bottom:707.118000px;}
.y8e{bottom:707.818500px;}
.y45{bottom:711.684000px;}
.ye4{bottom:713.736000px;}
.y94{bottom:714.288000px;}
.yb7{bottom:714.303000px;}
.y30{bottom:715.918500px;}
.y3{bottom:719.431500px;}
.y12b{bottom:720.969000px;}
.y154{bottom:723.241500px;}
.y146{bottom:725.094000px;}
.y1d{bottom:726.330000px;}
.y69{bottom:727.441500px;}
.y8d{bottom:728.142000px;}
.y174{bottom:728.202000px;}
.ye3{bottom:734.059500px;}
.y93{bottom:734.611500px;}
.yb6{bottom:734.628000px;}
.y2f{bottom:736.242000px;}
.y1a9{bottom:738.045000px;}
.y12a{bottom:741.292500px;}
.y10a{bottom:742.465500px;}
.y153{bottom:743.565000px;}
.y145{bottom:745.417500px;}
.y1c{bottom:746.653500px;}
.y8c{bottom:748.465500px;}
.y173{bottom:748.525500px;}
.ye2{bottom:754.384500px;}
.y92{bottom:754.935000px;}
.yb5{bottom:754.951500px;}
.y68{bottom:755.367000px;}
.y2e{bottom:756.565500px;}
.y1a8{bottom:758.967000px;}
.y129{bottom:761.617500px;}
.y172{bottom:768.849000px;}
.ye1{bottom:774.708000px;}
.y91{bottom:775.258500px;}
.y67{bottom:775.690500px;}
.y2d{bottom:776.890500px;}
.y152{bottom:776.980500px;}
.y109{bottom:779.047500px;}
.y1b{bottom:780.069000px;}
.y44{bottom:781.372500px;}
.y144{bottom:783.315000px;}
.y8b{bottom:785.049000px;}
.yb4{bottom:788.365500px;}
.y1c7{bottom:788.496000px;}
.ye0{bottom:795.031500px;}
.y90{bottom:795.583500px;}
.y66{bottom:796.014000px;}
.y151{bottom:797.304000px;}
.y1a{bottom:800.392500px;}
.y43{bottom:801.697500px;}
.y171{bottom:802.264500px;}
.y143{bottom:803.638500px;}
.y8a{bottom:805.372500px;}
.yb3{bottom:808.690500px;}
.y1c6{bottom:808.819500px;}
.y1a7{bottom:812.496000px;}
.y2c{bottom:813.577500px;}
.y128{bottom:815.355000px;}
.y108{bottom:815.631000px;}
.y65{bottom:816.337500px;}
.y150{bottom:817.627500px;}
.y19{bottom:820.716000px;}
.y18e{bottom:821.977500px;}
.y42{bottom:822.021000px;}
.y170{bottom:822.588000px;}
.ydf{bottom:828.447000px;}
.yb2{bottom:829.014000px;}
.y127{bottom:835.678500px;}
.y64{bottom:836.661000px;}
.y142{bottom:837.054000px;}
.y14f{bottom:837.951000px;}
.y8f{bottom:841.726500px;}
.y89{bottom:841.956000px;}
.y18d{bottom:842.301000px;}
.y41{bottom:842.344500px;}
.yde{bottom:848.770500px;}
.yb1{bottom:849.337500px;}
.y2b{bottom:850.264500px;}
.y107{bottom:852.213000px;}
.y18{bottom:854.131500px;}
.y126{bottom:856.003500px;}
.y63{bottom:856.986000px;}
.y141{bottom:857.377500px;}
.y1c5{bottom:861.751500px;}
.y88{bottom:862.279500px;}
.y40{bottom:862.668000px;}
.ydd{bottom:869.094000px;}
.yb0{bottom:869.661000px;}
.y2a{bottom:870.588000px;}
.y14e{bottom:871.366500px;}
.y17{bottom:874.455000px;}
.y125{bottom:876.327000px;}
.y18c{bottom:879.481500px;}
.y1a6{bottom:882.184500px;}
.y3f{bottom:882.991500px;}
.y62{bottom:886.036500px;}
.y106{bottom:888.796500px;}
.ydc{bottom:889.417500px;}
.yaf{bottom:889.984500px;}
.y140{bottom:890.793000px;}
.y29{bottom:890.913000px;}
.y14d{bottom:891.690000px;}
.y124{bottom:896.650500px;}
.y87{bottom:898.861500px;}
.y1a5{bottom:902.508000px;}
.y3e{bottom:903.316500px;}
.y61{bottom:906.360000px;}
.y16{bottom:907.869000px;}
.ydb{bottom:909.741000px;}
.yae{bottom:910.309500px;}
.y28{bottom:911.236500px;}
.y14c{bottom:912.013500px;}
.y18b{bottom:916.662000px;}
.y16f{bottom:916.974000px;}
.y86{bottom:919.185000px;}
.y1a4{bottom:922.833000px;}
.y3d{bottom:923.640000px;}
.y13f{bottom:924.207000px;}
.y105{bottom:925.378500px;}
.y60{bottom:926.685000px;}
.y15{bottom:928.194000px;}
.yda{bottom:930.066000px;}
.y1c4{bottom:931.440000px;}
.y27{bottom:931.560000px;}
.y14b{bottom:932.337000px;}
.y16e{bottom:937.297500px;}
.y1a3{bottom:943.156500px;}
.y3c{bottom:943.963500px;}
.y123{bottom:950.389500px;}
.y26{bottom:951.883500px;}
.y18a{bottom:953.842500px;}
.y5f{bottom:954.609000px;}
.y85{bottom:955.768500px;}
.yad{bottom:956.451000px;}
.y13e{bottom:957.622500px;}
.y14{bottom:961.608000px;}
.y104{bottom:961.962000px;}
.yd9{bottom:963.480000px;}
.y3b{bottom:964.287000px;}
.y1c3{bottom:964.855500px;}
.y14a{bottom:965.752500px;}
.y122{bottom:970.713000px;}
.y25{bottom:972.207000px;}
.y5e{bottom:974.934000px;}
.y84{bottom:976.092000px;}
.y13{bottom:981.931500px;}
.yd8{bottom:983.803500px;}
.y3a{bottom:984.610500px;}
.y149{bottom:986.076000px;}
.y2{bottom:987.148500px;}
.y121{bottom:991.036500px;}
.y24{bottom:992.532000px;}
.y5d{bottom:995.257500px;}
.y83{bottom:996.415500px;}
.y1c2{bottom:998.269500px;}
.y103{bottom:998.545500px;}
.yd7{bottom:1004.127000px;}
.y39{bottom:1004.935500px;}
.y148{bottom:1006.399500px;}
.y13d{bottom:1011.360000px;}
.yac{bottom:1017.219000px;}
.y189{bottom:1019.166000px;}
.yd6{bottom:1024.452000px;}
.y38{bottom:1025.259000px;}
.y23{bottom:1029.219000px;}
.y1c1{bottom:1031.685000px;}
.y5c{bottom:1031.839500px;}
.y82{bottom:1033.596000px;}
.y102{bottom:1035.127500px;}
.yab{bottom:1037.542500px;}
.yd5{bottom:1044.775500px;}
.y37{bottom:1045.582500px;}
.y1{bottom:1045.999500px;}
.y1c0{bottom:1052.008500px;}
.y5b{bottom:1052.163000px;}
.y12{bottom:1057.866000px;}
.y147{bottom:1059.331500px;}
.yd4{bottom:1065.099000px;}
.y188{bottom:1065.309000px;}
.y22{bottom:1065.906000px;}
.y101{bottom:1072.308000px;}
.y5a{bottom:1072.488000px;}
.y11{bottom:1078.189500px;}
.y120{bottom:1085.422500px;}
.y10{bottom:1098.514500px;}
.y100{bottom:1106.106000px;}
.y59{bottom:1109.668500px;}
.yf{bottom:1118.838000px;}
.y21{bottom:1171.858500px;}
.h6{height:39.192975px;}
.hb{height:45.425492px;}
.h5{height:47.652739px;}
.h4{height:47.684699px;}
.h8{height:52.222275px;}
.h3{height:52.257300px;}
.ha{height:56.026905px;}
.h9{height:56.032905px;}
.h7{height:62.666555px;}
.h2{height:108.274119px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:106.299000px;}
.x2{left:115.266000px;}
.x9{left:120.240000px;}
.x19{left:122.662500px;}
.xf{left:129.285000px;}
.x6{left:130.845000px;}
.x14{left:133.297500px;}
.xd{left:134.799000px;}
.xa{left:138.433500px;}
.x1c{left:140.194500px;}
.x15{left:147.208500px;}
.x1b{left:156.723000px;}
.xb{left:161.149500px;}
.x16{left:165.925500px;}
.x7{left:168.481500px;}
.x17{left:183.208500px;}
.x1a{left:254.133000px;}
.x11{left:287.287500px;}
.x3{left:303.277500px;}
.x1{left:361.417500px;}
.x1d{left:407.773500px;}
.x10{left:427.125000px;}
.x13{left:437.356500px;}
.x5{left:441.906000px;}
.x12{left:495.553500px;}
.x8{left:578.394000px;}
.xc{left:634.029000px;}
.xe{left:637.660500px;}
.x18{left:702.934500px;}
@media print{
.v2{vertical-align:-9.482667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.001438pt;}
.ls2{letter-spacing:0.002400pt;}
.ls23{letter-spacing:0.003838pt;}
.lsf{letter-spacing:0.008692pt;}
.ls1e{letter-spacing:0.014386pt;}
.ls20{letter-spacing:0.019719pt;}
.ls3e{letter-spacing:0.038767pt;}
.ls3{letter-spacing:0.043623pt;}
.ls10{letter-spacing:0.044100pt;}
.ls12{letter-spacing:0.048956pt;}
.lsc{letter-spacing:2.561432pt;}
.ls24{letter-spacing:2.666010pt;}
.ls25{letter-spacing:2.671343pt;}
.ls5{letter-spacing:4.472690pt;}
.ls4{letter-spacing:7.098010pt;}
.ls35{letter-spacing:10.769441pt;}
.ls34{letter-spacing:11.174774pt;}
.ls9{letter-spacing:11.302774pt;}
.ls1d{letter-spacing:12.524108pt;}
.lse{letter-spacing:13.740108pt;}
.ls13{letter-spacing:13.884108pt;}
.lsa{letter-spacing:13.980108pt;}
.ls3b{letter-spacing:14.289438pt;}
.ls3c{letter-spacing:14.340344pt;}
.ls1a{letter-spacing:14.593441pt;}
.ls18{letter-spacing:14.929441pt;}
.ls2c{letter-spacing:14.942023pt;}
.ls6{letter-spacing:15.290010pt;}
.ls36{letter-spacing:16.150774pt;}
.ls3a{letter-spacing:16.156096pt;}
.ls15{letter-spacing:16.156108pt;}
.ls3f{letter-spacing:17.058852pt;}
.ls7{letter-spacing:17.206774pt;}
.ls16{letter-spacing:17.473441pt;}
.ls2b{letter-spacing:17.562010pt;}
.ls30{letter-spacing:18.030023pt;}
.ls17{letter-spacing:18.524108pt;}
.ls19{letter-spacing:18.684108pt;}
.ls29{letter-spacing:18.831343pt;}
.ls2a{letter-spacing:18.836677pt;}
.ls32{letter-spacing:19.740108pt;}
.ls21{letter-spacing:19.844677pt;}
.ls1f{letter-spacing:19.850010pt;}
.ls26{letter-spacing:19.960185pt;}
.ls1b{letter-spacing:19.965518pt;}
.ls11{letter-spacing:20.493518pt;}
.ls22{letter-spacing:20.548677pt;}
.ls2f{letter-spacing:20.655343pt;}
.lsb{letter-spacing:21.133549pt;}
.ls2d{letter-spacing:21.290010pt;}
.ls3d{letter-spacing:21.793441pt;}
.ls14{letter-spacing:21.830774pt;}
.ls38{letter-spacing:21.974772pt;}
.ls1c{letter-spacing:22.001441pt;}
.ls39{letter-spacing:22.025677pt;}
.ls2e{letter-spacing:22.498882pt;}
.lsd{letter-spacing:23.786010pt;}
.ls37{letter-spacing:23.846763pt;}
.ls31{letter-spacing:25.156677pt;}
.ls27{letter-spacing:27.288185pt;}
.ls28{letter-spacing:27.613518pt;}
.ls1{letter-spacing:29.090933pt;}
.ls33{letter-spacing:29.101549pt;}
.ws12{word-spacing:-52.990906pt;}
.ws11{word-spacing:-39.272760pt;}
.ws15{word-spacing:-37.003425pt;}
.ws54{word-spacing:-33.978210pt;}
.ws25{word-spacing:-32.349118pt;}
.wsbd{word-spacing:-23.214565pt;}
.wsd4{word-spacing:-22.923655pt;}
.wsbc{word-spacing:-22.807292pt;}
.ws4a{word-spacing:-22.749110pt;}
.ws59{word-spacing:-22.690928pt;}
.ws5a{word-spacing:-22.679331pt;}
.ws1f{word-spacing:-22.167291pt;}
.wsca{word-spacing:-22.050927pt;}
.ws6f{word-spacing:-21.992746pt;}
.wsd0{word-spacing:-21.934564pt;}
.ws40{word-spacing:-21.876382pt;}
.ws7c{word-spacing:-21.818200pt;}
.wsc4{word-spacing:-21.643654pt;}
.ws63{word-spacing:-21.527291pt;}
.wsa2{word-spacing:-21.469109pt;}
.wsd1{word-spacing:-21.410927pt;}
.ws1e{word-spacing:-21.352745pt;}
.ws17{word-spacing:-21.347146pt;}
.ws69{word-spacing:-21.294563pt;}
.ws4d{word-spacing:-21.270633pt;}
.ws3b{word-spacing:-21.178199pt;}
.ws89{word-spacing:-20.887290pt;}
.ws8f{word-spacing:-20.829108pt;}
.wsa3{word-spacing:-20.770926pt;}
.ws90{word-spacing:-20.754630pt;}
.wsdf{word-spacing:-20.712745pt;}
.wsd3{word-spacing:-20.654563pt;}
.ws8a{word-spacing:-20.596381pt;}
.ws85{word-spacing:-20.538199pt;}
.ws84{word-spacing:-20.480017pt;}
.wsce{word-spacing:-20.363653pt;}
.wsdc{word-spacing:-20.305471pt;}
.ws21{word-spacing:-20.247290pt;}
.wsc6{word-spacing:-20.189108pt;}
.ws66{word-spacing:-20.172335pt;}
.ws7b{word-spacing:-20.130926pt;}
.ws3c{word-spacing:-20.072744pt;}
.ws64{word-spacing:-20.014562pt;}
.ws4e{word-spacing:-19.956380pt;}
.ws14{word-spacing:-19.840017pt;}
.ws2c{word-spacing:-19.781835pt;}
.wsd5{word-spacing:-19.723653pt;}
.ws83{word-spacing:-19.665471pt;}
.wsb3{word-spacing:-19.549107pt;}
.ws0{word-spacing:-19.510886pt;}
.wsd6{word-spacing:-19.490925pt;}
.ws58{word-spacing:-19.432743pt;}
.ws9b{word-spacing:-19.374562pt;}
.ws19{word-spacing:-19.316380pt;}
.ws9a{word-spacing:-19.258198pt;}
.ws1d{word-spacing:-19.200016pt;}
.ws6d{word-spacing:-19.141834pt;}
.ws5d{word-spacing:-19.083652pt;}
.ws97{word-spacing:-19.025470pt;}
.wsa{word-spacing:-18.909107pt;}
.ws2{word-spacing:-18.850925pt;}
.ws4f{word-spacing:-18.792743pt;}
.wsad{word-spacing:-18.676379pt;}
.ws88{word-spacing:-18.618197pt;}
.ws20{word-spacing:-18.560015pt;}
.wsda{word-spacing:-18.443652pt;}
.ws49{word-spacing:-18.327288pt;}
.ws92{word-spacing:-18.269106pt;}
.ws5c{word-spacing:-18.210924pt;}
.ws5e{word-spacing:-18.094561pt;}
.ws22{word-spacing:-18.036379pt;}
.ws95{word-spacing:-17.978197pt;}
.ws91{word-spacing:-17.920015pt;}
.ws1{word-spacing:-17.861833pt;}
.wsb1{word-spacing:-17.813410pt;}
.wsc{word-spacing:-17.807748pt;}
.ws9f{word-spacing:-17.805671pt;}
.ws6{word-spacing:-17.803651pt;}
.ws57{word-spacing:-17.789338pt;}
.ws6e{word-spacing:-17.725577pt;}
.wsa1{word-spacing:-17.629106pt;}
.wsb9{word-spacing:-17.570924pt;}
.ws98{word-spacing:-17.512742pt;}
.ws81{word-spacing:-17.454560pt;}
.ws7{word-spacing:-17.396378pt;}
.ws71{word-spacing:-17.280014pt;}
.wsbb{word-spacing:-17.221833pt;}
.ws5b{word-spacing:-17.163651pt;}
.ws6a{word-spacing:-17.105469pt;}
.ws30{word-spacing:-17.047287pt;}
.wsb2{word-spacing:-16.989105pt;}
.ws67{word-spacing:-16.930923pt;}
.ws36{word-spacing:-16.872741pt;}
.ws53{word-spacing:-16.814559pt;}
.ws52{word-spacing:-16.756378pt;}
.ws6b{word-spacing:-16.698196pt;}
.wscf{word-spacing:-16.640014pt;}
.ws24{word-spacing:-16.581832pt;}
.ws46{word-spacing:-16.523650pt;}
.ws65{word-spacing:-16.349105pt;}
.wsd{word-spacing:-16.290923pt;}
.ws9{word-spacing:-16.232741pt;}
.ws3{word-spacing:-16.174559pt;}
.ws23{word-spacing:-16.116377pt;}
.wsae{word-spacing:-16.058195pt;}
.wsdb{word-spacing:-16.000013pt;}
.wsc2{word-spacing:-15.941831pt;}
.wsb{word-spacing:-15.650922pt;}
.wsb6{word-spacing:-15.592740pt;}
.ws8d{word-spacing:-15.534558pt;}
.wse{word-spacing:-15.493939pt;}
.ws8c{word-spacing:-15.476377pt;}
.ws77{word-spacing:-15.435220pt;}
.ws7a{word-spacing:-15.418195pt;}
.ws82{word-spacing:-15.360013pt;}
.ws99{word-spacing:-15.301831pt;}
.ws87{word-spacing:-15.243649pt;}
.ws7f{word-spacing:-15.185467pt;}
.ws1a{word-spacing:-15.127285pt;}
.ws72{word-spacing:-15.069103pt;}
.wsde{word-spacing:-15.010922pt;}
.ws94{word-spacing:-14.952740pt;}
.wsb0{word-spacing:-14.836376pt;}
.ws32{word-spacing:-14.778194pt;}
.ws29{word-spacing:-14.720012pt;}
.wsb4{word-spacing:-14.661830pt;}
.wsf{word-spacing:-14.633165pt;}
.ws96{word-spacing:-14.603649pt;}
.wsb8{word-spacing:-14.545467pt;}
.ws7d{word-spacing:-14.487285pt;}
.ws5f{word-spacing:-14.370921pt;}
.wsba{word-spacing:-14.312739pt;}
.ws61{word-spacing:-14.254557pt;}
.ws56{word-spacing:-14.138194pt;}
.ws8e{word-spacing:-14.089833pt;}
.ws48{word-spacing:-14.080012pt;}
.ws18{word-spacing:-14.021830pt;}
.wscc{word-spacing:-13.963648pt;}
.wsd7{word-spacing:-13.905466pt;}
.ws6c{word-spacing:-13.847284pt;}
.ws62{word-spacing:-13.672739pt;}
.ws1b{word-spacing:-13.498193pt;}
.ws50{word-spacing:-13.440011pt;}
.wsc5{word-spacing:-13.381829pt;}
.wscd{word-spacing:-13.265466pt;}
.ws55{word-spacing:-13.207284pt;}
.wsb7{word-spacing:-13.149102pt;}
.wsab{word-spacing:-13.090920pt;}
.wsaf{word-spacing:-12.974556pt;}
.ws70{word-spacing:-12.916374pt;}
.ws3f{word-spacing:-12.858193pt;}
.ws86{word-spacing:-12.836500pt;}
.wsd2{word-spacing:-12.741829pt;}
.wsdd{word-spacing:-12.683647pt;}
.wsac{word-spacing:-12.625465pt;}
.ws3e{word-spacing:-12.567283pt;}
.ws73{word-spacing:-12.450919pt;}
.ws2d{word-spacing:-12.392738pt;}
.wsb5{word-spacing:-12.276374pt;}
.ws68{word-spacing:-12.218192pt;}
.ws7e{word-spacing:-12.160010pt;}
.ws38{word-spacing:-12.101828pt;}
.wsc3{word-spacing:-12.043646pt;}
.wsa0{word-spacing:-11.985465pt;}
.wscb{word-spacing:-11.869101pt;}
.wsd8{word-spacing:-11.810919pt;}
.ws8b{word-spacing:-11.578191pt;}
.ws42{word-spacing:-11.520010pt;}
.ws2b{word-spacing:-11.461828pt;}
.wsbf{word-spacing:-11.403646pt;}
.ws80{word-spacing:-11.345464pt;}
.ws51{word-spacing:-11.112737pt;}
.ws43{word-spacing:-10.996373pt;}
.ws1c{word-spacing:-10.821827pt;}
.ws47{word-spacing:-10.763645pt;}
.ws44{word-spacing:-10.240009pt;}
.wse0{word-spacing:-10.181827pt;}
.ws37{word-spacing:-10.065463pt;}
.ws3d{word-spacing:-10.007281pt;}
.ws2f{word-spacing:-9.890917pt;}
.ws39{word-spacing:-9.832735pt;}
.ws45{word-spacing:-8.901826pt;}
.ws93{word-spacing:-8.843644pt;}
.ws2a{word-spacing:-8.261825pt;}
.wsc9{word-spacing:-8.029098pt;}
.wsc8{word-spacing:-7.621825pt;}
.ws28{word-spacing:-6.981824pt;}
.ws4b{word-spacing:-6.632733pt;}
.wsc0{word-spacing:-5.410914pt;}
.ws13{word-spacing:-4.887277pt;}
.ws35{word-spacing:-4.596367pt;}
.wsd9{word-spacing:-4.284732pt;}
.ws31{word-spacing:-3.781821pt;}
.ws60{word-spacing:-3.570620pt;}
.ws27{word-spacing:-2.676366pt;}
.ws33{word-spacing:-1.221819pt;}
.wsbe{word-spacing:-0.124949pt;}
.ws74{word-spacing:-0.058182pt;}
.ws9c{word-spacing:-0.042507pt;}
.ws8{word-spacing:0.000000pt;}
.ws41{word-spacing:0.116364pt;}
.ws26{word-spacing:0.407273pt;}
.wsc1{word-spacing:3.025457pt;}
.ws2e{word-spacing:4.654549pt;}
.ws3a{word-spacing:9.425462pt;}
.ws4c{word-spacing:11.694555pt;}
.ws34{word-spacing:12.101828pt;}
.wsa5{word-spacing:16.058195pt;}
.ws9d{word-spacing:17.323833pt;}
.wsa6{word-spacing:18.886500pt;}
.ws9e{word-spacing:19.910500pt;}
.ws79{word-spacing:20.829108pt;}
.ws16{word-spacing:22.516382pt;}
.wsa8{word-spacing:23.389110pt;}
.ws78{word-spacing:23.638500pt;}
.wsaa{word-spacing:23.738202pt;}
.ws76{word-spacing:26.821841pt;}
.ws75{word-spacing:29.627833pt;}
.wsa7{word-spacing:29.730934pt;}
.wsa9{word-spacing:29.789116pt;}
.wsa4{word-spacing:32.989118pt;}
.ws4{word-spacing:411.437846pt;}
.ws5{word-spacing:469.561531pt;}
.wsc7{word-spacing:1791.537665pt;}
.ws10{word-spacing:1920.833718pt;}
._2c{margin-left:-194.784306pt;}
._e{margin-left:-29.090933pt;}
._f{margin-left:-12.916374pt;}
._3d{margin-left:-7.665955pt;}
._27{margin-left:-6.632733pt;}
._30{margin-left:-4.964854pt;}
._1a{margin-left:-3.982786pt;}
._31{margin-left:-3.083639pt;}
._7{margin-left:-2.094547pt;}
._8{margin-left:-1.047274pt;}
._2f{width:1.730110pt;}
._9{width:2.788601pt;}
._12{width:6.878235pt;}
._2e{width:9.716372pt;}
._3c{width:12.703042pt;}
._14{width:16.174559pt;}
._2d{width:19.200016pt;}
._2a{width:20.189108pt;}
._25{width:22.516382pt;}
._11{width:23.796383pt;}
._29{width:29.102502pt;}
._20{width:31.209643pt;}
._1f{width:38.729370pt;}
._1b{width:40.222740pt;}
._15{width:45.280831pt;}
._13{width:52.887317pt;}
._a{width:54.865500pt;}
._19{width:56.727320pt;}
._17{width:58.232454pt;}
._18{width:60.425150pt;}
._10{width:63.800319pt;}
._1c{width:64.776293pt;}
._3e{width:65.885067pt;}
._16{width:92.875914pt;}
._3a{width:99.374628pt;}
._34{width:105.774634pt;}
._2{width:109.124867pt;}
._4{width:131.815795pt;}
._3b{width:144.640121pt;}
._3{width:160.732183pt;}
._1{width:164.164913pt;}
._6{width:167.423098pt;}
._32{width:225.463317pt;}
._0{width:270.870457pt;}
._37{width:283.707375pt;}
._39{width:303.081937pt;}
._35{width:319.314677pt;}
._5{width:338.652331pt;}
._38{width:364.425372pt;}
._36{width:367.683556pt;}
._33{width:438.994777pt;}
._28{width:515.826637pt;}
._22{width:802.354586pt;}
._2b{width:916.752547pt;}
._24{width:1264.609516pt;}
._d{width:1377.839644pt;}
._26{width:1387.547801pt;}
._1d{width:1542.777021pt;}
._1e{width:1545.977023pt;}
._21{width:1655.766206pt;}
._b{width:1752.821775pt;}
._c{width:1801.345452pt;}
._23{width:1888.668218pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:42.597333pt;}
.yd3{bottom:105.826667pt;}
.y1a2{bottom:110.404000pt;}
.y13c{bottom:110.818667pt;}
.yff{bottom:111.752000pt;}
.y11f{bottom:115.297333pt;}
.yaa{bottom:118.216000pt;}
.y81{bottom:120.146667pt;}
.y16d{bottom:121.422667pt;}
.yd2{bottom:123.893333pt;}
.y58{bottom:126.493333pt;}
.y1bf{bottom:127.873333pt;}
.y1a1{bottom:128.469333pt;}
.yfe{bottom:129.817333pt;}
.y11e{bottom:133.362667pt;}
.ya9{bottom:136.281333pt;}
.y80{bottom:138.212000pt;}
.y16c{bottom:139.488000pt;}
.y13b{bottom:140.520000pt;}
.yd1{bottom:141.958667pt;}
.y1a0{bottom:146.534667pt;}
.yfd{bottom:147.882667pt;}
.y11d{bottom:151.428000pt;}
.ya8{bottom:154.348000pt;}
.y7f{bottom:156.277333pt;}
.y16b{bottom:157.554667pt;}
.y1be{bottom:157.574667pt;}
.y13a{bottom:158.586667pt;}
.yd0{bottom:160.024000pt;}
.y19f{bottom:164.600000pt;}
.yfc{bottom:165.949333pt;}
.y11c{bottom:169.494667pt;}
.ya7{bottom:172.413333pt;}
.y7e{bottom:174.342667pt;}
.y16a{bottom:175.620000pt;}
.y139{bottom:176.652000pt;}
.ycf{bottom:178.089333pt;}
.y19e{bottom:182.665333pt;}
.y57{bottom:182.853333pt;}
.yfb{bottom:184.014667pt;}
.y1bd{bottom:187.277333pt;}
.y11b{bottom:187.560000pt;}
.ya6{bottom:190.478667pt;}
.y7d{bottom:192.408000pt;}
.y169{bottom:193.685333pt;}
.y138{bottom:194.717333pt;}
.yce{bottom:196.154667pt;}
.y56{bottom:200.918667pt;}
.yfa{bottom:202.080000pt;}
.y11a{bottom:205.625333pt;}
.ye{bottom:206.641333pt;}
.ya5{bottom:208.544000pt;}
.y7c{bottom:210.474667pt;}
.y168{bottom:211.750667pt;}
.ycd{bottom:214.221333pt;}
.y55{bottom:218.984000pt;}
.yf9{bottom:220.145333pt;}
.y119{bottom:223.690667pt;}
.yd{bottom:224.706667pt;}
.y137{bottom:228.404000pt;}
.y19d{bottom:229.716000pt;}
.y167{bottom:229.816000pt;}
.ycc{bottom:232.286667pt;}
.y1bc{bottom:234.326667pt;}
.y7b{bottom:236.297333pt;}
.y54{bottom:237.050667pt;}
.yf8{bottom:238.210667pt;}
.y118{bottom:241.756000pt;}
.y136{bottom:246.470667pt;}
.ya4{bottom:249.560000pt;}
.y7a{bottom:254.364000pt;}
.yf7{bottom:256.277333pt;}
.y187{bottom:257.498667pt;}
.y166{bottom:259.518667pt;}
.ycb{bottom:261.988000pt;}
.y53{bottom:262.873333pt;}
.y79{bottom:272.429333pt;}
.yf6{bottom:274.342667pt;}
.y186{bottom:275.564000pt;}
.y165{bottom:277.584000pt;}
.yca{bottom:280.053333pt;}
.y52{bottom:280.940000pt;}
.y117{bottom:282.772000pt;}
.y135{bottom:287.485333pt;}
.y78{bottom:290.494667pt;}
.y19c{bottom:291.661333pt;}
.yf5{bottom:292.408000pt;}
.y185{bottom:293.630667pt;}
.y164{bottom:295.649333pt;}
.y1bb{bottom:296.273333pt;}
.yc9{bottom:298.120000pt;}
.y51{bottom:299.005333pt;}
.ya3{bottom:304.306667pt;}
.y77{bottom:308.560000pt;}
.y19b{bottom:309.728000pt;}
.y184{bottom:311.696000pt;}
.y163{bottom:313.714667pt;}
.y1ba{bottom:314.338667pt;}
.yc8{bottom:316.185333pt;}
.y50{bottom:317.070667pt;}
.yf4{bottom:322.110667pt;}
.ya2{bottom:322.372000pt;}
.y183{bottom:329.761333pt;}
.y1b9{bottom:332.404000pt;}
.yc7{bottom:334.250667pt;}
.y4f{bottom:335.136000pt;}
.y116{bottom:337.518667pt;}
.yf3{bottom:340.176000pt;}
.ya1{bottom:340.438667pt;}
.y76{bottom:341.078667pt;}
.y134{bottom:341.701333pt;}
.y162{bottom:343.417333pt;}
.y182{bottom:347.826667pt;}
.y1b8{bottom:350.469333pt;}
.yc6{bottom:352.316000pt;}
.y115{bottom:355.585333pt;}
.y19a{bottom:356.777333pt;}
.yf2{bottom:358.241333pt;}
.ya0{bottom:358.504000pt;}
.y75{bottom:359.144000pt;}
.y133{bottom:359.766667pt;}
.y4e{bottom:360.960000pt;}
.y161{bottom:361.482667pt;}
.y181{bottom:365.892000pt;}
.y1b7{bottom:368.534667pt;}
.yc5{bottom:370.381333pt;}
.y114{bottom:373.650667pt;}
.yf1{bottom:376.306667pt;}
.y9f{bottom:376.569333pt;}
.y132{bottom:377.832000pt;}
.y4d{bottom:379.025333pt;}
.y160{bottom:379.548000pt;}
.y1b6{bottom:386.601333pt;}
.yc4{bottom:388.448000pt;}
.y113{bottom:391.716000pt;}
.y74{bottom:392.193333pt;}
.yf0{bottom:394.372000pt;}
.y9e{bottom:394.634667pt;}
.y180{bottom:395.594667pt;}
.y131{bottom:395.898667pt;}
.y4c{bottom:397.090667pt;}
.y1b5{bottom:404.666667pt;}
.y15f{bottom:409.250667pt;}
.yef{bottom:412.438667pt;}
.y9d{bottom:412.700000pt;}
.y17f{bottom:413.660000pt;}
.y4b{bottom:415.156000pt;}
.yc3{bottom:418.149333pt;}
.y199{bottom:418.724000pt;}
.y1b4{bottom:422.732000pt;}
.y15e{bottom:427.316000pt;}
.yee{bottom:430.504000pt;}
.y9c{bottom:430.766667pt;}
.y17e{bottom:431.725333pt;}
.yc2{bottom:436.214667pt;}
.y198{bottom:436.789333pt;}
.y130{bottom:436.914667pt;}
.y1b3{bottom:440.797333pt;}
.y112{bottom:443.181333pt;}
.y15d{bottom:445.381333pt;}
.y4a{bottom:447.674667pt;}
.yc{bottom:448.000000pt;}
.yed{bottom:448.569333pt;}
.y9b{bottom:448.832000pt;}
.y17d{bottom:449.790667pt;}
.y73{bottom:451.444000pt;}
.yc1{bottom:454.281333pt;}
.y197{bottom:454.854667pt;}
.y36{bottom:455.250667pt;}
.y1b2{bottom:458.862667pt;}
.yec{bottom:466.634667pt;}
.y72{bottom:469.509333pt;}
.yb{bottom:469.678667pt;}
.yc0{bottom:472.346667pt;}
.y196{bottom:472.920000pt;}
.y15c{bottom:475.084000pt;}
.y111{bottom:475.700000pt;}
.y1b1{bottom:476.929333pt;}
.y17c{bottom:479.493333pt;}
.y49{bottom:480.724000pt;}
.yeb{bottom:484.700000pt;}
.y71{bottom:487.574667pt;}
.y35{bottom:487.862667pt;}
.y9a{bottom:489.848000pt;}
.ybf{bottom:490.412000pt;}
.y195{bottom:490.985333pt;}
.y12f{bottom:491.129333pt;}
.ya{bottom:491.357333pt;}
.y15b{bottom:493.149333pt;}
.y110{bottom:493.765333pt;}
.y1b0{bottom:494.994667pt;}
.y17b{bottom:497.558667pt;}
.yea{bottom:502.765333pt;}
.y70{bottom:505.641333pt;}
.ybe{bottom:508.477333pt;}
.y194{bottom:509.052000pt;}
.y9{bottom:513.036000pt;}
.y1af{bottom:513.060000pt;}
.y48{bottom:513.773333pt;}
.y17a{bottom:515.624000pt;}
.y34{bottom:520.473333pt;}
.ye9{bottom:520.832000pt;}
.y15a{bottom:522.850667pt;}
.y10f{bottom:526.284000pt;}
.ybd{bottom:526.542667pt;}
.y193{bottom:527.117333pt;}
.y6f{bottom:530.462667pt;}
.y1ae{bottom:531.125333pt;}
.y179{bottom:533.690667pt;}
.y8{bottom:534.714667pt;}
.y33{bottom:538.538667pt;}
.ye8{bottom:538.897333pt;}
.y159{bottom:540.917333pt;}
.y10e{bottom:544.349333pt;}
.y99{bottom:544.594667pt;}
.ybc{bottom:544.608000pt;}
.y192{bottom:545.182667pt;}
.y6e{bottom:548.528000pt;}
.y178{bottom:551.756000pt;}
.y7{bottom:556.393333pt;}
.y12e{bottom:556.962667pt;}
.y158{bottom:558.982667pt;}
.y1f{bottom:560.064000pt;}
.y1ad{bottom:560.828000pt;}
.y98{bottom:562.660000pt;}
.ybb{bottom:562.674667pt;}
.y191{bottom:563.248000pt;}
.y6d{bottom:566.594667pt;}
.y47{bottom:567.492000pt;}
.ye7{bottom:568.598667pt;}
.y32{bottom:571.150667pt;}
.y10d{bottom:576.866667pt;}
.y157{bottom:577.048000pt;}
.y6{bottom:578.072000pt;}
.y1e{bottom:578.129333pt;}
.y1ac{bottom:578.893333pt;}
.y97{bottom:580.725333pt;}
.yba{bottom:580.740000pt;}
.y177{bottom:581.457333pt;}
.y46{bottom:585.558667pt;}
.ye6{bottom:586.665333pt;}
.y6c{bottom:592.417333pt;}
.y10c{bottom:594.933333pt;}
.y156{bottom:595.113333pt;}
.y1ab{bottom:596.958667pt;}
.y96{bottom:598.790667pt;}
.yb9{bottom:598.805333pt;}
.y176{bottom:599.522667pt;}
.y5{bottom:599.750667pt;}
.y31{bottom:603.761333pt;}
.y190{bottom:604.264000pt;}
.y12d{bottom:604.730667pt;}
.y6b{bottom:610.484000pt;}
.y1aa{bottom:615.024000pt;}
.ye5{bottom:616.366667pt;}
.y95{bottom:616.857333pt;}
.yb8{bottom:616.870667pt;}
.y175{bottom:617.589333pt;}
.y4{bottom:621.429333pt;}
.y12c{bottom:622.796000pt;}
.y18f{bottom:622.861333pt;}
.y155{bottom:624.816000pt;}
.y10b{bottom:627.450667pt;}
.y6a{bottom:628.549333pt;}
.y8e{bottom:629.172000pt;}
.y45{bottom:632.608000pt;}
.ye4{bottom:634.432000pt;}
.y94{bottom:634.922667pt;}
.yb7{bottom:634.936000pt;}
.y30{bottom:636.372000pt;}
.y3{bottom:639.494667pt;}
.y12b{bottom:640.861333pt;}
.y154{bottom:642.881333pt;}
.y146{bottom:644.528000pt;}
.y1d{bottom:645.626667pt;}
.y69{bottom:646.614667pt;}
.y8d{bottom:647.237333pt;}
.y174{bottom:647.290667pt;}
.ye3{bottom:652.497333pt;}
.y93{bottom:652.988000pt;}
.yb6{bottom:653.002667pt;}
.y2f{bottom:654.437333pt;}
.y1a9{bottom:656.040000pt;}
.y12a{bottom:658.926667pt;}
.y10a{bottom:659.969333pt;}
.y153{bottom:660.946667pt;}
.y145{bottom:662.593333pt;}
.y1c{bottom:663.692000pt;}
.y8c{bottom:665.302667pt;}
.y173{bottom:665.356000pt;}
.ye2{bottom:670.564000pt;}
.y92{bottom:671.053333pt;}
.yb5{bottom:671.068000pt;}
.y68{bottom:671.437333pt;}
.y2e{bottom:672.502667pt;}
.y1a8{bottom:674.637333pt;}
.y129{bottom:676.993333pt;}
.y172{bottom:683.421333pt;}
.ye1{bottom:688.629333pt;}
.y91{bottom:689.118667pt;}
.y67{bottom:689.502667pt;}
.y2d{bottom:690.569333pt;}
.y152{bottom:690.649333pt;}
.y109{bottom:692.486667pt;}
.y1b{bottom:693.394667pt;}
.y44{bottom:694.553333pt;}
.y144{bottom:696.280000pt;}
.y8b{bottom:697.821333pt;}
.yb4{bottom:700.769333pt;}
.y1c7{bottom:700.885333pt;}
.ye0{bottom:706.694667pt;}
.y90{bottom:707.185333pt;}
.y66{bottom:707.568000pt;}
.y151{bottom:708.714667pt;}
.y1a{bottom:711.460000pt;}
.y43{bottom:712.620000pt;}
.y171{bottom:713.124000pt;}
.y143{bottom:714.345333pt;}
.y8a{bottom:715.886667pt;}
.yb3{bottom:718.836000pt;}
.y1c6{bottom:718.950667pt;}
.y1a7{bottom:722.218667pt;}
.y2c{bottom:723.180000pt;}
.y128{bottom:724.760000pt;}
.y108{bottom:725.005333pt;}
.y65{bottom:725.633333pt;}
.y150{bottom:726.780000pt;}
.y19{bottom:729.525333pt;}
.y18e{bottom:730.646667pt;}
.y42{bottom:730.685333pt;}
.y170{bottom:731.189333pt;}
.ydf{bottom:736.397333pt;}
.yb2{bottom:736.901333pt;}
.y127{bottom:742.825333pt;}
.y64{bottom:743.698667pt;}
.y142{bottom:744.048000pt;}
.y14f{bottom:744.845333pt;}
.y8f{bottom:748.201333pt;}
.y89{bottom:748.405333pt;}
.y18d{bottom:748.712000pt;}
.y41{bottom:748.750667pt;}
.yde{bottom:754.462667pt;}
.yb1{bottom:754.966667pt;}
.y2b{bottom:755.790667pt;}
.y107{bottom:757.522667pt;}
.y18{bottom:759.228000pt;}
.y126{bottom:760.892000pt;}
.y63{bottom:761.765333pt;}
.y141{bottom:762.113333pt;}
.y1c5{bottom:766.001333pt;}
.y88{bottom:766.470667pt;}
.y40{bottom:766.816000pt;}
.ydd{bottom:772.528000pt;}
.yb0{bottom:773.032000pt;}
.y2a{bottom:773.856000pt;}
.y14e{bottom:774.548000pt;}
.y17{bottom:777.293333pt;}
.y125{bottom:778.957333pt;}
.y18c{bottom:781.761333pt;}
.y1a6{bottom:784.164000pt;}
.y3f{bottom:784.881333pt;}
.y62{bottom:787.588000pt;}
.y106{bottom:790.041333pt;}
.ydc{bottom:790.593333pt;}
.yaf{bottom:791.097333pt;}
.y140{bottom:791.816000pt;}
.y29{bottom:791.922667pt;}
.y14d{bottom:792.613333pt;}
.y124{bottom:797.022667pt;}
.y87{bottom:798.988000pt;}
.y1a5{bottom:802.229333pt;}
.y3e{bottom:802.948000pt;}
.y61{bottom:805.653333pt;}
.y16{bottom:806.994667pt;}
.ydb{bottom:808.658667pt;}
.yae{bottom:809.164000pt;}
.y28{bottom:809.988000pt;}
.y14c{bottom:810.678667pt;}
.y18b{bottom:814.810667pt;}
.y16f{bottom:815.088000pt;}
.y86{bottom:817.053333pt;}
.y1a4{bottom:820.296000pt;}
.y3d{bottom:821.013333pt;}
.y13f{bottom:821.517333pt;}
.y105{bottom:822.558667pt;}
.y60{bottom:823.720000pt;}
.y15{bottom:825.061333pt;}
.yda{bottom:826.725333pt;}
.y1c4{bottom:827.946667pt;}
.y27{bottom:828.053333pt;}
.y14b{bottom:828.744000pt;}
.y16e{bottom:833.153333pt;}
.y1a3{bottom:838.361333pt;}
.y3c{bottom:839.078667pt;}
.y123{bottom:844.790667pt;}
.y26{bottom:846.118667pt;}
.y18a{bottom:847.860000pt;}
.y5f{bottom:848.541333pt;}
.y85{bottom:849.572000pt;}
.yad{bottom:850.178667pt;}
.y13e{bottom:851.220000pt;}
.y14{bottom:854.762667pt;}
.y104{bottom:855.077333pt;}
.yd9{bottom:856.426667pt;}
.y3b{bottom:857.144000pt;}
.y1c3{bottom:857.649333pt;}
.y14a{bottom:858.446667pt;}
.y122{bottom:862.856000pt;}
.y25{bottom:864.184000pt;}
.y5e{bottom:866.608000pt;}
.y84{bottom:867.637333pt;}
.y13{bottom:872.828000pt;}
.yd8{bottom:874.492000pt;}
.y3a{bottom:875.209333pt;}
.y149{bottom:876.512000pt;}
.y2{bottom:877.465333pt;}
.y121{bottom:880.921333pt;}
.y24{bottom:882.250667pt;}
.y5d{bottom:884.673333pt;}
.y83{bottom:885.702667pt;}
.y1c2{bottom:887.350667pt;}
.y103{bottom:887.596000pt;}
.yd7{bottom:892.557333pt;}
.y39{bottom:893.276000pt;}
.y148{bottom:894.577333pt;}
.y13d{bottom:898.986667pt;}
.yac{bottom:904.194667pt;}
.y189{bottom:905.925333pt;}
.yd6{bottom:910.624000pt;}
.y38{bottom:911.341333pt;}
.y23{bottom:914.861333pt;}
.y1c1{bottom:917.053333pt;}
.y5c{bottom:917.190667pt;}
.y82{bottom:918.752000pt;}
.y102{bottom:920.113333pt;}
.yab{bottom:922.260000pt;}
.yd5{bottom:928.689333pt;}
.y37{bottom:929.406667pt;}
.y1{bottom:929.777333pt;}
.y1c0{bottom:935.118667pt;}
.y5b{bottom:935.256000pt;}
.y12{bottom:940.325333pt;}
.y147{bottom:941.628000pt;}
.yd4{bottom:946.754667pt;}
.y188{bottom:946.941333pt;}
.y22{bottom:947.472000pt;}
.y101{bottom:953.162667pt;}
.y5a{bottom:953.322667pt;}
.y11{bottom:958.390667pt;}
.y120{bottom:964.820000pt;}
.y10{bottom:976.457333pt;}
.y100{bottom:983.205333pt;}
.y59{bottom:986.372000pt;}
.yf{bottom:994.522667pt;}
.y21{bottom:1041.652000pt;}
.h6{height:34.838200pt;}
.hb{height:40.378215pt;}
.h5{height:42.357990pt;}
.h4{height:42.386399pt;}
.h8{height:46.419800pt;}
.h3{height:46.450933pt;}
.ha{height:49.801693pt;}
.h9{height:49.807027pt;}
.h7{height:55.703605pt;}
.h2{height:96.243662pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:94.488000pt;}
.x2{left:102.458667pt;}
.x9{left:106.880000pt;}
.x19{left:109.033333pt;}
.xf{left:114.920000pt;}
.x6{left:116.306667pt;}
.x14{left:118.486667pt;}
.xd{left:119.821333pt;}
.xa{left:123.052000pt;}
.x1c{left:124.617333pt;}
.x15{left:130.852000pt;}
.x1b{left:139.309333pt;}
.xb{left:143.244000pt;}
.x16{left:147.489333pt;}
.x7{left:149.761333pt;}
.x17{left:162.852000pt;}
.x1a{left:225.896000pt;}
.x11{left:255.366667pt;}
.x3{left:269.580000pt;}
.x1{left:321.260000pt;}
.x1d{left:362.465333pt;}
.x10{left:379.666667pt;}
.x13{left:388.761333pt;}
.x5{left:392.805333pt;}
.x12{left:440.492000pt;}
.x8{left:514.128000pt;}
.xc{left:563.581333pt;}
.xe{left:566.809333pt;}
.x18{left:624.830667pt;}
}




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