
    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_b33fae945b0349df588bef67.woff')format("woff");}.ff1{font-family:ff1;line-height:0.943000;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_c89674228744e449386cbe6c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.977500;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_8e1974d08368345f7606f70f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.931500;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_52b7d1bc97df9c4d00f168fb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.973000;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_03b2f621aefd560111889272.woff')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_73d0ebc032b94e1f3d9b05f4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.681641;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_463f46fcff7df4e8dab1043c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.958000;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_77c45212c4b3d9748f48d548.woff')format("woff");}.ff8{font-family:ff8;line-height:0.964844;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_71b1b87997abe01684e5a36e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.977500;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_777062b2083f4d5f0fcfd325.woff')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_e9648d3e8a3a208b25b4c7b9.woff')format("woff");}.ffb{font-family:ffb;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.173665,-0.179834,0.179834,0.173665,0,0);-ms-transform:matrix(0.173665,-0.179834,0.179834,0.173665,0,0);-webkit-transform:matrix(0.173665,-0.179834,0.179834,0.173665,0,0);}
.m5{transform:matrix(0.190809,-0.161531,0.161531,0.190809,0,0);-ms-transform:matrix(0.190809,-0.161531,0.161531,0.190809,0,0);-webkit-transform:matrix(0.190809,-0.161531,0.161531,0.190809,0,0);}
.m4{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-5.334000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.979400px;}
.v1{vertical-align:21.978000px;}
.v4{vertical-align:28.560000px;}
.v5{vertical-align:36.000000px;}
.v6{vertical-align:72.000000px;}
.ls1c{letter-spacing:-6.210000px;}
.ls26{letter-spacing:-4.704000px;}
.lse{letter-spacing:-1.890000px;}
.ls11{letter-spacing:-1.782000px;}
.ls18{letter-spacing:-1.566000px;}
.ls15{letter-spacing:-1.458000px;}
.ls14{letter-spacing:-1.188000px;}
.ls7{letter-spacing:-1.170000px;}
.ls1f{letter-spacing:-1.134000px;}
.ls5{letter-spacing:-1.056000px;}
.lsf{letter-spacing:-1.026000px;}
.ls1d{letter-spacing:-0.972000px;}
.ls1e{letter-spacing:-0.864000px;}
.ls12{letter-spacing:-0.810000px;}
.ls2b{letter-spacing:-0.768000px;}
.ls20{letter-spacing:-0.702000px;}
.ls1b{letter-spacing:-0.648000px;}
.ls10{letter-spacing:-0.594000px;}
.ls4{letter-spacing:-0.576000px;}
.ls9{letter-spacing:-0.540000px;}
.ls27{letter-spacing:-0.528000px;}
.ls6{letter-spacing:-0.504000px;}
.ls2a{letter-spacing:-0.480000px;}
.ls28{letter-spacing:-0.432000px;}
.ls1a{letter-spacing:-0.324000px;}
.lsd{letter-spacing:-0.270000px;}
.ls13{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.174900px;}
.ls29{letter-spacing:-0.144000px;}
.ls2c{letter-spacing:-0.096000px;}
.ls2e{letter-spacing:-0.054000px;}
.ls2d{letter-spacing:-0.045000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.021000px;}
.ls24{letter-spacing:0.048000px;}
.ls21{letter-spacing:0.096000px;}
.ls25{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.198000px;}
.lsb{letter-spacing:0.209880px;}
.ls22{letter-spacing:0.240000px;}
.ls2{letter-spacing:0.270000px;}
.ls23{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.480000px;}
.ls17{letter-spacing:0.540000px;}
.lsc{letter-spacing:0.900000px;}
.ls2f{letter-spacing:40.219200px;}
.ls19{letter-spacing:77.901000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-48.000000px;}
.ws20{word-spacing:-16.302000px;}
.ws22{word-spacing:-14.100000px;}
.ws8b{word-spacing:-13.800000px;}
.ws21{word-spacing:-13.620000px;}
.ws6{word-spacing:-13.338000px;}
.ws13e{word-spacing:-13.080000px;}
.wsad{word-spacing:-12.258000px;}
.ws123{word-spacing:-12.204000px;}
.ws122{word-spacing:-11.970000px;}
.ws4{word-spacing:-11.856000px;}
.ws63{word-spacing:-11.718000px;}
.wsa5{word-spacing:-11.340000px;}
.ws1{word-spacing:-11.214000px;}
.ws66{word-spacing:-11.178000px;}
.wsbf{word-spacing:-11.136000px;}
.ws64{word-spacing:-11.124000px;}
.wsbe{word-spacing:-11.040000px;}
.wsc3{word-spacing:-10.944000px;}
.ws65{word-spacing:-10.908000px;}
.wsba{word-spacing:-10.896049px;}
.wsc0{word-spacing:-10.896013px;}
.ws5{word-spacing:-10.896000px;}
.ws3{word-spacing:-10.800000px;}
.wsc4{word-spacing:-10.752000px;}
.ws8c{word-spacing:-10.692000px;}
.wsc1{word-spacing:-10.416000px;}
.wsbd{word-spacing:-10.368000px;}
.wsbc{word-spacing:-10.320000px;}
.ws0{word-spacing:-10.273626px;}
.wsc2{word-spacing:-10.128000px;}
.ws126{word-spacing:-9.774000px;}
.ws24{word-spacing:-8.150340px;}
.ws115{word-spacing:-7.940460px;}
.ws23{word-spacing:-7.765560px;}
.wsbb{word-spacing:-6.192000px;}
.ws13a{word-spacing:-4.428000px;}
.ws135{word-spacing:-3.402000px;}
.ws130{word-spacing:-3.240000px;}
.ws12c{word-spacing:-3.186000px;}
.wsfb{word-spacing:-3.120000px;}
.ws45{word-spacing:-3.000000px;}
.ws12f{word-spacing:-2.970000px;}
.ws105{word-spacing:-2.760000px;}
.wsee{word-spacing:-2.700000px;}
.ws78{word-spacing:-2.640000px;}
.ws108{word-spacing:-2.580000px;}
.ws111{word-spacing:-2.520000px;}
.ws104{word-spacing:-2.460000px;}
.wsd2{word-spacing:-2.400000px;}
.ws7a{word-spacing:-2.340000px;}
.ws117{word-spacing:-2.280000px;}
.ws86{word-spacing:-2.220000px;}
.ws43{word-spacing:-2.160000px;}
.wsd9{word-spacing:-2.100000px;}
.ws11c{word-spacing:-1.998000px;}
.ws100{word-spacing:-1.980000px;}
.wse1{word-spacing:-1.920000px;}
.ws76{word-spacing:-1.860000px;}
.ws106{word-spacing:-1.800000px;}
.wsa4{word-spacing:-1.782000px;}
.ws9c{word-spacing:-1.740000px;}
.ws9a{word-spacing:-1.680000px;}
.wsf7{word-spacing:-1.620000px;}
.wse9{word-spacing:-1.560000px;}
.ws109{word-spacing:-1.500000px;}
.ws2d{word-spacing:-1.440000px;}
.ws124{word-spacing:-1.404000px;}
.wsa9{word-spacing:-1.380000px;}
.ws3a{word-spacing:-1.320000px;}
.ws51{word-spacing:-1.260000px;}
.wsb7{word-spacing:-1.242000px;}
.ws11a{word-spacing:-1.200000px;}
.ws77{word-spacing:-1.140000px;}
.ws120{word-spacing:-1.104000px;}
.wsb{word-spacing:-1.092000px;}
.wse8{word-spacing:-1.080000px;}
.ws114{word-spacing:-1.020000px;}
.wsff{word-spacing:-0.960000px;}
.wsdb{word-spacing:-0.900000px;}
.ws12d{word-spacing:-0.864000px;}
.wsd3{word-spacing:-0.840000px;}
.wsfe{word-spacing:-0.780000px;}
.ws131{word-spacing:-0.756000px;}
.ws79{word-spacing:-0.720000px;}
.wse7{word-spacing:-0.660000px;}
.ws17{word-spacing:-0.648000px;}
.ws7{word-spacing:-0.633600px;}
.ws52{word-spacing:-0.600000px;}
.ws80{word-spacing:-0.594000px;}
.ws15{word-spacing:-0.540000px;}
.ws3d{word-spacing:-0.480000px;}
.wse5{word-spacing:-0.420000px;}
.ws37{word-spacing:-0.360000px;}
.wsa1{word-spacing:-0.324000px;}
.ws53{word-spacing:-0.300000px;}
.wsd{word-spacing:-0.288000px;}
.wsa2{word-spacing:-0.270000px;}
.ws34{word-spacing:-0.240000px;}
.wsc9{word-spacing:-0.180000px;}
.ws38{word-spacing:-0.120000px;}
.ws4e{word-spacing:-0.060000px;}
.ws8{word-spacing:0.000000px;}
.ws3e{word-spacing:0.060000px;}
.wsd0{word-spacing:0.096000px;}
.ws11{word-spacing:0.108000px;}
.ws33{word-spacing:0.120000px;}
.wsb5{word-spacing:0.162000px;}
.wsea{word-spacing:0.180000px;}
.ws82{word-spacing:0.216000px;}
.ws9d{word-spacing:0.240000px;}
.ws7c{word-spacing:0.270000px;}
.wscc{word-spacing:0.300000px;}
.wsb6{word-spacing:0.324000px;}
.ws42{word-spacing:0.360000px;}
.ws99{word-spacing:0.420000px;}
.wsd8{word-spacing:0.480000px;}
.ws1f{word-spacing:0.504000px;}
.wsa3{word-spacing:0.540000px;}
.wsc{word-spacing:0.576000px;}
.ws7f{word-spacing:0.594000px;}
.ws116{word-spacing:0.600000px;}
.ws39{word-spacing:0.660000px;}
.wsb9{word-spacing:0.702000px;}
.ws35{word-spacing:0.720000px;}
.ws128{word-spacing:0.756000px;}
.wsd5{word-spacing:0.780000px;}
.ws30{word-spacing:0.840000px;}
.ws44{word-spacing:0.900000px;}
.ws28{word-spacing:0.972000px;}
.ws31{word-spacing:1.020000px;}
.ws7e{word-spacing:1.026000px;}
.ws4f{word-spacing:1.080000px;}
.wsb8{word-spacing:1.134000px;}
.ws118{word-spacing:1.140000px;}
.ws87{word-spacing:1.200000px;}
.wse3{word-spacing:1.260000px;}
.ws27{word-spacing:1.296000px;}
.ws9e{word-spacing:1.320000px;}
.ws2f{word-spacing:1.380000px;}
.ws19{word-spacing:1.404000px;}
.wsaa{word-spacing:1.440000px;}
.wsf5{word-spacing:1.500000px;}
.wscf{word-spacing:1.512000px;}
.wsfa{word-spacing:1.620000px;}
.wsce{word-spacing:1.674000px;}
.wsc8{word-spacing:1.680000px;}
.ws2e{word-spacing:1.740000px;}
.ws81{word-spacing:1.782000px;}
.ws5f{word-spacing:1.800000px;}
.ws4c{word-spacing:1.860000px;}
.ws7d{word-spacing:1.890000px;}
.ws5c{word-spacing:1.980000px;}
.ws1c{word-spacing:1.998000px;}
.ws46{word-spacing:2.040000px;}
.ws32{word-spacing:2.100000px;}
.ws13b{word-spacing:2.106000px;}
.ws13{word-spacing:2.160000px;}
.wsf8{word-spacing:2.220000px;}
.ws121{word-spacing:2.256000px;}
.ws11e{word-spacing:2.268000px;}
.ws47{word-spacing:2.280000px;}
.wsef{word-spacing:2.340000px;}
.ws10d{word-spacing:2.400000px;}
.wsca{word-spacing:2.460000px;}
.wscd{word-spacing:2.520000px;}
.ws5d{word-spacing:2.580000px;}
.ws3c{word-spacing:2.640000px;}
.ws5b{word-spacing:2.700000px;}
.ws29{word-spacing:2.754000px;}
.wse4{word-spacing:2.760000px;}
.ws12{word-spacing:2.808000px;}
.ws4b{word-spacing:2.820000px;}
.wsab{word-spacing:2.940000px;}
.wsf9{word-spacing:3.000000px;}
.ws25{word-spacing:3.024000px;}
.ws10a{word-spacing:3.060000px;}
.ws83{word-spacing:3.120000px;}
.ws56{word-spacing:3.180000px;}
.ws12a{word-spacing:3.186000px;}
.wsd7{word-spacing:3.240000px;}
.ws55{word-spacing:3.300000px;}
.wsf3{word-spacing:3.360000px;}
.wsa7{word-spacing:3.420000px;}
.ws1b{word-spacing:3.456000px;}
.ws9{word-spacing:3.591000px;}
.wse2{word-spacing:3.600000px;}
.wsf4{word-spacing:3.660000px;}
.ws54{word-spacing:3.720000px;}
.ws13d{word-spacing:3.726000px;}
.wsd4{word-spacing:3.780000px;}
.ws10{word-spacing:3.834000px;}
.ws85{word-spacing:3.840000px;}
.ws12e{word-spacing:3.888000px;}
.ws48{word-spacing:3.900000px;}
.ws26{word-spacing:3.942000px;}
.wsdd{word-spacing:3.960000px;}
.ws40{word-spacing:4.020000px;}
.ws11b{word-spacing:4.050000px;}
.wscb{word-spacing:4.080000px;}
.wsf6{word-spacing:4.140000px;}
.ws3f{word-spacing:4.200000px;}
.ws133{word-spacing:4.212000px;}
.ws2a{word-spacing:4.266000px;}
.ws103{word-spacing:4.320000px;}
.ws10c{word-spacing:4.380000px;}
.ws107{word-spacing:4.440000px;}
.wsc6{word-spacing:4.500000px;}
.ws7b{word-spacing:4.536000px;}
.ws84{word-spacing:4.560000px;}
.ws49{word-spacing:4.620000px;}
.ws4a{word-spacing:4.680000px;}
.ws9f{word-spacing:4.740000px;}
.wsda{word-spacing:4.800000px;}
.wsa0{word-spacing:4.860000px;}
.ws5e{word-spacing:4.920000px;}
.ws14{word-spacing:4.968000px;}
.ws62{word-spacing:4.980000px;}
.wsf2{word-spacing:5.040000px;}
.ws61{word-spacing:5.160000px;}
.wse0{word-spacing:5.220000px;}
.wsec{word-spacing:5.280000px;}
.ws10f{word-spacing:5.400000px;}
.ws16{word-spacing:5.454000px;}
.wsd6{word-spacing:5.460000px;}
.ws5a{word-spacing:5.520000px;}
.ws57{word-spacing:5.580000px;}
.wsed{word-spacing:5.700000px;}
.wsfc{word-spacing:5.760000px;}
.ws2b{word-spacing:5.880000px;}
.ws2c{word-spacing:5.940000px;}
.ws58{word-spacing:6.000000px;}
.wsde{word-spacing:6.060000px;}
.ws89{word-spacing:6.120000px;}
.ws18{word-spacing:6.156000px;}
.ws8a{word-spacing:6.180000px;}
.ws110{word-spacing:6.240000px;}
.ws136{word-spacing:6.372000px;}
.ws36{word-spacing:6.420000px;}
.ws10e{word-spacing:6.480000px;}
.ws9b{word-spacing:6.600000px;}
.ws102{word-spacing:6.660000px;}
.wsa{word-spacing:6.690600px;}
.wsdc{word-spacing:6.720000px;}
.wsa8{word-spacing:6.780000px;}
.ws1a{word-spacing:6.804000px;}
.ws50{word-spacing:6.840000px;}
.wsdf{word-spacing:6.900000px;}
.wsf{word-spacing:6.966000px;}
.wse6{word-spacing:7.020000px;}
.ws13f{word-spacing:7.074000px;}
.wsf0{word-spacing:7.080000px;}
.ws41{word-spacing:7.140000px;}
.ws1d{word-spacing:7.182000px;}
.ws75{word-spacing:7.200000px;}
.wsd1{word-spacing:7.260000px;}
.ws1e{word-spacing:7.290000px;}
.ws119{word-spacing:7.320000px;}
.ws60{word-spacing:7.380000px;}
.ws11f{word-spacing:7.452000px;}
.ws88{word-spacing:7.560000px;}
.ws10b{word-spacing:7.680000px;}
.ws3b{word-spacing:7.740000px;}
.wsf1{word-spacing:7.800000px;}
.wsfd{word-spacing:7.860000px;}
.ws4d{word-spacing:7.980000px;}
.ws101{word-spacing:8.040000px;}
.ws127{word-spacing:8.532000px;}
.ws112{word-spacing:8.580000px;}
.wsc7{word-spacing:8.700000px;}
.wsc5{word-spacing:8.760000px;}
.ws144{word-spacing:9.120000px;}
.ws139{word-spacing:9.234000px;}
.wse{word-spacing:9.408000px;}
.ws113{word-spacing:9.600000px;}
.ws140{word-spacing:9.828000px;}
.ws138{word-spacing:10.044000px;}
.ws125{word-spacing:10.368000px;}
.ws12b{word-spacing:10.584000px;}
.ws132{word-spacing:10.908000px;}
.ws137{word-spacing:11.178000px;}
.ws59{word-spacing:11.520000px;}
.wseb{word-spacing:11.580000px;}
.ws134{word-spacing:11.664000px;}
.wsa6{word-spacing:12.120000px;}
.ws11d{word-spacing:12.474000px;}
.ws129{word-spacing:12.852000px;}
.ws13c{word-spacing:13.392000px;}
.ws145{word-spacing:14.340000px;}
.ws142{word-spacing:15.780000px;}
.ws141{word-spacing:18.420000px;}
.ws143{word-spacing:19.080000px;}
.ws8d{word-spacing:35.550000px;}
.ws97{word-spacing:52.452000px;}
.wsb4{word-spacing:52.683000px;}
.ws67{word-spacing:57.695400px;}
.ws96{word-spacing:65.412000px;}
.ws95{word-spacing:67.896000px;}
.ws98{word-spacing:78.372600px;}
.ws8e{word-spacing:107.644800px;}
.ws68{word-spacing:128.975400px;}
.ws94{word-spacing:133.965600px;}
.ws6f{word-spacing:136.481400px;}
.ws92{word-spacing:137.128200px;}
.ws72{word-spacing:141.503400px;}
.ws6b{word-spacing:149.657400px;}
.ws6e{word-spacing:153.461400px;}
.ws93{word-spacing:154.912800px;}
.ws6a{word-spacing:166.097400px;}
.ws70{word-spacing:168.174000px;}
.ws6c{word-spacing:171.903000px;}
.wsac{word-spacing:174.264000px;}
.ws91{word-spacing:183.647400px;}
.ws8f{word-spacing:184.125600px;}
.ws73{word-spacing:194.688000px;}
.ws90{word-spacing:198.742800px;}
.wsb1{word-spacing:239.994600px;}
.wsaf{word-spacing:250.524600px;}
.ws71{word-spacing:252.525000px;}
.ws74{word-spacing:255.036000px;}
.ws69{word-spacing:263.189400px;}
.ws6d{word-spacing:267.267000px;}
.wsb3{word-spacing:274.014600px;}
.wsae{word-spacing:371.371800px;}
.wsb0{word-spacing:384.332400px;}
.wsb2{word-spacing:625.222200px;}
._48{margin-left:-58.414800px;}
._44{margin-left:-9.780600px;}
._4{margin-left:-7.854000px;}
._6{margin-left:-6.072000px;}
._2{margin-left:-4.176900px;}
._3{margin-left:-2.394000px;}
._0{margin-left:-1.115100px;}
._5{width:1.232700px;}
._c{width:2.262300px;}
._1{width:3.619500px;}
._a{width:4.652100px;}
._9{width:5.975100px;}
._b{width:7.549200px;}
._e{width:8.584200px;}
._42{width:9.599100px;}
._47{width:10.704900px;}
._f{width:11.910000px;}
._45{width:13.310700px;}
._8{width:16.944000px;}
._7{width:22.320000px;}
._46{width:35.184000px;}
._2f{width:48.606600px;}
._36{width:64.941000px;}
._29{width:77.901000px;}
._12{width:85.728900px;}
._23{width:98.715600px;}
._1e{width:111.865800px;}
._13{width:117.305400px;}
._26{width:124.635000px;}
._22{width:137.449800px;}
._1d{width:148.387800px;}
._21{width:150.409800px;}
._16{width:160.589400px;}
._11{width:162.048000px;}
._25{width:164.683200px;}
._34{width:166.940400px;}
._17{width:171.201000px;}
._24{width:174.604800px;}
._20{width:180.213600px;}
._1a{width:184.116300px;}
._3d{width:188.019300px;}
._1b{width:190.875600px;}
._1f{width:192.666600px;}
._18{width:193.986000px;}
._14{width:196.392000px;}
._37{width:200.420400px;}
._2e{width:204.470400px;}
._31{width:213.049500px;}
._1c{width:229.169400px;}
._27{width:249.306600px;}
._35{width:258.135300px;}
._15{width:261.548400px;}
._3b{width:272.204400px;}
._19{width:274.508400px;}
._2c{width:282.380400px;}
._30{width:295.339800px;}
._10{width:296.491200px;}
._2b{width:299.366400px;}
._32{width:304.410600px;}
._40{width:308.299800px;}
._3e{width:313.347300px;}
._28{width:324.030000px;}
._33{width:326.532600px;}
._38{width:331.102200px;}
._41{width:339.053400px;}
._2a{width:377.602200px;}
._39{width:391.175700px;}
._3f{width:401.969400px;}
._2d{width:437.409300px;}
._3a{width:516.952200px;}
._3c{width:524.864100px;}
._43{width:1368.924900px;}
._d{width:1374.662700px;}
.fc2{color:rgb(107,19,25);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:34.980000px;}
.fs1{font-size:37.800000px;}
.fs4{font-size:38.478000px;}
.fs9{font-size:39.000000px;}
.fs0{font-size:39.600000px;}
.fs5{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fsd{font-size:48.000058px;}
.fsc{font-size:48.000216px;}
.fs7{font-size:54.000000px;}
.fsa{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:55.872300px;}
.y3{bottom:68.472300px;}
.y1c6{bottom:76.535550px;}
.y2{bottom:81.072300px;}
.y16f{bottom:81.642300px;}
.y111{bottom:81.886200px;}
.ye4{bottom:83.728800px;}
.y19d{bottom:83.772300px;}
.y1ef{bottom:84.862800px;}
.y18e{bottom:85.756500px;}
.yb6{bottom:86.890350px;}
.y53{bottom:88.271550px;}
.y1ba{bottom:89.200650px;}
.y7e{bottom:91.184850px;}
.y1c5{bottom:91.535550px;}
.ye3{bottom:94.498650px;}
.y16e{bottom:99.642300px;}
.y10f{bottom:99.751800px;}
.y110{bottom:99.886200px;}
.y19c{bottom:101.772300px;}
.y1ee{bottom:102.862800px;}
.y18d{bottom:103.756500px;}
.yb5{bottom:104.890350px;}
.y52{bottom:106.271550px;}
.y1c4{bottom:106.535550px;}
.y1b9{bottom:107.200650px;}
.y7d{bottom:109.184850px;}
.ye2{bottom:112.498650px;}
.y25{bottom:116.645850px;}
.y16d{bottom:117.642300px;}
.y19b{bottom:119.772300px;}
.y1ed{bottom:120.862800px;}
.y18c{bottom:121.756500px;}
.yb4{bottom:122.890350px;}
.y117{bottom:123.681000px;}
.y51{bottom:124.271550px;}
.y1b8{bottom:125.200650px;}
.y10e{bottom:126.583500px;}
.y7c{bottom:127.184850px;}
.ye1{bottom:130.498650px;}
.y140{bottom:131.887050px;}
.y24{bottom:134.645850px;}
.y16c{bottom:135.642300px;}
.y19a{bottom:137.772300px;}
.y1ec{bottom:138.862800px;}
.y18b{bottom:139.756500px;}
.yb3{bottom:140.890350px;}
.y50{bottom:142.271550px;}
.y1b7{bottom:143.200650px;}
.y13f{bottom:143.671050px;}
.y7b{bottom:145.184850px;}
.y10d{bottom:148.303350px;}
.y23{bottom:152.645850px;}
.y16b{bottom:153.642300px;}
.y199{bottom:155.772300px;}
.y1eb{bottom:156.862800px;}
.y10c{bottom:157.303350px;}
.ye0{bottom:157.330350px;}
.y18a{bottom:157.756650px;}
.yb2{bottom:158.890350px;}
.y4f{bottom:160.271400px;}
.y1b6{bottom:161.200650px;}
.y127{bottom:161.905051px;}
.y7a{bottom:163.184850px;}
.y128{bottom:167.970327px;}
.y22{bottom:170.645850px;}
.y1c3{bottom:170.696700px;}
.y12b{bottom:171.485045px;}
.y16a{bottom:171.642300px;}
.y198{bottom:173.772300px;}
.y1ea{bottom:174.862800px;}
.y189{bottom:175.756650px;}
.yb1{bottom:176.890350px;}
.y12c{bottom:177.549408px;}
.y126{bottom:178.042340px;}
.y4e{bottom:178.271400px;}
.ydf{bottom:179.050200px;}
.y1b5{bottom:179.200650px;}
.y79{bottom:181.184850px;}
.y125{bottom:181.239594px;}
.y12a{bottom:187.342194px;}
.y10b{bottom:188.023200px;}
.y21{bottom:188.645850px;}
.y1c2{bottom:188.696700px;}
.y169{bottom:189.642300px;}
.y129{bottom:190.539448px;}
.y197{bottom:191.772300px;}
.y1e9{bottom:192.862800px;}
.y188{bottom:193.756650px;}
.yb0{bottom:194.890350px;}
.y4d{bottom:196.271400px;}
.y10a{bottom:197.023200px;}
.y1b4{bottom:197.200650px;}
.y78{bottom:199.184850px;}
.yde{bottom:200.770200px;}
.y1c1{bottom:206.696700px;}
.y168{bottom:207.642300px;}
.y196{bottom:209.772300px;}
.y1e8{bottom:210.862800px;}
.y20{bottom:210.897750px;}
.y187{bottom:211.756650px;}
.y137{bottom:212.755050px;}
.yaf{bottom:212.890350px;}
.y4c{bottom:214.271400px;}
.y1b3{bottom:215.200650px;}
.y77{bottom:217.184850px;}
.ydd{bottom:222.490050px;}
.y1c0{bottom:224.696700px;}
.y167{bottom:225.642300px;}
.y109{bottom:227.743050px;}
.y195{bottom:227.772300px;}
.y1e7{bottom:228.862800px;}
.y1f{bottom:228.897750px;}
.y186{bottom:229.756650px;}
.yae{bottom:230.890350px;}
.y131{bottom:231.883050px;}
.y4b{bottom:232.271400px;}
.y1b2{bottom:233.200650px;}
.y1bf{bottom:242.696700px;}
.y166{bottom:243.642300px;}
.ydc{bottom:244.209900px;}
.y194{bottom:245.772300px;}
.y136{bottom:245.923050px;}
.y1e6{bottom:246.862800px;}
.y1e{bottom:246.897750px;}
.y185{bottom:247.756650px;}
.yad{bottom:248.890350px;}
.y108{bottom:249.462900px;}
.y4a{bottom:250.271400px;}
.y1b1{bottom:251.200650px;}
.y107{bottom:258.462900px;}
.y1be{bottom:260.696700px;}
.y165{bottom:261.642300px;}
.y193{bottom:263.772300px;}
.y1e5{bottom:264.862800px;}
.y1d{bottom:264.897750px;}
.y184{bottom:265.756650px;}
.ydb{bottom:265.929750px;}
.yac{bottom:266.890350px;}
.y49{bottom:268.271400px;}
.y130{bottom:268.447050px;}
.y76{bottom:269.200500px;}
.y1b0{bottom:269.200650px;}
.yda{bottom:274.929750px;}
.y135{bottom:278.659050px;}
.y1bd{bottom:278.696700px;}
.y164{bottom:279.642300px;}
.y192{bottom:281.772300px;}
.y1e4{bottom:282.862800px;}
.y1c{bottom:282.897750px;}
.y183{bottom:283.756650px;}
.yab{bottom:284.890350px;}
.ycb{bottom:285.789750px;}
.y207{bottom:286.207650px;}
.y48{bottom:286.271400px;}
.y75{bottom:287.200500px;}
.y1af{bottom:287.200650px;}
.y106{bottom:289.182750px;}
.yd8{bottom:292.929750px;}
.y1bc{bottom:296.696700px;}
.y163{bottom:297.642300px;}
.y105{bottom:298.182750px;}
.y191{bottom:299.772300px;}
.y1e3{bottom:300.862800px;}
.y1b{bottom:300.897750px;}
.y182{bottom:301.756650px;}
.yaa{bottom:302.890350px;}
.yca{bottom:303.789750px;}
.y206{bottom:304.207650px;}
.y47{bottom:304.271400px;}
.y74{bottom:305.200500px;}
.y1ae{bottom:305.200650px;}
.yd1{bottom:305.649600px;}
.y12f{bottom:305.863050px;}
.yd7{bottom:310.929750px;}
.y134{bottom:311.395050px;}
.y162{bottom:315.642300px;}
.y190{bottom:317.772300px;}
.y1e2{bottom:318.862800px;}
.y1a{bottom:318.897750px;}
.y1a6{bottom:319.756650px;}
.yd9{bottom:319.929750px;}
.yc9{bottom:321.789750px;}
.y46{bottom:322.271400px;}
.y73{bottom:323.200500px;}
.y1ad{bottom:323.200650px;}
.yd0{bottom:323.649600px;}
.y104{bottom:328.902750px;}
.yd6{bottom:328.929750px;}
.y205{bottom:330.711600px;}
.y1bb{bottom:331.704600px;}
.yd4{bottom:332.649600px;}
.y161{bottom:333.642300px;}
.y18f{bottom:335.772300px;}
.y1e1{bottom:336.862800px;}
.y1a5{bottom:337.756650px;}
.y103{bottom:337.902750px;}
.yc8{bottom:339.789750px;}
.y45{bottom:340.271400px;}
.y19{bottom:341.149800px;}
.y72{bottom:341.200500px;}
.y1ac{bottom:341.200650px;}
.ycf{bottom:341.649600px;}
.ya9{bottom:341.913150px;}
.y12e{bottom:342.859050px;}
.y133{bottom:344.563050px;}
.yd5{bottom:346.929750px;}
.y204{bottom:348.711600px;}
.yd3{bottom:350.649600px;}
.y160{bottom:351.642300px;}
.y181{bottom:353.772300px;}
.y1e0{bottom:354.862800px;}
.y1a4{bottom:355.756650px;}
.yc7{bottom:357.789750px;}
.y44{bottom:358.271400px;}
.y18{bottom:359.149800px;}
.y1ab{bottom:359.200650px;}
.yce{bottom:359.649600px;}
.ya8{bottom:359.913150px;}
.y203{bottom:366.711600px;}
.y102{bottom:368.622600px;}
.yd2{bottom:368.649600px;}
.y15f{bottom:369.642300px;}
.y180{bottom:371.772300px;}
.y1df{bottom:372.862800px;}
.y1a3{bottom:373.756650px;}
.yc6{bottom:375.789750px;}
.y71{bottom:376.208400px;}
.y43{bottom:376.271400px;}
.y17{bottom:377.149800px;}
.y1aa{bottom:377.200650px;}
.ycd{bottom:377.649600px;}
.ya7{bottom:377.913150px;}
.y132{bottom:378.583050px;}
.y12d{bottom:379.855050px;}
.y202{bottom:384.711600px;}
.y15e{bottom:387.642300px;}
.y17f{bottom:389.772300px;}
.y101{bottom:390.342450px;}
.y1de{bottom:390.862800px;}
.y1a2{bottom:391.756650px;}
.y42{bottom:394.271400px;}
.y16{bottom:395.149800px;}
.y1a9{bottom:395.200650px;}
.ycc{bottom:395.649600px;}
.y100{bottom:399.342450px;}
.y201{bottom:402.711600px;}
.y114{bottom:403.784550px;}
.ya6{bottom:404.744850px;}
.y15d{bottom:405.642300px;}
.y17e{bottom:407.772300px;}
.y1dd{bottom:408.862800px;}
.y1a1{bottom:409.756650px;}
.y41{bottom:412.271400px;}
.y15{bottom:413.149800px;}
.y113{bottom:415.784550px;}
.y13e{bottom:415.795050px;}
.y200{bottom:420.711600px;}
.y15c{bottom:423.642300px;}
.y70{bottom:425.772150px;}
.y17d{bottom:425.772300px;}
.yc5{bottom:426.295650px;}
.ya5{bottom:426.464700px;}
.y1dc{bottom:426.862800px;}
.y1a0{bottom:427.756650px;}
.yff{bottom:430.062300px;}
.y1a8{bottom:430.208550px;}
.y40{bottom:430.271400px;}
.y14{bottom:431.149800px;}
.y120{bottom:437.248350px;}
.yfe{bottom:439.062300px;}
.y15b{bottom:441.642300px;}
.y6f{bottom:443.772150px;}
.y17c{bottom:443.772300px;}
.yc4{bottom:444.295650px;}
.y1db{bottom:444.862800px;}
.y19f{bottom:445.756650px;}
.y1ff{bottom:447.215550px;}
.ya4{bottom:448.184550px;}
.y3f{bottom:448.271400px;}
.y13{bottom:449.149800px;}
.y15a{bottom:459.642300px;}
.y6e{bottom:461.772150px;}
.y17b{bottom:461.772300px;}
.y1da{bottom:462.862800px;}
.y19e{bottom:463.756650px;}
.y123{bottom:464.002871px;}
.y1fe{bottom:465.215550px;}
.y3e{bottom:466.271400px;}
.yfd{bottom:469.782150px;}
.ya3{bottom:469.904400px;}
.y11f{bottom:469.984350px;}
.y124{bottom:470.067234px;}
.y12{bottom:471.401700px;}
.y159{bottom:477.642300px;}
.yfc{bottom:478.782150px;}
.y6d{bottom:479.772150px;}
.y17a{bottom:479.772300px;}
.y122{bottom:480.147543px;}
.y1d9{bottom:480.862800px;}
.yc3{bottom:481.756650px;}
.y1fd{bottom:483.215550px;}
.y121{bottom:484.196550px;}
.y3d{bottom:484.271400px;}
.ya2{bottom:491.624250px;}
.y158{bottom:495.642300px;}
.y6c{bottom:497.772150px;}
.y179{bottom:497.772300px;}
.y1d8{bottom:498.862800px;}
.yc2{bottom:499.756650px;}
.y1fc{bottom:501.215550px;}
.y3c{bottom:502.271400px;}
.y11e{bottom:503.152350px;}
.y93{bottom:504.344100px;}
.yfb{bottom:509.502000px;}
.ya1{bottom:513.344100px;}
.y157{bottom:513.642300px;}
.y9e{bottom:515.204100px;}
.y6b{bottom:515.772150px;}
.y178{bottom:515.772300px;}
.y13d{bottom:516.775050px;}
.y1d7{bottom:516.862800px;}
.yc1{bottom:517.756650px;}
.yfa{bottom:518.502000px;}
.y1fb{bottom:519.215550px;}
.y3b{bottom:520.271400px;}
.y92{bottom:522.344100px;}
.y11{bottom:523.417650px;}
.y97{bottom:524.204100px;}
.ya0{bottom:531.344100px;}
.y156{bottom:531.642300px;}
.y9d{bottom:533.204100px;}
.y6a{bottom:533.772150px;}
.y177{bottom:533.772300px;}
.y1d6{bottom:534.862800px;}
.y11d{bottom:535.048350px;}
.yc0{bottom:535.756650px;}
.y1fa{bottom:537.215550px;}
.y3a{bottom:538.271400px;}
.y10{bottom:538.417650px;}
.y91{bottom:540.344100px;}
.y96{bottom:542.204100px;}
.y13c{bottom:546.535050px;}
.yf8{bottom:549.221850px;}
.y9f{bottom:549.344100px;}
.y155{bottom:549.642300px;}
.y9c{bottom:551.204100px;}
.y69{bottom:551.772150px;}
.y176{bottom:551.772300px;}
.y1d5{bottom:552.862800px;}
.yf{bottom:553.417650px;}
.ybf{bottom:553.756500px;}
.y39{bottom:556.271550px;}
.yf7{bottom:558.221850px;}
.y90{bottom:558.344100px;}
.y95{bottom:560.204100px;}
.y1f9{bottom:563.719500px;}
.yf9{bottom:567.221850px;}
.y154{bottom:567.642300px;}
.y11c{bottom:568.216350px;}
.y9b{bottom:569.204100px;}
.y68{bottom:569.772150px;}
.y175{bottom:569.772300px;}
.y1d4{bottom:570.862800px;}
.y99{bottom:571.064100px;}
.ybe{bottom:571.756500px;}
.y38{bottom:574.271550px;}
.y13b{bottom:575.443050px;}
.y8f{bottom:576.344100px;}
.y94{bottom:578.204100px;}
.ye{bottom:581.173500px;}
.y1f8{bottom:581.719500px;}
.y118{bottom:584.115600px;}
.y153{bottom:585.642300px;}
.y9a{bottom:587.204100px;}
.y67{bottom:587.772150px;}
.y174{bottom:587.772300px;}
.y1d3{bottom:588.862800px;}
.y98{bottom:589.064100px;}
.ybd{bottom:589.756500px;}
.y37{bottom:592.271550px;}
.yf6{bottom:595.331850px;}
.y1f7{bottom:599.719500px;}
.y11b{bottom:601.384350px;}
.y152{bottom:603.642300px;}
.y13a{bottom:605.419050px;}
.y66{bottom:605.772150px;}
.y173{bottom:605.772300px;}
.y1d2{bottom:606.862800px;}
.ybc{bottom:607.756500px;}
.y36{bottom:610.271550px;}
.y8e{bottom:619.710150px;}
.y151{bottom:621.642300px;}
.yf5{bottom:623.441850px;}
.y65{bottom:623.772150px;}
.y172{bottom:623.772300px;}
.y1d1{bottom:624.862800px;}
.ybb{bottom:625.756500px;}
.yd{bottom:625.937250px;}
.y35{bottom:628.271550px;}
.y11a{bottom:633.700350px;}
.y1f6{bottom:634.727400px;}
.y139{bottom:636.247050px;}
.y8d{bottom:637.710150px;}
.y150{bottom:639.642300px;}
.y64{bottom:641.772150px;}
.y171{bottom:641.772300px;}
.y1d0{bottom:642.862800px;}
.yba{bottom:643.756500px;}
.yc{bottom:643.937250px;}
.yf4{bottom:645.161700px;}
.yf3{bottom:654.161700px;}
.y14f{bottom:657.642300px;}
.y63{bottom:659.772150px;}
.y170{bottom:659.772300px;}
.y1cf{bottom:660.862800px;}
.yb9{bottom:661.756500px;}
.yb{bottom:661.937250px;}
.y34{bottom:663.279300px;}
.y138{bottom:666.439050px;}
.y119{bottom:667.288350px;}
.y112{bottom:671.546550px;}
.y115{bottom:671.581650px;}
.y116{bottom:671.887020px;}
.y14e{bottom:675.642300px;}
.y62{bottom:677.772150px;}
.y8c{bottom:677.772300px;}
.y1ce{bottom:678.862800px;}
.yb8{bottom:679.756500px;}
.ya{bottom:679.937250px;}
.y1f5{bottom:684.291150px;}
.yf2{bottom:684.881550px;}
.y14d{bottom:693.642300px;}
.yf1{bottom:693.881550px;}
.y61{bottom:695.772150px;}
.y8b{bottom:695.772300px;}
.y1cd{bottom:696.862800px;}
.yb7{bottom:697.756500px;}
.y1f4{bottom:702.291150px;}
.y9{bottom:706.441200px;}
.y14c{bottom:711.642300px;}
.y60{bottom:713.772150px;}
.y8a{bottom:713.772300px;}
.y1cc{bottom:714.862800px;}
.y1a7{bottom:715.756500px;}
.y33{bottom:717.095100px;}
.y1f3{bottom:720.291150px;}
.yef{bottom:724.601400px;}
.y8{bottom:726.241200px;}
.y14b{bottom:729.642300px;}
.y5f{bottom:731.772150px;}
.y89{bottom:731.772300px;}
.y1cb{bottom:732.862800px;}
.yee{bottom:733.601400px;}
.y1f2{bottom:738.291150px;}
.yf0{bottom:742.601400px;}
.y14a{bottom:747.642300px;}
.y5e{bottom:749.772150px;}
.y88{bottom:749.772300px;}
.y1ca{bottom:750.862800px;}
.y32{bottom:752.103000px;}
.y1f1{bottom:756.291150px;}
.y7{bottom:764.039850px;}
.yed{bottom:764.321250px;}
.y149{bottom:765.642300px;}
.y5d{bottom:767.772150px;}
.y87{bottom:767.772300px;}
.y1c9{bottom:768.862800px;}
.y31{bottom:770.103000px;}
.yec{bottom:773.321250px;}
.y148{bottom:783.642300px;}
.y5c{bottom:785.772150px;}
.y86{bottom:785.772300px;}
.y1c8{bottom:786.862800px;}
.y6{bottom:789.239850px;}
.y1f0{bottom:791.299050px;}
.y30{bottom:792.354900px;}
.y147{bottom:801.642300px;}
.y5b{bottom:803.772150px;}
.y85{bottom:803.772300px;}
.yea{bottom:804.041250px;}
.y1c7{bottom:804.862800px;}
.ye9{bottom:813.041250px;}
.y5{bottom:814.439700px;}
.y146{bottom:819.642300px;}
.y5a{bottom:821.772150px;}
.y84{bottom:821.772300px;}
.yeb{bottom:822.041250px;}
.y2f{bottom:822.862800px;}
.y145{bottom:837.642300px;}
.y59{bottom:839.772150px;}
.y83{bottom:839.772300px;}
.y2e{bottom:840.862800px;}
.ye8{bottom:844.563600px;}
.ye7{bottom:853.563600px;}
.y144{bottom:855.642300px;}
.y58{bottom:857.772150px;}
.y82{bottom:857.772300px;}
.y2d{bottom:858.862800px;}
.y143{bottom:873.642300px;}
.y57{bottom:875.772150px;}
.y81{bottom:875.772300px;}
.y2c{bottom:876.862800px;}
.y142{bottom:891.642300px;}
.y56{bottom:893.772150px;}
.y80{bottom:893.772300px;}
.ye6{bottom:894.012300px;}
.y2b{bottom:894.862800px;}
.y141{bottom:909.642300px;}
.y55{bottom:911.772150px;}
.y7f{bottom:911.772300px;}
.ye5{bottom:912.012300px;}
.y2a{bottom:912.862800px;}
.y1{bottom:915.399750px;}
.y27{bottom:943.435350px;}
.y26{bottom:960.287250px;}
.y29{bottom:964.299450px;}
.y54{bottom:965.632950px;}
.y28{bottom:965.770050px;}
.h2{height:29.007000px;}
.h3{height:29.106000px;}
.hd{height:30.030000px;}
.hc{height:32.340000px;}
.hb{height:33.947754px;}
.h6{height:34.176000px;}
.h1c{height:34.176041px;}
.h1a{height:34.176154px;}
.h8{height:34.368000px;}
.he{height:34.650000px;}
.h1d{height:35.040000px;}
.h7{height:35.160000px;}
.h13{height:38.556000px;}
.ha{height:38.664000px;}
.h15{height:39.393000px;}
.h9{height:39.555000px;}
.h10{height:42.960000px;}
.h1e{height:43.359375px;}
.h11{height:45.025080px;}
.h12{height:45.025680px;}
.hf{height:48.345000px;}
.h5{height:51.606060px;}
.h4{height:61.530000px;}
.h14{height:67.116000px;}
.h16{height:74.556000px;}
.h18{height:74.664000px;}
.h17{height:110.556000px;}
.h19{height:110.664000px;}
.h1b{height:595.275000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:544.251000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x2{left:78.661350px;}
.x10{left:85.011150px;}
.x11{left:87.157650px;}
.x28{left:88.825800px;}
.x12{left:89.891400px;}
.x3{left:91.417350px;}
.x27{left:93.348000px;}
.xe{left:95.669250px;}
.x29{left:97.107600px;}
.x49{left:100.070550px;}
.x26{left:102.473850px;}
.xd{left:105.395700px;}
.xf{left:107.576100px;}
.x48{left:108.830550px;}
.x53{left:110.318850px;}
.x3f{left:116.452950px;}
.x43{left:118.139250px;}
.x25{left:121.555200px;}
.xa{left:124.846800px;}
.x50{left:128.205227px;}
.x45{left:133.299150px;}
.x4{left:143.977050px;}
.x44{left:160.461150px;}
.x2a{left:167.658900px;}
.x13{left:177.323700px;}
.x15{left:179.308050px;}
.x2c{left:180.767250px;}
.x2b{left:183.190650px;}
.x14{left:187.178550px;}
.x5{left:191.420850px;}
.x3e{left:194.260350px;}
.x24{left:202.764300px;}
.x46{left:207.605100px;}
.x51{left:210.764244px;}
.x47{left:217.288350px;}
.x2d{left:244.937850px;}
.x2e{left:246.280950px;}
.x1e{left:252.132450px;}
.x2f{left:253.523550px;}
.x30{left:254.590200px;}
.x1d{left:258.821550px;}
.x52{left:265.515694px;}
.x6{left:288.762450px;}
.x16{left:289.836900px;}
.x41{left:298.488300px;}
.x17{left:302.188650px;}
.x1{left:303.902400px;}
.x31{left:309.176400px;}
.x1f{left:312.800400px;}
.x20{left:315.831300px;}
.x7{left:336.698100px;}
.x55{left:364.550850px;}
.x32{left:370.105350px;}
.x54{left:371.798850px;}
.x23{left:373.778700px;}
.x34{left:375.316500px;}
.x33{left:376.808400px;}
.x21{left:378.894900px;}
.x35{left:384.124950px;}
.x22{left:385.597650px;}
.xb{left:401.057100px;}
.x56{left:403.514850px;}
.x42{left:406.776450px;}
.x4a{left:410.521350px;}
.x8{left:431.279850px;}
.x36{left:439.811400px;}
.x18{left:444.772500px;}
.x19{left:446.432850px;}
.x37{left:448.120650px;}
.x4e{left:450.845590px;}
.x4b{left:454.238506px;}
.xc{left:466.534200px;}
.x9{left:483.043200px;}
.x4c{left:487.125693px;}
.x3b{left:496.252800px;}
.x39{left:500.519100px;}
.x3c{left:503.333700px;}
.x38{left:505.140600px;}
.x3a{left:506.911050px;}
.x1b{left:523.476600px;}
.x1a{left:527.425200px;}
.x4d{left:541.877143px;}
.x4f{left:545.281835px;}
.x3d{left:551.273100px;}
.x1c{left:554.775600px;}
.x40{left:557.622300px;}
@media print{
.v3{vertical-align:-4.741333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.759467pt;}
.v1{vertical-align:19.536000pt;}
.v4{vertical-align:25.386667pt;}
.v5{vertical-align:32.000000pt;}
.v6{vertical-align:64.000000pt;}
.ls1c{letter-spacing:-5.520000pt;}
.ls26{letter-spacing:-4.181333pt;}
.lse{letter-spacing:-1.680000pt;}
.ls11{letter-spacing:-1.584000pt;}
.ls18{letter-spacing:-1.392000pt;}
.ls15{letter-spacing:-1.296000pt;}
.ls14{letter-spacing:-1.056000pt;}
.ls7{letter-spacing:-1.040000pt;}
.ls1f{letter-spacing:-1.008000pt;}
.ls5{letter-spacing:-0.938667pt;}
.lsf{letter-spacing:-0.912000pt;}
.ls1d{letter-spacing:-0.864000pt;}
.ls1e{letter-spacing:-0.768000pt;}
.ls12{letter-spacing:-0.720000pt;}
.ls2b{letter-spacing:-0.682667pt;}
.ls20{letter-spacing:-0.624000pt;}
.ls1b{letter-spacing:-0.576000pt;}
.ls10{letter-spacing:-0.528000pt;}
.ls4{letter-spacing:-0.512000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls27{letter-spacing:-0.469333pt;}
.ls6{letter-spacing:-0.448000pt;}
.ls2a{letter-spacing:-0.426667pt;}
.ls28{letter-spacing:-0.384000pt;}
.ls1a{letter-spacing:-0.288000pt;}
.lsd{letter-spacing:-0.240000pt;}
.ls13{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.155467pt;}
.ls29{letter-spacing:-0.128000pt;}
.ls2c{letter-spacing:-0.085333pt;}
.ls2e{letter-spacing:-0.048000pt;}
.ls2d{letter-spacing:-0.040000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.018667pt;}
.ls24{letter-spacing:0.042667pt;}
.ls21{letter-spacing:0.085333pt;}
.ls25{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.176000pt;}
.lsb{letter-spacing:0.186560pt;}
.ls22{letter-spacing:0.213333pt;}
.ls2{letter-spacing:0.240000pt;}
.ls23{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.426667pt;}
.ls17{letter-spacing:0.480000pt;}
.lsc{letter-spacing:0.800000pt;}
.ls2f{letter-spacing:35.750400pt;}
.ls19{letter-spacing:69.245333pt;}
.ws2{word-spacing:-42.666667pt;}
.ws20{word-spacing:-14.490667pt;}
.ws22{word-spacing:-12.533333pt;}
.ws8b{word-spacing:-12.266667pt;}
.ws21{word-spacing:-12.106667pt;}
.ws6{word-spacing:-11.856000pt;}
.ws13e{word-spacing:-11.626667pt;}
.wsad{word-spacing:-10.896000pt;}
.ws123{word-spacing:-10.848000pt;}
.ws122{word-spacing:-10.640000pt;}
.ws4{word-spacing:-10.538667pt;}
.ws63{word-spacing:-10.416000pt;}
.wsa5{word-spacing:-10.080000pt;}
.ws1{word-spacing:-9.968000pt;}
.ws66{word-spacing:-9.936000pt;}
.wsbf{word-spacing:-9.898667pt;}
.ws64{word-spacing:-9.888000pt;}
.wsbe{word-spacing:-9.813333pt;}
.wsc3{word-spacing:-9.728000pt;}
.ws65{word-spacing:-9.696000pt;}
.wsba{word-spacing:-9.685377pt;}
.wsc0{word-spacing:-9.685345pt;}
.ws5{word-spacing:-9.685333pt;}
.ws3{word-spacing:-9.600000pt;}
.wsc4{word-spacing:-9.557333pt;}
.ws8c{word-spacing:-9.504000pt;}
.wsc1{word-spacing:-9.258667pt;}
.wsbd{word-spacing:-9.216000pt;}
.wsbc{word-spacing:-9.173333pt;}
.ws0{word-spacing:-9.132112pt;}
.wsc2{word-spacing:-9.002667pt;}
.ws126{word-spacing:-8.688000pt;}
.ws24{word-spacing:-7.244747pt;}
.ws115{word-spacing:-7.058187pt;}
.ws23{word-spacing:-6.902720pt;}
.wsbb{word-spacing:-5.504000pt;}
.ws13a{word-spacing:-3.936000pt;}
.ws135{word-spacing:-3.024000pt;}
.ws130{word-spacing:-2.880000pt;}
.ws12c{word-spacing:-2.832000pt;}
.wsfb{word-spacing:-2.773333pt;}
.ws45{word-spacing:-2.666667pt;}
.ws12f{word-spacing:-2.640000pt;}
.ws105{word-spacing:-2.453333pt;}
.wsee{word-spacing:-2.400000pt;}
.ws78{word-spacing:-2.346667pt;}
.ws108{word-spacing:-2.293333pt;}
.ws111{word-spacing:-2.240000pt;}
.ws104{word-spacing:-2.186667pt;}
.wsd2{word-spacing:-2.133333pt;}
.ws7a{word-spacing:-2.080000pt;}
.ws117{word-spacing:-2.026667pt;}
.ws86{word-spacing:-1.973333pt;}
.ws43{word-spacing:-1.920000pt;}
.wsd9{word-spacing:-1.866667pt;}
.ws11c{word-spacing:-1.776000pt;}
.ws100{word-spacing:-1.760000pt;}
.wse1{word-spacing:-1.706667pt;}
.ws76{word-spacing:-1.653333pt;}
.ws106{word-spacing:-1.600000pt;}
.wsa4{word-spacing:-1.584000pt;}
.ws9c{word-spacing:-1.546667pt;}
.ws9a{word-spacing:-1.493333pt;}
.wsf7{word-spacing:-1.440000pt;}
.wse9{word-spacing:-1.386667pt;}
.ws109{word-spacing:-1.333333pt;}
.ws2d{word-spacing:-1.280000pt;}
.ws124{word-spacing:-1.248000pt;}
.wsa9{word-spacing:-1.226667pt;}
.ws3a{word-spacing:-1.173333pt;}
.ws51{word-spacing:-1.120000pt;}
.wsb7{word-spacing:-1.104000pt;}
.ws11a{word-spacing:-1.066667pt;}
.ws77{word-spacing:-1.013333pt;}
.ws120{word-spacing:-0.981333pt;}
.wsb{word-spacing:-0.970667pt;}
.wse8{word-spacing:-0.960000pt;}
.ws114{word-spacing:-0.906667pt;}
.wsff{word-spacing:-0.853333pt;}
.wsdb{word-spacing:-0.800000pt;}
.ws12d{word-spacing:-0.768000pt;}
.wsd3{word-spacing:-0.746667pt;}
.wsfe{word-spacing:-0.693333pt;}
.ws131{word-spacing:-0.672000pt;}
.ws79{word-spacing:-0.640000pt;}
.wse7{word-spacing:-0.586667pt;}
.ws17{word-spacing:-0.576000pt;}
.ws7{word-spacing:-0.563200pt;}
.ws52{word-spacing:-0.533333pt;}
.ws80{word-spacing:-0.528000pt;}
.ws15{word-spacing:-0.480000pt;}
.ws3d{word-spacing:-0.426667pt;}
.wse5{word-spacing:-0.373333pt;}
.ws37{word-spacing:-0.320000pt;}
.wsa1{word-spacing:-0.288000pt;}
.ws53{word-spacing:-0.266667pt;}
.wsd{word-spacing:-0.256000pt;}
.wsa2{word-spacing:-0.240000pt;}
.ws34{word-spacing:-0.213333pt;}
.wsc9{word-spacing:-0.160000pt;}
.ws38{word-spacing:-0.106667pt;}
.ws4e{word-spacing:-0.053333pt;}
.ws8{word-spacing:0.000000pt;}
.ws3e{word-spacing:0.053333pt;}
.wsd0{word-spacing:0.085333pt;}
.ws11{word-spacing:0.096000pt;}
.ws33{word-spacing:0.106667pt;}
.wsb5{word-spacing:0.144000pt;}
.wsea{word-spacing:0.160000pt;}
.ws82{word-spacing:0.192000pt;}
.ws9d{word-spacing:0.213333pt;}
.ws7c{word-spacing:0.240000pt;}
.wscc{word-spacing:0.266667pt;}
.wsb6{word-spacing:0.288000pt;}
.ws42{word-spacing:0.320000pt;}
.ws99{word-spacing:0.373333pt;}
.wsd8{word-spacing:0.426667pt;}
.ws1f{word-spacing:0.448000pt;}
.wsa3{word-spacing:0.480000pt;}
.wsc{word-spacing:0.512000pt;}
.ws7f{word-spacing:0.528000pt;}
.ws116{word-spacing:0.533333pt;}
.ws39{word-spacing:0.586667pt;}
.wsb9{word-spacing:0.624000pt;}
.ws35{word-spacing:0.640000pt;}
.ws128{word-spacing:0.672000pt;}
.wsd5{word-spacing:0.693333pt;}
.ws30{word-spacing:0.746667pt;}
.ws44{word-spacing:0.800000pt;}
.ws28{word-spacing:0.864000pt;}
.ws31{word-spacing:0.906667pt;}
.ws7e{word-spacing:0.912000pt;}
.ws4f{word-spacing:0.960000pt;}
.wsb8{word-spacing:1.008000pt;}
.ws118{word-spacing:1.013333pt;}
.ws87{word-spacing:1.066667pt;}
.wse3{word-spacing:1.120000pt;}
.ws27{word-spacing:1.152000pt;}
.ws9e{word-spacing:1.173333pt;}
.ws2f{word-spacing:1.226667pt;}
.ws19{word-spacing:1.248000pt;}
.wsaa{word-spacing:1.280000pt;}
.wsf5{word-spacing:1.333333pt;}
.wscf{word-spacing:1.344000pt;}
.wsfa{word-spacing:1.440000pt;}
.wsce{word-spacing:1.488000pt;}
.wsc8{word-spacing:1.493333pt;}
.ws2e{word-spacing:1.546667pt;}
.ws81{word-spacing:1.584000pt;}
.ws5f{word-spacing:1.600000pt;}
.ws4c{word-spacing:1.653333pt;}
.ws7d{word-spacing:1.680000pt;}
.ws5c{word-spacing:1.760000pt;}
.ws1c{word-spacing:1.776000pt;}
.ws46{word-spacing:1.813333pt;}
.ws32{word-spacing:1.866667pt;}
.ws13b{word-spacing:1.872000pt;}
.ws13{word-spacing:1.920000pt;}
.wsf8{word-spacing:1.973333pt;}
.ws121{word-spacing:2.005333pt;}
.ws11e{word-spacing:2.016000pt;}
.ws47{word-spacing:2.026667pt;}
.wsef{word-spacing:2.080000pt;}
.ws10d{word-spacing:2.133333pt;}
.wsca{word-spacing:2.186667pt;}
.wscd{word-spacing:2.240000pt;}
.ws5d{word-spacing:2.293333pt;}
.ws3c{word-spacing:2.346667pt;}
.ws5b{word-spacing:2.400000pt;}
.ws29{word-spacing:2.448000pt;}
.wse4{word-spacing:2.453333pt;}
.ws12{word-spacing:2.496000pt;}
.ws4b{word-spacing:2.506667pt;}
.wsab{word-spacing:2.613333pt;}
.wsf9{word-spacing:2.666667pt;}
.ws25{word-spacing:2.688000pt;}
.ws10a{word-spacing:2.720000pt;}
.ws83{word-spacing:2.773333pt;}
.ws56{word-spacing:2.826667pt;}
.ws12a{word-spacing:2.832000pt;}
.wsd7{word-spacing:2.880000pt;}
.ws55{word-spacing:2.933333pt;}
.wsf3{word-spacing:2.986667pt;}
.wsa7{word-spacing:3.040000pt;}
.ws1b{word-spacing:3.072000pt;}
.ws9{word-spacing:3.192000pt;}
.wse2{word-spacing:3.200000pt;}
.wsf4{word-spacing:3.253333pt;}
.ws54{word-spacing:3.306667pt;}
.ws13d{word-spacing:3.312000pt;}
.wsd4{word-spacing:3.360000pt;}
.ws10{word-spacing:3.408000pt;}
.ws85{word-spacing:3.413333pt;}
.ws12e{word-spacing:3.456000pt;}
.ws48{word-spacing:3.466667pt;}
.ws26{word-spacing:3.504000pt;}
.wsdd{word-spacing:3.520000pt;}
.ws40{word-spacing:3.573333pt;}
.ws11b{word-spacing:3.600000pt;}
.wscb{word-spacing:3.626667pt;}
.wsf6{word-spacing:3.680000pt;}
.ws3f{word-spacing:3.733333pt;}
.ws133{word-spacing:3.744000pt;}
.ws2a{word-spacing:3.792000pt;}
.ws103{word-spacing:3.840000pt;}
.ws10c{word-spacing:3.893333pt;}
.ws107{word-spacing:3.946667pt;}
.wsc6{word-spacing:4.000000pt;}
.ws7b{word-spacing:4.032000pt;}
.ws84{word-spacing:4.053333pt;}
.ws49{word-spacing:4.106667pt;}
.ws4a{word-spacing:4.160000pt;}
.ws9f{word-spacing:4.213333pt;}
.wsda{word-spacing:4.266667pt;}
.wsa0{word-spacing:4.320000pt;}
.ws5e{word-spacing:4.373333pt;}
.ws14{word-spacing:4.416000pt;}
.ws62{word-spacing:4.426667pt;}
.wsf2{word-spacing:4.480000pt;}
.ws61{word-spacing:4.586667pt;}
.wse0{word-spacing:4.640000pt;}
.wsec{word-spacing:4.693333pt;}
.ws10f{word-spacing:4.800000pt;}
.ws16{word-spacing:4.848000pt;}
.wsd6{word-spacing:4.853333pt;}
.ws5a{word-spacing:4.906667pt;}
.ws57{word-spacing:4.960000pt;}
.wsed{word-spacing:5.066667pt;}
.wsfc{word-spacing:5.120000pt;}
.ws2b{word-spacing:5.226667pt;}
.ws2c{word-spacing:5.280000pt;}
.ws58{word-spacing:5.333333pt;}
.wsde{word-spacing:5.386667pt;}
.ws89{word-spacing:5.440000pt;}
.ws18{word-spacing:5.472000pt;}
.ws8a{word-spacing:5.493333pt;}
.ws110{word-spacing:5.546667pt;}
.ws136{word-spacing:5.664000pt;}
.ws36{word-spacing:5.706667pt;}
.ws10e{word-spacing:5.760000pt;}
.ws9b{word-spacing:5.866667pt;}
.ws102{word-spacing:5.920000pt;}
.wsa{word-spacing:5.947200pt;}
.wsdc{word-spacing:5.973333pt;}
.wsa8{word-spacing:6.026667pt;}
.ws1a{word-spacing:6.048000pt;}
.ws50{word-spacing:6.080000pt;}
.wsdf{word-spacing:6.133333pt;}
.wsf{word-spacing:6.192000pt;}
.wse6{word-spacing:6.240000pt;}
.ws13f{word-spacing:6.288000pt;}
.wsf0{word-spacing:6.293333pt;}
.ws41{word-spacing:6.346667pt;}
.ws1d{word-spacing:6.384000pt;}
.ws75{word-spacing:6.400000pt;}
.wsd1{word-spacing:6.453333pt;}
.ws1e{word-spacing:6.480000pt;}
.ws119{word-spacing:6.506667pt;}
.ws60{word-spacing:6.560000pt;}
.ws11f{word-spacing:6.624000pt;}
.ws88{word-spacing:6.720000pt;}
.ws10b{word-spacing:6.826667pt;}
.ws3b{word-spacing:6.880000pt;}
.wsf1{word-spacing:6.933333pt;}
.wsfd{word-spacing:6.986667pt;}
.ws4d{word-spacing:7.093333pt;}
.ws101{word-spacing:7.146667pt;}
.ws127{word-spacing:7.584000pt;}
.ws112{word-spacing:7.626667pt;}
.wsc7{word-spacing:7.733333pt;}
.wsc5{word-spacing:7.786667pt;}
.ws144{word-spacing:8.106667pt;}
.ws139{word-spacing:8.208000pt;}
.wse{word-spacing:8.362667pt;}
.ws113{word-spacing:8.533333pt;}
.ws140{word-spacing:8.736000pt;}
.ws138{word-spacing:8.928000pt;}
.ws125{word-spacing:9.216000pt;}
.ws12b{word-spacing:9.408000pt;}
.ws132{word-spacing:9.696000pt;}
.ws137{word-spacing:9.936000pt;}
.ws59{word-spacing:10.240000pt;}
.wseb{word-spacing:10.293333pt;}
.ws134{word-spacing:10.368000pt;}
.wsa6{word-spacing:10.773333pt;}
.ws11d{word-spacing:11.088000pt;}
.ws129{word-spacing:11.424000pt;}
.ws13c{word-spacing:11.904000pt;}
.ws145{word-spacing:12.746667pt;}
.ws142{word-spacing:14.026667pt;}
.ws141{word-spacing:16.373333pt;}
.ws143{word-spacing:16.960000pt;}
.ws8d{word-spacing:31.600000pt;}
.ws97{word-spacing:46.624000pt;}
.wsb4{word-spacing:46.829333pt;}
.ws67{word-spacing:51.284800pt;}
.ws96{word-spacing:58.144000pt;}
.ws95{word-spacing:60.352000pt;}
.ws98{word-spacing:69.664533pt;}
.ws8e{word-spacing:95.684267pt;}
.ws68{word-spacing:114.644800pt;}
.ws94{word-spacing:119.080533pt;}
.ws6f{word-spacing:121.316800pt;}
.ws92{word-spacing:121.891733pt;}
.ws72{word-spacing:125.780800pt;}
.ws6b{word-spacing:133.028800pt;}
.ws6e{word-spacing:136.410133pt;}
.ws93{word-spacing:137.700267pt;}
.ws6a{word-spacing:147.642133pt;}
.ws70{word-spacing:149.488000pt;}
.ws6c{word-spacing:152.802667pt;}
.wsac{word-spacing:154.901333pt;}
.ws91{word-spacing:163.242133pt;}
.ws8f{word-spacing:163.667200pt;}
.ws73{word-spacing:173.056000pt;}
.ws90{word-spacing:176.660267pt;}
.wsb1{word-spacing:213.328533pt;}
.wsaf{word-spacing:222.688533pt;}
.ws71{word-spacing:224.466667pt;}
.ws74{word-spacing:226.698667pt;}
.ws69{word-spacing:233.946133pt;}
.ws6d{word-spacing:237.570667pt;}
.wsb3{word-spacing:243.568533pt;}
.wsae{word-spacing:330.108267pt;}
.wsb0{word-spacing:341.628800pt;}
.wsb2{word-spacing:555.753067pt;}
._48{margin-left:-51.924267pt;}
._44{margin-left:-8.693867pt;}
._4{margin-left:-6.981333pt;}
._6{margin-left:-5.397333pt;}
._2{margin-left:-3.712800pt;}
._3{margin-left:-2.128000pt;}
._0{margin-left:-0.991200pt;}
._5{width:1.095733pt;}
._c{width:2.010933pt;}
._1{width:3.217333pt;}
._a{width:4.135200pt;}
._9{width:5.311200pt;}
._b{width:6.710400pt;}
._e{width:7.630400pt;}
._42{width:8.532533pt;}
._47{width:9.515467pt;}
._f{width:10.586667pt;}
._45{width:11.831733pt;}
._8{width:15.061333pt;}
._7{width:19.840000pt;}
._46{width:31.274667pt;}
._2f{width:43.205867pt;}
._36{width:57.725333pt;}
._29{width:69.245333pt;}
._12{width:76.203467pt;}
._23{width:87.747200pt;}
._1e{width:99.436267pt;}
._13{width:104.271467pt;}
._26{width:110.786667pt;}
._22{width:122.177600pt;}
._1d{width:131.900267pt;}
._21{width:133.697600pt;}
._16{width:142.746133pt;}
._11{width:144.042667pt;}
._25{width:146.385067pt;}
._34{width:148.391467pt;}
._17{width:152.178667pt;}
._24{width:155.204267pt;}
._20{width:160.189867pt;}
._1a{width:163.658933pt;}
._3d{width:167.128267pt;}
._1b{width:169.667200pt;}
._1f{width:171.259200pt;}
._18{width:172.432000pt;}
._14{width:174.570667pt;}
._37{width:178.151467pt;}
._2e{width:181.751467pt;}
._31{width:189.377333pt;}
._1c{width:203.706133pt;}
._27{width:221.605867pt;}
._35{width:229.453600pt;}
._15{width:232.487467pt;}
._3b{width:241.959467pt;}
._19{width:244.007467pt;}
._2c{width:251.004800pt;}
._30{width:262.524267pt;}
._10{width:263.547733pt;}
._2b{width:266.103467pt;}
._32{width:270.587200pt;}
._40{width:274.044267pt;}
._3e{width:278.530933pt;}
._28{width:288.026667pt;}
._33{width:290.251200pt;}
._38{width:294.313067pt;}
._41{width:301.380800pt;}
._2a{width:335.646400pt;}
._39{width:347.711733pt;}
._3f{width:357.306133pt;}
._2d{width:388.808267pt;}
._3a{width:459.513067pt;}
._3c{width:466.545867pt;}
._43{width:1216.822133pt;}
._d{width:1221.922400pt;}
.fsb{font-size:31.093333pt;}
.fs1{font-size:33.600000pt;}
.fs4{font-size:34.202667pt;}
.fs9{font-size:34.666667pt;}
.fs0{font-size:35.200000pt;}
.fs5{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fsd{font-size:42.666718pt;}
.fsc{font-size:42.666859pt;}
.fs7{font-size:48.000000pt;}
.fsa{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:49.664267pt;}
.y3{bottom:60.864267pt;}
.y1c6{bottom:68.031600pt;}
.y2{bottom:72.064267pt;}
.y16f{bottom:72.570933pt;}
.y111{bottom:72.787733pt;}
.ye4{bottom:74.425600pt;}
.y19d{bottom:74.464267pt;}
.y1ef{bottom:75.433600pt;}
.y18e{bottom:76.228000pt;}
.yb6{bottom:77.235867pt;}
.y53{bottom:78.463600pt;}
.y1ba{bottom:79.289467pt;}
.y7e{bottom:81.053200pt;}
.y1c5{bottom:81.364933pt;}
.ye3{bottom:83.998800pt;}
.y16e{bottom:88.570933pt;}
.y10f{bottom:88.668267pt;}
.y110{bottom:88.787733pt;}
.y19c{bottom:90.464267pt;}
.y1ee{bottom:91.433600pt;}
.y18d{bottom:92.228000pt;}
.yb5{bottom:93.235867pt;}
.y52{bottom:94.463600pt;}
.y1c4{bottom:94.698267pt;}
.y1b9{bottom:95.289467pt;}
.y7d{bottom:97.053200pt;}
.ye2{bottom:99.998800pt;}
.y25{bottom:103.685200pt;}
.y16d{bottom:104.570933pt;}
.y19b{bottom:106.464267pt;}
.y1ed{bottom:107.433600pt;}
.y18c{bottom:108.228000pt;}
.yb4{bottom:109.235867pt;}
.y117{bottom:109.938667pt;}
.y51{bottom:110.463600pt;}
.y1b8{bottom:111.289467pt;}
.y10e{bottom:112.518667pt;}
.y7c{bottom:113.053200pt;}
.ye1{bottom:115.998800pt;}
.y140{bottom:117.232933pt;}
.y24{bottom:119.685200pt;}
.y16c{bottom:120.570933pt;}
.y19a{bottom:122.464267pt;}
.y1ec{bottom:123.433600pt;}
.y18b{bottom:124.228000pt;}
.yb3{bottom:125.235867pt;}
.y50{bottom:126.463600pt;}
.y1b7{bottom:127.289467pt;}
.y13f{bottom:127.707600pt;}
.y7b{bottom:129.053200pt;}
.y10d{bottom:131.825200pt;}
.y23{bottom:135.685200pt;}
.y16b{bottom:136.570933pt;}
.y199{bottom:138.464267pt;}
.y1eb{bottom:139.433600pt;}
.y10c{bottom:139.825200pt;}
.ye0{bottom:139.849200pt;}
.y18a{bottom:140.228133pt;}
.yb2{bottom:141.235867pt;}
.y4f{bottom:142.463467pt;}
.y1b6{bottom:143.289467pt;}
.y127{bottom:143.915601pt;}
.y7a{bottom:145.053200pt;}
.y128{bottom:149.306958pt;}
.y22{bottom:151.685200pt;}
.y1c3{bottom:151.730400pt;}
.y12b{bottom:152.431151pt;}
.y16a{bottom:152.570933pt;}
.y198{bottom:154.464267pt;}
.y1ea{bottom:155.433600pt;}
.y189{bottom:156.228133pt;}
.yb1{bottom:157.235867pt;}
.y12c{bottom:157.821696pt;}
.y126{bottom:158.259858pt;}
.y4e{bottom:158.463467pt;}
.ydf{bottom:159.155733pt;}
.y1b5{bottom:159.289467pt;}
.y79{bottom:161.053200pt;}
.y125{bottom:161.101862pt;}
.y12a{bottom:166.526395pt;}
.y10b{bottom:167.131733pt;}
.y21{bottom:167.685200pt;}
.y1c2{bottom:167.730400pt;}
.y169{bottom:168.570933pt;}
.y129{bottom:169.368399pt;}
.y197{bottom:170.464267pt;}
.y1e9{bottom:171.433600pt;}
.y188{bottom:172.228133pt;}
.yb0{bottom:173.235867pt;}
.y4d{bottom:174.463467pt;}
.y10a{bottom:175.131733pt;}
.y1b4{bottom:175.289467pt;}
.y78{bottom:177.053200pt;}
.yde{bottom:178.462400pt;}
.y1c1{bottom:183.730400pt;}
.y168{bottom:184.570933pt;}
.y196{bottom:186.464267pt;}
.y1e8{bottom:187.433600pt;}
.y20{bottom:187.464667pt;}
.y187{bottom:188.228133pt;}
.y137{bottom:189.115600pt;}
.yaf{bottom:189.235867pt;}
.y4c{bottom:190.463467pt;}
.y1b3{bottom:191.289467pt;}
.y77{bottom:193.053200pt;}
.ydd{bottom:197.768933pt;}
.y1c0{bottom:199.730400pt;}
.y167{bottom:200.570933pt;}
.y109{bottom:202.438267pt;}
.y195{bottom:202.464267pt;}
.y1e7{bottom:203.433600pt;}
.y1f{bottom:203.464667pt;}
.y186{bottom:204.228133pt;}
.yae{bottom:205.235867pt;}
.y131{bottom:206.118267pt;}
.y4b{bottom:206.463467pt;}
.y1b2{bottom:207.289467pt;}
.y1bf{bottom:215.730400pt;}
.y166{bottom:216.570933pt;}
.ydc{bottom:217.075467pt;}
.y194{bottom:218.464267pt;}
.y136{bottom:218.598267pt;}
.y1e6{bottom:219.433600pt;}
.y1e{bottom:219.464667pt;}
.y185{bottom:220.228133pt;}
.yad{bottom:221.235867pt;}
.y108{bottom:221.744800pt;}
.y4a{bottom:222.463467pt;}
.y1b1{bottom:223.289467pt;}
.y107{bottom:229.744800pt;}
.y1be{bottom:231.730400pt;}
.y165{bottom:232.570933pt;}
.y193{bottom:234.464267pt;}
.y1e5{bottom:235.433600pt;}
.y1d{bottom:235.464667pt;}
.y184{bottom:236.228133pt;}
.ydb{bottom:236.382000pt;}
.yac{bottom:237.235867pt;}
.y49{bottom:238.463467pt;}
.y130{bottom:238.619600pt;}
.y76{bottom:239.289333pt;}
.y1b0{bottom:239.289467pt;}
.yda{bottom:244.382000pt;}
.y135{bottom:247.696933pt;}
.y1bd{bottom:247.730400pt;}
.y164{bottom:248.570933pt;}
.y192{bottom:250.464267pt;}
.y1e4{bottom:251.433600pt;}
.y1c{bottom:251.464667pt;}
.y183{bottom:252.228133pt;}
.yab{bottom:253.235867pt;}
.ycb{bottom:254.035333pt;}
.y207{bottom:254.406800pt;}
.y48{bottom:254.463467pt;}
.y75{bottom:255.289333pt;}
.y1af{bottom:255.289467pt;}
.y106{bottom:257.051333pt;}
.yd8{bottom:260.382000pt;}
.y1bc{bottom:263.730400pt;}
.y163{bottom:264.570933pt;}
.y105{bottom:265.051333pt;}
.y191{bottom:266.464267pt;}
.y1e3{bottom:267.433600pt;}
.y1b{bottom:267.464667pt;}
.y182{bottom:268.228133pt;}
.yaa{bottom:269.235867pt;}
.yca{bottom:270.035333pt;}
.y206{bottom:270.406800pt;}
.y47{bottom:270.463467pt;}
.y74{bottom:271.289333pt;}
.y1ae{bottom:271.289467pt;}
.yd1{bottom:271.688533pt;}
.y12f{bottom:271.878267pt;}
.yd7{bottom:276.382000pt;}
.y134{bottom:276.795600pt;}
.y162{bottom:280.570933pt;}
.y190{bottom:282.464267pt;}
.y1e2{bottom:283.433600pt;}
.y1a{bottom:283.464667pt;}
.y1a6{bottom:284.228133pt;}
.yd9{bottom:284.382000pt;}
.yc9{bottom:286.035333pt;}
.y46{bottom:286.463467pt;}
.y73{bottom:287.289333pt;}
.y1ad{bottom:287.289467pt;}
.yd0{bottom:287.688533pt;}
.y104{bottom:292.358000pt;}
.yd6{bottom:292.382000pt;}
.y205{bottom:293.965867pt;}
.y1bb{bottom:294.848533pt;}
.yd4{bottom:295.688533pt;}
.y161{bottom:296.570933pt;}
.y18f{bottom:298.464267pt;}
.y1e1{bottom:299.433600pt;}
.y1a5{bottom:300.228133pt;}
.y103{bottom:300.358000pt;}
.yc8{bottom:302.035333pt;}
.y45{bottom:302.463467pt;}
.y19{bottom:303.244267pt;}
.y72{bottom:303.289333pt;}
.y1ac{bottom:303.289467pt;}
.ycf{bottom:303.688533pt;}
.ya9{bottom:303.922800pt;}
.y12e{bottom:304.763600pt;}
.y133{bottom:306.278267pt;}
.yd5{bottom:308.382000pt;}
.y204{bottom:309.965867pt;}
.yd3{bottom:311.688533pt;}
.y160{bottom:312.570933pt;}
.y181{bottom:314.464267pt;}
.y1e0{bottom:315.433600pt;}
.y1a4{bottom:316.228133pt;}
.yc7{bottom:318.035333pt;}
.y44{bottom:318.463467pt;}
.y18{bottom:319.244267pt;}
.y1ab{bottom:319.289467pt;}
.yce{bottom:319.688533pt;}
.ya8{bottom:319.922800pt;}
.y203{bottom:325.965867pt;}
.y102{bottom:327.664533pt;}
.yd2{bottom:327.688533pt;}
.y15f{bottom:328.570933pt;}
.y180{bottom:330.464267pt;}
.y1df{bottom:331.433600pt;}
.y1a3{bottom:332.228133pt;}
.yc6{bottom:334.035333pt;}
.y71{bottom:334.407467pt;}
.y43{bottom:334.463467pt;}
.y17{bottom:335.244267pt;}
.y1aa{bottom:335.289467pt;}
.ycd{bottom:335.688533pt;}
.ya7{bottom:335.922800pt;}
.y132{bottom:336.518267pt;}
.y12d{bottom:337.648933pt;}
.y202{bottom:341.965867pt;}
.y15e{bottom:344.570933pt;}
.y17f{bottom:346.464267pt;}
.y101{bottom:346.971067pt;}
.y1de{bottom:347.433600pt;}
.y1a2{bottom:348.228133pt;}
.y42{bottom:350.463467pt;}
.y16{bottom:351.244267pt;}
.y1a9{bottom:351.289467pt;}
.ycc{bottom:351.688533pt;}
.y100{bottom:354.971067pt;}
.y201{bottom:357.965867pt;}
.y114{bottom:358.919600pt;}
.ya6{bottom:359.773200pt;}
.y15d{bottom:360.570933pt;}
.y17e{bottom:362.464267pt;}
.y1dd{bottom:363.433600pt;}
.y1a1{bottom:364.228133pt;}
.y41{bottom:366.463467pt;}
.y15{bottom:367.244267pt;}
.y113{bottom:369.586267pt;}
.y13e{bottom:369.595600pt;}
.y200{bottom:373.965867pt;}
.y15c{bottom:376.570933pt;}
.y70{bottom:378.464133pt;}
.y17d{bottom:378.464267pt;}
.yc5{bottom:378.929467pt;}
.ya5{bottom:379.079733pt;}
.y1dc{bottom:379.433600pt;}
.y1a0{bottom:380.228133pt;}
.yff{bottom:382.277600pt;}
.y1a8{bottom:382.407600pt;}
.y40{bottom:382.463467pt;}
.y14{bottom:383.244267pt;}
.y120{bottom:388.665200pt;}
.yfe{bottom:390.277600pt;}
.y15b{bottom:392.570933pt;}
.y6f{bottom:394.464133pt;}
.y17c{bottom:394.464267pt;}
.yc4{bottom:394.929467pt;}
.y1db{bottom:395.433600pt;}
.y19f{bottom:396.228133pt;}
.y1ff{bottom:397.524933pt;}
.ya4{bottom:398.386267pt;}
.y3f{bottom:398.463467pt;}
.y13{bottom:399.244267pt;}
.y15a{bottom:408.570933pt;}
.y6e{bottom:410.464133pt;}
.y17b{bottom:410.464267pt;}
.y1da{bottom:411.433600pt;}
.y19e{bottom:412.228133pt;}
.y123{bottom:412.446997pt;}
.y1fe{bottom:413.524933pt;}
.y3e{bottom:414.463467pt;}
.yfd{bottom:417.584133pt;}
.ya3{bottom:417.692800pt;}
.y11f{bottom:417.763867pt;}
.y124{bottom:417.837542pt;}
.y12{bottom:419.023733pt;}
.y159{bottom:424.570933pt;}
.yfc{bottom:425.584133pt;}
.y6d{bottom:426.464133pt;}
.y17a{bottom:426.464267pt;}
.y122{bottom:426.797816pt;}
.y1d9{bottom:427.433600pt;}
.yc3{bottom:428.228133pt;}
.y1fd{bottom:429.524933pt;}
.y121{bottom:430.396933pt;}
.y3d{bottom:430.463467pt;}
.ya2{bottom:436.999333pt;}
.y158{bottom:440.570933pt;}
.y6c{bottom:442.464133pt;}
.y179{bottom:442.464267pt;}
.y1d8{bottom:443.433600pt;}
.yc2{bottom:444.228133pt;}
.y1fc{bottom:445.524933pt;}
.y3c{bottom:446.463467pt;}
.y11e{bottom:447.246533pt;}
.y93{bottom:448.305867pt;}
.yfb{bottom:452.890667pt;}
.ya1{bottom:456.305867pt;}
.y157{bottom:456.570933pt;}
.y9e{bottom:457.959200pt;}
.y6b{bottom:458.464133pt;}
.y178{bottom:458.464267pt;}
.y13d{bottom:459.355600pt;}
.y1d7{bottom:459.433600pt;}
.yc1{bottom:460.228133pt;}
.yfa{bottom:460.890667pt;}
.y1fb{bottom:461.524933pt;}
.y3b{bottom:462.463467pt;}
.y92{bottom:464.305867pt;}
.y11{bottom:465.260133pt;}
.y97{bottom:465.959200pt;}
.ya0{bottom:472.305867pt;}
.y156{bottom:472.570933pt;}
.y9d{bottom:473.959200pt;}
.y6a{bottom:474.464133pt;}
.y177{bottom:474.464267pt;}
.y1d6{bottom:475.433600pt;}
.y11d{bottom:475.598533pt;}
.yc0{bottom:476.228133pt;}
.y1fa{bottom:477.524933pt;}
.y3a{bottom:478.463467pt;}
.y10{bottom:478.593467pt;}
.y91{bottom:480.305867pt;}
.y96{bottom:481.959200pt;}
.y13c{bottom:485.808933pt;}
.yf8{bottom:488.197200pt;}
.y9f{bottom:488.305867pt;}
.y155{bottom:488.570933pt;}
.y9c{bottom:489.959200pt;}
.y69{bottom:490.464133pt;}
.y176{bottom:490.464267pt;}
.y1d5{bottom:491.433600pt;}
.yf{bottom:491.926800pt;}
.ybf{bottom:492.228000pt;}
.y39{bottom:494.463600pt;}
.yf7{bottom:496.197200pt;}
.y90{bottom:496.305867pt;}
.y95{bottom:497.959200pt;}
.y1f9{bottom:501.084000pt;}
.yf9{bottom:504.197200pt;}
.y154{bottom:504.570933pt;}
.y11c{bottom:505.081200pt;}
.y9b{bottom:505.959200pt;}
.y68{bottom:506.464133pt;}
.y175{bottom:506.464267pt;}
.y1d4{bottom:507.433600pt;}
.y99{bottom:507.612533pt;}
.ybe{bottom:508.228000pt;}
.y38{bottom:510.463600pt;}
.y13b{bottom:511.504933pt;}
.y8f{bottom:512.305867pt;}
.y94{bottom:513.959200pt;}
.ye{bottom:516.598667pt;}
.y1f8{bottom:517.084000pt;}
.y118{bottom:519.213867pt;}
.y153{bottom:520.570933pt;}
.y9a{bottom:521.959200pt;}
.y67{bottom:522.464133pt;}
.y174{bottom:522.464267pt;}
.y1d3{bottom:523.433600pt;}
.y98{bottom:523.612533pt;}
.ybd{bottom:524.228000pt;}
.y37{bottom:526.463600pt;}
.yf6{bottom:529.183867pt;}
.y1f7{bottom:533.084000pt;}
.y11b{bottom:534.563867pt;}
.y152{bottom:536.570933pt;}
.y13a{bottom:538.150267pt;}
.y66{bottom:538.464133pt;}
.y173{bottom:538.464267pt;}
.y1d2{bottom:539.433600pt;}
.ybc{bottom:540.228000pt;}
.y36{bottom:542.463600pt;}
.y8e{bottom:550.853467pt;}
.y151{bottom:552.570933pt;}
.yf5{bottom:554.170533pt;}
.y65{bottom:554.464133pt;}
.y172{bottom:554.464267pt;}
.y1d1{bottom:555.433600pt;}
.ybb{bottom:556.228000pt;}
.yd{bottom:556.388667pt;}
.y35{bottom:558.463600pt;}
.y11a{bottom:563.289200pt;}
.y1f6{bottom:564.202133pt;}
.y139{bottom:565.552933pt;}
.y8d{bottom:566.853467pt;}
.y150{bottom:568.570933pt;}
.y64{bottom:570.464133pt;}
.y171{bottom:570.464267pt;}
.y1d0{bottom:571.433600pt;}
.yba{bottom:572.228000pt;}
.yc{bottom:572.388667pt;}
.yf4{bottom:573.477067pt;}
.yf3{bottom:581.477067pt;}
.y14f{bottom:584.570933pt;}
.y63{bottom:586.464133pt;}
.y170{bottom:586.464267pt;}
.y1cf{bottom:587.433600pt;}
.yb9{bottom:588.228000pt;}
.yb{bottom:588.388667pt;}
.y34{bottom:589.581600pt;}
.y138{bottom:592.390267pt;}
.y119{bottom:593.145200pt;}
.y112{bottom:596.930267pt;}
.y115{bottom:596.961467pt;}
.y116{bottom:597.232907pt;}
.y14e{bottom:600.570933pt;}
.y62{bottom:602.464133pt;}
.y8c{bottom:602.464267pt;}
.y1ce{bottom:603.433600pt;}
.yb8{bottom:604.228000pt;}
.ya{bottom:604.388667pt;}
.y1f5{bottom:608.258800pt;}
.yf2{bottom:608.783600pt;}
.y14d{bottom:616.570933pt;}
.yf1{bottom:616.783600pt;}
.y61{bottom:618.464133pt;}
.y8b{bottom:618.464267pt;}
.y1cd{bottom:619.433600pt;}
.yb7{bottom:620.228000pt;}
.y1f4{bottom:624.258800pt;}
.y9{bottom:627.947733pt;}
.y14c{bottom:632.570933pt;}
.y60{bottom:634.464133pt;}
.y8a{bottom:634.464267pt;}
.y1cc{bottom:635.433600pt;}
.y1a7{bottom:636.228000pt;}
.y33{bottom:637.417867pt;}
.y1f3{bottom:640.258800pt;}
.yef{bottom:644.090133pt;}
.y8{bottom:645.547733pt;}
.y14b{bottom:648.570933pt;}
.y5f{bottom:650.464133pt;}
.y89{bottom:650.464267pt;}
.y1cb{bottom:651.433600pt;}
.yee{bottom:652.090133pt;}
.y1f2{bottom:656.258800pt;}
.yf0{bottom:660.090133pt;}
.y14a{bottom:664.570933pt;}
.y5e{bottom:666.464133pt;}
.y88{bottom:666.464267pt;}
.y1ca{bottom:667.433600pt;}
.y32{bottom:668.536000pt;}
.y1f1{bottom:672.258800pt;}
.y7{bottom:679.146533pt;}
.yed{bottom:679.396667pt;}
.y149{bottom:680.570933pt;}
.y5d{bottom:682.464133pt;}
.y87{bottom:682.464267pt;}
.y1c9{bottom:683.433600pt;}
.y31{bottom:684.536000pt;}
.yec{bottom:687.396667pt;}
.y148{bottom:696.570933pt;}
.y5c{bottom:698.464133pt;}
.y86{bottom:698.464267pt;}
.y1c8{bottom:699.433600pt;}
.y6{bottom:701.546533pt;}
.y1f0{bottom:703.376933pt;}
.y30{bottom:704.315467pt;}
.y147{bottom:712.570933pt;}
.y5b{bottom:714.464133pt;}
.y85{bottom:714.464267pt;}
.yea{bottom:714.703333pt;}
.y1c7{bottom:715.433600pt;}
.ye9{bottom:722.703333pt;}
.y5{bottom:723.946400pt;}
.y146{bottom:728.570933pt;}
.y5a{bottom:730.464133pt;}
.y84{bottom:730.464267pt;}
.yeb{bottom:730.703333pt;}
.y2f{bottom:731.433600pt;}
.y145{bottom:744.570933pt;}
.y59{bottom:746.464133pt;}
.y83{bottom:746.464267pt;}
.y2e{bottom:747.433600pt;}
.ye8{bottom:750.723200pt;}
.ye7{bottom:758.723200pt;}
.y144{bottom:760.570933pt;}
.y58{bottom:762.464133pt;}
.y82{bottom:762.464267pt;}
.y2d{bottom:763.433600pt;}
.y143{bottom:776.570933pt;}
.y57{bottom:778.464133pt;}
.y81{bottom:778.464267pt;}
.y2c{bottom:779.433600pt;}
.y142{bottom:792.570933pt;}
.y56{bottom:794.464133pt;}
.y80{bottom:794.464267pt;}
.ye6{bottom:794.677600pt;}
.y2b{bottom:795.433600pt;}
.y141{bottom:808.570933pt;}
.y55{bottom:810.464133pt;}
.y7f{bottom:810.464267pt;}
.ye5{bottom:810.677600pt;}
.y2a{bottom:811.433600pt;}
.y1{bottom:813.688667pt;}
.y27{bottom:838.609200pt;}
.y26{bottom:853.588667pt;}
.y29{bottom:857.155067pt;}
.y54{bottom:858.340400pt;}
.y28{bottom:858.462267pt;}
.h2{height:25.784000pt;}
.h3{height:25.872000pt;}
.hd{height:26.693333pt;}
.hc{height:28.746667pt;}
.hb{height:30.175781pt;}
.h6{height:30.378667pt;}
.h1c{height:30.378704pt;}
.h1a{height:30.378803pt;}
.h8{height:30.549333pt;}
.he{height:30.800000pt;}
.h1d{height:31.146667pt;}
.h7{height:31.253333pt;}
.h13{height:34.272000pt;}
.ha{height:34.368000pt;}
.h15{height:35.016000pt;}
.h9{height:35.160000pt;}
.h10{height:38.186667pt;}
.h1e{height:38.541667pt;}
.h11{height:40.022293pt;}
.h12{height:40.022827pt;}
.hf{height:42.973333pt;}
.h5{height:45.872053pt;}
.h4{height:54.693333pt;}
.h14{height:59.658667pt;}
.h16{height:66.272000pt;}
.h18{height:66.368000pt;}
.h17{height:98.272000pt;}
.h19{height:98.368000pt;}
.h1b{height:529.133333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:483.778667pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x2{left:69.921200pt;}
.x10{left:75.565467pt;}
.x11{left:77.473467pt;}
.x28{left:78.956267pt;}
.x12{left:79.903467pt;}
.x3{left:81.259867pt;}
.x27{left:82.976000pt;}
.xe{left:85.039333pt;}
.x29{left:86.317867pt;}
.x49{left:88.951600pt;}
.x26{left:91.087867pt;}
.xd{left:93.685067pt;}
.xf{left:95.623200pt;}
.x48{left:96.738267pt;}
.x53{left:98.061200pt;}
.x3f{left:103.513733pt;}
.x43{left:105.012667pt;}
.x25{left:108.049067pt;}
.xa{left:110.974933pt;}
.x50{left:113.960202pt;}
.x45{left:118.488133pt;}
.x4{left:127.979600pt;}
.x44{left:142.632133pt;}
.x2a{left:149.030133pt;}
.x13{left:157.621067pt;}
.x15{left:159.384933pt;}
.x2c{left:160.682000pt;}
.x2b{left:162.836133pt;}
.x14{left:166.380933pt;}
.x5{left:170.151867pt;}
.x3e{left:172.675867pt;}
.x24{left:180.234933pt;}
.x46{left:184.537867pt;}
.x51{left:187.345995pt;}
.x47{left:193.145200pt;}
.x2d{left:217.722533pt;}
.x2e{left:218.916400pt;}
.x1e{left:224.117733pt;}
.x2f{left:225.354267pt;}
.x30{left:226.302400pt;}
.x1d{left:230.063600pt;}
.x52{left:236.013950pt;}
.x6{left:256.677733pt;}
.x16{left:257.632800pt;}
.x41{left:265.322933pt;}
.x17{left:268.612133pt;}
.x1{left:270.135467pt;}
.x31{left:274.823467pt;}
.x1f{left:278.044800pt;}
.x20{left:280.738933pt;}
.x7{left:299.287200pt;}
.x55{left:324.045200pt;}
.x32{left:328.982533pt;}
.x54{left:330.487867pt;}
.x23{left:332.247733pt;}
.x34{left:333.614667pt;}
.x33{left:334.940800pt;}
.x21{left:336.795467pt;}
.x35{left:341.444400pt;}
.x22{left:342.753467pt;}
.xb{left:356.495200pt;}
.x56{left:358.679867pt;}
.x42{left:361.579067pt;}
.x4a{left:364.907867pt;}
.x8{left:383.359867pt;}
.x36{left:390.943467pt;}
.x18{left:395.353333pt;}
.x19{left:396.829200pt;}
.x37{left:398.329467pt;}
.x4e{left:400.751635pt;}
.x4b{left:403.767561pt;}
.xc{left:414.697067pt;}
.x9{left:429.371733pt;}
.x4c{left:433.000616pt;}
.x3b{left:441.113600pt;}
.x39{left:444.905867pt;}
.x3c{left:447.407733pt;}
.x38{left:449.013867pt;}
.x3a{left:450.587600pt;}
.x1b{left:465.312533pt;}
.x1a{left:468.822400pt;}
.x4d{left:481.668571pt;}
.x4f{left:484.694964pt;}
.x3d{left:490.020533pt;}
.x1c{left:493.133867pt;}
.x40{left:495.664267pt;}
}




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