
    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_5d89d07d8241f5ee8ead9179.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_b6d836c11487750f11f8d911.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_83796b52b5d9ff1e0ad682a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.964861;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_d4b57e9e2444920cd15d3a26.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.102051;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_d14b2028b5dc351f4620629c.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_1b41850152a29d2d850e91bd.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_ef5d0d50034770f788f49d80.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_a866f552080df20915bfa385.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0808c3573b3ee6e16875d40d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.102051;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_365168038c5169c96279141a.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_d3892a8da046c292d63191fc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.964863;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_7c92acf72c7b577435f9c191.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.976113;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_6693e0c35bedc46dea007cb7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.731122;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_733f40f284f8633774367264.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.929688;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_c0aa42ce11fd0156702b2adb.woff2')format("woff");}.fff{font-family:fff;line-height:0.689941;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_aefc404cf551eb2230d01285.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.882324;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_5f2fb4abd2dbe567cb293ac5.woff2')format("woff");}.ff11{font-family:ff11;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;}
.m3{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);}
.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;}
.v6{vertical-align:-15.200400px;}
.v4{vertical-align:-14.187180px;}
.v3{vertical-align:-8.309400px;}
.v5{vertical-align:-6.890400px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:11.357856px;}
.v1{vertical-align:21.978000px;}
.v8{vertical-align:36.162000px;}
.lsd{letter-spacing:-7.236000px;}
.lsb{letter-spacing:-3.240000px;}
.ls6{letter-spacing:-0.918000px;}
.ls1d{letter-spacing:-0.840000px;}
.ls5{letter-spacing:-0.691200px;}
.lsc{letter-spacing:-0.540000px;}
.ls20{letter-spacing:-0.480000px;}
.ls3{letter-spacing:-0.408000px;}
.ls1e{letter-spacing:-0.252000px;}
.ls1f{letter-spacing:-0.240000px;}
.ls4{letter-spacing:-0.204000px;}
.ls2{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.026690px;}
.ls13{letter-spacing:0.027290px;}
.ls10{letter-spacing:0.030290px;}
.ls11{letter-spacing:0.030890px;}
.ls17{letter-spacing:0.033890px;}
.ls1a{letter-spacing:0.037090px;}
.ls18{letter-spacing:0.067490px;}
.ls12{letter-spacing:0.101100px;}
.lse{letter-spacing:0.300000px;}
.ls7{letter-spacing:0.420000px;}
.lsf{letter-spacing:0.459000px;}
.ls1{letter-spacing:1.296000px;}
.lsa{letter-spacing:1.620000px;}
.ls9{letter-spacing:5.535000px;}
.ls8{letter-spacing:7.080000px;}
.ls0{letter-spacing:43.181364px;}
.ls16{letter-spacing:90.899700px;}
.ls1c{letter-spacing:147.420000px;}
.ls1b{letter-spacing:155.946000px;}
.ls14{letter-spacing:397.443714px;}
.ls19{letter-spacing:1346.379180px;}
.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;}
}
.ws47{word-spacing:-60.000000px;}
.ws94{word-spacing:-40.534800px;}
.ws5{word-spacing:-17.928000px;}
.wsdd{word-spacing:-16.434000px;}
.ws2c{word-spacing:-16.302000px;}
.ws4{word-spacing:-14.940000px;}
.ws2b{word-spacing:-14.880000px;}
.wsdc{word-spacing:-14.820000px;}
.ws6{word-spacing:-14.700000px;}
.wsdb{word-spacing:-14.640000px;}
.ws51{word-spacing:-13.446000px;}
.wsd3{word-spacing:-13.440000px;}
.wsef{word-spacing:-13.392000px;}
.ws96{word-spacing:-13.230000px;}
.wsea{word-spacing:-12.660000px;}
.wse2{word-spacing:-12.600000px;}
.ws7{word-spacing:-12.366000px;}
.wsa{word-spacing:-12.150000px;}
.ws8{word-spacing:-11.448000px;}
.ws9{word-spacing:-11.232000px;}
.wsb{word-spacing:-10.992000px;}
.ws2a{word-spacing:-10.800000px;}
.wsc4{word-spacing:-10.416000px;}
.ws52{word-spacing:-10.206000px;}
.wsba{word-spacing:-10.164000px;}
.ws3{word-spacing:-9.892800px;}
.ws2{word-spacing:-9.618000px;}
.wsde{word-spacing:-9.540000px;}
.wsda{word-spacing:-8.820000px;}
.ws59{word-spacing:-8.675040px;}
.ws95{word-spacing:-8.461650px;}
.wsd5{word-spacing:-8.100000px;}
.ws48{word-spacing:-7.140000px;}
.ws49{word-spacing:-7.080000px;}
.wse9{word-spacing:-6.660000px;}
.ws8a{word-spacing:-6.480000px;}
.ws3b{word-spacing:-6.300000px;}
.ws73{word-spacing:-6.210000px;}
.wse5{word-spacing:-6.060000px;}
.wsd6{word-spacing:-5.580000px;}
.wsd7{word-spacing:-5.160000px;}
.wsd9{word-spacing:-4.980000px;}
.wse8{word-spacing:-4.920000px;}
.ws11c{word-spacing:-3.888000px;}
.wsec{word-spacing:-3.186000px;}
.wsdf{word-spacing:-2.940000px;}
.ws86{word-spacing:-2.880000px;}
.ws90{word-spacing:-2.760000px;}
.ws8f{word-spacing:-2.700000px;}
.ws116{word-spacing:-2.646000px;}
.ws21{word-spacing:-2.640000px;}
.wsf4{word-spacing:-2.538000px;}
.ws91{word-spacing:-2.400000px;}
.wsed{word-spacing:-2.322000px;}
.wsb5{word-spacing:-2.280000px;}
.ws4b{word-spacing:-2.220000px;}
.ws63{word-spacing:-2.100000px;}
.wsa2{word-spacing:-2.040000px;}
.ws50{word-spacing:-1.980000px;}
.ws5c{word-spacing:-1.920000px;}
.ws45{word-spacing:-1.914000px;}
.ws71{word-spacing:-1.860000px;}
.ws10d{word-spacing:-1.836000px;}
.ws1d{word-spacing:-1.680000px;}
.wsac{word-spacing:-1.620000px;}
.ws34{word-spacing:-1.560000px;}
.ws69{word-spacing:-1.500000px;}
.ws11f{word-spacing:-1.458000px;}
.ws57{word-spacing:-1.440000px;}
.wsa1{word-spacing:-1.380000px;}
.ws125{word-spacing:-1.350000px;}
.ws42{word-spacing:-1.320000px;}
.wsd8{word-spacing:-1.260000px;}
.wsf{word-spacing:-1.254000px;}
.ws11d{word-spacing:-1.242000px;}
.ws74{word-spacing:-1.188000px;}
.ws75{word-spacing:-1.134000px;}
.ws66{word-spacing:-1.080000px;}
.wsf3{word-spacing:-1.026000px;}
.ws5f{word-spacing:-1.020000px;}
.ws124{word-spacing:-0.972000px;}
.ws92{word-spacing:-0.900000px;}
.ws30{word-spacing:-0.840000px;}
.ws5e{word-spacing:-0.780000px;}
.wsf2{word-spacing:-0.756000px;}
.ws61{word-spacing:-0.720000px;}
.ws4e{word-spacing:-0.540000px;}
.ws2f{word-spacing:-0.480000px;}
.ws3d{word-spacing:-0.420000px;}
.wsad{word-spacing:-0.360000px;}
.ws10e{word-spacing:-0.324000px;}
.ws78{word-spacing:-0.300000px;}
.ws10{word-spacing:-0.216000px;}
.ws99{word-spacing:-0.067490px;}
.wse0{word-spacing:-0.060000px;}
.ws117{word-spacing:-0.054000px;}
.ws98{word-spacing:-0.037090px;}
.wsc{word-spacing:0.000000px;}
.ws6c{word-spacing:0.120000px;}
.wsd2{word-spacing:0.192000px;}
.wse{word-spacing:0.204000px;}
.ws5a{word-spacing:0.240000px;}
.ws6b{word-spacing:0.300000px;}
.ws37{word-spacing:0.360000px;}
.wsd{word-spacing:0.408000px;}
.wsaf{word-spacing:0.420000px;}
.wsf6{word-spacing:0.432000px;}
.wsae{word-spacing:0.480000px;}
.ws97{word-spacing:0.486000px;}
.ws5d{word-spacing:0.540000px;}
.ws89{word-spacing:0.600000px;}
.ws64{word-spacing:0.660000px;}
.ws11{word-spacing:0.691200px;}
.wseb{word-spacing:0.702000px;}
.ws9d{word-spacing:0.756000px;}
.ws107{word-spacing:0.810000px;}
.ws29{word-spacing:0.918000px;}
.wsaa{word-spacing:0.960000px;}
.wsf1{word-spacing:1.026000px;}
.ws70{word-spacing:1.080000px;}
.wsfd{word-spacing:1.134000px;}
.ws7e{word-spacing:1.200000px;}
.ws93{word-spacing:1.242000px;}
.ws31{word-spacing:1.260000px;}
.ws12{word-spacing:1.296000px;}
.ws10c{word-spacing:1.350000px;}
.ws111{word-spacing:1.566000px;}
.ws55{word-spacing:1.620000px;}
.ws17{word-spacing:1.674000px;}
.ws6e{word-spacing:1.680000px;}
.ws58{word-spacing:1.740000px;}
.ws106{word-spacing:1.782000px;}
.ws14{word-spacing:1.890000px;}
.ws4f{word-spacing:1.920000px;}
.wsfb{word-spacing:1.944000px;}
.wsa6{word-spacing:1.980000px;}
.wsa4{word-spacing:2.040000px;}
.wsa3{word-spacing:2.100000px;}
.ws11e{word-spacing:2.214000px;}
.ws33{word-spacing:2.220000px;}
.ws7d{word-spacing:2.460000px;}
.ws5b{word-spacing:2.580000px;}
.wsf5{word-spacing:2.592000px;}
.wsa0{word-spacing:2.640000px;}
.ws76{word-spacing:2.646000px;}
.ws72{word-spacing:2.760000px;}
.ws28{word-spacing:2.880000px;}
.ws3a{word-spacing:2.940000px;}
.ws1c{word-spacing:2.970000px;}
.wsfe{word-spacing:3.024000px;}
.wsff{word-spacing:3.078000px;}
.ws39{word-spacing:3.120000px;}
.ws4a{word-spacing:3.240000px;}
.ws11b{word-spacing:3.294000px;}
.ws6d{word-spacing:3.360000px;}
.wsee{word-spacing:3.402000px;}
.wsd1{word-spacing:3.456000px;}
.ws32{word-spacing:3.480000px;}
.ws9e{word-spacing:4.020000px;}
.ws68{word-spacing:4.080000px;}
.ws8b{word-spacing:4.260000px;}
.ws8c{word-spacing:4.320000px;}
.wsa7{word-spacing:4.380000px;}
.ws44{word-spacing:4.440000px;}
.ws108{word-spacing:4.536000px;}
.ws88{word-spacing:4.620000px;}
.wsfc{word-spacing:4.644000px;}
.ws115{word-spacing:4.698000px;}
.ws67{word-spacing:4.740000px;}
.ws20{word-spacing:4.860000px;}
.wse3{word-spacing:4.920000px;}
.ws19{word-spacing:4.968000px;}
.ws41{word-spacing:5.100000px;}
.ws109{word-spacing:5.130000px;}
.ws81{word-spacing:5.160000px;}
.ws27{word-spacing:5.220000px;}
.wsb2{word-spacing:5.280000px;}
.ws2d{word-spacing:5.340000px;}
.ws38{word-spacing:5.400000px;}
.ws54{word-spacing:5.454000px;}
.ws43{word-spacing:5.460000px;}
.ws53{word-spacing:5.508000px;}
.ws13{word-spacing:5.616000px;}
.ws1b{word-spacing:5.670000px;}
.wsa5{word-spacing:5.700000px;}
.ws1a{word-spacing:5.724000px;}
.wse6{word-spacing:5.760000px;}
.wsf0{word-spacing:5.778000px;}
.ws7c{word-spacing:5.820000px;}
.ws22{word-spacing:5.880000px;}
.ws26{word-spacing:6.000000px;}
.ws16{word-spacing:6.048000px;}
.ws60{word-spacing:6.060000px;}
.ws15{word-spacing:6.102000px;}
.ws9f{word-spacing:6.300000px;}
.ws3c{word-spacing:6.360000px;}
.ws7a{word-spacing:6.420000px;}
.ws84{word-spacing:6.480000px;}
.ws8e{word-spacing:6.540000px;}
.ws9c{word-spacing:6.588000px;}
.ws9b{word-spacing:6.642000px;}
.ws9a{word-spacing:6.696000px;}
.ws4c{word-spacing:6.720000px;}
.ws18{word-spacing:6.750000px;}
.ws101{word-spacing:6.858000px;}
.ws100{word-spacing:6.966000px;}
.ws40{word-spacing:7.020000px;}
.ws10a{word-spacing:7.074000px;}
.ws46{word-spacing:7.080000px;}
.ws36{word-spacing:7.140000px;}
.ws122{word-spacing:7.182000px;}
.wsa9{word-spacing:7.200000px;}
.ws11a{word-spacing:7.290000px;}
.ws6f{word-spacing:7.320000px;}
.ws112{word-spacing:7.344000px;}
.ws35{word-spacing:7.380000px;}
.ws120{word-spacing:7.398000px;}
.ws2e{word-spacing:7.500000px;}
.ws62{word-spacing:7.620000px;}
.ws1e{word-spacing:7.800000px;}
.wsd0{word-spacing:7.884000px;}
.ws7b{word-spacing:7.920000px;}
.wscf{word-spacing:7.938000px;}
.ws6a{word-spacing:7.980000px;}
.wsce{word-spacing:7.992000px;}
.wsb3{word-spacing:8.160000px;}
.ws121{word-spacing:8.208000px;}
.ws79{word-spacing:8.400000px;}
.ws8d{word-spacing:8.520000px;}
.ws65{word-spacing:8.580000px;}
.ws3e{word-spacing:8.700000px;}
.wsb4{word-spacing:8.880000px;}
.wsf7{word-spacing:8.910000px;}
.ws102{word-spacing:9.018000px;}
.ws110{word-spacing:9.072000px;}
.wsf9{word-spacing:9.126000px;}
.ws56{word-spacing:9.180000px;}
.wsf8{word-spacing:9.234000px;}
.ws3f{word-spacing:9.900000px;}
.wsa8{word-spacing:10.140000px;}
.wsab{word-spacing:10.500000px;}
.ws7f{word-spacing:10.560000px;}
.wsfa{word-spacing:10.908000px;}
.wse1{word-spacing:10.980000px;}
.wsb0{word-spacing:11.040000px;}
.wsb1{word-spacing:11.160000px;}
.ws10f{word-spacing:11.178000px;}
.ws83{word-spacing:11.220000px;}
.ws114{word-spacing:11.232000px;}
.ws82{word-spacing:11.340000px;}
.ws10b{word-spacing:11.448000px;}
.ws80{word-spacing:11.460000px;}
.ws23{word-spacing:11.520000px;}
.ws25{word-spacing:11.880000px;}
.ws123{word-spacing:12.582000px;}
.ws85{word-spacing:12.840000px;}
.wse4{word-spacing:13.080000px;}
.ws103{word-spacing:13.500000px;}
.ws104{word-spacing:13.662000px;}
.wse7{word-spacing:13.680000px;}
.ws24{word-spacing:13.980000px;}
.ws4d{word-spacing:14.040000px;}
.ws1f{word-spacing:15.600000px;}
.ws119{word-spacing:15.822000px;}
.ws113{word-spacing:16.902000px;}
.ws87{word-spacing:17.100000px;}
.ws118{word-spacing:19.980000px;}
.wsd4{word-spacing:21.300000px;}
.ws105{word-spacing:23.598000px;}
.ws1{word-spacing:33.650535px;}
.ws0{word-spacing:33.651135px;}
.wsbe{word-spacing:81.060000px;}
.wsbf{word-spacing:98.406000px;}
.wsbd{word-spacing:110.216400px;}
.wsc9{word-spacing:113.022000px;}
.wsc0{word-spacing:115.710000px;}
.wsb9{word-spacing:117.936000px;}
.wsca{word-spacing:118.448400px;}
.wsc8{word-spacing:130.368000px;}
.wsc3{word-spacing:130.628400px;}
.wsbc{word-spacing:138.348000px;}
.wsc1{word-spacing:138.818400px;}
.wsb8{word-spacing:144.656400px;}
.wsb7{word-spacing:145.530000px;}
.wsc7{word-spacing:146.000400px;}
.wsc5{word-spacing:146.538000px;}
.wsc2{word-spacing:151.956000px;}
.wsc6{word-spacing:152.376000px;}
.wsbb{word-spacing:152.426400px;}
.wscb{word-spacing:152.888400px;}
.wscc{word-spacing:165.984000px;}
.wscd{word-spacing:166.958400px;}
.ws77{word-spacing:405.762000px;}
.wsb6{word-spacing:1245.346200px;}
._a{margin-left:-11.199000px;}
._b{margin-left:-7.600761px;}
._9{margin-left:-5.961600px;}
._2{margin-left:-4.284000px;}
._4{margin-left:-2.515239px;}
._0{margin-left:-1.377000px;}
._1{width:1.387200px;}
._3{width:2.601000px;}
._6{width:4.460400px;}
._7{width:5.502000px;}
._8{width:7.050000px;}
._c{width:8.466000px;}
._14{width:10.435239px;}
._48{width:12.414000px;}
._4a{width:14.400000px;}
._5{width:36.369600px;}
._3c{width:39.900000px;}
._3d{width:41.664000px;}
._4c{width:43.089000px;}
._4d{width:44.420478px;}
._41{width:48.216000px;}
._42{width:60.018000px;}
._4b{width:68.160000px;}
._2f{width:71.064000px;}
._49{width:76.500000px;}
._3b{width:80.598000px;}
._47{width:81.840000px;}
._2e{width:82.992000px;}
._46{width:87.480000px;}
._32{width:89.040000px;}
._26{width:93.072000px;}
._33{width:102.774000px;}
._2a{width:105.714000px;}
._2d{width:108.822000px;}
._34{width:111.594000px;}
._45{width:113.484000px;}
._29{width:117.642000px;}
._27{width:119.112000px;}
._36{width:120.127200px;}
._28{width:122.430000px;}
._39{width:126.336000px;}
._24{width:132.552000px;}
._44{width:134.316000px;}
._3e{width:138.180000px;}
._2c{width:139.734000px;}
._23{width:141.279600px;}
._3a{width:145.320000px;}
._38{width:147.378000px;}
._20{width:148.470000px;}
._2b{width:152.888400px;}
._35{width:155.064000px;}
._1f{width:156.954000px;}
._3f{width:162.834000px;}
._1e{width:163.875600px;}
._1b{width:166.026000px;}
._22{width:167.848800px;}
._37{width:168.915600px;}
._1d{width:171.276000px;}
._43{width:172.788000px;}
._1a{width:174.846000px;}
._15{width:176.862000px;}
._19{width:178.290000px;}
._16{width:180.474000px;}
._30{width:184.539600px;}
._18{width:194.292000px;}
._17{width:206.136000px;}
._31{width:256.611000px;}
._21{width:329.322000px;}
._12{width:342.678000px;}
._40{width:362.035239px;}
._1c{width:370.272000px;}
._25{width:383.250000px;}
._11{width:417.648000px;}
._e{width:434.112000px;}
._d{width:469.308000px;}
._10{width:509.964000px;}
._13{width:653.142000px;}
._f{width:704.298000px;}
.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);}
.fsc{font-size:22.497000px;}
.fsb{font-size:33.846600px;}
.fs9{font-size:34.980000px;}
.fsd{font-size:37.089600px;}
.fs3{font-size:38.478000px;}
.fsa{font-size:40.534800px;}
.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;}
.fse{font-size:67.490400px;}
.fs8{font-size:72.000000px;}
.fsf{font-size:94.648800px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3c{bottom:71.212050px;}
.y3d{bottom:75.040050px;}
.y118{bottom:113.060850px;}
.y69{bottom:113.078700px;}
.ye7{bottom:113.078850px;}
.ye{bottom:117.205050px;}
.y2b{bottom:117.212550px;}
.yaa{bottom:120.487350px;}
.ye6{bottom:120.491850px;}
.yd{bottom:131.601450px;}
.y16c{bottom:133.796850px;}
.y13e{bottom:133.916700px;}
.y117{bottom:134.066850px;}
.y68{bottom:134.078700px;}
.ya6{bottom:134.078850px;}
.y2a{bottom:138.212550px;}
.ya9{bottom:140.291850px;}
.ye5{bottom:140.296350px;}
.yc{bottom:145.997850px;}
.y16b{bottom:154.802850px;}
.y13d{bottom:154.922700px;}
.y116{bottom:155.072850px;}
.y73{bottom:155.078700px;}
.ya5{bottom:155.078850px;}
.y29{bottom:159.212550px;}
.ya8{bottom:160.096350px;}
.ye4{bottom:160.100850px;}
.yb{bottom:160.397850px;}
.y16a{bottom:175.808850px;}
.y13c{bottom:175.928700px;}
.y67{bottom:176.078700px;}
.ya4{bottom:176.078850px;}
.ya7{bottom:179.900850px;}
.y28{bottom:180.212550px;}
.y169{bottom:196.814850px;}
.y13b{bottom:196.934700px;}
.y66{bottom:197.078700px;}
.ya3{bottom:197.078850px;}
.y27{bottom:201.212550px;}
.y115{bottom:202.529400px;}
.y39{bottom:203.454300px;}
.y168{bottom:217.820850px;}
.y13a{bottom:217.940700px;}
.y65{bottom:218.078700px;}
.ya2{bottom:218.078850px;}
.y38{bottom:221.449800px;}
.y26{bottom:222.212550px;}
.y167{bottom:238.826850px;}
.y139{bottom:238.946700px;}
.y72{bottom:239.078700px;}
.ya1{bottom:239.078850px;}
.y37{bottom:239.445300px;}
.y25{bottom:243.212550px;}
.y36{bottom:257.440800px;}
.y166{bottom:259.832850px;}
.y138{bottom:259.952700px;}
.y71{bottom:260.078700px;}
.ya0{bottom:260.078850px;}
.y64{bottom:263.130000px;}
.y24{bottom:264.212550px;}
.y114{bottom:265.529400px;}
.y76{bottom:270.140850px;}
.y35{bottom:275.436300px;}
.y165{bottom:280.838850px;}
.y137{bottom:280.958700px;}
.y70{bottom:281.078700px;}
.y9f{bottom:281.078850px;}
.y63{bottom:284.134500px;}
.y23{bottom:285.212550px;}
.y75{bottom:289.945350px;}
.y34{bottom:293.431800px;}
.y164{bottom:301.844850px;}
.y136{bottom:301.964700px;}
.y6f{bottom:302.078700px;}
.y9e{bottom:302.078850px;}
.y62{bottom:305.139000px;}
.y22{bottom:306.212550px;}
.y74{bottom:309.749850px;}
.y33{bottom:311.427300px;}
.y163{bottom:322.850850px;}
.y135{bottom:322.970700px;}
.y6e{bottom:323.078700px;}
.y9d{bottom:323.078850px;}
.y61{bottom:326.143500px;}
.y21{bottom:327.212550px;}
.y113{bottom:328.529400px;}
.y162{bottom:343.856850px;}
.y134{bottom:343.976700px;}
.y6d{bottom:344.078700px;}
.y9c{bottom:344.078850px;}
.y32{bottom:346.432800px;}
.y20{bottom:348.212550px;}
.y60{bottom:358.440900px;}
.y31{bottom:364.428300px;}
.y161{bottom:364.862850px;}
.y133{bottom:364.982700px;}
.y6c{bottom:365.078700px;}
.y9b{bottom:365.078850px;}
.y1f{bottom:369.212550px;}
.y30{bottom:382.423800px;}
.y160{bottom:385.868850px;}
.y132{bottom:385.988700px;}
.y6b{bottom:386.078700px;}
.y9a{bottom:386.078850px;}
.y1e{bottom:390.212550px;}
.y112{bottom:391.937100px;}
.y10f{bottom:405.955200px;}
.y15f{bottom:406.874850px;}
.y131{bottom:406.994700px;}
.y5f{bottom:407.078700px;}
.y99{bottom:407.078850px;}
.y2f{bottom:417.429300px;}
.y111{bottom:421.441050px;}
.y1d{bottom:424.500300px;}
.y10e{bottom:426.959700px;}
.y15e{bottom:427.880850px;}
.y130{bottom:428.000700px;}
.y5e{bottom:428.078700px;}
.y98{bottom:428.078850px;}
.y6a{bottom:430.199100px;}
.y2e{bottom:435.429300px;}
.y15d{bottom:448.886850px;}
.y12f{bottom:449.006700px;}
.y5d{bottom:449.078700px;}
.y97{bottom:449.078850px;}
.y2d{bottom:453.429300px;}
.y15c{bottom:469.892850px;}
.y12e{bottom:470.012700px;}
.y5c{bottom:470.078700px;}
.y96{bottom:470.078850px;}
.y2c{bottom:471.429300px;}
.y10d{bottom:488.359200px;}
.y15b{bottom:490.898850px;}
.y12d{bottom:491.018700px;}
.y5b{bottom:491.078700px;}
.y95{bottom:491.078850px;}
.y10c{bottom:503.359200px;}
.y1c{bottom:505.027950px;}
.y15a{bottom:511.904850px;}
.y12c{bottom:512.024700px;}
.y5a{bottom:512.078700px;}
.y94{bottom:512.078850px;}
.y110{bottom:526.441050px;}
.y10b{bottom:527.361450px;}
.y159{bottom:532.910850px;}
.y12b{bottom:533.030700px;}
.y59{bottom:533.078700px;}
.y93{bottom:533.078850px;}
.y10a{bottom:545.442450px;}
.y1b{bottom:546.042750px;}
.y158{bottom:553.916850px;}
.y12a{bottom:554.036700px;}
.y58{bottom:554.078700px;}
.y92{bottom:554.078850px;}
.y109{bottom:558.945450px;}
.y1a{bottom:565.847250px;}
.y157{bottom:574.922850px;}
.y129{bottom:575.042700px;}
.y57{bottom:575.078700px;}
.y91{bottom:575.078850px;}
.y108{bottom:577.026450px;}
.y19{bottom:585.651750px;}
.y107{bottom:590.529450px;}
.y156{bottom:595.928850px;}
.y128{bottom:596.048700px;}
.y56{bottom:596.078700px;}
.y90{bottom:596.078850px;}
.y18{bottom:605.456250px;}
.y106{bottom:608.610450px;}
.y155{bottom:616.934850px;}
.y127{bottom:617.054700px;}
.y55{bottom:617.078700px;}
.y8f{bottom:617.078850px;}
.y105{bottom:622.113450px;}
.y17{bottom:625.260750px;}
.y154{bottom:637.940850px;}
.y126{bottom:638.060700px;}
.y54{bottom:638.078700px;}
.y8e{bottom:638.078850px;}
.y104{bottom:640.194450px;}
.y16{bottom:645.065250px;}
.yb4{bottom:647.997000px;}
.y103{bottom:653.697450px;}
.y153{bottom:658.946850px;}
.y125{bottom:659.066700px;}
.yad{bottom:659.078700px;}
.y8d{bottom:659.078850px;}
.y15{bottom:664.869750px;}
.yb3{bottom:667.801500px;}
.y102{bottom:671.778450px;}
.y53{bottom:673.440900px;}
.y152{bottom:679.952850px;}
.y124{bottom:680.072700px;}
.yac{bottom:680.078700px;}
.y8c{bottom:680.078850px;}
.y14{bottom:684.674250px;}
.y101{bottom:689.859450px;}
.y151{bottom:700.958850px;}
.yab{bottom:701.078700px;}
.y8b{bottom:701.078850px;}
.y100{bottom:703.362450px;}
.y13{bottom:704.478750px;}
.yff{bottom:721.443450px;}
.y150{bottom:721.964850px;}
.y52{bottom:722.078700px;}
.y8a{bottom:722.078850px;}
.y12{bottom:724.283250px;}
.yfe{bottom:734.946450px;}
.y123{bottom:736.440900px;}
.y14f{bottom:742.970850px;}
.y51{bottom:743.078700px;}
.y89{bottom:743.078850px;}
.y11{bottom:744.087750px;}
.yfd{bottom:753.027450px;}
.y14e{bottom:763.976850px;}
.y50{bottom:764.078700px;}
.y88{bottom:764.078850px;}
.yfc{bottom:766.530450px;}
.y10{bottom:775.185300px;}
.yb5{bottom:778.999950px;}
.yfb{bottom:784.611450px;}
.y14d{bottom:784.982850px;}
.y4f{bottom:785.078700px;}
.y87{bottom:785.078850px;}
.yc5{bottom:788.423931px;}
.yfa{bottom:798.114450px;}
.y14c{bottom:805.988850px;}
.y4e{bottom:806.078700px;}
.y86{bottom:806.078850px;}
.y122{bottom:811.529250px;}
.yf9{bottom:816.195450px;}
.y14b{bottom:826.994850px;}
.y4d{bottom:827.078700px;}
.y85{bottom:827.078850px;}
.yf8{bottom:829.698450px;}
.yc6{bottom:833.519550px;}
.yde{bottom:840.663000px;}
.yb6{bottom:844.716995px;}
.yf7{bottom:847.779450px;}
.y14a{bottom:848.000850px;}
.y121{bottom:848.072850px;}
.y4c{bottom:848.078700px;}
.y84{bottom:848.078850px;}
.ya{bottom:854.466750px;}
.yc9{bottom:861.082950px;}
.yf6{bottom:861.282450px;}
.yc7{bottom:868.632150px;}
.y149{bottom:869.006850px;}
.y120{bottom:869.072850px;}
.y4b{bottom:869.078700px;}
.y83{bottom:869.078850px;}
.y9{bottom:872.466750px;}
.yb7{bottom:874.763415px;}
.yf5{bottom:879.363450px;}
.yc8{bottom:883.173750px;}
.ydf{bottom:883.528800px;}
.y148{bottom:890.012850px;}
.y11f{bottom:890.072850px;}
.y4a{bottom:890.078700px;}
.y82{bottom:890.078850px;}
.y8{bottom:890.466750px;}
.yf4{bottom:897.444450px;}
.yca{bottom:902.630400px;}
.ycb{bottom:903.036150px;}
.y7{bottom:908.466750px;}
.yf3{bottom:910.947450px;}
.y147{bottom:911.018850px;}
.y11e{bottom:911.072850px;}
.y49{bottom:911.078700px;}
.y81{bottom:911.078850px;}
.y6{bottom:926.466750px;}
.ycc{bottom:927.762378px;}
.yb8{bottom:927.864003px;}
.yf2{bottom:929.028450px;}
.y146{bottom:932.024850px;}
.y48{bottom:932.078700px;}
.y80{bottom:932.078850px;}
.yf1{bottom:942.531450px;}
.y5{bottom:944.466750px;}
.ydd{bottom:947.573850px;}
.y145{bottom:953.030850px;}
.y47{bottom:953.078700px;}
.y7f{bottom:953.078850px;}
.y11d{bottom:958.529250px;}
.ycd{bottom:959.633250px;}
.yf0{bottom:960.612450px;}
.ybb{bottom:970.577548px;}
.y144{bottom:974.036850px;}
.y46{bottom:974.078700px;}
.y7e{bottom:974.078850px;}
.yef{bottom:974.115450px;}
.y4{bottom:979.474800px;}
.yba{bottom:986.031441px;}
.yd3{bottom:989.527632px;}
.yee{bottom:992.196450px;}
.y143{bottom:995.042850px;}
.y11c{bottom:995.066850px;}
.y45{bottom:995.078700px;}
.y7d{bottom:995.078850px;}
.yd2{bottom:999.712001px;}
.yd9{bottom:1005.336300px;}
.yd7{bottom:1008.527850px;}
.yed{bottom:1010.277450px;}
.yc4{bottom:1012.125359px;}
.y142{bottom:1016.048850px;}
.y11b{bottom:1016.072850px;}
.y44{bottom:1016.078700px;}
.y7c{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.yd0{bottom:1017.445200px;}
.ye0{bottom:1019.523300px;}
.yce{bottom:1021.043100px;}
.yec{bottom:1028.652450px;}
.yc1{bottom:1030.062300px;}
.yb2{bottom:1030.561950px;}
.ydb{bottom:1030.568250px;}
.ybc{bottom:1031.177075px;}
.yd4{bottom:1035.027300px;}
.y141{bottom:1037.054850px;}
.y43{bottom:1037.078700px;}
.y7b{bottom:1037.078850px;}
.yda{bottom:1038.878700px;}
.yeb{bottom:1039.488450px;}
.ye1{bottom:1042.424700px;}
.ybd{bottom:1043.742600px;}
.y2{bottom:1049.282550px;}
.yc2{bottom:1049.974200px;}
.yb1{bottom:1050.343950px;}
.yd1{bottom:1051.748550px;}
.ycf{bottom:1052.457750px;}
.ybe{bottom:1055.852250px;}
.y140{bottom:1058.060850px;}
.y42{bottom:1058.078700px;}
.y7a{bottom:1058.078850px;}
.y11a{bottom:1063.529250px;}
.yb0{bottom:1070.125950px;}
.ybf{bottom:1078.957350px;}
.y13f{bottom:1079.066850px;}
.y41{bottom:1079.078700px;}
.y79{bottom:1079.078850px;}
.yb9{bottom:1079.362818px;}
.yea{bottom:1079.673900px;}
.ye2{bottom:1097.805750px;}
.yd5{bottom:1098.870000px;}
.yaf{bottom:1099.478250px;}
.ye9{bottom:1099.478400px;}
.y119{bottom:1100.072850px;}
.y40{bottom:1100.078700px;}
.y78{bottom:1100.078850px;}
.yd6{bottom:1101.200700px;}
.yd8{bottom:1102.670250px;}
.yf{bottom:1109.815500px;}
.yc3{bottom:1111.384950px;}
.ye3{bottom:1113.411750px;}
.ydc{bottom:1118.681550px;}
.yae{bottom:1119.282750px;}
.ye8{bottom:1119.282900px;}
.y3f{bottom:1121.078700px;}
.y77{bottom:1121.078850px;}
.yc0{bottom:1122.278250px;}
.y3b{bottom:1159.189500px;}
.y3a{bottom:1178.689500px;}
.y3e{bottom:1178.692050px;}
.h16{height:22.872898px;}
.h17{height:25.064456px;}
.h15{height:27.392658px;}
.h13{height:33.448242px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h14{height:36.647461px;}
.hf{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h1b{height:41.882812px;}
.h8{height:43.004883px;}
.he{height:43.057617px;}
.hd{height:43.321289px;}
.h18{height:45.608747px;}
.h9{height:45.615234px;}
.h12{height:45.674994px;}
.ha{height:47.118164px;}
.h1c{height:47.142164px;}
.h10{height:50.176758px;}
.h11{height:50.242494px;}
.hc{height:52.353516px;}
.hb{height:54.738281px;}
.h4{height:57.588867px;}
.h1a{height:69.610242px;}
.h19{height:75.319740px;}
.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;}
.xc{left:107.071650px;}
.xd{left:108.285450px;}
.x10{left:112.255950px;}
.x7{left:119.878950px;}
.x8{left:122.032500px;}
.x9{left:124.102950px;}
.x3b{left:149.395200px;}
.x2e{left:161.251242px;}
.x27{left:181.721850px;}
.x3d{left:183.591150px;}
.x2d{left:190.030950px;}
.x29{left:203.154900px;}
.x22{left:205.131300px;}
.x2a{left:207.310050px;}
.x24{left:209.589600px;}
.x23{left:214.656450px;}
.x28{left:220.432584px;}
.x2f{left:239.736749px;}
.x21{left:240.902415px;}
.x26{left:242.878650px;}
.x2c{left:247.794150px;}
.x32{left:288.834900px;}
.x25{left:295.320150px;}
.x5{left:300.189000px;}
.xf{left:309.435450px;}
.x30{left:311.839350px;}
.x6{left:317.199000px;}
.x42{left:320.700150px;}
.x43{left:322.422150px;}
.x41{left:324.574650px;}
.x3e{left:327.094650px;}
.x3c{left:334.194000px;}
.x2b{left:376.744650px;}
.x31{left:378.568950px;}
.x4{left:396.050700px;}
.x35{left:409.679700px;}
.x34{left:420.979050px;}
.x3f{left:422.844150px;}
.x33{left:462.121200px;}
.x40{left:473.044650px;}
.x13{left:483.199309px;}
.x12{left:492.876993px;}
.x16{left:518.565922px;}
.x37{left:526.875150px;}
.x36{left:533.614500px;}
.x14{left:542.937471px;}
.x11{left:549.727050px;}
.x38{left:554.085150px;}
.x39{left:558.847650px;}
.x18{left:579.824139px;}
.x3a{left:581.698800px;}
.x1c{left:616.913100px;}
.x19{left:630.898050px;}
.x20{left:642.247603px;}
.xb{left:648.915600px;}
.x1f{left:651.823950px;}
.x17{left:657.042933px;}
.x1b{left:661.552650px;}
.x1a{left:663.173700px;}
.xa{left:675.639600px;}
.x1d{left:687.849750px;}
.x1e{left:748.550550px;}
.x15{left:770.185693px;}
.xe{left:800.519850px;}
.x1{left:807.081450px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v6{vertical-align:-13.511467pt;}
.v4{vertical-align:-12.610827pt;}
.v3{vertical-align:-7.386133pt;}
.v5{vertical-align:-6.124800pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:10.095872pt;}
.v1{vertical-align:19.536000pt;}
.v8{vertical-align:32.144000pt;}
.lsd{letter-spacing:-6.432000pt;}
.lsb{letter-spacing:-2.880000pt;}
.ls6{letter-spacing:-0.816000pt;}
.ls1d{letter-spacing:-0.746667pt;}
.ls5{letter-spacing:-0.614400pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls20{letter-spacing:-0.426667pt;}
.ls3{letter-spacing:-0.362667pt;}
.ls1e{letter-spacing:-0.224000pt;}
.ls1f{letter-spacing:-0.213333pt;}
.ls4{letter-spacing:-0.181333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.023725pt;}
.ls13{letter-spacing:0.024258pt;}
.ls10{letter-spacing:0.026925pt;}
.ls11{letter-spacing:0.027458pt;}
.ls17{letter-spacing:0.030125pt;}
.ls1a{letter-spacing:0.032969pt;}
.ls18{letter-spacing:0.059991pt;}
.ls12{letter-spacing:0.089867pt;}
.lse{letter-spacing:0.266667pt;}
.ls7{letter-spacing:0.373333pt;}
.lsf{letter-spacing:0.408000pt;}
.ls1{letter-spacing:1.152000pt;}
.lsa{letter-spacing:1.440000pt;}
.ls9{letter-spacing:4.920000pt;}
.ls8{letter-spacing:6.293333pt;}
.ls0{letter-spacing:38.383435pt;}
.ls16{letter-spacing:80.799733pt;}
.ls1c{letter-spacing:131.040000pt;}
.ls1b{letter-spacing:138.618667pt;}
.ls14{letter-spacing:353.283301pt;}
.ls19{letter-spacing:1196.781493pt;}
.ws47{word-spacing:-53.333333pt;}
.ws94{word-spacing:-36.030933pt;}
.ws5{word-spacing:-15.936000pt;}
.wsdd{word-spacing:-14.608000pt;}
.ws2c{word-spacing:-14.490667pt;}
.ws4{word-spacing:-13.280000pt;}
.ws2b{word-spacing:-13.226667pt;}
.wsdc{word-spacing:-13.173333pt;}
.ws6{word-spacing:-13.066667pt;}
.wsdb{word-spacing:-13.013333pt;}
.ws51{word-spacing:-11.952000pt;}
.wsd3{word-spacing:-11.946667pt;}
.wsef{word-spacing:-11.904000pt;}
.ws96{word-spacing:-11.760000pt;}
.wsea{word-spacing:-11.253333pt;}
.wse2{word-spacing:-11.200000pt;}
.ws7{word-spacing:-10.992000pt;}
.wsa{word-spacing:-10.800000pt;}
.ws8{word-spacing:-10.176000pt;}
.ws9{word-spacing:-9.984000pt;}
.wsb{word-spacing:-9.770667pt;}
.ws2a{word-spacing:-9.600000pt;}
.wsc4{word-spacing:-9.258667pt;}
.ws52{word-spacing:-9.072000pt;}
.wsba{word-spacing:-9.034667pt;}
.ws3{word-spacing:-8.793600pt;}
.ws2{word-spacing:-8.549333pt;}
.wsde{word-spacing:-8.480000pt;}
.wsda{word-spacing:-7.840000pt;}
.ws59{word-spacing:-7.711147pt;}
.ws95{word-spacing:-7.521467pt;}
.wsd5{word-spacing:-7.200000pt;}
.ws48{word-spacing:-6.346667pt;}
.ws49{word-spacing:-6.293333pt;}
.wse9{word-spacing:-5.920000pt;}
.ws8a{word-spacing:-5.760000pt;}
.ws3b{word-spacing:-5.600000pt;}
.ws73{word-spacing:-5.520000pt;}
.wse5{word-spacing:-5.386667pt;}
.wsd6{word-spacing:-4.960000pt;}
.wsd7{word-spacing:-4.586667pt;}
.wsd9{word-spacing:-4.426667pt;}
.wse8{word-spacing:-4.373333pt;}
.ws11c{word-spacing:-3.456000pt;}
.wsec{word-spacing:-2.832000pt;}
.wsdf{word-spacing:-2.613333pt;}
.ws86{word-spacing:-2.560000pt;}
.ws90{word-spacing:-2.453333pt;}
.ws8f{word-spacing:-2.400000pt;}
.ws116{word-spacing:-2.352000pt;}
.ws21{word-spacing:-2.346667pt;}
.wsf4{word-spacing:-2.256000pt;}
.ws91{word-spacing:-2.133333pt;}
.wsed{word-spacing:-2.064000pt;}
.wsb5{word-spacing:-2.026667pt;}
.ws4b{word-spacing:-1.973333pt;}
.ws63{word-spacing:-1.866667pt;}
.wsa2{word-spacing:-1.813333pt;}
.ws50{word-spacing:-1.760000pt;}
.ws5c{word-spacing:-1.706667pt;}
.ws45{word-spacing:-1.701333pt;}
.ws71{word-spacing:-1.653333pt;}
.ws10d{word-spacing:-1.632000pt;}
.ws1d{word-spacing:-1.493333pt;}
.wsac{word-spacing:-1.440000pt;}
.ws34{word-spacing:-1.386667pt;}
.ws69{word-spacing:-1.333333pt;}
.ws11f{word-spacing:-1.296000pt;}
.ws57{word-spacing:-1.280000pt;}
.wsa1{word-spacing:-1.226667pt;}
.ws125{word-spacing:-1.200000pt;}
.ws42{word-spacing:-1.173333pt;}
.wsd8{word-spacing:-1.120000pt;}
.wsf{word-spacing:-1.114667pt;}
.ws11d{word-spacing:-1.104000pt;}
.ws74{word-spacing:-1.056000pt;}
.ws75{word-spacing:-1.008000pt;}
.ws66{word-spacing:-0.960000pt;}
.wsf3{word-spacing:-0.912000pt;}
.ws5f{word-spacing:-0.906667pt;}
.ws124{word-spacing:-0.864000pt;}
.ws92{word-spacing:-0.800000pt;}
.ws30{word-spacing:-0.746667pt;}
.ws5e{word-spacing:-0.693333pt;}
.wsf2{word-spacing:-0.672000pt;}
.ws61{word-spacing:-0.640000pt;}
.ws4e{word-spacing:-0.480000pt;}
.ws2f{word-spacing:-0.426667pt;}
.ws3d{word-spacing:-0.373333pt;}
.wsad{word-spacing:-0.320000pt;}
.ws10e{word-spacing:-0.288000pt;}
.ws78{word-spacing:-0.266667pt;}
.ws10{word-spacing:-0.192000pt;}
.ws99{word-spacing:-0.059991pt;}
.wse0{word-spacing:-0.053333pt;}
.ws117{word-spacing:-0.048000pt;}
.ws98{word-spacing:-0.032969pt;}
.wsc{word-spacing:0.000000pt;}
.ws6c{word-spacing:0.106667pt;}
.wsd2{word-spacing:0.170667pt;}
.wse{word-spacing:0.181333pt;}
.ws5a{word-spacing:0.213333pt;}
.ws6b{word-spacing:0.266667pt;}
.ws37{word-spacing:0.320000pt;}
.wsd{word-spacing:0.362667pt;}
.wsaf{word-spacing:0.373333pt;}
.wsf6{word-spacing:0.384000pt;}
.wsae{word-spacing:0.426667pt;}
.ws97{word-spacing:0.432000pt;}
.ws5d{word-spacing:0.480000pt;}
.ws89{word-spacing:0.533333pt;}
.ws64{word-spacing:0.586667pt;}
.ws11{word-spacing:0.614400pt;}
.wseb{word-spacing:0.624000pt;}
.ws9d{word-spacing:0.672000pt;}
.ws107{word-spacing:0.720000pt;}
.ws29{word-spacing:0.816000pt;}
.wsaa{word-spacing:0.853333pt;}
.wsf1{word-spacing:0.912000pt;}
.ws70{word-spacing:0.960000pt;}
.wsfd{word-spacing:1.008000pt;}
.ws7e{word-spacing:1.066667pt;}
.ws93{word-spacing:1.104000pt;}
.ws31{word-spacing:1.120000pt;}
.ws12{word-spacing:1.152000pt;}
.ws10c{word-spacing:1.200000pt;}
.ws111{word-spacing:1.392000pt;}
.ws55{word-spacing:1.440000pt;}
.ws17{word-spacing:1.488000pt;}
.ws6e{word-spacing:1.493333pt;}
.ws58{word-spacing:1.546667pt;}
.ws106{word-spacing:1.584000pt;}
.ws14{word-spacing:1.680000pt;}
.ws4f{word-spacing:1.706667pt;}
.wsfb{word-spacing:1.728000pt;}
.wsa6{word-spacing:1.760000pt;}
.wsa4{word-spacing:1.813333pt;}
.wsa3{word-spacing:1.866667pt;}
.ws11e{word-spacing:1.968000pt;}
.ws33{word-spacing:1.973333pt;}
.ws7d{word-spacing:2.186667pt;}
.ws5b{word-spacing:2.293333pt;}
.wsf5{word-spacing:2.304000pt;}
.wsa0{word-spacing:2.346667pt;}
.ws76{word-spacing:2.352000pt;}
.ws72{word-spacing:2.453333pt;}
.ws28{word-spacing:2.560000pt;}
.ws3a{word-spacing:2.613333pt;}
.ws1c{word-spacing:2.640000pt;}
.wsfe{word-spacing:2.688000pt;}
.wsff{word-spacing:2.736000pt;}
.ws39{word-spacing:2.773333pt;}
.ws4a{word-spacing:2.880000pt;}
.ws11b{word-spacing:2.928000pt;}
.ws6d{word-spacing:2.986667pt;}
.wsee{word-spacing:3.024000pt;}
.wsd1{word-spacing:3.072000pt;}
.ws32{word-spacing:3.093333pt;}
.ws9e{word-spacing:3.573333pt;}
.ws68{word-spacing:3.626667pt;}
.ws8b{word-spacing:3.786667pt;}
.ws8c{word-spacing:3.840000pt;}
.wsa7{word-spacing:3.893333pt;}
.ws44{word-spacing:3.946667pt;}
.ws108{word-spacing:4.032000pt;}
.ws88{word-spacing:4.106667pt;}
.wsfc{word-spacing:4.128000pt;}
.ws115{word-spacing:4.176000pt;}
.ws67{word-spacing:4.213333pt;}
.ws20{word-spacing:4.320000pt;}
.wse3{word-spacing:4.373333pt;}
.ws19{word-spacing:4.416000pt;}
.ws41{word-spacing:4.533333pt;}
.ws109{word-spacing:4.560000pt;}
.ws81{word-spacing:4.586667pt;}
.ws27{word-spacing:4.640000pt;}
.wsb2{word-spacing:4.693333pt;}
.ws2d{word-spacing:4.746667pt;}
.ws38{word-spacing:4.800000pt;}
.ws54{word-spacing:4.848000pt;}
.ws43{word-spacing:4.853333pt;}
.ws53{word-spacing:4.896000pt;}
.ws13{word-spacing:4.992000pt;}
.ws1b{word-spacing:5.040000pt;}
.wsa5{word-spacing:5.066667pt;}
.ws1a{word-spacing:5.088000pt;}
.wse6{word-spacing:5.120000pt;}
.wsf0{word-spacing:5.136000pt;}
.ws7c{word-spacing:5.173333pt;}
.ws22{word-spacing:5.226667pt;}
.ws26{word-spacing:5.333333pt;}
.ws16{word-spacing:5.376000pt;}
.ws60{word-spacing:5.386667pt;}
.ws15{word-spacing:5.424000pt;}
.ws9f{word-spacing:5.600000pt;}
.ws3c{word-spacing:5.653333pt;}
.ws7a{word-spacing:5.706667pt;}
.ws84{word-spacing:5.760000pt;}
.ws8e{word-spacing:5.813333pt;}
.ws9c{word-spacing:5.856000pt;}
.ws9b{word-spacing:5.904000pt;}
.ws9a{word-spacing:5.952000pt;}
.ws4c{word-spacing:5.973333pt;}
.ws18{word-spacing:6.000000pt;}
.ws101{word-spacing:6.096000pt;}
.ws100{word-spacing:6.192000pt;}
.ws40{word-spacing:6.240000pt;}
.ws10a{word-spacing:6.288000pt;}
.ws46{word-spacing:6.293333pt;}
.ws36{word-spacing:6.346667pt;}
.ws122{word-spacing:6.384000pt;}
.wsa9{word-spacing:6.400000pt;}
.ws11a{word-spacing:6.480000pt;}
.ws6f{word-spacing:6.506667pt;}
.ws112{word-spacing:6.528000pt;}
.ws35{word-spacing:6.560000pt;}
.ws120{word-spacing:6.576000pt;}
.ws2e{word-spacing:6.666667pt;}
.ws62{word-spacing:6.773333pt;}
.ws1e{word-spacing:6.933333pt;}
.wsd0{word-spacing:7.008000pt;}
.ws7b{word-spacing:7.040000pt;}
.wscf{word-spacing:7.056000pt;}
.ws6a{word-spacing:7.093333pt;}
.wsce{word-spacing:7.104000pt;}
.wsb3{word-spacing:7.253333pt;}
.ws121{word-spacing:7.296000pt;}
.ws79{word-spacing:7.466667pt;}
.ws8d{word-spacing:7.573333pt;}
.ws65{word-spacing:7.626667pt;}
.ws3e{word-spacing:7.733333pt;}
.wsb4{word-spacing:7.893333pt;}
.wsf7{word-spacing:7.920000pt;}
.ws102{word-spacing:8.016000pt;}
.ws110{word-spacing:8.064000pt;}
.wsf9{word-spacing:8.112000pt;}
.ws56{word-spacing:8.160000pt;}
.wsf8{word-spacing:8.208000pt;}
.ws3f{word-spacing:8.800000pt;}
.wsa8{word-spacing:9.013333pt;}
.wsab{word-spacing:9.333333pt;}
.ws7f{word-spacing:9.386667pt;}
.wsfa{word-spacing:9.696000pt;}
.wse1{word-spacing:9.760000pt;}
.wsb0{word-spacing:9.813333pt;}
.wsb1{word-spacing:9.920000pt;}
.ws10f{word-spacing:9.936000pt;}
.ws83{word-spacing:9.973333pt;}
.ws114{word-spacing:9.984000pt;}
.ws82{word-spacing:10.080000pt;}
.ws10b{word-spacing:10.176000pt;}
.ws80{word-spacing:10.186667pt;}
.ws23{word-spacing:10.240000pt;}
.ws25{word-spacing:10.560000pt;}
.ws123{word-spacing:11.184000pt;}
.ws85{word-spacing:11.413333pt;}
.wse4{word-spacing:11.626667pt;}
.ws103{word-spacing:12.000000pt;}
.ws104{word-spacing:12.144000pt;}
.wse7{word-spacing:12.160000pt;}
.ws24{word-spacing:12.426667pt;}
.ws4d{word-spacing:12.480000pt;}
.ws1f{word-spacing:13.866667pt;}
.ws119{word-spacing:14.064000pt;}
.ws113{word-spacing:15.024000pt;}
.ws87{word-spacing:15.200000pt;}
.ws118{word-spacing:17.760000pt;}
.wsd4{word-spacing:18.933333pt;}
.ws105{word-spacing:20.976000pt;}
.ws1{word-spacing:29.911587pt;}
.ws0{word-spacing:29.912120pt;}
.wsbe{word-spacing:72.053333pt;}
.wsbf{word-spacing:87.472000pt;}
.wsbd{word-spacing:97.970133pt;}
.wsc9{word-spacing:100.464000pt;}
.wsc0{word-spacing:102.853333pt;}
.wsb9{word-spacing:104.832000pt;}
.wsca{word-spacing:105.287467pt;}
.wsc8{word-spacing:115.882667pt;}
.wsc3{word-spacing:116.114133pt;}
.wsbc{word-spacing:122.976000pt;}
.wsc1{word-spacing:123.394133pt;}
.wsb8{word-spacing:128.583467pt;}
.wsb7{word-spacing:129.360000pt;}
.wsc7{word-spacing:129.778133pt;}
.wsc5{word-spacing:130.256000pt;}
.wsc2{word-spacing:135.072000pt;}
.wsc6{word-spacing:135.445333pt;}
.wsbb{word-spacing:135.490133pt;}
.wscb{word-spacing:135.900800pt;}
.wscc{word-spacing:147.541333pt;}
.wscd{word-spacing:148.407467pt;}
.ws77{word-spacing:360.677333pt;}
.wsb6{word-spacing:1106.974400pt;}
._a{margin-left:-9.954667pt;}
._b{margin-left:-6.756232pt;}
._9{margin-left:-5.299200pt;}
._2{margin-left:-3.808000pt;}
._4{margin-left:-2.235768pt;}
._0{margin-left:-1.224000pt;}
._1{width:1.233067pt;}
._3{width:2.312000pt;}
._6{width:3.964800pt;}
._7{width:4.890667pt;}
._8{width:6.266667pt;}
._c{width:7.525333pt;}
._14{width:9.275768pt;}
._48{width:11.034667pt;}
._4a{width:12.800000pt;}
._5{width:32.328533pt;}
._3c{width:35.466667pt;}
._3d{width:37.034667pt;}
._4c{width:38.301333pt;}
._4d{width:39.484869pt;}
._41{width:42.858667pt;}
._42{width:53.349333pt;}
._4b{width:60.586667pt;}
._2f{width:63.168000pt;}
._49{width:68.000000pt;}
._3b{width:71.642667pt;}
._47{width:72.746667pt;}
._2e{width:73.770667pt;}
._46{width:77.760000pt;}
._32{width:79.146667pt;}
._26{width:82.730667pt;}
._33{width:91.354667pt;}
._2a{width:93.968000pt;}
._2d{width:96.730667pt;}
._34{width:99.194667pt;}
._45{width:100.874667pt;}
._29{width:104.570667pt;}
._27{width:105.877333pt;}
._36{width:106.779733pt;}
._28{width:108.826667pt;}
._39{width:112.298667pt;}
._24{width:117.824000pt;}
._44{width:119.392000pt;}
._3e{width:122.826667pt;}
._2c{width:124.208000pt;}
._23{width:125.581867pt;}
._3a{width:129.173333pt;}
._38{width:131.002667pt;}
._20{width:131.973333pt;}
._2b{width:135.900800pt;}
._35{width:137.834667pt;}
._1f{width:139.514667pt;}
._3f{width:144.741333pt;}
._1e{width:145.667200pt;}
._1b{width:147.578667pt;}
._22{width:149.198933pt;}
._37{width:150.147200pt;}
._1d{width:152.245333pt;}
._43{width:153.589333pt;}
._1a{width:155.418667pt;}
._15{width:157.210667pt;}
._19{width:158.480000pt;}
._16{width:160.421333pt;}
._30{width:164.035200pt;}
._18{width:172.704000pt;}
._17{width:183.232000pt;}
._31{width:228.098667pt;}
._21{width:292.730667pt;}
._12{width:304.602667pt;}
._40{width:321.809101pt;}
._1c{width:329.130667pt;}
._25{width:340.666667pt;}
._11{width:371.242667pt;}
._e{width:385.877333pt;}
._d{width:417.162667pt;}
._10{width:453.301333pt;}
._13{width:580.570667pt;}
._f{width:626.042667pt;}
.fsc{font-size:19.997333pt;}
.fsb{font-size:30.085867pt;}
.fs9{font-size:31.093333pt;}
.fsd{font-size:32.968533pt;}
.fs3{font-size:34.202667pt;}
.fsa{font-size:36.030933pt;}
.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;}
.fse{font-size:59.991467pt;}
.fs8{font-size:64.000000pt;}
.fsf{font-size:84.132267pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3c{bottom:63.299600pt;}
.y3d{bottom:66.702267pt;}
.y118{bottom:100.498533pt;}
.y69{bottom:100.514400pt;}
.ye7{bottom:100.514533pt;}
.ye{bottom:104.182267pt;}
.y2b{bottom:104.188933pt;}
.yaa{bottom:107.099867pt;}
.ye6{bottom:107.103867pt;}
.yd{bottom:116.979067pt;}
.y16c{bottom:118.930533pt;}
.y13e{bottom:119.037067pt;}
.y117{bottom:119.170533pt;}
.y68{bottom:119.181067pt;}
.ya6{bottom:119.181200pt;}
.y2a{bottom:122.855600pt;}
.ya9{bottom:124.703867pt;}
.ye5{bottom:124.707867pt;}
.yc{bottom:129.775867pt;}
.y16b{bottom:137.602533pt;}
.y13d{bottom:137.709067pt;}
.y116{bottom:137.842533pt;}
.y73{bottom:137.847733pt;}
.ya5{bottom:137.847867pt;}
.y29{bottom:141.522267pt;}
.ya8{bottom:142.307867pt;}
.ye4{bottom:142.311867pt;}
.yb{bottom:142.575867pt;}
.y16a{bottom:156.274533pt;}
.y13c{bottom:156.381067pt;}
.y67{bottom:156.514400pt;}
.ya4{bottom:156.514533pt;}
.ya7{bottom:159.911867pt;}
.y28{bottom:160.188933pt;}
.y169{bottom:174.946533pt;}
.y13b{bottom:175.053067pt;}
.y66{bottom:175.181067pt;}
.ya3{bottom:175.181200pt;}
.y27{bottom:178.855600pt;}
.y115{bottom:180.026133pt;}
.y39{bottom:180.848267pt;}
.y168{bottom:193.618533pt;}
.y13a{bottom:193.725067pt;}
.y65{bottom:193.847733pt;}
.ya2{bottom:193.847867pt;}
.y38{bottom:196.844267pt;}
.y26{bottom:197.522267pt;}
.y167{bottom:212.290533pt;}
.y139{bottom:212.397067pt;}
.y72{bottom:212.514400pt;}
.ya1{bottom:212.514533pt;}
.y37{bottom:212.840267pt;}
.y25{bottom:216.188933pt;}
.y36{bottom:228.836267pt;}
.y166{bottom:230.962533pt;}
.y138{bottom:231.069067pt;}
.y71{bottom:231.181067pt;}
.ya0{bottom:231.181200pt;}
.y64{bottom:233.893333pt;}
.y24{bottom:234.855600pt;}
.y114{bottom:236.026133pt;}
.y76{bottom:240.125200pt;}
.y35{bottom:244.832267pt;}
.y165{bottom:249.634533pt;}
.y137{bottom:249.741067pt;}
.y70{bottom:249.847733pt;}
.y9f{bottom:249.847867pt;}
.y63{bottom:252.564000pt;}
.y23{bottom:253.522267pt;}
.y75{bottom:257.729200pt;}
.y34{bottom:260.828267pt;}
.y164{bottom:268.306533pt;}
.y136{bottom:268.413067pt;}
.y6f{bottom:268.514400pt;}
.y9e{bottom:268.514533pt;}
.y62{bottom:271.234667pt;}
.y22{bottom:272.188933pt;}
.y74{bottom:275.333200pt;}
.y33{bottom:276.824267pt;}
.y163{bottom:286.978533pt;}
.y135{bottom:287.085067pt;}
.y6e{bottom:287.181067pt;}
.y9d{bottom:287.181200pt;}
.y61{bottom:289.905333pt;}
.y21{bottom:290.855600pt;}
.y113{bottom:292.026133pt;}
.y162{bottom:305.650533pt;}
.y134{bottom:305.757067pt;}
.y6d{bottom:305.847733pt;}
.y9c{bottom:305.847867pt;}
.y32{bottom:307.940267pt;}
.y20{bottom:309.522267pt;}
.y60{bottom:318.614133pt;}
.y31{bottom:323.936267pt;}
.y161{bottom:324.322533pt;}
.y133{bottom:324.429067pt;}
.y6c{bottom:324.514400pt;}
.y9b{bottom:324.514533pt;}
.y1f{bottom:328.188933pt;}
.y30{bottom:339.932267pt;}
.y160{bottom:342.994533pt;}
.y132{bottom:343.101067pt;}
.y6b{bottom:343.181067pt;}
.y9a{bottom:343.181200pt;}
.y1e{bottom:346.855600pt;}
.y112{bottom:348.388533pt;}
.y10f{bottom:360.849067pt;}
.y15f{bottom:361.666533pt;}
.y131{bottom:361.773067pt;}
.y5f{bottom:361.847733pt;}
.y99{bottom:361.847867pt;}
.y2f{bottom:371.048267pt;}
.y111{bottom:374.614267pt;}
.y1d{bottom:377.333600pt;}
.y10e{bottom:379.519733pt;}
.y15e{bottom:380.338533pt;}
.y130{bottom:380.445067pt;}
.y5e{bottom:380.514400pt;}
.y98{bottom:380.514533pt;}
.y6a{bottom:382.399200pt;}
.y2e{bottom:387.048267pt;}
.y15d{bottom:399.010533pt;}
.y12f{bottom:399.117067pt;}
.y5d{bottom:399.181067pt;}
.y97{bottom:399.181200pt;}
.y2d{bottom:403.048267pt;}
.y15c{bottom:417.682533pt;}
.y12e{bottom:417.789067pt;}
.y5c{bottom:417.847733pt;}
.y96{bottom:417.847867pt;}
.y2c{bottom:419.048267pt;}
.y10d{bottom:434.097067pt;}
.y15b{bottom:436.354533pt;}
.y12d{bottom:436.461067pt;}
.y5b{bottom:436.514400pt;}
.y95{bottom:436.514533pt;}
.y10c{bottom:447.430400pt;}
.y1c{bottom:448.913733pt;}
.y15a{bottom:455.026533pt;}
.y12c{bottom:455.133067pt;}
.y5a{bottom:455.181067pt;}
.y94{bottom:455.181200pt;}
.y110{bottom:467.947600pt;}
.y10b{bottom:468.765733pt;}
.y159{bottom:473.698533pt;}
.y12b{bottom:473.805067pt;}
.y59{bottom:473.847733pt;}
.y93{bottom:473.847867pt;}
.y10a{bottom:484.837733pt;}
.y1b{bottom:485.371333pt;}
.y158{bottom:492.370533pt;}
.y12a{bottom:492.477067pt;}
.y58{bottom:492.514400pt;}
.y92{bottom:492.514533pt;}
.y109{bottom:496.840400pt;}
.y1a{bottom:502.975333pt;}
.y157{bottom:511.042533pt;}
.y129{bottom:511.149067pt;}
.y57{bottom:511.181067pt;}
.y91{bottom:511.181200pt;}
.y108{bottom:512.912400pt;}
.y19{bottom:520.579333pt;}
.y107{bottom:524.915067pt;}
.y156{bottom:529.714533pt;}
.y128{bottom:529.821067pt;}
.y56{bottom:529.847733pt;}
.y90{bottom:529.847867pt;}
.y18{bottom:538.183333pt;}
.y106{bottom:540.987067pt;}
.y155{bottom:548.386533pt;}
.y127{bottom:548.493067pt;}
.y55{bottom:548.514400pt;}
.y8f{bottom:548.514533pt;}
.y105{bottom:552.989733pt;}
.y17{bottom:555.787333pt;}
.y154{bottom:567.058533pt;}
.y126{bottom:567.165067pt;}
.y54{bottom:567.181067pt;}
.y8e{bottom:567.181200pt;}
.y104{bottom:569.061733pt;}
.y16{bottom:573.391333pt;}
.yb4{bottom:575.997333pt;}
.y103{bottom:581.064400pt;}
.y153{bottom:585.730533pt;}
.y125{bottom:585.837067pt;}
.yad{bottom:585.847733pt;}
.y8d{bottom:585.847867pt;}
.y15{bottom:590.995333pt;}
.yb3{bottom:593.601333pt;}
.y102{bottom:597.136400pt;}
.y53{bottom:598.614133pt;}
.y152{bottom:604.402533pt;}
.y124{bottom:604.509067pt;}
.yac{bottom:604.514400pt;}
.y8c{bottom:604.514533pt;}
.y14{bottom:608.599333pt;}
.y101{bottom:613.208400pt;}
.y151{bottom:623.074533pt;}
.yab{bottom:623.181067pt;}
.y8b{bottom:623.181200pt;}
.y100{bottom:625.211067pt;}
.y13{bottom:626.203333pt;}
.yff{bottom:641.283067pt;}
.y150{bottom:641.746533pt;}
.y52{bottom:641.847733pt;}
.y8a{bottom:641.847867pt;}
.y12{bottom:643.807333pt;}
.yfe{bottom:653.285733pt;}
.y123{bottom:654.614133pt;}
.y14f{bottom:660.418533pt;}
.y51{bottom:660.514400pt;}
.y89{bottom:660.514533pt;}
.y11{bottom:661.411333pt;}
.yfd{bottom:669.357733pt;}
.y14e{bottom:679.090533pt;}
.y50{bottom:679.181067pt;}
.y88{bottom:679.181200pt;}
.yfc{bottom:681.360400pt;}
.y10{bottom:689.053600pt;}
.yb5{bottom:692.444400pt;}
.yfb{bottom:697.432400pt;}
.y14d{bottom:697.762533pt;}
.y4f{bottom:697.847733pt;}
.y87{bottom:697.847867pt;}
.yc5{bottom:700.821272pt;}
.yfa{bottom:709.435067pt;}
.y14c{bottom:716.434533pt;}
.y4e{bottom:716.514400pt;}
.y86{bottom:716.514533pt;}
.y122{bottom:721.359333pt;}
.yf9{bottom:725.507067pt;}
.y14b{bottom:735.106533pt;}
.y4d{bottom:735.181067pt;}
.y85{bottom:735.181200pt;}
.yf8{bottom:737.509733pt;}
.yc6{bottom:740.906267pt;}
.yde{bottom:747.256000pt;}
.yb6{bottom:750.859551pt;}
.yf7{bottom:753.581733pt;}
.y14a{bottom:753.778533pt;}
.y121{bottom:753.842533pt;}
.y4c{bottom:753.847733pt;}
.y84{bottom:753.847867pt;}
.ya{bottom:759.526000pt;}
.yc9{bottom:765.407067pt;}
.yf6{bottom:765.584400pt;}
.yc7{bottom:772.117467pt;}
.y149{bottom:772.450533pt;}
.y120{bottom:772.509200pt;}
.y4b{bottom:772.514400pt;}
.y83{bottom:772.514533pt;}
.y9{bottom:775.526000pt;}
.yb7{bottom:777.567480pt;}
.yf5{bottom:781.656400pt;}
.yc8{bottom:785.043333pt;}
.ydf{bottom:785.358933pt;}
.y148{bottom:791.122533pt;}
.y11f{bottom:791.175867pt;}
.y4a{bottom:791.181067pt;}
.y82{bottom:791.181200pt;}
.y8{bottom:791.526000pt;}
.yf4{bottom:797.728400pt;}
.yca{bottom:802.338133pt;}
.ycb{bottom:802.698800pt;}
.y7{bottom:807.526000pt;}
.yf3{bottom:809.731067pt;}
.y147{bottom:809.794533pt;}
.y11e{bottom:809.842533pt;}
.y49{bottom:809.847733pt;}
.y81{bottom:809.847867pt;}
.y6{bottom:823.526000pt;}
.ycc{bottom:824.677669pt;}
.yb8{bottom:824.768003pt;}
.yf2{bottom:825.803067pt;}
.y146{bottom:828.466533pt;}
.y48{bottom:828.514400pt;}
.y80{bottom:828.514533pt;}
.yf1{bottom:837.805733pt;}
.y5{bottom:839.526000pt;}
.ydd{bottom:842.287867pt;}
.y145{bottom:847.138533pt;}
.y47{bottom:847.181067pt;}
.y7f{bottom:847.181200pt;}
.y11d{bottom:852.026000pt;}
.ycd{bottom:853.007333pt;}
.yf0{bottom:853.877733pt;}
.ybb{bottom:862.735599pt;}
.y144{bottom:865.810533pt;}
.y46{bottom:865.847733pt;}
.y7e{bottom:865.847867pt;}
.yef{bottom:865.880400pt;}
.y4{bottom:870.644267pt;}
.yba{bottom:876.472392pt;}
.yd3{bottom:879.580117pt;}
.yee{bottom:881.952400pt;}
.y143{bottom:884.482533pt;}
.y11c{bottom:884.503867pt;}
.y45{bottom:884.514400pt;}
.y7d{bottom:884.514533pt;}
.yd2{bottom:888.632889pt;}
.yd9{bottom:893.632267pt;}
.yd7{bottom:896.469200pt;}
.yed{bottom:898.024400pt;}
.yc4{bottom:899.666985pt;}
.y142{bottom:903.154533pt;}
.y11b{bottom:903.175867pt;}
.y44{bottom:903.181067pt;}
.y7c{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.yd0{bottom:904.395733pt;}
.ye0{bottom:906.242933pt;}
.yce{bottom:907.593867pt;}
.yec{bottom:914.357733pt;}
.yc1{bottom:915.610933pt;}
.yb2{bottom:916.055067pt;}
.ydb{bottom:916.060667pt;}
.ybc{bottom:916.601844pt;}
.yd4{bottom:920.024267pt;}
.y141{bottom:921.826533pt;}
.y43{bottom:921.847733pt;}
.y7b{bottom:921.847867pt;}
.yda{bottom:923.447733pt;}
.yeb{bottom:923.989733pt;}
.ye1{bottom:926.599733pt;}
.ybd{bottom:927.771200pt;}
.y2{bottom:932.695600pt;}
.yc2{bottom:933.310400pt;}
.yb1{bottom:933.639067pt;}
.yd1{bottom:934.887600pt;}
.ycf{bottom:935.518000pt;}
.ybe{bottom:938.535333pt;}
.y140{bottom:940.498533pt;}
.y42{bottom:940.514400pt;}
.y7a{bottom:940.514533pt;}
.y11a{bottom:945.359333pt;}
.yb0{bottom:951.223067pt;}
.ybf{bottom:959.073200pt;}
.y13f{bottom:959.170533pt;}
.y41{bottom:959.181067pt;}
.y79{bottom:959.181200pt;}
.yb9{bottom:959.433616pt;}
.yea{bottom:959.710133pt;}
.ye2{bottom:975.827333pt;}
.yd5{bottom:976.773333pt;}
.yaf{bottom:977.314000pt;}
.ye9{bottom:977.314133pt;}
.y119{bottom:977.842533pt;}
.y40{bottom:977.847733pt;}
.y78{bottom:977.847867pt;}
.yd6{bottom:978.845067pt;}
.yd8{bottom:980.151333pt;}
.yf{bottom:986.502667pt;}
.yc3{bottom:987.897733pt;}
.ye3{bottom:989.699333pt;}
.ydc{bottom:994.383600pt;}
.yae{bottom:994.918000pt;}
.ye8{bottom:994.918133pt;}
.y3f{bottom:996.514400pt;}
.y77{bottom:996.514533pt;}
.yc0{bottom:997.580667pt;}
.y3b{bottom:1030.390667pt;}
.y3a{bottom:1047.724000pt;}
.y3e{bottom:1047.726267pt;}
.h16{height:20.331465pt;}
.h17{height:22.279517pt;}
.h15{height:24.349029pt;}
.h13{height:29.731771pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h14{height:32.575521pt;}
.hf{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h1b{height:37.229167pt;}
.h8{height:38.226562pt;}
.he{height:38.273438pt;}
.hd{height:38.507812pt;}
.h18{height:40.541108pt;}
.h9{height:40.546875pt;}
.h12{height:40.599995pt;}
.ha{height:41.882812pt;}
.h1c{height:41.904146pt;}
.h10{height:44.601562pt;}
.h11{height:44.659994pt;}
.hc{height:46.536458pt;}
.hb{height:48.656250pt;}
.h4{height:51.190104pt;}
.h1a{height:61.875771pt;}
.h19{height:66.950880pt;}
.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;}
.xc{left:95.174800pt;}
.xd{left:96.253733pt;}
.x10{left:99.783067pt;}
.x7{left:106.559067pt;}
.x8{left:108.473333pt;}
.x9{left:110.313733pt;}
.x3b{left:132.795733pt;}
.x2e{left:143.334437pt;}
.x27{left:161.530533pt;}
.x3d{left:163.192133pt;}
.x2d{left:168.916400pt;}
.x29{left:180.582133pt;}
.x22{left:182.338933pt;}
.x2a{left:184.275600pt;}
.x24{left:186.301867pt;}
.x23{left:190.805733pt;}
.x28{left:195.940075pt;}
.x2f{left:213.099332pt;}
.x21{left:214.135480pt;}
.x26{left:215.892133pt;}
.x2c{left:220.261467pt;}
.x32{left:256.742133pt;}
.x25{left:262.506800pt;}
.x5{left:266.834667pt;}
.xf{left:275.053733pt;}
.x30{left:277.190533pt;}
.x6{left:281.954667pt;}
.x42{left:285.066800pt;}
.x43{left:286.597467pt;}
.x41{left:288.510800pt;}
.x3e{left:290.750800pt;}
.x3c{left:297.061333pt;}
.x2b{left:334.884133pt;}
.x31{left:336.505733pt;}
.x4{left:352.045067pt;}
.x35{left:364.159733pt;}
.x34{left:374.203600pt;}
.x3f{left:375.861467pt;}
.x33{left:410.774400pt;}
.x40{left:420.484133pt;}
.x13{left:429.510497pt;}
.x12{left:438.112883pt;}
.x16{left:460.947487pt;}
.x37{left:468.333467pt;}
.x36{left:474.324000pt;}
.x14{left:482.611085pt;}
.x11{left:488.646267pt;}
.x38{left:492.520133pt;}
.x39{left:496.753467pt;}
.x18{left:515.399235pt;}
.x3a{left:517.065600pt;}
.x1c{left:548.367200pt;}
.x19{left:560.798267pt;}
.x20{left:570.886759pt;}
.xb{left:576.813867pt;}
.x1f{left:579.399067pt;}
.x17{left:584.038163pt;}
.x1b{left:588.046800pt;}
.x1a{left:589.487733pt;}
.xa{left:600.568533pt;}
.x1d{left:611.422000pt;}
.x1e{left:665.378267pt;}
.x15{left:684.609505pt;}
.xe{left:711.573200pt;}
.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; }
  