
    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_c4fd752e4772341768c3c917.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_46d510b10b04d9eec8763207.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984000;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_0d9410976e415815540b3beb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.984000;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_a50933da730a727946bb02da.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.984863;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_22863b73da1c488da9fee761.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984000;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_60ccc92580a0e3ef4392cd0e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.984000;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_22863b73da1c488da9fee761.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.984000;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_0b7795ea134dec42524fa4da.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.984000;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_b9f03bf1f5d3bc42057b4ef0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_60ccc92580a0e3ef4392cd0e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.984000;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_22863b73da1c488da9fee761.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.984000;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_0b7795ea134dec42524fa4da.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.984000;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_cbfe810a65b94a7be9620652.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.984863;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_b06774ec0aec7ad9663d104a.woff2')format("woff");}.fff{font-family:fff;line-height:0.995117;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_efc60731c98fd00bf87d4d57.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.533000;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_5037247222adeb3f46eac511.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.640625;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_60ccc92580a0e3ef4392cd0e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_22863b73da1c488da9fee761.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_0b7795ea134dec42524fa4da.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.984000;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:ff15;src:url('chunks/assets/font_851f9c5c5127f0e3496d0d0b.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.718000;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:ff16;src:url('chunks/assets/font_b0b8a7753e023b6ca17dd4b7.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.718000;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:ff17;src:url('chunks/assets/font_9311f70451cc681f156ca18c.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.707031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-18.084000px;}
