
    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_5198f0dba52162c53e704abb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.970000;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_dd0b72519207fb60700ab12e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.542969;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_a68194023a6c6e351b747b06.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_37abf3900b27202dc886d362.woff')format("woff");}.ff4{font-family:ff4;line-height:0.761719;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_e95b5d356a7c3cc9d70f493b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.945312;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_5702bddf44f50a8ebcb0b7ee.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a2c4578afc4945d50d5fdf9b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_7162e51f031c558517d26065.woff')format("woff");}.ff8{font-family:ff8;line-height:0.960000;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_12a47921823f80a5daa27f77.woff')format("woff");}.ff9{font-family:ff9;line-height:0.929000;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_87854411eba256071112c738.woff')format("woff");}.ffa{font-family:ffa;line-height:0.693359;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_30eeab4d10608bc28e0ec9c5.woff')format("woff");}.ffb{font-family:ffb;line-height:0.883000;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_5014db943ebb5e31b7560627.woff')format("woff");}.ffc{font-family:ffc;line-height:0.662000;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_0ab7b88dc925b633ddebf328.woff')format("woff");}.ffd{font-family:ffd;line-height:0.761000;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_ee53edb0f3f2698357ea2978.woff')format("woff");}.ffe{font-family:ffe;line-height:0.919922;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_8de41864c51115b595127d6a.woff')format("woff");}.fff{font-family:fff;line-height:0.967000;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_fdf465bdd4da5ed6f5462c6a.woff')format("woff");}.ff10{font-family:ff10;line-height:0.776000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_98ad71c0fdd92609916346eb.woff')format("woff");}.ff11{font-family:ff11;line-height:0.111000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_ac079a4fdad13da91bfa0a21.woff')format("woff");}.ff12{font-family:ff12;line-height:0.856934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_9fb52e73295a9bbb8e7f3f4c.woff')format("woff");}.ff13{font-family:ff13;line-height:0.895996;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.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);}
.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);}
.v16{vertical-align:-63.554688px;}
.vc{vertical-align:-60.365862px;}
.v15{vertical-align:-53.714706px;}
.vb{vertical-align:-49.954680px;}
.v1a{vertical-align:-45.830082px;}
.v1d{vertical-align:-43.417968px;}
.v3{vertical-align:-41.005860px;}
.v5{vertical-align:-38.135448px;}
.v23{vertical-align:-36.181644px;}
.va{vertical-align:-30.000000px;}
.v1b{vertical-align:-28.704102px;}
.v22{vertical-align:-23.760048px;}
.v10{vertical-align:-18.000000px;}
.v14{vertical-align:-15.554688px;}
.v9{vertical-align:-12.365862px;}
.v1f{vertical-align:-9.680022px;}
.v19{vertical-align:-8.640018px;}
.vf{vertical-align:-7.588818px;}
.v1e{vertical-align:-5.280011px;}
.v17{vertical-align:-1.086000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:18.000000px;}
.ve{vertical-align:30.000018px;}
.v4{vertical-align:31.560546px;}
.v6{vertical-align:38.135448px;}
.v11{vertical-align:41.005860px;}
.v7{vertical-align:42.365862px;}
.v12{vertical-align:45.554688px;}
.v18{vertical-align:48.234378px;}
.v1{vertical-align:53.593752px;}
.v1c{vertical-align:60.592386px;}
.v21{vertical-align:64.675800px;}
.v8{vertical-align:80.501310px;}
.v13{vertical-align:86.560548px;}
.v20{vertical-align:185.416800px;}
.v2{vertical-align:312.000000px;}
.ls2{letter-spacing:-9.576000px;}
.ls10{letter-spacing:-6.736800px;}
.ls16{letter-spacing:-6.271200px;}
.ls36{letter-spacing:-4.703400px;}
.ls2e{letter-spacing:-3.958416px;}
.ls8{letter-spacing:-3.376800px;}
.ls2f{letter-spacing:-2.827440px;}
.ls9{letter-spacing:-2.692800px;}
.ls45{letter-spacing:-2.376000px;}
.lse{letter-spacing:-0.040800px;}
.ls30{letter-spacing:-0.038400px;}
.ls35{letter-spacing:-0.036000px;}
.ls3b{letter-spacing:-0.028800px;}
.lsd{letter-spacing:-0.027200px;}
.ls42{letter-spacing:-0.021888px;}
.ls40{letter-spacing:-0.019800px;}
.lsf{letter-spacing:-0.016800px;}
.ls15{letter-spacing:-0.015600px;}
.ls3d{letter-spacing:-0.012000px;}
.ls0{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.000020px;}
.ls1c{letter-spacing:0.000180px;}
.ls2c{letter-spacing:0.007050px;}
.ls1d{letter-spacing:0.007230px;}
.ls18{letter-spacing:0.009360px;}
.ls17{letter-spacing:0.009960px;}
.ls28{letter-spacing:0.009990px;}
.lsb{letter-spacing:0.010050px;}
.ls1a{letter-spacing:0.010200px;}
.ls19{letter-spacing:0.010380px;}
.ls3c{letter-spacing:0.010680px;}
.ls1b{letter-spacing:0.010800px;}
.ls5{letter-spacing:0.011940px;}
.ls43{letter-spacing:0.012000px;}
.ls1e{letter-spacing:0.012648px;}
.ls32{letter-spacing:0.012660px;}
.ls1f{letter-spacing:0.012936px;}
.ls20{letter-spacing:0.013600px;}
.ls2b{letter-spacing:0.014280px;}
.ls24{letter-spacing:0.017049px;}
.ls14{letter-spacing:0.017600px;}
.ls41{letter-spacing:0.018000px;}
.ls21{letter-spacing:0.018216px;}
.ls44{letter-spacing:0.018600px;}
.ls27{letter-spacing:0.019200px;}
.ls6{letter-spacing:0.020400px;}
.ls33{letter-spacing:0.021600px;}
.ls11{letter-spacing:0.022200px;}
.ls7{letter-spacing:0.022800px;}
.ls22{letter-spacing:0.024000px;}
.ls2d{letter-spacing:0.024540px;}
.ls25{letter-spacing:0.026280px;}
.ls12{letter-spacing:0.026400px;}
.ls23{letter-spacing:0.028200px;}
.ls37{letter-spacing:0.032587px;}
.ls26{letter-spacing:0.033000px;}
.lsa{letter-spacing:0.033600px;}
.ls29{letter-spacing:0.035040px;}
.ls13{letter-spacing:0.036000px;}
.ls38{letter-spacing:0.037390px;}
.ls1{letter-spacing:0.037990px;}
.ls31{letter-spacing:0.038544px;}
.lsc{letter-spacing:0.040800px;}
.ls3a{letter-spacing:0.043200px;}
.ls39{letter-spacing:0.050400px;}
.ls3e{letter-spacing:0.067200px;}
.ls3f{letter-spacing:0.072000px;}
.ls2a{letter-spacing:1.879248px;}
.ls3{letter-spacing:102.884400px;}
.ls4{letter-spacing:116.147400px;}
.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;}
}
.ws15{word-spacing:-144.000000px;}
.ws11{word-spacing:-136.000020px;}
.wsd{word-spacing:-126.480000px;}
.ws23{word-spacing:-88.000020px;}
.ws38{word-spacing:-70.920000px;}
.ws2e{word-spacing:-63.828000px;}
.ws31{word-spacing:-51.756000px;}
.ws29{word-spacing:-49.075200px;}
.ws2a{word-spacing:-49.053600px;}
.ws13{word-spacing:-49.032000px;}
.ws24{word-spacing:-47.700000px;}
.ws25{word-spacing:-47.670000px;}
.ws2{word-spacing:-46.348800px;}
.ws28{word-spacing:-46.328400px;}
.wsf{word-spacing:-46.308000px;}
.ws4{word-spacing:-46.267200px;}
.ws1e{word-spacing:-43.747440px;}
.wsa{word-spacing:-43.066440px;}
.ws2d{word-spacing:-42.552000px;}
.ws35{word-spacing:-42.240600px;}
.ws37{word-spacing:-42.222000px;}
.ws17{word-spacing:-41.350320px;}
.ws2c{word-spacing:-38.035200px;}
.ws27{word-spacing:-38.018400px;}
.ws2b{word-spacing:-37.968000px;}
.ws20{word-spacing:-37.824000px;}
.ws7{word-spacing:-36.696000px;}
.ws16{word-spacing:-34.503995px;}
.ws14{word-spacing:-32.688000px;}
.ws26{word-spacing:-32.587200px;}
.ws6{word-spacing:-31.399200px;}
.ws2f{word-spacing:-31.248000px;}
.ws5{word-spacing:-30.872005px;}
.ws3{word-spacing:-30.844805px;}
.ws1c{word-spacing:-30.254555px;}
.wse{word-spacing:-29.364720px;}
.ws9{word-spacing:-29.140800px;}
.ws1a{word-spacing:-29.055995px;}
.wsb{word-spacing:-28.710960px;}
.ws1{word-spacing:-28.179204px;}
.ws32{word-spacing:-28.148005px;}
.ws30{word-spacing:-27.240000px;}
.ws34{word-spacing:-24.864000px;}
.ws8{word-spacing:-24.481606px;}
.ws1d{word-spacing:-21.610405px;}
.ws33{word-spacing:-18.159995px;}
.ws22{word-spacing:-0.219953px;}
.ws12{word-spacing:-0.216000px;}
.ws10{word-spacing:-0.204000px;}
.ws1f{word-spacing:-0.192000px;}
.wsc{word-spacing:-0.189720px;}
.ws36{word-spacing:-0.186000px;}
.ws21{word-spacing:-0.180000px;}
.ws19{word-spacing:-0.144000px;}
.ws18{word-spacing:-0.120000px;}
.ws0{word-spacing:0.000000px;}
.ws1b{word-spacing:1517.737740px;}
._27{margin-left:-3918.072600px;}
._2c{margin-left:-1892.172000px;}
._12{margin-left:-45.691200px;}
._2e{margin-left:-43.863552px;}
._14{margin-left:-41.199600px;}
._20{margin-left:-36.559512px;}
._f{margin-left:-33.273600px;}
._2f{margin-left:-31.156800px;}
._23{margin-left:-30.060000px;}
._a{margin-left:-28.857600px;}
._1d{margin-left:-27.195840px;}
._4{margin-left:-25.984800px;}
._28{margin-left:-24.300000px;}
._1c{margin-left:-21.924480px;}
._11{margin-left:-20.193600px;}
._18{margin-left:-18.735600px;}
._15{margin-left:-15.937200px;}
._17{margin-left:-14.712000px;}
._1f{margin-left:-13.588800px;}
._1a{margin-left:-12.564000px;}
._1e{margin-left:-11.331600px;}
._7{margin-left:-10.080000px;}
._e{margin-left:-8.982000px;}
._9{margin-left:-7.248000px;}
._3{margin-left:-5.400000px;}
._6{margin-left:-4.341600px;}
._8{margin-left:-2.880000px;}
._0{margin-left:-1.800000px;}
._1{width:1.800000px;}
._2{width:2.880000px;}
._10{width:4.347600px;}
._19{width:6.240000px;}
._d{width:7.398000px;}
._5{width:8.899200px;}
._c{width:10.238400px;}
._21{width:29.288930px;}
._2d{width:92.691600px;}
._16{width:97.920000px;}
._22{width:99.104400px;}
._13{width:116.147400px;}
._26{width:117.193200px;}
._25{width:127.906800px;}
._24{width:250.168800px;}
._2b{width:336.693600px;}
._b{width:710.640840px;}
._1b{width:858.834000px;}
._29{width:1141.407600px;}
._2a{width:1700.059200px;}
.fc14{color:rgb(128,100,162);}
.fc13{color:rgb(249,176,116);}
.fc11{color:rgb(192,80,77);}
.fc10{color:rgb(79,129,189);}
.fcf{color:rgb(0,143,0);}
.fcd{color:rgb(33,33,33);}
.fc1{color:rgb(255,255,255);}
.fc2{color:rgb(255,255,255);}
.fc7{color:rgb(0,0,0);}
.fc3{color:transparent;}
.fc6{color:rgb(255,38,0);}
.fc5{color:rgb(0,253,255);}
.fc12{color:rgb(155,187,89);}
.fce{color:rgb(148,82,0);}
.fc0{color:rgb(255,212,121);}
.fc8{color:rgb(4,51,255);}
.fc9{color:rgb(0,249,0);}
.fca{color:rgb(0,84,147);}
.fc4{color:rgb(247,150,70);}
.fcb{color:rgb(255,147,0);}
.fcc{color:rgb(255,252,121);}
.fs3a{font-size:79.999980px;}
.fs10{font-size:88.000020px;}
.fs2e{font-size:95.200020px;}
.fs16{font-size:98.560020px;}
.fs25{font-size:112.000020px;}
.fs24{font-size:120.000000px;}
.fs37{font-size:124.000020px;}
.fs12{font-size:126.480000px;}
.fs26{font-size:127.999980px;}
.fs13{font-size:129.360000px;}
.fsf{font-size:132.000000px;}
.fs2a{font-size:133.279980px;}
.fs7{font-size:135.720000px;}
.fsb{font-size:136.000020px;}
.fs6{font-size:136.800000px;}
.fs2c{font-size:138.000000px;}
.fs2d{font-size:142.800000px;}
.fs2{font-size:144.000000px;}
.fs15{font-size:147.840000px;}
.fs2b{font-size:150.000000px;}
.fs22{font-size:151.999980px;}
.fsd{font-size:156.000000px;}
.fs4{font-size:160.000020px;}
.fs21{font-size:163.200000px;}
.fs8{font-size:168.000000px;}
.fs1f{font-size:171.600000px;}
.fs14{font-size:178.200000px;}
.fs19{font-size:179.520000px;}
.fs9{font-size:180.000000px;}
.fs1a{font-size:182.160000px;}
.fs1e{font-size:182.400000px;}
.fs1c{font-size:186.000000px;}
.fs28{font-size:187.200000px;}
.fs11{font-size:189.720000px;}
.fs1d{font-size:192.000000px;}
.fs2f{font-size:192.720000px;}
.fs23{font-size:198.000000px;}
.fs29{font-size:199.920000px;}
.fs30{font-size:200.423460px;}
.fs5{font-size:203.040000px;}
.fsa{font-size:204.000000px;}
.fs35{font-size:210.000000px;}
.fs1{font-size:216.000000px;}
.fs39{font-size:218.880000px;}
.fs33{font-size:219.953280px;}
.fsc{font-size:228.000000px;}
.fs20{font-size:230.400000px;}
.fs31{font-size:234.000000px;}
.fs3{font-size:240.000000px;}
.fs32{font-size:244.266120px;}
.fs38{font-size:246.000000px;}
.fs1b{font-size:252.000000px;}
.fs18{font-size:272.160000px;}
.fs27{font-size:276.000000px;}
.fse{font-size:300.000000px;}
.fs17{font-size:312.000000px;}
.fs34{font-size:324.000000px;}
.fs0{font-size:360.000000px;}
.fs36{font-size:482.400000px;}
.yf6{bottom:-0.000075px;}
.y0{bottom:0.000000px;}
.y12d{bottom:0.727200px;}
.yb9{bottom:3.418500px;}
.y117{bottom:4.521150px;}
.ybb{bottom:4.993200px;}
.y119{bottom:5.669550px;}
.yb7{bottom:6.598650px;}
.y120{bottom:8.669550px;}
.ye1{bottom:10.271730px;}
.yf4{bottom:11.272575px;}
.ye5{bottom:12.518655px;}
.yc8{bottom:13.288950px;}
.yb5{bottom:13.289100px;}
.y8d{bottom:17.284350px;}
.y91{bottom:17.284500px;}
.yb3{bottom:17.845800px;}
.y46{bottom:18.644400px;}
.y41{bottom:18.644550px;}
.y93{bottom:20.159100px;}
.yf5{bottom:29.405475px;}
.y124{bottom:30.269550px;}
.y137{bottom:30.995700px;}
.y53{bottom:33.851850px;}
.yb0{bottom:35.299050px;}
.y59{bottom:36.544950px;}
.y49{bottom:38.562000px;}
.y3e{bottom:44.494650px;}
.y68{bottom:45.028500px;}
.y86{bottom:45.028650px;}
.y4{bottom:45.320040px;}
.y78{bottom:46.217700px;}
.yc0{bottom:47.638950px;}
.y83{bottom:48.944100px;}
.y8c{bottom:53.284350px;}
.y90{bottom:53.284500px;}
.y45{bottom:57.644400px;}
.y40{bottom:57.644550px;}
.y66{bottom:59.984400px;}
.y76{bottom:73.953300px;}
.yce{bottom:83.137860px;}
.y10f{bottom:89.001750px;}
.y4d{bottom:98.562000px;}
.ye7{bottom:149.326995px;}
.y3b{bottom:159.588450px;}
.y11b{bottom:175.566000px;}
.y12b{bottom:177.289650px;}
.y9d{bottom:189.385500px;}
.y147{bottom:189.983700px;}
.y115{bottom:195.610950px;}
.y23{bottom:197.279100px;}
.yd5{bottom:199.971000px;}
.ycb{bottom:203.584500px;}
.y60{bottom:218.283900px;}
.y57{bottom:219.411150px;}
.y3a{bottom:219.588450px;}
.y64{bottom:227.687850px;}
.yac{bottom:227.963550px;}
.y26{bottom:231.432150px;}
.y10c{bottom:232.502550px;}
.yf0{bottom:234.001950px;}
.y128{bottom:238.286700px;}
.y114{bottom:239.110950px;}
.y72{bottom:239.328750px;}
.y151{bottom:242.474700px;}
.y146{bottom:245.483700px;}
.y30{bottom:245.841450px;}
.y177{bottom:247.919400px;}
.y11a{bottom:255.066000px;}
.yd4{bottom:259.971000px;}
.y9c{bottom:261.385500px;}
.y14b{bottom:262.839150px;}
.y7a{bottom:263.021550px;}
.yd6{bottom:267.334050px;}
.y182{bottom:272.380050px;}
.y10b{bottom:276.002550px;}
.y32{bottom:276.331650px;}
.yca{bottom:281.034600px;}
.y113{bottom:282.610950px;}
.y18e{bottom:284.334000px;}
.y12a{bottom:286.183350px;}
.yef{bottom:289.501950px;}
.y4b{bottom:293.812200px;}
.y5f{bottom:297.783900px;}
.y56{bottom:299.061150px;}
.y16c{bottom:300.634200px;}
.y145{bottom:300.983700px;}
.y13e{bottom:303.260100px;}
.y5{bottom:309.385800px;}
.y25{bottom:310.932150px;}
.y71{bottom:311.328750px;}
.y36{bottom:315.331650px;}
.yab{bottom:317.543550px;}
.y10a{bottom:319.502550px;}
.yd3{bottom:319.971000px;}
.y176{bottom:321.419400px;}
.y129{bottom:322.183350px;}
.y112{bottom:326.110950px;}
.y63{bottom:333.587850px;}
.y149{bottom:334.551450px;}
.y150{bottom:338.474700px;}
.yee{bottom:345.001950px;}
.y31{bottom:345.331650px;}
.y74{bottom:345.908700px;}
.y16b{bottom:347.134200px;}
.y181{bottom:351.880050px;}
.y144{bottom:356.483700px;}
.y130{bottom:361.738950px;}
.y109{bottom:363.002550px;}
.y18d{bottom:363.834000px;}
.y126{bottom:364.116750px;}
.ybc{bottom:364.186650px;}
.y111{bottom:369.610950px;}
.y101{bottom:369.926700px;}
.y1c{bottom:369.926850px;}
.y5e{bottom:377.283900px;}
.y70{bottom:383.328750px;}
.yd2{bottom:385.740450px;}
.y1e{bottom:390.338700px;}
.y24{bottom:390.432150px;}
.y16a{bottom:393.634200px;}
.y175{bottom:394.919400px;}
.ye8{bottom:395.406750px;}
.ybe{bottom:402.435000px;}
.y148{bottom:403.551450px;}
.y143{bottom:411.983700px;}
.yb8{bottom:431.546250px;}
.y80{bottom:431.558400px;}
.y100{bottom:438.926700px;}
.y1b{bottom:438.926850px;}
.y13d{bottom:440.261550px;}
.y12f{bottom:441.238950px;}
.y18c{bottom:443.334000px;}
.yd1{bottom:445.740450px;}
.y8f{bottom:445.783200px;}
.ycd{bottom:445.997400px;}
.y6f{bottom:455.328750px;}
.y108{bottom:459.341400px;}
.y55{bottom:462.782400px;}
.y50{bottom:465.206100px;}
.y127{bottom:467.043750px;}
.y14a{bottom:467.120400px;}
.y142{bottom:467.483700px;}
.y158{bottom:470.953650px;}
.y103{bottom:476.386050px;}
.y169{bottom:486.634200px;}
.yf3{bottom:497.699100px;}
.yd0{bottom:505.740450px;}
.yff{bottom:507.926700px;}
.y1a{bottom:507.926850px;}
.yf2{bottom:508.971750px;}
.ycc{bottom:510.497400px;}
.y180{bottom:510.880050px;}
.yfc{bottom:521.157900px;}
.y18b{bottom:522.834000px;}
.y4e{bottom:525.892200px;}
.y168{bottom:533.134200px;}
.yf{bottom:538.619100px;}
.yb{bottom:538.781850px;}
.y22{bottom:542.055300px;}
.y54{bottom:543.182400px;}
.y131{bottom:544.692450px;}
.y4f{bottom:548.771250px;}
.y9a{bottom:549.637950px;}
.y157{bottom:555.853650px;}
.ya5{bottom:557.529300px;}
.y14{bottom:562.792200px;}
.y8e{bottom:562.957350px;}
.y11e{bottom:571.242750px;}
.y174{bottom:575.252100px;}
.y167{bottom:579.634200px;}
.yf1{bottom:579.808950px;}
.yfb{bottom:581.157900px;}
.y17f{bottom:590.380050px;}
.ye{bottom:591.119100px;}
.ya{bottom:591.281850px;}
.y135{bottom:591.795000px;}
.y88{bottom:593.745150px;}
.yc6{bottom:605.960850px;}
.y8{bottom:610.354950px;}
.y6e{bottom:611.378700px;}
.y99{bottom:623.137950px;}
.y3{bottom:623.446800px;}
.y166{bottom:626.134200px;}
.y13{bottom:631.792200px;}
.ya4{bottom:634.029300px;}
.y156{bottom:640.753650px;}
.y18a{bottom:642.004350px;}
.yd{bottom:643.619100px;}
.y9{bottom:643.781850px;}
.y8b{bottom:646.429950px;}
.ya9{bottom:646.739700px;}
.y173{bottom:647.252100px;}
.yc7{bottom:667.493700px;}
.y17e{bottom:669.880050px;}
.y165{bottom:672.634200px;}
.y10e{bottom:680.524950px;}
.y44{bottom:689.224800px;}
.y28{bottom:691.165500px;}
.y98{bottom:696.637950px;}
.y12{bottom:700.792200px;}
.ya8{bottom:703.739700px;}
.y6d{bottom:707.378700px;}
.y47{bottom:707.791500px;}
.y172{bottom:719.252100px;}
.y189{bottom:721.504350px;}
.y155{bottom:725.653650px;}
.yf9{bottom:730.376400px;}
.y8a{bottom:734.978400px;}
.ya3{bottom:739.929300px;}
.y10d{bottom:751.667250px;}
.y2{bottom:753.688050px;}
.ydf{bottom:760.045650px;}
.ya7{bottom:760.739700px;}
.y110{bottom:767.440350px;}
.y11{bottom:769.792200px;}
.y11d{bottom:783.118500px;}
.y164{bottom:791.086800px;}
.y171{bottom:791.252100px;}
.y188{bottom:801.004350px;}
.y81{bottom:802.636200px;}
.y6c{bottom:803.378700px;}
.yb4{bottom:806.431950px;}
.y4a{bottom:810.697050px;}
.y48{bottom:812.197050px;}
.ya2{bottom:816.429300px;}
.ya6{bottom:817.739700px;}
.ybd{bottom:819.600750px;}
.y123{bottom:819.968550px;}
.y138{bottom:827.070450px;}
.y17d{bottom:828.880050px;}
.yde{bottom:833.545650px;}
.y163{bottom:837.586800px;}
.y84{bottom:840.413550px;}
.y116{bottom:842.230350px;}
.y97{bottom:843.637950px;}
.y1{bottom:873.688050px;}
.y187{bottom:880.504350px;}
.y162{bottom:884.086800px;}
.yed{bottom:885.212550px;}
.ye0{bottom:898.043850px;}
.y6b{bottom:899.378700px;}
.ydd{bottom:908.315550px;}
.y17c{bottom:908.380050px;}
.yc9{bottom:909.790200px;}
.y118{bottom:915.319350px;}
.y96{bottom:917.137950px;}
.y11f{bottom:917.732100px;}
.y79{bottom:927.051450px;}
.y170{bottom:932.300700px;}
.yeb{bottom:937.303050px;}
.y7f{bottom:938.504700px;}
.yda{bottom:941.723850px;}
.y154{bottom:943.888050px;}
.y27{bottom:949.283550px;}
.y12e{bottom:960.067200px;}
.y105{bottom:966.762900px;}
.ye2{bottom:974.133750px;}
.y14d{bottom:975.384150px;}
.y161{bottom:977.086800px;}
.yc1{bottom:980.221050px;}
.ydc{bottom:984.357450px;}
.y17b{bottom:987.880050px;}
.y95{bottom:990.637950px;}
.yaf{bottom:994.876950px;}
.y6a{bottom:995.378700px;}
.y16f{bottom:1004.300700px;}
.y4c{bottom:1004.810700px;}
.yea{bottom:1006.303050px;}
.yd9{bottom:1010.723850px;}
.y160{bottom:1023.586800px;}
.y7e{bottom:1027.004700px;}
.ya0{bottom:1030.389900px;}
.y65{bottom:1042.849650px;}
.y153{bottom:1045.168050px;}
.y12c{bottom:1045.896300px;}
.y186{bottom:1053.275100px;}
.yb6{bottom:1056.308550px;}
.y67{bottom:1058.379300px;}
.y94{bottom:1064.137950px;}
.y15f{bottom:1070.086800px;}
.y122{bottom:1071.785700px;}
.ye9{bottom:1075.303050px;}
.y2d{bottom:1075.320000px;}
.y16e{bottom:1076.300700px;}
.yae{bottom:1076.651250px;}
.yba{bottom:1079.068500px;}
.y14c{bottom:1081.884150px;}
.y69{bottom:1091.378700px;}
.y92{bottom:1099.090950px;}
.y61{bottom:1101.097350px;}
.y9f{bottom:1109.889900px;}
.y139{bottom:1117.228800px;}
.ycf{bottom:1120.744500px;}
.y121{bottom:1122.785700px;}
.ye6{bottom:1128.450600px;}
.yad{bottom:1130.651250px;}
.y2c{bottom:1130.820000px;}
.y185{bottom:1132.775100px;}
.y134{bottom:1139.247000px;}
.y13a{bottom:1141.435050px;}
.y10{bottom:1146.197100px;}
.y152{bottom:1146.448050px;}
.y17a{bottom:1146.880050px;}
.y16d{bottom:1148.300700px;}
.y73{bottom:1151.884350px;}
.y18{bottom:1152.205050px;}
.y85{bottom:1158.900000px;}
.y15e{bottom:1163.086800px;}
.y159{bottom:1164.192150px;}
.y87{bottom:1166.400000px;}
.y62{bottom:1169.399700px;}
.y141{bottom:1177.598850px;}
.yb2{bottom:1183.983600px;}
.y133{bottom:1184.085900px;}
.y13c{bottom:1185.968700px;}
.y5a{bottom:1187.326950px;}
.ya1{bottom:1192.973850px;}
.y104{bottom:1192.999950px;}
.y75{bottom:1197.398400px;}
.y35{bottom:1201.339650px;}
.y7d{bottom:1204.004700px;}
.yc5{bottom:1208.063700px;}
.y15d{bottom:1209.586800px;}
.y43{bottom:1211.088900px;}
.y184{bottom:1212.275100px;}
.y42{bottom:1214.088900px;}
.y21{bottom:1217.133750px;}
.y3f{bottom:1218.687150px;}
.y9e{bottom:1219.389900px;}
.y52{bottom:1219.472100px;}
.y5b{bottom:1219.564950px;}
.y77{bottom:1220.654850px;}
.y17{bottom:1221.205050px;}
.y132{bottom:1225.601850px;}
.y179{bottom:1226.380050px;}
.y58{bottom:1227.226350px;}
.y14f{bottom:1233.467250px;}
.y7{bottom:1240.292100px;}
.yd8{bottom:1244.205750px;}
.y13b{bottom:1248.344850px;}
.yc2{bottom:1249.075650px;}
.y82{bottom:1250.016600px;}
.y140{bottom:1254.098850px;}
.y107{bottom:1254.290700px;}
.y15c{bottom:1256.086800px;}
.yf8{bottom:1256.976600px;}
.yfa{bottom:1269.928800px;}
.y34{bottom:1270.339650px;}
.y5d{bottom:1276.161300px;}
.y2e{bottom:1278.268650px;}
.y2b{bottom:1281.861750px;}
.yc4{bottom:1287.563700px;}
.y125{bottom:1288.308000px;}
.y16{bottom:1290.205050px;}
.y2f{bottom:1291.179600px;}
.y183{bottom:1291.775100px;}
.y7c{bottom:1292.504700px;}
.y9b{bottom:1293.086400px;}
.ybf{bottom:1293.268350px;}
.y3d{bottom:1294.705650px;}
.y20{bottom:1296.633750px;}
.ye4{bottom:1297.754250px;}
.y11c{bottom:1300.753200px;}
.y136{bottom:1301.437950px;}
.y15b{bottom:1302.586800px;}
.y14e{bottom:1305.467250px;}
.y178{bottom:1305.880050px;}
.y2a{bottom:1307.631450px;}
.ye3{bottom:1310.272950px;}
.y39{bottom:1312.051350px;}
.yd7{bottom:1317.705750px;}
.y6{bottom:1318.292100px;}
.yaa{bottom:1325.332200px;}
.yfe{bottom:1327.822950px;}
.y15a{bottom:1330.329600px;}
.y51{bottom:1333.320300px;}
.y33{bottom:1339.339650px;}
.y13f{bottom:1348.890300px;}
.yc3{bottom:1367.063700px;}
.y15{bottom:1368.205050px;}
.y38{bottom:1376.551350px;}
.y29{bottom:1414.131450px;}
.yfd{bottom:1434.322950px;}
.y37{bottom:1441.051350px;}
.y106{bottom:1444.807500px;}
.y1d{bottom:1447.361550px;}
.y1f{bottom:1447.671600px;}
.y102{bottom:1457.601600px;}
.ydb{bottom:1460.432850px;}
.yc{bottom:1467.262800px;}
.y7b{bottom:1467.478350px;}
.y19{bottom:1467.855600px;}
.yf7{bottom:1468.125750px;}
.yb1{bottom:1468.287900px;}
.y3c{bottom:1469.055450px;}
.y5c{bottom:1470.227100px;}
.y89{bottom:1471.971600px;}
.yec{bottom:1481.521350px;}
.h56{height:26.400000px;}
.h42{height:32.368395px;}
.h49{height:35.522460px;}
.h58{height:36.900000px;}
.h59{height:39.900000px;}
.h3e{height:39.900480px;}
.h4b{height:46.451925px;}
.h3c{height:50.400480px;}
.h46{height:53.921745px;}
.h39{height:62.400480px;}
.h4c{height:68.185517px;}
.h31{height:72.299760px;}
.h5b{height:72.300000px;}
.h37{height:81.541995px;}
.h57{height:81.562500px;}
.h1b{height:85.514070px;}
.h18{height:85.699800px;}
.h5c{height:86.132812px;}
.h30{height:89.003906px;}
.h15{height:90.087885px;}
.h2f{height:93.184800px;}
.h14{height:97.259766px;}
.h5d{height:97.875000px;}
.h13{height:100.110240px;}
.h4e{height:102.432000px;}
.h29{height:102.896115px;}
.h52{height:103.359375px;}
.h12{height:103.716795px;}
.h22{height:105.633405px;}
.h3f{height:105.726562px;}
.h40{height:110.670120px;}
.h3{height:111.744000px;}
.h60{height:112.792969px;}
.h53{height:114.187500px;}
.h2d{height:114.688470px;}
.h20{height:119.232600px;}
.h5a{height:120.624000px;}
.hd{height:124.605469px;}
.h9{height:127.568848px;}
.h8{height:128.583984px;}
.h36{height:129.711914px;}
.h3b{height:130.125000px;}
.hf{height:130.368000px;}
.h38{height:134.223633px;}
.h28{height:134.558190px;}
.h6{height:135.351562px;}
.h43{height:135.887106px;}
.h3d{height:138.257812px;}
.h1c{height:138.960938px;}
.h48{height:139.680000px;}
.h35{height:140.991211px;}
.h4d{height:143.629492px;}
.h10{height:146.630859px;}
.h44{height:148.992000px;}
.h4a{height:149.128324px;}
.h16{height:150.087900px;}
.h19{height:151.590820px;}
.h2c{height:153.398438px;}
.ha{height:157.910156px;}
.h2a{height:161.293945px;}
.h2b{height:165.427200px;}
.h47{height:165.612429px;}
.h21{height:168.738281px;}
.hb{height:169.189453px;}
.h23{height:171.219727px;}
.h27{height:171.445312px;}
.h25{height:174.829102px;}
.h33{height:175.957031px;}
.h26{height:180.468750px;}
.h41{height:181.145508px;}
.h2e{height:186.108398px;}
.h34{height:187.913086px;}
.h5{height:190.845703px;}
.hc{height:191.748047px;}
.h50{height:197.387695px;}
.h2{height:203.027344px;}
.h54{height:204.300000px;}
.h5f{height:205.734375px;}
.h17{height:208.325684px;}
.he{height:214.306641px;}
.h45{height:219.946289px;}
.h1a{height:221.748047px;}
.h4{height:225.585938px;}
.h5e{height:231.225586px;}
.h11{height:232.800000px;}
.h1f{height:233.027344px;}
.h24{height:236.865234px;}
.h1d{height:242.112000px;}
.h4f{height:251.424000px;}
.h1e{height:255.814453px;}
.h32{height:259.423828px;}
.h1{height:279.360000px;}
.h55{height:346.363200px;}
.h51{height:408.002756px;}
.h3a{height:417.056550px;}
.h7{height:502.845703px;}
.h0{height:1620.000000px;}
.w20{width:33.830850px;}
.w19{width:44.400450px;}
.w22{width:48.939600px;}
.w1f{width:63.283710px;}
.w21{width:69.450240px;}
.w23{width:106.034040px;}
.w15{width:131.417955px;}
.w13{width:135.680745px;}
.w26{width:144.011040px;}
.w16{width:146.111355px;}
.w17{width:161.566050px;}
.w14{width:162.443400px;}
.w24{width:167.801550px;}
.w25{width:173.801550px;}
.w1c{width:184.826700px;}
.w5{width:186.825750px;}
.w1a{width:191.471250px;}
.w3{width:231.186750px;}
.w1e{width:242.995500px;}
.w4{width:244.813650px;}
.w27{width:253.387350px;}
.w6{width:270.166200px;}
.w2{width:311.094300px;}
.w29{width:322.319100px;}
.we{width:322.656300px;}
.wf{width:323.165550px;}
.w10{width:330.026400px;}
.w1d{width:332.063100px;}
.wc{width:336.065550px;}
.wb{width:336.251250px;}
.w1{width:341.355450px;}
.w11{width:348.765450px;}
.w7{width:369.742500px;}
.wd{width:385.921500px;}
.w18{width:388.421700px;}
.w8{width:409.292700px;}
.wa{width:414.758850px;}
.w9{width:494.016600px;}
.w1b{width:539.103000px;}
.w28{width:586.857900px;}
.w12{width:1603.536000px;}
.w0{width:2880.000000px;}
.x0{left:0.000000px;}
.xdc{left:1.653000px;}
.x44{left:11.055150px;}
.xad{left:13.771050px;}
.x106{left:15.976500px;}
.x77{left:17.748000px;}
.x86{left:19.320000px;}
.x94{left:21.027000px;}
.x6b{left:24.105000px;}
.x52{left:26.718900px;}
.x4b{left:28.338000px;}
.xb7{left:30.114300px;}
.x69{left:31.724700px;}
.x121{left:37.784550px;}
.x4e{left:41.934000px;}
.x54{left:42.972000px;}
.xc0{left:48.674850px;}
.x123{left:49.859550px;}
.x67{left:54.165900px;}
.xbe{left:57.144000px;}
.x40{left:61.297500px;}
.xbc{left:64.614000px;}
.x14{left:65.734605px;}
.x5e{left:72.811500px;}
.x3c{left:74.492400px;}
.x96{left:75.817200px;}
.x42{left:78.601500px;}
.xa9{left:80.808165px;}
.x3e{left:84.006750px;}
.x117{left:91.180965px;}
.x50{left:95.473500px;}
.x16{left:100.209705px;}
.x57{left:102.328500px;}
.xb5{left:103.868100px;}
.x11d{left:106.393215px;}
.x11e{left:109.393215px;}
.xb8{left:111.732900px;}
.x7d{left:114.372630px;}
.x59{left:115.459650px;}
.xbb{left:119.245500px;}
.x118{left:126.231600px;}
.x15{left:128.565420px;}
.x7a{left:136.428780px;}
.x7b{left:139.397295px;}
.x116{left:146.093535px;}
.x7c{left:155.854800px;}
.x7e{left:166.929000px;}
.xe3{left:172.189500px;}
.x90{left:181.630800px;}
.x147{left:182.818950px;}
.x79{left:183.986400px;}
.x98{left:196.196850px;}
.x146{left:202.535700px;}
.xe2{left:214.673550px;}
.x140{left:218.089200px;}
.xe1{left:225.231450px;}
.xab{left:228.976650px;}
.x142{left:231.309300px;}
.x38{left:238.518600px;}
.xe0{left:243.222450px;}
.x17{left:245.372100px;}
.x11b{left:254.235450px;}
.xe8{left:255.903900px;}
.xe5{left:258.490500px;}
.xe7{left:260.348850px;}
.x154{left:262.366200px;}
.x119{left:267.597150px;}
.x110{left:270.839550px;}
.x58{left:276.829800px;}
.xe6{left:288.490500px;}
.x148{left:295.311600px;}
.x30{left:301.750350px;}
.x11a{left:321.124650px;}
.x12e{left:323.999400px;}
.x13e{left:325.323000px;}
.x1c{left:326.880000px;}
.x141{left:328.926600px;}
.x157{left:330.622350px;}
.x31{left:331.750350px;}
.x12d{left:332.806050px;}
.x144{left:336.905850px;}
.x143{left:338.675100px;}
.xd1{left:345.727800px;}
.x151{left:349.279800px;}
.x13f{left:352.788900px;}
.x145{left:355.040700px;}
.xb2{left:356.284050px;}
.xb4{left:360.359400px;}
.xd4{left:368.027700px;}
.x91{left:369.222900px;}
.x6e{left:371.082600px;}
.xec{left:372.327000px;}
.xa{left:374.980200px;}
.x152{left:376.279800px;}
.x33{left:378.697500px;}
.x153{left:382.366200px;}
.x68{left:388.015200px;}
.xf6{left:394.359300px;}
.xc3{left:395.831550px;}
.xcc{left:399.921000px;}
.x28{left:404.500350px;}
.xd6{left:412.537500px;}
.x9{left:415.045500px;}
.xd3{left:419.192550px;}
.xf8{left:421.119450px;}
.xf7{left:423.562800px;}
.x93{left:429.390300px;}
.xca{left:432.046500px;}
.xc4{left:437.896800px;}
.xcb{left:439.254300px;}
.x6f{left:443.461350px;}
.x156{left:450.622350px;}
.x18{left:455.870550px;}
.x92{left:460.232100px;}
.xde{left:462.713550px;}
.xb1{left:469.800000px;}
.x21{left:472.135500px;}
.x11{left:474.125100px;}
.xd0{left:476.970900px;}
.xd5{left:478.011900px;}
.x136{left:479.189250px;}
.x19{left:485.870550px;}
.xbf{left:487.591200px;}
.x12{left:499.887450px;}
.xf5{left:502.659900px;}
.x10{left:507.359250px;}
.x5{left:512.535150px;}
.xeb{left:514.730100px;}
.x60{left:523.816350px;}
.xc5{left:529.527150px;}
.x2{left:531.042000px;}
.x6d{left:533.209800px;}
.x120{left:538.858950px;}
.x5f{left:541.941150px;}
.x11c{left:543.842700px;}
.x71{left:561.143100px;}
.x12f{left:566.820000px;}
.x63{left:569.810550px;}
.x51{left:574.662900px;}
.x70{left:584.956500px;}
.x43{left:588.048900px;}
.xb6{left:592.364400px;}
.xf9{left:596.549100px;}
.x3b{left:600.749250px;}
.xf2{left:603.165750px;}
.x64{left:606.986400px;}
.x13{left:609.826350px;}
.xa5{left:613.111800px;}
.xf1{left:617.809500px;}
.x4a{left:633.936750px;}
.x3a{left:639.600000px;}
.x39{left:646.923600px;}
.x111{left:657.966900px;}
.x4{left:672.354000px;}
.xc1{left:676.045800px;}
.xa7{left:684.182850px;}
.xf{left:718.110000px;}
.x6c{left:725.247000px;}
.xac{left:735.432900px;}
.x97{left:743.850000px;}
.x11f{left:747.382500px;}
.x89{left:749.193000px;}
.x5a{left:752.737500px;}
.x3{left:765.539700px;}
.x49{left:772.253700px;}
.x2b{left:786.330000px;}
.xdd{left:788.127450px;}
.x27{left:825.350400px;}
.x137{left:833.320350px;}
.x1e{left:841.950000px;}
.x84{left:843.897900px;}
.xaa{left:853.236900px;}
.x138{left:862.401450px;}
.xd2{left:889.489500px;}
.xea{left:923.040000px;}
.xa6{left:932.796450px;}
.x155{left:946.030950px;}
.x87{left:956.236350px;}
.x29{left:968.280150px;}
.xb{left:981.350550px;}
.xae{left:985.742100px;}
.x32{left:988.875000px;}
.x1{left:991.617000px;}
.x122{left:995.977650px;}
.x1f{left:1027.831050px;}
.x95{left:1033.936800px;}
.x100{left:1038.494700px;}
.x45{left:1053.177000px;}
.x1a{left:1055.925000px;}
.x103{left:1065.362850px;}
.x22{left:1067.089200px;}
.x3d{left:1068.136650px;}
.x101{left:1069.590450px;}
.x102{left:1072.499550px;}
.x53{left:1080.414600px;}
.x4c{left:1081.719450px;}
.x65{left:1082.788950px;}
.xe9{left:1092.919200px;}
.x124{left:1113.648150px;}
.xe{left:1150.823550px;}
.xd{left:1156.626600px;}
.x132{left:1158.390750px;}
.xc{left:1171.981500px;}
.x104{left:1176.940050px;}
.x62{left:1210.624650px;}
.x23{left:1214.089650px;}
.x150{left:1227.015000px;}
.xaf{left:1228.129950px;}
.x9c{left:1230.958800px;}
.x61{left:1237.403100px;}
.x48{left:1242.209700px;}
.x115{left:1259.097900px;}
.x128{left:1268.827050px;}
.x66{left:1271.967300px;}
.xc2{left:1273.390650px;}
.x113{left:1285.542450px;}
.x114{left:1288.065900px;}
.xfa{left:1322.321400px;}
.x73{left:1336.822800px;}
.x74{left:1341.661200px;}
.xee{left:1352.012400px;}
.xc6{left:1354.242300px;}
.x88{left:1384.241400px;}
.xc7{left:1388.387850px;}
.x72{left:1412.329800px;}
.x129{left:1426.182600px;}
.x2e{left:1434.477300px;}
.x2f{left:1438.663050px;}
.x2c{left:1441.332600px;}
.x2d{left:1451.372700px;}
.xb0{left:1470.517950px;}
.x24{left:1481.242200px;}
.x4d{left:1515.826500px;}
.xb3{left:1542.496500px;}
.x46{left:1544.935500px;}
.x3f{left:1546.461000px;}
.x55{left:1558.531500px;}
.x78{left:1578.058500px;}
.x107{left:1605.837000px;}
.x105{left:1608.837000px;}
.x8c{left:1619.313000px;}
.x130{left:1629.310500px;}
.x8b{left:1642.692000px;}
.x2a{left:1686.526500px;}
.x6{left:1701.792000px;}
.x8d{left:1703.602500px;}
.x9d{left:1731.892500px;}
.x10e{left:1751.551500px;}
.x126{left:1755.853500px;}
.xa8{left:1759.716000px;}
.xcd{left:1761.279000px;}
.xb9{left:1768.438500px;}
.x8a{left:1776.466500px;}
.xce{left:1778.760000px;}
.x133{left:1788.987000px;}
.x12a{left:1794.223500px;}
.xfb{left:1800.609000px;}
.xcf{left:1808.248500px;}
.x10d{left:1810.960500px;}
.x99{left:1817.623500px;}
.xfc{left:1829.437500px;}
.x85{left:1832.466000px;}
.xba{left:1838.538000px;}
.x9b{left:1842.001500px;}
.x5c{left:1848.889500px;}
.x8f{left:1854.777000px;}
.xed{left:1875.913500px;}
.x131{left:1894.642500px;}
.xfd{left:1902.535500px;}
.x8{left:1905.282000px;}
.x127{left:1907.818500px;}
.x1d{left:1914.297000px;}
.x9a{left:1948.999500px;}
.x7{left:1963.374000px;}
.x75{left:1974.603000px;}
.xfe{left:2001.090000px;}
.x1b{left:2003.160000px;}
.xdf{left:2009.859000px;}
.x8e{left:2017.117500px;}
.x47{left:2020.320000px;}
.x5b{left:2029.459500px;}
.x4f{left:2031.228000px;}
.x56{left:2043.235500px;}
.x41{left:2052.322500px;}
.x20{left:2058.166500px;}
.xd7{left:2075.223000px;}
.xd8{left:2080.366500px;}
.x76{left:2081.914500px;}
.x5d{left:2094.811500px;}
.xc8{left:2113.122000px;}
.x10a{left:2115.505500px;}
.x14e{left:2140.972500px;}
.x108{left:2142.943500px;}
.x14d{left:2146.831500px;}
.x6a{left:2155.920000px;}
.x125{left:2167.380000px;}
.x14a{left:2176.846500px;}
.x14c{left:2185.440000px;}
.xda{left:2190.688500px;}
.xdb{left:2192.292000px;}
.x149{left:2199.325500px;}
.xd9{left:2206.027500px;}
.x80{left:2207.586000px;}
.x112{left:2219.617500px;}
.xc9{left:2239.851000px;}
.x109{left:2242.963500px;}
.x14f{left:2246.959500px;}
.xf3{left:2256.358500px;}
.x7f{left:2259.525000px;}
.x14b{left:2265.532500px;}
.x82{left:2274.816000px;}
.x81{left:2277.961500px;}
.xf4{left:2280.423000px;}
.x10c{left:2288.841000px;}
.xa0{left:2305.503000px;}
.xa2{left:2306.580000px;}
.x37{left:2313.741000px;}
.x9e{left:2322.892500px;}
.x13c{left:2329.320000px;}
.x35{left:2344.525500px;}
.xe4{left:2348.610000px;}
.xa4{left:2357.709000px;}
.x9f{left:2378.194500px;}
.xff{left:2380.779000px;}
.xbd{left:2411.317500px;}
.x83{left:2416.368000px;}
.x10f{left:2419.162500px;}
.x13d{left:2420.397000px;}
.x26{left:2437.413000px;}
.x25{left:2461.863000px;}
.x13a{left:2462.967000px;}
.x36{left:2464.333500px;}
.xf0{left:2470.308000px;}
.x139{left:2471.436000px;}
.x34{left:2473.069500px;}
.x13b{left:2480.107500px;}
.x10b{left:2483.901000px;}
.x135{left:2491.263000px;}
.x12b{left:2495.190000px;}
.xa3{left:2496.646500px;}
.xef{left:2506.086000px;}
.x134{left:2526.318000px;}
.x12c{left:2538.732000px;}
.xa1{left:2572.396500px;}
@media print{
.v16{vertical-align:-56.493056pt;}
.vc{vertical-align:-53.658544pt;}
.v15{vertical-align:-47.746405pt;}
.vb{vertical-align:-44.404160pt;}
.v1a{vertical-align:-40.737851pt;}
.v1d{vertical-align:-38.593749pt;}
.v3{vertical-align:-36.449653pt;}
.v5{vertical-align:-33.898176pt;}
.v23{vertical-align:-32.161461pt;}
.va{vertical-align:-26.666667pt;}
.v1b{vertical-align:-25.514757pt;}
.v22{vertical-align:-21.120043pt;}
.v10{vertical-align:-16.000000pt;}
.v14{vertical-align:-13.826389pt;}
.v9{vertical-align:-10.991877pt;}
.v1f{vertical-align:-8.604464pt;}
.v19{vertical-align:-7.680016pt;}
.vf{vertical-align:-6.745616pt;}
.v1e{vertical-align:-4.693343pt;}
.v17{vertical-align:-0.965333pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:16.000000pt;}
.ve{vertical-align:26.666683pt;}
.v4{vertical-align:28.053819pt;}
.v6{vertical-align:33.898176pt;}
.v11{vertical-align:36.449653pt;}
.v7{vertical-align:37.658544pt;}
.v12{vertical-align:40.493056pt;}
.v18{vertical-align:42.875003pt;}
.v1{vertical-align:47.638891pt;}
.v1c{vertical-align:53.859899pt;}
.v21{vertical-align:57.489600pt;}
.v8{vertical-align:71.556720pt;}
.v13{vertical-align:76.942709pt;}
.v20{vertical-align:164.814933pt;}
.v2{vertical-align:277.333333pt;}
.ls2{letter-spacing:-8.512000pt;}
.ls10{letter-spacing:-5.988267pt;}
.ls16{letter-spacing:-5.574400pt;}
.ls36{letter-spacing:-4.180800pt;}
.ls2e{letter-spacing:-3.518592pt;}
.ls8{letter-spacing:-3.001600pt;}
.ls2f{letter-spacing:-2.513280pt;}
.ls9{letter-spacing:-2.393600pt;}
.ls45{letter-spacing:-2.112000pt;}
.lse{letter-spacing:-0.036267pt;}
.ls30{letter-spacing:-0.034133pt;}
.ls35{letter-spacing:-0.032000pt;}
.ls3b{letter-spacing:-0.025600pt;}
.lsd{letter-spacing:-0.024178pt;}
.ls42{letter-spacing:-0.019456pt;}
.ls40{letter-spacing:-0.017600pt;}
.lsf{letter-spacing:-0.014933pt;}
.ls15{letter-spacing:-0.013867pt;}
.ls3d{letter-spacing:-0.010667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.000018pt;}
.ls1c{letter-spacing:0.000160pt;}
.ls2c{letter-spacing:0.006267pt;}
.ls1d{letter-spacing:0.006427pt;}
.ls18{letter-spacing:0.008320pt;}
.ls17{letter-spacing:0.008853pt;}
.ls28{letter-spacing:0.008880pt;}
.lsb{letter-spacing:0.008934pt;}
.ls1a{letter-spacing:0.009067pt;}
.ls19{letter-spacing:0.009227pt;}
.ls3c{letter-spacing:0.009493pt;}
.ls1b{letter-spacing:0.009600pt;}
.ls5{letter-spacing:0.010613pt;}
.ls43{letter-spacing:0.010667pt;}
.ls1e{letter-spacing:0.011243pt;}
.ls32{letter-spacing:0.011253pt;}
.ls1f{letter-spacing:0.011499pt;}
.ls20{letter-spacing:0.012089pt;}
.ls2b{letter-spacing:0.012693pt;}
.ls24{letter-spacing:0.015155pt;}
.ls14{letter-spacing:0.015644pt;}
.ls41{letter-spacing:0.016000pt;}
.ls21{letter-spacing:0.016192pt;}
.ls44{letter-spacing:0.016533pt;}
.ls27{letter-spacing:0.017067pt;}
.ls6{letter-spacing:0.018133pt;}
.ls33{letter-spacing:0.019200pt;}
.ls11{letter-spacing:0.019733pt;}
.ls7{letter-spacing:0.020267pt;}
.ls22{letter-spacing:0.021333pt;}
.ls2d{letter-spacing:0.021813pt;}
.ls25{letter-spacing:0.023360pt;}
.ls12{letter-spacing:0.023467pt;}
.ls23{letter-spacing:0.025067pt;}
.ls37{letter-spacing:0.028966pt;}
.ls26{letter-spacing:0.029333pt;}
.lsa{letter-spacing:0.029867pt;}
.ls29{letter-spacing:0.031147pt;}
.ls13{letter-spacing:0.032000pt;}
.ls38{letter-spacing:0.033236pt;}
.ls1{letter-spacing:0.033769pt;}
.ls31{letter-spacing:0.034261pt;}
.lsc{letter-spacing:0.036267pt;}
.ls3a{letter-spacing:0.038400pt;}
.ls39{letter-spacing:0.044800pt;}
.ls3e{letter-spacing:0.059733pt;}
.ls3f{letter-spacing:0.064000pt;}
.ls2a{letter-spacing:1.670443pt;}
.ls3{letter-spacing:91.452800pt;}
.ls4{letter-spacing:103.242133pt;}
.ws15{word-spacing:-128.000000pt;}
.ws11{word-spacing:-120.888907pt;}
.wsd{word-spacing:-112.426667pt;}
.ws23{word-spacing:-78.222240pt;}
.ws38{word-spacing:-63.040000pt;}
.ws2e{word-spacing:-56.736000pt;}
.ws31{word-spacing:-46.005333pt;}
.ws29{word-spacing:-43.622400pt;}
.ws2a{word-spacing:-43.603200pt;}
.ws13{word-spacing:-43.584000pt;}
.ws24{word-spacing:-42.400000pt;}
.ws25{word-spacing:-42.373333pt;}
.ws2{word-spacing:-41.198933pt;}
.ws28{word-spacing:-41.180800pt;}
.wsf{word-spacing:-41.162667pt;}
.ws4{word-spacing:-41.126400pt;}
.ws1e{word-spacing:-38.886613pt;}
.wsa{word-spacing:-38.281280pt;}
.ws2d{word-spacing:-37.824000pt;}
.ws35{word-spacing:-37.547200pt;}
.ws37{word-spacing:-37.530667pt;}
.ws17{word-spacing:-36.755840pt;}
.ws2c{word-spacing:-33.809067pt;}
.ws27{word-spacing:-33.794133pt;}
.ws2b{word-spacing:-33.749333pt;}
.ws20{word-spacing:-33.621333pt;}
.ws7{word-spacing:-32.618667pt;}
.ws16{word-spacing:-30.670218pt;}
.ws14{word-spacing:-29.056000pt;}
.ws26{word-spacing:-28.966400pt;}
.ws6{word-spacing:-27.910400pt;}
.ws2f{word-spacing:-27.776000pt;}
.ws5{word-spacing:-27.441782pt;}
.ws3{word-spacing:-27.417604pt;}
.ws1c{word-spacing:-26.892938pt;}
.wse{word-spacing:-26.101973pt;}
.ws9{word-spacing:-25.902933pt;}
.ws1a{word-spacing:-25.827552pt;}
.wsb{word-spacing:-25.520853pt;}
.ws1{word-spacing:-25.048181pt;}
.ws32{word-spacing:-25.020448pt;}
.ws30{word-spacing:-24.213333pt;}
.ws34{word-spacing:-22.101333pt;}
.ws8{word-spacing:-21.761427pt;}
.ws1d{word-spacing:-19.209248pt;}
.ws33{word-spacing:-16.142218pt;}
.ws22{word-spacing:-0.195514pt;}
.ws12{word-spacing:-0.192000pt;}
.ws10{word-spacing:-0.181333pt;}
.ws1f{word-spacing:-0.170667pt;}
.wsc{word-spacing:-0.168640pt;}
.ws36{word-spacing:-0.165333pt;}
.ws21{word-spacing:-0.160000pt;}
.ws19{word-spacing:-0.128000pt;}
.ws18{word-spacing:-0.106667pt;}
.ws0{word-spacing:0.000000pt;}
.ws1b{word-spacing:1349.100213pt;}
._27{margin-left:-3482.731200pt;}
._2c{margin-left:-1681.930667pt;}
._12{margin-left:-40.614400pt;}
._2e{margin-left:-38.989824pt;}
._14{margin-left:-36.621867pt;}
._20{margin-left:-32.497344pt;}
._f{margin-left:-29.576533pt;}
._2f{margin-left:-27.694933pt;}
._23{margin-left:-26.720000pt;}
._a{margin-left:-25.651200pt;}
._1d{margin-left:-24.174080pt;}
._4{margin-left:-23.097600pt;}
._28{margin-left:-21.600000pt;}
._1c{margin-left:-19.488427pt;}
._11{margin-left:-17.949867pt;}
._18{margin-left:-16.653867pt;}
._15{margin-left:-14.166400pt;}
._17{margin-left:-13.077333pt;}
._1f{margin-left:-12.078933pt;}
._1a{margin-left:-11.168000pt;}
._1e{margin-left:-10.072533pt;}
._7{margin-left:-8.960000pt;}
._e{margin-left:-7.984000pt;}
._9{margin-left:-6.442667pt;}
._3{margin-left:-4.800000pt;}
._6{margin-left:-3.859200pt;}
._8{margin-left:-2.560000pt;}
._0{margin-left:-1.600000pt;}
._1{width:1.600000pt;}
._2{width:2.560000pt;}
._10{width:3.864533pt;}
._19{width:5.546667pt;}
._d{width:6.576000pt;}
._5{width:7.910400pt;}
._c{width:9.100800pt;}
._21{width:26.034604pt;}
._2d{width:82.392533pt;}
._16{width:87.040000pt;}
._22{width:88.092800pt;}
._13{width:103.242133pt;}
._26{width:104.171733pt;}
._25{width:113.694933pt;}
._24{width:222.372267pt;}
._2b{width:299.283200pt;}
._b{width:631.680747pt;}
._1b{width:763.408000pt;}
._29{width:1014.584533pt;}
._2a{width:1511.163733pt;}
.fs3a{font-size:71.111093pt;}
.fs10{font-size:78.222240pt;}
.fs2e{font-size:84.622240pt;}
.fs16{font-size:87.608907pt;}
.fs25{font-size:99.555573pt;}
.fs24{font-size:106.666667pt;}
.fs37{font-size:110.222240pt;}
.fs12{font-size:112.426667pt;}
.fs26{font-size:113.777760pt;}
.fs13{font-size:114.986667pt;}
.fsf{font-size:117.333333pt;}
.fs2a{font-size:118.471093pt;}
.fs7{font-size:120.640000pt;}
.fsb{font-size:120.888907pt;}
.fs6{font-size:121.600000pt;}
.fs2c{font-size:122.666667pt;}
.fs2d{font-size:126.933333pt;}
.fs2{font-size:128.000000pt;}
.fs15{font-size:131.413333pt;}
.fs2b{font-size:133.333333pt;}
.fs22{font-size:135.111093pt;}
.fsd{font-size:138.666667pt;}
.fs4{font-size:142.222240pt;}
.fs21{font-size:145.066667pt;}
.fs8{font-size:149.333333pt;}
.fs1f{font-size:152.533333pt;}
.fs14{font-size:158.400000pt;}
.fs19{font-size:159.573333pt;}
.fs9{font-size:160.000000pt;}
.fs1a{font-size:161.920000pt;}
.fs1e{font-size:162.133333pt;}
.fs1c{font-size:165.333333pt;}
.fs28{font-size:166.400000pt;}
.fs11{font-size:168.640000pt;}
.fs1d{font-size:170.666667pt;}
.fs2f{font-size:171.306667pt;}
.fs23{font-size:176.000000pt;}
.fs29{font-size:177.706667pt;}
.fs30{font-size:178.154187pt;}
.fs5{font-size:180.480000pt;}
.fsa{font-size:181.333333pt;}
.fs35{font-size:186.666667pt;}
.fs1{font-size:192.000000pt;}
.fs39{font-size:194.560000pt;}
.fs33{font-size:195.514027pt;}
.fsc{font-size:202.666667pt;}
.fs20{font-size:204.800000pt;}
.fs31{font-size:208.000000pt;}
.fs3{font-size:213.333333pt;}
.fs32{font-size:217.125440pt;}
.fs38{font-size:218.666667pt;}
.fs1b{font-size:224.000000pt;}
.fs18{font-size:241.920000pt;}
.fs27{font-size:245.333333pt;}
.fse{font-size:266.666667pt;}
.fs17{font-size:277.333333pt;}
.fs34{font-size:288.000000pt;}
.fs0{font-size:320.000000pt;}
.fs36{font-size:428.800000pt;}
.yf6{bottom:-0.000067pt;}
.y0{bottom:0.000000pt;}
.y12d{bottom:0.646400pt;}
.yb9{bottom:3.038667pt;}
.y117{bottom:4.018800pt;}
.ybb{bottom:4.438400pt;}
.y119{bottom:5.039600pt;}
.yb7{bottom:5.865467pt;}
.y120{bottom:7.706267pt;}
.ye1{bottom:9.130427pt;}
.yf4{bottom:10.020067pt;}
.ye5{bottom:11.127693pt;}
.yc8{bottom:11.812400pt;}
.yb5{bottom:11.812533pt;}
.y8d{bottom:15.363867pt;}
.y91{bottom:15.364000pt;}
.yb3{bottom:15.862933pt;}
.y46{bottom:16.572800pt;}
.y41{bottom:16.572933pt;}
.y93{bottom:17.919200pt;}
.yf5{bottom:26.138200pt;}
.y124{bottom:26.906267pt;}
.y137{bottom:27.551733pt;}
.y53{bottom:30.090533pt;}
.yb0{bottom:31.376933pt;}
.y59{bottom:32.484400pt;}
.y49{bottom:34.277333pt;}
.y3e{bottom:39.550800pt;}
.y68{bottom:40.025333pt;}
.y86{bottom:40.025467pt;}
.y4{bottom:40.284480pt;}
.y78{bottom:41.082400pt;}
.yc0{bottom:42.345733pt;}
.y83{bottom:43.505867pt;}
.y8c{bottom:47.363867pt;}
.y90{bottom:47.364000pt;}
.y45{bottom:51.239467pt;}
.y40{bottom:51.239600pt;}
.y66{bottom:53.319467pt;}
.y76{bottom:65.736267pt;}
.yce{bottom:73.900320pt;}
.y10f{bottom:79.112667pt;}
.y4d{bottom:87.610667pt;}
.ye7{bottom:132.735107pt;}
.y3b{bottom:141.856400pt;}
.y11b{bottom:156.058667pt;}
.y12b{bottom:157.590800pt;}
.y9d{bottom:168.342667pt;}
.y147{bottom:168.874400pt;}
.y115{bottom:173.876400pt;}
.y23{bottom:175.359200pt;}
.yd5{bottom:177.752000pt;}
.ycb{bottom:180.964000pt;}
.y60{bottom:194.030133pt;}
.y57{bottom:195.032133pt;}
.y3a{bottom:195.189733pt;}
.y64{bottom:202.389200pt;}
.yac{bottom:202.634267pt;}
.y26{bottom:205.717467pt;}
.y10c{bottom:206.668933pt;}
.yf0{bottom:208.001733pt;}
.y128{bottom:211.810400pt;}
.y114{bottom:212.543067pt;}
.y72{bottom:212.736667pt;}
.y151{bottom:215.533067pt;}
.y146{bottom:218.207733pt;}
.y30{bottom:218.525733pt;}
.y177{bottom:220.372800pt;}
.y11a{bottom:226.725333pt;}
.yd4{bottom:231.085333pt;}
.y9c{bottom:232.342667pt;}
.y14b{bottom:233.634800pt;}
.y7a{bottom:233.796933pt;}
.yd6{bottom:237.630267pt;}
.y182{bottom:242.115600pt;}
.y10b{bottom:245.335600pt;}
.y32{bottom:245.628133pt;}
.yca{bottom:249.808533pt;}
.y113{bottom:251.209733pt;}
.y18e{bottom:252.741333pt;}
.y12a{bottom:254.385200pt;}
.yef{bottom:257.335067pt;}
.y4b{bottom:261.166400pt;}
.y5f{bottom:264.696800pt;}
.y56{bottom:265.832133pt;}
.y16c{bottom:267.230400pt;}
.y145{bottom:267.541067pt;}
.y13e{bottom:269.564533pt;}
.y5{bottom:275.009600pt;}
.y25{bottom:276.384133pt;}
.y71{bottom:276.736667pt;}
.y36{bottom:280.294800pt;}
.yab{bottom:282.260933pt;}
.y10a{bottom:284.002267pt;}
.yd3{bottom:284.418667pt;}
.y176{bottom:285.706133pt;}
.y129{bottom:286.385200pt;}
.y112{bottom:289.876400pt;}
.y63{bottom:296.522533pt;}
.y149{bottom:297.379067pt;}
.y150{bottom:300.866400pt;}
.yee{bottom:306.668400pt;}
.y31{bottom:306.961467pt;}
.y74{bottom:307.474400pt;}
.y16b{bottom:308.563733pt;}
.y181{bottom:312.782267pt;}
.y144{bottom:316.874400pt;}
.y130{bottom:321.545733pt;}
.y109{bottom:322.668933pt;}
.y18d{bottom:323.408000pt;}
.y126{bottom:323.659333pt;}
.ybc{bottom:323.721467pt;}
.y111{bottom:328.543067pt;}
.y101{bottom:328.823733pt;}
.y1c{bottom:328.823867pt;}
.y5e{bottom:335.363467pt;}
.y70{bottom:340.736667pt;}
.yd2{bottom:342.880400pt;}
.y1e{bottom:346.967733pt;}
.y24{bottom:347.050800pt;}
.y16a{bottom:349.897067pt;}
.y175{bottom:351.039467pt;}
.ye8{bottom:351.472667pt;}
.ybe{bottom:357.720000pt;}
.y148{bottom:358.712400pt;}
.y143{bottom:366.207733pt;}
.yb8{bottom:383.596667pt;}
.y80{bottom:383.607467pt;}
.y100{bottom:390.157067pt;}
.y1b{bottom:390.157200pt;}
.y13d{bottom:391.343600pt;}
.y12f{bottom:392.212400pt;}
.y18c{bottom:394.074667pt;}
.yd1{bottom:396.213733pt;}
.y8f{bottom:396.251733pt;}
.ycd{bottom:396.442133pt;}
.y6f{bottom:404.736667pt;}
.y108{bottom:408.303467pt;}
.y55{bottom:411.362133pt;}
.y50{bottom:413.516533pt;}
.y127{bottom:415.150000pt;}
.y14a{bottom:415.218133pt;}
.y142{bottom:415.541067pt;}
.y158{bottom:418.625467pt;}
.y103{bottom:423.454267pt;}
.y169{bottom:432.563733pt;}
.yf3{bottom:442.399200pt;}
.yd0{bottom:449.547067pt;}
.yff{bottom:451.490400pt;}
.y1a{bottom:451.490533pt;}
.yf2{bottom:452.419333pt;}
.ycc{bottom:453.775467pt;}
.y180{bottom:454.115600pt;}
.yfc{bottom:463.251467pt;}
.y18b{bottom:464.741333pt;}
.y4e{bottom:467.459733pt;}
.y168{bottom:473.897067pt;}
.yf{bottom:478.772533pt;}
.yb{bottom:478.917200pt;}
.y22{bottom:481.826933pt;}
.y54{bottom:482.828800pt;}
.y131{bottom:484.171067pt;}
.y4f{bottom:487.796667pt;}
.y9a{bottom:488.567067pt;}
.y157{bottom:494.092133pt;}
.ya5{bottom:495.581600pt;}
.y14{bottom:500.259733pt;}
.y8e{bottom:500.406533pt;}
.y11e{bottom:507.771333pt;}
.y174{bottom:511.335200pt;}
.y167{bottom:515.230400pt;}
.yf1{bottom:515.385733pt;}
.yfb{bottom:516.584800pt;}
.y17f{bottom:524.782267pt;}
.ye{bottom:525.439200pt;}
.ya{bottom:525.583867pt;}
.y135{bottom:526.040000pt;}
.y88{bottom:527.773467pt;}
.yc6{bottom:538.631867pt;}
.y8{bottom:542.537733pt;}
.y6e{bottom:543.447733pt;}
.y99{bottom:553.900400pt;}
.y3{bottom:554.174933pt;}
.y166{bottom:556.563733pt;}
.y13{bottom:561.593067pt;}
.ya4{bottom:563.581600pt;}
.y156{bottom:569.558800pt;}
.y18a{bottom:570.670533pt;}
.yd{bottom:572.105867pt;}
.y9{bottom:572.250533pt;}
.y8b{bottom:574.604400pt;}
.ya9{bottom:574.879733pt;}
.y173{bottom:575.335200pt;}
.yc7{bottom:593.327733pt;}
.y17e{bottom:595.448933pt;}
.y165{bottom:597.897067pt;}
.y10e{bottom:604.911067pt;}
.y44{bottom:612.644267pt;}
.y28{bottom:614.369333pt;}
.y98{bottom:619.233733pt;}
.y12{bottom:622.926400pt;}
.ya8{bottom:625.546400pt;}
.y6d{bottom:628.781067pt;}
.y47{bottom:629.148000pt;}
.y172{bottom:639.335200pt;}
.y189{bottom:641.337200pt;}
.y155{bottom:645.025467pt;}
.yf9{bottom:649.223467pt;}
.y8a{bottom:653.314133pt;}
.ya3{bottom:657.714933pt;}
.y10d{bottom:668.148667pt;}
.y2{bottom:669.944933pt;}
.ydf{bottom:675.596133pt;}
.ya7{bottom:676.213067pt;}
.y110{bottom:682.169200pt;}
.y11{bottom:684.259733pt;}
.y11d{bottom:696.105333pt;}
.y164{bottom:703.188267pt;}
.y171{bottom:703.335200pt;}
.y188{bottom:712.003867pt;}
.y81{bottom:713.454400pt;}
.y6c{bottom:714.114400pt;}
.yb4{bottom:716.828400pt;}
.y4a{bottom:720.619600pt;}
.y48{bottom:721.952933pt;}
.ya2{bottom:725.714933pt;}
.ya6{bottom:726.879733pt;}
.ybd{bottom:728.534000pt;}
.y123{bottom:728.860933pt;}
.y138{bottom:735.173733pt;}
.y17d{bottom:736.782267pt;}
.yde{bottom:740.929467pt;}
.y163{bottom:744.521600pt;}
.y84{bottom:747.034267pt;}
.y116{bottom:748.649200pt;}
.y97{bottom:749.900400pt;}
.y1{bottom:776.611600pt;}
.y187{bottom:782.670533pt;}
.y162{bottom:785.854933pt;}
.yed{bottom:786.855600pt;}
.ye0{bottom:798.261200pt;}
.y6b{bottom:799.447733pt;}
.ydd{bottom:807.391600pt;}
.y17c{bottom:807.448933pt;}
.yc9{bottom:808.702400pt;}
.y118{bottom:813.617200pt;}
.y96{bottom:815.233733pt;}
.y11f{bottom:815.761867pt;}
.y79{bottom:824.045733pt;}
.y170{bottom:828.711733pt;}
.yeb{bottom:833.158267pt;}
.y7f{bottom:834.226400pt;}
.yda{bottom:837.087867pt;}
.y154{bottom:839.011600pt;}
.y27{bottom:843.807600pt;}
.y12e{bottom:853.393067pt;}
.y105{bottom:859.344800pt;}
.ye2{bottom:865.896667pt;}
.y14d{bottom:867.008133pt;}
.y161{bottom:868.521600pt;}
.yc1{bottom:871.307600pt;}
.ydc{bottom:874.984400pt;}
.y17b{bottom:878.115600pt;}
.y95{bottom:880.567067pt;}
.yaf{bottom:884.335067pt;}
.y6a{bottom:884.781067pt;}
.y16f{bottom:892.711733pt;}
.y4c{bottom:893.165067pt;}
.yea{bottom:894.491600pt;}
.yd9{bottom:898.421200pt;}
.y160{bottom:909.854933pt;}
.y7e{bottom:912.893067pt;}
.ya0{bottom:915.902133pt;}
.y65{bottom:926.977467pt;}
.y153{bottom:929.038267pt;}
.y12c{bottom:929.685600pt;}
.y186{bottom:936.244533pt;}
.yb6{bottom:938.940933pt;}
.y67{bottom:940.781600pt;}
.y94{bottom:945.900400pt;}
.y15f{bottom:951.188267pt;}
.y122{bottom:952.698400pt;}
.ye9{bottom:955.824933pt;}
.y2d{bottom:955.840000pt;}
.y16e{bottom:956.711733pt;}
.yae{bottom:957.023333pt;}
.yba{bottom:959.172000pt;}
.y14c{bottom:961.674800pt;}
.y69{bottom:970.114400pt;}
.y92{bottom:976.969733pt;}
.y61{bottom:978.753200pt;}
.y9f{bottom:986.568800pt;}
.y139{bottom:993.092267pt;}
.ycf{bottom:996.217333pt;}
.y121{bottom:998.031733pt;}
.ye6{bottom:1003.067200pt;}
.yad{bottom:1005.023333pt;}
.y2c{bottom:1005.173333pt;}
.y185{bottom:1006.911200pt;}
.y134{bottom:1012.664000pt;}
.y13a{bottom:1014.608933pt;}
.y10{bottom:1018.841867pt;}
.y152{bottom:1019.064933pt;}
.y17a{bottom:1019.448933pt;}
.y16d{bottom:1020.711733pt;}
.y73{bottom:1023.897200pt;}
.y18{bottom:1024.182267pt;}
.y85{bottom:1030.133333pt;}
.y15e{bottom:1033.854933pt;}
.y159{bottom:1034.837467pt;}
.y87{bottom:1036.800000pt;}
.y62{bottom:1039.466400pt;}
.y141{bottom:1046.754533pt;}
.yb2{bottom:1052.429867pt;}
.y133{bottom:1052.520800pt;}
.y13c{bottom:1054.194400pt;}
.y5a{bottom:1055.401733pt;}
.ya1{bottom:1060.421200pt;}
.y104{bottom:1060.444400pt;}
.y75{bottom:1064.354133pt;}
.y35{bottom:1067.857467pt;}
.y7d{bottom:1070.226400pt;}
.yc5{bottom:1073.834400pt;}
.y15d{bottom:1075.188267pt;}
.y43{bottom:1076.523467pt;}
.y184{bottom:1077.577867pt;}
.y42{bottom:1079.190133pt;}
.y21{bottom:1081.896667pt;}
.y3f{bottom:1083.277467pt;}
.y9e{bottom:1083.902133pt;}
.y52{bottom:1083.975200pt;}
.y5b{bottom:1084.057733pt;}
.y77{bottom:1085.026533pt;}
.y17{bottom:1085.515600pt;}
.y132{bottom:1089.423867pt;}
.y179{bottom:1090.115600pt;}
.y58{bottom:1090.867867pt;}
.y14f{bottom:1096.415333pt;}
.y7{bottom:1102.481867pt;}
.yd8{bottom:1105.960667pt;}
.y13b{bottom:1109.639867pt;}
.yc2{bottom:1110.289467pt;}
.y82{bottom:1111.125867pt;}
.y140{bottom:1114.754533pt;}
.y107{bottom:1114.925067pt;}
.y15c{bottom:1116.521600pt;}
.yf8{bottom:1117.312533pt;}
.yfa{bottom:1128.825600pt;}
.y34{bottom:1129.190800pt;}
.y5d{bottom:1134.365600pt;}
.y2e{bottom:1136.238800pt;}
.y2b{bottom:1139.432667pt;}
.yc4{bottom:1144.501067pt;}
.y125{bottom:1145.162667pt;}
.y16{bottom:1146.848933pt;}
.y2f{bottom:1147.715200pt;}
.y183{bottom:1148.244533pt;}
.y7c{bottom:1148.893067pt;}
.y9b{bottom:1149.410133pt;}
.ybf{bottom:1149.571867pt;}
.y3d{bottom:1150.849467pt;}
.y20{bottom:1152.563333pt;}
.ye4{bottom:1153.559333pt;}
.y11c{bottom:1156.225067pt;}
.y136{bottom:1156.833733pt;}
.y15b{bottom:1157.854933pt;}
.y14e{bottom:1160.415333pt;}
.y178{bottom:1160.782267pt;}
.y2a{bottom:1162.339067pt;}
.ye3{bottom:1164.687067pt;}
.y39{bottom:1166.267867pt;}
.yd7{bottom:1171.294000pt;}
.y6{bottom:1171.815200pt;}
.yaa{bottom:1178.073067pt;}
.yfe{bottom:1180.287067pt;}
.y15a{bottom:1182.515200pt;}
.y51{bottom:1185.173600pt;}
.y33{bottom:1190.524133pt;}
.y13f{bottom:1199.013600pt;}
.yc3{bottom:1215.167733pt;}
.y15{bottom:1216.182267pt;}
.y38{bottom:1223.601200pt;}
.y29{bottom:1257.005733pt;}
.yfd{bottom:1274.953733pt;}
.y37{bottom:1280.934533pt;}
.y106{bottom:1284.273333pt;}
.y1d{bottom:1286.543600pt;}
.y1f{bottom:1286.819200pt;}
.y102{bottom:1295.645867pt;}
.ydb{bottom:1298.162533pt;}
.yc{bottom:1304.233600pt;}
.y7b{bottom:1304.425200pt;}
.y19{bottom:1304.760533pt;}
.yf7{bottom:1305.000667pt;}
.yb1{bottom:1305.144800pt;}
.y3c{bottom:1305.827067pt;}
.y5c{bottom:1306.868533pt;}
.y89{bottom:1308.419200pt;}
.yec{bottom:1316.907867pt;}
.h56{height:23.466667pt;}
.h42{height:28.771907pt;}
.h49{height:31.575520pt;}
.h58{height:32.800000pt;}
.h59{height:35.466667pt;}
.h3e{height:35.467093pt;}
.h4b{height:41.290600pt;}
.h3c{height:44.800427pt;}
.h46{height:47.930440pt;}
.h39{height:55.467093pt;}
.h4c{height:60.609348pt;}
.h31{height:64.266453pt;}
.h5b{height:64.266667pt;}
.h37{height:72.481773pt;}
.h57{height:72.500000pt;}
.h1b{height:76.012507pt;}
.h18{height:76.177600pt;}
.h5c{height:76.562500pt;}
.h30{height:79.114583pt;}
.h15{height:80.078120pt;}
.h2f{height:82.830933pt;}
.h14{height:86.453125pt;}
.h5d{height:87.000000pt;}
.h13{height:88.986880pt;}
.h4e{height:91.050667pt;}
.h29{height:91.463213pt;}
.h52{height:91.875000pt;}
.h12{height:92.192707pt;}
.h22{height:93.896360pt;}
.h3f{height:93.979167pt;}
.h40{height:98.373440pt;}
.h3{height:99.328000pt;}
.h60{height:100.260417pt;}
.h53{height:101.500000pt;}
.h2d{height:101.945307pt;}
.h20{height:105.984533pt;}
.h5a{height:107.221333pt;}
.hd{height:110.760417pt;}
.h9{height:113.394531pt;}
.h8{height:114.296875pt;}
.h36{height:115.299479pt;}
.h3b{height:115.666667pt;}
.hf{height:115.882667pt;}
.h38{height:119.309896pt;}
.h28{height:119.607280pt;}
.h6{height:120.312500pt;}
.h43{height:120.788539pt;}
.h3d{height:122.895833pt;}
.h1c{height:123.520833pt;}
.h48{height:124.160000pt;}
.h35{height:125.325521pt;}
.h4d{height:127.670659pt;}
.h10{height:130.338542pt;}
.h44{height:132.437333pt;}
.h4a{height:132.558510pt;}
.h16{height:133.411467pt;}
.h19{height:134.747396pt;}
.h2c{height:136.354167pt;}
.ha{height:140.364583pt;}
.h2a{height:143.372396pt;}
.h2b{height:147.046400pt;}
.h47{height:147.211048pt;}
.h21{height:149.989583pt;}
.hb{height:150.390625pt;}
.h23{height:152.195312pt;}
.h27{height:152.395833pt;}
.h25{height:155.403646pt;}
.h33{height:156.406250pt;}
.h26{height:160.416667pt;}
.h41{height:161.018229pt;}
.h2e{height:165.429688pt;}
.h34{height:167.033854pt;}
.h5{height:169.640625pt;}
.hc{height:170.442708pt;}
.h50{height:175.455729pt;}
.h2{height:180.468750pt;}
.h54{height:181.600000pt;}
.h5f{height:182.875000pt;}
.h17{height:185.178385pt;}
.he{height:190.494792pt;}
.h45{height:195.507812pt;}
.h1a{height:197.109375pt;}
.h4{height:200.520833pt;}
.h5e{height:205.533854pt;}
.h11{height:206.933333pt;}
.h1f{height:207.135417pt;}
.h24{height:210.546875pt;}
.h1d{height:215.210667pt;}
.h4f{height:223.488000pt;}
.h1e{height:227.390625pt;}
.h32{height:230.598958pt;}
.h1{height:248.320000pt;}
.h55{height:307.878400pt;}
.h51{height:362.669117pt;}
.h3a{height:370.716933pt;}
.h7{height:446.973958pt;}
.h0{height:1440.000000pt;}
.w20{width:30.071867pt;}
.w19{width:39.467067pt;}
.w22{width:43.501867pt;}
.w1f{width:56.252187pt;}
.w21{width:61.733547pt;}
.w23{width:94.252480pt;}
.w15{width:116.815960pt;}
.w13{width:120.605107pt;}
.w26{width:128.009813pt;}
.w16{width:129.876760pt;}
.w17{width:143.614267pt;}
.w14{width:144.394133pt;}
.w24{width:149.156933pt;}
.w25{width:154.490267pt;}
.w1c{width:164.290400pt;}
.w5{width:166.067333pt;}
.w1a{width:170.196667pt;}
.w3{width:205.499333pt;}
.w1e{width:215.996000pt;}
.w4{width:217.612133pt;}
.w27{width:225.233200pt;}
.w6{width:240.147733pt;}
.w2{width:276.528267pt;}
.w29{width:286.505867pt;}
.we{width:286.805600pt;}
.wf{width:287.258267pt;}
.w10{width:293.356800pt;}
.w1d{width:295.167200pt;}
.wc{width:298.724933pt;}
.wb{width:298.890000pt;}
.w1{width:303.427067pt;}
.w11{width:310.013733pt;}
.w7{width:328.660000pt;}
.wd{width:343.041333pt;}
.w18{width:345.263733pt;}
.w8{width:363.815733pt;}
.wa{width:368.674533pt;}
.w9{width:439.125867pt;}
.w1b{width:479.202667pt;}
.w28{width:521.651467pt;}
.w12{width:1425.365333pt;}
.w0{width:2560.000000pt;}
.x0{left:0.000000pt;}
.xdc{left:1.469333pt;}
.x44{left:9.826800pt;}
.xad{left:12.240933pt;}
.x106{left:14.201333pt;}
.x77{left:15.776000pt;}
.x86{left:17.173333pt;}
.x94{left:18.690667pt;}
.x6b{left:21.426667pt;}
.x52{left:23.750133pt;}
.x4b{left:25.189333pt;}
.xb7{left:26.768267pt;}
.x69{left:28.199733pt;}
.x121{left:33.586267pt;}
.x4e{left:37.274667pt;}
.x54{left:38.197333pt;}
.xc0{left:43.266533pt;}
.x123{left:44.319600pt;}
.x67{left:48.147467pt;}
.xbe{left:50.794667pt;}
.x40{left:54.486667pt;}
.xbc{left:57.434667pt;}
.x14{left:58.430760pt;}
.x5e{left:64.721333pt;}
.x3c{left:66.215467pt;}
.x96{left:67.393067pt;}
.x42{left:69.868000pt;}
.xa9{left:71.829480pt;}
.x3e{left:74.672667pt;}
.x117{left:81.049747pt;}
.x50{left:84.865333pt;}
.x16{left:89.075293pt;}
.x57{left:90.958667pt;}
.xb5{left:92.327200pt;}
.x11d{left:94.571747pt;}
.x11e{left:97.238413pt;}
.xb8{left:99.318133pt;}
.x7d{left:101.664560pt;}
.x59{left:102.630800pt;}
.xbb{left:105.996000pt;}
.x118{left:112.205867pt;}
.x15{left:114.280373pt;}
.x7a{left:121.270027pt;}
.x7b{left:123.908707pt;}
.x116{left:129.860920pt;}
.x7c{left:138.537600pt;}
.x7e{left:148.381333pt;}
.xe3{left:153.057333pt;}
.x90{left:161.449600pt;}
.x147{left:162.505733pt;}
.x79{left:163.543467pt;}
.x98{left:174.397200pt;}
.x146{left:180.031733pt;}
.xe2{left:190.820933pt;}
.x140{left:193.857067pt;}
.xe1{left:200.205733pt;}
.xab{left:203.534800pt;}
.x142{left:205.608267pt;}
.x38{left:212.016533pt;}
.xe0{left:216.197733pt;}
.x17{left:218.108533pt;}
.x11b{left:225.987067pt;}
.xe8{left:227.470133pt;}
.xe5{left:229.769333pt;}
.xe7{left:231.421200pt;}
.x154{left:233.214400pt;}
.x119{left:237.864133pt;}
.x110{left:240.746267pt;}
.x58{left:246.070933pt;}
.xe6{left:256.436000pt;}
.x148{left:262.499200pt;}
.x30{left:268.222533pt;}
.x11a{left:285.444133pt;}
.x12e{left:287.999467pt;}
.x13e{left:289.176000pt;}
.x1c{left:290.560000pt;}
.x141{left:292.379200pt;}
.x157{left:293.886533pt;}
.x31{left:294.889200pt;}
.x12d{left:295.827600pt;}
.x144{left:299.471867pt;}
.x143{left:301.044533pt;}
.xd1{left:307.313600pt;}
.x151{left:310.470933pt;}
.x13f{left:313.590133pt;}
.x145{left:315.591733pt;}
.xb2{left:316.696933pt;}
.xb4{left:320.319467pt;}
.xd4{left:327.135733pt;}
.x91{left:328.198133pt;}
.x6e{left:329.851200pt;}
.xec{left:330.957333pt;}
.xa{left:333.315733pt;}
.x152{left:334.470933pt;}
.x33{left:336.620000pt;}
.x153{left:339.881067pt;}
.x68{left:344.902400pt;}
.xf6{left:350.541600pt;}
.xc3{left:351.850267pt;}
.xcc{left:355.485333pt;}
.x28{left:359.555867pt;}
.xd6{left:366.700000pt;}
.x9{left:368.929333pt;}
.xd3{left:372.615600pt;}
.xf8{left:374.328400pt;}
.xf7{left:376.500267pt;}
.x93{left:381.680267pt;}
.xca{left:384.041333pt;}
.xc4{left:389.241600pt;}
.xcb{left:390.448267pt;}
.x6f{left:394.187867pt;}
.x156{left:400.553200pt;}
.x18{left:405.218267pt;}
.x92{left:409.095200pt;}
.xde{left:411.300933pt;}
.xb1{left:417.600000pt;}
.x21{left:419.676000pt;}
.x11{left:421.444533pt;}
.xd0{left:423.974133pt;}
.xd5{left:424.899467pt;}
.x136{left:425.946000pt;}
.x19{left:431.884933pt;}
.xbf{left:433.414400pt;}
.x12{left:444.344400pt;}
.xf5{left:446.808800pt;}
.x10{left:450.986000pt;}
.x5{left:455.586800pt;}
.xeb{left:457.537867pt;}
.x60{left:465.614533pt;}
.xc5{left:470.690800pt;}
.x2{left:472.037333pt;}
.x6d{left:473.964267pt;}
.x120{left:478.985733pt;}
.x5f{left:481.725467pt;}
.x11c{left:483.415733pt;}
.x71{left:498.793867pt;}
.x12f{left:503.840000pt;}
.x63{left:506.498267pt;}
.x51{left:510.811467pt;}
.x70{left:519.961333pt;}
.x43{left:522.710133pt;}
.xb6{left:526.546133pt;}
.xf9{left:530.265867pt;}
.x3b{left:533.999333pt;}
.xf2{left:536.147333pt;}
.x64{left:539.543467pt;}
.x13{left:542.067867pt;}
.xa5{left:544.988267pt;}
.xf1{left:549.164000pt;}
.x4a{left:563.499333pt;}
.x3a{left:568.533333pt;}
.x39{left:575.043200pt;}
.x111{left:584.859467pt;}
.x4{left:597.648000pt;}
.xc1{left:600.929600pt;}
.xa7{left:608.162533pt;}
.xf{left:638.320000pt;}
.x6c{left:644.664000pt;}
.xac{left:653.718133pt;}
.x97{left:661.200000pt;}
.x11f{left:664.340000pt;}
.x89{left:665.949333pt;}
.x5a{left:669.100000pt;}
.x3{left:680.479733pt;}
.x49{left:686.447733pt;}
.x2b{left:698.960000pt;}
.xdd{left:700.557733pt;}
.x27{left:733.644800pt;}
.x137{left:740.729200pt;}
.x1e{left:748.400000pt;}
.x84{left:750.131467pt;}
.xaa{left:758.432800pt;}
.x138{left:766.579067pt;}
.xd2{left:790.657333pt;}
.xea{left:820.480000pt;}
.xa6{left:829.152400pt;}
.x155{left:840.916400pt;}
.x87{left:849.987867pt;}
.x29{left:860.693467pt;}
.xb{left:872.311600pt;}
.xae{left:876.215200pt;}
.x32{left:879.000000pt;}
.x1{left:881.437333pt;}
.x122{left:885.313467pt;}
.x1f{left:913.627600pt;}
.x95{left:919.054933pt;}
.x100{left:923.106400pt;}
.x45{left:936.157333pt;}
.x1a{left:938.600000pt;}
.x103{left:946.989200pt;}
.x22{left:948.523733pt;}
.x3d{left:949.454800pt;}
.x101{left:950.747067pt;}
.x102{left:953.332933pt;}
.x53{left:960.368533pt;}
.x4c{left:961.528400pt;}
.x65{left:962.479067pt;}
.xe9{left:971.483733pt;}
.x124{left:989.909467pt;}
.xe{left:1022.954267pt;}
.xd{left:1028.112533pt;}
.x132{left:1029.680667pt;}
.xc{left:1041.761333pt;}
.x104{left:1046.168933pt;}
.x62{left:1076.110800pt;}
.x23{left:1079.190800pt;}
.x150{left:1090.680000pt;}
.xaf{left:1091.671067pt;}
.x9c{left:1094.185600pt;}
.x61{left:1099.913867pt;}
.x48{left:1104.186400pt;}
.x115{left:1119.198133pt;}
.x128{left:1127.846267pt;}
.x66{left:1130.637600pt;}
.xc2{left:1131.902800pt;}
.x113{left:1142.704400pt;}
.x114{left:1144.947467pt;}
.xfa{left:1175.396800pt;}
.x73{left:1188.286933pt;}
.x74{left:1192.587733pt;}
.xee{left:1201.788800pt;}
.xc6{left:1203.770933pt;}
.x88{left:1230.436800pt;}
.xc7{left:1234.122533pt;}
.x72{left:1255.404267pt;}
.x129{left:1267.717867pt;}
.x2e{left:1275.090933pt;}
.x2f{left:1278.811600pt;}
.x2c{left:1281.184533pt;}
.x2d{left:1290.109067pt;}
.xb0{left:1307.127067pt;}
.x24{left:1316.659733pt;}
.x4d{left:1347.401333pt;}
.xb3{left:1371.108000pt;}
.x46{left:1373.276000pt;}
.x3f{left:1374.632000pt;}
.x55{left:1385.361333pt;}
.x78{left:1402.718667pt;}
.x107{left:1427.410667pt;}
.x105{left:1430.077333pt;}
.x8c{left:1439.389333pt;}
.x130{left:1448.276000pt;}
.x8b{left:1460.170667pt;}
.x2a{left:1499.134667pt;}
.x6{left:1512.704000pt;}
.x8d{left:1514.313333pt;}
.x9d{left:1539.460000pt;}
.x10e{left:1556.934667pt;}
.x126{left:1560.758667pt;}
.xa8{left:1564.192000pt;}
.xcd{left:1565.581333pt;}
.xb9{left:1571.945333pt;}
.x8a{left:1579.081333pt;}
.xce{left:1581.120000pt;}
.x133{left:1590.210667pt;}
.x12a{left:1594.865333pt;}
.xfb{left:1600.541333pt;}
.xcf{left:1607.332000pt;}
.x10d{left:1609.742667pt;}
.x99{left:1615.665333pt;}
.xfc{left:1626.166667pt;}
.x85{left:1628.858667pt;}
.xba{left:1634.256000pt;}
.x9b{left:1637.334667pt;}
.x5c{left:1643.457333pt;}
.x8f{left:1648.690667pt;}
.xed{left:1667.478667pt;}
.x131{left:1684.126667pt;}
.xfd{left:1691.142667pt;}
.x8{left:1693.584000pt;}
.x127{left:1695.838667pt;}
.x1d{left:1701.597333pt;}
.x9a{left:1732.444000pt;}
.x7{left:1745.221333pt;}
.x75{left:1755.202667pt;}
.xfe{left:1778.746667pt;}
.x1b{left:1780.586667pt;}
.xdf{left:1786.541333pt;}
.x8e{left:1792.993333pt;}
.x47{left:1795.840000pt;}
.x5b{left:1803.964000pt;}
.x4f{left:1805.536000pt;}
.x56{left:1816.209333pt;}
.x41{left:1824.286667pt;}
.x20{left:1829.481333pt;}
.xd7{left:1844.642667pt;}
.xd8{left:1849.214667pt;}
.x76{left:1850.590667pt;}
.x5d{left:1862.054667pt;}
.xc8{left:1878.330667pt;}
.x10a{left:1880.449333pt;}
.x14e{left:1903.086667pt;}
.x108{left:1904.838667pt;}
.x14d{left:1908.294667pt;}
.x6a{left:1916.373333pt;}
.x125{left:1926.560000pt;}
.x14a{left:1934.974667pt;}
.x14c{left:1942.613333pt;}
.xda{left:1947.278667pt;}
.xdb{left:1948.704000pt;}
.x149{left:1954.956000pt;}
.xd9{left:1960.913333pt;}
.x80{left:1962.298667pt;}
.x112{left:1972.993333pt;}
.xc9{left:1990.978667pt;}
.x109{left:1993.745333pt;}
.x14f{left:1997.297333pt;}
.xf3{left:2005.652000pt;}
.x7f{left:2008.466667pt;}
.x14b{left:2013.806667pt;}
.x82{left:2022.058667pt;}
.x81{left:2024.854667pt;}
.xf4{left:2027.042667pt;}
.x10c{left:2034.525333pt;}
.xa0{left:2049.336000pt;}
.xa2{left:2050.293333pt;}
.x37{left:2056.658667pt;}
.x9e{left:2064.793333pt;}
.x13c{left:2070.506667pt;}
.x35{left:2084.022667pt;}
.xe4{left:2087.653333pt;}
.xa4{left:2095.741333pt;}
.x9f{left:2113.950667pt;}
.xff{left:2116.248000pt;}
.xbd{left:2143.393333pt;}
.x83{left:2147.882667pt;}
.x10f{left:2150.366667pt;}
.x13d{left:2151.464000pt;}
.x26{left:2166.589333pt;}
.x25{left:2188.322667pt;}
.x13a{left:2189.304000pt;}
.x36{left:2190.518667pt;}
.xf0{left:2195.829333pt;}
.x139{left:2196.832000pt;}
.x34{left:2198.284000pt;}
.x13b{left:2204.540000pt;}
.x10b{left:2207.912000pt;}
.x135{left:2214.456000pt;}
.x12b{left:2217.946667pt;}
.xa3{left:2219.241333pt;}
.xef{left:2227.632000pt;}
.x134{left:2245.616000pt;}
.x12c{left:2256.650667pt;}
.xa1{left:2286.574667pt;}
}




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