
    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_0d8bd6bf6873d5f0679e4a2e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_cead23e73021b51e80f866bd.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_6e6ec11cbb262a5ac88be354.woff')format("woff");}.ff3{font-family:ff3;line-height:1.091309;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_bce9973f77d09fd0d1ff521b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_b5ce39d7d00b8eb6760a0e1c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_8660829e5da95ffe2e0590f1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.692383;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_e8e0b5b2c4d0cd9efe599916.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cefa2be5e9a7e18053e8d79c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_231987bf382b324ca3f0bbad.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_cefa2be5e9a7e18053e8d79c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_231987bf382b324ca3f0bbad.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c707d4a5f781c56c9b583559.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c707d4a5f781c56c9b583559.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c707d4a5f781c56c9b583559.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8b4a7e955418acb287cbe470.woff')format("woff");}.fff{font-family:fff;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_03f2c1ae2c44a8af7e9043b9.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_21d396d914a51769bf92c3c6.woff')format("woff");}.ff11{font-family:ff11;line-height:0.848145;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:ff12;src:url('chunks/assets/font_0a5bfb2ba101a49897ddc561.woff')format("woff");}.ff12{font-family:ff12;line-height:0.910645;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:ff13;src:url('chunks/assets/font_cefa2be5e9a7e18053e8d79c.woff')format("woff");}.ff13{font-family:ff13;line-height:0.910645;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:ff14;src:url('chunks/assets/font_1c301dccbb0ec338fca78ad7.woff')format("woff");}.ff14{font-family:ff14;line-height:0.893066;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ve{vertical-align:-36.742992px;}
.v13{vertical-align:-26.220382px;}
.vb{vertical-align:-16.826620px;}
.v6{vertical-align:-13.445174px;}
.v8{vertical-align:-11.649701px;}
.v2{vertical-align:-8.640600px;}
.vd{vertical-align:-6.471777px;}
.va{vertical-align:-4.885148px;}
.vf{vertical-align:-3.883066px;}
.v9{vertical-align:-1.085635px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.085635px;}
.vc{vertical-align:3.089752px;}
.v7{vertical-align:7.641202px;}
.v1{vertical-align:9.720000px;}
.v4{vertical-align:11.273904px;}
.v10{vertical-align:14.279663px;}
.v5{vertical-align:15.992242px;}
.v11{vertical-align:17.285908px;}
.v12{vertical-align:24.633798px;}
.ls1d{letter-spacing:-3.048130px;}
.ls34{letter-spacing:-2.220000px;}
.ls20{letter-spacing:-1.998000px;}
.ls15{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.660000px;}
.ls2b{letter-spacing:-0.648000px;}
.ls21{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.480000px;}
.ls30{letter-spacing:-0.420000px;}
.ls5{letter-spacing:-0.336000px;}
.ls8{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.240000px;}
.ls32{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.144000px;}
.ls31{letter-spacing:-0.120000px;}
.ls7{letter-spacing:-0.096000px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000600px;}
.ls2d{letter-spacing:0.003600px;}
.ls0{letter-spacing:0.007200px;}
.ls27{letter-spacing:0.007800px;}
.ls1b{letter-spacing:0.008400px;}
.ls35{letter-spacing:0.009000px;}
.ls19{letter-spacing:0.009600px;}
.ls28{letter-spacing:0.010200px;}
.ls2c{letter-spacing:0.017400px;}
.ls22{letter-spacing:0.018000px;}
.ls1a{letter-spacing:0.028200px;}
.ls2f{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.480000px;}
.lse{letter-spacing:0.600000px;}
.ls1e{letter-spacing:0.660000px;}
.ls11{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.780000px;}
.ls17{letter-spacing:0.900000px;}
.lsd{letter-spacing:0.960000px;}
.ls10{letter-spacing:1.020000px;}
.ls1f{letter-spacing:1.200000px;}
.ls23{letter-spacing:1.260000px;}
.ls24{letter-spacing:1.320000px;}
.ls2e{letter-spacing:1.500000px;}
.ls26{letter-spacing:1.560000px;}
.lsc{letter-spacing:1.620000px;}
.ls13{letter-spacing:1.680000px;}
.ls2{letter-spacing:1.728000px;}
.ls25{letter-spacing:2.040000px;}
.ls14{letter-spacing:2.280000px;}
.ls18{letter-spacing:2.520000px;}
.ls1{letter-spacing:3.397200px;}
.ls2a{letter-spacing:4.560000px;}
.ls29{letter-spacing:7.374000px;}
.ls33{letter-spacing:27.420000px;}
.lsa{letter-spacing:414.279600px;}
.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;}
}
.ws32{word-spacing:-15.480000px;}
.ws21{word-spacing:-15.000000px;}
.ws0{word-spacing:-13.500000px;}
.wsbc{word-spacing:-12.780000px;}
.ws20{word-spacing:-12.750000px;}
.ws5{word-spacing:-12.000000px;}
.ws6{word-spacing:-11.520000px;}
.ws1{word-spacing:-11.475000px;}
.ws4{word-spacing:-10.200000px;}
.ws3{word-spacing:-9.000000px;}
.ws2{word-spacing:-8.775000px;}
.ws7{word-spacing:-7.800000px;}
.wscb{word-spacing:-7.500000px;}
.ws24{word-spacing:-4.680000px;}
.ws47{word-spacing:-3.420000px;}
.ws25{word-spacing:-2.880000px;}
.ws4a{word-spacing:-2.820000px;}
.ws31{word-spacing:-2.760000px;}
.ws5b{word-spacing:-2.520000px;}
.wsbf{word-spacing:-2.460000px;}
.ws85{word-spacing:-2.322000px;}
.ws42{word-spacing:-2.280000px;}
.wsc4{word-spacing:-2.160000px;}
.ws77{word-spacing:-2.100000px;}
.wsae{word-spacing:-2.040000px;}
.ws10{word-spacing:-1.872000px;}
.ws7b{word-spacing:-1.860000px;}
.ws7e{word-spacing:-1.800000px;}
.ws8b{word-spacing:-1.740000px;}
.ws39{word-spacing:-1.680000px;}
.ws7a{word-spacing:-1.560000px;}
.ws4f{word-spacing:-1.500000px;}
.wsa6{word-spacing:-1.458000px;}
.ws3c{word-spacing:-1.380000px;}
.ws22{word-spacing:-1.320000px;}
.ws78{word-spacing:-1.260000px;}
.ws33{word-spacing:-1.140000px;}
.ws1a{word-spacing:-1.104000px;}
.ws92{word-spacing:-1.026000px;}
.ws2f{word-spacing:-0.960000px;}
.ws79{word-spacing:-0.900000px;}
.wsab{word-spacing:-0.864000px;}
.ws64{word-spacing:-0.840000px;}
.ws86{word-spacing:-0.810000px;}
.ws3e{word-spacing:-0.780000px;}
.ws3d{word-spacing:-0.720000px;}
.ws76{word-spacing:-0.660000px;}
.ws41{word-spacing:-0.600000px;}
.ws2d{word-spacing:-0.480000px;}
.ws2e{word-spacing:-0.360000px;}
.wsc2{word-spacing:-0.300000px;}
.ws56{word-spacing:-0.180000px;}
.ws90{word-spacing:-0.162000px;}
.ws2a{word-spacing:-0.060000px;}
.ws8{word-spacing:0.000000px;}
.ws19{word-spacing:0.096000px;}
.ws60{word-spacing:0.120000px;}
.ws17{word-spacing:0.144000px;}
.ws91{word-spacing:0.162000px;}
.ws73{word-spacing:0.180000px;}
.ws4e{word-spacing:0.240000px;}
.ws9c{word-spacing:0.300000px;}
.wsca{word-spacing:0.360000px;}
.wsad{word-spacing:0.420000px;}
.ws35{word-spacing:0.600000px;}
.ws88{word-spacing:0.648000px;}
.wsa5{word-spacing:0.660000px;}
.wsa8{word-spacing:0.702000px;}
.ws4d{word-spacing:0.720000px;}
.ws15{word-spacing:0.768000px;}
.ws9d{word-spacing:0.780000px;}
.ws4c{word-spacing:0.840000px;}
.ws80{word-spacing:0.900000px;}
.wsa7{word-spacing:0.918000px;}
.ws6b{word-spacing:0.960000px;}
.wsa0{word-spacing:1.020000px;}
.ws1b{word-spacing:1.056000px;}
.ws59{word-spacing:1.080000px;}
.wsac{word-spacing:1.140000px;}
.ws13{word-spacing:1.200000px;}
.ws8a{word-spacing:1.320000px;}
.ws82{word-spacing:1.380000px;}
.ws57{word-spacing:1.440000px;}
.wsa3{word-spacing:1.500000px;}
.ws5a{word-spacing:1.560000px;}
.wsc{word-spacing:1.584000px;}
.ws5f{word-spacing:1.620000px;}
.ws48{word-spacing:1.740000px;}
.ws1c{word-spacing:1.872000px;}
.wscd{word-spacing:1.920000px;}
.ws9f{word-spacing:1.980000px;}
.ws72{word-spacing:1.998000px;}
.ws51{word-spacing:2.160000px;}
.wsd{word-spacing:2.208000px;}
.ws65{word-spacing:2.220000px;}
.ws8c{word-spacing:2.280000px;}
.ws38{word-spacing:2.400000px;}
.wsa4{word-spacing:2.460000px;}
.ws50{word-spacing:2.520000px;}
.ws37{word-spacing:2.580000px;}
.ws14{word-spacing:2.592000px;}
.wsb{word-spacing:2.640000px;}
.ws6c{word-spacing:2.700000px;}
.wsa{word-spacing:2.736000px;}
.ws28{word-spacing:2.760000px;}
.ws7f{word-spacing:2.820000px;}
.ws3b{word-spacing:2.880000px;}
.wsb0{word-spacing:2.940000px;}
.ws81{word-spacing:2.970000px;}
.wsaf{word-spacing:3.000000px;}
.ws71{word-spacing:3.048130px;}
.ws55{word-spacing:3.060000px;}
.ws18{word-spacing:3.120000px;}
.ws69{word-spacing:3.180000px;}
.wse{word-spacing:3.408000px;}
.ws3f{word-spacing:3.420000px;}
.ws3a{word-spacing:3.480000px;}
.wsc8{word-spacing:3.540000px;}
.ws36{word-spacing:3.720000px;}
.ws74{word-spacing:3.780000px;}
.ws9{word-spacing:3.792000px;}
.ws87{word-spacing:3.834000px;}
.ws1e{word-spacing:3.888000px;}
.ws16{word-spacing:3.936000px;}
.ws27{word-spacing:3.960000px;}
.wsa1{word-spacing:4.020000px;}
.ws23{word-spacing:4.260000px;}
.ws46{word-spacing:4.320000px;}
.ws45{word-spacing:4.380000px;}
.ws61{word-spacing:4.440000px;}
.ws84{word-spacing:4.500000px;}
.wsc5{word-spacing:4.620000px;}
.ws2b{word-spacing:4.800000px;}
.ws40{word-spacing:4.860000px;}
.wsa9{word-spacing:4.914000px;}
.ws58{word-spacing:4.920000px;}
.ws2c{word-spacing:4.980000px;}
.ws29{word-spacing:5.160000px;}
.wsaa{word-spacing:5.238000px;}
.ws6d{word-spacing:5.280000px;}
.ws7c{word-spacing:5.400000px;}
.ws26{word-spacing:5.460000px;}
.ws5e{word-spacing:5.508000px;}
.ws43{word-spacing:5.520000px;}
.ws6a{word-spacing:5.580000px;}
.ws1d{word-spacing:5.760000px;}
.ws8d{word-spacing:5.940000px;}
.ws5c{word-spacing:6.180000px;}
.ws62{word-spacing:6.300000px;}
.ws9e{word-spacing:6.360000px;}
.ws52{word-spacing:6.600000px;}
.ws9b{word-spacing:6.660000px;}
.wsb6{word-spacing:6.720000px;}
.ws4b{word-spacing:6.780000px;}
.ws53{word-spacing:6.840000px;}
.wsc6{word-spacing:7.020000px;}
.wsb9{word-spacing:7.080000px;}
.ws54{word-spacing:7.200000px;}
.ws83{word-spacing:7.440000px;}
.ws63{word-spacing:7.500000px;}
.wsf{word-spacing:7.584000px;}
.wsb3{word-spacing:7.620000px;}
.wscc{word-spacing:7.680000px;}
.ws7d{word-spacing:7.740000px;}
.ws44{word-spacing:7.860000px;}
.wsa2{word-spacing:7.920000px;}
.ws6f{word-spacing:8.040000px;}
.wsc3{word-spacing:8.220000px;}
.wsbe{word-spacing:8.460000px;}
.ws70{word-spacing:8.580000px;}
.ws34{word-spacing:8.700000px;}
.wsc7{word-spacing:9.240000px;}
.ws49{word-spacing:9.540000px;}
.ws5d{word-spacing:10.098000px;}
.wsb8{word-spacing:10.440000px;}
.ws11{word-spacing:10.896000px;}
.wsb1{word-spacing:11.100000px;}
.ws12{word-spacing:11.808000px;}
.wsb2{word-spacing:12.180000px;}
.wsbd{word-spacing:12.780000px;}
.wsb7{word-spacing:12.840000px;}
.ws75{word-spacing:13.260000px;}
.ws89{word-spacing:13.338000px;}
.wsc9{word-spacing:14.100000px;}
.ws30{word-spacing:16.140000px;}
.wsb4{word-spacing:19.620000px;}
.wsba{word-spacing:27.420000px;}
.wsb5{word-spacing:28.260000px;}
.wsc1{word-spacing:28.680000px;}
.wsc0{word-spacing:29.520000px;}
.wsbb{word-spacing:33.660000px;}
.ws8f{word-spacing:39.204000px;}
.ws1f{word-spacing:72.000000px;}
.ws8e{word-spacing:225.072000px;}
.ws95{word-spacing:256.683000px;}
.ws66{word-spacing:265.518000px;}
.ws98{word-spacing:312.069000px;}
.ws94{word-spacing:321.810000px;}
.ws99{word-spacing:340.323000px;}
.ws96{word-spacing:353.736000px;}
.ws6e{word-spacing:373.779600px;}
.ws97{word-spacing:385.662000px;}
.ws93{word-spacing:406.992000px;}
.ws9a{word-spacing:431.715000px;}
.ws67{word-spacing:491.724000px;}
.ws68{word-spacing:651.942000px;}
._0{margin-left:-1700.787600px;}
._34{margin-left:-1143.216988px;}
._52{margin-left:-14.100000px;}
._a{margin-left:-7.248000px;}
._6{margin-left:-6.144000px;}
._2{margin-left:-5.081130px;}
._b{margin-left:-3.120000px;}
._1{margin-left:-1.776000px;}
._7{width:1.012800px;}
._3{width:2.688000px;}
._4{width:4.363200px;}
._5{width:6.000000px;}
._9{width:7.118400px;}
._8{width:8.841600px;}
._f{width:10.758000px;}
._38{width:12.294600px;}
._18{width:13.608000px;}
._10{width:16.158000px;}
._53{width:17.886000px;}
._54{width:19.536000px;}
._57{width:25.470000px;}
._56{width:27.420000px;}
._59{width:28.680000px;}
._58{width:33.660000px;}
._55{width:48.708000px;}
._d{width:56.400000px;}
._c{width:66.240000px;}
._e{width:72.000000px;}
._50{width:145.902000px;}
._4d{width:147.747000px;}
._39{width:151.578000px;}
._4c{width:153.960000px;}
._4b{width:169.677000px;}
._42{width:171.411000px;}
._44{width:177.071081px;}
._51{width:180.132000px;}
._40{width:189.414000px;}
._47{width:195.177000px;}
._46{width:196.911000px;}
._43{width:205.632000px;}
._22{width:213.744869px;}
._45{width:214.914000px;}
._49{width:225.369000px;}
._4a{width:228.174000px;}
._4f{width:231.132000px;}
._32{width:235.948463px;}
._21{width:237.545333px;}
._37{width:240.485094px;}
._20{width:244.727227px;}
._11{width:247.470000px;}
._3d{width:249.180710px;}
._3f{width:250.869000px;}
._31{width:253.818919px;}
._2a{width:258.119519px;}
._30{width:263.672721px;}
._29{width:266.344939px;}
._3c{width:267.677201px;}
._36{width:271.138787px;}
._41{width:273.411000px;}
._48{width:285.090000px;}
._4e{width:298.911000px;}
._1b{width:306.650189px;}
._1a{width:311.994854px;}
._1c{width:314.488526px;}
._3a{width:318.782628px;}
._19{width:322.099613px;}
._23{width:323.421836px;}
._1d{width:326.692685px;}
._3b{width:329.493607px;}
._2b{width:330.645175px;}
._1e{width:333.081230px;}
._2e{width:335.864350px;}
._1f{width:339.093979px;}
._2d{width:341.584565px;}
._35{width:343.203084px;}
._26{width:344.674317px;}
._2f{width:346.511467px;}
._27{width:348.014589px;}
._25{width:349.183684px;}
._2c{width:351.229601px;}
._24{width:354.736886px;}
._33{width:359.319433px;}
._28{width:366.302578px;}
._3e{width:397.605411px;}
._15{width:418.110000px;}
._14{width:478.224000px;}
._17{width:518.724000px;}
._13{width:555.930000px;}
._16{width:658.032000px;}
._12{width:680.454000px;}
.fc4{color:rgb(46,45,45);}
.fc3{color:rgb(33,31,30);}
.fc2{color:rgb(16,15,13);}
.fc1{color:rgb(16,80,140);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:31.200000px;}
.fs4{font-size:35.100000px;}
.fs5{font-size:36.000000px;}
.fs6{font-size:40.800000px;}
.fsd{font-size:41.752200px;}
.fse{font-size:41.752800px;}
.fsc{font-size:41.753400px;}
.fsb{font-size:41.755200px;}
.fs1{font-size:42.000000px;}
.fs3{font-size:45.900000px;}
.fs2{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:47.822850px;}
.yf3{bottom:71.125950px;}
.y35{bottom:86.823000px;}
.y101{bottom:90.621450px;}
.yf2{bottom:90.625950px;}
.y34{bottom:103.323000px;}
.y5d{bottom:110.125950px;}
.y137{bottom:110.160450px;}
.yeb{bottom:113.154450px;}
.y100{bottom:113.178450px;}
.y33{bottom:121.983000px;}
.y5c{bottom:129.625950px;}
.y136{bottom:129.654450px;}
.yea{bottom:132.648450px;}
.yff{bottom:132.672450px;}
.y32{bottom:136.323000px;}
.y7f{bottom:141.273900px;}
.y5b{bottom:149.125950px;}
.y135{bottom:149.148450px;}
.ye9{bottom:152.142450px;}
.yfe{bottom:152.166450px;}
.y31{bottom:154.983150px;}
.y80{bottom:159.447851px;}
.y130{bottom:161.728350px;}
.y5a{bottom:168.625950px;}
.y134{bottom:168.642450px;}
.y30{bottom:169.323000px;}
.ye8{bottom:171.636450px;}
.yfd{bottom:171.660450px;}
.y81{bottom:177.621802px;}
.y12f{bottom:184.291350px;}
.y2f{bottom:185.823000px;}
.y59{bottom:188.125950px;}
.y6d{bottom:188.151450px;}
.ye7{bottom:191.130450px;}
.yfc{bottom:191.154450px;}
.y82{bottom:195.795752px;}
.y2e{bottom:202.323000px;}
.y12e{bottom:203.786100px;}
.y58{bottom:207.625950px;}
.y133{bottom:207.643950px;}
.ye6{bottom:210.624450px;}
.yfb{bottom:210.648450px;}
.y6c{bottom:210.655950px;}
.y83{bottom:213.969703px;}
.y2d{bottom:218.823000px;}
.y12d{bottom:223.280850px;}
.y57{bottom:227.125950px;}
.y132{bottom:227.137950px;}
.ye5{bottom:230.131950px;}
.yfa{bottom:230.142450px;}
.y6b{bottom:230.149950px;}
.y84{bottom:232.143654px;}
.y2c{bottom:235.323000px;}
.y12c{bottom:242.775600px;}
.y7e{bottom:243.438000px;}
.y56{bottom:246.625950px;}
.y131{bottom:246.631950px;}
.y8a{bottom:247.991700px;}
.y88{bottom:248.465100px;}
.ye4{bottom:249.625950px;}
.yf9{bottom:249.636450px;}
.y6a{bottom:249.643950px;}
.y85{bottom:250.317605px;}
.y12b{bottom:262.270350px;}
.y8b{bottom:262.993050px;}
.y89{bottom:263.150400px;}
.y87{bottom:264.810450px;}
.y55{bottom:266.125950px;}
.yf8{bottom:269.130450px;}
.y69{bottom:269.137950px;}
.y2b{bottom:281.002500px;}
.y12a{bottom:281.765100px;}
.y86{bottom:284.427150px;}
.y54{bottom:285.625950px;}
.yf7{bottom:288.624450px;}
.ye3{bottom:288.629925px;}
.y68{bottom:288.631950px;}
.y79{bottom:293.842348px;}
.y2a{bottom:297.502500px;}
.y78{bottom:298.905166px;}
.y77{bottom:299.082625px;}
.y75{bottom:299.447983px;}
.y129{bottom:301.259850px;}
.y76{bottom:303.174635px;}
.y53{bottom:305.125950px;}
.y67{bottom:308.125950px;}
.ye2{bottom:308.131950px;}
.y7a{bottom:312.016298px;}
.y29{bottom:314.002500px;}
.y128{bottom:320.754600px;}
.y71{bottom:322.267200px;}
.y52{bottom:324.625950px;}
.ye1{bottom:327.625950px;}
.y7b{bottom:330.190249px;}
.y28{bottom:330.502500px;}
.y127{bottom:340.249350px;}
.y72{bottom:343.531036px;}
.y51{bottom:344.125950px;}
.y27{bottom:347.002500px;}
.y66{bottom:347.131950px;}
.y7c{bottom:348.364200px;}
.y126{bottom:359.744100px;}
.y26{bottom:363.502500px;}
.y50{bottom:363.625950px;}
.y7d{bottom:366.538151px;}
.y65{bottom:366.625950px;}
.yf6{bottom:366.629925px;}
.ycf{bottom:377.205300px;}
.ycd{bottom:377.678550px;}
.y125{bottom:379.238850px;}
.y25{bottom:380.002500px;}
.y4f{bottom:383.125950px;}
.yf5{bottom:386.131950px;}
.yd0{bottom:392.205600px;}
.yce{bottom:392.362950px;}
.ycc{bottom:394.022850px;}
.y24{bottom:396.502500px;}
.y124{bottom:398.733600px;}
.y4e{bottom:402.625950px;}
.yf4{bottom:405.625950px;}
.y23{bottom:413.002500px;}
.y123{bottom:418.228350px;}
.y4d{bottom:422.125950px;}
.y64{bottom:422.149950px;}
.y22{bottom:429.502500px;}
.ydc{bottom:434.834638px;}
.y92{bottom:438.041850px;}
.y90{bottom:438.515100px;}
.y4c{bottom:441.625950px;}
.y63{bottom:441.643950px;}
.yae{bottom:444.411450px;}
.yac{bottom:444.884700px;}
.y21{bottom:446.002500px;}
.yd6{bottom:452.099172px;}
.yd5{bottom:452.182677px;}
.y93{bottom:453.042600px;}
.y91{bottom:453.199950px;}
.y8f{bottom:454.860000px;}
.y122{bottom:457.228350px;}
.y74{bottom:459.380838px;}
.yaf{bottom:459.412050px;}
.yad{bottom:459.569550px;}
.y4b{bottom:461.125950px;}
.y62{bottom:461.137950px;}
.yab{bottom:461.229450px;}
.yd7{bottom:462.965182px;}
.y121{bottom:476.734350px;}
.yd1{bottom:477.056550px;}
.y11e{bottom:478.223468px;}
.y20{bottom:479.002500px;}
.y4a{bottom:480.625950px;}
.y61{bottom:480.631950px;}
.yaa{bottom:487.511806px;}
.y73{bottom:490.645044px;}
.yc8{bottom:492.197920px;}
.yd2{bottom:492.452674px;}
.y11d{bottom:493.264915px;}
.y1f{bottom:495.502500px;}
.y120{bottom:496.228350px;}
.y49{bottom:500.125950px;}
.y9f{bottom:500.173524px;}
.yd8{bottom:502.441888px;}
.ybd{bottom:505.277172px;}
.y9d{bottom:505.559713px;}
.y9c{bottom:505.674535px;}
.y9e{bottom:505.778918px;}
.y98{bottom:506.781000px;}
.y11c{bottom:507.982777px;}
.y9a{bottom:510.100395px;}
.yba{bottom:510.966073px;}
.y1e{bottom:512.002500px;}
.yb9{bottom:512.156045px;}
.ybc{bottom:512.270867px;}
.yb6{bottom:513.565222px;}
.yb7{bottom:513.888811px;}
.yb4{bottom:514.744756px;}
.y99{bottom:517.177596px;}
.y11f{bottom:517.228350px;}
.y48{bottom:519.625950px;}
.ybb{bottom:521.028642px;}
.ya0{bottom:522.313265px;}
.y70{bottom:522.629925px;}
.ybe{bottom:526.905434px;}
.y1d{bottom:528.502500px;}
.y11b{bottom:528.827862px;}
.y94{bottom:534.108600px;}
.yb0{bottom:537.239400px;}
.yb5{bottom:538.105783px;}
.y47{bottom:539.125950px;}
.y111{bottom:539.610523px;}
.yd9{bottom:541.918593px;}
.y6f{bottom:542.131950px;}
.ya1{bottom:544.453005px;}
.y10c{bottom:544.620859px;}
.y10d{bottom:544.725241px;}
.y110{bottom:544.746117px;}
.y10a{bottom:544.829623px;}
.y1c{bottom:545.002500px;}
.y10e{bottom:546.103083px;}
.ybf{bottom:548.533695px;}
.y102{bottom:553.253250px;}
.y104{bottom:554.203126px;}
.y106{bottom:555.466148px;}
.y109{bottom:555.988058px;}
.y46{bottom:558.625950px;}
.y142{bottom:558.684450px;}
.y10f{bottom:560.633057px;}
.y112{bottom:560.653934px;}
.yb1{bottom:561.132783px;}
.y1b{bottom:561.502500px;}
.y6e{bottom:561.625950px;}
.y95{bottom:562.333898px;}
.y108{bottom:564.829214px;}
.ya2{bottom:566.592745px;}
.yc0{bottom:570.161956px;}
.y1a{bottom:578.002500px;}
.y45{bottom:578.125950px;}
.ye0{bottom:578.149950px;}
.y141{bottom:578.178450px;}
.yda{bottom:581.395298px;}
.y113{bottom:581.697345px;}
.y103{bottom:586.926883px;}
.ya3{bottom:588.732486px;}
.yb2{bottom:589.138876px;}
.yc1{bottom:591.790217px;}
.y9b{bottom:592.886949px;}
.y107{bottom:594.087488px;}
.y19{bottom:594.502500px;}
.y44{bottom:597.625950px;}
.ydf{bottom:597.643950px;}
.y140{bottom:597.672450px;}
.yd4{bottom:598.231872px;}
.y114{bottom:602.740756px;}
.ya4{bottom:610.872226px;}
.y18{bottom:611.002500px;}
.yc2{bottom:613.418478px;}
.yd3{bottom:615.997434px;}
.y43{bottom:617.125950px;}
.yde{bottom:617.137950px;}
.y13f{bottom:617.166450px;}
.ydb{bottom:620.872003px;}
.y115{bottom:623.784167px;}
.y17{bottom:627.502500px;}
.yb8{bottom:628.815045px;}
.ya5{bottom:633.011966px;}
.yc3{bottom:635.046740px;}
.y42{bottom:636.625950px;}
.ydd{bottom:636.631950px;}
.y13e{bottom:636.660450px;}
.y16{bottom:644.002500px;}
.y116{bottom:644.827579px;}
.y96{bottom:646.007712px;}
.ya6{bottom:655.141268px;}
.y41{bottom:656.125950px;}
.yf1{bottom:656.143950px;}
.y13d{bottom:656.154450px;}
.yc4{bottom:656.675001px;}
.ycb{bottom:659.125950px;}
.y117{bottom:665.870990px;}
.y40{bottom:675.625950px;}
.y13c{bottom:675.648450px;}
.y15{bottom:677.002500px;}
.ya7{bottom:677.281009px;}
.yc5{bottom:678.303262px;}
.yca{bottom:678.631950px;}
.yf0{bottom:678.648450px;}
.y118{bottom:686.914401px;}
.y14{bottom:693.502500px;}
.y3f{bottom:695.125950px;}
.y13b{bottom:695.142450px;}
.y10b{bottom:697.530050px;}
.yc9{bottom:698.125950px;}
.yef{bottom:698.142450px;}
.yb3{bottom:698.553661px;}
.ya8{bottom:699.420749px;}
.yc6{bottom:699.931523px;}
.y97{bottom:701.456227px;}
.y119{bottom:707.957812px;}
.y13{bottom:710.002500px;}
.y3e{bottom:714.625950px;}
.y105{bottom:717.634024px;}
.yee{bottom:717.636450px;}
.yc7{bottom:721.559784px;}
.ya9{bottom:721.560489px;}
.y12{bottom:726.502500px;}
.y11a{bottom:729.001223px;}
.y3d{bottom:734.125950px;}
.y13a{bottom:734.143950px;}
.yed{bottom:737.130450px;}
.y11{bottom:743.002500px;}
.y3c{bottom:753.625950px;}
.y139{bottom:753.637950px;}
.yec{bottom:756.624450px;}
.y8e{bottom:756.629925px;}
.y10{bottom:759.502500px;}
.y60{bottom:773.125950px;}
.y138{bottom:773.131950px;}
.yf{bottom:776.002500px;}
.y8d{bottom:776.131950px;}
.ye{bottom:792.502500px;}
.y3b{bottom:792.625950px;}
.y8c{bottom:795.625950px;}
.yd{bottom:809.002500px;}
.yc{bottom:825.502500px;}
.yb{bottom:842.002500px;}
.y5f{bottom:849.041250px;}
.y5e{bottom:849.182850px;}
.y3a{bottom:849.324600px;}
.ya{bottom:858.502500px;}
.y9{bottom:905.822700px;}
.y8{bottom:925.322700px;}
.y7{bottom:944.822700px;}
.y6{bottom:964.322700px;}
.y39{bottom:1003.322850px;}
.y5{bottom:1022.822850px;}
.y4{bottom:1042.322850px;}
.y3{bottom:1061.822850px;}
.y2{bottom:1081.322850px;}
.y38{bottom:1100.816850px;}
.y37{bottom:1120.319850px;}
.y36{bottom:1139.822850px;}
.h8{height:24.710962px;}
.h9{height:24.711563px;}
.h6{height:25.013672px;}
.h1b{height:29.010440px;}
.h22{height:29.010857px;}
.h16{height:29.011274px;}
.h11{height:29.012524px;}
.hb{height:29.182617px;}
.h1d{height:29.344457px;}
.h19{height:29.428808px;}
.h13{height:29.764118px;}
.h14{height:30.473956px;}
.h18{height:30.764916px;}
.h3{height:33.328125px;}
.h4{height:33.351562px;}
.h27{height:35.436035px;}
.h23{height:36.609866px;}
.h1e{height:36.901606px;}
.h17{height:37.403707px;}
.h2{height:37.520508px;}
.h1f{height:38.074219px;}
.h21{height:40.064561px;}
.h28{height:40.634766px;}
.h29{height:41.660156px;}
.hf{height:41.689453px;}
.h7{height:42.117188px;}
.h2a{height:44.749512px;}
.ha{height:45.858398px;}
.h20{height:47.267836px;}
.h10{height:47.365936px;}
.h5{height:47.381836px;}
.he{height:52.646484px;}
.h26{height:54.953508px;}
.h1c{height:55.523087px;}
.h1a{height:56.693778px;}
.h12{height:57.364305px;}
.h15{height:260.634000px;}
.h24{height:595.275000px;}
.h25{height:595.500000px;}
.hc{height:914.173500px;}
.hd{height:914.250000px;}
.h0{height:1339.369500px;}
.h1{height:1339.500000px;}
.w2{width:425.197500px;}
.w0{width:595.275000px;}
.w1{width:595.500000px;}
.w3{width:914.173500px;}
.w4{width:914.250000px;}
.x1f{left:-1.063800px;}
.x0{left:0.000000px;}
.x63{left:80.787450px;}
.x2{left:84.831150px;}
.x1e{left:87.165000px;}
.x4d{left:89.682988px;}
.x11{left:91.035450px;}
.x1d{left:93.930128px;}
.x60{left:95.385849px;}
.x4c{left:97.511526px;}
.x34{left:101.710540px;}
.x1c{left:104.368928px;}
.x6{left:105.831150px;}
.x25{left:109.283250px;}
.xd{left:112.039350px;}
.x52{left:113.417550px;}
.xc{left:116.539350px;}
.x44{left:118.447950px;}
.x50{left:119.772750px;}
.x21{left:121.981800px;}
.x10{left:123.597450px;}
.x26{left:124.846500px;}
.x36{left:126.831450px;}
.x15{left:129.234150px;}
.x46{left:131.424750px;}
.x54{left:132.493650px;}
.xf{left:134.791500px;}
.x13{left:136.472250px;}
.x29{left:138.213450px;}
.x56{left:144.487142px;}
.x18{left:146.990549px;}
.x49{left:151.674567px;}
.x3b{left:154.310681px;}
.x2d{left:155.635056px;}
.x20{left:157.836300px;}
.x19{left:159.767640px;}
.x59{left:160.770734px;}
.x4e{left:162.164807px;}
.x43{left:166.513113px;}
.x35{left:168.307213px;}
.x2f{left:170.436636px;}
.x51{left:174.504525px;}
.x1a{left:176.438404px;}
.x5c{left:178.964516px;}
.x4a{left:181.673523px;}
.x40{left:184.947239px;}
.x32{left:186.459504px;}
.x1b{left:188.871014px;}
.x5d{left:192.502862px;}
.x4f{left:194.881500px;}
.x4b{left:196.673001px;}
.x42{left:198.339642px;}
.x33{left:201.365468px;}
.x16{left:218.788615px;}
.x62{left:223.938150px;}
.x55{left:225.101360px;}
.x47{left:229.281469px;}
.x39{left:232.379101px;}
.x2a{left:234.632489px;}
.x22{left:237.238200px;}
.x27{left:240.098400px;}
.x37{left:242.082600px;}
.x14{left:248.922750px;}
.x5a{left:259.578735px;}
.x12{left:270.653850px;}
.xe{left:272.834100px;}
.x8{left:285.062700px;}
.x7{left:308.390700px;}
.x5{left:312.864600px;}
.xb{left:314.992050px;}
.x48{left:321.219813px;}
.x53{left:322.964550px;}
.x2b{left:325.289559px;}
.x9{left:329.126700px;}
.x57{left:335.109550px;}
.x3{left:341.606100px;}
.x3c{left:342.858597px;}
.x2e{left:345.780040px;}
.x3e{left:351.772948px;}
.x30{left:360.675565px;}
.xa{left:361.838700px;}
.x4{left:368.954700px;}
.x41{left:375.113099px;}
.x5e{left:378.981305px;}
.x17{left:396.707522px;}
.x45{left:406.219200px;}
.x23{left:409.773450px;}
.x28{left:412.626900px;}
.x38{left:414.611850px;}
.x3a{left:419.570032px;}
.x2c{left:421.708598px;}
.x58{left:430.368563px;}
.x3d{left:441.427936px;}
.x5b{left:450.253334px;}
.x3f{left:456.229517px;}
.x31{left:462.501669px;}
.x5f{left:479.542924px;}
.x24{left:497.237250px;}
.x1{left:503.486250px;}
.x61{left:826.339050px;}
@media print{
.ve{vertical-align:-32.660437pt;}
.v13{vertical-align:-23.307006pt;}
.vb{vertical-align:-14.956996pt;}
.v6{vertical-align:-11.951266pt;}
.v8{vertical-align:-10.355290pt;}
.v2{vertical-align:-7.680533pt;}
.vd{vertical-align:-5.752691pt;}
.va{vertical-align:-4.342354pt;}
.vf{vertical-align:-3.451614pt;}
.v9{vertical-align:-0.965009pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:0.965009pt;}
.vc{vertical-align:2.746446pt;}
.v7{vertical-align:6.792179pt;}
.v1{vertical-align:8.640000pt;}
.v4{vertical-align:10.021248pt;}
.v10{vertical-align:12.693034pt;}
.v5{vertical-align:14.215326pt;}
.v11{vertical-align:15.365251pt;}
.v12{vertical-align:21.896709pt;}
.ls1d{letter-spacing:-2.709449pt;}
.ls34{letter-spacing:-1.973333pt;}
.ls20{letter-spacing:-1.776000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.586667pt;}
.ls2b{letter-spacing:-0.576000pt;}
.ls21{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.426667pt;}
.ls30{letter-spacing:-0.373333pt;}
.ls5{letter-spacing:-0.298667pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.213333pt;}
.ls32{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls31{letter-spacing:-0.106667pt;}
.ls7{letter-spacing:-0.085333pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000533pt;}
.ls2d{letter-spacing:0.003200pt;}
.ls0{letter-spacing:0.006400pt;}
.ls27{letter-spacing:0.006933pt;}
.ls1b{letter-spacing:0.007467pt;}
.ls35{letter-spacing:0.008000pt;}
.ls19{letter-spacing:0.008533pt;}
.ls28{letter-spacing:0.009067pt;}
.ls2c{letter-spacing:0.015467pt;}
.ls22{letter-spacing:0.016000pt;}
.ls1a{letter-spacing:0.025067pt;}
.ls2f{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.426667pt;}
.lse{letter-spacing:0.533333pt;}
.ls1e{letter-spacing:0.586667pt;}
.ls11{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.693333pt;}
.ls17{letter-spacing:0.800000pt;}
.lsd{letter-spacing:0.853333pt;}
.ls10{letter-spacing:0.906667pt;}
.ls1f{letter-spacing:1.066667pt;}
.ls23{letter-spacing:1.120000pt;}
.ls24{letter-spacing:1.173333pt;}
.ls2e{letter-spacing:1.333333pt;}
.ls26{letter-spacing:1.386667pt;}
.lsc{letter-spacing:1.440000pt;}
.ls13{letter-spacing:1.493333pt;}
.ls2{letter-spacing:1.536000pt;}
.ls25{letter-spacing:1.813333pt;}
.ls14{letter-spacing:2.026667pt;}
.ls18{letter-spacing:2.240000pt;}
.ls1{letter-spacing:3.019733pt;}
.ls2a{letter-spacing:4.053333pt;}
.ls29{letter-spacing:6.554667pt;}
.ls33{letter-spacing:24.373333pt;}
.lsa{letter-spacing:368.248533pt;}
.ws32{word-spacing:-13.760000pt;}
.ws21{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.000000pt;}
.wsbc{word-spacing:-11.360000pt;}
.ws20{word-spacing:-11.333333pt;}
.ws5{word-spacing:-10.666667pt;}
.ws6{word-spacing:-10.240000pt;}
.ws1{word-spacing:-10.200000pt;}
.ws4{word-spacing:-9.066667pt;}
.ws3{word-spacing:-8.000000pt;}
.ws2{word-spacing:-7.800000pt;}
.ws7{word-spacing:-6.933333pt;}
.wscb{word-spacing:-6.666667pt;}
.ws24{word-spacing:-4.160000pt;}
.ws47{word-spacing:-3.040000pt;}
.ws25{word-spacing:-2.560000pt;}
.ws4a{word-spacing:-2.506667pt;}
.ws31{word-spacing:-2.453333pt;}
.ws5b{word-spacing:-2.240000pt;}
.wsbf{word-spacing:-2.186667pt;}
.ws85{word-spacing:-2.064000pt;}
.ws42{word-spacing:-2.026667pt;}
.wsc4{word-spacing:-1.920000pt;}
.ws77{word-spacing:-1.866667pt;}
.wsae{word-spacing:-1.813333pt;}
.ws10{word-spacing:-1.664000pt;}
.ws7b{word-spacing:-1.653333pt;}
.ws7e{word-spacing:-1.600000pt;}
.ws8b{word-spacing:-1.546667pt;}
.ws39{word-spacing:-1.493333pt;}
.ws7a{word-spacing:-1.386667pt;}
.ws4f{word-spacing:-1.333333pt;}
.wsa6{word-spacing:-1.296000pt;}
.ws3c{word-spacing:-1.226667pt;}
.ws22{word-spacing:-1.173333pt;}
.ws78{word-spacing:-1.120000pt;}
.ws33{word-spacing:-1.013333pt;}
.ws1a{word-spacing:-0.981333pt;}
.ws92{word-spacing:-0.912000pt;}
.ws2f{word-spacing:-0.853333pt;}
.ws79{word-spacing:-0.800000pt;}
.wsab{word-spacing:-0.768000pt;}
.ws64{word-spacing:-0.746667pt;}
.ws86{word-spacing:-0.720000pt;}
.ws3e{word-spacing:-0.693333pt;}
.ws3d{word-spacing:-0.640000pt;}
.ws76{word-spacing:-0.586667pt;}
.ws41{word-spacing:-0.533333pt;}
.ws2d{word-spacing:-0.426667pt;}
.ws2e{word-spacing:-0.320000pt;}
.wsc2{word-spacing:-0.266667pt;}
.ws56{word-spacing:-0.160000pt;}
.ws90{word-spacing:-0.144000pt;}
.ws2a{word-spacing:-0.053333pt;}
.ws8{word-spacing:0.000000pt;}
.ws19{word-spacing:0.085333pt;}
.ws60{word-spacing:0.106667pt;}
.ws17{word-spacing:0.128000pt;}
.ws91{word-spacing:0.144000pt;}
.ws73{word-spacing:0.160000pt;}
.ws4e{word-spacing:0.213333pt;}
.ws9c{word-spacing:0.266667pt;}
.wsca{word-spacing:0.320000pt;}
.wsad{word-spacing:0.373333pt;}
.ws35{word-spacing:0.533333pt;}
.ws88{word-spacing:0.576000pt;}
.wsa5{word-spacing:0.586667pt;}
.wsa8{word-spacing:0.624000pt;}
.ws4d{word-spacing:0.640000pt;}
.ws15{word-spacing:0.682667pt;}
.ws9d{word-spacing:0.693333pt;}
.ws4c{word-spacing:0.746667pt;}
.ws80{word-spacing:0.800000pt;}
.wsa7{word-spacing:0.816000pt;}
.ws6b{word-spacing:0.853333pt;}
.wsa0{word-spacing:0.906667pt;}
.ws1b{word-spacing:0.938667pt;}
.ws59{word-spacing:0.960000pt;}
.wsac{word-spacing:1.013333pt;}
.ws13{word-spacing:1.066667pt;}
.ws8a{word-spacing:1.173333pt;}
.ws82{word-spacing:1.226667pt;}
.ws57{word-spacing:1.280000pt;}
.wsa3{word-spacing:1.333333pt;}
.ws5a{word-spacing:1.386667pt;}
.wsc{word-spacing:1.408000pt;}
.ws5f{word-spacing:1.440000pt;}
.ws48{word-spacing:1.546667pt;}
.ws1c{word-spacing:1.664000pt;}
.wscd{word-spacing:1.706667pt;}
.ws9f{word-spacing:1.760000pt;}
.ws72{word-spacing:1.776000pt;}
.ws51{word-spacing:1.920000pt;}
.wsd{word-spacing:1.962667pt;}
.ws65{word-spacing:1.973333pt;}
.ws8c{word-spacing:2.026667pt;}
.ws38{word-spacing:2.133333pt;}
.wsa4{word-spacing:2.186667pt;}
.ws50{word-spacing:2.240000pt;}
.ws37{word-spacing:2.293333pt;}
.ws14{word-spacing:2.304000pt;}
.wsb{word-spacing:2.346667pt;}
.ws6c{word-spacing:2.400000pt;}
.wsa{word-spacing:2.432000pt;}
.ws28{word-spacing:2.453333pt;}
.ws7f{word-spacing:2.506667pt;}
.ws3b{word-spacing:2.560000pt;}
.wsb0{word-spacing:2.613333pt;}
.ws81{word-spacing:2.640000pt;}
.wsaf{word-spacing:2.666667pt;}
.ws71{word-spacing:2.709449pt;}
.ws55{word-spacing:2.720000pt;}
.ws18{word-spacing:2.773333pt;}
.ws69{word-spacing:2.826667pt;}
.wse{word-spacing:3.029333pt;}
.ws3f{word-spacing:3.040000pt;}
.ws3a{word-spacing:3.093333pt;}
.wsc8{word-spacing:3.146667pt;}
.ws36{word-spacing:3.306667pt;}
.ws74{word-spacing:3.360000pt;}
.ws9{word-spacing:3.370667pt;}
.ws87{word-spacing:3.408000pt;}
.ws1e{word-spacing:3.456000pt;}
.ws16{word-spacing:3.498667pt;}
.ws27{word-spacing:3.520000pt;}
.wsa1{word-spacing:3.573333pt;}
.ws23{word-spacing:3.786667pt;}
.ws46{word-spacing:3.840000pt;}
.ws45{word-spacing:3.893333pt;}
.ws61{word-spacing:3.946667pt;}
.ws84{word-spacing:4.000000pt;}
.wsc5{word-spacing:4.106667pt;}
.ws2b{word-spacing:4.266667pt;}
.ws40{word-spacing:4.320000pt;}
.wsa9{word-spacing:4.368000pt;}
.ws58{word-spacing:4.373333pt;}
.ws2c{word-spacing:4.426667pt;}
.ws29{word-spacing:4.586667pt;}
.wsaa{word-spacing:4.656000pt;}
.ws6d{word-spacing:4.693333pt;}
.ws7c{word-spacing:4.800000pt;}
.ws26{word-spacing:4.853333pt;}
.ws5e{word-spacing:4.896000pt;}
.ws43{word-spacing:4.906667pt;}
.ws6a{word-spacing:4.960000pt;}
.ws1d{word-spacing:5.120000pt;}
.ws8d{word-spacing:5.280000pt;}
.ws5c{word-spacing:5.493333pt;}
.ws62{word-spacing:5.600000pt;}
.ws9e{word-spacing:5.653333pt;}
.ws52{word-spacing:5.866667pt;}
.ws9b{word-spacing:5.920000pt;}
.wsb6{word-spacing:5.973333pt;}
.ws4b{word-spacing:6.026667pt;}
.ws53{word-spacing:6.080000pt;}
.wsc6{word-spacing:6.240000pt;}
.wsb9{word-spacing:6.293333pt;}
.ws54{word-spacing:6.400000pt;}
.ws83{word-spacing:6.613333pt;}
.ws63{word-spacing:6.666667pt;}
.wsf{word-spacing:6.741333pt;}
.wsb3{word-spacing:6.773333pt;}
.wscc{word-spacing:6.826667pt;}
.ws7d{word-spacing:6.880000pt;}
.ws44{word-spacing:6.986667pt;}
.wsa2{word-spacing:7.040000pt;}
.ws6f{word-spacing:7.146667pt;}
.wsc3{word-spacing:7.306667pt;}
.wsbe{word-spacing:7.520000pt;}
.ws70{word-spacing:7.626667pt;}
.ws34{word-spacing:7.733333pt;}
.wsc7{word-spacing:8.213333pt;}
.ws49{word-spacing:8.480000pt;}
.ws5d{word-spacing:8.976000pt;}
.wsb8{word-spacing:9.280000pt;}
.ws11{word-spacing:9.685333pt;}
.wsb1{word-spacing:9.866667pt;}
.ws12{word-spacing:10.496000pt;}
.wsb2{word-spacing:10.826667pt;}
.wsbd{word-spacing:11.360000pt;}
.wsb7{word-spacing:11.413333pt;}
.ws75{word-spacing:11.786667pt;}
.ws89{word-spacing:11.856000pt;}
.wsc9{word-spacing:12.533333pt;}
.ws30{word-spacing:14.346667pt;}
.wsb4{word-spacing:17.440000pt;}
.wsba{word-spacing:24.373333pt;}
.wsb5{word-spacing:25.120000pt;}
.wsc1{word-spacing:25.493333pt;}
.wsc0{word-spacing:26.240000pt;}
.wsbb{word-spacing:29.920000pt;}
.ws8f{word-spacing:34.848000pt;}
.ws1f{word-spacing:64.000000pt;}
.ws8e{word-spacing:200.064000pt;}
.ws95{word-spacing:228.162667pt;}
.ws66{word-spacing:236.016000pt;}
.ws98{word-spacing:277.394667pt;}
.ws94{word-spacing:286.053333pt;}
.ws99{word-spacing:302.509333pt;}
.ws96{word-spacing:314.432000pt;}
.ws6e{word-spacing:332.248533pt;}
.ws97{word-spacing:342.810667pt;}
.ws93{word-spacing:361.770667pt;}
.ws9a{word-spacing:383.746667pt;}
.ws67{word-spacing:437.088000pt;}
.ws68{word-spacing:579.504000pt;}
._0{margin-left:-1511.811200pt;}
._34{margin-left:-1016.192878pt;}
._52{margin-left:-12.533333pt;}
._a{margin-left:-6.442667pt;}
._6{margin-left:-5.461333pt;}
._2{margin-left:-4.516560pt;}
._b{margin-left:-2.773333pt;}
._1{margin-left:-1.578667pt;}
._7{width:0.900267pt;}
._3{width:2.389333pt;}
._4{width:3.878400pt;}
._5{width:5.333333pt;}
._9{width:6.327467pt;}
._8{width:7.859200pt;}
._f{width:9.562667pt;}
._38{width:10.928533pt;}
._18{width:12.096000pt;}
._10{width:14.362667pt;}
._53{width:15.898667pt;}
._54{width:17.365333pt;}
._57{width:22.640000pt;}
._56{width:24.373333pt;}
._59{width:25.493333pt;}
._58{width:29.920000pt;}
._55{width:43.296000pt;}
._d{width:50.133333pt;}
._c{width:58.880000pt;}
._e{width:64.000000pt;}
._50{width:129.690667pt;}
._4d{width:131.330667pt;}
._39{width:134.736000pt;}
._4c{width:136.853333pt;}
._4b{width:150.824000pt;}
._42{width:152.365333pt;}
._44{width:157.396517pt;}
._51{width:160.117333pt;}
._40{width:168.368000pt;}
._47{width:173.490667pt;}
._46{width:175.032000pt;}
._43{width:182.784000pt;}
._22{width:189.995439pt;}
._45{width:191.034667pt;}
._49{width:200.328000pt;}
._4a{width:202.821333pt;}
._4f{width:205.450667pt;}
._32{width:209.731967pt;}
._21{width:211.151407pt;}
._37{width:213.764528pt;}
._20{width:217.535313pt;}
._11{width:219.973333pt;}
._3d{width:221.493965pt;}
._3f{width:222.994667pt;}
._31{width:225.616817pt;}
._2a{width:229.439572pt;}
._30{width:234.375752pt;}
._29{width:236.751057pt;}
._3c{width:237.935290pt;}
._36{width:241.012255pt;}
._41{width:243.032000pt;}
._48{width:253.413333pt;}
._4e{width:265.698667pt;}
._1b{width:272.577946pt;}
._1a{width:277.328759pt;}
._1c{width:279.545357pt;}
._3a{width:283.362336pt;}
._19{width:286.310767pt;}
._23{width:287.486077pt;}
._1d{width:290.393498pt;}
._3b{width:292.883206pt;}
._2b{width:293.906822pt;}
._1e{width:296.072205pt;}
._2e{width:298.546089pt;}
._1f{width:301.416870pt;}
._2d{width:303.630725pt;}
._35{width:305.069408pt;}
._26{width:306.377171pt;}
._2f{width:308.010193pt;}
._27{width:309.346301pt;}
._25{width:310.385497pt;}
._2c{width:312.204090pt;}
._24{width:315.321677pt;}
._33{width:319.395052pt;}
._28{width:325.602292pt;}
._3e{width:353.427032pt;}
._15{width:371.653333pt;}
._14{width:425.088000pt;}
._17{width:461.088000pt;}
._13{width:494.160000pt;}
._16{width:584.917333pt;}
._12{width:604.848000pt;}
.fs7{font-size:27.733333pt;}
.fs4{font-size:31.200000pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:36.266667pt;}
.fsd{font-size:37.113067pt;}
.fse{font-size:37.113600pt;}
.fsc{font-size:37.114133pt;}
.fsb{font-size:37.115733pt;}
.fs1{font-size:37.333333pt;}
.fs3{font-size:40.800000pt;}
.fs2{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:42.509200pt;}
.yf3{bottom:63.223067pt;}
.y35{bottom:77.176000pt;}
.y101{bottom:80.552400pt;}
.yf2{bottom:80.556400pt;}
.y34{bottom:91.842667pt;}
.y5d{bottom:97.889733pt;}
.y137{bottom:97.920400pt;}
.yeb{bottom:100.581733pt;}
.y100{bottom:100.603067pt;}
.y33{bottom:108.429333pt;}
.y5c{bottom:115.223067pt;}
.y136{bottom:115.248400pt;}
.yea{bottom:117.909733pt;}
.yff{bottom:117.931067pt;}
.y32{bottom:121.176000pt;}
.y7f{bottom:125.576800pt;}
.y5b{bottom:132.556400pt;}
.y135{bottom:132.576400pt;}
.ye9{bottom:135.237733pt;}
.yfe{bottom:135.259067pt;}
.y31{bottom:137.762800pt;}
.y80{bottom:141.731423pt;}
.y130{bottom:143.758533pt;}
.y5a{bottom:149.889733pt;}
.y134{bottom:149.904400pt;}
.y30{bottom:150.509333pt;}
.ye8{bottom:152.565733pt;}
.yfd{bottom:152.587067pt;}
.y81{bottom:157.886046pt;}
.y12f{bottom:163.814533pt;}
.y2f{bottom:165.176000pt;}
.y59{bottom:167.223067pt;}
.y6d{bottom:167.245733pt;}
.ye7{bottom:169.893733pt;}
.yfc{bottom:169.915067pt;}
.y82{bottom:174.040669pt;}
.y2e{bottom:179.842667pt;}
.y12e{bottom:181.143200pt;}
.y58{bottom:184.556400pt;}
.y133{bottom:184.572400pt;}
.ye6{bottom:187.221733pt;}
.yfb{bottom:187.243067pt;}
.y6c{bottom:187.249733pt;}
.y83{bottom:190.195292pt;}
.y2d{bottom:194.509333pt;}
.y12d{bottom:198.471867pt;}
.y57{bottom:201.889733pt;}
.y132{bottom:201.900400pt;}
.ye5{bottom:204.561733pt;}
.yfa{bottom:204.571067pt;}
.y6b{bottom:204.577733pt;}
.y84{bottom:206.349915pt;}
.y2c{bottom:209.176000pt;}
.y12c{bottom:215.800533pt;}
.y7e{bottom:216.389333pt;}
.y56{bottom:219.223067pt;}
.y131{bottom:219.228400pt;}
.y8a{bottom:220.437067pt;}
.y88{bottom:220.857867pt;}
.ye4{bottom:221.889733pt;}
.yf9{bottom:221.899067pt;}
.y6a{bottom:221.905733pt;}
.y85{bottom:222.504538pt;}
.y12b{bottom:233.129200pt;}
.y8b{bottom:233.771600pt;}
.y89{bottom:233.911467pt;}
.y87{bottom:235.387067pt;}
.y55{bottom:236.556400pt;}
.yf8{bottom:239.227067pt;}
.y69{bottom:239.233733pt;}
.y2b{bottom:249.780000pt;}
.y12a{bottom:250.457867pt;}
.y86{bottom:252.824133pt;}
.y54{bottom:253.889733pt;}
.yf7{bottom:256.555067pt;}
.ye3{bottom:256.559933pt;}
.y68{bottom:256.561733pt;}
.y79{bottom:261.193198pt;}
.y2a{bottom:264.446667pt;}
.y78{bottom:265.693481pt;}
.y77{bottom:265.851222pt;}
.y75{bottom:266.175985pt;}
.y129{bottom:267.786533pt;}
.y76{bottom:269.488564pt;}
.y53{bottom:271.223067pt;}
.y67{bottom:273.889733pt;}
.ye2{bottom:273.895067pt;}
.y7a{bottom:277.347821pt;}
.y29{bottom:279.113333pt;}
.y128{bottom:285.115200pt;}
.y71{bottom:286.459733pt;}
.y52{bottom:288.556400pt;}
.ye1{bottom:291.223067pt;}
.y7b{bottom:293.502444pt;}
.y28{bottom:293.780000pt;}
.y127{bottom:302.443867pt;}
.y72{bottom:305.360921pt;}
.y51{bottom:305.889733pt;}
.y27{bottom:308.446667pt;}
.y66{bottom:308.561733pt;}
.y7c{bottom:309.657067pt;}
.y126{bottom:319.772533pt;}
.y26{bottom:323.113333pt;}
.y50{bottom:323.223067pt;}
.y7d{bottom:325.811690pt;}
.y65{bottom:325.889733pt;}
.yf6{bottom:325.893267pt;}
.ycf{bottom:335.293600pt;}
.ycd{bottom:335.714267pt;}
.y125{bottom:337.101200pt;}
.y25{bottom:337.780000pt;}
.y4f{bottom:340.556400pt;}
.yf5{bottom:343.228400pt;}
.yd0{bottom:348.627200pt;}
.yce{bottom:348.767067pt;}
.ycc{bottom:350.242533pt;}
.y24{bottom:352.446667pt;}
.y124{bottom:354.429867pt;}
.y4e{bottom:357.889733pt;}
.yf4{bottom:360.556400pt;}
.y23{bottom:367.113333pt;}
.y123{bottom:371.758533pt;}
.y4d{bottom:375.223067pt;}
.y64{bottom:375.244400pt;}
.y22{bottom:381.780000pt;}
.ydc{bottom:386.519678pt;}
.y92{bottom:389.370533pt;}
.y90{bottom:389.791200pt;}
.y4c{bottom:392.556400pt;}
.y63{bottom:392.572400pt;}
.yae{bottom:395.032400pt;}
.yac{bottom:395.453067pt;}
.y21{bottom:396.446667pt;}
.yd6{bottom:401.865931pt;}
.yd5{bottom:401.940157pt;}
.y93{bottom:402.704533pt;}
.y91{bottom:402.844400pt;}
.y8f{bottom:404.320000pt;}
.y122{bottom:406.425200pt;}
.y74{bottom:408.338523pt;}
.yaf{bottom:408.366267pt;}
.yad{bottom:408.506267pt;}
.y4b{bottom:409.889733pt;}
.y62{bottom:409.900400pt;}
.yab{bottom:409.981733pt;}
.yd7{bottom:411.524607pt;}
.y121{bottom:423.763867pt;}
.yd1{bottom:424.050267pt;}
.y11e{bottom:425.087527pt;}
.y20{bottom:425.780000pt;}
.y4a{bottom:427.223067pt;}
.y61{bottom:427.228400pt;}
.yaa{bottom:433.343827pt;}
.y73{bottom:436.128928pt;}
.yc8{bottom:437.509262pt;}
.yd2{bottom:437.735710pt;}
.y11d{bottom:438.457702pt;}
.y1f{bottom:440.446667pt;}
.y120{bottom:441.091867pt;}
.y49{bottom:444.556400pt;}
.y9f{bottom:444.598688pt;}
.yd8{bottom:446.615011pt;}
.ybd{bottom:449.135264pt;}
.y9d{bottom:449.386411pt;}
.y9c{bottom:449.488475pt;}
.y9e{bottom:449.581261pt;}
.y98{bottom:450.472000pt;}
.y11c{bottom:451.540246pt;}
.y9a{bottom:453.422573pt;}
.yba{bottom:454.192065pt;}
.y1e{bottom:455.113333pt;}
.yb9{bottom:455.249818pt;}
.ybc{bottom:455.351882pt;}
.yb6{bottom:456.502420pt;}
.yb7{bottom:456.790054pt;}
.yb4{bottom:457.550894pt;}
.y99{bottom:459.713419pt;}
.y11f{bottom:459.758533pt;}
.y48{bottom:461.889733pt;}
.ybb{bottom:463.136571pt;}
.ya0{bottom:464.278457pt;}
.y70{bottom:464.559933pt;}
.ybe{bottom:468.360385pt;}
.y1d{bottom:469.780000pt;}
.y11b{bottom:470.069211pt;}
.y94{bottom:474.763200pt;}
.yb0{bottom:477.546133pt;}
.yb5{bottom:478.316252pt;}
.y47{bottom:479.223067pt;}
.y111{bottom:479.653798pt;}
.yd9{bottom:481.705416pt;}
.y6f{bottom:481.895067pt;}
.ya1{bottom:483.958227pt;}
.y10c{bottom:484.107430pt;}
.y10d{bottom:484.200214pt;}
.y110{bottom:484.218771pt;}
.y10a{bottom:484.292998pt;}
.y1c{bottom:484.446667pt;}
.y10e{bottom:485.424963pt;}
.ybf{bottom:487.585506pt;}
.y102{bottom:491.780667pt;}
.y104{bottom:492.625001pt;}
.y106{bottom:493.747687pt;}
.y109{bottom:494.211607pt;}
.y46{bottom:496.556400pt;}
.y142{bottom:496.608400pt;}
.y10f{bottom:498.340495pt;}
.y112{bottom:498.359052pt;}
.yb1{bottom:498.784696pt;}
.y1b{bottom:499.113333pt;}
.y6e{bottom:499.223067pt;}
.y95{bottom:499.852354pt;}
.y108{bottom:502.070412pt;}
.ya2{bottom:503.637996pt;}
.yc0{bottom:506.810627pt;}
.y1a{bottom:513.780000pt;}
.y45{bottom:513.889733pt;}
.ye0{bottom:513.911067pt;}
.y141{bottom:513.936400pt;}
.yda{bottom:516.795820pt;}
.y113{bottom:517.064307pt;}
.y103{bottom:521.712785pt;}
.ya3{bottom:523.317765pt;}
.yb2{bottom:523.679001pt;}
.yc1{bottom:526.035749pt;}
.y9b{bottom:527.010621pt;}
.y107{bottom:528.077767pt;}
.y19{bottom:528.446667pt;}
.y44{bottom:531.223067pt;}
.ydf{bottom:531.239067pt;}
.y140{bottom:531.264400pt;}
.yd4{bottom:531.761664pt;}
.y114{bottom:535.769561pt;}
.ya4{bottom:542.997534pt;}
.y18{bottom:543.113333pt;}
.yc2{bottom:545.260870pt;}
.yd3{bottom:547.553274pt;}
.y43{bottom:548.556400pt;}
.yde{bottom:548.567067pt;}
.y13f{bottom:548.592400pt;}
.ydb{bottom:551.886225pt;}
.y115{bottom:554.474815pt;}
.y17{bottom:557.780000pt;}
.yb8{bottom:558.946706pt;}
.ya5{bottom:562.677303pt;}
.yc3{bottom:564.485991pt;}
.y42{bottom:565.889733pt;}
.ydd{bottom:565.895067pt;}
.y13e{bottom:565.920400pt;}
.y16{bottom:572.446667pt;}
.y116{bottom:573.180070pt;}
.y96{bottom:574.229077pt;}
.ya6{bottom:582.347794pt;}
.y41{bottom:583.223067pt;}
.yf1{bottom:583.239067pt;}
.y13d{bottom:583.248400pt;}
.yc4{bottom:583.711112pt;}
.ycb{bottom:585.889733pt;}
.y117{bottom:591.885324pt;}
.y40{bottom:600.556400pt;}
.y13c{bottom:600.576400pt;}
.y15{bottom:601.780000pt;}
.ya7{bottom:602.027563pt;}
.yc5{bottom:602.936233pt;}
.yca{bottom:603.228400pt;}
.yf0{bottom:603.243067pt;}
.y118{bottom:610.590579pt;}
.y14{bottom:616.446667pt;}
.y3f{bottom:617.889733pt;}
.y13b{bottom:617.904400pt;}
.y10b{bottom:620.026711pt;}
.yc9{bottom:620.556400pt;}
.yef{bottom:620.571067pt;}
.yb3{bottom:620.936587pt;}
.ya8{bottom:621.707332pt;}
.yc6{bottom:622.161354pt;}
.y97{bottom:623.516646pt;}
.y119{bottom:629.295833pt;}
.y13{bottom:631.113333pt;}
.y3e{bottom:635.223067pt;}
.y105{bottom:637.896910pt;}
.yee{bottom:637.899067pt;}
.yc7{bottom:641.386475pt;}
.ya9{bottom:641.387102pt;}
.y12{bottom:645.780000pt;}
.y11a{bottom:648.001087pt;}
.y3d{bottom:652.556400pt;}
.y13a{bottom:652.572400pt;}
.yed{bottom:655.227067pt;}
.y11{bottom:660.446667pt;}
.y3c{bottom:669.889733pt;}
.y139{bottom:669.900400pt;}
.yec{bottom:672.555067pt;}
.y8e{bottom:672.559933pt;}
.y10{bottom:675.113333pt;}
.y60{bottom:687.223067pt;}
.y138{bottom:687.228400pt;}
.yf{bottom:689.780000pt;}
.y8d{bottom:689.895067pt;}
.ye{bottom:704.446667pt;}
.y3b{bottom:704.556400pt;}
.y8c{bottom:707.223067pt;}
.yd{bottom:719.113333pt;}
.yc{bottom:733.780000pt;}
.yb{bottom:748.446667pt;}
.y5f{bottom:754.703333pt;}
.y5e{bottom:754.829200pt;}
.y3a{bottom:754.955200pt;}
.ya{bottom:763.113333pt;}
.y9{bottom:805.175733pt;}
.y8{bottom:822.509067pt;}
.y7{bottom:839.842400pt;}
.y6{bottom:857.175733pt;}
.y39{bottom:891.842533pt;}
.y5{bottom:909.175867pt;}
.y4{bottom:926.509200pt;}
.y3{bottom:943.842533pt;}
.y2{bottom:961.175867pt;}
.y38{bottom:978.503867pt;}
.y37{bottom:995.839867pt;}
.y36{bottom:1013.175867pt;}
.h8{height:21.965300pt;}
.h9{height:21.965833pt;}
.h6{height:22.234375pt;}
.h1b{height:25.787058pt;}
.h22{height:25.787428pt;}
.h16{height:25.787799pt;}
.h11{height:25.788910pt;}
.hb{height:25.940104pt;}
.h1d{height:26.083962pt;}
.h19{height:26.158940pt;}
.h13{height:26.456994pt;}
.h14{height:27.087961pt;}
.h18{height:27.346592pt;}
.h3{height:29.625000pt;}
.h4{height:29.645833pt;}
.h27{height:31.498698pt;}
.h23{height:32.542103pt;}
.h1e{height:32.801427pt;}
.h17{height:33.247739pt;}
.h2{height:33.351562pt;}
.h1f{height:33.843750pt;}
.h21{height:35.612943pt;}
.h28{height:36.119792pt;}
.h29{height:37.031250pt;}
.hf{height:37.057292pt;}
.h7{height:37.437500pt;}
.h2a{height:39.777344pt;}
.ha{height:40.763021pt;}
.h20{height:42.015854pt;}
.h10{height:42.103054pt;}
.h5{height:42.117188pt;}
.he{height:46.796875pt;}
.h26{height:48.847562pt;}
.h1c{height:49.353855pt;}
.h1a{height:50.394469pt;}
.h12{height:50.990493pt;}
.h15{height:231.674667pt;}
.h24{height:529.133333pt;}
.h25{height:529.333333pt;}
.hc{height:812.598667pt;}
.hd{height:812.666667pt;}
.h0{height:1190.550667pt;}
.h1{height:1190.666667pt;}
.w2{width:377.953333pt;}
.w0{width:529.133333pt;}
.w1{width:529.333333pt;}
.w3{width:812.598667pt;}
.w4{width:812.666667pt;}
.x1f{left:-0.945600pt;}
.x0{left:0.000000pt;}
.x63{left:71.811067pt;}
.x2{left:75.405467pt;}
.x1e{left:77.480000pt;}
.x4d{left:79.718212pt;}
.x11{left:80.920400pt;}
.x1d{left:83.493447pt;}
.x60{left:84.787421pt;}
.x4c{left:86.676912pt;}
.x34{left:90.409369pt;}
.x1c{left:92.772381pt;}
.x6{left:94.072133pt;}
.x25{left:97.140667pt;}
.xd{left:99.590533pt;}
.x52{left:100.815600pt;}
.xc{left:103.590533pt;}
.x44{left:105.287067pt;}
.x50{left:106.464667pt;}
.x21{left:108.428267pt;}
.x10{left:109.864400pt;}
.x26{left:110.974667pt;}
.x36{left:112.739067pt;}
.x15{left:114.874800pt;}
.x46{left:116.822000pt;}
.x54{left:117.772133pt;}
.xf{left:119.814667pt;}
.x13{left:121.308667pt;}
.x29{left:122.856400pt;}
.x56{left:128.433015pt;}
.x18{left:130.658266pt;}
.x49{left:134.821837pt;}
.x3b{left:137.165050pt;}
.x2d{left:138.342272pt;}
.x20{left:140.298933pt;}
.x19{left:142.015680pt;}
.x59{left:142.907319pt;}
.x4e{left:144.146495pt;}
.x43{left:148.011656pt;}
.x35{left:149.606412pt;}
.x2f{left:151.499232pt;}
.x51{left:155.115133pt;}
.x1a{left:156.834137pt;}
.x5c{left:159.079570pt;}
.x4a{left:161.487576pt;}
.x40{left:164.397545pt;}
.x32{left:165.741781pt;}
.x1b{left:167.885346pt;}
.x5d{left:171.113655pt;}
.x4f{left:173.228000pt;}
.x4b{left:174.820445pt;}
.x42{left:176.301904pt;}
.x33{left:178.991527pt;}
.x16{left:194.478769pt;}
.x62{left:199.056133pt;}
.x55{left:200.090098pt;}
.x47{left:203.805750pt;}
.x39{left:206.559201pt;}
.x2a{left:208.562212pt;}
.x22{left:210.878400pt;}
.x27{left:213.420800pt;}
.x37{left:215.184533pt;}
.x14{left:221.264667pt;}
.x5a{left:230.736653pt;}
.x12{left:240.581200pt;}
.xe{left:242.519200pt;}
.x8{left:253.389067pt;}
.x7{left:274.125067pt;}
.x5{left:278.101867pt;}
.xb{left:279.992933pt;}
.x48{left:285.528723pt;}
.x53{left:287.079600pt;}
.x2b{left:289.146274pt;}
.x9{left:292.557067pt;}
.x57{left:297.875156pt;}
.x3{left:303.649867pt;}
.x3c{left:304.763198pt;}
.x2e{left:307.360035pt;}
.x3e{left:312.687065pt;}
.x30{left:320.600502pt;}
.xa{left:321.634400pt;}
.x4{left:327.959733pt;}
.x41{left:333.433866pt;}
.x5e{left:336.872271pt;}
.x17{left:352.628909pt;}
.x45{left:361.083733pt;}
.x23{left:364.243067pt;}
.x28{left:366.779467pt;}
.x38{left:368.543867pt;}
.x3a{left:372.951139pt;}
.x2c{left:374.852087pt;}
.x58{left:382.549834pt;}
.x3d{left:392.380388pt;}
.x5b{left:400.225186pt;}
.x3f{left:405.537348pt;}
.x31{left:411.112595pt;}
.x5f{left:426.260377pt;}
.x24{left:441.988667pt;}
.x1{left:447.543333pt;}
.x61{left:734.523600pt;}
}




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