.v1{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.060000px;}
.v3{vertical-align:17.958000px;}
.v2{vertical-align:25.974000px;}
.ls4{letter-spacing:-1.776000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.003600px;}
.ls1{letter-spacing:0.004608px;}
.ls7{letter-spacing:0.005208px;}
.ls6{letter-spacing:0.006510px;}
.ls9{letter-spacing:0.008400px;}
.lsa{letter-spacing:0.026280px;}
.ls5{letter-spacing:0.324000px;}
.ls0{letter-spacing:1.424430px;}
.ls2{letter-spacing:3.696000px;}
.lsc{letter-spacing:45.492000px;}
.lsb{letter-spacing:1140.052200px;}
.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;}
}
.ws2{word-spacing:-16.244430px;}
.ws5{word-spacing:-15.012000px;}
.ws3{word-spacing:-14.820000px;}
.ws4{word-spacing:-13.680000px;}
.ws82{word-spacing:-11.700000px;}
.ws9{word-spacing:-11.520480px;}
.ws1{word-spacing:-10.913760px;}
.ws83{word-spacing:-10.800000px;}
.ws6{word-spacing:-8.751996px;}
.wsbc{word-spacing:-6.804540px;}
.ws0{word-spacing:-6.716160px;}
.wsdc{word-spacing:-6.048000px;}
.ws3c{word-spacing:-4.212000px;}
.wsa{word-spacing:-3.959280px;}
.wsc7{word-spacing:-3.671460px;}
.ws1d{word-spacing:-3.510000px;}
.ws5c{word-spacing:-3.456000px;}
.wsef{word-spacing:-3.348000px;}
.ws16{word-spacing:-2.969460px;}
.wscf{word-spacing:-2.861460px;}
.wsa2{word-spacing:-2.808000px;}
.wsa8{word-spacing:-2.700000px;}
.ws46{word-spacing:-2.640000px;}
.ws8{word-spacing:-2.639520px;}
.ws47{word-spacing:-2.538000px;}
.ws61{word-spacing:-2.484540px;}
.ws10b{word-spacing:-2.474550px;}
.wsa4{word-spacing:-2.430000px;}
.wsb6{word-spacing:-2.376540px;}
.ws3b{word-spacing:-2.322000px;}
.wsed{word-spacing:-2.214000px;}
.ws60{word-spacing:-2.159460px;}
.ws2b{word-spacing:-2.051460px;}
.ws10a{word-spacing:-2.025000px;}
.wsc3{word-spacing:-1.998000px;}
.ws3d{word-spacing:-1.674540px;}
.ws5d{word-spacing:-1.566540px;}
.ws1a{word-spacing:-1.512000px;}
.ws72{word-spacing:-1.457460px;}
.wsb{word-spacing:-1.424430px;}
.ws2e{word-spacing:-1.404000px;}
.ws94{word-spacing:-1.349460px;}
.ws77{word-spacing:-1.296000px;}
.ws54{word-spacing:-1.188000px;}
.ws28{word-spacing:-1.134000px;}
.wsba{word-spacing:-1.080000px;}
.wsd2{word-spacing:-1.026000px;}
.wsb9{word-spacing:-0.972540px;}
.ws14{word-spacing:-0.918000px;}
.ws109{word-spacing:-0.810450px;}
.wsc9{word-spacing:-0.810000px;}
.wsfa{word-spacing:-0.756540px;}
.ws4b{word-spacing:-0.647460px;}
.wsf9{word-spacing:-0.594000px;}
.wsc4{word-spacing:-0.539460px;}
.wsd0{word-spacing:-0.486000px;}
.ws44{word-spacing:-0.432000px;}
.ws1e{word-spacing:-0.378000px;}
.ws5b{word-spacing:-0.324000px;}
.ws6a{word-spacing:-0.270000px;}
.ws8b{word-spacing:-0.216000px;}
.wsbe{word-spacing:-0.162540px;}
.ws93{word-spacing:-0.108000px;}
.ws108{word-spacing:-0.090000px;}
.ws81{word-spacing:-0.054000px;}
.ws107{word-spacing:-0.048480px;}
.wscd{word-spacing:-0.045000px;}
.ws7{word-spacing:0.000000px;}
.ws21{word-spacing:0.054540px;}
.ws4a{word-spacing:0.216000px;}
.ws51{word-spacing:0.270000px;}
.wsb7{word-spacing:0.324000px;}
.wsa1{word-spacing:0.432000px;}
.wsa5{word-spacing:0.486000px;}
.ws80{word-spacing:0.539460px;}
.ws7b{word-spacing:0.702000px;}
.ws92{word-spacing:0.756540px;}
.ws70{word-spacing:0.810000px;}
.wsa6{word-spacing:0.972540px;}
.wsa9{word-spacing:1.026000px;}
.ws2c{word-spacing:1.080000px;}
.wsfd{word-spacing:1.134000px;}
.ws84{word-spacing:1.241460px;}
.ws1c{word-spacing:1.296000px;}
.ws31{word-spacing:1.349460px;}
.ws32{word-spacing:1.404000px;}
.ws90{word-spacing:1.457460px;}
.ws18{word-spacing:1.511136px;}
.ws69{word-spacing:1.512000px;}
.wsbb{word-spacing:1.566540px;}
.ws29{word-spacing:1.620000px;}
.ws45{word-spacing:1.776000px;}
.ws71{word-spacing:1.836000px;}
.ws9f{word-spacing:1.944000px;}
.ws85{word-spacing:1.998000px;}
.wsee{word-spacing:2.051460px;}
.ws87{word-spacing:2.106000px;}
.ws89{word-spacing:2.214000px;}
.ws3e{word-spacing:2.268540px;}
.ws30{word-spacing:2.322000px;}
.ws7a{word-spacing:2.376540px;}
.ws6b{word-spacing:2.430000px;}
.ws100{word-spacing:2.538000px;}
.ws19{word-spacing:2.592000px;}
.ws8f{word-spacing:2.646000px;}
.wsd1{word-spacing:2.700000px;}
.ws68{word-spacing:2.753460px;}
.wsc8{word-spacing:2.861460px;}
.wsc1{word-spacing:2.916000px;}
.ws66{word-spacing:2.969460px;}
.wse6{word-spacing:3.024000px;}
.ws4c{word-spacing:3.132000px;}
.wsff{word-spacing:3.186540px;}
.wsbf{word-spacing:3.240000px;}
.wsf6{word-spacing:3.274128px;}
.ws27{word-spacing:3.294000px;}
.ws5a{word-spacing:3.402000px;}
.ws4d{word-spacing:3.456000px;}
.wse4{word-spacing:3.463020px;}
.ws4e{word-spacing:3.563460px;}
.ws57{word-spacing:3.618000px;}
.ws5e{word-spacing:3.671460px;}
.ws103{word-spacing:3.780540px;}
.ws98{word-spacing:3.834000px;}
.ws62{word-spacing:3.942000px;}
.ws8e{word-spacing:3.996540px;}
.ws74{word-spacing:4.050000px;}
.wsec{word-spacing:4.104000px;}
.wse8{word-spacing:4.158000px;}
.ws58{word-spacing:4.212000px;}
.wsb0{word-spacing:4.265460px;}
.wsaa{word-spacing:4.320000px;}
.ws3a{word-spacing:4.536000px;}
.ws17{word-spacing:4.590540px;}
.wsb8{word-spacing:4.644000px;}
.wsf5{word-spacing:4.698540px;}
.wsd4{word-spacing:4.752000px;}
.ws88{word-spacing:4.806000px;}
.ws48{word-spacing:4.860000px;}
.ws79{word-spacing:4.968000px;}
.ws5f{word-spacing:5.075460px;}
.ws104{word-spacing:5.183460px;}
.ws105{word-spacing:5.238000px;}
.wse2{word-spacing:5.346000px;}
.wsde{word-spacing:5.400540px;}
.wsdf{word-spacing:5.454000px;}
.wsf7{word-spacing:5.508540px;}
.wsab{word-spacing:5.616000px;}
.wsf8{word-spacing:5.670000px;}
.ws7c{word-spacing:5.777460px;}
.ws65{word-spacing:5.832000px;}
.wsda{word-spacing:5.885460px;}
.wse3{word-spacing:5.940000px;}
.ws6d{word-spacing:5.993460px;}
.ws12{word-spacing:6.048000px;}
.ws36{word-spacing:6.102540px;}
.ws8c{word-spacing:6.156000px;}
.wsa0{word-spacing:6.210540px;}
.ws49{word-spacing:6.264000px;}
.ws96{word-spacing:6.318000px;}
.wsc{word-spacing:6.372000px;}
.ws3f{word-spacing:6.426000px;}
.ws20{word-spacing:6.534000px;}
.ws56{word-spacing:6.587460px;}
.ws73{word-spacing:6.642000px;}
.wsdb{word-spacing:6.695460px;}
.ws23{word-spacing:6.750000px;}
.ws41{word-spacing:6.858000px;}
.ws86{word-spacing:6.912540px;}
.wsa7{word-spacing:6.966000px;}
.wsb3{word-spacing:7.020000px;}
.wsea{word-spacing:7.074000px;}
.ws33{word-spacing:7.128000px;}
.ws1b{word-spacing:7.182000px;}
.ws6e{word-spacing:7.236000px;}
.ws67{word-spacing:7.289460px;}
.ws26{word-spacing:7.506540px;}
.wsd8{word-spacing:7.560000px;}
.wsb4{word-spacing:7.614540px;}
.ws13{word-spacing:7.722540px;}
.wsb1{word-spacing:7.776000px;}
.ws4f{word-spacing:7.830000px;}
.ws106{word-spacing:7.938000px;}
.ws34{word-spacing:7.991460px;}
.ws9e{word-spacing:8.046000px;}
.ws7e{word-spacing:8.154000px;}
.ws55{word-spacing:8.532000px;}
.ws1f{word-spacing:8.694000px;}
.ws91{word-spacing:8.748000px;}
.wse1{word-spacing:8.846757px;}
.ws101{word-spacing:8.909460px;}
.wsb2{word-spacing:8.964000px;}
.ws38{word-spacing:9.018540px;}
.wsbd{word-spacing:9.288000px;}
.wsf{word-spacing:9.342000px;}
.ws8a{word-spacing:9.450000px;}
.ws78{word-spacing:9.558000px;}
.ws75{word-spacing:9.611460px;}
.wsac{word-spacing:9.719460px;}
.ws102{word-spacing:9.774000px;}
.wsf4{word-spacing:9.828540px;}
.wsd5{word-spacing:9.936540px;}
.wsa3{word-spacing:10.152000px;}
.ws2f{word-spacing:10.368000px;}
.wsf0{word-spacing:10.584000px;}
.ws2d{word-spacing:10.638540px;}
.ws25{word-spacing:10.800000px;}
.ws42{word-spacing:10.854000px;}
.wse5{word-spacing:10.908000px;}
.wse7{word-spacing:11.123460px;}
.wsd3{word-spacing:11.231460px;}
.ws76{word-spacing:11.448540px;}
.ws8d{word-spacing:11.502000px;}
.ws7f{word-spacing:11.825460px;}
.ws63{word-spacing:11.933460px;}
.wsfb{word-spacing:12.096000px;}
.wse9{word-spacing:12.258540px;}
.ws15{word-spacing:12.474000px;}
.ws35{word-spacing:12.527460px;}
.wsc6{word-spacing:12.582000px;}
.wseb{word-spacing:12.635460px;}
.wsfe{word-spacing:12.690000px;}
.ws6f{word-spacing:13.284000px;}
.wsad{word-spacing:13.445460px;}
.ws95{word-spacing:13.608000px;}
.wsd9{word-spacing:14.039460px;}
.ws52{word-spacing:14.094000px;}
.ws9b{word-spacing:14.147460px;}
.wse{word-spacing:14.580000px;}
.wsc0{word-spacing:14.741460px;}
.wsc2{word-spacing:14.849460px;}
.ws37{word-spacing:15.066540px;}
.wsf2{word-spacing:15.120000px;}
.wse0{word-spacing:15.174540px;}
.ws97{word-spacing:15.390000px;}
.ws2a{word-spacing:15.551460px;}
.ws24{word-spacing:15.714000px;}
.wsd7{word-spacing:15.930000px;}
.ws7d{word-spacing:15.984540px;}
.ws40{word-spacing:16.038000px;}
.ws50{word-spacing:16.200000px;}
.wsf3{word-spacing:16.686540px;}
.ws6c{word-spacing:16.848000px;}
.wsc5{word-spacing:17.496540px;}
.wsfc{word-spacing:17.873460px;}
.wsf1{word-spacing:18.360000px;}
.ws39{word-spacing:18.575460px;}
.wsaf{word-spacing:18.792540px;}
.wsae{word-spacing:19.224000px;}
.ws64{word-spacing:19.548000px;}
.ws11{word-spacing:19.710540px;}
.ws59{word-spacing:19.926000px;}
.ws22{word-spacing:20.628000px;}
.wsd6{word-spacing:21.006540px;}
.wsdd{word-spacing:21.654000px;}
.ws9d{word-spacing:21.870000px;}
.ws9c{word-spacing:22.032000px;}
.ws10{word-spacing:23.976000px;}
.ws9a{word-spacing:24.084000px;}
.ws99{word-spacing:24.515460px;}
.wsca{word-spacing:24.948540px;}
.wsb5{word-spacing:26.514000px;}
.ws53{word-spacing:27.324000px;}
.wscb{word-spacing:28.404000px;}
.wsd{word-spacing:29.159460px;}
.ws43{word-spacing:44.063460px;}
.wscc{word-spacing:93.870000px;}
.wsce{word-spacing:195.615000px;}
._8{margin-left:-2487.069420px;}
._4e{margin-left:-59.040000px;}
._c{margin-left:-34.399080px;}
._b{margin-left:-20.574000px;}
._21{margin-left:-18.306000px;}
._a{margin-left:-16.740000px;}
._1e{margin-left:-13.122000px;}
._d{margin-left:-10.206000px;}
._20{margin-left:-7.927200px;}
._6{margin-left:-6.914880px;}
._9{margin-left:-5.653800px;}
._5{margin-left:-4.305600px;}
._2{margin-left:-3.110040px;}
._0{margin-left:-1.780920px;}
._1{width:2.165160px;}
._4{width:3.952800px;}
._4c{width:9.000000px;}
._3{width:11.525400px;}
._7{width:14.820000px;}
._1f{width:17.053200px;}
._4b{width:22.185000px;}
._4d{width:24.608700px;}
._4a{width:30.600000px;}
._e{width:40.215600px;}
._23{width:44.460000px;}
._46{width:46.395000px;}
._31{width:64.935000px;}
._1c{width:73.215000px;}
._19{width:89.395920px;}
._48{width:94.750920px;}
._25{width:104.085000px;}
._44{width:113.650920px;}
._2d{width:120.915000px;}
._43{width:123.660000px;}
._1b{width:132.030000px;}
._24{width:137.115000px;}
._28{width:142.515000px;}
._49{width:180.315000px;}
._34{width:184.365000px;}
._37{width:195.165000px;}
._3c{width:205.965000px;}
._2e{width:213.390000px;}
._17{width:230.715000px;}
._29{width:234.990000px;}
._11{width:257.535000px;}
._15{width:289.645920px;}
._18{width:308.745000px;}
._2b{width:324.585000px;}
._16{width:330.345000px;}
._2f{width:353.880000px;}
._27{width:355.185000px;}
._3e{width:419.535000px;}
._1a{width:424.285920px;}
._2c{width:472.185000px;}
._14{width:479.590920px;}
._f{width:523.485000px;}
._33{width:530.955000px;}
._36{width:541.755000px;}
._3b{width:552.555000px;}
._3a{width:646.785000px;}
._42{width:753.300000px;}
._10{width:759.760920px;}
._12{width:761.085000px;}
._47{width:876.105000px;}
._45{width:881.955000px;}
._39{width:892.985040px;}
._2a{width:979.810920px;}
._26{width:1009.710000px;}
._32{width:1076.490000px;}
._13{width:1093.185000px;}
._30{width:1157.310000px;}
._3f{width:1176.595920px;}
._35{width:1192.365000px;}
._22{width:1197.900000px;}
._3d{width:1206.495000px;}
._38{width:1221.640920px;}
._40{width:1240.470000px;}
._41{width:1290.600000px;}
._1d{width:1790.536200px;}
.fc1{color:rgb(59,75,167);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:26.235000px;}
.fs0{font-size:27.984000px;}
.fs8{font-size:31.482000px;}
.fsb{font-size:45.000000px;}
.fs5{font-size:45.474000px;}
.fs1{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fsa{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.fs3{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y8d{bottom:21.000000px;}
.yf2{bottom:43.395600px;}
.y8b{bottom:43.519200px;}
.y8a{bottom:45.783750px;}
.y189{bottom:68.764200px;}
.y25e{bottom:69.301200px;}
.y213{bottom:69.562350px;}
.y11d{bottom:72.110400px;}
.y147{bottom:72.146400px;}
.y51{bottom:74.569200px;}
.y82{bottom:74.608200px;}
.yb8{bottom:77.614200px;}
.ye4{bottom:77.626200px;}
.y89{bottom:79.178100px;}
.y1dc{bottom:79.300350px;}
.y1b3{bottom:79.303350px;}
.y25d{bottom:82.801200px;}
.y11c{bottom:88.625400px;}
.y146{bottom:88.643400px;}
.y50{bottom:91.066200px;}
.y81{bottom:91.105200px;}
.y212{bottom:91.306350px;}
.y88{bottom:92.678100px;}
.yb7{bottom:94.111200px;}
.ye3{bottom:94.123200px;}
.y1db{bottom:95.797350px;}
.y1b2{bottom:95.800350px;}
.y25c{bottom:96.301200px;}
.y11b{bottom:105.122400px;}
.y145{bottom:105.140400px;}
.y87{bottom:106.178100px;}
.y4f{bottom:107.563200px;}
.y80{bottom:107.602200px;}
.y25b{bottom:109.801200px;}
.yb6{bottom:110.611200px;}
.ye2{bottom:110.620200px;}
.y1b1{bottom:112.297350px;}
.y1da{bottom:112.324350px;}
.y211{bottom:113.050350px;}
.y86{bottom:119.678100px;}
.y11a{bottom:121.619400px;}
.y144{bottom:121.637400px;}
.y25a{bottom:123.301200px;}
.y4e{bottom:124.060200px;}
.y7f{bottom:124.099200px;}
.y210{bottom:126.550350px;}
.ye1{bottom:127.117200px;}
.y1b0{bottom:128.809350px;}
.y1d9{bottom:128.821350px;}
.y85{bottom:133.178100px;}
.y259{bottom:136.801200px;}
.y119{bottom:138.116400px;}
.y143{bottom:138.134400px;}
.y4d{bottom:140.557200px;}
.y7e{bottom:140.596200px;}
.ye0{bottom:143.614200px;}
.y1af{bottom:145.306350px;}
.y1d8{bottom:145.318350px;}
.yb5{bottom:145.903200px;}
.y84{bottom:146.678100px;}
.y20f{bottom:149.794350px;}
.y258{bottom:150.301200px;}
.y118{bottom:154.613400px;}
.y142{bottom:154.631400px;}
.y4c{bottom:157.054200px;}
.y7d{bottom:157.093200px;}
.ydf{bottom:160.111200px;}
.y1ae{bottom:161.803350px;}
.y1d7{bottom:161.815350px;}
.yb4{bottom:162.400200px;}
.y20e{bottom:163.294350px;}
.y257{bottom:163.801200px;}
.y117{bottom:171.110400px;}
.y141{bottom:171.128400px;}
.y4b{bottom:173.557200px;}
.y7c{bottom:173.590200px;}
.yde{bottom:176.611200px;}
.y20d{bottom:176.794350px;}
.y256{bottom:177.301200px;}
.y1ad{bottom:178.300350px;}
.y1d6{bottom:178.312350px;}
.yb3{bottom:178.897200px;}
.y116{bottom:187.607400px;}
.y140{bottom:187.625400px;}
.y4a{bottom:190.054200px;}
.y7b{bottom:190.087200px;}
.y20c{bottom:190.294350px;}
.y255{bottom:190.801200px;}
.y1ac{bottom:194.797350px;}
.y1d5{bottom:194.809350px;}
.yb2{bottom:195.394200px;}
.y20b{bottom:203.794350px;}
.y115{bottom:204.107400px;}
.y13f{bottom:204.122400px;}
.y254{bottom:204.301200px;}
.y49{bottom:206.551200px;}
.y7a{bottom:206.584200px;}
.y1d4{bottom:211.306350px;}
.y1ab{bottom:211.312350px;}
.yb1{bottom:211.891200px;}
.ydd{bottom:213.397200px;}
.y20a{bottom:217.294350px;}
.y253{bottom:217.801200px;}
.y13e{bottom:220.619400px;}
.y48{bottom:222.997950px;}
.y79{bottom:223.081200px;}
.y1d3{bottom:227.803350px;}
.y1aa{bottom:227.809350px;}
.yb0{bottom:228.388200px;}
.ydc{bottom:229.894200px;}
.y209{bottom:230.794350px;}
.y252{bottom:231.301200px;}
.y13d{bottom:237.116400px;}
.y114{bottom:239.375400px;}
.y78{bottom:239.578200px;}
.y208{bottom:244.294350px;}
.y1d2{bottom:244.300350px;}
.y1a9{bottom:244.306350px;}
.y251{bottom:244.801200px;}
.yaf{bottom:244.885200px;}
.ydb{bottom:246.391200px;}
.y13c{bottom:253.613400px;}
.y113{bottom:255.872400px;}
.y77{bottom:256.075200px;}
.y207{bottom:257.794350px;}
.y250{bottom:258.301200px;}
.y1d1{bottom:260.797350px;}
.y1a8{bottom:260.803350px;}
.yae{bottom:261.382200px;}
.yda{bottom:262.888200px;}
.y13b{bottom:270.110400px;}
.y47{bottom:271.747200px;}
.y24f{bottom:271.801200px;}
.y112{bottom:272.369400px;}
.y76{bottom:272.572200px;}
.y1a7{bottom:277.300350px;}
.y1d0{bottom:277.312350px;}
.yad{bottom:277.879200px;}
.yd9{bottom:279.385200px;}
.y24e{bottom:285.301200px;}
.y13a{bottom:286.607400px;}
.y46{bottom:288.248700px;}
.y111{bottom:288.866400px;}
.y75{bottom:289.069200px;}
.y1a6{bottom:293.797350px;}
.y1cf{bottom:293.809350px;}
.yac{bottom:294.376200px;}
.yd8{bottom:295.882200px;}
.y24d{bottom:298.801200px;}
.y139{bottom:303.100650px;}
.y45{bottom:304.750200px;}
.y110{bottom:305.363400px;}
.y74{bottom:305.566200px;}
.y271{bottom:310.259100px;}
.y1ce{bottom:310.306350px;}
.y1a5{bottom:310.312350px;}
.yab{bottom:310.873200px;}
.y24c{bottom:312.301200px;}
.yd7{bottom:312.379200px;}
.y138{bottom:320.357400px;}
.y44{bottom:321.251700px;}
.y10f{bottom:321.860400px;}
.y73{bottom:322.063200px;}
.y24b{bottom:325.801200px;}
.y270{bottom:326.756100px;}
.y1cd{bottom:326.803350px;}
.y1a4{bottom:326.809350px;}
.yaa{bottom:327.370200px;}
.yd6{bottom:328.876200px;}
.y43{bottom:337.753200px;}
.y10e{bottom:338.357400px;}
.y72{bottom:338.560200px;}
.y24a{bottom:339.301200px;}
.y26f{bottom:343.253100px;}
.y1cc{bottom:343.300350px;}
.y1a3{bottom:343.306350px;}
.ya9{bottom:343.867200px;}
.yd5{bottom:345.373200px;}
.y249{bottom:352.801200px;}
.y137{bottom:354.119400px;}
.y42{bottom:354.254700px;}
.y10d{bottom:354.857400px;}
.y71{bottom:355.057200px;}
.y26e{bottom:359.750100px;}
.y1cb{bottom:359.797350px;}
.y1a2{bottom:359.803350px;}
.ya8{bottom:360.364200px;}
.yd4{bottom:361.870200px;}
.y248{bottom:366.301200px;}
.y136{bottom:370.616400px;}
.y41{bottom:370.756200px;}
.y70{bottom:371.554200px;}
.y26d{bottom:376.247100px;}
.y1a1{bottom:376.300350px;}
.y1ca{bottom:376.336350px;}
.ya7{bottom:376.861200px;}
.yd3{bottom:378.367200px;}
.y247{bottom:379.801200px;}
.y135{bottom:387.113400px;}
.y40{bottom:387.257700px;}
.y6f{bottom:388.057200px;}
.y10c{bottom:390.182400px;}
.y26c{bottom:392.747100px;}
.y1a0{bottom:392.797350px;}
.y1c9{bottom:392.833350px;}
.y246{bottom:393.301200px;}
.ya6{bottom:393.361200px;}
.yd2{bottom:394.864200px;}
.y134{bottom:403.610400px;}
.y3f{bottom:403.759200px;}
.y6e{bottom:404.554200px;}
.y10b{bottom:406.679400px;}
.y245{bottom:406.801200px;}
.y19f{bottom:409.294350px;}
.y1c8{bottom:409.330350px;}
.yd1{bottom:411.361200px;}
.y26b{bottom:418.262100px;}
.y133{bottom:420.110400px;}
.y3e{bottom:420.260700px;}
.y244{bottom:420.301200px;}
.y6d{bottom:421.093200px;}
.y10a{bottom:423.176400px;}
.y1c7{bottom:425.827350px;}
.y19e{bottom:425.854350px;}
.yd0{bottom:427.861200px;}
.ya5{bottom:428.626200px;}
.y17f{bottom:432.951900px;}
.y16b{bottom:433.322250px;}
.y243{bottom:433.801200px;}
.y26a{bottom:434.759100px;}
.y132{bottom:436.610400px;}
.y3d{bottom:436.762200px;}
.y6c{bottom:437.590200px;}
.y109{bottom:439.673400px;}
.y1c6{bottom:442.324350px;}
.y19d{bottom:442.351350px;}
.ya4{bottom:445.123200px;}
.y242{bottom:447.301200px;}
.y17e{bottom:449.448900px;}
.y16a{bottom:449.819250px;}
.y269{bottom:451.256100px;}
.y131{bottom:453.122400px;}
.y3c{bottom:453.263700px;}
.y6b{bottom:454.087200px;}
.y108{bottom:456.170400px;}
.y1c5{bottom:458.821350px;}
.y19c{bottom:458.848350px;}
.y241{bottom:460.801200px;}
.ya3{bottom:461.620200px;}
.ycf{bottom:464.656200px;}
.y17d{bottom:465.945900px;}
.y169{bottom:466.316250px;}
.y268{bottom:467.753100px;}
.y130{bottom:469.619400px;}
.y3b{bottom:469.765200px;}
.y6a{bottom:470.584200px;}
.y107{bottom:472.667400px;}
.y240{bottom:474.301200px;}
.y1c4{bottom:475.318350px;}
.y19b{bottom:475.345350px;}
.ya2{bottom:478.117200px;}
.yce{bottom:481.153200px;}
.y17c{bottom:482.445900px;}
.y168{bottom:482.813250px;}
.y267{bottom:484.250100px;}
.y1b{bottom:484.988700px;}
.y12f{bottom:486.116400px;}
.y3a{bottom:486.266700px;}
.y69{bottom:487.081200px;}
.y23f{bottom:487.801200px;}
.y106{bottom:489.164400px;}
.y1c3{bottom:491.815350px;}
.y19a{bottom:491.842350px;}
.ya1{bottom:494.614200px;}
.ycd{bottom:497.650200px;}
.y1a{bottom:498.488700px;}
.y167{bottom:499.310250px;}
.y266{bottom:500.747100px;}
.y23e{bottom:501.301200px;}
.y12e{bottom:502.613400px;}
.y39{bottom:502.768200px;}
.y68{bottom:503.578200px;}
.y105{bottom:505.661400px;}
.y1c2{bottom:508.312350px;}
.y199{bottom:508.339350px;}
.ya0{bottom:511.111200px;}
.y19{bottom:511.988700px;}
.ycc{bottom:514.147200px;}
.y23d{bottom:514.801200px;}
.y166{bottom:515.807250px;}
.y17b{bottom:516.293250px;}
.y265{bottom:517.247100px;}
.y12d{bottom:519.110400px;}
.y38{bottom:519.269700px;}
.y67{bottom:520.075200px;}
.y104{bottom:522.158400px;}
.y1c1{bottom:524.809350px;}
.y198{bottom:524.836350px;}
.y9f{bottom:527.611200px;}
.y23c{bottom:528.301200px;}
.ycb{bottom:530.644200px;}
.y165{bottom:532.304250px;}
.y17a{bottom:532.790250px;}
.y12c{bottom:535.607400px;}
.y37{bottom:535.771200px;}
.y66{bottom:536.572200px;}
.y103{bottom:538.655400px;}
.y18{bottom:538.988700px;}
.y1c0{bottom:541.306350px;}
.y197{bottom:541.333350px;}
.y23b{bottom:541.801200px;}
.y264{bottom:542.756100px;}
.yca{bottom:547.141200px;}
.y164{bottom:548.801250px;}
.y179{bottom:549.287250px;}
.y12b{bottom:552.104400px;}
.y36{bottom:552.272700px;}
.y17{bottom:552.488700px;}
.y65{bottom:553.069200px;}
.y102{bottom:555.152400px;}
.y23a{bottom:555.301200px;}
.y1bf{bottom:557.803350px;}
.y196{bottom:557.830350px;}
.y263{bottom:559.253100px;}
.y9e{bottom:562.873200px;}
.yc9{bottom:563.638200px;}
.y163{bottom:565.298250px;}
.y178{bottom:565.784250px;}
.y16{bottom:565.988700px;}
.y12a{bottom:568.601400px;}
.y35{bottom:568.774200px;}
.y239{bottom:568.801200px;}
.y64{bottom:569.566200px;}
.y101{bottom:571.649400px;}
.y1be{bottom:574.300350px;}
.y195{bottom:574.327350px;}
.y262{bottom:575.750100px;}
.y9d{bottom:579.370200px;}
.y15{bottom:579.488700px;}
.yc8{bottom:580.135200px;}
.y162{bottom:581.795250px;}
.y177{bottom:582.281250px;}
.y238{bottom:582.301200px;}
.y34{bottom:585.275700px;}
.y63{bottom:586.063200px;}
.y100{bottom:588.146400px;}
.y1bd{bottom:590.797350px;}
.y194{bottom:590.824350px;}
.y261{bottom:592.247100px;}
.y14{bottom:592.988700px;}
.y237{bottom:595.801200px;}
.y9c{bottom:595.867200px;}
.yc7{bottom:596.632200px;}
.y161{bottom:598.292250px;}
.y176{bottom:598.778250px;}
.y33{bottom:601.777200px;}
.y62{bottom:602.560200px;}
.y129{bottom:603.132900px;}
.yff{bottom:604.643400px;}
.y1bc{bottom:607.315350px;}
.y193{bottom:607.321350px;}
.y260{bottom:608.747100px;}
.y236{bottom:609.301200px;}
.y9b{bottom:612.364200px;}
.yc6{bottom:613.129200px;}
.y160{bottom:614.789250px;}
.y175{bottom:615.275250px;}
.y32{bottom:618.278700px;}
.y61{bottom:619.057200px;}
.yfe{bottom:621.140400px;}
.y235{bottom:622.801200px;}
.y1bb{bottom:623.812350px;}
.y192{bottom:623.818350px;}
.y13{bottom:624.488700px;}
.y9a{bottom:628.861200px;}
.yc5{bottom:629.626200px;}
.y15f{bottom:631.286250px;}
.y174{bottom:631.772250px;}
.y31{bottom:634.780200px;}
.y60{bottom:635.554200px;}
.y234{bottom:636.301200px;}
.yfd{bottom:637.637400px;}
.y128{bottom:637.638900px;}
.y12{bottom:637.988700px;}
.y1ba{bottom:640.309350px;}
.y191{bottom:640.315350px;}
.y25f{bottom:641.527050px;}
.y99{bottom:645.354450px;}
.yc4{bottom:646.123200px;}
.y15e{bottom:647.783250px;}
.y173{bottom:648.269250px;}
.y233{bottom:649.801200px;}
.y30{bottom:651.281700px;}
.y11{bottom:651.488700px;}
.y5f{bottom:652.069200px;}
.yfc{bottom:654.134400px;}
.y127{bottom:654.135900px;}
.y1b9{bottom:656.806350px;}
.y190{bottom:656.812350px;}
.y98{bottom:662.611200px;}
.yc3{bottom:662.620200px;}
.y232{bottom:663.301200px;}
.y15d{bottom:664.280250px;}
.y172{bottom:664.766250px;}
.y2f{bottom:667.783200px;}
.y5e{bottom:668.566200px;}
.y10{bottom:668.984700px;}
.yfb{bottom:670.631400px;}
.y126{bottom:670.632900px;}
.y1b8{bottom:673.303350px;}
.y18f{bottom:673.309350px;}
.y231{bottom:676.801200px;}
.yf{bottom:678.488700px;}
.yc2{bottom:679.117200px;}
.y15c{bottom:680.777250px;}
.y171{bottom:681.263250px;}
.y2e{bottom:684.284700px;}
.y5d{bottom:685.063200px;}
.yfa{bottom:687.128400px;}
.y125{bottom:687.129900px;}
.y1b7{bottom:689.800350px;}
.y18e{bottom:689.806350px;}
.y230{bottom:690.301200px;}
.yc1{bottom:695.614200px;}
.y206{bottom:695.818350px;}
.ye{bottom:695.984700px;}
.y15b{bottom:697.274250px;}
.y170{bottom:697.760250px;}
.y97{bottom:697.888200px;}
.y2d{bottom:700.786200px;}
.y5c{bottom:701.560200px;}
.yf9{bottom:703.625400px;}
.y124{bottom:703.626900px;}
.y22f{bottom:703.801200px;}
.yd{bottom:705.488700px;}
.y1b6{bottom:706.297350px;}
.y18d{bottom:706.303350px;}
.yc0{bottom:712.111200px;}
.y205{bottom:712.315350px;}
.y15a{bottom:713.771250px;}
.y16f{bottom:714.257250px;}
.y96{bottom:714.385200px;}
.y2c{bottom:717.287700px;}
.y22e{bottom:717.301200px;}
.y5b{bottom:718.057200px;}
.yc{bottom:718.988700px;}
.yf8{bottom:720.122400px;}
.y123{bottom:720.123900px;}
.y1b5{bottom:722.794350px;}
.y18c{bottom:722.800350px;}
.ybf{bottom:728.611200px;}
.y204{bottom:728.812350px;}
.y159{bottom:730.268250px;}
.y16e{bottom:730.754250px;}
.y22d{bottom:730.801200px;}
.y95{bottom:730.882200px;}
.y2b{bottom:733.789200px;}
.y5a{bottom:734.554200px;}
.yb{bottom:736.484700px;}
.yf7{bottom:736.619400px;}
.y122{bottom:736.620900px;}
.y18b{bottom:739.297350px;}
.y22c{bottom:744.301200px;}
.y203{bottom:745.309350px;}
.ya{bottom:745.988700px;}
.y158{bottom:746.765250px;}
.y16d{bottom:747.251250px;}
.y94{bottom:747.379200px;}
.y2a{bottom:750.290700px;}
.y59{bottom:751.060200px;}
.yf6{bottom:753.116400px;}
.y121{bottom:753.117900px;}
.y18a{bottom:755.794350px;}
.y1b4{bottom:755.801850px;}
.y22b{bottom:757.801200px;}
.y9{bottom:759.488700px;}
.y202{bottom:761.806350px;}
.y157{bottom:763.265250px;}
.y16c{bottom:763.748250px;}
.ybe{bottom:763.873200px;}
.y93{bottom:763.876200px;}
.y29{bottom:766.792200px;}
.y58{bottom:767.557200px;}
.yf5{bottom:769.613400px;}
.y120{bottom:769.614900px;}
.y22a{bottom:771.301200px;}
.y8{bottom:772.988700px;}
.y201{bottom:778.303350px;}
.ybd{bottom:780.370200px;}
.y92{bottom:780.373200px;}
.y28{bottom:783.293700px;}
.y57{bottom:784.054200px;}
.y229{bottom:784.801200px;}
.yf4{bottom:786.110400px;}
.y11f{bottom:786.111900px;}
.y7{bottom:790.484700px;}
.y200{bottom:794.800350px;}
.ybc{bottom:796.867200px;}
.y91{bottom:796.870200px;}
.y228{bottom:798.301200px;}
.y1ec{bottom:799.418700px;}
.y27{bottom:799.795200px;}
.y6{bottom:799.988700px;}
.y56{bottom:800.554200px;}
.yf3{bottom:802.607400px;}
.y11e{bottom:802.608900px;}
.y1ff{bottom:811.297350px;}
.y227{bottom:811.801200px;}
.ybb{bottom:813.364200px;}
.y90{bottom:813.367200px;}
.y5{bottom:813.488700px;}
.y1eb{bottom:813.672450px;}
.y26{bottom:816.296700px;}
.y55{bottom:817.057200px;}
.y188{bottom:824.348700px;}
.y226{bottom:825.301200px;}
.y1fe{bottom:827.845350px;}
.y1ea{bottom:827.926200px;}
.yba{bottom:829.861200px;}
.y8f{bottom:829.864200px;}
.y4{bottom:830.984700px;}
.y25{bottom:832.798200px;}
.y54{bottom:833.554200px;}
.y187{bottom:838.602450px;}
.y225{bottom:838.801200px;}
.y3{bottom:840.488700px;}
.y1fd{bottom:844.342350px;}
.y1e9{bottom:845.348700px;}
.yb9{bottom:846.358200px;}
.y8e{bottom:846.361200px;}
.y156{bottom:848.341200px;}
.y24{bottom:849.299700px;}
.y53{bottom:850.076700px;}
.y224{bottom:852.301200px;}
.y186{bottom:852.856200px;}
.y2{bottom:853.988700px;}
.y1fc{bottom:860.839350px;}
.y155{bottom:862.594950px;}
.y1e8{bottom:862.786200px;}
.y23{bottom:865.801200px;}
.y52{bottom:866.573700px;}
.y185{bottom:870.293700px;}
.y1{bottom:871.484700px;}
.y154{bottom:876.848700px;}
.y1e7{bottom:877.039950px;}
.y1fb{bottom:877.336350px;}
.y223{bottom:879.301200px;}
.y184{bottom:887.731200px;}
.y222{bottom:892.801200px;}
.y1fa{bottom:893.833350px;}
.yf1{bottom:894.098700px;}
.y153{bottom:894.286200px;}
.y1e6{bottom:894.477450px;}
.y183{bottom:905.168700px;}
.y221{bottom:906.301200px;}
.y22{bottom:907.048200px;}
.y1e5{bottom:908.731200px;}
.y1f9{bottom:910.330350px;}
.yf0{bottom:911.536200px;}
.y152{bottom:911.723700px;}
.y220{bottom:919.801200px;}
.y182{bottom:922.606200px;}
.y1e4{bottom:926.168700px;}
.y1f8{bottom:926.827350px;}
.yef{bottom:928.973700px;}
.y151{bottom:929.161200px;}
.y21{bottom:929.548200px;}
.y21f{bottom:933.301200px;}
.y181{bottom:940.043700px;}
.y1e3{bottom:940.422450px;}
.yee{bottom:943.227450px;}
.y1f7{bottom:943.324350px;}
.y150{bottom:943.414950px;}
.y21e{bottom:946.801200px;}
.y20{bottom:952.051200px;}
.y180{bottom:957.481200px;}
.y1f6{bottom:959.821350px;}
.y21d{bottom:960.301200px;}
.yed{bottom:960.664950px;}
.y1e2{bottom:960.844950px;}
.y14f{bottom:960.852450px;}
.yec{bottom:974.918700px;}
.y1f5{bottom:976.318350px;}
.y14e{bottom:978.289950px;}
.y1e1{bottom:981.286200px;}
.y1f{bottom:991.051200px;}
.yeb{bottom:992.356200px;}
.y1f4{bottom:992.815350px;}
.y21c{bottom:995.566350px;}
.y14d{bottom:995.727450px;}
.y1e0{bottom:998.723700px;}
.y21b{bottom:1009.066350px;}
.y1f3{bottom:1009.312350px;}
.yea{bottom:1009.793700px;}
.y14c{bottom:1009.981200px;}
.y1df{bottom:1012.977450px;}
.y21a{bottom:1022.566350px;}
.y1f2{bottom:1025.809350px;}
.y1e{bottom:1027.051200px;}
.ye9{bottom:1027.231200px;}
.y1de{bottom:1030.414950px;}
.y14b{bottom:1030.422450px;}
.y219{bottom:1042.066350px;}
.y1f1{bottom:1042.306350px;}
.ye8{bottom:1044.668700px;}
.y148{bottom:1044.676200px;}
.y218{bottom:1055.566350px;}
.y276{bottom:1056.113700px;}
.y1f0{bottom:1058.803350px;}
.ye7{bottom:1058.922450px;}
.y1d{bottom:1063.051200px;}
.y14a{bottom:1065.106200px;}
.y1dd{bottom:1065.109950px;}
.y217{bottom:1069.066350px;}
.y275{bottom:1069.613700px;}
.y1ef{bottom:1075.300350px;}
.y149{bottom:1079.359950px;}
.ye6{bottom:1079.363700px;}
.y216{bottom:1082.566350px;}
.y274{bottom:1083.113700px;}
.y1ee{bottom:1091.797350px;}
.y215{bottom:1096.066350px;}
.y273{bottom:1096.613700px;}
.ye5{bottom:1100.176200px;}
.y1c{bottom:1105.051200px;}
.y1ed{bottom:1108.294350px;}
.y214{bottom:1109.566350px;}
.y272{bottom:1110.113700px;}
.y83{bottom:1140.782100px;}
.y8c{bottom:1155.000000px;}
.h2{height:21.323808px;}
.h14{height:34.290000px;}
.h1d{height:35.036070px;}
.h1c{height:35.051070px;}
.h3{height:36.576000px;}
.h15{height:37.070400px;}
.h20{height:40.356000px;}
.h9{height:40.869141px;}
.h13{height:41.148000px;}
.h16{height:41.475586px;}
.h17{height:41.568709px;}
.h1e{height:41.604709px;}
.hf{height:41.640709px;}
.h1b{height:41.688709px;}
.hb{height:41.706709px;}
.h1f{height:41.712709px;}
.h1a{height:41.724709px;}
.he{height:41.736709px;}
.h18{height:41.748709px;}
.hd{height:41.772709px;}
.h19{height:41.778709px;}
.ha{height:41.784709px;}
.hc{height:41.796709px;}
.h8{height:43.434000px;}
.h10{height:50.292000px;}
.h4{height:54.864000px;}
.h6{height:60.625188px;}
.h7{height:60.637188px;}
.h12{height:62.578125px;}
.h11{height:68.835938px;}
.h5{height:91.440000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:43.674045px;}
.x1{left:63.000000px;}
.x6{left:68.250000px;}
.x1f{left:72.000000px;}
.x16{left:76.760100px;}
.x20{left:83.877000px;}
.x22{left:86.996250px;}
.x21{left:95.250000px;}
.x2{left:218.508750px;}
.x1d{left:260.103750px;}
.x10{left:261.911250px;}
.x8{left:268.486050px;}
.x15{left:371.325000px;}
.x17{left:420.492750px;}
.x5{left:440.360850px;}
.xb{left:460.035000px;}
.x13{left:472.417500px;}
.x11{left:473.533950px;}
.x12{left:481.053450px;}
.x1e{left:484.028700px;}
.x3{left:533.580150px;}
.xc{left:537.930000px;}
.x4{left:547.087050px;}
.x19{left:554.077500px;}
.x1a{left:624.581250px;}
.xd{left:625.916250px;}
.x18{left:642.522750px;}
.x14{left:669.056250px;}
.xe{left:686.925000px;}
.x1b{left:695.096250px;}
.x9{left:754.840185px;}
.x1c{left:765.600000px;}
.xf{left:774.911250px;}
.x7{left:824.153550px;}
@media print{
.v4{vertical-align:-16.074667pt;}
.v1{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.386667pt;}
.v3{vertical-align:15.962667pt;}
.v2{vertical-align:23.088000pt;}
.ls4{letter-spacing:-1.578667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.003200pt;}
.ls1{letter-spacing:0.004096pt;}
.ls7{letter-spacing:0.004629pt;}
.ls6{letter-spacing:0.005787pt;}
.ls9{letter-spacing:0.007467pt;}
.lsa{letter-spacing:0.023360pt;}
.ls5{letter-spacing:0.288000pt;}
.ls0{letter-spacing:1.266160pt;}
.ls2{letter-spacing:3.285333pt;}
.lsc{letter-spacing:40.437333pt;}
.lsb{letter-spacing:1013.379733pt;}
.ws2{word-spacing:-14.439493pt;}
.ws5{word-spacing:-13.344000pt;}
.ws3{word-spacing:-13.173333pt;}
.ws4{word-spacing:-12.160000pt;}
.ws82{word-spacing:-10.400000pt;}
.ws9{word-spacing:-10.240427pt;}
.ws1{word-spacing:-9.701120pt;}
.ws83{word-spacing:-9.600000pt;}
.ws6{word-spacing:-7.779552pt;}
.wsbc{word-spacing:-6.048480pt;}
.ws0{word-spacing:-5.969920pt;}
.wsdc{word-spacing:-5.376000pt;}
.ws3c{word-spacing:-3.744000pt;}
.wsa{word-spacing:-3.519360pt;}
.wsc7{word-spacing:-3.263520pt;}
.ws1d{word-spacing:-3.120000pt;}
.ws5c{word-spacing:-3.072000pt;}
.wsef{word-spacing:-2.976000pt;}
.ws16{word-spacing:-2.639520pt;}
.wscf{word-spacing:-2.543520pt;}
.wsa2{word-spacing:-2.496000pt;}
.wsa8{word-spacing:-2.400000pt;}
.ws46{word-spacing:-2.346667pt;}
.ws8{word-spacing:-2.346240pt;}
.ws47{word-spacing:-2.256000pt;}
.ws61{word-spacing:-2.208480pt;}
.ws10b{word-spacing:-2.199600pt;}
.wsa4{word-spacing:-2.160000pt;}
.wsb6{word-spacing:-2.112480pt;}
.ws3b{word-spacing:-2.064000pt;}
.wsed{word-spacing:-1.968000pt;}
.ws60{word-spacing:-1.919520pt;}
.ws2b{word-spacing:-1.823520pt;}
.ws10a{word-spacing:-1.800000pt;}
.wsc3{word-spacing:-1.776000pt;}
.ws3d{word-spacing:-1.488480pt;}
.ws5d{word-spacing:-1.392480pt;}
.ws1a{word-spacing:-1.344000pt;}
.ws72{word-spacing:-1.295520pt;}
.wsb{word-spacing:-1.266160pt;}
.ws2e{word-spacing:-1.248000pt;}
.ws94{word-spacing:-1.199520pt;}
.ws77{word-spacing:-1.152000pt;}
.ws54{word-spacing:-1.056000pt;}
.ws28{word-spacing:-1.008000pt;}
.wsba{word-spacing:-0.960000pt;}
.wsd2{word-spacing:-0.912000pt;}
.wsb9{word-spacing:-0.864480pt;}
.ws14{word-spacing:-0.816000pt;}
.ws109{word-spacing:-0.720400pt;}
.wsc9{word-spacing:-0.720000pt;}
.wsfa{word-spacing:-0.672480pt;}
.ws4b{word-spacing:-0.575520pt;}
.wsf9{word-spacing:-0.528000pt;}
.wsc4{word-spacing:-0.479520pt;}
.wsd0{word-spacing:-0.432000pt;}
.ws44{word-spacing:-0.384000pt;}
.ws1e{word-spacing:-0.336000pt;}
.ws5b{word-spacing:-0.288000pt;}
.ws6a{word-spacing:-0.240000pt;}
.ws8b{word-spacing:-0.192000pt;}
.wsbe{word-spacing:-0.144480pt;}
.ws93{word-spacing:-0.096000pt;}
.ws108{word-spacing:-0.080000pt;}
.ws81{word-spacing:-0.048000pt;}
.ws107{word-spacing:-0.043093pt;}
.wscd{word-spacing:-0.040000pt;}
.ws7{word-spacing:0.000000pt;}
.ws21{word-spacing:0.048480pt;}
.ws4a{word-spacing:0.192000pt;}
.ws51{word-spacing:0.240000pt;}
.wsb7{word-spacing:0.288000pt;}
.wsa1{word-spacing:0.384000pt;}
.wsa5{word-spacing:0.432000pt;}
.ws80{word-spacing:0.479520pt;}
.ws7b{word-spacing:0.624000pt;}
.ws92{word-spacing:0.672480pt;}
.ws70{word-spacing:0.720000pt;}
.wsa6{word-spacing:0.864480pt;}
.wsa9{word-spacing:0.912000pt;}
.ws2c{word-spacing:0.960000pt;}
.wsfd{word-spacing:1.008000pt;}
.ws84{word-spacing:1.103520pt;}
.ws1c{word-spacing:1.152000pt;}
.ws31{word-spacing:1.199520pt;}
.ws32{word-spacing:1.248000pt;}
.ws90{word-spacing:1.295520pt;}
.ws18{word-spacing:1.343232pt;}
.ws69{word-spacing:1.344000pt;}
.wsbb{word-spacing:1.392480pt;}
.ws29{word-spacing:1.440000pt;}
.ws45{word-spacing:1.578667pt;}
.ws71{word-spacing:1.632000pt;}
.ws9f{word-spacing:1.728000pt;}
.ws85{word-spacing:1.776000pt;}
.wsee{word-spacing:1.823520pt;}
.ws87{word-spacing:1.872000pt;}
.ws89{word-spacing:1.968000pt;}
.ws3e{word-spacing:2.016480pt;}
.ws30{word-spacing:2.064000pt;}
.ws7a{word-spacing:2.112480pt;}
.ws6b{word-spacing:2.160000pt;}
.ws100{word-spacing:2.256000pt;}
.ws19{word-spacing:2.304000pt;}
.ws8f{word-spacing:2.352000pt;}
.wsd1{word-spacing:2.400000pt;}
.ws68{word-spacing:2.447520pt;}
.wsc8{word-spacing:2.543520pt;}
.wsc1{word-spacing:2.592000pt;}
.ws66{word-spacing:2.639520pt;}
.wse6{word-spacing:2.688000pt;}
.ws4c{word-spacing:2.784000pt;}
.wsff{word-spacing:2.832480pt;}
.wsbf{word-spacing:2.880000pt;}
.wsf6{word-spacing:2.910336pt;}
.ws27{word-spacing:2.928000pt;}
.ws5a{word-spacing:3.024000pt;}
.ws4d{word-spacing:3.072000pt;}
.wse4{word-spacing:3.078240pt;}
.ws4e{word-spacing:3.167520pt;}
.ws57{word-spacing:3.216000pt;}
.ws5e{word-spacing:3.263520pt;}
.ws103{word-spacing:3.360480pt;}
.ws98{word-spacing:3.408000pt;}
.ws62{word-spacing:3.504000pt;}
.ws8e{word-spacing:3.552480pt;}
.ws74{word-spacing:3.600000pt;}
.wsec{word-spacing:3.648000pt;}
.wse8{word-spacing:3.696000pt;}
.ws58{word-spacing:3.744000pt;}
.wsb0{word-spacing:3.791520pt;}
.wsaa{word-spacing:3.840000pt;}
.ws3a{word-spacing:4.032000pt;}
.ws17{word-spacing:4.080480pt;}
.wsb8{word-spacing:4.128000pt;}
.wsf5{word-spacing:4.176480pt;}
.wsd4{word-spacing:4.224000pt;}
.ws88{word-spacing:4.272000pt;}
.ws48{word-spacing:4.320000pt;}
.ws79{word-spacing:4.416000pt;}
.ws5f{word-spacing:4.511520pt;}
.ws104{word-spacing:4.607520pt;}
.ws105{word-spacing:4.656000pt;}
.wse2{word-spacing:4.752000pt;}
.wsde{word-spacing:4.800480pt;}
.wsdf{word-spacing:4.848000pt;}
.wsf7{word-spacing:4.896480pt;}
.wsab{word-spacing:4.992000pt;}
.wsf8{word-spacing:5.040000pt;}
.ws7c{word-spacing:5.135520pt;}
.ws65{word-spacing:5.184000pt;}
.wsda{word-spacing:5.231520pt;}
.wse3{word-spacing:5.280000pt;}
.ws6d{word-spacing:5.327520pt;}
.ws12{word-spacing:5.376000pt;}
.ws36{word-spacing:5.424480pt;}
.ws8c{word-spacing:5.472000pt;}
.wsa0{word-spacing:5.520480pt;}
.ws49{word-spacing:5.568000pt;}
.ws96{word-spacing:5.616000pt;}
.wsc{word-spacing:5.664000pt;}
.ws3f{word-spacing:5.712000pt;}
.ws20{word-spacing:5.808000pt;}
.ws56{word-spacing:5.855520pt;}
.ws73{word-spacing:5.904000pt;}
.wsdb{word-spacing:5.951520pt;}
.ws23{word-spacing:6.000000pt;}
.ws41{word-spacing:6.096000pt;}
.ws86{word-spacing:6.144480pt;}
.wsa7{word-spacing:6.192000pt;}
.wsb3{word-spacing:6.240000pt;}
.wsea{word-spacing:6.288000pt;}
.ws33{word-spacing:6.336000pt;}
.ws1b{word-spacing:6.384000pt;}
.ws6e{word-spacing:6.432000pt;}
.ws67{word-spacing:6.479520pt;}
.ws26{word-spacing:6.672480pt;}
.wsd8{word-spacing:6.720000pt;}
.wsb4{word-spacing:6.768480pt;}
.ws13{word-spacing:6.864480pt;}
.wsb1{word-spacing:6.912000pt;}
.ws4f{word-spacing:6.960000pt;}
.ws106{word-spacing:7.056000pt;}
.ws34{word-spacing:7.103520pt;}
.ws9e{word-spacing:7.152000pt;}
.ws7e{word-spacing:7.248000pt;}
.ws55{word-spacing:7.584000pt;}
.ws1f{word-spacing:7.728000pt;}
.ws91{word-spacing:7.776000pt;}
.wse1{word-spacing:7.863784pt;}
.ws101{word-spacing:7.919520pt;}
.wsb2{word-spacing:7.968000pt;}
.ws38{word-spacing:8.016480pt;}
.wsbd{word-spacing:8.256000pt;}
.wsf{word-spacing:8.304000pt;}
.ws8a{word-spacing:8.400000pt;}
.ws78{word-spacing:8.496000pt;}
.ws75{word-spacing:8.543520pt;}
.wsac{word-spacing:8.639520pt;}
.ws102{word-spacing:8.688000pt;}
.wsf4{word-spacing:8.736480pt;}
.wsd5{word-spacing:8.832480pt;}
.wsa3{word-spacing:9.024000pt;}
.ws2f{word-spacing:9.216000pt;}
.wsf0{word-spacing:9.408000pt;}
.ws2d{word-spacing:9.456480pt;}
.ws25{word-spacing:9.600000pt;}
.ws42{word-spacing:9.648000pt;}
.wse5{word-spacing:9.696000pt;}
.wse7{word-spacing:9.887520pt;}
.wsd3{word-spacing:9.983520pt;}
.ws76{word-spacing:10.176480pt;}
.ws8d{word-spacing:10.224000pt;}
.ws7f{word-spacing:10.511520pt;}
.ws63{word-spacing:10.607520pt;}
.wsfb{word-spacing:10.752000pt;}
.wse9{word-spacing:10.896480pt;}
.ws15{word-spacing:11.088000pt;}
.ws35{word-spacing:11.135520pt;}
.wsc6{word-spacing:11.184000pt;}
.wseb{word-spacing:11.231520pt;}
.wsfe{word-spacing:11.280000pt;}
.ws6f{word-spacing:11.808000pt;}
.wsad{word-spacing:11.951520pt;}
.ws95{word-spacing:12.096000pt;}
.wsd9{word-spacing:12.479520pt;}
.ws52{word-spacing:12.528000pt;}
.ws9b{word-spacing:12.575520pt;}
.wse{word-spacing:12.960000pt;}
.wsc0{word-spacing:13.103520pt;}
.wsc2{word-spacing:13.199520pt;}
.ws37{word-spacing:13.392480pt;}
.wsf2{word-spacing:13.440000pt;}
.wse0{word-spacing:13.488480pt;}
.ws97{word-spacing:13.680000pt;}
.ws2a{word-spacing:13.823520pt;}
.ws24{word-spacing:13.968000pt;}
.wsd7{word-spacing:14.160000pt;}
.ws7d{word-spacing:14.208480pt;}
.ws40{word-spacing:14.256000pt;}
.ws50{word-spacing:14.400000pt;}
.wsf3{word-spacing:14.832480pt;}
.ws6c{word-spacing:14.976000pt;}
.wsc5{word-spacing:15.552480pt;}
.wsfc{word-spacing:15.887520pt;}
.wsf1{word-spacing:16.320000pt;}
.ws39{word-spacing:16.511520pt;}
.wsaf{word-spacing:16.704480pt;}
.wsae{word-spacing:17.088000pt;}
.ws64{word-spacing:17.376000pt;}
.ws11{word-spacing:17.520480pt;}
.ws59{word-spacing:17.712000pt;}
.ws22{word-spacing:18.336000pt;}
.wsd6{word-spacing:18.672480pt;}
.wsdd{word-spacing:19.248000pt;}
.ws9d{word-spacing:19.440000pt;}
.ws9c{word-spacing:19.584000pt;}
.ws10{word-spacing:21.312000pt;}
.ws9a{word-spacing:21.408000pt;}
.ws99{word-spacing:21.791520pt;}
.wsca{word-spacing:22.176480pt;}
.wsb5{word-spacing:23.568000pt;}
.ws53{word-spacing:24.288000pt;}
.wscb{word-spacing:25.248000pt;}
.wsd{word-spacing:25.919520pt;}
.ws43{word-spacing:39.167520pt;}
.wscc{word-spacing:83.440000pt;}
.wsce{word-spacing:173.880000pt;}
._8{margin-left:-2210.728373pt;}
._4e{margin-left:-52.480000pt;}
._c{margin-left:-30.576960pt;}
._b{margin-left:-18.288000pt;}
._21{margin-left:-16.272000pt;}
._a{margin-left:-14.880000pt;}
._1e{margin-left:-11.664000pt;}
._d{margin-left:-9.072000pt;}
._20{margin-left:-7.046400pt;}
._6{margin-left:-6.146560pt;}
._9{margin-left:-5.025600pt;}
._5{margin-left:-3.827200pt;}
._2{margin-left:-2.764480pt;}
._0{margin-left:-1.583040pt;}
._1{width:1.924587pt;}
._4{width:3.513600pt;}
._4c{width:8.000000pt;}
._3{width:10.244800pt;}
._7{width:13.173333pt;}
._1f{width:15.158400pt;}
._4b{width:19.720000pt;}
._4d{width:21.874400pt;}
._4a{width:27.200000pt;}
._e{width:35.747200pt;}
._23{width:39.520000pt;}
._46{width:41.240000pt;}
._31{width:57.720000pt;}
._1c{width:65.080000pt;}
._19{width:79.463040pt;}
._48{width:84.223040pt;}
._25{width:92.520000pt;}
._44{width:101.023040pt;}
._2d{width:107.480000pt;}
._43{width:109.920000pt;}
._1b{width:117.360000pt;}
._24{width:121.880000pt;}
._28{width:126.680000pt;}
._49{width:160.280000pt;}
._34{width:163.880000pt;}
._37{width:173.480000pt;}
._3c{width:183.080000pt;}
._2e{width:189.680000pt;}
._17{width:205.080000pt;}
._29{width:208.880000pt;}
._11{width:228.920000pt;}
._15{width:257.463040pt;}
._18{width:274.440000pt;}
._2b{width:288.520000pt;}
._16{width:293.640000pt;}
._2f{width:314.560000pt;}
._27{width:315.720000pt;}
._3e{width:372.920000pt;}
._1a{width:377.143040pt;}
._2c{width:419.720000pt;}
._14{width:426.303040pt;}
._f{width:465.320000pt;}
._33{width:471.960000pt;}
._36{width:481.560000pt;}
._3b{width:491.160000pt;}
._3a{width:574.920000pt;}
._42{width:669.600000pt;}
._10{width:675.343040pt;}
._12{width:676.520000pt;}
._47{width:778.760000pt;}
._45{width:783.960000pt;}
._39{width:793.764480pt;}
._2a{width:870.943040pt;}
._26{width:897.520000pt;}
._32{width:956.880000pt;}
._13{width:971.720000pt;}
._30{width:1028.720000pt;}
._3f{width:1045.863040pt;}
._35{width:1059.880000pt;}
._22{width:1064.800000pt;}
._3d{width:1072.440000pt;}
._38{width:1085.903040pt;}
._40{width:1102.640000pt;}
._41{width:1147.200000pt;}
._1d{width:1591.587733pt;}
.fsc{font-size:23.320000pt;}
.fs0{font-size:24.874667pt;}
.fs8{font-size:27.984000pt;}
.fsb{font-size:40.000000pt;}
.fs5{font-size:40.421333pt;}
.fs1{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fsa{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.fs3{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:18.666667pt;}
.yf2{bottom:38.573867pt;}
.y8b{bottom:38.683733pt;}
.y8a{bottom:40.696667pt;}
.y189{bottom:61.123733pt;}
.y25e{bottom:61.601067pt;}
.y213{bottom:61.833200pt;}
.y11d{bottom:64.098133pt;}
.y147{bottom:64.130133pt;}
.y51{bottom:66.283733pt;}
.y82{bottom:66.318400pt;}
.yb8{bottom:68.990400pt;}
.ye4{bottom:69.001067pt;}
.y89{bottom:70.380533pt;}
.y1dc{bottom:70.489200pt;}
.y1b3{bottom:70.491867pt;}
.y25d{bottom:73.601067pt;}
.y11c{bottom:78.778133pt;}
.y146{bottom:78.794133pt;}
.y50{bottom:80.947733pt;}
.y81{bottom:80.982400pt;}
.y212{bottom:81.161200pt;}
.y88{bottom:82.380533pt;}
.yb7{bottom:83.654400pt;}
.ye3{bottom:83.665067pt;}
.y1db{bottom:85.153200pt;}
.y1b2{bottom:85.155867pt;}
.y25c{bottom:85.601067pt;}
.y11b{bottom:93.442133pt;}
.y145{bottom:93.458133pt;}
.y87{bottom:94.380533pt;}
.y4f{bottom:95.611733pt;}
.y80{bottom:95.646400pt;}
.y25b{bottom:97.601067pt;}
.yb6{bottom:98.321067pt;}
.ye2{bottom:98.329067pt;}
.y1b1{bottom:99.819867pt;}
.y1da{bottom:99.843867pt;}
.y211{bottom:100.489200pt;}
.y86{bottom:106.380533pt;}
.y11a{bottom:108.106133pt;}
.y144{bottom:108.122133pt;}
.y25a{bottom:109.601067pt;}
.y4e{bottom:110.275733pt;}
.y7f{bottom:110.310400pt;}
.y210{bottom:112.489200pt;}
.ye1{bottom:112.993067pt;}
.y1b0{bottom:114.497200pt;}
.y1d9{bottom:114.507867pt;}
.y85{bottom:118.380533pt;}
.y259{bottom:121.601067pt;}
.y119{bottom:122.770133pt;}
.y143{bottom:122.786133pt;}
.y4d{bottom:124.939733pt;}
.y7e{bottom:124.974400pt;}
.ye0{bottom:127.657067pt;}
.y1af{bottom:129.161200pt;}
.y1d8{bottom:129.171867pt;}
.yb5{bottom:129.691733pt;}
.y84{bottom:130.380533pt;}
.y20f{bottom:133.150533pt;}
.y258{bottom:133.601067pt;}
.y118{bottom:137.434133pt;}
.y142{bottom:137.450133pt;}
.y4c{bottom:139.603733pt;}
.y7d{bottom:139.638400pt;}
.ydf{bottom:142.321067pt;}
.y1ae{bottom:143.825200pt;}
.y1d7{bottom:143.835867pt;}
.yb4{bottom:144.355733pt;}
.y20e{bottom:145.150533pt;}
.y257{bottom:145.601067pt;}
.y117{bottom:152.098133pt;}
.y141{bottom:152.114133pt;}
.y4b{bottom:154.273067pt;}
.y7c{bottom:154.302400pt;}
.yde{bottom:156.987733pt;}
.y20d{bottom:157.150533pt;}
.y256{bottom:157.601067pt;}
.y1ad{bottom:158.489200pt;}
.y1d6{bottom:158.499867pt;}
.yb3{bottom:159.019733pt;}
.y116{bottom:166.762133pt;}
.y140{bottom:166.778133pt;}
.y4a{bottom:168.937067pt;}
.y7b{bottom:168.966400pt;}
.y20c{bottom:169.150533pt;}
.y255{bottom:169.601067pt;}
.y1ac{bottom:173.153200pt;}
.y1d5{bottom:173.163867pt;}
.yb2{bottom:173.683733pt;}
.y20b{bottom:181.150533pt;}
.y115{bottom:181.428800pt;}
.y13f{bottom:181.442133pt;}
.y254{bottom:181.601067pt;}
.y49{bottom:183.601067pt;}
.y7a{bottom:183.630400pt;}
.y1d4{bottom:187.827867pt;}
.y1ab{bottom:187.833200pt;}
.yb1{bottom:188.347733pt;}
.ydd{bottom:189.686400pt;}
.y20a{bottom:193.150533pt;}
.y253{bottom:193.601067pt;}
.y13e{bottom:196.106133pt;}
.y48{bottom:198.220400pt;}
.y79{bottom:198.294400pt;}
.y1d3{bottom:202.491867pt;}
.y1aa{bottom:202.497200pt;}
.yb0{bottom:203.011733pt;}
.ydc{bottom:204.350400pt;}
.y209{bottom:205.150533pt;}
.y252{bottom:205.601067pt;}
.y13d{bottom:210.770133pt;}
.y114{bottom:212.778133pt;}
.y78{bottom:212.958400pt;}
.y208{bottom:217.150533pt;}
.y1d2{bottom:217.155867pt;}
.y1a9{bottom:217.161200pt;}
.y251{bottom:217.601067pt;}
.yaf{bottom:217.675733pt;}
.ydb{bottom:219.014400pt;}
.y13c{bottom:225.434133pt;}
.y113{bottom:227.442133pt;}
.y77{bottom:227.622400pt;}
.y207{bottom:229.150533pt;}
.y250{bottom:229.601067pt;}
.y1d1{bottom:231.819867pt;}
.y1a8{bottom:231.825200pt;}
.yae{bottom:232.339733pt;}
.yda{bottom:233.678400pt;}
.y13b{bottom:240.098133pt;}
.y47{bottom:241.553067pt;}
.y24f{bottom:241.601067pt;}
.y112{bottom:242.106133pt;}
.y76{bottom:242.286400pt;}
.y1a7{bottom:246.489200pt;}
.y1d0{bottom:246.499867pt;}
.yad{bottom:247.003733pt;}
.yd9{bottom:248.342400pt;}
.y24e{bottom:253.601067pt;}
.y13a{bottom:254.762133pt;}
.y46{bottom:256.221067pt;}
.y111{bottom:256.770133pt;}
.y75{bottom:256.950400pt;}
.y1a6{bottom:261.153200pt;}
.y1cf{bottom:261.163867pt;}
.yac{bottom:261.667733pt;}
.yd8{bottom:263.006400pt;}
.y24d{bottom:265.601067pt;}
.y139{bottom:269.422800pt;}
.y45{bottom:270.889067pt;}
.y110{bottom:271.434133pt;}
.y74{bottom:271.614400pt;}
.y271{bottom:275.785867pt;}
.y1ce{bottom:275.827867pt;}
.y1a5{bottom:275.833200pt;}
.yab{bottom:276.331733pt;}
.y24c{bottom:277.601067pt;}
.yd7{bottom:277.670400pt;}
.y138{bottom:284.762133pt;}
.y44{bottom:285.557067pt;}
.y10f{bottom:286.098133pt;}
.y73{bottom:286.278400pt;}
.y24b{bottom:289.601067pt;}
.y270{bottom:290.449867pt;}
.y1cd{bottom:290.491867pt;}
.y1a4{bottom:290.497200pt;}
.yaa{bottom:290.995733pt;}
.yd6{bottom:292.334400pt;}
.y43{bottom:300.225067pt;}
.y10e{bottom:300.762133pt;}
.y72{bottom:300.942400pt;}
.y24a{bottom:301.601067pt;}
.y26f{bottom:305.113867pt;}
.y1cc{bottom:305.155867pt;}
.y1a3{bottom:305.161200pt;}
.ya9{bottom:305.659733pt;}
.yd5{bottom:306.998400pt;}
.y249{bottom:313.601067pt;}
.y137{bottom:314.772800pt;}
.y42{bottom:314.893067pt;}
.y10d{bottom:315.428800pt;}
.y71{bottom:315.606400pt;}
.y26e{bottom:319.777867pt;}
.y1cb{bottom:319.819867pt;}
.y1a2{bottom:319.825200pt;}
.ya8{bottom:320.323733pt;}
.yd4{bottom:321.662400pt;}
.y248{bottom:325.601067pt;}
.y136{bottom:329.436800pt;}
.y41{bottom:329.561067pt;}
.y70{bottom:330.270400pt;}
.y26d{bottom:334.441867pt;}
.y1a1{bottom:334.489200pt;}
.y1ca{bottom:334.521200pt;}
.ya7{bottom:334.987733pt;}
.yd3{bottom:336.326400pt;}
.y247{bottom:337.601067pt;}
.y135{bottom:344.100800pt;}
.y40{bottom:344.229067pt;}
.y6f{bottom:344.939733pt;}
.y10c{bottom:346.828800pt;}
.y26c{bottom:349.108533pt;}
.y1a0{bottom:349.153200pt;}
.y1c9{bottom:349.185200pt;}
.y246{bottom:349.601067pt;}
.ya6{bottom:349.654400pt;}
.yd2{bottom:350.990400pt;}
.y134{bottom:358.764800pt;}
.y3f{bottom:358.897067pt;}
.y6e{bottom:359.603733pt;}
.y10b{bottom:361.492800pt;}
.y245{bottom:361.601067pt;}
.y19f{bottom:363.817200pt;}
.y1c8{bottom:363.849200pt;}
.yd1{bottom:365.654400pt;}
.y26b{bottom:371.788533pt;}
.y133{bottom:373.431467pt;}
.y3e{bottom:373.565067pt;}
.y244{bottom:373.601067pt;}
.y6d{bottom:374.305067pt;}
.y10a{bottom:376.156800pt;}
.y1c7{bottom:378.513200pt;}
.y19e{bottom:378.537200pt;}
.yd0{bottom:380.321067pt;}
.ya5{bottom:381.001067pt;}
.y17f{bottom:384.846133pt;}
.y16b{bottom:385.175333pt;}
.y243{bottom:385.601067pt;}
.y26a{bottom:386.452533pt;}
.y132{bottom:388.098133pt;}
.y3d{bottom:388.233067pt;}
.y6c{bottom:388.969067pt;}
.y109{bottom:390.820800pt;}
.y1c6{bottom:393.177200pt;}
.y19d{bottom:393.201200pt;}
.ya4{bottom:395.665067pt;}
.y242{bottom:397.601067pt;}
.y17e{bottom:399.510133pt;}
.y16a{bottom:399.839333pt;}
.y269{bottom:401.116533pt;}
.y131{bottom:402.775467pt;}
.y3c{bottom:402.901067pt;}
.y6b{bottom:403.633067pt;}
.y108{bottom:405.484800pt;}
.y1c5{bottom:407.841200pt;}
.y19c{bottom:407.865200pt;}
.y241{bottom:409.601067pt;}
.ya3{bottom:410.329067pt;}
.ycf{bottom:413.027733pt;}
.y17d{bottom:414.174133pt;}
.y169{bottom:414.503333pt;}
.y268{bottom:415.780533pt;}
.y130{bottom:417.439467pt;}
.y3b{bottom:417.569067pt;}
.y6a{bottom:418.297067pt;}
.y107{bottom:420.148800pt;}
.y240{bottom:421.601067pt;}
.y1c4{bottom:422.505200pt;}
.y19b{bottom:422.529200pt;}
.ya2{bottom:424.993067pt;}
.yce{bottom:427.691733pt;}
.y17c{bottom:428.840800pt;}
.y168{bottom:429.167333pt;}
.y267{bottom:430.444533pt;}
.y1b{bottom:431.101067pt;}
.y12f{bottom:432.103467pt;}
.y3a{bottom:432.237067pt;}
.y69{bottom:432.961067pt;}
.y23f{bottom:433.601067pt;}
.y106{bottom:434.812800pt;}
.y1c3{bottom:437.169200pt;}
.y19a{bottom:437.193200pt;}
.ya1{bottom:439.657067pt;}
.ycd{bottom:442.355733pt;}
.y1a{bottom:443.101067pt;}
.y167{bottom:443.831333pt;}
.y266{bottom:445.108533pt;}
.y23e{bottom:445.601067pt;}
.y12e{bottom:446.767467pt;}
.y39{bottom:446.905067pt;}
.y68{bottom:447.625067pt;}
.y105{bottom:449.476800pt;}
.y1c2{bottom:451.833200pt;}
.y199{bottom:451.857200pt;}
.ya0{bottom:454.321067pt;}
.y19{bottom:455.101067pt;}
.ycc{bottom:457.019733pt;}
.y23d{bottom:457.601067pt;}
.y166{bottom:458.495333pt;}
.y17b{bottom:458.927333pt;}
.y265{bottom:459.775200pt;}
.y12d{bottom:461.431467pt;}
.y38{bottom:461.573067pt;}
.y67{bottom:462.289067pt;}
.y104{bottom:464.140800pt;}
.y1c1{bottom:466.497200pt;}
.y198{bottom:466.521200pt;}
.y9f{bottom:468.987733pt;}
.y23c{bottom:469.601067pt;}
.ycb{bottom:471.683733pt;}
.y165{bottom:473.159333pt;}
.y17a{bottom:473.591333pt;}
.y12c{bottom:476.095467pt;}
.y37{bottom:476.241067pt;}
.y66{bottom:476.953067pt;}
.y103{bottom:478.804800pt;}
.y18{bottom:479.101067pt;}
.y1c0{bottom:481.161200pt;}
.y197{bottom:481.185200pt;}
.y23b{bottom:481.601067pt;}
.y264{bottom:482.449867pt;}
.yca{bottom:486.347733pt;}
.y164{bottom:487.823333pt;}
.y179{bottom:488.255333pt;}
.y12b{bottom:490.759467pt;}
.y36{bottom:490.909067pt;}
.y17{bottom:491.101067pt;}
.y65{bottom:491.617067pt;}
.y102{bottom:493.468800pt;}
.y23a{bottom:493.601067pt;}
.y1bf{bottom:495.825200pt;}
.y196{bottom:495.849200pt;}
.y263{bottom:497.113867pt;}
.y9e{bottom:500.331733pt;}
.yc9{bottom:501.011733pt;}
.y163{bottom:502.487333pt;}
.y178{bottom:502.919333pt;}
.y16{bottom:503.101067pt;}
.y12a{bottom:505.423467pt;}
.y35{bottom:505.577067pt;}
.y239{bottom:505.601067pt;}
.y64{bottom:506.281067pt;}
.y101{bottom:508.132800pt;}
.y1be{bottom:510.489200pt;}
.y195{bottom:510.513200pt;}
.y262{bottom:511.777867pt;}
.y9d{bottom:514.995733pt;}
.y15{bottom:515.101067pt;}
.yc8{bottom:515.675733pt;}
.y162{bottom:517.151333pt;}
.y177{bottom:517.583333pt;}
.y238{bottom:517.601067pt;}
.y34{bottom:520.245067pt;}
.y63{bottom:520.945067pt;}
.y100{bottom:522.796800pt;}
.y1bd{bottom:525.153200pt;}
.y194{bottom:525.177200pt;}
.y261{bottom:526.441867pt;}
.y14{bottom:527.101067pt;}
.y237{bottom:529.601067pt;}
.y9c{bottom:529.659733pt;}
.yc7{bottom:530.339733pt;}
.y161{bottom:531.815333pt;}
.y176{bottom:532.247333pt;}
.y33{bottom:534.913067pt;}
.y62{bottom:535.609067pt;}
.y129{bottom:536.118133pt;}
.yff{bottom:537.460800pt;}
.y1bc{bottom:539.835867pt;}
.y193{bottom:539.841200pt;}
.y260{bottom:541.108533pt;}
.y236{bottom:541.601067pt;}
.y9b{bottom:544.323733pt;}
.yc6{bottom:545.003733pt;}
.y160{bottom:546.479333pt;}
.y175{bottom:546.911333pt;}
.y32{bottom:549.581067pt;}
.y61{bottom:550.273067pt;}
.yfe{bottom:552.124800pt;}
.y235{bottom:553.601067pt;}
.y1bb{bottom:554.499867pt;}
.y192{bottom:554.505200pt;}
.y13{bottom:555.101067pt;}
.y9a{bottom:558.987733pt;}
.yc5{bottom:559.667733pt;}
.y15f{bottom:561.143333pt;}
.y174{bottom:561.575333pt;}
.y31{bottom:564.249067pt;}
.y60{bottom:564.937067pt;}
.y234{bottom:565.601067pt;}
.yfd{bottom:566.788800pt;}
.y128{bottom:566.790133pt;}
.y12{bottom:567.101067pt;}
.y1ba{bottom:569.163867pt;}
.y191{bottom:569.169200pt;}
.y25f{bottom:570.246267pt;}
.y99{bottom:573.648400pt;}
.yc4{bottom:574.331733pt;}
.y15e{bottom:575.807333pt;}
.y173{bottom:576.239333pt;}
.y233{bottom:577.601067pt;}
.y30{bottom:578.917067pt;}
.y11{bottom:579.101067pt;}
.y5f{bottom:579.617067pt;}
.yfc{bottom:581.452800pt;}
.y127{bottom:581.454133pt;}
.y1b9{bottom:583.827867pt;}
.y190{bottom:583.833200pt;}
.y98{bottom:588.987733pt;}
.yc3{bottom:588.995733pt;}
.y232{bottom:589.601067pt;}
.y15d{bottom:590.471333pt;}
.y172{bottom:590.903333pt;}
.y2f{bottom:593.585067pt;}
.y5e{bottom:594.281067pt;}
.y10{bottom:594.653067pt;}
.yfb{bottom:596.116800pt;}
.y126{bottom:596.118133pt;}
.y1b8{bottom:598.491867pt;}
.y18f{bottom:598.497200pt;}
.y231{bottom:601.601067pt;}
.yf{bottom:603.101067pt;}
.yc2{bottom:603.659733pt;}
.y15c{bottom:605.135333pt;}
.y171{bottom:605.567333pt;}
.y2e{bottom:608.253067pt;}
.y5d{bottom:608.945067pt;}
.yfa{bottom:610.780800pt;}
.y125{bottom:610.782133pt;}
.y1b7{bottom:613.155867pt;}
.y18e{bottom:613.161200pt;}
.y230{bottom:613.601067pt;}
.yc1{bottom:618.323733pt;}
.y206{bottom:618.505200pt;}
.ye{bottom:618.653067pt;}
.y15b{bottom:619.799333pt;}
.y170{bottom:620.231333pt;}
.y97{bottom:620.345067pt;}
.y2d{bottom:622.921067pt;}
.y5c{bottom:623.609067pt;}
.yf9{bottom:625.444800pt;}
.y124{bottom:625.446133pt;}
.y22f{bottom:625.601067pt;}
.yd{bottom:627.101067pt;}
.y1b6{bottom:627.819867pt;}
.y18d{bottom:627.825200pt;}
.yc0{bottom:632.987733pt;}
.y205{bottom:633.169200pt;}
.y15a{bottom:634.463333pt;}
.y16f{bottom:634.895333pt;}
.y96{bottom:635.009067pt;}
.y2c{bottom:637.589067pt;}
.y22e{bottom:637.601067pt;}
.y5b{bottom:638.273067pt;}
.yc{bottom:639.101067pt;}
.yf8{bottom:640.108800pt;}
.y123{bottom:640.110133pt;}
.y1b5{bottom:642.483867pt;}
.y18c{bottom:642.489200pt;}
.ybf{bottom:647.654400pt;}
.y204{bottom:647.833200pt;}
.y159{bottom:649.127333pt;}
.y16e{bottom:649.559333pt;}
.y22d{bottom:649.601067pt;}
.y95{bottom:649.673067pt;}
.y2b{bottom:652.257067pt;}
.y5a{bottom:652.937067pt;}
.yb{bottom:654.653067pt;}
.yf7{bottom:654.772800pt;}
.y122{bottom:654.774133pt;}
.y18b{bottom:657.153200pt;}
.y22c{bottom:661.601067pt;}
.y203{bottom:662.497200pt;}
.ya{bottom:663.101067pt;}
.y158{bottom:663.791333pt;}
.y16d{bottom:664.223333pt;}
.y94{bottom:664.337067pt;}
.y2a{bottom:666.925067pt;}
.y59{bottom:667.609067pt;}
.yf6{bottom:669.436800pt;}
.y121{bottom:669.438133pt;}
.y18a{bottom:671.817200pt;}
.y1b4{bottom:671.823867pt;}
.y22b{bottom:673.601067pt;}
.y9{bottom:675.101067pt;}
.y202{bottom:677.161200pt;}
.y157{bottom:678.458000pt;}
.y16c{bottom:678.887333pt;}
.ybe{bottom:678.998400pt;}
.y93{bottom:679.001067pt;}
.y29{bottom:681.593067pt;}
.y58{bottom:682.273067pt;}
.yf5{bottom:684.100800pt;}
.y120{bottom:684.102133pt;}
.y22a{bottom:685.601067pt;}
.y8{bottom:687.101067pt;}
.y201{bottom:691.825200pt;}
.ybd{bottom:693.662400pt;}
.y92{bottom:693.665067pt;}
.y28{bottom:696.261067pt;}
.y57{bottom:696.937067pt;}
.y229{bottom:697.601067pt;}
.yf4{bottom:698.764800pt;}
.y11f{bottom:698.766133pt;}
.y7{bottom:702.653067pt;}
.y200{bottom:706.489200pt;}
.ybc{bottom:708.326400pt;}
.y91{bottom:708.329067pt;}
.y228{bottom:709.601067pt;}
.y1ec{bottom:710.594400pt;}
.y27{bottom:710.929067pt;}
.y6{bottom:711.101067pt;}
.y56{bottom:711.603733pt;}
.yf3{bottom:713.428800pt;}
.y11e{bottom:713.430133pt;}
.y1ff{bottom:721.153200pt;}
.y227{bottom:721.601067pt;}
.ybb{bottom:722.990400pt;}
.y90{bottom:722.993067pt;}
.y5{bottom:723.101067pt;}
.y1eb{bottom:723.264400pt;}
.y26{bottom:725.597067pt;}
.y55{bottom:726.273067pt;}
.y188{bottom:732.754400pt;}
.y226{bottom:733.601067pt;}
.y1fe{bottom:735.862533pt;}
.y1ea{bottom:735.934400pt;}
.yba{bottom:737.654400pt;}
.y8f{bottom:737.657067pt;}
.y4{bottom:738.653067pt;}
.y25{bottom:740.265067pt;}
.y54{bottom:740.937067pt;}
.y187{bottom:745.424400pt;}
.y225{bottom:745.601067pt;}
.y3{bottom:747.101067pt;}
.y1fd{bottom:750.526533pt;}
.y1e9{bottom:751.421067pt;}
.yb9{bottom:752.318400pt;}
.y8e{bottom:752.321067pt;}
.y156{bottom:754.081067pt;}
.y24{bottom:754.933067pt;}
.y53{bottom:755.623733pt;}
.y224{bottom:757.601067pt;}
.y186{bottom:758.094400pt;}
.y2{bottom:759.101067pt;}
.y1fc{bottom:765.190533pt;}
.y155{bottom:766.751067pt;}
.y1e8{bottom:766.921067pt;}
.y23{bottom:769.601067pt;}
.y52{bottom:770.287733pt;}
.y185{bottom:773.594400pt;}
.y1{bottom:774.653067pt;}
.y154{bottom:779.421067pt;}
.y1e7{bottom:779.591067pt;}
.y1fb{bottom:779.854533pt;}
.y223{bottom:781.601067pt;}
.y184{bottom:789.094400pt;}
.y222{bottom:793.601067pt;}
.y1fa{bottom:794.518533pt;}
.yf1{bottom:794.754400pt;}
.y153{bottom:794.921067pt;}
.y1e6{bottom:795.091067pt;}
.y183{bottom:804.594400pt;}
.y221{bottom:805.601067pt;}
.y22{bottom:806.265067pt;}
.y1e5{bottom:807.761067pt;}
.y1f9{bottom:809.182533pt;}
.yf0{bottom:810.254400pt;}
.y152{bottom:810.421067pt;}
.y220{bottom:817.601067pt;}
.y182{bottom:820.094400pt;}
.y1e4{bottom:823.261067pt;}
.y1f8{bottom:823.846533pt;}
.yef{bottom:825.754400pt;}
.y151{bottom:825.921067pt;}
.y21{bottom:826.265067pt;}
.y21f{bottom:829.601067pt;}
.y181{bottom:835.594400pt;}
.y1e3{bottom:835.931067pt;}
.yee{bottom:838.424400pt;}
.y1f7{bottom:838.510533pt;}
.y150{bottom:838.591067pt;}
.y21e{bottom:841.601067pt;}
.y20{bottom:846.267733pt;}
.y180{bottom:851.094400pt;}
.y1f6{bottom:853.174533pt;}
.y21d{bottom:853.601067pt;}
.yed{bottom:853.924400pt;}
.y1e2{bottom:854.084400pt;}
.y14f{bottom:854.091067pt;}
.yec{bottom:866.594400pt;}
.y1f5{bottom:867.838533pt;}
.y14e{bottom:869.591067pt;}
.y1e1{bottom:872.254400pt;}
.y1f{bottom:880.934400pt;}
.yeb{bottom:882.094400pt;}
.y1f4{bottom:882.502533pt;}
.y21c{bottom:884.947867pt;}
.y14d{bottom:885.091067pt;}
.y1e0{bottom:887.754400pt;}
.y21b{bottom:896.947867pt;}
.y1f3{bottom:897.166533pt;}
.yea{bottom:897.594400pt;}
.y14c{bottom:897.761067pt;}
.y1df{bottom:900.424400pt;}
.y21a{bottom:908.947867pt;}
.y1f2{bottom:911.830533pt;}
.y1e{bottom:912.934400pt;}
.ye9{bottom:913.094400pt;}
.y1de{bottom:915.924400pt;}
.y14b{bottom:915.931067pt;}
.y219{bottom:926.281200pt;}
.y1f1{bottom:926.494533pt;}
.ye8{bottom:928.594400pt;}
.y148{bottom:928.601067pt;}
.y218{bottom:938.281200pt;}
.y276{bottom:938.767733pt;}
.y1f0{bottom:941.158533pt;}
.ye7{bottom:941.264400pt;}
.y1d{bottom:944.934400pt;}
.y14a{bottom:946.761067pt;}
.y1dd{bottom:946.764400pt;}
.y217{bottom:950.281200pt;}
.y275{bottom:950.767733pt;}
.y1ef{bottom:955.822533pt;}
.y149{bottom:959.431067pt;}
.ye6{bottom:959.434400pt;}
.y216{bottom:962.281200pt;}
.y274{bottom:962.767733pt;}
.y1ee{bottom:970.486533pt;}
.y215{bottom:974.281200pt;}
.y273{bottom:974.767733pt;}
.ye5{bottom:977.934400pt;}
.y1c{bottom:982.267733pt;}
.y1ed{bottom:985.150533pt;}
.y214{bottom:986.281200pt;}
.y272{bottom:986.767733pt;}
.y83{bottom:1014.028533pt;}
.y8c{bottom:1026.666667pt;}
.h2{height:18.954496pt;}
.h14{height:30.480000pt;}
.h1d{height:31.143173pt;}
.h1c{height:31.156507pt;}
.h3{height:32.512000pt;}
.h15{height:32.951467pt;}
.h20{height:35.872000pt;}
.h9{height:36.328125pt;}
.h13{height:36.576000pt;}
.h16{height:36.867188pt;}
.h17{height:36.949964pt;}
.h1e{height:36.981964pt;}
.hf{height:37.013964pt;}
.h1b{height:37.056630pt;}
.hb{height:37.072630pt;}
.h1f{height:37.077964pt;}
.h1a{height:37.088630pt;}
.he{height:37.099297pt;}
.h18{height:37.109964pt;}
.hd{height:37.131297pt;}
.h19{height:37.136630pt;}
.ha{height:37.141964pt;}
.hc{height:37.152630pt;}
.h8{height:38.608000pt;}
.h10{height:44.704000pt;}
.h4{height:48.768000pt;}
.h6{height:53.889056pt;}
.h7{height:53.899723pt;}
.h12{height:55.625000pt;}
.h11{height:61.187500pt;}
.h5{height:81.280000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:38.821373pt;}
.x1{left:56.000000pt;}
.x6{left:60.666667pt;}
.x1f{left:64.000000pt;}
.x16{left:68.231200pt;}
.x20{left:74.557333pt;}
.x22{left:77.330000pt;}
.x21{left:84.666667pt;}
.x2{left:194.230000pt;}
.x1d{left:231.203333pt;}
.x10{left:232.810000pt;}
.x8{left:238.654267pt;}
.x15{left:330.066667pt;}
.x17{left:373.771333pt;}
.x5{left:391.431867pt;}
.xb{left:408.920000pt;}
.x13{left:419.926667pt;}
.x11{left:420.919067pt;}
.x12{left:427.603067pt;}
.x1e{left:430.247733pt;}
.x3{left:474.293467pt;}
.xc{left:478.160000pt;}
.x4{left:486.299600pt;}
.x19{left:492.513333pt;}
.x1a{left:555.183333pt;}
.xd{left:556.370000pt;}
.x18{left:571.131333pt;}
.x14{left:594.716667pt;}
.xe{left:610.600000pt;}
.x1b{left:617.863333pt;}
.x9{left:670.969053pt;}
.x1c{left:680.533333pt;}
.xf{left:688.810000pt;}
.x7{left:732.580933pt;}
}




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