
    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_c33d86f6c04f3240dd51863f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_e6e5607de7d77d831f3aa5f3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_3ebc87fa326cf0a0e1663a88.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_8fd0117ddab701d7b5bc25f2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.924000;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_2edf86a2e12a387613cbd729.woff')format("woff");}.ff5{font-family:ff5;line-height:0.724000;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_65d3c220fa882a72318c1fc6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_485f0e425dd76f178d427c10.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_f77516685b2cfa6364302906.woff')format("woff");}.ff8{font-family:ff8;line-height:0.578000;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_36a5768b285bcb5f66cf60cf.woff')format("woff");}.ff9{font-family:ff9;line-height:0.658000;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;}
.m6{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m7{transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249554,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249571,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249577,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249587,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252802,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254477,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.255073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255073,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.265870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265870,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.268073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268073,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.271479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271479,0.000000,0.000000,0.250000,0,0);}
.ve{vertical-align:-56.206806px;}
.vf{vertical-align:-53.798592px;}
.v10{vertical-align:-50.799684px;}
.v11{vertical-align:-48.436908px;}
.v12{vertical-align:-46.028694px;}
.v13{vertical-align:-35.259888px;}
.v14{vertical-align:-32.897112px;}
.v15{vertical-align:-30.488898px;}
.v16{vertical-align:-28.080684px;}
.v17{vertical-align:-17.357316px;}
.vd{vertical-align:-16.131768px;}
.vc{vertical-align:-14.938926px;}
.vb{vertical-align:-13.746084px;}
.va{vertical-align:-12.553242px;}
.v9{vertical-align:-11.360400px;}
.v8{vertical-align:-9.542736px;}
.v7{vertical-align:-8.349894px;}
.v6{vertical-align:-7.157052px;}
.v5{vertical-align:-5.964210px;}
.v4{vertical-align:-4.771368px;}
.v3{vertical-align:-3.578526px;}
.v2{vertical-align:-2.385684px;}
.v1{vertical-align:-1.192842px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.374880px;}
.ls29{letter-spacing:0.568020px;}
.ls6{letter-spacing:0.591954px;}
.ls28{letter-spacing:0.624822px;}
.ls2a{letter-spacing:4.770990px;}
.ls16{letter-spacing:10.178112px;}
.ls23{letter-spacing:10.746780px;}
.ls1e{letter-spacing:11.360400px;}
.ls7{letter-spacing:11.946708px;}
.ls17{letter-spacing:13.729140px;}
.lsf{letter-spacing:13.746084px;}
.ls0{letter-spacing:13.770624px;}
.ls18{letter-spacing:14.346180px;}
.ls26{letter-spacing:14.722560px;}
.ls24{letter-spacing:14.963220px;}
.ls27{letter-spacing:15.063360px;}
.ls4{letter-spacing:15.552246px;}
.ls12{letter-spacing:16.131768px;}
.ls5{letter-spacing:16.736154px;}
.ls1d{letter-spacing:16.756590px;}
.ls1c{letter-spacing:17.328540px;}
.ls8{letter-spacing:17.920062px;}
.ls22{letter-spacing:17.945580px;}
.ls14{letter-spacing:17.948010px;}
.ls21{letter-spacing:18.511200px;}
.ls1b{letter-spacing:19.128240px;}
.lse{letter-spacing:19.142274px;}
.lsc{letter-spacing:19.710294px;}
.ls25{letter-spacing:19.745280px;}
.ls3{letter-spacing:19.749738px;}
.ls15{letter-spacing:20.310786px;}
.lsd{letter-spacing:20.335116px;}
.ls2{letter-spacing:20.341692px;}
.ls10{letter-spacing:21.527958px;}
.ls9{letter-spacing:22.709508px;}
.lsa{letter-spacing:22.720800px;}
.lsb{letter-spacing:23.288820px;}
.ls11{letter-spacing:23.913642px;}
.ls19{letter-spacing:24.527340px;}
.ls13{letter-spacing:24.538464px;}
.ls1a{letter-spacing:25.092960px;}
.ls1f{letter-spacing:25.106484px;}
.ls20{letter-spacing:25.731306px;}
.ls2c{letter-spacing:107.097366px;}
.ls2d{letter-spacing:234.778146px;}
.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;}
}
.ws7b{word-spacing:-39.306984px;}
.ws7a{word-spacing:-38.738964px;}
.ws4f{word-spacing:-36.163008px;}
.ws95{word-spacing:-16.130490px;}
.ws5f{word-spacing:-14.200500px;}
.ws83{word-spacing:-11.359500px;}
.ws2b{word-spacing:-10.464000px;}
.ws96{word-spacing:-2.896902px;}
.ws1a{word-spacing:-2.840100px;}
.ws41{word-spacing:-2.690700px;}
.ws61{word-spacing:-2.272080px;}
.ws5d{word-spacing:-2.215278px;}
.ws79{word-spacing:-2.108220px;}
.ws33{word-spacing:-2.098746px;}
.ws24{word-spacing:-1.772082px;}
.ws98{word-spacing:-1.704060px;}
.ws1c{word-spacing:-1.647258px;}
.ws2e{word-spacing:-1.506792px;}
.ws28{word-spacing:-1.181388px;}
.ws21{word-spacing:-1.022436px;}
.ws4c{word-spacing:-0.914838px;}
.ws3{word-spacing:-0.762300px;}
.ws93{word-spacing:-0.590694px;}
.ws15{word-spacing:-0.454416px;}
.ws49{word-spacing:-0.322884px;}
.ws63{word-spacing:-0.308520px;}
.ws52{word-spacing:-0.269070px;}
.ws4{word-spacing:-0.152460px;}
.ws2d{word-spacing:0.000000px;}
.ws84{word-spacing:0.113604px;}
.ws1{word-spacing:0.170406px;}
.ws34{word-spacing:0.322884px;}
.wsc{word-spacing:0.738426px;}
.ws71{word-spacing:0.874140px;}
.ws42{word-spacing:0.914838px;}
.ws5{word-spacing:1.067220px;}
.ws29{word-spacing:1.181388px;}
.ws99{word-spacing:1.306446px;}
.ws19{word-spacing:1.363248px;}
.ws70{word-spacing:1.491180px;}
.ws36{word-spacing:1.506792px;}
.ws23{word-spacing:1.772082px;}
.ws1b{word-spacing:1.931268px;}
.ws4a{word-spacing:2.098746px;}
.ws7e{word-spacing:2.108220px;}
.ws87{word-spacing:2.408214px;}
.ws8b{word-spacing:2.499288px;}
.ws12{word-spacing:2.556090px;}
.ws62{word-spacing:2.673840px;}
.ws30{word-spacing:2.690700px;}
.ws8d{word-spacing:2.998908px;}
.ws85{word-spacing:3.067308px;}
.wsd{word-spacing:3.124110px;}
.ws8c{word-spacing:3.180912px;}
.ws4b{word-spacing:3.282654px;}
.ws2a{word-spacing:3.306624px;}
.ws20{word-spacing:3.589602px;}
.ws88{word-spacing:3.692130px;}
.ws3a{word-spacing:3.748932px;}
.ws47{word-spacing:3.874608px;}
.wsa{word-spacing:4.014780px;}
.ws2{word-spacing:4.161384px;}
.ws25{word-spacing:4.180296px;}
.ws13{word-spacing:4.316952px;}
.ws3b{word-spacing:4.466562px;}
.ws64{word-spacing:4.473540px;}
.ws9{word-spacing:4.624620px;}
.ws22{word-spacing:4.770990px;}
.ws8f{word-spacing:4.884972px;}
.ws14{word-spacing:4.941774px;}
.ws45{word-spacing:5.058516px;}
.ws77{word-spacing:5.090580px;}
.ws54{word-spacing:5.112330px;}
.ws2c{word-spacing:5.305608px;}
.ws1d{word-spacing:5.509794px;}
.ws94{word-spacing:5.566596px;}
.ws78{word-spacing:5.656200px;}
.ws3f{word-spacing:5.704284px;}
.ws9b{word-spacing:5.997816px;}
.ws89{word-spacing:6.077814px;}
.ws2f{word-spacing:6.134616px;}
.ws74{word-spacing:6.273240px;}
.ws35{word-spacing:6.296238px;}
.ws26{word-spacing:6.588510px;}
.ws86{word-spacing:6.645834px;}
.ws10{word-spacing:6.702636px;}
.ws90{word-spacing:6.759438px;}
.ws3d{word-spacing:6.888192px;}
.ws80{word-spacing:6.890280px;}
.wsa3{word-spacing:7.179204px;}
.ws0{word-spacing:7.198716px;}
.ws16{word-spacing:7.327458px;}
.ws76{word-spacing:7.455900px;}
.ws3c{word-spacing:7.480146px;}
.ws9c{word-spacing:7.769898px;}
.ws8a{word-spacing:7.838676px;}
.wse{word-spacing:7.895478px;}
.ws8e{word-spacing:8.009082px;}
.ws43{word-spacing:8.072100px;}
.ws7{word-spacing:8.232840px;}
.ws27{word-spacing:8.360592px;}
.wsb{word-spacing:8.520300px;}
.ws44{word-spacing:8.664054px;}
.ws6b{word-spacing:8.951286px;}
.ws5b{word-spacing:9.088320px;}
.ws75{word-spacing:9.145122px;}
.ws50{word-spacing:9.256008px;}
.ws6{word-spacing:9.401700px;}
.ws92{word-spacing:9.656340px;}
.ws1e{word-spacing:9.713142px;}
.ws32{word-spacing:9.847962px;}
.ws6f{word-spacing:9.872640px;}
.ws6a{word-spacing:10.178112px;}
.ws9a{word-spacing:10.281162px;}
.ws3e{word-spacing:10.337964px;}
.ws7d{word-spacing:10.438260px;}
.ws53{word-spacing:10.493730px;}
.ws8{word-spacing:10.621380px;}
.ws9d{word-spacing:10.768806px;}
.ws40{word-spacing:10.905984px;}
.ws7f{word-spacing:11.055300px;}
.ws39{word-spacing:11.085684px;}
.ws17{word-spacing:11.530806px;}
.ws73{word-spacing:11.672340px;}
.ws59{word-spacing:11.677638px;}
.wsa1{word-spacing:11.950194px;}
.ws18{word-spacing:12.098826px;}
.ws72{word-spacing:12.237960px;}
.ws31{word-spacing:12.269592px;}
.wsf{word-spacing:12.723648px;}
.ws6c{word-spacing:12.855000px;}
.ws37{word-spacing:12.861546px;}
.ws1f{word-spacing:13.291668px;}
.ws4e{word-spacing:13.453500px;}
.ws91{word-spacing:13.767714px;}
.ws97{word-spacing:13.859688px;}
.ws11{word-spacing:13.916490px;}
.ws48{word-spacing:14.045454px;}
.ws38{word-spacing:14.484510px;}
.ws6d{word-spacing:14.654700px;}
.ws9e{word-spacing:14.949102px;}
.ws81{word-spacing:15.109332px;}
.ws7c{word-spacing:15.220320px;}
.ws57{word-spacing:15.229362px;}
.ws5e{word-spacing:15.677352px;}
.ws60{word-spacing:16.302174px;}
.ws51{word-spacing:16.467084px;}
.ws58{word-spacing:16.870194px;}
.ws6e{word-spacing:17.020020px;}
.ws5a{word-spacing:17.495016px;}
.ws82{word-spacing:18.063036px;}
.ws55{word-spacing:18.834900px;}
.ws5c{word-spacing:19.880700px;}
.ws69{word-spacing:20.505522px;}
.ws68{word-spacing:27.662574px;}
.ws46{word-spacing:40.360500px;}
.ws56{word-spacing:42.601500px;}
.ws65{word-spacing:61.341300px;}
.ws67{word-spacing:62.159184px;}
.ws66{word-spacing:67.929810px;}
.ws4d{word-spacing:94.551198px;}
.wsa0{word-spacing:985.913724px;}
.wsa2{word-spacing:1102.962012px;}
.wsa4{word-spacing:1288.349052px;}
.ws9f{word-spacing:1387.085826px;}
._2b{margin-left:-2978.545926px;}
._17{margin-left:-2977.542000px;}
._35{margin-left:-2976.473616px;}
._26{margin-left:-2972.501868px;}
._25{margin-left:-2924.694312px;}
._34{margin-left:-2919.793206px;}
._38{margin-left:-2885.427996px;}
._2f{margin-left:-2593.778886px;}
._4f{margin-left:-2416.129872px;}
._50{margin-left:-2275.431318px;}
._36{margin-left:-1948.706214px;}
._2c{margin-left:-1938.735600px;}
._32{margin-left:-1705.082436px;}
._4c{margin-left:-25.674504px;}
._4b{margin-left:-24.538464px;}
._22{margin-left:-21.992676px;}
._51{margin-left:-4.770990px;}
._29{margin-left:-1.097658px;}
._28{width:1.089174px;}
._15{width:4.185600px;}
._3{width:5.386920px;}
._c{width:6.541500px;}
._12{width:8.315154px;}
._23{width:10.269600px;}
._2{width:11.332860px;}
._1{width:13.162380px;}
._4{width:14.890260px;}
._e{width:16.699788px;}
._b{width:17.892630px;}
._0{width:19.142274px;}
._8{width:20.959938px;}
._6{width:22.157520px;}
._5{width:23.326380px;}
._d{width:24.481662px;}
._1a{width:25.674504px;}
._13{width:26.867346px;}
._9{width:27.926418px;}
._a{width:29.253030px;}
._27{width:31.093452px;}
._30{width:32.320338px;}
._2d{width:33.472308px;}
._4e{width:36.805272px;}
._1f{width:37.821828px;}
._14{width:41.856000px;}
._4a{width:45.438000px;}
._3a{width:51.420000px;}
._19{width:53.222046px;}
._2e{width:54.486060px;}
._31{width:56.745198px;}
._48{width:73.518684px;}
._3e{width:88.922166px;}
._47{width:96.004506px;}
._3c{width:104.189334px;}
._1b{width:106.552950px;}
._7{width:107.830362px;}
._10{width:108.889434px;}
._3f{width:110.005398px;}
._45{width:113.595000px;}
._44{width:116.380122px;}
._3d{width:119.138436px;}
._41{width:120.183510px;}
._16{width:122.323740px;}
._49{width:130.375026px;}
._42{width:136.314000px;}
._43{width:141.598212px;}
._37{width:156.659916px;}
._1d{width:161.200452px;}
._39{width:163.589760px;}
._11{width:164.604060px;}
._40{width:169.451706px;}
._53{width:234.383844px;}
._52{width:235.911522px;}
._46{width:250.136190px;}
._1c{width:291.779508px;}
._33{width:345.469764px;}
._1e{width:372.554322px;}
._3b{width:385.087050px;}
._18{width:632.075664px;}
._24{width:647.328606px;}
._f{width:736.494732px;}
._21{width:928.849608px;}
._4d{width:1010.905194px;}
._2a{width:1239.282606px;}
._20{width:1276.540416px;}
.fc2{color:rgb(102,102,102);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:27.504000px;}
.fs9{font-size:32.286000px;}
.fsd{font-size:34.080000px;}
.fs5{font-size:41.856000px;}
.fs4{font-size:45.438000px;}
.fsc{font-size:46.038000px;}
.fs0{font-size:47.832000px;}
.fs7{font-size:48.000000px;}
.fs3{font-size:50.820000px;}
.fsb{font-size:51.420000px;}
.fs8{font-size:53.814000px;}
.fsa{font-size:54.408000px;}
.fs2{font-size:56.802000px;}
.fs6{font-size:60.984000px;}
.fs1{font-size:83.706000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:56.800500px;}
.y48{bottom:115.092648px;}
.y1b4{bottom:115.093398px;}
.y152{bottom:115.093635px;}
.y49{bottom:115.095000px;}
.yf7{bottom:115.095811px;}
.yf8{bottom:115.096500px;}
.y12e{bottom:115.098852px;}
.y17f{bottom:115.100037px;}
.yaa{bottom:115.101969px;}
.y47{bottom:127.053000px;}
.y12d{bottom:128.548500px;}
.y1b3{bottom:130.042500px;}
.y151{bottom:130.044000px;}
.yf6{bottom:131.388000px;}
.ya9{bottom:131.542146px;}
.yf5{bottom:133.033500px;}
.y17e{bottom:133.035269px;}
.y46{bottom:133.332000px;}
.y45{bottom:139.011000px;}
.y12c{bottom:142.002000px;}
.y150{bottom:144.991500px;}
.yf4{bottom:147.681000px;}
.ya8{bottom:147.982323px;}
.yf3{bottom:150.970500px;}
.y17c{bottom:150.979343px;}
.y44{bottom:151.567500px;}
.y12b{bottom:155.454000px;}
.y17d{bottom:156.799500px;}
.y43{bottom:158.443500px;}
.y14f{bottom:159.939000px;}
.yf2{bottom:163.974000px;}
.ya7{bottom:164.422500px;}
.ya5{bottom:164.425323px;}
.yf1{bottom:168.907500px;}
.y12a{bottom:168.909852px;}
.y17b{bottom:168.914574px;}
.y42{bottom:169.803000px;}
.ya6{bottom:169.953000px;}
.y41{bottom:171.899352px;}
.y14e{bottom:174.883635px;}
.y1b2{bottom:174.886500px;}
.yf0{bottom:180.267000px;}
.ya3{bottom:180.853370px;}
.ya4{bottom:180.865500px;}
.y129{bottom:182.359500px;}
.y40{bottom:185.349000px;}
.yef{bottom:186.844500px;}
.y17a{bottom:186.849806px;}
.y3f{bottom:188.040000px;}
.y14d{bottom:189.834000px;}
.y128{bottom:195.813000px;}
.yee{bottom:196.560000px;}
.ya0{bottom:197.304662px;}
.ya2{bottom:197.307000px;}
.y3e{bottom:198.802500px;}
.ya1{bottom:202.837500px;}
.y1b1{bottom:204.779898px;}
.yed{bottom:204.781500px;}
.y179{bottom:204.785037px;}
.y3d{bottom:206.275500px;}
.y3c{bottom:212.254500px;}
.yec{bottom:212.853000px;}
.y9f{bottom:213.758292px;}
.y1b0{bottom:219.729000px;}
.yeb{bottom:222.718500px;}
.y178{bottom:222.720269px;}
.y127{bottom:224.210898px;}
.y3b{bottom:224.661000px;}
.y3a{bottom:225.710352px;}
.yea{bottom:229.144500px;}
.y9e{bottom:230.198469px;}
.y1af{bottom:234.676500px;}
.y39{bottom:239.160000px;}
.ye9{bottom:240.655500px;}
.y176{bottom:240.692639px;}
.y38{bottom:242.896500px;}
.ye8{bottom:245.437500px;}
.y177{bottom:246.484500px;}
.y9d{bottom:246.638646px;}
.y1ad{bottom:249.624000px;}
.y14c{bottom:252.195044px;}
.y37{bottom:252.612000px;}
.y126{bottom:254.107500px;}
.y1ae{bottom:254.406000px;}
.ye7{bottom:258.592500px;}
.y175{bottom:258.627870px;}
.y36{bottom:261.133500px;}
.ye6{bottom:261.730500px;}
.y9c{bottom:263.078823px;}
.y1ac{bottom:264.571500px;}
.y35{bottom:266.065500px;}
.y125{bottom:269.055000px;}
.y14b{bottom:270.130275px;}
.ye5{bottom:276.529500px;}
.y174{bottom:276.563102px;}
.y9a{bottom:277.575000px;}
.ye4{bottom:278.023500px;}
.y34{bottom:279.369000px;}
.y9b{bottom:279.519000px;}
.y33{bottom:279.521352px;}
.y99{bottom:279.544537px;}
.y124{bottom:284.002500px;}
.y14a{bottom:288.065507px;}
.y32{bottom:292.971000px;}
.y1ab{bottom:294.464898px;}
.ye3{bottom:294.466500px;}
.ye2{bottom:294.467823px;}
.y173{bottom:294.498333px;}
.y98{bottom:295.984714px;}
.y31{bottom:297.604500px;}
.y149{bottom:306.000738px;}
.y30{bottom:306.423000px;}
.y1aa{bottom:309.414000px;}
.ye1{bottom:310.908000px;}
.ye0{bottom:312.403500px;}
.y97{bottom:312.424891px;}
.y172{bottom:312.433565px;}
.y123{bottom:313.895898px;}
.y2f{bottom:315.840000px;}
.y2e{bottom:319.878852px;}
.y148{bottom:323.935970px;}
.y1a9{bottom:324.361500px;}
.ydf{bottom:327.351000px;}
.y122{bottom:328.845000px;}
.y96{bottom:328.865069px;}
.yde{bottom:330.340500px;}
.y121{bottom:330.342269px;}
.y171{bottom:330.368796px;}
.y2d{bottom:333.328500px;}
.y2c{bottom:334.077000px;}
.y1a8{bottom:339.309000px;}
.y147{bottom:341.871201px;}
.ydd{bottom:343.792500px;}
.y95{bottom:345.305246px;}
.y2b{bottom:346.782000px;}
.ydc{bottom:348.277500px;}
.y170{bottom:348.304028px;}
.y2a{bottom:352.314558px;}
.y1a7{bottom:354.256500px;}
.y120{bottom:358.740000px;}
.y146{bottom:359.806433px;}
.ydb{bottom:360.235500px;}
.y94{bottom:361.745423px;}
.yda{bottom:366.214500px;}
.y16f{bottom:366.239259px;}
.y1a6{bottom:369.204000px;}
.y29{bottom:370.548000px;}
.yd9{bottom:376.677000px;}
.y145{bottom:377.741664px;}
.y93{bottom:378.185600px;}
.y1a5{bottom:384.149898px;}
.yd8{bottom:384.151500px;}
.y16e{bottom:384.174491px;}
.y11f{bottom:388.635000px;}
.y28{bottom:388.778079px;}
.yd7{bottom:393.120000px;}
.y92{bottom:394.625777px;}
.y144{bottom:395.676896px;}
.y1a4{bottom:399.099000px;}
.yd6{bottom:402.088500px;}
.y16d{bottom:402.109722px;}
.y11e{bottom:403.579635px;}
.yd5{bottom:409.564323px;}
.y27{bottom:411.044463px;}
.y91{bottom:411.065954px;}
.y143{bottom:413.612127px;}
.y1a3{bottom:414.046500px;}
.y11d{bottom:418.530000px;}
.y1a2{bottom:420.025500px;}
.y16c{bottom:420.044954px;}
.y11c{bottom:420.089166px;}
.yd4{bottom:426.004500px;}
.y90{bottom:427.506131px;}
.y26{bottom:428.979695px;}
.y1a1{bottom:428.994000px;}
.y142{bottom:431.547358px;}
.yd3{bottom:433.477500px;}
.y19f{bottom:437.962500px;}
.y16b{bottom:437.980185px;}
.y11b{bottom:438.024398px;}
.yd2{bottom:442.448823px;}
.y1a0{bottom:443.791500px;}
.y19e{bottom:443.941500px;}
.y8f{bottom:443.946308px;}
.y25{bottom:446.914926px;}
.y141{bottom:449.482590px;}
.y19d{bottom:455.899500px;}
.y16a{bottom:455.915417px;}
.y11a{bottom:455.959629px;}
.yd0{bottom:456.945000px;}
.yd1{bottom:458.889000px;}
.ycf{bottom:458.893146px;}
.y8e{bottom:460.386485px;}
.y24{bottom:464.850158px;}
.y140{bottom:467.417822px;}
.y19b{bottom:473.834898px;}
.y19c{bottom:473.836500px;}
.y169{bottom:473.850648px;}
.y119{bottom:473.894861px;}
.yce{bottom:475.333323px;}
.y8d{bottom:476.826662px;}
.y23{bottom:482.785389px;}
.y13f{bottom:485.353053px;}
.y19a{bottom:488.784000px;}
.y8c{bottom:491.773500px;}
.y168{bottom:491.785880px;}
.ycd{bottom:491.799699px;}
.y118{bottom:491.830092px;}
.y22{bottom:500.720621px;}
.y8b{bottom:502.834500px;}
.y13e{bottom:503.288285px;}
.y199{bottom:503.731500px;}
.y8a{bottom:508.219146px;}
.ycc{bottom:508.239876px;}
.y198{bottom:509.710500px;}
.y167{bottom:509.721111px;}
.y117{bottom:509.765324px;}
.y21{bottom:518.655852px;}
.y197{bottom:518.679000px;}
.y13d{bottom:521.223516px;}
.y89{bottom:524.659323px;}
.ycb{bottom:524.680053px;}
.y196{bottom:527.647500px;}
.y166{bottom:527.656342px;}
.y116{bottom:527.700555px;}
.y195{bottom:533.626500px;}
.y20{bottom:536.591083px;}
.y13c{bottom:539.158748px;}
.y88{bottom:541.099500px;}
.yca{bottom:541.120230px;}
.y87{bottom:545.584500px;}
.y165{bottom:545.591574px;}
.y115{bottom:545.635787px;}
.y194{bottom:548.574000px;}
.y1f{bottom:554.526315px;}
.y13b{bottom:557.093979px;}
.y86{bottom:557.542500px;}
.yc9{bottom:557.560407px;}
.y193{bottom:563.519898px;}
.y85{bottom:563.521500px;}
.y164{bottom:563.526805px;}
.y114{bottom:563.571018px;}
.y1e{bottom:572.461546px;}
.y84{bottom:573.984000px;}
.yc8{bottom:574.000584px;}
.y13a{bottom:575.029210px;}
.y192{bottom:578.469000px;}
.y83{bottom:581.458500px;}
.y139{bottom:581.462037px;}
.y113{bottom:581.506250px;}
.y1d{bottom:590.396778px;}
.y82{bottom:590.427000px;}
.yc7{bottom:590.440761px;}
.y191{bottom:593.416500px;}
.y81{bottom:599.395500px;}
.y138{bottom:599.397268px;}
.y112{bottom:599.441481px;}
.y80{bottom:606.868500px;}
.yc6{bottom:606.880938px;}
.y1c{bottom:608.332009px;}
.y190{bottom:608.364000px;}
.y7f{bottom:617.332500px;}
.y111{bottom:617.376713px;}
.y7e{bottom:623.311500px;}
.yc5{bottom:623.321115px;}
.y1b{bottom:626.281442px;}
.y163{bottom:631.831500px;}
.y137{bottom:633.325500px;}
.y7d{bottom:635.269500px;}
.y110{bottom:635.311944px;}
.y18f{bottom:638.259000px;}
.y7c{bottom:639.753000px;}
.yc4{bottom:639.761292px;}
.y1a{bottom:644.216673px;}
.y162{bottom:646.779000px;}
.y136{bottom:648.273000px;}
.y18e{bottom:653.204898px;}
.y7b{bottom:653.206500px;}
.y10f{bottom:653.247176px;}
.y7a{bottom:656.196000px;}
.yc3{bottom:656.201469px;}
.y161{bottom:661.726500px;}
.y19{bottom:662.166105px;}
.y135{bottom:663.220500px;}
.y18d{bottom:668.154000px;}
.y79{bottom:671.143500px;}
.y10e{bottom:671.182407px;}
.y78{bottom:672.637500px;}
.yc2{bottom:672.641646px;}
.y160{bottom:676.674000px;}
.y134{bottom:678.168000px;}
.y18{bottom:680.101337px;}
.y18c{bottom:683.101500px;}
.y77{bottom:689.080500px;}
.y76{bottom:689.081823px;}
.y10d{bottom:689.117639px;}
.y15f{bottom:691.618635px;}
.y133{bottom:693.115500px;}
.y18b{bottom:698.049000px;}
.y17{bottom:698.050769px;}
.yc1{bottom:703.579500px;}
.y75{bottom:705.522000px;}
.yc0{bottom:705.541407px;}
.y15e{bottom:706.569000px;}
.y74{bottom:707.017500px;}
.y10c{bottom:707.052870px;}
.y132{bottom:708.060135px;}
.y18a{bottom:712.996500px;}
.y16{bottom:715.986000px;}
.y15d{bottom:721.516500px;}
.y73{bottom:721.965000px;}
.ybf{bottom:721.981584px;}
.y131{bottom:723.010500px;}
.y72{bottom:724.954500px;}
.y15c{bottom:724.956268px;}
.y10b{bottom:724.988102px;}
.y189{bottom:727.944000px;}
.y130{bottom:737.958000px;}
.y71{bottom:738.406500px;}
.ybe{bottom:738.421761px;}
.y188{bottom:742.889898px;}
.y70{bottom:742.891500px;}
.y12f{bottom:742.893268px;}
.y10a{bottom:742.923333px;}
.y6f{bottom:754.849500px;}
.ybd{bottom:754.861938px;}
.y187{bottom:757.839000px;}
.y6e{bottom:760.828500px;}
.y186{bottom:760.830269px;}
.y15b{bottom:760.840879px;}
.y15{bottom:760.844340px;}
.y109{bottom:760.858565px;}
.y6d{bottom:771.291000px;}
.ybc{bottom:771.302115px;}
.y14{bottom:777.284610px;}
.y6c{bottom:778.765500px;}
.y15a{bottom:778.776111px;}
.y108{bottom:778.793796px;}
.y185{bottom:779.661000px;}
.y6b{bottom:787.734000px;}
.ybb{bottom:787.742292px;}
.y13{bottom:793.724880px;}
.y6a{bottom:796.702500px;}
.y184{bottom:796.704269px;}
.y159{bottom:796.711343px;}
.y107{bottom:796.729028px;}
.y69{bottom:804.175500px;}
.yba{bottom:804.182469px;}
.y12{bottom:810.165150px;}
.y68{bottom:814.639500px;}
.y158{bottom:814.646574px;}
.y106{bottom:814.664259px;}
.y67{bottom:820.618500px;}
.yb9{bottom:820.622646px;}
.y11{bottom:826.605420px;}
.y183{bottom:828.838500px;}
.y66{bottom:832.576500px;}
.y157{bottom:832.581805px;}
.y105{bottom:832.599491px;}
.y65{bottom:837.060000px;}
.yb8{bottom:837.062823px;}
.y10{bottom:843.045690px;}
.y182{bottom:845.281500px;}
.y64{bottom:850.513500px;}
.y181{bottom:850.515268px;}
.y156{bottom:850.517037px;}
.y104{bottom:850.534722px;}
.y63{bottom:853.503000px;}
.yb7{bottom:853.508469px;}
.y4b{bottom:855.330000px;}
.yf{bottom:859.485960px;}
.y1c3{bottom:866.229834px;}
.y62{bottom:868.450500px;}
.y155{bottom:868.452268px;}
.y103{bottom:868.469953px;}
.y61{bottom:869.944500px;}
.yb6{bottom:869.948646px;}
.y180{bottom:873.532500px;}
.ye{bottom:875.926230px;}
.y1c2{bottom:881.474283px;}
.y60{bottom:886.387500px;}
.y5f{bottom:886.388823px;}
.y102{bottom:886.405185px;}
.y154{bottom:892.216500px;}
.yd{bottom:892.366500px;}
.y1c1{bottom:896.718732px;}
.y5e{bottom:902.829000px;}
.yb5{bottom:902.837292px;}
.y5d{bottom:904.324500px;}
.y101{bottom:904.340416px;}
.y1c0{bottom:911.974540px;}
.y5c{bottom:919.272000px;}
.yb4{bottom:919.277469px;}
.y5b{bottom:922.261500px;}
.y100{bottom:922.275648px;}
.yc{bottom:928.240500px;}
.y1bf{bottom:929.309138px;}
.y5a{bottom:935.713500px;}
.yb3{bottom:935.717646px;}
.y59{bottom:940.198500px;}
.yff{bottom:940.210879px;}
.yb{bottom:943.188000px;}
.y1be{bottom:944.553587px;}
.ya{bottom:949.167000px;}
.y58{bottom:952.156500px;}
.yb2{bottom:952.157823px;}
.y9{bottom:958.135500px;}
.yfe{bottom:958.146111px;}
.y1bd{bottom:959.798035px;}
.y8{bottom:967.104000px;}
.y57{bottom:968.598000px;}
.yb1{bottom:968.602146px;}
.y7{bottom:973.083000px;}
.y1bc{bottom:975.042485px;}
.y56{bottom:976.072500px;}
.yfd{bottom:976.081343px;}
.y6{bottom:985.041000px;}
.yb0{bottom:985.042323px;}
.y5{bottom:988.029000px;}
.y1bb{bottom:992.377082px;}
.y55{bottom:994.009500px;}
.yfc{bottom:994.016574px;}
.y54{bottom:1001.482500px;}
.yaf{bottom:1001.486646px;}
.y4{bottom:1002.976500px;}
.y1ba{bottom:1007.621531px;}
.y53{bottom:1011.946500px;}
.yfb{bottom:1011.951806px;}
.y52{bottom:1017.925500px;}
.yae{bottom:1017.926823px;}
.y1b9{bottom:1022.865980px;}
.y51{bottom:1029.883500px;}
.yfa{bottom:1029.887037px;}
.y50{bottom:1034.367000px;}
.yad{bottom:1034.369823px;}
.y1b8{bottom:1038.258102px;}
.y3{bottom:1038.849010px;}
.y4f{bottom:1047.820500px;}
.yf9{bottom:1047.822269px;}
.yac{bottom:1048.866000px;}
.y4e{bottom:1050.810000px;}
.yab{bottom:1050.811323px;}
.y1b7{bottom:1053.502551px;}
.y1b6{bottom:1054.104605px;}
.y2{bottom:1062.768000px;}
.y4d{bottom:1065.757500px;}
.y4c{bottom:1067.251500px;}
.y1b5{bottom:1068.747000px;}
.y153{bottom:1071.586500px;}
.y1{bottom:1112.094000px;}
.h14{height:15.897312px;}
.h11{height:20.348796px;}
.he{height:24.048336px;}
.hd{height:31.686943px;}
.h12{height:33.447656px;}
.hb{height:34.945312px;}
.h5{height:35.980560px;}
.h9{height:41.079375px;}
.h8{height:42.183000px;}
.h7{height:44.594912px;}
.h13{height:45.792984px;}
.h4{height:46.921137px;}
.h1{height:46.944492px;}
.h10{height:50.465918px;}
.hf{height:51.821719px;}
.hc{height:52.815498px;}
.h6{height:55.748057px;}
.h3{height:57.245766px;}
.ha{height:59.852461px;}
.h2{height:84.359953px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:86.547000px;}
.xd{left:87.741000px;}
.xc{left:97.888500px;}
.xa{left:100.723500px;}
.x2e{left:104.140036px;}
.x46{left:118.321680px;}
.x47{left:119.535060px;}
.x13{left:152.314500px;}
.x14{left:160.521000px;}
.x1b{left:165.250500px;}
.xf{left:166.297500px;}
.x17{left:171.912000px;}
.x12{left:177.789000px;}
.x2c{left:178.920000px;}
.x18{left:180.118500px;}
.x2d{left:187.219500px;}
.x9{left:189.508500px;}
.x8{left:202.192500px;}
.x42{left:209.107500px;}
.x43{left:216.867000px;}
.x2a{left:247.632000px;}
.x2b{left:255.931500px;}
.x3d{left:313.404000px;}
.x28{left:319.005000px;}
.x29{left:323.332500px;}
.x3e{left:325.042500px;}
.x3b{left:371.514000px;}
.x3c{left:380.914500px;}
.x15{left:424.723500px;}
.x16{left:433.021500px;}
.xb{left:471.552387px;}
.x3f{left:477.205500px;}
.x4{left:482.875500px;}
.xe{left:485.710500px;}
.x3{left:499.440150px;}
.x41{left:503.319000px;}
.x40{left:504.512220px;}
.x26{left:506.598000px;}
.x2{left:511.974000px;}
.x5{left:515.256000px;}
.x21{left:516.450000px;}
.x27{left:519.553500px;}
.x22{left:524.749500px;}
.x31{left:535.275000px;}
.x32{left:546.864000px;}
.x6{left:558.829500px;}
.x33{left:560.670000px;}
.x34{left:577.156500px;}
.x30{left:585.987000px;}
.x1d{left:600.012000px;}
.x1e{left:608.311500px;}
.x35{left:610.852500px;}
.x36{left:615.477000px;}
.x37{left:639.313500px;}
.x38{left:643.939500px;}
.x19{left:660.745500px;}
.x2f{left:665.223000px;}
.x1a{left:670.444500px;}
.x1f{left:673.020000px;}
.x1c{left:679.029000px;}
.x20{left:681.319500px;}
.x39{left:686.001000px;}
.x3a{left:696.892500px;}
.x7{left:704.007294px;}
.x25{left:718.681500px;}
.x23{left:744.243000px;}
.x24{left:752.541000px;}
.x44{left:765.274500px;}
.x45{left:775.863000px;}
.x11{left:811.756500px;}
.x10{left:884.745000px;}
@media print{
.ve{vertical-align:-49.961605pt;}
.vf{vertical-align:-47.820971pt;}
.v10{vertical-align:-45.155275pt;}
.v11{vertical-align:-43.055029pt;}
.v12{vertical-align:-40.914395pt;}
.v13{vertical-align:-31.342123pt;}
.v14{vertical-align:-29.241877pt;}
.v15{vertical-align:-27.101243pt;}
.v16{vertical-align:-24.960608pt;}
.v17{vertical-align:-15.428725pt;}
.vd{vertical-align:-14.339349pt;}
.vc{vertical-align:-13.279045pt;}
.vb{vertical-align:-12.218741pt;}
.va{vertical-align:-11.158437pt;}
.v9{vertical-align:-10.098133pt;}
.v8{vertical-align:-8.482432pt;}
.v7{vertical-align:-7.422128pt;}
.v6{vertical-align:-6.361824pt;}
.v5{vertical-align:-5.301520pt;}
.v4{vertical-align:-4.241216pt;}
.v3{vertical-align:-3.180912pt;}
.v2{vertical-align:-2.120608pt;}
.v1{vertical-align:-1.060304pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.333227pt;}
.ls29{letter-spacing:0.504907pt;}
.ls6{letter-spacing:0.526181pt;}
.ls28{letter-spacing:0.555397pt;}
.ls2a{letter-spacing:4.240880pt;}
.ls16{letter-spacing:9.047211pt;}
.ls23{letter-spacing:9.552693pt;}
.ls1e{letter-spacing:10.098133pt;}
.ls7{letter-spacing:10.619296pt;}
.ls17{letter-spacing:12.203680pt;}
.lsf{letter-spacing:12.218741pt;}
.ls0{letter-spacing:12.240555pt;}
.ls18{letter-spacing:12.752160pt;}
.ls26{letter-spacing:13.086720pt;}
.ls24{letter-spacing:13.300640pt;}
.ls27{letter-spacing:13.389653pt;}
.ls4{letter-spacing:13.824219pt;}
.ls12{letter-spacing:14.339349pt;}
.ls5{letter-spacing:14.876581pt;}
.ls1d{letter-spacing:14.894747pt;}
.ls1c{letter-spacing:15.403147pt;}
.ls8{letter-spacing:15.928944pt;}
.ls22{letter-spacing:15.951627pt;}
.ls14{letter-spacing:15.953787pt;}
.ls21{letter-spacing:16.454400pt;}
.ls1b{letter-spacing:17.002880pt;}
.lse{letter-spacing:17.015355pt;}
.lsc{letter-spacing:17.520261pt;}
.ls25{letter-spacing:17.551360pt;}
.ls3{letter-spacing:17.555323pt;}
.ls15{letter-spacing:18.054032pt;}
.lsd{letter-spacing:18.075659pt;}
.ls2{letter-spacing:18.081504pt;}
.ls10{letter-spacing:19.135963pt;}
.ls9{letter-spacing:20.186229pt;}
.lsa{letter-spacing:20.196267pt;}
.lsb{letter-spacing:20.701173pt;}
.ls11{letter-spacing:21.256571pt;}
.ls19{letter-spacing:21.802080pt;}
.ls13{letter-spacing:21.811968pt;}
.ls1a{letter-spacing:22.304853pt;}
.ls1f{letter-spacing:22.316875pt;}
.ls20{letter-spacing:22.872272pt;}
.ls2c{letter-spacing:95.197659pt;}
.ls2d{letter-spacing:208.691685pt;}
.ws7b{word-spacing:-34.939541pt;}
.ws7a{word-spacing:-34.434635pt;}
.ws4f{word-spacing:-32.144896pt;}
.ws95{word-spacing:-14.338213pt;}
.ws5f{word-spacing:-12.622667pt;}
.ws83{word-spacing:-10.097333pt;}
.ws2b{word-spacing:-9.301333pt;}
.ws96{word-spacing:-2.575024pt;}
.ws1a{word-spacing:-2.524533pt;}
.ws41{word-spacing:-2.391733pt;}
.ws61{word-spacing:-2.019627pt;}
.ws5d{word-spacing:-1.969136pt;}
.ws79{word-spacing:-1.873973pt;}
.ws33{word-spacing:-1.865552pt;}
.ws24{word-spacing:-1.575184pt;}
.ws98{word-spacing:-1.514720pt;}
.ws1c{word-spacing:-1.464229pt;}
.ws2e{word-spacing:-1.339371pt;}
.ws28{word-spacing:-1.050123pt;}
.ws21{word-spacing:-0.908832pt;}
.ws4c{word-spacing:-0.813189pt;}
.ws3{word-spacing:-0.677600pt;}
.ws93{word-spacing:-0.525061pt;}
.ws15{word-spacing:-0.403925pt;}
.ws49{word-spacing:-0.287008pt;}
.ws63{word-spacing:-0.274240pt;}
.ws52{word-spacing:-0.239173pt;}
.ws4{word-spacing:-0.135520pt;}
.ws2d{word-spacing:0.000000pt;}
.ws84{word-spacing:0.100981pt;}
.ws1{word-spacing:0.151472pt;}
.ws34{word-spacing:0.287008pt;}
.wsc{word-spacing:0.656379pt;}
.ws71{word-spacing:0.777013pt;}
.ws42{word-spacing:0.813189pt;}
.ws5{word-spacing:0.948640pt;}
.ws29{word-spacing:1.050123pt;}
.ws99{word-spacing:1.161285pt;}
.ws19{word-spacing:1.211776pt;}
.ws70{word-spacing:1.325493pt;}
.ws36{word-spacing:1.339371pt;}
.ws23{word-spacing:1.575184pt;}
.ws1b{word-spacing:1.716683pt;}
.ws4a{word-spacing:1.865552pt;}
.ws7e{word-spacing:1.873973pt;}
.ws87{word-spacing:2.140635pt;}
.ws8b{word-spacing:2.221589pt;}
.ws12{word-spacing:2.272080pt;}
.ws62{word-spacing:2.376747pt;}
.ws30{word-spacing:2.391733pt;}
.ws8d{word-spacing:2.665696pt;}
.ws85{word-spacing:2.726496pt;}
.wsd{word-spacing:2.776987pt;}
.ws8c{word-spacing:2.827477pt;}
.ws4b{word-spacing:2.917915pt;}
.ws2a{word-spacing:2.939221pt;}
.ws20{word-spacing:3.190757pt;}
.ws88{word-spacing:3.281893pt;}
.ws3a{word-spacing:3.332384pt;}
.ws47{word-spacing:3.444096pt;}
.wsa{word-spacing:3.568693pt;}
.ws2{word-spacing:3.699008pt;}
.ws25{word-spacing:3.715819pt;}
.ws13{word-spacing:3.837291pt;}
.ws3b{word-spacing:3.970277pt;}
.ws64{word-spacing:3.976480pt;}
.ws9{word-spacing:4.110773pt;}
.ws22{word-spacing:4.240880pt;}
.ws8f{word-spacing:4.342197pt;}
.ws14{word-spacing:4.392688pt;}
.ws45{word-spacing:4.496459pt;}
.ws77{word-spacing:4.524960pt;}
.ws54{word-spacing:4.544293pt;}
.ws2c{word-spacing:4.716096pt;}
.ws1d{word-spacing:4.897595pt;}
.ws94{word-spacing:4.948085pt;}
.ws78{word-spacing:5.027733pt;}
.ws3f{word-spacing:5.070475pt;}
.ws9b{word-spacing:5.331392pt;}
.ws89{word-spacing:5.402501pt;}
.ws2f{word-spacing:5.452992pt;}
.ws74{word-spacing:5.576213pt;}
.ws35{word-spacing:5.596656pt;}
.ws26{word-spacing:5.856453pt;}
.ws86{word-spacing:5.907408pt;}
.ws10{word-spacing:5.957899pt;}
.ws90{word-spacing:6.008389pt;}
.ws3d{word-spacing:6.122837pt;}
.ws80{word-spacing:6.124693pt;}
.wsa3{word-spacing:6.381515pt;}
.ws0{word-spacing:6.398859pt;}
.ws16{word-spacing:6.513296pt;}
.ws76{word-spacing:6.627467pt;}
.ws3c{word-spacing:6.649019pt;}
.ws9c{word-spacing:6.906576pt;}
.ws8a{word-spacing:6.967712pt;}
.wse{word-spacing:7.018203pt;}
.ws8e{word-spacing:7.119184pt;}
.ws43{word-spacing:7.175200pt;}
.ws7{word-spacing:7.318080pt;}
.ws27{word-spacing:7.431637pt;}
.wsb{word-spacing:7.573600pt;}
.ws44{word-spacing:7.701381pt;}
.ws6b{word-spacing:7.956699pt;}
.ws5b{word-spacing:8.078507pt;}
.ws75{word-spacing:8.128997pt;}
.ws50{word-spacing:8.227563pt;}
.ws6{word-spacing:8.357067pt;}
.ws92{word-spacing:8.583413pt;}
.ws1e{word-spacing:8.633904pt;}
.ws32{word-spacing:8.753744pt;}
.ws6f{word-spacing:8.775680pt;}
.ws6a{word-spacing:9.047211pt;}
.ws9a{word-spacing:9.138811pt;}
.ws3e{word-spacing:9.189301pt;}
.ws7d{word-spacing:9.278453pt;}
.ws53{word-spacing:9.327760pt;}
.ws8{word-spacing:9.441227pt;}
.ws9d{word-spacing:9.572272pt;}
.ws40{word-spacing:9.694208pt;}
.ws7f{word-spacing:9.826933pt;}
.ws39{word-spacing:9.853941pt;}
.ws17{word-spacing:10.249605pt;}
.ws73{word-spacing:10.375413pt;}
.ws59{word-spacing:10.380123pt;}
.wsa1{word-spacing:10.622395pt;}
.ws18{word-spacing:10.754512pt;}
.ws72{word-spacing:10.878187pt;}
.ws31{word-spacing:10.906304pt;}
.wsf{word-spacing:11.309909pt;}
.ws6c{word-spacing:11.426667pt;}
.ws37{word-spacing:11.432485pt;}
.ws1f{word-spacing:11.814816pt;}
.ws4e{word-spacing:11.958667pt;}
.ws91{word-spacing:12.237968pt;}
.ws97{word-spacing:12.319723pt;}
.ws11{word-spacing:12.370213pt;}
.ws48{word-spacing:12.484848pt;}
.ws38{word-spacing:12.875120pt;}
.ws6d{word-spacing:13.026400pt;}
.ws9e{word-spacing:13.288091pt;}
.ws81{word-spacing:13.430517pt;}
.ws7c{word-spacing:13.529173pt;}
.ws57{word-spacing:13.537211pt;}
.ws5e{word-spacing:13.935424pt;}
.ws60{word-spacing:14.490821pt;}
.ws51{word-spacing:14.637408pt;}
.ws58{word-spacing:14.995728pt;}
.ws6e{word-spacing:15.128907pt;}
.ws5a{word-spacing:15.551125pt;}
.ws82{word-spacing:16.056032pt;}
.ws55{word-spacing:16.742133pt;}
.ws5c{word-spacing:17.671733pt;}
.ws69{word-spacing:18.227131pt;}
.ws68{word-spacing:24.588955pt;}
.ws46{word-spacing:35.876000pt;}
.ws56{word-spacing:37.868000pt;}
.ws65{word-spacing:54.525600pt;}
.ws67{word-spacing:55.252608pt;}
.ws66{word-spacing:60.382053pt;}
.ws4d{word-spacing:84.045509pt;}
.wsa0{word-spacing:876.367755pt;}
.wsa2{word-spacing:980.410677pt;}
.wsa4{word-spacing:1145.199157pt;}
.ws9f{word-spacing:1232.965179pt;}
._2b{margin-left:-2647.596379pt;}
._17{margin-left:-2646.704000pt;}
._35{margin-left:-2645.754325pt;}
._26{margin-left:-2642.223883pt;}
._25{margin-left:-2599.728277pt;}
._34{margin-left:-2595.371739pt;}
._38{margin-left:-2564.824885pt;}
._2f{margin-left:-2305.581232pt;}
._4f{margin-left:-2147.670997pt;}
._50{margin-left:-2022.605616pt;}
._36{margin-left:-1732.183301pt;}
._2c{margin-left:-1723.320533pt;}
._32{margin-left:-1515.628832pt;}
._4c{margin-left:-22.821781pt;}
._4b{margin-left:-21.811968pt;}
._22{margin-left:-19.549045pt;}
._51{margin-left:-4.240880pt;}
._29{margin-left:-0.975696pt;}
._28{width:0.968155pt;}
._15{width:3.720533pt;}
._3{width:4.788373pt;}
._c{width:5.814667pt;}
._12{width:7.391248pt;}
._23{width:9.128533pt;}
._2{width:10.073653pt;}
._1{width:11.699893pt;}
._4{width:13.235787pt;}
._e{width:14.844256pt;}
._b{width:15.904560pt;}
._0{width:17.015355pt;}
._8{width:18.631056pt;}
._6{width:19.695573pt;}
._5{width:20.734560pt;}
._d{width:21.761477pt;}
._1a{width:22.821781pt;}
._13{width:23.882085pt;}
._9{width:24.823483pt;}
._a{width:26.002693pt;}
._27{width:27.638624pt;}
._30{width:28.729189pt;}
._2d{width:29.753163pt;}
._4e{width:32.715797pt;}
._1f{width:33.619403pt;}
._14{width:37.205333pt;}
._4a{width:40.389333pt;}
._3a{width:45.706667pt;}
._19{width:47.308485pt;}
._2e{width:48.432053pt;}
._31{width:50.440176pt;}
._48{width:65.349941pt;}
._3e{width:79.041925pt;}
._47{width:85.337339pt;}
._3c{width:92.612741pt;}
._1b{width:94.713733pt;}
._7{width:95.849211pt;}
._10{width:96.790608pt;}
._3f{width:97.782576pt;}
._45{width:100.973333pt;}
._44{width:103.448997pt;}
._3d{width:105.900832pt;}
._41{width:106.829787pt;}
._16{width:108.732213pt;}
._49{width:115.888912pt;}
._42{width:121.168000pt;}
._43{width:125.865077pt;}
._37{width:139.253259pt;}
._1d{width:143.289291pt;}
._39{width:145.413120pt;}
._11{width:146.314720pt;}
._40{width:150.623739pt;}
._53{width:208.341195pt;}
._52{width:209.699131pt;}
._46{width:222.343280pt;}
._1c{width:259.359563pt;}
._33{width:307.084235pt;}
._1e{width:331.159397pt;}
._3b{width:342.299600pt;}
._18{width:561.845035pt;}
._24{width:575.403205pt;}
._f{width:654.661984pt;}
._21{width:825.644096pt;}
._4d{width:898.582395pt;}
._2a{width:1101.584539pt;}
._20{width:1134.702592pt;}
.fse{font-size:24.448000pt;}
.fs9{font-size:28.698667pt;}
.fsd{font-size:30.293333pt;}
.fs5{font-size:37.205333pt;}
.fs4{font-size:40.389333pt;}
.fsc{font-size:40.922667pt;}
.fs0{font-size:42.517333pt;}
.fs7{font-size:42.666667pt;}
.fs3{font-size:45.173333pt;}
.fsb{font-size:45.706667pt;}
.fs8{font-size:47.834667pt;}
.fsa{font-size:48.362667pt;}
.fs2{font-size:50.490667pt;}
.fs6{font-size:54.208000pt;}
.fs1{font-size:74.405333pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:50.489333pt;}
.y48{bottom:102.304576pt;}
.y1b4{bottom:102.305243pt;}
.y152{bottom:102.305453pt;}
.y49{bottom:102.306667pt;}
.yf7{bottom:102.307388pt;}
.yf8{bottom:102.308000pt;}
.y12e{bottom:102.310091pt;}
.y17f{bottom:102.311144pt;}
.yaa{bottom:102.312861pt;}
.y47{bottom:112.936000pt;}
.y12d{bottom:114.265333pt;}
.y1b3{bottom:115.593333pt;}
.y151{bottom:115.594667pt;}
.yf6{bottom:116.789333pt;}
.ya9{bottom:116.926352pt;}
.yf5{bottom:118.252000pt;}
.y17e{bottom:118.253572pt;}
.y46{bottom:118.517333pt;}
.y45{bottom:123.565333pt;}
.y12c{bottom:126.224000pt;}
.y150{bottom:128.881333pt;}
.yf4{bottom:131.272000pt;}
.ya8{bottom:131.539843pt;}
.yf3{bottom:134.196000pt;}
.y17c{bottom:134.203860pt;}
.y44{bottom:134.726667pt;}
.y12b{bottom:138.181333pt;}
.y17d{bottom:139.377333pt;}
.y43{bottom:140.838667pt;}
.y14f{bottom:142.168000pt;}
.yf2{bottom:145.754667pt;}
.ya7{bottom:146.153333pt;}
.ya5{bottom:146.155843pt;}
.yf1{bottom:150.140000pt;}
.y12a{bottom:150.142091pt;}
.y17b{bottom:150.146288pt;}
.y42{bottom:150.936000pt;}
.ya6{bottom:151.069333pt;}
.y41{bottom:152.799424pt;}
.y14e{bottom:155.452120pt;}
.y1b2{bottom:155.454667pt;}
.yf0{bottom:160.237333pt;}
.ya3{bottom:160.758551pt;}
.ya4{bottom:160.769333pt;}
.y129{bottom:162.097333pt;}
.y40{bottom:164.754667pt;}
.yef{bottom:166.084000pt;}
.y17a{bottom:166.088716pt;}
.y3f{bottom:167.146667pt;}
.y14d{bottom:168.741333pt;}
.y128{bottom:174.056000pt;}
.yee{bottom:174.720000pt;}
.ya0{bottom:175.381921pt;}
.ya2{bottom:175.384000pt;}
.y3e{bottom:176.713333pt;}
.ya1{bottom:180.300000pt;}
.y1b1{bottom:182.026576pt;}
.yed{bottom:182.028000pt;}
.y179{bottom:182.031144pt;}
.y3d{bottom:183.356000pt;}
.y3c{bottom:188.670667pt;}
.yec{bottom:189.202667pt;}
.y9f{bottom:190.007371pt;}
.y1b0{bottom:195.314667pt;}
.yeb{bottom:197.972000pt;}
.y178{bottom:197.973572pt;}
.y127{bottom:199.298576pt;}
.y3b{bottom:199.698667pt;}
.y3a{bottom:200.631424pt;}
.yea{bottom:203.684000pt;}
.y9e{bottom:204.620861pt;}
.y1af{bottom:208.601333pt;}
.y39{bottom:212.586667pt;}
.ye9{bottom:213.916000pt;}
.y176{bottom:213.949012pt;}
.y38{bottom:215.908000pt;}
.ye8{bottom:218.166667pt;}
.y177{bottom:219.097333pt;}
.y9d{bottom:219.234352pt;}
.y1ad{bottom:221.888000pt;}
.y14c{bottom:224.173372pt;}
.y37{bottom:224.544000pt;}
.y126{bottom:225.873333pt;}
.y1ae{bottom:226.138667pt;}
.ye7{bottom:229.860000pt;}
.y175{bottom:229.891440pt;}
.y36{bottom:232.118667pt;}
.ye6{bottom:232.649333pt;}
.y9c{bottom:233.847843pt;}
.y1ac{bottom:235.174667pt;}
.y35{bottom:236.502667pt;}
.y125{bottom:239.160000pt;}
.y14b{bottom:240.115800pt;}
.ye5{bottom:245.804000pt;}
.y174{bottom:245.833868pt;}
.y9a{bottom:246.733333pt;}
.ye4{bottom:247.132000pt;}
.y34{bottom:248.328000pt;}
.y9b{bottom:248.461333pt;}
.y33{bottom:248.463424pt;}
.y99{bottom:248.484033pt;}
.y124{bottom:252.446667pt;}
.y14a{bottom:256.058228pt;}
.y32{bottom:260.418667pt;}
.y1ab{bottom:261.746576pt;}
.ye3{bottom:261.748000pt;}
.ye2{bottom:261.749176pt;}
.y173{bottom:261.776296pt;}
.y98{bottom:263.097524pt;}
.y31{bottom:264.537333pt;}
.y149{bottom:272.000656pt;}
.y30{bottom:272.376000pt;}
.y1aa{bottom:275.034667pt;}
.ye1{bottom:276.362667pt;}
.ye0{bottom:277.692000pt;}
.y97{bottom:277.711015pt;}
.y172{bottom:277.718724pt;}
.y123{bottom:279.018576pt;}
.y2f{bottom:280.746667pt;}
.y2e{bottom:284.336757pt;}
.y148{bottom:287.943084pt;}
.y1a9{bottom:288.321333pt;}
.ydf{bottom:290.978667pt;}
.y122{bottom:292.306667pt;}
.y96{bottom:292.324505pt;}
.yde{bottom:293.636000pt;}
.y121{bottom:293.637572pt;}
.y171{bottom:293.661152pt;}
.y2d{bottom:296.292000pt;}
.y2c{bottom:296.957333pt;}
.y1a8{bottom:301.608000pt;}
.y147{bottom:303.885512pt;}
.ydd{bottom:305.593333pt;}
.y95{bottom:306.937996pt;}
.y2b{bottom:308.250667pt;}
.ydc{bottom:309.580000pt;}
.y170{bottom:309.603580pt;}
.y2a{bottom:313.168496pt;}
.y1a7{bottom:314.894667pt;}
.y120{bottom:318.880000pt;}
.y146{bottom:319.827940pt;}
.ydb{bottom:320.209333pt;}
.y94{bottom:321.551487pt;}
.yda{bottom:325.524000pt;}
.y16f{bottom:325.546008pt;}
.y1a6{bottom:328.181333pt;}
.y29{bottom:329.376000pt;}
.yd9{bottom:334.824000pt;}
.y145{bottom:335.770368pt;}
.y93{bottom:336.164977pt;}
.y1a5{bottom:341.466576pt;}
.yd8{bottom:341.468000pt;}
.y16e{bottom:341.488436pt;}
.y11f{bottom:345.453333pt;}
.y28{bottom:345.580515pt;}
.yd7{bottom:349.440000pt;}
.y92{bottom:350.778468pt;}
.y144{bottom:351.712796pt;}
.y1a4{bottom:354.754667pt;}
.yd6{bottom:357.412000pt;}
.y16d{bottom:357.430864pt;}
.y11e{bottom:358.737453pt;}
.yd5{bottom:364.057176pt;}
.y27{bottom:365.372856pt;}
.y91{bottom:365.391959pt;}
.y143{bottom:367.655224pt;}
.y1a3{bottom:368.041333pt;}
.y11d{bottom:372.026667pt;}
.y1a2{bottom:373.356000pt;}
.y16c{bottom:373.373292pt;}
.y11c{bottom:373.412592pt;}
.yd4{bottom:378.670667pt;}
.y90{bottom:380.005449pt;}
.y26{bottom:381.315284pt;}
.y1a1{bottom:381.328000pt;}
.y142{bottom:383.597652pt;}
.yd3{bottom:385.313333pt;}
.y19f{bottom:389.300000pt;}
.y16b{bottom:389.315720pt;}
.y11b{bottom:389.355020pt;}
.yd2{bottom:393.287843pt;}
.y1a0{bottom:394.481333pt;}
.y19e{bottom:394.614667pt;}
.y8f{bottom:394.618940pt;}
.y25{bottom:397.257712pt;}
.y141{bottom:399.540080pt;}
.y19d{bottom:405.244000pt;}
.y16a{bottom:405.258148pt;}
.y11a{bottom:405.297448pt;}
.yd0{bottom:406.173333pt;}
.yd1{bottom:407.901333pt;}
.ycf{bottom:407.905019pt;}
.y8e{bottom:409.232431pt;}
.y24{bottom:413.200140pt;}
.y140{bottom:415.482508pt;}
.y19b{bottom:421.186576pt;}
.y19c{bottom:421.188000pt;}
.y169{bottom:421.200576pt;}
.y119{bottom:421.239876pt;}
.yce{bottom:422.518509pt;}
.y8d{bottom:423.845921pt;}
.y23{bottom:429.142568pt;}
.y13f{bottom:431.424936pt;}
.y19a{bottom:434.474667pt;}
.y8c{bottom:437.132000pt;}
.y168{bottom:437.143004pt;}
.ycd{bottom:437.155288pt;}
.y118{bottom:437.182304pt;}
.y22{bottom:445.084996pt;}
.y8b{bottom:446.964000pt;}
.y13e{bottom:447.367364pt;}
.y199{bottom:447.761333pt;}
.y8a{bottom:451.750352pt;}
.ycc{bottom:451.768779pt;}
.y198{bottom:453.076000pt;}
.y167{bottom:453.085432pt;}
.y117{bottom:453.124732pt;}
.y21{bottom:461.027424pt;}
.y197{bottom:461.048000pt;}
.y13d{bottom:463.309792pt;}
.y89{bottom:466.363843pt;}
.ycb{bottom:466.382269pt;}
.y196{bottom:469.020000pt;}
.y166{bottom:469.027860pt;}
.y116{bottom:469.067160pt;}
.y195{bottom:474.334667pt;}
.y20{bottom:476.969852pt;}
.y13c{bottom:479.252220pt;}
.y88{bottom:480.977333pt;}
.yca{bottom:480.995760pt;}
.y87{bottom:484.964000pt;}
.y165{bottom:484.970288pt;}
.y115{bottom:485.009588pt;}
.y194{bottom:487.621333pt;}
.y1f{bottom:492.912280pt;}
.y13b{bottom:495.194648pt;}
.y86{bottom:495.593333pt;}
.yc9{bottom:495.609251pt;}
.y193{bottom:500.906576pt;}
.y85{bottom:500.908000pt;}
.y164{bottom:500.912716pt;}
.y114{bottom:500.952016pt;}
.y1e{bottom:508.854708pt;}
.y84{bottom:510.208000pt;}
.yc8{bottom:510.222741pt;}
.y13a{bottom:511.137076pt;}
.y192{bottom:514.194667pt;}
.y83{bottom:516.852000pt;}
.y139{bottom:516.855144pt;}
.y113{bottom:516.894444pt;}
.y1d{bottom:524.797136pt;}
.y82{bottom:524.824000pt;}
.yc7{bottom:524.836232pt;}
.y191{bottom:527.481333pt;}
.y81{bottom:532.796000pt;}
.y138{bottom:532.797572pt;}
.y112{bottom:532.836872pt;}
.y80{bottom:539.438667pt;}
.yc6{bottom:539.449723pt;}
.y1c{bottom:540.739564pt;}
.y190{bottom:540.768000pt;}
.y7f{bottom:548.740000pt;}
.y111{bottom:548.779300pt;}
.y7e{bottom:554.054667pt;}
.yc5{bottom:554.063213pt;}
.y1b{bottom:556.694615pt;}
.y163{bottom:561.628000pt;}
.y137{bottom:562.956000pt;}
.y7d{bottom:564.684000pt;}
.y110{bottom:564.721728pt;}
.y18f{bottom:567.341333pt;}
.y7c{bottom:568.669333pt;}
.yc4{bottom:568.676704pt;}
.y1a{bottom:572.637043pt;}
.y162{bottom:574.914667pt;}
.y136{bottom:576.242667pt;}
.y18e{bottom:580.626576pt;}
.y7b{bottom:580.628000pt;}
.y10f{bottom:580.664156pt;}
.y7a{bottom:583.285333pt;}
.yc3{bottom:583.290195pt;}
.y161{bottom:588.201333pt;}
.y19{bottom:588.592093pt;}
.y135{bottom:589.529333pt;}
.y18d{bottom:593.914667pt;}
.y79{bottom:596.572000pt;}
.y10e{bottom:596.606584pt;}
.y78{bottom:597.900000pt;}
.yc2{bottom:597.903685pt;}
.y160{bottom:601.488000pt;}
.y134{bottom:602.816000pt;}
.y18{bottom:604.534521pt;}
.y18c{bottom:607.201333pt;}
.y77{bottom:612.516000pt;}
.y76{bottom:612.517176pt;}
.y10d{bottom:612.549012pt;}
.y15f{bottom:614.772120pt;}
.y133{bottom:616.102667pt;}
.y18b{bottom:620.488000pt;}
.y17{bottom:620.489572pt;}
.yc1{bottom:625.404000pt;}
.y75{bottom:627.130667pt;}
.yc0{bottom:627.147917pt;}
.y15e{bottom:628.061333pt;}
.y74{bottom:628.460000pt;}
.y10c{bottom:628.491440pt;}
.y132{bottom:629.386787pt;}
.y18a{bottom:633.774667pt;}
.y16{bottom:636.432000pt;}
.y15d{bottom:641.348000pt;}
.y73{bottom:641.746667pt;}
.ybf{bottom:641.761408pt;}
.y131{bottom:642.676000pt;}
.y72{bottom:644.404000pt;}
.y15c{bottom:644.405572pt;}
.y10b{bottom:644.433868pt;}
.y189{bottom:647.061333pt;}
.y130{bottom:655.962667pt;}
.y71{bottom:656.361333pt;}
.ybe{bottom:656.374899pt;}
.y188{bottom:660.346576pt;}
.y70{bottom:660.348000pt;}
.y12f{bottom:660.349572pt;}
.y10a{bottom:660.376296pt;}
.y6f{bottom:670.977333pt;}
.ybd{bottom:670.988389pt;}
.y187{bottom:673.634667pt;}
.y6e{bottom:676.292000pt;}
.y186{bottom:676.293572pt;}
.y15b{bottom:676.303004pt;}
.y15{bottom:676.306080pt;}
.y109{bottom:676.318724pt;}
.y6d{bottom:685.592000pt;}
.ybc{bottom:685.601880pt;}
.y14{bottom:690.919653pt;}
.y6c{bottom:692.236000pt;}
.y15a{bottom:692.245432pt;}
.y108{bottom:692.261152pt;}
.y185{bottom:693.032000pt;}
.y6b{bottom:700.208000pt;}
.ybb{bottom:700.215371pt;}
.y13{bottom:705.533227pt;}
.y6a{bottom:708.180000pt;}
.y184{bottom:708.181572pt;}
.y159{bottom:708.187860pt;}
.y107{bottom:708.203580pt;}
.y69{bottom:714.822667pt;}
.yba{bottom:714.828861pt;}
.y12{bottom:720.146800pt;}
.y68{bottom:724.124000pt;}
.y158{bottom:724.130288pt;}
.y106{bottom:724.146008pt;}
.y67{bottom:729.438667pt;}
.yb9{bottom:729.442352pt;}
.y11{bottom:734.760373pt;}
.y183{bottom:736.745333pt;}
.y66{bottom:740.068000pt;}
.y157{bottom:740.072716pt;}
.y105{bottom:740.088436pt;}
.y65{bottom:744.053333pt;}
.yb8{bottom:744.055843pt;}
.y10{bottom:749.373947pt;}
.y182{bottom:751.361333pt;}
.y64{bottom:756.012000pt;}
.y181{bottom:756.013572pt;}
.y156{bottom:756.015144pt;}
.y104{bottom:756.030864pt;}
.y63{bottom:758.669333pt;}
.yb7{bottom:758.674195pt;}
.y4b{bottom:760.293333pt;}
.yf{bottom:763.987520pt;}
.y1c3{bottom:769.982075pt;}
.y62{bottom:771.956000pt;}
.y155{bottom:771.957572pt;}
.y103{bottom:771.973292pt;}
.y61{bottom:773.284000pt;}
.yb6{bottom:773.287685pt;}
.y180{bottom:776.473333pt;}
.ye{bottom:778.601093pt;}
.y1c2{bottom:783.532696pt;}
.y60{bottom:787.900000pt;}
.y5f{bottom:787.901176pt;}
.y102{bottom:787.915720pt;}
.y154{bottom:793.081333pt;}
.yd{bottom:793.214667pt;}
.y1c1{bottom:797.083317pt;}
.y5e{bottom:802.514667pt;}
.yb5{bottom:802.522037pt;}
.y5d{bottom:803.844000pt;}
.y101{bottom:803.858148pt;}
.y1c0{bottom:810.644036pt;}
.y5c{bottom:817.130667pt;}
.yb4{bottom:817.135528pt;}
.y5b{bottom:819.788000pt;}
.y100{bottom:819.800576pt;}
.yc{bottom:825.102667pt;}
.y1bf{bottom:826.052567pt;}
.y5a{bottom:831.745333pt;}
.yb3{bottom:831.749019pt;}
.y59{bottom:835.732000pt;}
.yff{bottom:835.743004pt;}
.yb{bottom:838.389333pt;}
.y1be{bottom:839.603188pt;}
.ya{bottom:843.704000pt;}
.y58{bottom:846.361333pt;}
.yb2{bottom:846.362509pt;}
.y9{bottom:851.676000pt;}
.yfe{bottom:851.685432pt;}
.y1bd{bottom:853.153809pt;}
.y8{bottom:859.648000pt;}
.y57{bottom:860.976000pt;}
.yb1{bottom:860.979685pt;}
.y7{bottom:864.962667pt;}
.y1bc{bottom:866.704431pt;}
.y56{bottom:867.620000pt;}
.yfd{bottom:867.627860pt;}
.y6{bottom:875.592000pt;}
.yb0{bottom:875.593176pt;}
.y5{bottom:878.248000pt;}
.y1bb{bottom:882.112961pt;}
.y55{bottom:883.564000pt;}
.yfc{bottom:883.570288pt;}
.y54{bottom:890.206667pt;}
.yaf{bottom:890.210352pt;}
.y4{bottom:891.534667pt;}
.y1ba{bottom:895.663583pt;}
.y53{bottom:899.508000pt;}
.yfb{bottom:899.512716pt;}
.y52{bottom:904.822667pt;}
.yae{bottom:904.823843pt;}
.y1b9{bottom:909.214204pt;}
.y51{bottom:915.452000pt;}
.yfa{bottom:915.455144pt;}
.y50{bottom:919.437333pt;}
.yad{bottom:919.439843pt;}
.y1b8{bottom:922.896091pt;}
.y3{bottom:923.421343pt;}
.y4f{bottom:931.396000pt;}
.yf9{bottom:931.397572pt;}
.yac{bottom:932.325333pt;}
.y4e{bottom:934.053333pt;}
.yab{bottom:934.054509pt;}
.y1b7{bottom:936.446712pt;}
.y1b6{bottom:936.981871pt;}
.y2{bottom:944.682667pt;}
.y4d{bottom:947.340000pt;}
.y4c{bottom:948.668000pt;}
.y1b5{bottom:949.997333pt;}
.y153{bottom:952.521333pt;}
.y1{bottom:988.528000pt;}
.h14{height:14.130944pt;}
.h11{height:18.087819pt;}
.he{height:21.376299pt;}
.hd{height:28.166172pt;}
.h12{height:29.731250pt;}
.hb{height:31.062500pt;}
.h5{height:31.982720pt;}
.h9{height:36.515000pt;}
.h8{height:37.496000pt;}
.h7{height:39.639922pt;}
.h13{height:40.704875pt;}
.h4{height:41.707677pt;}
.h1{height:41.728437pt;}
.h10{height:44.858594pt;}
.hf{height:46.063750pt;}
.hc{height:46.947109pt;}
.h6{height:49.553828pt;}
.h3{height:50.885125pt;}
.ha{height:53.202187pt;}
.h2{height:74.986625pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:76.930667pt;}
.xd{left:77.992000pt;}
.xc{left:87.012000pt;}
.xa{left:89.532000pt;}
.x2e{left:92.568921pt;}
.x46{left:105.174827pt;}
.x47{left:106.253387pt;}
.x13{left:135.390667pt;}
.x14{left:142.685333pt;}
.x1b{left:146.889333pt;}
.xf{left:147.820000pt;}
.x17{left:152.810667pt;}
.x12{left:158.034667pt;}
.x2c{left:159.040000pt;}
.x18{left:160.105333pt;}
.x2d{left:166.417333pt;}
.x9{left:168.452000pt;}
.x8{left:179.726667pt;}
.x42{left:185.873333pt;}
.x43{left:192.770667pt;}
.x2a{left:220.117333pt;}
.x2b{left:227.494667pt;}
.x3d{left:278.581333pt;}
.x28{left:283.560000pt;}
.x29{left:287.406667pt;}
.x3e{left:288.926667pt;}
.x3b{left:330.234667pt;}
.x3c{left:338.590667pt;}
.x15{left:377.532000pt;}
.x16{left:384.908000pt;}
.xb{left:419.157677pt;}
.x3f{left:424.182667pt;}
.x4{left:429.222667pt;}
.xe{left:431.742667pt;}
.x3{left:443.946800pt;}
.x41{left:447.394667pt;}
.x40{left:448.455307pt;}
.x26{left:450.309333pt;}
.x2{left:455.088000pt;}
.x5{left:458.005333pt;}
.x21{left:459.066667pt;}
.x27{left:461.825333pt;}
.x22{left:466.444000pt;}
.x31{left:475.800000pt;}
.x32{left:486.101333pt;}
.x6{left:496.737333pt;}
.x33{left:498.373333pt;}
.x34{left:513.028000pt;}
.x30{left:520.877333pt;}
.x1d{left:533.344000pt;}
.x1e{left:540.721333pt;}
.x35{left:542.980000pt;}
.x36{left:547.090667pt;}
.x37{left:568.278667pt;}
.x38{left:572.390667pt;}
.x19{left:587.329333pt;}
.x2f{left:591.309333pt;}
.x1a{left:595.950667pt;}
.x1f{left:598.240000pt;}
.x1c{left:603.581333pt;}
.x20{left:605.617333pt;}
.x39{left:609.778667pt;}
.x3a{left:619.460000pt;}
.x7{left:625.784261pt;}
.x25{left:638.828000pt;}
.x23{left:661.549333pt;}
.x24{left:668.925333pt;}
.x44{left:680.244000pt;}
.x45{left:689.656000pt;}
.x11{left:721.561333pt;}
.x10{left:786.440000pt;}
}




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