
    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_4a8fcb43adc9fc80145a7ab6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_06c5905b5cc690d2a29a6782.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.760309;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_a66131036b32a6aa9e039fb4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.022461;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_4d8f3b7a9b60cf1da5a6c3e9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972656;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_d9690ea536ffc2609b05d125.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_85a0fe0f58792d003f2c1b71.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_a0078c0fd36e25fff130c10d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011230;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_f462fa859ff07cc3eb1a0cb3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.146973;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_5b573e45a87df3e969734ae9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976118;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_35ee9e52f1bfb53f07664bd0.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_81d6ae267a2e84fa7a7f8e9c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.760321;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_734b4a9f3809927f9c9bb8c4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.771074;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_2cc6a2628587d7658dcb0020.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.770020;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_2372a0de85b07b60e437df3a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.760335;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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);}
.m2{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:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.318000px;}
.v1{vertical-align:21.978000px;}
.lsf{letter-spacing:-7.236000px;}
.lse{letter-spacing:-3.240000px;}
.ls7{letter-spacing:-1.140000px;}
.ls16{letter-spacing:-0.972000px;}
.ls5{letter-spacing:-0.918000px;}
.lsa{letter-spacing:-0.840000px;}
.ls4{letter-spacing:-0.691200px;}
.ls8{letter-spacing:-0.660000px;}
.ls9{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.408000px;}
.ls14{letter-spacing:-0.378000px;}
.lsb{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.324000px;}
.ls12{letter-spacing:-0.300000px;}
.ls11{letter-spacing:-0.240000px;}
.ls1b{letter-spacing:-0.162000px;}
.ls6{letter-spacing:-0.060000px;}
.ls1c{letter-spacing:-0.054000px;}
.ls2{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.378000px;}
.ls1a{letter-spacing:0.660000px;}
.ls13{letter-spacing:2.580000px;}
.ls18{letter-spacing:3.715200px;}
.lsd{letter-spacing:6.180000px;}
.ls0{letter-spacing:43.181364px;}
.ls1{letter-spacing:43.181964px;}
.ls10{letter-spacing:495.312000px;}
.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;}
}
.ws1c{word-spacing:-17.928000px;}
.wsdb{word-spacing:-16.434000px;}
.wsf8{word-spacing:-15.180000px;}
.ws5{word-spacing:-14.940000px;}
.ws41{word-spacing:-14.880000px;}
.ws1d{word-spacing:-14.700000px;}
.wsa7{word-spacing:-14.400000px;}
.ws2b{word-spacing:-14.340000px;}
.ws2a{word-spacing:-14.040000px;}
.wse9{word-spacing:-13.770000px;}
.ws1e{word-spacing:-13.560000px;}
.ws60{word-spacing:-13.446000px;}
.wsdc{word-spacing:-13.392000px;}
.ws6{word-spacing:-13.230000px;}
.wsf1{word-spacing:-12.852000px;}
.wsf0{word-spacing:-12.474000px;}
.wsef{word-spacing:-12.420000px;}
.ws7{word-spacing:-12.366000px;}
.wsa{word-spacing:-12.150000px;}
.ws4b{word-spacing:-11.904000px;}
.ws8{word-spacing:-11.448000px;}
.ws9{word-spacing:-11.232000px;}
.wsb{word-spacing:-10.992000px;}
.ws3{word-spacing:-10.896000px;}
.ws1b{word-spacing:-10.800000px;}
.ws61{word-spacing:-10.206000px;}
.ws4{word-spacing:-9.892800px;}
.ws2{word-spacing:-9.618000px;}
.ws3a{word-spacing:-8.675040px;}
.wsf7{word-spacing:-7.807536px;}
.ws62{word-spacing:-6.210000px;}
.ws45{word-spacing:-6.180000px;}
.ws65{word-spacing:-5.880000px;}
.wsa0{word-spacing:-3.480000px;}
.ws3b{word-spacing:-3.360000px;}
.ws101{word-spacing:-3.186000px;}
.ws87{word-spacing:-3.120000px;}
.ws30{word-spacing:-3.060000px;}
.wsf2{word-spacing:-2.916000px;}
.wsb3{word-spacing:-2.880000px;}
.ws34{word-spacing:-2.820000px;}
.ws33{word-spacing:-2.760000px;}
.wsd5{word-spacing:-2.640000px;}
.wsf6{word-spacing:-2.592000px;}
.wsb2{word-spacing:-2.580000px;}
.wsd8{word-spacing:-2.400000px;}
.wsfe{word-spacing:-2.322000px;}
.ws98{word-spacing:-2.280000px;}
.ws96{word-spacing:-2.220000px;}
.ws21{word-spacing:-1.980000px;}
.ws97{word-spacing:-1.920000px;}
.wsf4{word-spacing:-1.890000px;}
.ws28{word-spacing:-1.860000px;}
.ws5a{word-spacing:-1.782000px;}
.wsbe{word-spacing:-1.680000px;}
.wse7{word-spacing:-1.620000px;}
.wsb7{word-spacing:-1.560000px;}
.wsb6{word-spacing:-1.500000px;}
.wsfa{word-spacing:-1.404000px;}
.ws18{word-spacing:-1.350000px;}
.wse6{word-spacing:-1.296000px;}
.wse2{word-spacing:-1.242000px;}
.wscb{word-spacing:-1.140000px;}
.wsbf{word-spacing:-1.080000px;}
.wsde{word-spacing:-0.960000px;}
.wsc7{word-spacing:-0.900000px;}
.ws66{word-spacing:-0.840000px;}
.ws6f{word-spacing:-0.810000px;}
.ws6b{word-spacing:-0.780000px;}
.ws85{word-spacing:-0.720000px;}
.wsfd{word-spacing:-0.660000px;}
.wsf3{word-spacing:-0.648000px;}
.ws24{word-spacing:-0.600000px;}
.ws99{word-spacing:-0.540000px;}
.ws5d{word-spacing:-0.480000px;}
.wsee{word-spacing:-0.378000px;}
.wsff{word-spacing:-0.360000px;}
.ws90{word-spacing:-0.240000px;}
.wse{word-spacing:-0.216000px;}
.wsb5{word-spacing:-0.180000px;}
.ws86{word-spacing:-0.120000px;}
.ws3c{word-spacing:-0.060000px;}
.wsc{word-spacing:0.000000px;}
.ws100{word-spacing:0.054000px;}
.ws23{word-spacing:0.060000px;}
.ws19{word-spacing:0.162000px;}
.ws93{word-spacing:0.240000px;}
.wsfc{word-spacing:0.270000px;}
.wsf5{word-spacing:0.324000px;}
.ws31{word-spacing:0.360000px;}
.wse3{word-spacing:0.378000px;}
.wsd{word-spacing:0.408000px;}
.ws6d{word-spacing:0.480000px;}
.ws40{word-spacing:0.540000px;}
.ws36{word-spacing:0.600000px;}
.ws2d{word-spacing:0.660000px;}
.wsf{word-spacing:0.691200px;}
.ws83{word-spacing:0.720000px;}
.ws37{word-spacing:0.840000px;}
.wsb8{word-spacing:0.900000px;}
.ws1a{word-spacing:0.918000px;}
.ws2f{word-spacing:0.960000px;}
.wse8{word-spacing:0.972000px;}
.wsa9{word-spacing:1.020000px;}
.ws32{word-spacing:1.140000px;}
.wsce{word-spacing:1.200000px;}
.wsfb{word-spacing:1.242000px;}
.ws29{word-spacing:1.500000px;}
.wsd7{word-spacing:1.560000px;}
.wscc{word-spacing:1.620000px;}
.wscd{word-spacing:1.680000px;}
.ws12{word-spacing:1.728000px;}
.wsc4{word-spacing:1.800000px;}
.wsed{word-spacing:1.836000px;}
.ws3f{word-spacing:1.860000px;}
.ws2c{word-spacing:1.920000px;}
.ws5c{word-spacing:1.980000px;}
.ws64{word-spacing:2.106000px;}
.ws63{word-spacing:2.160000px;}
.ws89{word-spacing:2.340000px;}
.ws9f{word-spacing:2.376000px;}
.ws88{word-spacing:2.400000px;}
.wsb1{word-spacing:2.520000px;}
.ws91{word-spacing:2.580000px;}
.ws39{word-spacing:2.592000px;}
.ws9e{word-spacing:2.700000px;}
.ws9d{word-spacing:2.754000px;}
.ws35{word-spacing:2.760000px;}
.ws1f{word-spacing:2.820000px;}
.wsc1{word-spacing:2.880000px;}
.wsc2{word-spacing:2.940000px;}
.wsae{word-spacing:3.000000px;}
.wsac{word-spacing:3.060000px;}
.ws9a{word-spacing:3.120000px;}
.ws92{word-spacing:3.180000px;}
.wsec{word-spacing:3.348000px;}
.ws84{word-spacing:3.420000px;}
.wsd3{word-spacing:3.480000px;}
.wsd2{word-spacing:3.540000px;}
.ws26{word-spacing:3.600000px;}
.ws3d{word-spacing:3.720000px;}
.ws38{word-spacing:3.780000px;}
.wse0{word-spacing:3.834000px;}
.ws22{word-spacing:3.840000px;}
.wsa1{word-spacing:3.900000px;}
.wsa6{word-spacing:3.942000px;}
.wsa2{word-spacing:3.960000px;}
.ws95{word-spacing:4.140000px;}
.ws6c{word-spacing:4.200000px;}
.ws5e{word-spacing:4.260000px;}
.ws20{word-spacing:4.320000px;}
.ws5b{word-spacing:4.380000px;}
.wsf9{word-spacing:4.428000px;}
.ws2e{word-spacing:4.440000px;}
.wsc6{word-spacing:4.500000px;}
.wsc8{word-spacing:4.620000px;}
.ws46{word-spacing:4.740000px;}
.ws13{word-spacing:4.806000px;}
.ws43{word-spacing:4.860000px;}
.ws8d{word-spacing:4.914000px;}
.ws42{word-spacing:4.920000px;}
.ws68{word-spacing:5.100000px;}
.ws27{word-spacing:5.160000px;}
.wsbc{word-spacing:5.220000px;}
.wsb9{word-spacing:5.340000px;}
.wsc5{word-spacing:5.520000px;}
.wse1{word-spacing:5.616000px;}
.ws25{word-spacing:5.640000px;}
.wsc0{word-spacing:5.700000px;}
.ws5f{word-spacing:5.880000px;}
.wsa5{word-spacing:5.940000px;}
.ws17{word-spacing:5.994000px;}
.wsdf{word-spacing:6.000000px;}
.wsea{word-spacing:6.048000px;}
.wsab{word-spacing:6.060000px;}
.ws16{word-spacing:6.102000px;}
.ws44{word-spacing:6.120000px;}
.wsaa{word-spacing:6.180000px;}
.wsb4{word-spacing:6.420000px;}
.ws94{word-spacing:6.480000px;}
.wseb{word-spacing:6.534000px;}
.wsdd{word-spacing:6.540000px;}
.wse4{word-spacing:6.588000px;}
.wse5{word-spacing:6.642000px;}
.wsd0{word-spacing:6.660000px;}
.wsd1{word-spacing:6.720000px;}
.wsa8{word-spacing:6.780000px;}
.ws67{word-spacing:6.840000px;}
.wsa4{word-spacing:6.900000px;}
.ws8f{word-spacing:6.960000px;}
.ws15{word-spacing:7.020000px;}
.ws14{word-spacing:7.074000px;}
.ws8e{word-spacing:7.080000px;}
.wscf{word-spacing:7.140000px;}
.wsbd{word-spacing:7.260000px;}
.wsc3{word-spacing:7.320000px;}
.ws11{word-spacing:7.398000px;}
.wsca{word-spacing:7.740000px;}
.wsa3{word-spacing:7.800000px;}
.wsc9{word-spacing:8.100000px;}
.wsbb{word-spacing:8.220000px;}
.wsba{word-spacing:8.280000px;}
.ws9b{word-spacing:8.340000px;}
.ws9c{word-spacing:8.400000px;}
.wsd9{word-spacing:8.520000px;}
.ws6e{word-spacing:8.640000px;}
.wsb0{word-spacing:9.300000px;}
.ws69{word-spacing:9.360000px;}
.wsaf{word-spacing:9.420000px;}
.ws6a{word-spacing:9.480000px;}
.ws59{word-spacing:10.740000px;}
.wsad{word-spacing:10.800000px;}
.wsda{word-spacing:10.980000px;}
.ws47{word-spacing:11.040000px;}
.ws48{word-spacing:11.160000px;}
.wsd4{word-spacing:12.720000px;}
.ws10{word-spacing:14.580000px;}
.ws8c{word-spacing:18.954000px;}
.ws8b{word-spacing:19.170000px;}
.ws8a{word-spacing:19.278000px;}
.wsd6{word-spacing:19.680000px;}
.ws3e{word-spacing:22.680000px;}
.ws1{word-spacing:33.644841px;}
.ws0{word-spacing:33.645441px;}
.ws82{word-spacing:93.504000px;}
.ws80{word-spacing:136.224000px;}
.ws7f{word-spacing:175.680000px;}
.ws81{word-spacing:178.944000px;}
.ws57{word-spacing:369.120000px;}
.ws54{word-spacing:376.896000px;}
.ws4f{word-spacing:392.832000px;}
.ws4d{word-spacing:398.784000px;}
.ws4c{word-spacing:403.776000px;}
.ws56{word-spacing:432.576000px;}
.ws76{word-spacing:438.048000px;}
.ws77{word-spacing:439.248000px;}
.ws75{word-spacing:439.440000px;}
.ws73{word-spacing:451.536000px;}
.ws58{word-spacing:452.352000px;}
.ws7c{word-spacing:452.880000px;}
.ws71{word-spacing:452.928000px;}
.ws52{word-spacing:454.848000px;}
.ws74{word-spacing:456.432000px;}
.ws79{word-spacing:466.368000px;}
.ws51{word-spacing:468.336000px;}
.ws7b{word-spacing:469.872000px;}
.ws53{word-spacing:474.432000px;}
.ws55{word-spacing:476.736000px;}
.ws7e{word-spacing:481.776000px;}
.ws78{word-spacing:483.408000px;}
.ws49{word-spacing:486.288000px;}
.ws4e{word-spacing:492.864000px;}
.ws50{word-spacing:495.168000px;}
.ws4a{word-spacing:507.984000px;}
.ws72{word-spacing:671.088000px;}
.ws7d{word-spacing:689.280000px;}
.ws70{word-spacing:689.616000px;}
.ws7a{word-spacing:702.720000px;}
._c{margin-left:-10.658400px;}
._a{margin-left:-9.293400px;}
._6{margin-left:-7.881600px;}
._b{margin-left:-6.166800px;}
._2{margin-left:-5.140800px;}
._45{margin-left:-4.128000px;}
._8{margin-left:-3.104400px;}
._1{margin-left:-1.917600px;}
._0{width:1.621800px;}
._4{width:2.825400px;}
._3{width:3.855600px;}
._7{width:5.292000px;}
._9{width:6.631200px;}
._f{width:7.635600px;}
._10{width:8.787600px;}
._11{width:9.801600px;}
._e{width:11.097600px;}
._12{width:12.440400px;}
._48{width:14.558400px;}
._4a{width:16.066200px;}
._49{width:17.739000px;}
._29{width:18.775800px;}
._2a{width:19.845600px;}
._13{width:22.368000px;}
._14{width:23.583600px;}
._4b{width:25.700400px;}
._d{width:31.374000px;}
._5{width:36.369600px;}
._47{width:42.249600px;}
._46{width:43.588200px;}
._2b{width:72.717600px;}
._2c{width:89.146200px;}
._16{width:97.632000px;}
._43{width:179.040000px;}
._37{width:191.090400px;}
._38{width:215.232000px;}
._1a{width:265.296000px;}
._3a{width:270.720000px;}
._44{width:278.064000px;}
._42{width:283.008000px;}
._3f{width:299.184000px;}
._15{width:304.176000px;}
._1f{width:312.288000px;}
._21{width:325.344000px;}
._3d{width:336.432000px;}
._35{width:384.048000px;}
._36{width:402.528000px;}
._41{width:404.544000px;}
._18{width:410.685600px;}
._27{width:413.088000px;}
._25{width:415.495800px;}
._26{width:418.032000px;}
._24{width:420.439800px;}
._39{width:423.168000px;}
._23{width:438.000000px;}
._31{width:451.344000px;}
._3e{width:458.064000px;}
._2e{width:464.640000px;}
._40{width:466.032000px;}
._30{width:468.336000px;}
._2d{width:481.824000px;}
._3b{width:485.952000px;}
._22{width:495.600000px;}
._28{width:498.477600px;}
._19{width:503.232000px;}
._3c{width:505.056000px;}
._20{width:545.424000px;}
._1e{width:550.368000px;}
._1b{width:553.248000px;}
._1c{width:616.032000px;}
._1d{width:618.048000px;}
._32{width:671.088000px;}
._17{width:675.360000px;}
._2f{width:689.616000px;}
._34{width:701.520000px;}
._33{width:714.960000px;}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:31.482000px;}
.fs9{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3e{bottom:71.212050px;}
.y3f{bottom:75.040050px;}
.y3d{bottom:94.318200px;}
.y159{bottom:112.790850px;}
.y70{bottom:113.078700px;}
.y9e{bottom:113.078850px;}
.ycf{bottom:120.482850px;}
.ya4{bottom:120.491850px;}
.y158{bottom:133.796850px;}
.y129{bottom:133.808700px;}
.y175{bottom:134.030850px;}
.yfc{bottom:134.072850px;}
.y6f{bottom:134.078700px;}
.y9d{bottom:134.078850px;}
.yf{bottom:138.466050px;}
.yce{bottom:140.287350px;}
.ya3{bottom:140.296350px;}
.ye{bottom:152.862450px;}
.y157{bottom:154.802850px;}
.y128{bottom:154.814700px;}
.y174{bottom:155.036850px;}
.y6e{bottom:155.078700px;}
.y9c{bottom:155.078850px;}
.ycd{bottom:160.091850px;}
.ya2{bottom:160.100850px;}
.yd{bottom:167.258850px;}
.y156{bottom:175.808850px;}
.y127{bottom:175.820700px;}
.y173{bottom:176.042850px;}
.y6d{bottom:176.078700px;}
.yaa{bottom:176.078850px;}
.ycc{bottom:179.896350px;}
.yfb{bottom:181.529400px;}
.yc{bottom:181.658850px;}
.y9b{bottom:189.513600px;}
.yd0{bottom:190.440900px;}
.yac{bottom:190.441050px;}
.y155{bottom:196.814850px;}
.y126{bottom:196.826700px;}
.y172{bottom:197.048850px;}
.y6c{bottom:197.078700px;}
.ya9{bottom:197.078850px;}
.ycb{bottom:199.700850px;}
.ye7{bottom:211.441050px;}
.y154{bottom:217.820850px;}
.y125{bottom:217.832700px;}
.y171{bottom:218.054850px;}
.yfa{bottom:218.072850px;}
.y6b{bottom:218.078700px;}
.ya8{bottom:218.078850px;}
.y9a{bottom:221.811000px;}
.y3a{bottom:224.728950px;}
.ye8{bottom:232.441050px;}
.y29{bottom:232.627950px;}
.y153{bottom:238.826850px;}
.y124{bottom:238.838700px;}
.y170{bottom:239.060850px;}
.yf9{bottom:239.072850px;}
.y6a{bottom:239.078700px;}
.ya7{bottom:239.078850px;}
.y39{bottom:242.724450px;}
.y152{bottom:259.832850px;}
.y123{bottom:259.844700px;}
.y16f{bottom:260.066850px;}
.yf8{bottom:260.072850px;}
.y69{bottom:260.078700px;}
.ya6{bottom:260.078850px;}
.y38{bottom:260.719950px;}
.y28{bottom:273.588900px;}
.y37{bottom:278.715450px;}
.y151{bottom:280.838850px;}
.y122{bottom:280.850700px;}
.yf7{bottom:281.072850px;}
.y68{bottom:281.078700px;}
.y99{bottom:281.078850px;}
.y27{bottom:293.393400px;}
.y36{bottom:296.710950px;}
.y150{bottom:301.844850px;}
.y121{bottom:301.856700px;}
.yf6{bottom:302.072850px;}
.y67{bottom:302.078700px;}
.y98{bottom:302.078850px;}
.y26{bottom:313.197900px;}
.y35{bottom:314.706450px;}
.y14f{bottom:322.850850px;}
.y120{bottom:322.862700px;}
.y66{bottom:323.078700px;}
.y97{bottom:323.078850px;}
.y34{bottom:332.701950px;}
.y25{bottom:333.002400px;}
.y16e{bottom:336.513600px;}
.y14e{bottom:343.856850px;}
.y11f{bottom:343.868700px;}
.y65{bottom:344.078700px;}
.y96{bottom:344.078850px;}
.yf5{bottom:349.529400px;}
.y33{bottom:350.697450px;}
.y24{bottom:352.806900px;}
.y16d{bottom:357.513600px;}
.y14d{bottom:364.862850px;}
.y11e{bottom:364.874700px;}
.y64{bottom:365.078700px;}
.y95{bottom:365.078850px;}
.y32{bottom:368.692950px;}
.y23{bottom:372.611400px;}
.y16c{bottom:378.513600px;}
.y14c{bottom:385.868850px;}
.y11d{bottom:385.880700px;}
.yf4{bottom:386.060850px;}
.y63{bottom:386.078700px;}
.y94{bottom:386.078850px;}
.y31{bottom:386.688450px;}
.y22{bottom:392.415900px;}
.y14b{bottom:406.874850px;}
.y11c{bottom:406.886700px;}
.yf3{bottom:407.066850px;}
.y62{bottom:407.078700px;}
.y93{bottom:407.078850px;}
.y16b{bottom:410.811150px;}
.y21{bottom:412.220400px;}
.y30{bottom:421.693950px;}
.y14a{bottom:427.880850px;}
.y11b{bottom:427.892700px;}
.yf2{bottom:428.072850px;}
.y61{bottom:428.078700px;}
.y92{bottom:428.078850px;}
.y20{bottom:432.024900px;}
.y2f{bottom:439.689450px;}
.y149{bottom:448.886850px;}
.y11a{bottom:448.898700px;}
.y60{bottom:449.078700px;}
.y91{bottom:449.078850px;}
.y1f{bottom:451.829400px;}
.y2e{bottom:457.684950px;}
.ydd{bottom:467.105250px;}
.y148{bottom:469.892850px;}
.y119{bottom:469.904700px;}
.y16a{bottom:469.976850px;}
.y5f{bottom:470.078700px;}
.y90{bottom:470.078850px;}
.y1e{bottom:471.633900px;}
.yf1{bottom:475.529400px;}
.yde{bottom:484.440900px;}
.ydc{bottom:488.009250px;}
.y147{bottom:490.898850px;}
.y118{bottom:490.910700px;}
.y169{bottom:490.982850px;}
.y5e{bottom:491.078700px;}
.y8f{bottom:491.078850px;}
.y1d{bottom:491.438400px;}
.y2d{bottom:492.690450px;}
.ydb{bottom:508.913250px;}
.y2c{bottom:510.690450px;}
.y1c{bottom:511.242900px;}
.y146{bottom:511.904850px;}
.y117{bottom:511.916700px;}
.y168{bottom:511.988850px;}
.yf0{bottom:512.072850px;}
.y5d{bottom:512.078700px;}
.y8e{bottom:512.078850px;}
.y2b{bottom:528.690450px;}
.yda{bottom:529.817250px;}
.y1b{bottom:531.047400px;}
.y145{bottom:532.910850px;}
.y116{bottom:532.922700px;}
.y167{bottom:532.994850px;}
.y5c{bottom:533.078700px;}
.y8d{bottom:533.078850px;}
.y2a{bottom:546.691950px;}
.yc7{bottom:547.441050px;}
.yca{bottom:548.518050px;}
.yd9{bottom:550.721250px;}
.y1a{bottom:550.851900px;}
.y144{bottom:553.916850px;}
.y115{bottom:553.928700px;}
.y166{bottom:554.000850px;}
.y5b{bottom:554.078700px;}
.y8c{bottom:554.078850px;}
.yef{bottom:559.529400px;}
.yc9{bottom:568.322550px;}
.y19{bottom:570.656400px;}
.yd8{bottom:571.625250px;}
.y143{bottom:574.922850px;}
.y114{bottom:574.934700px;}
.y165{bottom:575.006850px;}
.y5a{bottom:575.078700px;}
.y8b{bottom:575.078850px;}
.yc8{bottom:588.127050px;}
.yc6{bottom:588.209100px;}
.y18{bottom:590.460900px;}
.yd7{bottom:592.529250px;}
.y142{bottom:595.928850px;}
.y113{bottom:595.940700px;}
.y164{bottom:596.012850px;}
.y59{bottom:596.078700px;}
.y8a{bottom:596.078850px;}
.yc5{bottom:609.113100px;}
.y17{bottom:610.265400px;}
.ya5{bottom:610.441050px;}
.yd6{bottom:613.433250px;}
.y141{bottom:616.934850px;}
.y112{bottom:616.946700px;}
.y163{bottom:617.018850px;}
.y58{bottom:617.078700px;}
.y89{bottom:617.078850px;}
.ye6{bottom:619.063050px;}
.yee{bottom:622.529400px;}
.yc4{bottom:630.017100px;}
.y16{bottom:630.069900px;}
.yd5{bottom:634.337250px;}
.y140{bottom:637.940850px;}
.y111{bottom:637.952700px;}
.y162{bottom:638.024850px;}
.y57{bottom:638.078700px;}
.y88{bottom:638.078850px;}
.ye5{bottom:638.867550px;}
.y15{bottom:649.874400px;}
.yc3{bottom:650.921100px;}
.ye4{bottom:658.672050px;}
.y13f{bottom:658.946850px;}
.y110{bottom:658.958700px;}
.y161{bottom:659.030850px;}
.yed{bottom:659.072850px;}
.y56{bottom:659.078700px;}
.y87{bottom:659.078850px;}
.yd4{bottom:664.814700px;}
.y14{bottom:669.678900px;}
.yc2{bottom:671.825100px;}
.ye3{bottom:678.476550px;}
.y13e{bottom:679.952850px;}
.y10f{bottom:679.964700px;}
.y160{bottom:680.036850px;}
.y55{bottom:680.078700px;}
.y86{bottom:680.078850px;}
.yd3{bottom:684.619200px;}
.y13{bottom:689.483400px;}
.yc1{bottom:692.729100px;}
.yab{bottom:694.441050px;}
.y13d{bottom:700.958850px;}
.y10e{bottom:700.970700px;}
.y15f{bottom:701.042850px;}
.y54{bottom:701.078700px;}
.y85{bottom:701.078850px;}
.yec{bottom:706.529400px;}
.y12{bottom:709.287900px;}
.yc0{bottom:713.633100px;}
.y13c{bottom:721.964850px;}
.y10d{bottom:721.976700px;}
.y15e{bottom:722.048850px;}
.y53{bottom:722.078700px;}
.y84{bottom:722.078850px;}
.ye2{bottom:734.046600px;}
.ybf{bottom:734.537100px;}
.y11{bottom:740.385300px;}
.y13b{bottom:742.970850px;}
.y10c{bottom:742.982700px;}
.y15d{bottom:743.054850px;}
.y52{bottom:743.078700px;}
.y83{bottom:743.078850px;}
.ye1{bottom:753.851100px;}
.ybe{bottom:755.441100px;}
.y13a{bottom:763.976850px;}
.y10b{bottom:763.988700px;}
.y15c{bottom:764.060850px;}
.y51{bottom:764.078700px;}
.y82{bottom:764.078850px;}
.yeb{bottom:769.937100px;}
.ye0{bottom:773.655600px;}
.ybd{bottom:776.345100px;}
.y139{bottom:784.982850px;}
.y10a{bottom:784.994700px;}
.y15b{bottom:785.066850px;}
.y50{bottom:785.078700px;}
.y81{bottom:785.078850px;}
.ydf{bottom:793.460100px;}
.ybc{bottom:797.249100px;}
.yea{bottom:799.441050px;}
.y138{bottom:805.988850px;}
.y109{bottom:806.000700px;}
.y15a{bottom:806.072850px;}
.y4f{bottom:806.078700px;}
.y80{bottom:806.078850px;}
.ybb{bottom:818.153100px;}
.yb{bottom:819.666900px;}
.y137{bottom:826.994850px;}
.y108{bottom:827.006700px;}
.y4e{bottom:827.078700px;}
.y7f{bottom:827.078850px;}
.ya{bottom:837.666900px;}
.yba{bottom:839.057100px;}
.y136{bottom:848.000850px;}
.y107{bottom:848.012700px;}
.y4d{bottom:848.078700px;}
.y7e{bottom:848.078850px;}
.y9{bottom:855.666900px;}
.yb9{bottom:859.961100px;}
.y135{bottom:869.006850px;}
.y106{bottom:869.018700px;}
.y180{bottom:869.030850px;}
.y4c{bottom:869.078700px;}
.y7d{bottom:869.078850px;}
.y8{bottom:873.666900px;}
.yb8{bottom:880.865100px;}
.y134{bottom:890.012850px;}
.y105{bottom:890.024700px;}
.y17f{bottom:890.036850px;}
.y4b{bottom:890.078700px;}
.y7c{bottom:890.078850px;}
.y7{bottom:891.666900px;}
.yb7{bottom:901.769100px;}
.y133{bottom:911.018850px;}
.y104{bottom:911.030700px;}
.y17e{bottom:911.042850px;}
.y4a{bottom:911.078700px;}
.y7b{bottom:911.078850px;}
.yb6{bottom:922.673100px;}
.ye9{bottom:925.441050px;}
.y6{bottom:926.674800px;}
.y132{bottom:932.024850px;}
.y103{bottom:932.036700px;}
.y17d{bottom:932.048850px;}
.y49{bottom:932.078700px;}
.y7a{bottom:932.078850px;}
.yb5{bottom:943.577100px;}
.y5{bottom:946.474800px;}
.y131{bottom:953.030850px;}
.y102{bottom:953.042700px;}
.y17c{bottom:953.054850px;}
.y48{bottom:953.078700px;}
.y79{bottom:953.078850px;}
.yb4{bottom:964.481100px;}
.ya1{bottom:967.440900px;}
.y130{bottom:974.036850px;}
.y101{bottom:974.048700px;}
.y17b{bottom:974.060850px;}
.y47{bottom:974.078700px;}
.y78{bottom:974.078850px;}
.y4{bottom:983.288550px;}
.yb3{bottom:985.385100px;}
.y12f{bottom:995.042850px;}
.y100{bottom:995.054700px;}
.y17a{bottom:995.066850px;}
.y46{bottom:995.078700px;}
.y77{bottom:995.078850px;}
.yb2{bottom:1006.289100px;}
.y12e{bottom:1016.048850px;}
.yff{bottom:1016.060700px;}
.y179{bottom:1016.072850px;}
.y45{bottom:1016.078700px;}
.y76{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.yb1{bottom:1027.193100px;}
.y12d{bottom:1037.054850px;}
.yfe{bottom:1037.066700px;}
.y44{bottom:1037.078700px;}
.y75{bottom:1037.078850px;}
.yb0{bottom:1048.097100px;}
.y2{bottom:1049.282550px;}
.y12c{bottom:1058.060850px;}
.yfd{bottom:1058.072700px;}
.y43{bottom:1058.078700px;}
.y74{bottom:1058.078850px;}
.y178{bottom:1068.903300px;}
.yaf{bottom:1069.001100px;}
.y12b{bottom:1079.066850px;}
.y42{bottom:1079.078700px;}
.y73{bottom:1079.078850px;}
.y177{bottom:1089.903300px;}
.yd2{bottom:1099.478250px;}
.yae{bottom:1099.478400px;}
.y12a{bottom:1100.072850px;}
.ya0{bottom:1100.078700px;}
.y72{bottom:1100.078850px;}
.y10{bottom:1109.815500px;}
.y41{bottom:1111.570800px;}
.yd1{bottom:1119.282750px;}
.yad{bottom:1119.282900px;}
.y9f{bottom:1121.078700px;}
.y71{bottom:1121.078850px;}
.y176{bottom:1122.200850px;}
.y3c{bottom:1159.189500px;}
.y3b{bottom:1178.689500px;}
.y40{bottom:1178.692050px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h17{height:36.445312px;}
.h15{height:38.226562px;}
.hf{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.hc{height:41.000977px;}
.hb{height:41.107522px;}
.h8{height:43.004883px;}
.he{height:43.057617px;}
.hd{height:43.321289px;}
.h16{height:44.039062px;}
.h12{height:45.556641px;}
.h13{height:45.675024px;}
.h9{height:47.343750px;}
.ha{height:49.543945px;}
.h1a{height:49.567945px;}
.h1b{height:49.879945px;}
.h19{height:50.176758px;}
.h4{height:51.193474px;}
.h14{height:52.078125px;}
.h11{height:55.048828px;}
.h10{height:56.812500px;}
.h18{height:60.553711px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.x3{left:90.987600px;}
.xb{left:107.071650px;}
.xd{left:108.285450px;}
.x6{left:119.878950px;}
.x7{left:122.032500px;}
.x8{left:124.102950px;}
.x5{left:300.189000px;}
.xf{left:304.456350px;}
.xc{left:317.184000px;}
.xe{left:368.272350px;}
.x10{left:372.355950px;}
.x4{left:396.050700px;}
.xa{left:648.911400px;}
.x9{left:681.563400px;}
.x1{left:807.081450px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.282667pt;}
.v1{vertical-align:19.536000pt;}
.lsf{letter-spacing:-6.432000pt;}
.lse{letter-spacing:-2.880000pt;}
.ls7{letter-spacing:-1.013333pt;}
.ls16{letter-spacing:-0.864000pt;}
.ls5{letter-spacing:-0.816000pt;}
.lsa{letter-spacing:-0.746667pt;}
.ls4{letter-spacing:-0.614400pt;}
.ls8{letter-spacing:-0.586667pt;}
.ls9{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.362667pt;}
.ls14{letter-spacing:-0.336000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.288000pt;}
.ls12{letter-spacing:-0.266667pt;}
.ls11{letter-spacing:-0.213333pt;}
.ls1b{letter-spacing:-0.144000pt;}
.ls6{letter-spacing:-0.053333pt;}
.ls1c{letter-spacing:-0.048000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.336000pt;}
.ls1a{letter-spacing:0.586667pt;}
.ls13{letter-spacing:2.293333pt;}
.ls18{letter-spacing:3.302400pt;}
.lsd{letter-spacing:5.493333pt;}
.ls0{letter-spacing:38.383435pt;}
.ls1{letter-spacing:38.383968pt;}
.ls10{letter-spacing:440.277333pt;}
.ws1c{word-spacing:-15.936000pt;}
.wsdb{word-spacing:-14.608000pt;}
.wsf8{word-spacing:-13.493333pt;}
.ws5{word-spacing:-13.280000pt;}
.ws41{word-spacing:-13.226667pt;}
.ws1d{word-spacing:-13.066667pt;}
.wsa7{word-spacing:-12.800000pt;}
.ws2b{word-spacing:-12.746667pt;}
.ws2a{word-spacing:-12.480000pt;}
.wse9{word-spacing:-12.240000pt;}
.ws1e{word-spacing:-12.053333pt;}
.ws60{word-spacing:-11.952000pt;}
.wsdc{word-spacing:-11.904000pt;}
.ws6{word-spacing:-11.760000pt;}
.wsf1{word-spacing:-11.424000pt;}
.wsf0{word-spacing:-11.088000pt;}
.wsef{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.992000pt;}
.wsa{word-spacing:-10.800000pt;}
.ws4b{word-spacing:-10.581333pt;}
.ws8{word-spacing:-10.176000pt;}
.ws9{word-spacing:-9.984000pt;}
.wsb{word-spacing:-9.770667pt;}
.ws3{word-spacing:-9.685333pt;}
.ws1b{word-spacing:-9.600000pt;}
.ws61{word-spacing:-9.072000pt;}
.ws4{word-spacing:-8.793600pt;}
.ws2{word-spacing:-8.549333pt;}
.ws3a{word-spacing:-7.711147pt;}
.wsf7{word-spacing:-6.940032pt;}
.ws62{word-spacing:-5.520000pt;}
.ws45{word-spacing:-5.493333pt;}
.ws65{word-spacing:-5.226667pt;}
.wsa0{word-spacing:-3.093333pt;}
.ws3b{word-spacing:-2.986667pt;}
.ws101{word-spacing:-2.832000pt;}
.ws87{word-spacing:-2.773333pt;}
.ws30{word-spacing:-2.720000pt;}
.wsf2{word-spacing:-2.592000pt;}
.wsb3{word-spacing:-2.560000pt;}
.ws34{word-spacing:-2.506667pt;}
.ws33{word-spacing:-2.453333pt;}
.wsd5{word-spacing:-2.346667pt;}
.wsf6{word-spacing:-2.304000pt;}
.wsb2{word-spacing:-2.293333pt;}
.wsd8{word-spacing:-2.133333pt;}
.wsfe{word-spacing:-2.064000pt;}
.ws98{word-spacing:-2.026667pt;}
.ws96{word-spacing:-1.973333pt;}
.ws21{word-spacing:-1.760000pt;}
.ws97{word-spacing:-1.706667pt;}
.wsf4{word-spacing:-1.680000pt;}
.ws28{word-spacing:-1.653333pt;}
.ws5a{word-spacing:-1.584000pt;}
.wsbe{word-spacing:-1.493333pt;}
.wse7{word-spacing:-1.440000pt;}
.wsb7{word-spacing:-1.386667pt;}
.wsb6{word-spacing:-1.333333pt;}
.wsfa{word-spacing:-1.248000pt;}
.ws18{word-spacing:-1.200000pt;}
.wse6{word-spacing:-1.152000pt;}
.wse2{word-spacing:-1.104000pt;}
.wscb{word-spacing:-1.013333pt;}
.wsbf{word-spacing:-0.960000pt;}
.wsde{word-spacing:-0.853333pt;}
.wsc7{word-spacing:-0.800000pt;}
.ws66{word-spacing:-0.746667pt;}
.ws6f{word-spacing:-0.720000pt;}
.ws6b{word-spacing:-0.693333pt;}
.ws85{word-spacing:-0.640000pt;}
.wsfd{word-spacing:-0.586667pt;}
.wsf3{word-spacing:-0.576000pt;}
.ws24{word-spacing:-0.533333pt;}
.ws99{word-spacing:-0.480000pt;}
.ws5d{word-spacing:-0.426667pt;}
.wsee{word-spacing:-0.336000pt;}
.wsff{word-spacing:-0.320000pt;}
.ws90{word-spacing:-0.213333pt;}
.wse{word-spacing:-0.192000pt;}
.wsb5{word-spacing:-0.160000pt;}
.ws86{word-spacing:-0.106667pt;}
.ws3c{word-spacing:-0.053333pt;}
.wsc{word-spacing:0.000000pt;}
.ws100{word-spacing:0.048000pt;}
.ws23{word-spacing:0.053333pt;}
.ws19{word-spacing:0.144000pt;}
.ws93{word-spacing:0.213333pt;}
.wsfc{word-spacing:0.240000pt;}
.wsf5{word-spacing:0.288000pt;}
.ws31{word-spacing:0.320000pt;}
.wse3{word-spacing:0.336000pt;}
.wsd{word-spacing:0.362667pt;}
.ws6d{word-spacing:0.426667pt;}
.ws40{word-spacing:0.480000pt;}
.ws36{word-spacing:0.533333pt;}
.ws2d{word-spacing:0.586667pt;}
.wsf{word-spacing:0.614400pt;}
.ws83{word-spacing:0.640000pt;}
.ws37{word-spacing:0.746667pt;}
.wsb8{word-spacing:0.800000pt;}
.ws1a{word-spacing:0.816000pt;}
.ws2f{word-spacing:0.853333pt;}
.wse8{word-spacing:0.864000pt;}
.wsa9{word-spacing:0.906667pt;}
.ws32{word-spacing:1.013333pt;}
.wsce{word-spacing:1.066667pt;}
.wsfb{word-spacing:1.104000pt;}
.ws29{word-spacing:1.333333pt;}
.wsd7{word-spacing:1.386667pt;}
.wscc{word-spacing:1.440000pt;}
.wscd{word-spacing:1.493333pt;}
.ws12{word-spacing:1.536000pt;}
.wsc4{word-spacing:1.600000pt;}
.wsed{word-spacing:1.632000pt;}
.ws3f{word-spacing:1.653333pt;}
.ws2c{word-spacing:1.706667pt;}
.ws5c{word-spacing:1.760000pt;}
.ws64{word-spacing:1.872000pt;}
.ws63{word-spacing:1.920000pt;}
.ws89{word-spacing:2.080000pt;}
.ws9f{word-spacing:2.112000pt;}
.ws88{word-spacing:2.133333pt;}
.wsb1{word-spacing:2.240000pt;}
.ws91{word-spacing:2.293333pt;}
.ws39{word-spacing:2.304000pt;}
.ws9e{word-spacing:2.400000pt;}
.ws9d{word-spacing:2.448000pt;}
.ws35{word-spacing:2.453333pt;}
.ws1f{word-spacing:2.506667pt;}
.wsc1{word-spacing:2.560000pt;}
.wsc2{word-spacing:2.613333pt;}
.wsae{word-spacing:2.666667pt;}
.wsac{word-spacing:2.720000pt;}
.ws9a{word-spacing:2.773333pt;}
.ws92{word-spacing:2.826667pt;}
.wsec{word-spacing:2.976000pt;}
.ws84{word-spacing:3.040000pt;}
.wsd3{word-spacing:3.093333pt;}
.wsd2{word-spacing:3.146667pt;}
.ws26{word-spacing:3.200000pt;}
.ws3d{word-spacing:3.306667pt;}
.ws38{word-spacing:3.360000pt;}
.wse0{word-spacing:3.408000pt;}
.ws22{word-spacing:3.413333pt;}
.wsa1{word-spacing:3.466667pt;}
.wsa6{word-spacing:3.504000pt;}
.wsa2{word-spacing:3.520000pt;}
.ws95{word-spacing:3.680000pt;}
.ws6c{word-spacing:3.733333pt;}
.ws5e{word-spacing:3.786667pt;}
.ws20{word-spacing:3.840000pt;}
.ws5b{word-spacing:3.893333pt;}
.wsf9{word-spacing:3.936000pt;}
.ws2e{word-spacing:3.946667pt;}
.wsc6{word-spacing:4.000000pt;}
.wsc8{word-spacing:4.106667pt;}
.ws46{word-spacing:4.213333pt;}
.ws13{word-spacing:4.272000pt;}
.ws43{word-spacing:4.320000pt;}
.ws8d{word-spacing:4.368000pt;}
.ws42{word-spacing:4.373333pt;}
.ws68{word-spacing:4.533333pt;}
.ws27{word-spacing:4.586667pt;}
.wsbc{word-spacing:4.640000pt;}
.wsb9{word-spacing:4.746667pt;}
.wsc5{word-spacing:4.906667pt;}
.wse1{word-spacing:4.992000pt;}
.ws25{word-spacing:5.013333pt;}
.wsc0{word-spacing:5.066667pt;}
.ws5f{word-spacing:5.226667pt;}
.wsa5{word-spacing:5.280000pt;}
.ws17{word-spacing:5.328000pt;}
.wsdf{word-spacing:5.333333pt;}
.wsea{word-spacing:5.376000pt;}
.wsab{word-spacing:5.386667pt;}
.ws16{word-spacing:5.424000pt;}
.ws44{word-spacing:5.440000pt;}
.wsaa{word-spacing:5.493333pt;}
.wsb4{word-spacing:5.706667pt;}
.ws94{word-spacing:5.760000pt;}
.wseb{word-spacing:5.808000pt;}
.wsdd{word-spacing:5.813333pt;}
.wse4{word-spacing:5.856000pt;}
.wse5{word-spacing:5.904000pt;}
.wsd0{word-spacing:5.920000pt;}
.wsd1{word-spacing:5.973333pt;}
.wsa8{word-spacing:6.026667pt;}
.ws67{word-spacing:6.080000pt;}
.wsa4{word-spacing:6.133333pt;}
.ws8f{word-spacing:6.186667pt;}
.ws15{word-spacing:6.240000pt;}
.ws14{word-spacing:6.288000pt;}
.ws8e{word-spacing:6.293333pt;}
.wscf{word-spacing:6.346667pt;}
.wsbd{word-spacing:6.453333pt;}
.wsc3{word-spacing:6.506667pt;}
.ws11{word-spacing:6.576000pt;}
.wsca{word-spacing:6.880000pt;}
.wsa3{word-spacing:6.933333pt;}
.wsc9{word-spacing:7.200000pt;}
.wsbb{word-spacing:7.306667pt;}
.wsba{word-spacing:7.360000pt;}
.ws9b{word-spacing:7.413333pt;}
.ws9c{word-spacing:7.466667pt;}
.wsd9{word-spacing:7.573333pt;}
.ws6e{word-spacing:7.680000pt;}
.wsb0{word-spacing:8.266667pt;}
.ws69{word-spacing:8.320000pt;}
.wsaf{word-spacing:8.373333pt;}
.ws6a{word-spacing:8.426667pt;}
.ws59{word-spacing:9.546667pt;}
.wsad{word-spacing:9.600000pt;}
.wsda{word-spacing:9.760000pt;}
.ws47{word-spacing:9.813333pt;}
.ws48{word-spacing:9.920000pt;}
.wsd4{word-spacing:11.306667pt;}
.ws10{word-spacing:12.960000pt;}
.ws8c{word-spacing:16.848000pt;}
.ws8b{word-spacing:17.040000pt;}
.ws8a{word-spacing:17.136000pt;}
.wsd6{word-spacing:17.493333pt;}
.ws3e{word-spacing:20.160000pt;}
.ws1{word-spacing:29.906525pt;}
.ws0{word-spacing:29.907059pt;}
.ws82{word-spacing:83.114667pt;}
.ws80{word-spacing:121.088000pt;}
.ws7f{word-spacing:156.160000pt;}
.ws81{word-spacing:159.061333pt;}
.ws57{word-spacing:328.106667pt;}
.ws54{word-spacing:335.018667pt;}
.ws4f{word-spacing:349.184000pt;}
.ws4d{word-spacing:354.474667pt;}
.ws4c{word-spacing:358.912000pt;}
.ws56{word-spacing:384.512000pt;}
.ws76{word-spacing:389.376000pt;}
.ws77{word-spacing:390.442667pt;}
.ws75{word-spacing:390.613333pt;}
.ws73{word-spacing:401.365333pt;}
.ws58{word-spacing:402.090667pt;}
.ws7c{word-spacing:402.560000pt;}
.ws71{word-spacing:402.602667pt;}
.ws52{word-spacing:404.309333pt;}
.ws74{word-spacing:405.717333pt;}
.ws79{word-spacing:414.549333pt;}
.ws51{word-spacing:416.298667pt;}
.ws7b{word-spacing:417.664000pt;}
.ws53{word-spacing:421.717333pt;}
.ws55{word-spacing:423.765333pt;}
.ws7e{word-spacing:428.245333pt;}
.ws78{word-spacing:429.696000pt;}
.ws49{word-spacing:432.256000pt;}
.ws4e{word-spacing:438.101333pt;}
.ws50{word-spacing:440.149333pt;}
.ws4a{word-spacing:451.541333pt;}
.ws72{word-spacing:596.522667pt;}
.ws7d{word-spacing:612.693333pt;}
.ws70{word-spacing:612.992000pt;}
.ws7a{word-spacing:624.640000pt;}
._c{margin-left:-9.474133pt;}
._a{margin-left:-8.260800pt;}
._6{margin-left:-7.005867pt;}
._b{margin-left:-5.481600pt;}
._2{margin-left:-4.569600pt;}
._45{margin-left:-3.669333pt;}
._8{margin-left:-2.759467pt;}
._1{margin-left:-1.704533pt;}
._0{width:1.441600pt;}
._4{width:2.511467pt;}
._3{width:3.427200pt;}
._7{width:4.704000pt;}
._9{width:5.894400pt;}
._f{width:6.787200pt;}
._10{width:7.811200pt;}
._11{width:8.712533pt;}
._e{width:9.864533pt;}
._12{width:11.058133pt;}
._48{width:12.940800pt;}
._4a{width:14.281067pt;}
._49{width:15.768000pt;}
._29{width:16.689600pt;}
._2a{width:17.640533pt;}
._13{width:19.882667pt;}
._14{width:20.963200pt;}
._4b{width:22.844800pt;}
._d{width:27.888000pt;}
._5{width:32.328533pt;}
._47{width:37.555200pt;}
._46{width:38.745067pt;}
._2b{width:64.637867pt;}
._2c{width:79.241067pt;}
._16{width:86.784000pt;}
._43{width:159.146667pt;}
._37{width:169.858133pt;}
._38{width:191.317333pt;}
._1a{width:235.818667pt;}
._3a{width:240.640000pt;}
._44{width:247.168000pt;}
._42{width:251.562667pt;}
._3f{width:265.941333pt;}
._15{width:270.378667pt;}
._1f{width:277.589333pt;}
._21{width:289.194667pt;}
._3d{width:299.050667pt;}
._35{width:341.376000pt;}
._36{width:357.802667pt;}
._41{width:359.594667pt;}
._18{width:365.053867pt;}
._27{width:367.189333pt;}
._25{width:369.329600pt;}
._26{width:371.584000pt;}
._24{width:373.724267pt;}
._39{width:376.149333pt;}
._23{width:389.333333pt;}
._31{width:401.194667pt;}
._3e{width:407.168000pt;}
._2e{width:413.013333pt;}
._40{width:414.250667pt;}
._30{width:416.298667pt;}
._2d{width:428.288000pt;}
._3b{width:431.957333pt;}
._22{width:440.533333pt;}
._28{width:443.091200pt;}
._19{width:447.317333pt;}
._3c{width:448.938667pt;}
._20{width:484.821333pt;}
._1e{width:489.216000pt;}
._1b{width:491.776000pt;}
._1c{width:547.584000pt;}
._1d{width:549.376000pt;}
._32{width:596.522667pt;}
._17{width:600.320000pt;}
._2f{width:612.992000pt;}
._34{width:623.573333pt;}
._33{width:635.520000pt;}
.fsa{font-size:27.984000pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3e{bottom:63.299600pt;}
.y3f{bottom:66.702267pt;}
.y3d{bottom:83.838400pt;}
.y159{bottom:100.258533pt;}
.y70{bottom:100.514400pt;}
.y9e{bottom:100.514533pt;}
.ycf{bottom:107.095867pt;}
.ya4{bottom:107.103867pt;}
.y158{bottom:118.930533pt;}
.y129{bottom:118.941067pt;}
.y175{bottom:119.138533pt;}
.yfc{bottom:119.175867pt;}
.y6f{bottom:119.181067pt;}
.y9d{bottom:119.181200pt;}
.yf{bottom:123.080933pt;}
.yce{bottom:124.699867pt;}
.ya3{bottom:124.707867pt;}
.ye{bottom:135.877733pt;}
.y157{bottom:137.602533pt;}
.y128{bottom:137.613067pt;}
.y174{bottom:137.810533pt;}
.y6e{bottom:137.847733pt;}
.y9c{bottom:137.847867pt;}
.ycd{bottom:142.303867pt;}
.ya2{bottom:142.311867pt;}
.yd{bottom:148.674533pt;}
.y156{bottom:156.274533pt;}
.y127{bottom:156.285067pt;}
.y173{bottom:156.482533pt;}
.y6d{bottom:156.514400pt;}
.yaa{bottom:156.514533pt;}
.ycc{bottom:159.907867pt;}
.yfb{bottom:161.359467pt;}
.yc{bottom:161.474533pt;}
.y9b{bottom:168.456533pt;}
.yd0{bottom:169.280800pt;}
.yac{bottom:169.280933pt;}
.y155{bottom:174.946533pt;}
.y126{bottom:174.957067pt;}
.y172{bottom:175.154533pt;}
.y6c{bottom:175.181067pt;}
.ya9{bottom:175.181200pt;}
.ycb{bottom:177.511867pt;}
.ye7{bottom:187.947600pt;}
.y154{bottom:193.618533pt;}
.y125{bottom:193.629067pt;}
.y171{bottom:193.826533pt;}
.yfa{bottom:193.842533pt;}
.y6b{bottom:193.847733pt;}
.ya8{bottom:193.847867pt;}
.y9a{bottom:197.165333pt;}
.y3a{bottom:199.759067pt;}
.ye8{bottom:206.614267pt;}
.y29{bottom:206.780400pt;}
.y153{bottom:212.290533pt;}
.y124{bottom:212.301067pt;}
.y170{bottom:212.498533pt;}
.yf9{bottom:212.509200pt;}
.y6a{bottom:212.514400pt;}
.ya7{bottom:212.514533pt;}
.y39{bottom:215.755067pt;}
.y152{bottom:230.962533pt;}
.y123{bottom:230.973067pt;}
.y16f{bottom:231.170533pt;}
.yf8{bottom:231.175867pt;}
.y69{bottom:231.181067pt;}
.ya6{bottom:231.181200pt;}
.y38{bottom:231.751067pt;}
.y28{bottom:243.190133pt;}
.y37{bottom:247.747067pt;}
.y151{bottom:249.634533pt;}
.y122{bottom:249.645067pt;}
.yf7{bottom:249.842533pt;}
.y68{bottom:249.847733pt;}
.y99{bottom:249.847867pt;}
.y27{bottom:260.794133pt;}
.y36{bottom:263.743067pt;}
.y150{bottom:268.306533pt;}
.y121{bottom:268.317067pt;}
.yf6{bottom:268.509200pt;}
.y67{bottom:268.514400pt;}
.y98{bottom:268.514533pt;}
.y26{bottom:278.398133pt;}
.y35{bottom:279.739067pt;}
.y14f{bottom:286.978533pt;}
.y120{bottom:286.989067pt;}
.y66{bottom:287.181067pt;}
.y97{bottom:287.181200pt;}
.y34{bottom:295.735067pt;}
.y25{bottom:296.002133pt;}
.y16e{bottom:299.123200pt;}
.y14e{bottom:305.650533pt;}
.y11f{bottom:305.661067pt;}
.y65{bottom:305.847733pt;}
.y96{bottom:305.847867pt;}
.yf5{bottom:310.692800pt;}
.y33{bottom:311.731067pt;}
.y24{bottom:313.606133pt;}
.y16d{bottom:317.789867pt;}
.y14d{bottom:324.322533pt;}
.y11e{bottom:324.333067pt;}
.y64{bottom:324.514400pt;}
.y95{bottom:324.514533pt;}
.y32{bottom:327.727067pt;}
.y23{bottom:331.210133pt;}
.y16c{bottom:336.456533pt;}
.y14c{bottom:342.994533pt;}
.y11d{bottom:343.005067pt;}
.yf4{bottom:343.165200pt;}
.y63{bottom:343.181067pt;}
.y94{bottom:343.181200pt;}
.y31{bottom:343.723067pt;}
.y22{bottom:348.814133pt;}
.y14b{bottom:361.666533pt;}
.y11c{bottom:361.677067pt;}
.yf3{bottom:361.837200pt;}
.y62{bottom:361.847733pt;}
.y93{bottom:361.847867pt;}
.y16b{bottom:365.165467pt;}
.y21{bottom:366.418133pt;}
.y30{bottom:374.839067pt;}
.y14a{bottom:380.338533pt;}
.y11b{bottom:380.349067pt;}
.yf2{bottom:380.509200pt;}
.y61{bottom:380.514400pt;}
.y92{bottom:380.514533pt;}
.y20{bottom:384.022133pt;}
.y2f{bottom:390.835067pt;}
.y149{bottom:399.010533pt;}
.y11a{bottom:399.021067pt;}
.y60{bottom:399.181067pt;}
.y91{bottom:399.181200pt;}
.y1f{bottom:401.626133pt;}
.y2e{bottom:406.831067pt;}
.ydd{bottom:415.204667pt;}
.y148{bottom:417.682533pt;}
.y119{bottom:417.693067pt;}
.y16a{bottom:417.757200pt;}
.y5f{bottom:417.847733pt;}
.y90{bottom:417.847867pt;}
.y1e{bottom:419.230133pt;}
.yf1{bottom:422.692800pt;}
.yde{bottom:430.614133pt;}
.ydc{bottom:433.786000pt;}
.y147{bottom:436.354533pt;}
.y118{bottom:436.365067pt;}
.y169{bottom:436.429200pt;}
.y5e{bottom:436.514400pt;}
.y8f{bottom:436.514533pt;}
.y1d{bottom:436.834133pt;}
.y2d{bottom:437.947067pt;}
.ydb{bottom:452.367333pt;}
.y2c{bottom:453.947067pt;}
.y1c{bottom:454.438133pt;}
.y146{bottom:455.026533pt;}
.y117{bottom:455.037067pt;}
.y168{bottom:455.101200pt;}
.yf0{bottom:455.175867pt;}
.y5d{bottom:455.181067pt;}
.y8e{bottom:455.181200pt;}
.y2b{bottom:469.947067pt;}
.yda{bottom:470.948667pt;}
.y1b{bottom:472.042133pt;}
.y145{bottom:473.698533pt;}
.y116{bottom:473.709067pt;}
.y167{bottom:473.773200pt;}
.y5c{bottom:473.847733pt;}
.y8d{bottom:473.847867pt;}
.y2a{bottom:485.948400pt;}
.yc7{bottom:486.614267pt;}
.yca{bottom:487.571600pt;}
.yd9{bottom:489.530000pt;}
.y1a{bottom:489.646133pt;}
.y144{bottom:492.370533pt;}
.y115{bottom:492.381067pt;}
.y166{bottom:492.445200pt;}
.y5b{bottom:492.514400pt;}
.y8c{bottom:492.514533pt;}
.yef{bottom:497.359467pt;}
.yc9{bottom:505.175600pt;}
.y19{bottom:507.250133pt;}
.yd8{bottom:508.111333pt;}
.y143{bottom:511.042533pt;}
.y114{bottom:511.053067pt;}
.y165{bottom:511.117200pt;}
.y5a{bottom:511.181067pt;}
.y8b{bottom:511.181200pt;}
.yc8{bottom:522.779600pt;}
.yc6{bottom:522.852533pt;}
.y18{bottom:524.854133pt;}
.yd7{bottom:526.692667pt;}
.y142{bottom:529.714533pt;}
.y113{bottom:529.725067pt;}
.y164{bottom:529.789200pt;}
.y59{bottom:529.847733pt;}
.y8a{bottom:529.847867pt;}
.yc5{bottom:541.433867pt;}
.y17{bottom:542.458133pt;}
.ya5{bottom:542.614267pt;}
.yd6{bottom:545.274000pt;}
.y141{bottom:548.386533pt;}
.y112{bottom:548.397067pt;}
.y163{bottom:548.461200pt;}
.y58{bottom:548.514400pt;}
.y89{bottom:548.514533pt;}
.ye6{bottom:550.278267pt;}
.yee{bottom:553.359467pt;}
.yc4{bottom:560.015200pt;}
.y16{bottom:560.062133pt;}
.yd5{bottom:563.855333pt;}
.y140{bottom:567.058533pt;}
.y111{bottom:567.069067pt;}
.y162{bottom:567.133200pt;}
.y57{bottom:567.181067pt;}
.y88{bottom:567.181200pt;}
.ye5{bottom:567.882267pt;}
.y15{bottom:577.666133pt;}
.yc3{bottom:578.596533pt;}
.ye4{bottom:585.486267pt;}
.y13f{bottom:585.730533pt;}
.y110{bottom:585.741067pt;}
.y161{bottom:585.805200pt;}
.yed{bottom:585.842533pt;}
.y56{bottom:585.847733pt;}
.y87{bottom:585.847867pt;}
.yd4{bottom:590.946400pt;}
.y14{bottom:595.270133pt;}
.yc2{bottom:597.177867pt;}
.ye3{bottom:603.090267pt;}
.y13e{bottom:604.402533pt;}
.y10f{bottom:604.413067pt;}
.y160{bottom:604.477200pt;}
.y55{bottom:604.514400pt;}
.y86{bottom:604.514533pt;}
.yd3{bottom:608.550400pt;}
.y13{bottom:612.874133pt;}
.yc1{bottom:615.759200pt;}
.yab{bottom:617.280933pt;}
.y13d{bottom:623.074533pt;}
.y10e{bottom:623.085067pt;}
.y15f{bottom:623.149200pt;}
.y54{bottom:623.181067pt;}
.y85{bottom:623.181200pt;}
.yec{bottom:628.026133pt;}
.y12{bottom:630.478133pt;}
.yc0{bottom:634.340533pt;}
.y13c{bottom:641.746533pt;}
.y10d{bottom:641.757067pt;}
.y15e{bottom:641.821200pt;}
.y53{bottom:641.847733pt;}
.y84{bottom:641.847867pt;}
.ye2{bottom:652.485867pt;}
.ybf{bottom:652.921867pt;}
.y11{bottom:658.120267pt;}
.y13b{bottom:660.418533pt;}
.y10c{bottom:660.429067pt;}
.y15d{bottom:660.493200pt;}
.y52{bottom:660.514400pt;}
.y83{bottom:660.514533pt;}
.ye1{bottom:670.089867pt;}
.ybe{bottom:671.503200pt;}
.y13a{bottom:679.090533pt;}
.y10b{bottom:679.101067pt;}
.y15c{bottom:679.165200pt;}
.y51{bottom:679.181067pt;}
.y82{bottom:679.181200pt;}
.yeb{bottom:684.388533pt;}
.ye0{bottom:687.693867pt;}
.ybd{bottom:690.084533pt;}
.y139{bottom:697.762533pt;}
.y10a{bottom:697.773067pt;}
.y15b{bottom:697.837200pt;}
.y50{bottom:697.847733pt;}
.y81{bottom:697.847867pt;}
.ydf{bottom:705.297867pt;}
.ybc{bottom:708.665867pt;}
.yea{bottom:710.614267pt;}
.y138{bottom:716.434533pt;}
.y109{bottom:716.445067pt;}
.y15a{bottom:716.509200pt;}
.y4f{bottom:716.514400pt;}
.y80{bottom:716.514533pt;}
.ybb{bottom:727.247200pt;}
.yb{bottom:728.592800pt;}
.y137{bottom:735.106533pt;}
.y108{bottom:735.117067pt;}
.y4e{bottom:735.181067pt;}
.y7f{bottom:735.181200pt;}
.ya{bottom:744.592800pt;}
.yba{bottom:745.828533pt;}
.y136{bottom:753.778533pt;}
.y107{bottom:753.789067pt;}
.y4d{bottom:753.847733pt;}
.y7e{bottom:753.847867pt;}
.y9{bottom:760.592800pt;}
.yb9{bottom:764.409867pt;}
.y135{bottom:772.450533pt;}
.y106{bottom:772.461067pt;}
.y180{bottom:772.471867pt;}
.y4c{bottom:772.514400pt;}
.y7d{bottom:772.514533pt;}
.y8{bottom:776.592800pt;}
.yb8{bottom:782.991200pt;}
.y134{bottom:791.122533pt;}
.y105{bottom:791.133067pt;}
.y17f{bottom:791.143867pt;}
.y4b{bottom:791.181067pt;}
.y7c{bottom:791.181200pt;}
.y7{bottom:792.592800pt;}
.yb7{bottom:801.572533pt;}
.y133{bottom:809.794533pt;}
.y104{bottom:809.805067pt;}
.y17e{bottom:809.815867pt;}
.y4a{bottom:809.847733pt;}
.y7b{bottom:809.847867pt;}
.yb6{bottom:820.153867pt;}
.ye9{bottom:822.614267pt;}
.y6{bottom:823.710933pt;}
.y132{bottom:828.466533pt;}
.y103{bottom:828.477067pt;}
.y17d{bottom:828.487867pt;}
.y49{bottom:828.514400pt;}
.y7a{bottom:828.514533pt;}
.yb5{bottom:838.735200pt;}
.y5{bottom:841.310933pt;}
.y131{bottom:847.138533pt;}
.y102{bottom:847.149067pt;}
.y17c{bottom:847.159867pt;}
.y48{bottom:847.181067pt;}
.y79{bottom:847.181200pt;}
.yb4{bottom:857.316533pt;}
.ya1{bottom:859.947467pt;}
.y130{bottom:865.810533pt;}
.y101{bottom:865.821067pt;}
.y17b{bottom:865.831867pt;}
.y47{bottom:865.847733pt;}
.y78{bottom:865.847867pt;}
.y4{bottom:874.034267pt;}
.yb3{bottom:875.897867pt;}
.y12f{bottom:884.482533pt;}
.y100{bottom:884.493067pt;}
.y17a{bottom:884.503867pt;}
.y46{bottom:884.514400pt;}
.y77{bottom:884.514533pt;}
.yb2{bottom:894.479200pt;}
.y12e{bottom:903.154533pt;}
.yff{bottom:903.165067pt;}
.y179{bottom:903.175867pt;}
.y45{bottom:903.181067pt;}
.y76{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.yb1{bottom:913.060533pt;}
.y12d{bottom:921.826533pt;}
.yfe{bottom:921.837067pt;}
.y44{bottom:921.847733pt;}
.y75{bottom:921.847867pt;}
.yb0{bottom:931.641867pt;}
.y2{bottom:932.695600pt;}
.y12c{bottom:940.498533pt;}
.yfd{bottom:940.509067pt;}
.y43{bottom:940.514400pt;}
.y74{bottom:940.514533pt;}
.y178{bottom:950.136267pt;}
.yaf{bottom:950.223200pt;}
.y12b{bottom:959.170533pt;}
.y42{bottom:959.181067pt;}
.y73{bottom:959.181200pt;}
.y177{bottom:968.802933pt;}
.yd2{bottom:977.314000pt;}
.yae{bottom:977.314133pt;}
.y12a{bottom:977.842533pt;}
.ya0{bottom:977.847733pt;}
.y72{bottom:977.847867pt;}
.y10{bottom:986.502667pt;}
.y41{bottom:988.062933pt;}
.yd1{bottom:994.918000pt;}
.yad{bottom:994.918133pt;}
.y9f{bottom:996.514400pt;}
.y71{bottom:996.514533pt;}
.y176{bottom:997.511867pt;}
.y3c{bottom:1030.390667pt;}
.y3b{bottom:1047.724000pt;}
.y40{bottom:1047.726267pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h17{height:32.395833pt;}
.h15{height:33.979167pt;}
.hf{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.hc{height:36.445312pt;}
.hb{height:36.540019pt;}
.h8{height:38.226562pt;}
.he{height:38.273438pt;}
.hd{height:38.507812pt;}
.h16{height:39.145833pt;}
.h12{height:40.494792pt;}
.h13{height:40.600021pt;}
.h9{height:42.083333pt;}
.ha{height:44.039062pt;}
.h1a{height:44.060396pt;}
.h1b{height:44.337729pt;}
.h19{height:44.601562pt;}
.h4{height:45.505310pt;}
.h14{height:46.291667pt;}
.h11{height:48.932292pt;}
.h10{height:50.500000pt;}
.h18{height:53.825521pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.x3{left:80.877867pt;}
.xb{left:95.174800pt;}
.xd{left:96.253733pt;}
.x6{left:106.559067pt;}
.x7{left:108.473333pt;}
.x8{left:110.313733pt;}
.x5{left:266.834667pt;}
.xf{left:270.627867pt;}
.xc{left:281.941333pt;}
.xe{left:327.353200pt;}
.x10{left:330.983067pt;}
.x4{left:352.045067pt;}
.xa{left:576.810133pt;}
.x9{left:605.834133pt;}
.x1{left:717.405733pt;}
}




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