
    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_83f0e6e7a5533a27eec6e2c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.075000;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_73fe7883ec2a930e4c618673.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.710000;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_6f8429a4f624d5c0f798796d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971000;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_db7fbc8c851cb01b074ca701.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.105000;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_a782336552190c7504956c76.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.686000;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_7282daf3d2e263bde3a7ce67.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.686000;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_65f0998c9bdc4bf212238ed8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.966000;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_7bf868738cb92a0f3f881a99.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_85122aa132218308fc91fdd0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.937000;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_d746d55b729847c12e5fd8dd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.977413;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_a9292dcad987f1bbd4c661cb.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.075000;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_4d1ea5351f1e23673d471ff3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.912109;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_25d68c9271e312c9d7bcda45.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.142090;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_6e2ebf5068c3f653d786e140.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.075000;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_51cdef0ae2315072e2460fe6.woff2')format("woff");}.fff{font-family:fff;line-height:1.075000;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_7fd53c8a1628f3304a561bb0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.677246;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;}
.m5{transform:matrix(0.000000,-0.249991,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249991,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249991,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250021,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250021,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250021,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.196124,-0.155135,0.155093,0.196077,0,0);-ms-transform:matrix(0.196124,-0.155135,0.155093,0.196077,0,0);-webkit-transform:matrix(0.196124,-0.155135,0.155093,0.196077,0,0);}
.m7{transform:matrix(0.243308,0.057619,-0.057581,0.243279,0,0);-ms-transform:matrix(0.243308,0.057619,-0.057581,0.243279,0,0);-webkit-transform:matrix(0.243308,0.057619,-0.057581,0.243279,0,0);}
.m1{transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,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);}
.m4{transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);}
.vb{vertical-align:-180.035400px;}
.va{vertical-align:-154.312200px;}
.v9{vertical-align:-128.589600px;}
.v8{vertical-align:-102.879000px;}
.v7{vertical-align:-77.156400px;}
.v6{vertical-align:-51.445200px;}
.v3{vertical-align:-45.005184px;}
.v5{vertical-align:-25.722600px;}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.600000px;}
.vc{vertical-align:27.000000px;}
.vd{vertical-align:54.000000px;}
.v1{vertical-align:96.659400px;}
.ls22{letter-spacing:-3.402000px;}
.ls34{letter-spacing:-2.808000px;}
.ls14{letter-spacing:-2.214000px;}
.ls30{letter-spacing:-1.890000px;}
.ls40{letter-spacing:-1.782000px;}
.ls21{letter-spacing:-1.728000px;}
.ls13{letter-spacing:-1.674000px;}
.ls1f{letter-spacing:-1.620000px;}
.ls36{letter-spacing:-1.566000px;}
.ls32{letter-spacing:-1.350000px;}
.lse{letter-spacing:-1.242000px;}
.ls41{letter-spacing:-1.134000px;}
.ls48{letter-spacing:-1.080000px;}
.ls18{letter-spacing:-1.026000px;}
.ls3d{letter-spacing:-0.810000px;}
.lsf{letter-spacing:-0.756000px;}
.ls3a{letter-spacing:-0.702000px;}
.lsd{letter-spacing:-0.648000px;}
.ls25{letter-spacing:-0.594000px;}
.lsc{letter-spacing:-0.540000px;}
.ls44{letter-spacing:-0.486000px;}
.ls43{letter-spacing:-0.432000px;}
.ls2b{letter-spacing:-0.378000px;}
.ls3b{letter-spacing:-0.324000px;}
.ls2a{letter-spacing:-0.283338px;}
.ls8{letter-spacing:-0.270000px;}
.ls15{letter-spacing:-0.216000px;}
.ls42{letter-spacing:-0.162000px;}
.ls29{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.108000px;}
.ls7{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.000036px;}
.ls27{letter-spacing:0.000330px;}
.ls1a{letter-spacing:0.005400px;}
.ls2d{letter-spacing:0.006000px;}
.lsb{letter-spacing:0.021600px;}
.ls45{letter-spacing:0.027000px;}
.ls1{letter-spacing:0.054000px;}
.ls46{letter-spacing:0.054600px;}
.ls3c{letter-spacing:0.081000px;}
.ls2{letter-spacing:0.108000px;}
.ls3e{letter-spacing:0.135000px;}
.lsa{letter-spacing:0.162000px;}
.ls37{letter-spacing:0.189000px;}
.ls2f{letter-spacing:0.189636px;}
.ls3{letter-spacing:0.216000px;}
.ls33{letter-spacing:0.220374px;}
.ls1b{letter-spacing:0.243000px;}
.ls5{letter-spacing:0.270000px;}
.ls12{letter-spacing:0.324000px;}
.ls4a{letter-spacing:0.340200px;}
.ls2e{letter-spacing:0.350400px;}
.ls17{letter-spacing:0.351000px;}
.ls38{letter-spacing:0.378000px;}
.ls31{letter-spacing:0.400200px;}
.ls20{letter-spacing:0.432000px;}
.ls26{letter-spacing:0.457200px;}
.ls6{letter-spacing:0.486000px;}
.ls1c{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.594000px;}
.ls47{letter-spacing:0.810000px;}
.ls49{letter-spacing:0.864000px;}
.ls35{letter-spacing:1.080000px;}
.ls28{letter-spacing:1.242000px;}
.ls4b{letter-spacing:1.620000px;}
.ls23{letter-spacing:1.728000px;}
.ls3f{letter-spacing:2.106000px;}
.ls16{letter-spacing:2.160000px;}
.ls39{letter-spacing:2.592000px;}
.ls24{letter-spacing:2.754000px;}
.ls1d{letter-spacing:3.132000px;}
.ls11{letter-spacing:3.240000px;}
.ls10{letter-spacing:3.564000px;}
.ls19{letter-spacing:3.618000px;}
.ls1e{letter-spacing:3.672000px;}
.ls0{letter-spacing:73.030800px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(104,161,221),0 0.015em rgb(104,161,221),0.015em 0 rgb(104,161,221),0 -0.015em  rgb(104,161,221);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(104,161,221);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6a{word-spacing:-54.000000px;}
.ws4b{word-spacing:-14.472000px;}
.ws3a{word-spacing:-14.418000px;}
.ws15{word-spacing:-14.364000px;}
.ws17{word-spacing:-14.040000px;}
.ws42{word-spacing:-13.932000px;}
.ws56{word-spacing:-13.554000px;}
.ws6c{word-spacing:-13.500000px;}
.ws91{word-spacing:-13.392000px;}
.ws2d{word-spacing:-12.960000px;}
.wsae{word-spacing:-12.906000px;}
.ws55{word-spacing:-12.528000px;}
.wsc5{word-spacing:-12.420000px;}
.ws5e{word-spacing:-12.042000px;}
.ws86{word-spacing:-11.880000px;}
.wsc0{word-spacing:-11.610000px;}
.ws9e{word-spacing:-11.232000px;}
.ws41{word-spacing:-11.124000px;}
.wsc1{word-spacing:-11.070000px;}
.ws39{word-spacing:-11.016000px;}
.ws52{word-spacing:-10.962000px;}
.ws4a{word-spacing:-10.908000px;}
.ws3b{word-spacing:-10.854000px;}
.wsc3{word-spacing:-10.827000px;}
.ws49{word-spacing:-10.800600px;}
.ws13{word-spacing:-10.800000px;}
.wsbe{word-spacing:-10.530000px;}
.ws69{word-spacing:-10.476000px;}
.ws85{word-spacing:-10.260000px;}
.ws73{word-spacing:-10.228440px;}
.ws57{word-spacing:-10.206000px;}
.ws82{word-spacing:-10.153080px;}
.ws16{word-spacing:-10.152000px;}
.ws6e{word-spacing:-10.098000px;}
.wsb3{word-spacing:-9.666000px;}
.ws43{word-spacing:-9.600000px;}
.ws14{word-spacing:-9.558000px;}
.ws8b{word-spacing:-9.234000px;}
.ws4c{word-spacing:-9.180000px;}
.ws2b{word-spacing:-9.126000px;}
.ws53{word-spacing:-9.072000px;}
.wsc4{word-spacing:-8.910000px;}
.ws2c{word-spacing:-8.586000px;}
.ws0{word-spacing:-8.478000px;}
.ws54{word-spacing:-7.398000px;}
.ws84{word-spacing:-6.327882px;}
.ws6b{word-spacing:-6.296400px;}
.ws7a{word-spacing:-6.107508px;}
.ws6d{word-spacing:-5.824170px;}
.ws5b{word-spacing:-2.862000px;}
.wsaf{word-spacing:-2.754000px;}
.ws89{word-spacing:-2.268000px;}
.wsbc{word-spacing:-2.160000px;}
.ws20{word-spacing:-2.052000px;}
.ws79{word-spacing:-1.998000px;}
.ws35{word-spacing:-1.944000px;}
.wsab{word-spacing:-1.890000px;}
.wsad{word-spacing:-1.836000px;}
.wsb2{word-spacing:-1.782000px;}
.ws59{word-spacing:-1.728000px;}
.ws2e{word-spacing:-1.674000px;}
.ws21{word-spacing:-1.620000px;}
.wsbd{word-spacing:-1.566000px;}
.wsb{word-spacing:-1.512000px;}
.ws28{word-spacing:-1.458000px;}
.ws94{word-spacing:-1.404000px;}
.ws18{word-spacing:-1.350000px;}
.ws74{word-spacing:-1.296000px;}
.ws23{word-spacing:-1.242000px;}
.ws1b{word-spacing:-1.188000px;}
.wsba{word-spacing:-1.134000px;}
.wsa7{word-spacing:-1.080000px;}
.ws32{word-spacing:-1.026000px;}
.wsb9{word-spacing:-0.972000px;}
.wsa4{word-spacing:-0.918000px;}
.wsb8{word-spacing:-0.864000px;}
.ws9c{word-spacing:-0.810000px;}
.ws24{word-spacing:-0.756000px;}
.ws33{word-spacing:-0.702000px;}
.ws22{word-spacing:-0.648000px;}
.ws50{word-spacing:-0.594000px;}
.ws34{word-spacing:-0.540000px;}
.ws51{word-spacing:-0.486000px;}
.ws7{word-spacing:-0.432000px;}
.ws6{word-spacing:-0.378000px;}
.ws2f{word-spacing:-0.324000px;}
.ws9{word-spacing:-0.270000px;}
.ws30{word-spacing:-0.216000px;}
.ws10{word-spacing:-0.162000px;}
.ws8{word-spacing:-0.108000px;}
.ws26{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.wsa9{word-spacing:0.054000px;}
.ws4f{word-spacing:0.108000px;}
.ws9b{word-spacing:0.162000px;}
.ws31{word-spacing:0.216000px;}
.ws36{word-spacing:0.270000px;}
.ws96{word-spacing:0.324000px;}
.wsd{word-spacing:0.378000px;}
.ws83{word-spacing:0.432000px;}
.wsbf{word-spacing:0.486000px;}
.ws1e{word-spacing:0.540000px;}
.ws1a{word-spacing:0.594000px;}
.ws1d{word-spacing:0.648000px;}
.ws99{word-spacing:0.702000px;}
.ws25{word-spacing:0.756000px;}
.ws9d{word-spacing:0.810000px;}
.ws92{word-spacing:0.864000px;}
.ws3f{word-spacing:0.918000px;}
.ws38{word-spacing:0.972000px;}
.ws3d{word-spacing:1.026000px;}
.wsc2{word-spacing:1.080000px;}
.wsa{word-spacing:1.134000px;}
.ws2{word-spacing:1.188000px;}
.ws3e{word-spacing:1.242000px;}
.ws3c{word-spacing:1.296000px;}
.ws58{word-spacing:1.350000px;}
.ws4d{word-spacing:1.404000px;}
.wsac{word-spacing:1.458000px;}
.ws4e{word-spacing:1.512000px;}
.ws46{word-spacing:1.566000px;}
.ws8a{word-spacing:1.620000px;}
.ws9a{word-spacing:1.674000px;}
.ws5c{word-spacing:1.728000px;}
.ws1c{word-spacing:1.782000px;}
.ws93{word-spacing:1.836000px;}
.ws70{word-spacing:1.890000px;}
.ws1f{word-spacing:1.944000px;}
.ws98{word-spacing:1.998000px;}
.ws97{word-spacing:2.052000px;}
.ws9f{word-spacing:2.106000px;}
.ws37{word-spacing:2.160000px;}
.ws8c{word-spacing:2.214000px;}
.wsbb{word-spacing:2.268000px;}
.ws19{word-spacing:2.376000px;}
.ws75{word-spacing:2.430000px;}
.ws78{word-spacing:2.484000px;}
.ws11{word-spacing:2.538000px;}
.ws95{word-spacing:2.592000px;}
.ws2a{word-spacing:2.646000px;}
.ws40{word-spacing:2.700000px;}
.ws5d{word-spacing:2.754000px;}
.ws88{word-spacing:2.808000px;}
.ws76{word-spacing:2.862000px;}
.ws3{word-spacing:2.916000px;}
.wse{word-spacing:2.970000px;}
.wsa8{word-spacing:3.024000px;}
.ws87{word-spacing:3.078000px;}
.ws8d{word-spacing:3.132000px;}
.ws27{word-spacing:3.186000px;}
.ws29{word-spacing:3.240000px;}
.wsaa{word-spacing:3.294000px;}
.ws4{word-spacing:3.348000px;}
.ws5a{word-spacing:3.402000px;}
.ws77{word-spacing:3.456000px;}
.wsf{word-spacing:3.510000px;}
.ws5{word-spacing:3.564000px;}
.ws6f{word-spacing:3.888000px;}
.ws12{word-spacing:4.104000px;}
.ws47{word-spacing:4.428000px;}
.wsc{word-spacing:5.076000px;}
.ws7f{word-spacing:21.118063px;}
.ws7e{word-spacing:21.971852px;}
.ws80{word-spacing:21.997534px;}
.ws7d{word-spacing:22.809521px;}
.ws81{word-spacing:22.860286px;}
.ws7c{word-spacing:26.702833px;}
.ws7b{word-spacing:30.627392px;}
.ws71{word-spacing:43.867305px;}
.wsa0{word-spacing:74.002200px;}
.ws44{word-spacing:85.214400px;}
.ws45{word-spacing:90.254400px;}
.ws72{word-spacing:124.971093px;}
.ws90{word-spacing:162.798000px;}
.ws8f{word-spacing:170.862000px;}
.ws63{word-spacing:172.862400px;}
.ws61{word-spacing:174.542400px;}
.ws68{word-spacing:174.878400px;}
.ws66{word-spacing:183.518400px;}
.wsa3{word-spacing:184.829400px;}
.wsa6{word-spacing:192.797400px;}
.ws5f{word-spacing:206.030400px;}
.wsb1{word-spacing:225.628200px;}
.ws8e{word-spacing:232.830000px;}
.wsa5{word-spacing:251.933400px;}
.ws67{word-spacing:272.605200px;}
.wsb0{word-spacing:277.612200px;}
.ws60{word-spacing:289.309200px;}
.ws62{word-spacing:294.349200px;}
.wsa2{word-spacing:317.357400px;}
.ws64{word-spacing:354.252600px;}
.wsb7{word-spacing:371.627400px;}
.ws48{word-spacing:409.392869px;}
.wsb4{word-spacing:410.171400px;}
.wsb5{word-spacing:425.963400px;}
.wsa1{word-spacing:450.651600px;}
.wsb6{word-spacing:502.987200px;}
.ws65{word-spacing:514.459800px;}
._14{margin-left:-133.471153px;}
._12{margin-left:-128.448423px;}
._13{margin-left:-127.273593px;}
._11{margin-left:-16.984800px;}
._6{margin-left:-14.770800px;}
._2{margin-left:-11.534400px;}
._23{margin-left:-10.440000px;}
._22{margin-left:-8.787600px;}
._3{margin-left:-5.760600px;}
._8{margin-left:-4.734000px;}
._0{margin-left:-3.360000px;}
._1{margin-left:-1.463400px;}
._4{width:1.809000px;}
._5{width:3.672000px;}
._9{width:4.687200px;}
._15{width:6.274800px;}
._52{width:7.840800px;}
._51{width:9.288000px;}
._4f{width:13.770000px;}
._53{width:15.456000px;}
._4b{width:16.578000px;}
._16{width:18.300000px;}
._a{width:19.680000px;}
._50{width:20.849400px;}
._4c{width:23.664000px;}
._4e{width:24.690000px;}
._7{width:26.400000px;}
._4d{width:29.165400px;}
._e{width:63.083400px;}
._3a{width:66.116400px;}
._35{width:69.261000px;}
._f{width:77.390400px;}
._38{width:80.643600px;}
._b{width:84.878400px;}
._10{width:95.438400px;}
._2f{width:108.643800px;}
._20{width:138.179751px;}
._d{width:140.876400px;}
._1f{width:143.402813px;}
._28{width:144.702000px;}
._26{width:154.008600px;}
._18{width:161.724600px;}
._34{width:172.419600px;}
._32{width:174.557400px;}
._24{width:181.518000px;}
._40{width:184.971000px;}
._33{width:199.149000px;}
._37{width:203.757000px;}
._31{width:217.997400px;}
._1c{width:226.861200px;}
._30{width:234.941400px;}
._39{width:247.149000px;}
._c{width:249.419400px;}
._3f{width:250.706400px;}
._3b{width:254.572200px;}
._2d{width:260.573400px;}
._43{width:269.947200px;}
._36{width:279.860400px;}
._4a{width:286.987200px;}
._17{width:288.973200px;}
._3d{width:315.483000px;}
._2a{width:338.903400px;}
._1d{width:354.636600px;}
._19{width:356.508600px;}
._41{width:373.371000px;}
._29{width:390.024600px;}
._3e{width:436.059000px;}
._44{width:448.475400px;}
._2e{width:450.171600px;}
._3c{width:458.763000px;}
._46{width:466.507200px;}
._42{width:476.459400px;}
._2c{width:488.252400px;}
._1a{width:521.659800px;}
._1b{width:523.483800px;}
._27{width:526.704000px;}
._47{width:541.147200px;}
._49{width:542.987400px;}
._48{width:545.963400px;}
._45{width:562.699200px;}
._2b{width:574.251600px;}
._25{width:794.712600px;}
._21{width:807.489120px;}
._1e{width:1072.249836px;}
.fc3{color:transparent;}
.fc1{color:rgb(104,161,221);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:31.482000px;}
.fs2{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fsc{font-size:50.753623px;}
.fsd{font-size:50.759100px;}
.fsa{font-size:50.765400px;}
.fsb{font-size:50.767200px;}
.fs9{font-size:51.138000px;}
.fs8{font-size:51.142200px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:54.003000px;}
.fs5{font-size:60.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y50{bottom:3.240450px;}
.y70{bottom:3.408750px;}
.y82{bottom:4.884000px;}
.y51{bottom:16.921050px;}
.y7f{bottom:22.665900px;}
.y6e{bottom:30.683646px;}
.y83{bottom:31.480800px;}
.y5d{bottom:37.841383px;}
.y74{bottom:40.572750px;}
.y1{bottom:41.110500px;}
.y7e{bottom:42.291900px;}
.y5c{bottom:49.843549px;}
.y84{bottom:57.866250px;}
.y7d{bottom:61.241100px;}
.y5b{bottom:64.100342px;}
.y6d{bottom:64.642067px;}
.yd4{bottom:74.600550px;}
.y5a{bottom:76.102508px;}
.y22{bottom:76.110150px;}
.y40{bottom:76.110300px;}
.yfa{bottom:78.628950px;}
.y7c{bottom:79.516500px;}
.y90{bottom:80.600850px;}
.ya7{bottom:82.900050px;}
.y8e{bottom:88.305300px;}
.y6f{bottom:92.649600px;}
.y21{bottom:94.110150px;}
.y3f{bottom:94.110300px;}
.y58{bottom:94.846249px;}
.y59{bottom:94.855050px;}
.y8f{bottom:95.000850px;}
.ya6{bottom:96.400050px;}
.y6c{bottom:98.600488px;}
.yd3{bottom:98.795550px;}
.yf9{bottom:101.385750px;}
.ya5{bottom:109.900050px;}
.y20{bottom:112.110150px;}
.y3e{bottom:112.110300px;}
.yd2{bottom:112.295550px;}
.y57{bottom:117.352000px;}
.y77{bottom:121.057500px;}
.y81{bottom:121.731750px;}
.yf8{bottom:124.866150px;}
.yd1{bottom:125.795550px;}
.y8d{bottom:126.883350px;}
.y7b{bottom:128.292540px;}
.y56{bottom:129.354166px;}
.y1f{bottom:130.110150px;}
.y3d{bottom:130.110300px;}
.y6b{bottom:132.558908px;}
.ya4{bottom:133.706250px;}
.yd0{bottom:139.295550px;}
.y8c{bottom:141.435150px;}
.y86{bottom:142.788600px;}
.y55{bottom:142.854916px;}
.ya3{bottom:147.206250px;}
.y1e{bottom:148.110150px;}
.y3c{bottom:148.110300px;}
.yf7{bottom:148.346400px;}
.y66{bottom:151.752750px;}
.y7a{bottom:152.266500px;}
.ycf{bottom:152.795550px;}
.y54{bottom:154.857083px;}
.y85{bottom:155.647050px;}
.y72{bottom:155.811900px;}
.y75{bottom:157.827900px;}
.ya2{bottom:160.706250px;}
.y8b{bottom:165.798300px;}
.y1d{bottom:166.110150px;}
.y3b{bottom:166.110300px;}
.yce{bottom:166.295550px;}
.y6a{bottom:166.517329px;}
.y53{bottom:168.357833px;}
.y89{bottom:170.198850px;}
.yf6{bottom:171.826650px;}
.ya1{bottom:174.206250px;}
.y87{bottom:174.596250px;}
.y79{bottom:177.649200px;}
.ycd{bottom:179.795550px;}
.y52{bottom:180.360000px;}
.y67{bottom:181.915500px;}
.y8a{bottom:183.397050px;}
.y1c{bottom:184.110150px;}
.y3a{bottom:184.110300px;}
.y71{bottom:186.156900px;}
.ya0{bottom:187.706250px;}
.ycc{bottom:193.295550px;}
.yf5{bottom:195.307050px;}
.y69{bottom:200.475750px;}
.y1b{bottom:202.110150px;}
.y39{bottom:202.110300px;}
.y78{bottom:203.031900px;}
.y4f{bottom:203.400000px;}
.ycb{bottom:206.795550px;}
.y88{bottom:210.467250px;}
.y9f{bottom:211.512300px;}
.yf4{bottom:218.787300px;}
.y1a{bottom:220.110150px;}
.y38{bottom:220.110300px;}
.yca{bottom:220.295550px;}
.y9e{bottom:225.012300px;}
.y73{bottom:226.727700px;}
.yc9{bottom:233.795550px;}
.y19{bottom:238.110150px;}
.y37{bottom:238.110300px;}
.yf3{bottom:242.267700px;}
.y68{bottom:246.503850px;}
.yc8{bottom:247.295550px;}
.y9d{bottom:248.818500px;}
.y36{bottom:256.110300px;}
.y9c{bottom:262.318500px;}
.yf2{bottom:265.747950px;}
.yc7{bottom:271.101750px;}
.y35{bottom:274.110300px;}
.y9b{bottom:275.818500px;}
.y80{bottom:281.210550px;}
.yc6{bottom:284.601750px;}
.y18{bottom:292.110150px;}
.y34{bottom:292.110300px;}
.yc5{bottom:298.101750px;}
.y9a{bottom:299.624700px;}
.y17{bottom:310.110150px;}
.y33{bottom:310.110300px;}
.yc4{bottom:311.601750px;}
.y99{bottom:323.430900px;}
.yc3{bottom:325.101750px;}
.yf1{bottom:328.110150px;}
.y32{bottom:328.110300px;}
.y98{bottom:336.930900px;}
.yf0{bottom:346.110150px;}
.y16{bottom:346.110300px;}
.yc2{bottom:348.907950px;}
.y97{bottom:360.737100px;}
.yc1{bottom:362.407950px;}
.y31{bottom:364.110300px;}
.yc0{bottom:375.907950px;}
.y15{bottom:382.110300px;}
.yef{bottom:383.825700px;}
.ybf{bottom:389.407950px;}
.y14{bottom:400.110300px;}
.ybe{bottom:402.907950px;}
.y4d{bottom:403.609800px;}
.yee{bottom:406.582650px;}
.ybd{bottom:416.407950px;}
.y13{bottom:418.110300px;}
.yed{bottom:420.082650px;}
.y4c{bottom:426.366750px;}
.y12{bottom:436.110300px;}
.y4b{bottom:439.866750px;}
.ybc{bottom:440.214000px;}
.y5e{bottom:443.272500px;}
.yec{bottom:443.988150px;}
.ybb{bottom:453.714000px;}
.y11{bottom:454.110300px;}
.yeb{bottom:457.488150px;}
.y4a{bottom:461.547000px;}
.yba{bottom:467.214000px;}
.y4e{bottom:469.071000px;}
.y10{bottom:472.110300px;}
.y49{bottom:475.047000px;}
.yb9{bottom:480.714000px;}
.yea{bottom:481.393650px;}
.yf{bottom:490.110300px;}
.yb8{bottom:494.214000px;}
.ye9{bottom:494.893650px;}
.y48{bottom:496.727100px;}
.ye{bottom:508.110300px;}
.y47{bottom:510.227100px;}
.yb7{bottom:518.020200px;}
.ye8{bottom:518.799150px;}
.yd{bottom:526.110300px;}
.yb6{bottom:531.520200px;}
.ye7{bottom:532.299150px;}
.y46{bottom:533.707500px;}
.yc{bottom:544.110150px;}
.y30{bottom:544.110300px;}
.yb5{bottom:545.020200px;}
.y45{bottom:547.207500px;}
.y65{bottom:553.701600px;}
.ye6{bottom:556.204650px;}
.yb4{bottom:558.520200px;}
.yb{bottom:562.110150px;}
.y2f{bottom:562.110300px;}
.y44{bottom:568.887750px;}
.ye5{bottom:569.704650px;}
.y64{bottom:579.706500px;}
.ya{bottom:580.110150px;}
.y2e{bottom:580.110300px;}
.yb3{bottom:582.326400px;}
.y43{bottom:582.387750px;}
.ydd{bottom:583.869150px;}
.ye4{bottom:593.610150px;}
.yb2{bottom:595.826400px;}
.y96{bottom:595.906500px;}
.y9{bottom:598.110150px;}
.y2d{bottom:598.110300px;}
.y63{bottom:603.186900px;}
.y42{bottom:605.868000px;}
.ydc{bottom:606.625950px;}
.ye3{bottom:607.110150px;}
.yb1{bottom:609.326400px;}
.y2c{bottom:616.110300px;}
.y95{bottom:619.386750px;}
.ydb{bottom:620.125950px;}
.yb0{bottom:622.826400px;}
.y62{bottom:626.667150px;}
.y41{bottom:627.548100px;}
.ye2{bottom:631.015800px;}
.y8{bottom:634.110150px;}
.y2b{bottom:634.110300px;}
.yaf{bottom:636.326400px;}
.y94{bottom:642.867000px;}
.yda{bottom:643.606350px;}
.ye1{bottom:644.515800px;}
.yae{bottom:649.826400px;}
.y61{bottom:650.147550px;}
.y2a{bottom:652.110300px;}
.y76{bottom:655.752750px;}
.ye0{bottom:658.015800px;}
.y93{bottom:666.347400px;}
.yd9{bottom:667.086600px;}
.y29{bottom:670.110300px;}
.y60{bottom:673.627800px;}
.yad{bottom:673.632600px;}
.y6{bottom:675.559950px;}
.y7{bottom:681.724800px;}
.ydf{bottom:681.921300px;}
.yac{bottom:687.132600px;}
.y28{bottom:688.110300px;}
.y92{bottom:689.827650px;}
.yd8{bottom:690.567000px;}
.y5f{bottom:695.308050px;}
.yab{bottom:700.632600px;}
.yde{bottom:705.826800px;}
.y27{bottom:706.110300px;}
.y91{bottom:713.308050px;}
.yd7{bottom:714.047250px;}
.yaa{bottom:714.132600px;}
.y26{bottom:724.110300px;}
.yd6{bottom:737.527650px;}
.ya9{bottom:737.938800px;}
.y25{bottom:742.110300px;}
.y5{bottom:742.259550px;}
.y4{bottom:755.759550px;}
.y24{bottom:760.110300px;}
.yd5{bottom:761.007900px;}
.ya8{bottom:761.745000px;}
.y3{bottom:769.259550px;}
.y2{bottom:794.759550px;}
.y23{bottom:794.972100px;}
.h3{height:31.968000px;}
.h4{height:32.046000px;}
.h1c{height:35.040000px;}
.h7{height:35.964000px;}
.hb{height:36.432000px;}
.h1d{height:36.624000px;}
.hd{height:37.152000px;}
.h9{height:39.960000px;}
.h1e{height:41.202000px;}
.ha{height:41.616000px;}
.h1f{height:41.796000px;}
.hc{height:43.056000px;}
.h19{height:44.003391px;}
.h1a{height:44.008140px;}
.h17{height:44.013602px;}
.h18{height:44.015162px;}
.h13{height:44.336646px;}
.h12{height:44.340287px;}
.h2{height:46.818000px;}
.hf{height:46.820601px;}
.h8{height:48.438000px;}
.h15{height:48.894894px;}
.h14{height:49.839354px;}
.h10{height:50.018555px;}
.h6{height:55.944000px;}
.h1b{height:90.432000px;}
.h5{height:152.603400px;}
.he{height:219.240000px;}
.h11{height:263.892000px;}
.h16{height:298.129500px;}
.h0{height:850.393500px;}
.h1{height:850.500000px;}
.w3{width:402.019500px;}
.w2{width:425.161500px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.x17{left:12.981450px;}
.x14{left:17.641200px;}
.x16{left:19.635750px;}
.x11{left:34.575300px;}
.x23{left:36.827250px;}
.x2c{left:39.960600px;}
.x1b{left:55.780350px;}
.x8{left:63.779550px;}
.xc{left:68.031450px;}
.x6{left:73.533450px;}
.x31{left:78.023550px;}
.x9{left:85.039350px;}
.x32{left:93.543300px;}
.x10{left:97.059000px;}
.x21{left:102.542550px;}
.x7{left:106.299150px;}
.x1c{left:109.068000px;}
.xf{left:123.307050px;}
.xb{left:132.375600px;}
.x2b{left:134.037000px;}
.x18{left:137.595900px;}
.x2e{left:153.070800px;}
.x5{left:157.472100px;}
.x2a{left:167.878950px;}
.x12{left:177.215550px;}
.x24{left:195.964050px;}
.xa{left:213.757950px;}
.x26{left:221.681250px;}
.x25{left:225.403950px;}
.x30{left:242.362200px;}
.x20{left:254.110650px;}
.x29{left:257.553450px;}
.x13{left:261.529200px;}
.x22{left:270.502650px;}
.x3{left:275.914650px;}
.x1f{left:279.280800px;}
.xd{left:280.629900px;}
.x19{left:287.809350px;}
.x28{left:291.053700px;}
.x2f{left:293.385750px;}
.x4{left:300.511350px;}
.x1{left:302.476350px;}
.x15{left:304.109700px;}
.x1e{left:328.178550px;}
.x27{left:330.310950px;}
.x1d{left:361.890450px;}
.x1a{left:391.638600px;}
.x2{left:405.039000px;}
.xe{left:408.189000px;}
.x2d{left:429.448800px;}
@media print{
.vb{vertical-align:-160.031467pt;}
.va{vertical-align:-137.166400pt;}
.v9{vertical-align:-114.301867pt;}
.v8{vertical-align:-91.448000pt;}
.v7{vertical-align:-68.583467pt;}
.v6{vertical-align:-45.729067pt;}
.v3{vertical-align:-40.004608pt;}
.v5{vertical-align:-22.864533pt;}
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.200000pt;}
.vc{vertical-align:24.000000pt;}
.vd{vertical-align:48.000000pt;}
.v1{vertical-align:85.919467pt;}
.ls22{letter-spacing:-3.024000pt;}
.ls34{letter-spacing:-2.496000pt;}
.ls14{letter-spacing:-1.968000pt;}
.ls30{letter-spacing:-1.680000pt;}
.ls40{letter-spacing:-1.584000pt;}
.ls21{letter-spacing:-1.536000pt;}
.ls13{letter-spacing:-1.488000pt;}
.ls1f{letter-spacing:-1.440000pt;}
.ls36{letter-spacing:-1.392000pt;}
.ls32{letter-spacing:-1.200000pt;}
.lse{letter-spacing:-1.104000pt;}
.ls41{letter-spacing:-1.008000pt;}
.ls48{letter-spacing:-0.960000pt;}
.ls18{letter-spacing:-0.912000pt;}
.ls3d{letter-spacing:-0.720000pt;}
.lsf{letter-spacing:-0.672000pt;}
.ls3a{letter-spacing:-0.624000pt;}
.lsd{letter-spacing:-0.576000pt;}
.ls25{letter-spacing:-0.528000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls44{letter-spacing:-0.432000pt;}
.ls43{letter-spacing:-0.384000pt;}
.ls2b{letter-spacing:-0.336000pt;}
.ls3b{letter-spacing:-0.288000pt;}
.ls2a{letter-spacing:-0.251856pt;}
.ls8{letter-spacing:-0.240000pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls42{letter-spacing:-0.144000pt;}
.ls29{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.000032pt;}
.ls27{letter-spacing:0.000293pt;}
.ls1a{letter-spacing:0.004800pt;}
.ls2d{letter-spacing:0.005333pt;}
.lsb{letter-spacing:0.019200pt;}
.ls45{letter-spacing:0.024000pt;}
.ls1{letter-spacing:0.048000pt;}
.ls46{letter-spacing:0.048533pt;}
.ls3c{letter-spacing:0.072000pt;}
.ls2{letter-spacing:0.096000pt;}
.ls3e{letter-spacing:0.120000pt;}
.lsa{letter-spacing:0.144000pt;}
.ls37{letter-spacing:0.168000pt;}
.ls2f{letter-spacing:0.168565pt;}
.ls3{letter-spacing:0.192000pt;}
.ls33{letter-spacing:0.195888pt;}
.ls1b{letter-spacing:0.216000pt;}
.ls5{letter-spacing:0.240000pt;}
.ls12{letter-spacing:0.288000pt;}
.ls4a{letter-spacing:0.302400pt;}
.ls2e{letter-spacing:0.311467pt;}
.ls17{letter-spacing:0.312000pt;}
.ls38{letter-spacing:0.336000pt;}
.ls31{letter-spacing:0.355733pt;}
.ls20{letter-spacing:0.384000pt;}
.ls26{letter-spacing:0.406400pt;}
.ls6{letter-spacing:0.432000pt;}
.ls1c{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.528000pt;}
.ls47{letter-spacing:0.720000pt;}
.ls49{letter-spacing:0.768000pt;}
.ls35{letter-spacing:0.960000pt;}
.ls28{letter-spacing:1.104000pt;}
.ls4b{letter-spacing:1.440000pt;}
.ls23{letter-spacing:1.536000pt;}
.ls3f{letter-spacing:1.872000pt;}
.ls16{letter-spacing:1.920000pt;}
.ls39{letter-spacing:2.304000pt;}
.ls24{letter-spacing:2.448000pt;}
.ls1d{letter-spacing:2.784000pt;}
.ls11{letter-spacing:2.880000pt;}
.ls10{letter-spacing:3.168000pt;}
.ls19{letter-spacing:3.216000pt;}
.ls1e{letter-spacing:3.264000pt;}
.ls0{letter-spacing:64.916267pt;}
.ws6a{word-spacing:-48.000000pt;}
.ws4b{word-spacing:-12.864000pt;}
.ws3a{word-spacing:-12.816000pt;}
.ws15{word-spacing:-12.768000pt;}
.ws17{word-spacing:-12.480000pt;}
.ws42{word-spacing:-12.384000pt;}
.ws56{word-spacing:-12.048000pt;}
.ws6c{word-spacing:-12.000000pt;}
.ws91{word-spacing:-11.904000pt;}
.ws2d{word-spacing:-11.520000pt;}
.wsae{word-spacing:-11.472000pt;}
.ws55{word-spacing:-11.136000pt;}
.wsc5{word-spacing:-11.040000pt;}
.ws5e{word-spacing:-10.704000pt;}
.ws86{word-spacing:-10.560000pt;}
.wsc0{word-spacing:-10.320000pt;}
.ws9e{word-spacing:-9.984000pt;}
.ws41{word-spacing:-9.888000pt;}
.wsc1{word-spacing:-9.840000pt;}
.ws39{word-spacing:-9.792000pt;}
.ws52{word-spacing:-9.744000pt;}
.ws4a{word-spacing:-9.696000pt;}
.ws3b{word-spacing:-9.648000pt;}
.wsc3{word-spacing:-9.624000pt;}
.ws49{word-spacing:-9.600533pt;}
.ws13{word-spacing:-9.600000pt;}
.wsbe{word-spacing:-9.360000pt;}
.ws69{word-spacing:-9.312000pt;}
.ws85{word-spacing:-9.120000pt;}
.ws73{word-spacing:-9.091947pt;}
.ws57{word-spacing:-9.072000pt;}
.ws82{word-spacing:-9.024960pt;}
.ws16{word-spacing:-9.024000pt;}
.ws6e{word-spacing:-8.976000pt;}
.wsb3{word-spacing:-8.592000pt;}
.ws43{word-spacing:-8.533333pt;}
.ws14{word-spacing:-8.496000pt;}
.ws8b{word-spacing:-8.208000pt;}
.ws4c{word-spacing:-8.160000pt;}
.ws2b{word-spacing:-8.112000pt;}
.ws53{word-spacing:-8.064000pt;}
.wsc4{word-spacing:-7.920000pt;}
.ws2c{word-spacing:-7.632000pt;}
.ws0{word-spacing:-7.536000pt;}
.ws54{word-spacing:-6.576000pt;}
.ws84{word-spacing:-5.624784pt;}
.ws6b{word-spacing:-5.596800pt;}
.ws7a{word-spacing:-5.428896pt;}
.ws6d{word-spacing:-5.177040pt;}
.ws5b{word-spacing:-2.544000pt;}
.wsaf{word-spacing:-2.448000pt;}
.ws89{word-spacing:-2.016000pt;}
.wsbc{word-spacing:-1.920000pt;}
.ws20{word-spacing:-1.824000pt;}
.ws79{word-spacing:-1.776000pt;}
.ws35{word-spacing:-1.728000pt;}
.wsab{word-spacing:-1.680000pt;}
.wsad{word-spacing:-1.632000pt;}
.wsb2{word-spacing:-1.584000pt;}
.ws59{word-spacing:-1.536000pt;}
.ws2e{word-spacing:-1.488000pt;}
.ws21{word-spacing:-1.440000pt;}
.wsbd{word-spacing:-1.392000pt;}
.wsb{word-spacing:-1.344000pt;}
.ws28{word-spacing:-1.296000pt;}
.ws94{word-spacing:-1.248000pt;}
.ws18{word-spacing:-1.200000pt;}
.ws74{word-spacing:-1.152000pt;}
.ws23{word-spacing:-1.104000pt;}
.ws1b{word-spacing:-1.056000pt;}
.wsba{word-spacing:-1.008000pt;}
.wsa7{word-spacing:-0.960000pt;}
.ws32{word-spacing:-0.912000pt;}
.wsb9{word-spacing:-0.864000pt;}
.wsa4{word-spacing:-0.816000pt;}
.wsb8{word-spacing:-0.768000pt;}
.ws9c{word-spacing:-0.720000pt;}
.ws24{word-spacing:-0.672000pt;}
.ws33{word-spacing:-0.624000pt;}
.ws22{word-spacing:-0.576000pt;}
.ws50{word-spacing:-0.528000pt;}
.ws34{word-spacing:-0.480000pt;}
.ws51{word-spacing:-0.432000pt;}
.ws7{word-spacing:-0.384000pt;}
.ws6{word-spacing:-0.336000pt;}
.ws2f{word-spacing:-0.288000pt;}
.ws9{word-spacing:-0.240000pt;}
.ws30{word-spacing:-0.192000pt;}
.ws10{word-spacing:-0.144000pt;}
.ws8{word-spacing:-0.096000pt;}
.ws26{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.wsa9{word-spacing:0.048000pt;}
.ws4f{word-spacing:0.096000pt;}
.ws9b{word-spacing:0.144000pt;}
.ws31{word-spacing:0.192000pt;}
.ws36{word-spacing:0.240000pt;}
.ws96{word-spacing:0.288000pt;}
.wsd{word-spacing:0.336000pt;}
.ws83{word-spacing:0.384000pt;}
.wsbf{word-spacing:0.432000pt;}
.ws1e{word-spacing:0.480000pt;}
.ws1a{word-spacing:0.528000pt;}
.ws1d{word-spacing:0.576000pt;}
.ws99{word-spacing:0.624000pt;}
.ws25{word-spacing:0.672000pt;}
.ws9d{word-spacing:0.720000pt;}
.ws92{word-spacing:0.768000pt;}
.ws3f{word-spacing:0.816000pt;}
.ws38{word-spacing:0.864000pt;}
.ws3d{word-spacing:0.912000pt;}
.wsc2{word-spacing:0.960000pt;}
.wsa{word-spacing:1.008000pt;}
.ws2{word-spacing:1.056000pt;}
.ws3e{word-spacing:1.104000pt;}
.ws3c{word-spacing:1.152000pt;}
.ws58{word-spacing:1.200000pt;}
.ws4d{word-spacing:1.248000pt;}
.wsac{word-spacing:1.296000pt;}
.ws4e{word-spacing:1.344000pt;}
.ws46{word-spacing:1.392000pt;}
.ws8a{word-spacing:1.440000pt;}
.ws9a{word-spacing:1.488000pt;}
.ws5c{word-spacing:1.536000pt;}
.ws1c{word-spacing:1.584000pt;}
.ws93{word-spacing:1.632000pt;}
.ws70{word-spacing:1.680000pt;}
.ws1f{word-spacing:1.728000pt;}
.ws98{word-spacing:1.776000pt;}
.ws97{word-spacing:1.824000pt;}
.ws9f{word-spacing:1.872000pt;}
.ws37{word-spacing:1.920000pt;}
.ws8c{word-spacing:1.968000pt;}
.wsbb{word-spacing:2.016000pt;}
.ws19{word-spacing:2.112000pt;}
.ws75{word-spacing:2.160000pt;}
.ws78{word-spacing:2.208000pt;}
.ws11{word-spacing:2.256000pt;}
.ws95{word-spacing:2.304000pt;}
.ws2a{word-spacing:2.352000pt;}
.ws40{word-spacing:2.400000pt;}
.ws5d{word-spacing:2.448000pt;}
.ws88{word-spacing:2.496000pt;}
.ws76{word-spacing:2.544000pt;}
.ws3{word-spacing:2.592000pt;}
.wse{word-spacing:2.640000pt;}
.wsa8{word-spacing:2.688000pt;}
.ws87{word-spacing:2.736000pt;}
.ws8d{word-spacing:2.784000pt;}
.ws27{word-spacing:2.832000pt;}
.ws29{word-spacing:2.880000pt;}
.wsaa{word-spacing:2.928000pt;}
.ws4{word-spacing:2.976000pt;}
.ws5a{word-spacing:3.024000pt;}
.ws77{word-spacing:3.072000pt;}
.wsf{word-spacing:3.120000pt;}
.ws5{word-spacing:3.168000pt;}
.ws6f{word-spacing:3.456000pt;}
.ws12{word-spacing:3.648000pt;}
.ws47{word-spacing:3.936000pt;}
.wsc{word-spacing:4.512000pt;}
.ws7f{word-spacing:18.771612pt;}
.ws7e{word-spacing:19.530535pt;}
.ws80{word-spacing:19.553363pt;}
.ws7d{word-spacing:20.275130pt;}
.ws81{word-spacing:20.320254pt;}
.ws7c{word-spacing:23.735852pt;}
.ws7b{word-spacing:27.224349pt;}
.ws71{word-spacing:38.993160pt;}
.wsa0{word-spacing:65.779733pt;}
.ws44{word-spacing:75.746133pt;}
.ws45{word-spacing:80.226133pt;}
.ws72{word-spacing:111.085416pt;}
.ws90{word-spacing:144.709333pt;}
.ws8f{word-spacing:151.877333pt;}
.ws63{word-spacing:153.655467pt;}
.ws61{word-spacing:155.148800pt;}
.ws68{word-spacing:155.447467pt;}
.ws66{word-spacing:163.127467pt;}
.wsa3{word-spacing:164.292800pt;}
.wsa6{word-spacing:171.375467pt;}
.ws5f{word-spacing:183.138133pt;}
.wsb1{word-spacing:200.558400pt;}
.ws8e{word-spacing:206.960000pt;}
.wsa5{word-spacing:223.940800pt;}
.ws67{word-spacing:242.315733pt;}
.wsb0{word-spacing:246.766400pt;}
.ws60{word-spacing:257.163733pt;}
.ws62{word-spacing:261.643733pt;}
.wsa2{word-spacing:282.095467pt;}
.ws64{word-spacing:314.891200pt;}
.wsb7{word-spacing:330.335467pt;}
.ws48{word-spacing:363.904772pt;}
.wsb4{word-spacing:364.596800pt;}
.wsb5{word-spacing:378.634133pt;}
.wsa1{word-spacing:400.579200pt;}
.wsb6{word-spacing:447.099733pt;}
.ws65{word-spacing:457.297600pt;}
._14{margin-left:-118.641025pt;}
._12{margin-left:-114.176376pt;}
._13{margin-left:-113.132082pt;}
._11{margin-left:-15.097600pt;}
._6{margin-left:-13.129600pt;}
._2{margin-left:-10.252800pt;}
._23{margin-left:-9.280000pt;}
._22{margin-left:-7.811200pt;}
._3{margin-left:-5.120533pt;}
._8{margin-left:-4.208000pt;}
._0{margin-left:-2.986667pt;}
._1{margin-left:-1.300800pt;}
._4{width:1.608000pt;}
._5{width:3.264000pt;}
._9{width:4.166400pt;}
._15{width:5.577600pt;}
._52{width:6.969600pt;}
._51{width:8.256000pt;}
._4f{width:12.240000pt;}
._53{width:13.738667pt;}
._4b{width:14.736000pt;}
._16{width:16.266667pt;}
._a{width:17.493333pt;}
._50{width:18.532800pt;}
._4c{width:21.034667pt;}
._4e{width:21.946667pt;}
._7{width:23.466667pt;}
._4d{width:25.924800pt;}
._e{width:56.074133pt;}
._3a{width:58.770133pt;}
._35{width:61.565333pt;}
._f{width:68.791467pt;}
._38{width:71.683200pt;}
._b{width:75.447467pt;}
._10{width:84.834133pt;}
._2f{width:96.572267pt;}
._20{width:122.826446pt;}
._d{width:125.223467pt;}
._1f{width:127.469167pt;}
._28{width:128.624000pt;}
._26{width:136.896533pt;}
._18{width:143.755200pt;}
._34{width:153.261867pt;}
._32{width:155.162133pt;}
._24{width:161.349333pt;}
._40{width:164.418667pt;}
._33{width:177.021333pt;}
._37{width:181.117333pt;}
._31{width:193.775467pt;}
._1c{width:201.654400pt;}
._30{width:208.836800pt;}
._39{width:219.688000pt;}
._c{width:221.706133pt;}
._3f{width:222.850133pt;}
._3b{width:226.286400pt;}
._2d{width:231.620800pt;}
._43{width:239.953067pt;}
._36{width:248.764800pt;}
._4a{width:255.099733pt;}
._17{width:256.865067pt;}
._3d{width:280.429333pt;}
._2a{width:301.247467pt;}
._1d{width:315.232533pt;}
._19{width:316.896533pt;}
._41{width:331.885333pt;}
._29{width:346.688533pt;}
._3e{width:387.608000pt;}
._44{width:398.644800pt;}
._2e{width:400.152533pt;}
._3c{width:407.789333pt;}
._46{width:414.673067pt;}
._42{width:423.519467pt;}
._2c{width:434.002133pt;}
._1a{width:463.697600pt;}
._1b{width:465.318933pt;}
._27{width:468.181333pt;}
._47{width:481.019733pt;}
._49{width:482.655467pt;}
._48{width:485.300800pt;}
._45{width:500.177067pt;}
._2b{width:510.445867pt;}
._25{width:706.411200pt;}
._21{width:717.768107pt;}
._1e{width:953.110965pt;}
.fs7{font-size:27.984000pt;}
.fs2{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fsc{font-size:45.114332pt;}
.fsd{font-size:45.119200pt;}
.fsa{font-size:45.124800pt;}
.fsb{font-size:45.126400pt;}
.fs9{font-size:45.456000pt;}
.fs8{font-size:45.459733pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:48.002667pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:2.880400pt;}
.y70{bottom:3.030000pt;}
.y82{bottom:4.341333pt;}
.y51{bottom:15.040933pt;}
.y7f{bottom:20.147467pt;}
.y6e{bottom:27.274352pt;}
.y83{bottom:27.982933pt;}
.y5d{bottom:33.636785pt;}
.y74{bottom:36.064667pt;}
.y1{bottom:36.542667pt;}
.y7e{bottom:37.592800pt;}
.y5c{bottom:44.305377pt;}
.y84{bottom:51.436667pt;}
.y7d{bottom:54.436533pt;}
.y5b{bottom:56.978081pt;}
.y6d{bottom:57.459615pt;}
.yd4{bottom:66.311600pt;}
.y5a{bottom:67.646674pt;}
.y22{bottom:67.653467pt;}
.y40{bottom:67.653600pt;}
.yfa{bottom:69.892400pt;}
.y7c{bottom:70.681333pt;}
.y90{bottom:71.645200pt;}
.ya7{bottom:73.688933pt;}
.y8e{bottom:78.493600pt;}
.y6f{bottom:82.355200pt;}
.y21{bottom:83.653467pt;}
.y3f{bottom:83.653600pt;}
.y58{bottom:84.307777pt;}
.y59{bottom:84.315600pt;}
.y8f{bottom:84.445200pt;}
.ya6{bottom:85.688933pt;}
.y6c{bottom:87.644878pt;}
.yd3{bottom:87.818267pt;}
.yf9{bottom:90.120667pt;}
.ya5{bottom:97.688933pt;}
.y20{bottom:99.653467pt;}
.y3e{bottom:99.653600pt;}
.yd2{bottom:99.818267pt;}
.y57{bottom:104.312889pt;}
.y77{bottom:107.606667pt;}
.y81{bottom:108.206000pt;}
.yf8{bottom:110.992133pt;}
.yd1{bottom:111.818267pt;}
.y8d{bottom:112.785200pt;}
.y7b{bottom:114.037813pt;}
.y56{bottom:114.981481pt;}
.y1f{bottom:115.653467pt;}
.y3d{bottom:115.653600pt;}
.y6b{bottom:117.830141pt;}
.ya4{bottom:118.850000pt;}
.yd0{bottom:123.818267pt;}
.y8c{bottom:125.720133pt;}
.y86{bottom:126.923200pt;}
.y55{bottom:126.982148pt;}
.ya3{bottom:130.850000pt;}
.y1e{bottom:131.653467pt;}
.y3c{bottom:131.653600pt;}
.yf7{bottom:131.863467pt;}
.y66{bottom:134.891333pt;}
.y7a{bottom:135.348000pt;}
.ycf{bottom:135.818267pt;}
.y54{bottom:137.650741pt;}
.y85{bottom:138.352933pt;}
.y72{bottom:138.499467pt;}
.y75{bottom:140.291467pt;}
.ya2{bottom:142.850000pt;}
.y8b{bottom:147.376267pt;}
.y1d{bottom:147.653467pt;}
.y3b{bottom:147.653600pt;}
.yce{bottom:147.818267pt;}
.y6a{bottom:148.015404pt;}
.y53{bottom:149.651407pt;}
.y89{bottom:151.287867pt;}
.yf6{bottom:152.734800pt;}
.ya1{bottom:154.850000pt;}
.y87{bottom:155.196667pt;}
.y79{bottom:157.910400pt;}
.ycd{bottom:159.818267pt;}
.y52{bottom:160.320000pt;}
.y67{bottom:161.702667pt;}
.y8a{bottom:163.019600pt;}
.y1c{bottom:163.653467pt;}
.y3a{bottom:163.653600pt;}
.y71{bottom:165.472800pt;}
.ya0{bottom:166.850000pt;}
.ycc{bottom:171.818267pt;}
.yf5{bottom:173.606267pt;}
.y69{bottom:178.200667pt;}
.y1b{bottom:179.653467pt;}
.y39{bottom:179.653600pt;}
.y78{bottom:180.472800pt;}
.y4f{bottom:180.800000pt;}
.ycb{bottom:183.818267pt;}
.y88{bottom:187.082000pt;}
.y9f{bottom:188.010933pt;}
.yf4{bottom:194.477600pt;}
.y1a{bottom:195.653467pt;}
.y38{bottom:195.653600pt;}
.yca{bottom:195.818267pt;}
.y9e{bottom:200.010933pt;}
.y73{bottom:201.535733pt;}
.yc9{bottom:207.818267pt;}
.y19{bottom:211.653467pt;}
.y37{bottom:211.653600pt;}
.yf3{bottom:215.349067pt;}
.y68{bottom:219.114533pt;}
.yc8{bottom:219.818267pt;}
.y9d{bottom:221.172000pt;}
.y36{bottom:227.653600pt;}
.y9c{bottom:233.172000pt;}
.yf2{bottom:236.220400pt;}
.yc7{bottom:240.979333pt;}
.y35{bottom:243.653600pt;}
.y9b{bottom:245.172000pt;}
.y80{bottom:249.964933pt;}
.yc6{bottom:252.979333pt;}
.y18{bottom:259.653467pt;}
.y34{bottom:259.653600pt;}
.yc5{bottom:264.979333pt;}
.y9a{bottom:266.333067pt;}
.y17{bottom:275.653467pt;}
.y33{bottom:275.653600pt;}
.yc4{bottom:276.979333pt;}
.y99{bottom:287.494133pt;}
.yc3{bottom:288.979333pt;}
.yf1{bottom:291.653467pt;}
.y32{bottom:291.653600pt;}
.y98{bottom:299.494133pt;}
.yf0{bottom:307.653467pt;}
.y16{bottom:307.653600pt;}
.yc2{bottom:310.140400pt;}
.y97{bottom:320.655200pt;}
.yc1{bottom:322.140400pt;}
.y31{bottom:323.653600pt;}
.yc0{bottom:334.140400pt;}
.y15{bottom:339.653600pt;}
.yef{bottom:341.178400pt;}
.ybf{bottom:346.140400pt;}
.y14{bottom:355.653600pt;}
.ybe{bottom:358.140400pt;}
.y4d{bottom:358.764267pt;}
.yee{bottom:361.406800pt;}
.ybd{bottom:370.140400pt;}
.y13{bottom:371.653600pt;}
.yed{bottom:373.406800pt;}
.y4c{bottom:378.992667pt;}
.y12{bottom:387.653600pt;}
.y4b{bottom:390.992667pt;}
.ybc{bottom:391.301333pt;}
.y5e{bottom:394.020000pt;}
.yec{bottom:394.656133pt;}
.ybb{bottom:403.301333pt;}
.y11{bottom:403.653600pt;}
.yeb{bottom:406.656133pt;}
.y4a{bottom:410.264000pt;}
.yba{bottom:415.301333pt;}
.y4e{bottom:416.952000pt;}
.y10{bottom:419.653600pt;}
.y49{bottom:422.264000pt;}
.yb9{bottom:427.301333pt;}
.yea{bottom:427.905467pt;}
.yf{bottom:435.653600pt;}
.yb8{bottom:439.301333pt;}
.ye9{bottom:439.905467pt;}
.y48{bottom:441.535200pt;}
.ye{bottom:451.653600pt;}
.y47{bottom:453.535200pt;}
.yb7{bottom:460.462400pt;}
.ye8{bottom:461.154800pt;}
.yd{bottom:467.653600pt;}
.yb6{bottom:472.462400pt;}
.ye7{bottom:473.154800pt;}
.y46{bottom:474.406667pt;}
.yc{bottom:483.653467pt;}
.y30{bottom:483.653600pt;}
.yb5{bottom:484.462400pt;}
.y45{bottom:486.406667pt;}
.y65{bottom:492.179200pt;}
.ye6{bottom:494.404133pt;}
.yb4{bottom:496.462400pt;}
.yb{bottom:499.653467pt;}
.y2f{bottom:499.653600pt;}
.y44{bottom:505.678000pt;}
.ye5{bottom:506.404133pt;}
.y64{bottom:515.294667pt;}
.ya{bottom:515.653467pt;}
.y2e{bottom:515.653600pt;}
.yb3{bottom:517.623467pt;}
.y43{bottom:517.678000pt;}
.ydd{bottom:518.994800pt;}
.ye4{bottom:527.653467pt;}
.yb2{bottom:529.623467pt;}
.y96{bottom:529.694667pt;}
.y9{bottom:531.653467pt;}
.y2d{bottom:531.653600pt;}
.y63{bottom:536.166133pt;}
.y42{bottom:538.549333pt;}
.ydc{bottom:539.223067pt;}
.ye3{bottom:539.653467pt;}
.yb1{bottom:541.623467pt;}
.y2c{bottom:547.653600pt;}
.y95{bottom:550.566000pt;}
.ydb{bottom:551.223067pt;}
.yb0{bottom:553.623467pt;}
.y62{bottom:557.037467pt;}
.y41{bottom:557.820533pt;}
.ye2{bottom:560.902933pt;}
.y8{bottom:563.653467pt;}
.y2b{bottom:563.653600pt;}
.yaf{bottom:565.623467pt;}
.y94{bottom:571.437333pt;}
.yda{bottom:572.094533pt;}
.ye1{bottom:572.902933pt;}
.yae{bottom:577.623467pt;}
.y61{bottom:577.908933pt;}
.y2a{bottom:579.653600pt;}
.y76{bottom:582.891333pt;}
.ye0{bottom:584.902933pt;}
.y93{bottom:592.308800pt;}
.yd9{bottom:592.965867pt;}
.y29{bottom:595.653600pt;}
.y60{bottom:598.780267pt;}
.yad{bottom:598.784533pt;}
.y6{bottom:600.497733pt;}
.y7{bottom:605.977600pt;}
.ydf{bottom:606.152267pt;}
.yac{bottom:610.784533pt;}
.y28{bottom:611.653600pt;}
.y92{bottom:613.180133pt;}
.yd8{bottom:613.837333pt;}
.y5f{bottom:618.051600pt;}
.yab{bottom:622.784533pt;}
.yde{bottom:627.401600pt;}
.y27{bottom:627.653600pt;}
.y91{bottom:634.051600pt;}
.yd7{bottom:634.708667pt;}
.yaa{bottom:634.784533pt;}
.y26{bottom:643.653600pt;}
.yd6{bottom:655.580133pt;}
.ya9{bottom:655.945600pt;}
.y25{bottom:659.653600pt;}
.y5{bottom:659.786267pt;}
.y4{bottom:671.786267pt;}
.y24{bottom:675.653600pt;}
.yd5{bottom:676.451467pt;}
.ya8{bottom:677.106667pt;}
.y3{bottom:683.786267pt;}
.y2{bottom:706.452933pt;}
.y23{bottom:706.641867pt;}
.h3{height:28.416000pt;}
.h4{height:28.485333pt;}
.h1c{height:31.146667pt;}
.h7{height:31.968000pt;}
.hb{height:32.384000pt;}
.h1d{height:32.554667pt;}
.hd{height:33.024000pt;}
.h9{height:35.520000pt;}
.h1e{height:36.624000pt;}
.ha{height:36.992000pt;}
.h1f{height:37.152000pt;}
.hc{height:38.272000pt;}
.h19{height:39.114126pt;}
.h1a{height:39.118346pt;}
.h17{height:39.123202pt;}
.h18{height:39.124589pt;}
.h13{height:39.410352pt;}
.h12{height:39.413589pt;}
.h2{height:41.616000pt;}
.hf{height:41.618312pt;}
.h8{height:43.056000pt;}
.h15{height:43.462128pt;}
.h14{height:44.301648pt;}
.h10{height:44.460938pt;}
.h6{height:49.728000pt;}
.h1b{height:80.384000pt;}
.h5{height:135.647467pt;}
.he{height:194.880000pt;}
.h11{height:234.570667pt;}
.h16{height:265.004000pt;}
.h0{height:755.905333pt;}
.h1{height:756.000000pt;}
.w3{width:357.350667pt;}
.w2{width:377.921333pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.x17{left:11.539067pt;}
.x14{left:15.681067pt;}
.x16{left:17.454000pt;}
.x11{left:30.733600pt;}
.x23{left:32.735333pt;}
.x2c{left:35.520533pt;}
.x1b{left:49.582533pt;}
.x8{left:56.692933pt;}
.xc{left:60.472400pt;}
.x6{left:65.363067pt;}
.x31{left:69.354267pt;}
.x9{left:75.590533pt;}
.x32{left:83.149600pt;}
.x10{left:86.274667pt;}
.x21{left:91.148933pt;}
.x7{left:94.488133pt;}
.x1c{left:96.949333pt;}
.xf{left:109.606267pt;}
.xb{left:117.667200pt;}
.x2b{left:119.144000pt;}
.x18{left:122.307467pt;}
.x2e{left:136.062933pt;}
.x5{left:139.975200pt;}
.x2a{left:149.225733pt;}
.x12{left:157.524933pt;}
.x24{left:174.190267pt;}
.xa{left:190.007067pt;}
.x26{left:197.050000pt;}
.x25{left:200.359067pt;}
.x30{left:215.433067pt;}
.x20{left:225.876133pt;}
.x29{left:228.936400pt;}
.x13{left:232.470400pt;}
.x22{left:240.446800pt;}
.x3{left:245.257467pt;}
.x1f{left:248.249600pt;}
.xd{left:249.448800pt;}
.x19{left:255.830533pt;}
.x28{left:258.714400pt;}
.x2f{left:260.787333pt;}
.x4{left:267.121200pt;}
.x1{left:268.867867pt;}
.x15{left:270.319733pt;}
.x1e{left:291.714267pt;}
.x27{left:293.609733pt;}
.x1d{left:321.680400pt;}
.x1a{left:348.123200pt;}
.x2{left:360.034667pt;}
.xe{left:362.834667pt;}
.x2d{left:381.732267pt;}
}




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