
    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_2e70dd189423ab902df08899.woff')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_8863207342e811a3b55dbe0c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_0cbdd708da2ee14da84a0197.woff')format("woff");}.ff3{font-family:ff3;line-height:0.932667;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_1eec0551801a4360b73a199a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.041992;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_86b24f443453630108dd8000.woff')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_761ff16e1acfd80e7f2a6c0c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_b253582aea419679b753c47c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.011230;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_62d73c6b0b60369d4230aff1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.976118;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_19f760945233e275bc3c8ecd.woff')format("woff");}.ff9{font-family:ff9;line-height:1.031738;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_4937806255c7e04d4f5dbfaf.woff')format("woff");}.ffa{font-family:ffa;line-height:0.710938;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_40760fc2511eedd25ceeb9e3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.924316;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_680e2875beaa3c879d46abe7.woff')format("woff");}.ffc{font-family:ffc;line-height:1.005371;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_8c1c83b437795f1998b51c15.woff')format("woff");}.ffd{font-family:ffd;line-height:1.022461;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_d10523e1dc579378120566b5.woff')format("woff");}.ffe{font-family:ffe;line-height:0.976092;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_f7a490cc84bb8a5d2e5ce69b.woff')format("woff");}.fff{font-family:fff;line-height:0.968262;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;}
.m1{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.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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.394000px;}
.v1{vertical-align:21.978000px;}
.v2{vertical-align:27.006000px;}
.v5{vertical-align:63.168000px;}
.ls1c{letter-spacing:-7.236000px;}
.ls13{letter-spacing:-3.540000px;}
.ls19{letter-spacing:-3.240000px;}
.ls18{letter-spacing:-2.340000px;}
.ls17{letter-spacing:-1.200000px;}
.ls6{letter-spacing:-1.020000px;}
.ls5{letter-spacing:-0.918000px;}
.ls8{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.691200px;}
.ls1d{letter-spacing:-0.660000px;}
.ls20{letter-spacing:-0.648000px;}
.ls14{letter-spacing:-0.600000px;}
.ls1b{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.300000px;}
.lsf{letter-spacing:-0.126000px;}
.ls2{letter-spacing:-0.102000px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.002400px;}
.ls11{letter-spacing:0.540000px;}
.ls1f{letter-spacing:0.594000px;}
.ls21{letter-spacing:0.600000px;}
.ls1e{letter-spacing:0.648000px;}
.ls15{letter-spacing:0.660000px;}
.ls1a{letter-spacing:1.080000px;}
.ls16{letter-spacing:2.400000px;}
.ls0{letter-spacing:43.181964px;}
.ls9{letter-spacing:66.906000px;}
.lsd{letter-spacing:70.938000px;}
.lsb{letter-spacing:77.070000px;}
.lsc{letter-spacing:88.242000px;}
.lsa{letter-spacing:92.400000px;}
.lse{letter-spacing:139.734000px;}
.ls7{letter-spacing:2589.912000px;}
.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;}
}
.wsd2{word-spacing:-60.000000px;}
.ws8{word-spacing:-17.928000px;}
.ws13a{word-spacing:-16.434000px;}
.ws184{word-spacing:-15.540000px;}
.ws87{word-spacing:-15.480000px;}
.wsb9{word-spacing:-15.360000px;}
.wsfb{word-spacing:-15.240000px;}
.ws6{word-spacing:-14.940000px;}
.ws2e{word-spacing:-14.880000px;}
.wsce{word-spacing:-14.820000px;}
.ws2d{word-spacing:-14.700000px;}
.ws88{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.400000px;}
.wsfa{word-spacing:-14.340000px;}
.ws9c{word-spacing:-14.100000px;}
.ws161{word-spacing:-13.986000px;}
.ws5b{word-spacing:-13.980000px;}
.ws2f{word-spacing:-13.680000px;}
.ws56{word-spacing:-13.446000px;}
.ws111{word-spacing:-13.392000px;}
.ws7{word-spacing:-13.230000px;}
.ws174{word-spacing:-12.744000px;}
.wsa{word-spacing:-12.366000px;}
.wse3{word-spacing:-12.360000px;}
.wse{word-spacing:-12.150000px;}
.wsb{word-spacing:-11.448000px;}
.ws9b{word-spacing:-11.400000px;}
.wsc{word-spacing:-11.232000px;}
.wsf{word-spacing:-10.992000px;}
.ws4{word-spacing:-10.896000px;}
.ws2b{word-spacing:-10.800000px;}
.ws76{word-spacing:-10.416000px;}
.ws109{word-spacing:-10.206000px;}
.ws5{word-spacing:-9.892800px;}
.ws3{word-spacing:-9.618000px;}
.ws86{word-spacing:-8.675040px;}
.wsa8{word-spacing:-4.380000px;}
.ws13b{word-spacing:-3.960000px;}
.wse2{word-spacing:-3.900000px;}
.ws51{word-spacing:-3.540000px;}
.ws68{word-spacing:-2.940000px;}
.ws155{word-spacing:-2.916000px;}
.ws59{word-spacing:-2.862000px;}
.ws12a{word-spacing:-2.820000px;}
.ws5a{word-spacing:-2.808000px;}
.ws100{word-spacing:-2.760000px;}
.ws64{word-spacing:-2.640000px;}
.ws127{word-spacing:-2.580000px;}
.wsb3{word-spacing:-2.520000px;}
.ws185{word-spacing:-2.484000px;}
.wsd3{word-spacing:-2.460000px;}
.wsd4{word-spacing:-2.400000px;}
.ws16a{word-spacing:-2.322000px;}
.wsb4{word-spacing:-2.280000px;}
.ws180{word-spacing:-2.268000px;}
.ws6f{word-spacing:-2.220000px;}
.ws151{word-spacing:-2.214000px;}
.ws101{word-spacing:-2.160000px;}
.ws12{word-spacing:-2.106000px;}
.ws106{word-spacing:-2.100000px;}
.ws13f{word-spacing:-2.052000px;}
.ws80{word-spacing:-2.040000px;}
.ws157{word-spacing:-1.998000px;}
.ws27{word-spacing:-1.980000px;}
.ws13{word-spacing:-1.944000px;}
.wsf0{word-spacing:-1.920000px;}
.ws105{word-spacing:-1.860000px;}
.wsd0{word-spacing:-1.740000px;}
.ws103{word-spacing:-1.680000px;}
.ws144{word-spacing:-1.674000px;}
.wsbc{word-spacing:-1.620000px;}
.ws178{word-spacing:-1.566000px;}
.ws128{word-spacing:-1.560000px;}
.wsa9{word-spacing:-1.500000px;}
.wsf6{word-spacing:-1.440000px;}
.ws17f{word-spacing:-1.404000px;}
.ws3a{word-spacing:-1.380000px;}
.ws15c{word-spacing:-1.350000px;}
.ws13c{word-spacing:-1.320000px;}
.ws160{word-spacing:-1.296000px;}
.ws25{word-spacing:-1.260000px;}
.wse9{word-spacing:-1.140000px;}
.wsf7{word-spacing:-1.134000px;}
.ws3e{word-spacing:-1.080000px;}
.ws2a{word-spacing:-1.026000px;}
.ws8e{word-spacing:-0.960000px;}
.ws15{word-spacing:-0.918000px;}
.ws46{word-spacing:-0.900000px;}
.ws16{word-spacing:-0.864000px;}
.ws90{word-spacing:-0.840000px;}
.ws159{word-spacing:-0.810000px;}
.ws48{word-spacing:-0.780000px;}
.ws147{word-spacing:-0.756000px;}
.ws41{word-spacing:-0.720000px;}
.ws110{word-spacing:-0.702000px;}
.ws1f{word-spacing:-0.660000px;}
.ws17a{word-spacing:-0.648000px;}
.ws13d{word-spacing:-0.600000px;}
.ws141{word-spacing:-0.594000px;}
.wsb8{word-spacing:-0.486000px;}
.ws95{word-spacing:-0.480000px;}
.ws13e{word-spacing:-0.432000px;}
.wsee{word-spacing:-0.420000px;}
.ws152{word-spacing:-0.378000px;}
.wsdf{word-spacing:-0.360000px;}
.ws154{word-spacing:-0.324000px;}
.ws71{word-spacing:-0.300000px;}
.wse5{word-spacing:-0.240000px;}
.ws10{word-spacing:-0.216000px;}
.wsff{word-spacing:-0.180000px;}
.ws7c{word-spacing:-0.168000px;}
.ws146{word-spacing:-0.162000px;}
.wsa4{word-spacing:-0.120000px;}
.ws60{word-spacing:-0.060000px;}
.wsd{word-spacing:-0.054000px;}
.ws2c{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws7b{word-spacing:0.108000px;}
.ws139{word-spacing:0.162000px;}
.ws3d{word-spacing:0.180000px;}
.ws63{word-spacing:0.240000px;}
.ws21{word-spacing:0.300000px;}
.ws15e{word-spacing:0.324000px;}
.wsb5{word-spacing:0.360000px;}
.ws175{word-spacing:0.378000px;}
.ws94{word-spacing:0.420000px;}
.ws12c{word-spacing:0.480000px;}
.ws14c{word-spacing:0.486000px;}
.ws1b{word-spacing:0.540000px;}
.ws83{word-spacing:0.600000px;}
.ws16c{word-spacing:0.648000px;}
.ws47{word-spacing:0.660000px;}
.ws11{word-spacing:0.691200px;}
.ws132{word-spacing:0.702000px;}
.ws24{word-spacing:0.720000px;}
.ws20{word-spacing:0.780000px;}
.ws4a{word-spacing:0.840000px;}
.ws177{word-spacing:0.864000px;}
.wsdd{word-spacing:0.900000px;}
.ws29{word-spacing:0.918000px;}
.wsd9{word-spacing:0.960000px;}
.ws14a{word-spacing:0.972000px;}
.ws3c{word-spacing:1.020000px;}
.ws148{word-spacing:1.026000px;}
.wsd6{word-spacing:1.080000px;}
.ws124{word-spacing:1.134000px;}
.ws89{word-spacing:1.140000px;}
.ws123{word-spacing:1.188000px;}
.wsa5{word-spacing:1.200000px;}
.ws183{word-spacing:1.242000px;}
.ws8b{word-spacing:1.260000px;}
.ws143{word-spacing:1.404000px;}
.ws1a{word-spacing:1.440000px;}
.ws163{word-spacing:1.458000px;}
.wsb2{word-spacing:1.500000px;}
.ws11f{word-spacing:1.512000px;}
.ws4b{word-spacing:1.560000px;}
.ws120{word-spacing:1.566000px;}
.ws7f{word-spacing:1.620000px;}
.ws14e{word-spacing:1.674000px;}
.ws61{word-spacing:1.680000px;}
.ws145{word-spacing:1.728000px;}
.ws102{word-spacing:1.740000px;}
.ws32{word-spacing:1.800000px;}
.wsd5{word-spacing:1.860000px;}
.ws171{word-spacing:1.890000px;}
.ws1d{word-spacing:1.920000px;}
.ws11e{word-spacing:1.944000px;}
.ws6c{word-spacing:1.980000px;}
.ws158{word-spacing:1.998000px;}
.wse4{word-spacing:2.040000px;}
.ws1e{word-spacing:2.100000px;}
.ws136{word-spacing:2.106000px;}
.ws69{word-spacing:2.160000px;}
.ws117{word-spacing:2.214000px;}
.ws62{word-spacing:2.220000px;}
.ws118{word-spacing:2.268000px;}
.ws8f{word-spacing:2.280000px;}
.wsaa{word-spacing:2.340000px;}
.ws7e{word-spacing:2.400000px;}
.wsd1{word-spacing:2.460000px;}
.ws44{word-spacing:2.520000px;}
.ws162{word-spacing:2.538000px;}
.ws43{word-spacing:2.580000px;}
.ws14{word-spacing:2.592000px;}
.ws70{word-spacing:2.640000px;}
.wse0{word-spacing:2.700000px;}
.ws179{word-spacing:2.754000px;}
.ws15d{word-spacing:2.808000px;}
.ws39{word-spacing:2.820000px;}
.ws114{word-spacing:2.862000px;}
.ws45{word-spacing:2.880000px;}
.ws113{word-spacing:2.916000px;}
.ws65{word-spacing:2.940000px;}
.ws134{word-spacing:2.970000px;}
.ws31{word-spacing:3.000000px;}
.ws133{word-spacing:3.024000px;}
.ws1c{word-spacing:3.060000px;}
.ws149{word-spacing:3.078000px;}
.ws7d{word-spacing:3.120000px;}
.wsef{word-spacing:3.180000px;}
.ws181{word-spacing:3.186000px;}
.wsea{word-spacing:3.240000px;}
.ws8c{word-spacing:3.300000px;}
.ws140{word-spacing:3.348000px;}
.ws23{word-spacing:3.360000px;}
.ws16f{word-spacing:3.402000px;}
.ws33{word-spacing:3.420000px;}
.ws115{word-spacing:3.456000px;}
.wsac{word-spacing:3.480000px;}
.wscf{word-spacing:3.510000px;}
.wsa2{word-spacing:3.540000px;}
.ws15f{word-spacing:3.564000px;}
.wsda{word-spacing:3.600000px;}
.ws10d{word-spacing:3.618000px;}
.ws129{word-spacing:3.660000px;}
.ws10c{word-spacing:3.672000px;}
.ws3b{word-spacing:3.720000px;}
.ws16b{word-spacing:3.726000px;}
.ws49{word-spacing:3.780000px;}
.ws6e{word-spacing:3.840000px;}
.ws172{word-spacing:3.888000px;}
.ws6d{word-spacing:3.900000px;}
.ws17c{word-spacing:3.942000px;}
.ws52{word-spacing:3.960000px;}
.ws17{word-spacing:3.996000px;}
.ws126{word-spacing:4.050000px;}
.ws42{word-spacing:4.080000px;}
.ws10f{word-spacing:4.104000px;}
.wse1{word-spacing:4.140000px;}
.ws10e{word-spacing:4.158000px;}
.wsfd{word-spacing:4.200000px;}
.wseb{word-spacing:4.260000px;}
.wsb6{word-spacing:4.266000px;}
.ws8d{word-spacing:4.320000px;}
.ws150{word-spacing:4.374000px;}
.wse8{word-spacing:4.380000px;}
.ws6b{word-spacing:4.440000px;}
.ws137{word-spacing:4.482000px;}
.ws6a{word-spacing:4.500000px;}
.ws173{word-spacing:4.536000px;}
.wsd7{word-spacing:4.620000px;}
.wsd8{word-spacing:4.680000px;}
.wsec{word-spacing:4.860000px;}
.ws82{word-spacing:4.920000px;}
.wse6{word-spacing:4.980000px;}
.ws58{word-spacing:5.022000px;}
.wsba{word-spacing:5.040000px;}
.ws57{word-spacing:5.076000px;}
.wsa7{word-spacing:5.100000px;}
.ws14d{word-spacing:5.130000px;}
.ws35{word-spacing:5.160000px;}
.ws14f{word-spacing:5.184000px;}
.ws34{word-spacing:5.220000px;}
.ws8a{word-spacing:5.280000px;}
.ws93{word-spacing:5.340000px;}
.ws16d{word-spacing:5.346000px;}
.ws5e{word-spacing:5.400000px;}
.ws5d{word-spacing:5.460000px;}
.ws116{word-spacing:5.508000px;}
.ws4e{word-spacing:5.520000px;}
.ws17b{word-spacing:5.562000px;}
.ws4d{word-spacing:5.580000px;}
.wsb0{word-spacing:5.700000px;}
.ws30{word-spacing:5.760000px;}
.ws55{word-spacing:5.820000px;}
.wsf5{word-spacing:5.880000px;}
.ws40{word-spacing:5.940000px;}
.ws16e{word-spacing:5.994000px;}
.wsf4{word-spacing:6.060000px;}
.ws67{word-spacing:6.120000px;}
.ws142{word-spacing:6.156000px;}
.ws66{word-spacing:6.180000px;}
.ws81{word-spacing:6.240000px;}
.ws135{word-spacing:6.264000px;}
.ws91{word-spacing:6.300000px;}
.ws4c{word-spacing:6.360000px;}
.wsfe{word-spacing:6.420000px;}
.ws50{word-spacing:6.480000px;}
.ws4f{word-spacing:6.540000px;}
.ws104{word-spacing:6.600000px;}
.ws26{word-spacing:6.720000px;}
.ws85{word-spacing:6.780000px;}
.ws169{word-spacing:6.804000px;}
.ws22{word-spacing:6.840000px;}
.ws5f{word-spacing:6.900000px;}
.wsed{word-spacing:6.960000px;}
.wsb7{word-spacing:6.966000px;}
.ws153{word-spacing:7.020000px;}
.ws19{word-spacing:7.074000px;}
.ws18{word-spacing:7.128000px;}
.wse7{word-spacing:7.260000px;}
.ws156{word-spacing:7.290000px;}
.ws37{word-spacing:7.320000px;}
.ws38{word-spacing:7.380000px;}
.ws17e{word-spacing:7.398000px;}
.wsde{word-spacing:7.440000px;}
.ws15b{word-spacing:7.452000px;}
.ws14b{word-spacing:7.560000px;}
.ws11d{word-spacing:7.614000px;}
.ws3f{word-spacing:7.620000px;}
.ws11c{word-spacing:7.668000px;}
.ws107{word-spacing:7.680000px;}
.wsb1{word-spacing:7.740000px;}
.ws36{word-spacing:7.860000px;}
.ws170{word-spacing:7.938000px;}
.ws108{word-spacing:7.980000px;}
.ws53{word-spacing:8.100000px;}
.wsf1{word-spacing:8.160000px;}
.ws54{word-spacing:8.220000px;}
.wsf3{word-spacing:8.280000px;}
.ws164{word-spacing:8.370000px;}
.ws166{word-spacing:8.424000px;}
.ws5c{word-spacing:8.460000px;}
.ws12b{word-spacing:8.580000px;}
.wsf2{word-spacing:8.640000px;}
.ws121{word-spacing:8.802000px;}
.ws125{word-spacing:8.856000px;}
.wsa3{word-spacing:8.940000px;}
.ws167{word-spacing:9.018000px;}
.ws12f{word-spacing:9.240000px;}
.ws12e{word-spacing:9.300000px;}
.ws12d{word-spacing:9.360000px;}
.wsab{word-spacing:9.780000px;}
.ws182{word-spacing:9.828000px;}
.wsfc{word-spacing:10.140000px;}
.ws92{word-spacing:10.200000px;}
.ws28{word-spacing:10.260000px;}
.wsa6{word-spacing:10.320000px;}
.ws96{word-spacing:10.380000px;}
.ws84{word-spacing:10.800000px;}
.ws176{word-spacing:10.854000px;}
.wsae{word-spacing:11.160000px;}
.ws17d{word-spacing:11.178000px;}
.wsad{word-spacing:11.220000px;}
.ws165{word-spacing:11.502000px;}
.wsbb{word-spacing:11.640000px;}
.ws138{word-spacing:11.772000px;}
.ws168{word-spacing:11.880000px;}
.wsaf{word-spacing:13.800000px;}
.wsdb{word-spacing:14.820000px;}
.wsdc{word-spacing:17.100000px;}
.ws15a{word-spacing:22.626000px;}
.ws186{word-spacing:24.786000px;}
.ws79{word-spacing:28.980000px;}
.ws2{word-spacing:33.644841px;}
.ws1{word-spacing:33.645441px;}
.wsbf{word-spacing:51.156000px;}
.wsc6{word-spacing:53.130000px;}
.wsc8{word-spacing:55.356000px;}
.ws74{word-spacing:56.238000px;}
.wsbe{word-spacing:62.874000px;}
.wsc1{word-spacing:67.158000px;}
.wscb{word-spacing:72.702000px;}
.wsc5{word-spacing:84.504000px;}
.ws72{word-spacing:87.074400px;}
.wsbd{word-spacing:92.316000px;}
.ws77{word-spacing:103.068000px;}
.ws99{word-spacing:103.560000px;}
.ws75{word-spacing:114.912000px;}
.ws9f{word-spacing:118.560000px;}
.ws9a{word-spacing:119.640000px;}
.ws98{word-spacing:119.880000px;}
.ws9e{word-spacing:121.080000px;}
.ws73{word-spacing:131.334000px;}
.wsa0{word-spacing:132.060000px;}
.ws97{word-spacing:150.000000px;}
.wsca{word-spacing:150.570000px;}
.ws9d{word-spacing:150.960000px;}
.wsa1{word-spacing:152.100000px;}
.wsc2{word-spacing:158.592000px;}
.wsc4{word-spacing:162.372000px;}
.ws78{word-spacing:166.933200px;}
.ws7a{word-spacing:189.294000px;}
.wsc9{word-spacing:202.062000px;}
.wsc3{word-spacing:213.864000px;}
.wsc7{word-spacing:227.976000px;}
.wscc{word-spacing:239.106000px;}
.wsc0{word-spacing:239.778000px;}
.wscd{word-spacing:306.558000px;}
.wsf8{word-spacing:822.600000px;}
.wsf9{word-spacing:826.992000px;}
.ws130{word-spacing:861.552000px;}
.ws131{word-spacing:871.416000px;}
.ws119{word-spacing:2356.560000px;}
.ws11a{word-spacing:2356.848000px;}
.ws11b{word-spacing:2363.760000px;}
.ws112{word-spacing:2388.744000px;}
.ws10a{word-spacing:2410.416000px;}
.ws10b{word-spacing:2410.704000px;}
.ws122{word-spacing:2417.616000px;}
._7{margin-left:-11.583600px;}
._4e{margin-left:-9.275400px;}
._e{margin-left:-8.082000px;}
._4{margin-left:-6.252600px;}
._4d{margin-left:-5.126400px;}
._5{margin-left:-4.120800px;}
._1{margin-left:-2.233800px;}
._2{margin-left:-1.040400px;}
._3{width:1.295400px;}
._0{width:2.458200px;}
._c{width:3.493800px;}
._a{width:4.664400px;}
._9{width:6.184800px;}
._b{width:7.320000px;}
._d{width:8.850000px;}
._2e{width:10.182000px;}
._2f{width:11.448000px;}
._48{width:17.232000px;}
._8{width:31.374000px;}
._6{width:36.369600px;}
._1d{width:39.396000px;}
._4c{width:43.028400px;}
._36{width:44.617800px;}
._37{width:48.874200px;}
._27{width:53.880000px;}
._20{width:62.460000px;}
._29{width:64.200000px;}
._2c{width:65.860800px;}
._14{width:72.658200px;}
._2d{width:74.972400px;}
._1e{width:76.800000px;}
._2a{width:78.900000px;}
._17{width:81.186000px;}
._1f{width:82.560000px;}
._28{width:84.240000px;}
._30{width:88.830000px;}
._15{width:92.946000px;}
._25{width:95.220000px;}
._26{width:99.780000px;}
._13{width:101.514000px;}
._32{width:102.984000px;}
._1c{width:106.300200px;}
._22{width:108.600000px;}
._21{width:111.000000px;}
._24{width:112.440000px;}
._2b{width:115.306200px;}
._23{width:117.360000px;}
._35{width:120.330000px;}
._f{width:129.990000px;}
._41{width:131.900400px;}
._10{width:137.802000px;}
._42{width:149.142000px;}
._33{width:155.232000px;}
._43{width:166.782000px;}
._34{width:172.704000px;}
._16{width:180.978000px;}
._44{width:195.685800px;}
._3a{width:203.784000px;}
._46{width:218.022000px;}
._18{width:220.776600px;}
._3f{width:228.984000px;}
._1a{width:231.066600px;}
._47{width:244.608000px;}
._45{width:255.738000px;}
._3b{width:262.164000px;}
._38{width:273.889800px;}
._3e{width:277.998000px;}
._40{width:287.406000px;}
._19{width:290.892000px;}
._3c{width:328.482000px;}
._1b{width:337.764000px;}
._11{width:351.078000px;}
._12{width:354.396000px;}
._3d{width:379.386000px;}
._39{width:484.890000px;}
._31{width:700.098000px;}
._49{width:860.832000px;}
._4a{width:866.520000px;}
._4b{width:1610.136000px;}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3d{bottom:71.212050px;}
.y3e{bottom:75.040050px;}
.y3c{bottom:94.318200px;}
.y1ba{bottom:112.790850px;}
.y18b{bottom:112.844850px;}
.y160{bottom:113.072850px;}
.yf3{bottom:113.078550px;}
.y70{bottom:113.078700px;}
.y130{bottom:113.078850px;}
.y71{bottom:120.315600px;}
.y142{bottom:120.482850px;}
.y138{bottom:120.487350px;}
.y75{bottom:120.496200px;}
.y78{bottom:120.500850px;}
.y1b9{bottom:133.796850px;}
.y18a{bottom:133.850850px;}
.y15f{bottom:134.072850px;}
.yf2{bottom:134.078550px;}
.y6f{bottom:134.078700px;}
.ya3{bottom:134.078850px;}
.y29{bottom:138.212700px;}
.ye{bottom:138.219750px;}
.y141{bottom:140.287350px;}
.y137{bottom:140.291850px;}
.y74{bottom:140.300700px;}
.y7a{bottom:145.132950px;}
.yd{bottom:152.616150px;}
.y73{bottom:152.704050px;}
.y1b8{bottom:154.802850px;}
.y189{bottom:154.856850px;}
.yf1{bottom:155.078550px;}
.y6e{bottom:155.078700px;}
.ya2{bottom:155.078850px;}
.y28{bottom:159.212700px;}
.y140{bottom:160.091850px;}
.y136{bottom:160.096350px;}
.y14a{bottom:164.936250px;}
.y134{bottom:164.937300px;}
.y77{bottom:164.938650px;}
.yc{bottom:167.012550px;}
.y1b7{bottom:175.808850px;}
.y188{bottom:175.862850px;}
.yf0{bottom:176.078550px;}
.y6d{bottom:176.078700px;}
.ya1{bottom:176.078850px;}
.y13f{bottom:179.896350px;}
.y135{bottom:179.900850px;}
.y27{bottom:180.212700px;}
.yb{bottom:181.412550px;}
.y15e{bottom:181.529400px;}
.y1b6{bottom:196.814850px;}
.y187{bottom:196.868850px;}
.yef{bottom:197.078550px;}
.y6c{bottom:197.078700px;}
.ya0{bottom:197.078850px;}
.y13e{bottom:199.700850px;}
.y26{bottom:201.212700px;}
.y148{bottom:204.541350px;}
.y14c{bottom:204.542250px;}
.y1b5{bottom:217.820850px;}
.y186{bottom:217.874850px;}
.y15d{bottom:218.054850px;}
.yee{bottom:218.078550px;}
.y6b{bottom:218.078700px;}
.y9f{bottom:218.078850px;}
.y13c{bottom:219.667200px;}
.y25{bottom:222.212700px;}
.y14f{bottom:224.335200px;}
.y145{bottom:224.336100px;}
.y39{bottom:224.478150px;}
.y124{bottom:230.242500px;}
.y13a{bottom:230.364900px;}
.y1b4{bottom:238.826850px;}
.y185{bottom:238.880850px;}
.y15c{bottom:239.060850px;}
.yed{bottom:239.078550px;}
.y6a{bottom:239.078700px;}
.y9e{bottom:239.078850px;}
.y38{bottom:242.473650px;}
.y24{bottom:243.212700px;}
.y123{bottom:251.247000px;}
.y1b3{bottom:259.832850px;}
.y184{bottom:259.886850px;}
.y15b{bottom:260.066850px;}
.yec{bottom:260.078550px;}
.y69{bottom:260.078700px;}
.y9d{bottom:260.078850px;}
.y37{bottom:260.469150px;}
.y23{bottom:264.212700px;}
.y36{bottom:278.464650px;}
.y1b2{bottom:280.838850px;}
.y183{bottom:280.892850px;}
.y15a{bottom:281.072850px;}
.yeb{bottom:281.078550px;}
.y68{bottom:281.078700px;}
.y9c{bottom:281.078850px;}
.y22{bottom:285.212700px;}
.y122{bottom:293.143950px;}
.y35{bottom:296.460150px;}
.y1b1{bottom:301.844850px;}
.y182{bottom:301.898850px;}
.yea{bottom:302.078550px;}
.y67{bottom:302.078700px;}
.y9b{bottom:302.078850px;}
.yfa{bottom:304.039500px;}
.y21{bottom:306.212700px;}
.y121{bottom:312.925950px;}
.y34{bottom:314.455650px;}
.y1b0{bottom:322.850850px;}
.y181{bottom:322.904850px;}
.ye9{bottom:323.078550px;}
.y66{bottom:323.078700px;}
.y9a{bottom:323.078850px;}
.yf9{bottom:323.844000px;}
.y20{bottom:327.212700px;}
.y159{bottom:328.529400px;}
.y33{bottom:332.451150px;}
.y120{bottom:342.282900px;}
.yf8{bottom:343.648500px;}
.y1af{bottom:343.856850px;}
.y180{bottom:343.910850px;}
.ye8{bottom:344.078550px;}
.y65{bottom:344.078700px;}
.y99{bottom:344.078850px;}
.y1f{bottom:348.212700px;}
.y32{bottom:350.446650px;}
.y1ae{bottom:364.862850px;}
.y17f{bottom:364.916850px;}
.y158{bottom:365.066850px;}
.ye7{bottom:365.078550px;}
.y64{bottom:365.078700px;}
.y98{bottom:365.078850px;}
.y31{bottom:368.442150px;}
.y1e{bottom:369.212700px;}
.y1ad{bottom:385.868850px;}
.y17e{bottom:385.922850px;}
.y157{bottom:386.072850px;}
.ye6{bottom:386.078550px;}
.y63{bottom:386.078700px;}
.y12f{bottom:386.078850px;}
.y1d{bottom:390.212700px;}
.y11f{bottom:391.856100px;}
.ycd{bottom:398.648550px;}
.y97{bottom:400.441050px;}
.y30{bottom:403.447650px;}
.y1ac{bottom:406.874850px;}
.y17d{bottom:406.928850px;}
.ye5{bottom:407.078550px;}
.y62{bottom:407.078700px;}
.y12e{bottom:407.078850px;}
.y1c{bottom:411.212700px;}
.y11e{bottom:411.638100px;}
.y133{bottom:412.491300px;}
.y2f{bottom:421.443150px;}
.y1ab{bottom:427.880850px;}
.y17c{bottom:427.934850px;}
.ye4{bottom:428.078550px;}
.y61{bottom:428.078700px;}
.y12d{bottom:428.078850px;}
.y11d{bottom:431.420100px;}
.y1b{bottom:432.212700px;}
.y156{bottom:433.529400px;}
.y2e{bottom:439.438650px;}
.y1aa{bottom:448.886850px;}
.y17b{bottom:448.940850px;}
.ye3{bottom:449.078550px;}
.y60{bottom:449.078700px;}
.y96{bottom:449.078850px;}
.y11c{bottom:451.202100px;}
.ycc{bottom:451.215600px;}
.y1a{bottom:464.648550px;}
.y1a9{bottom:469.892850px;}
.y17a{bottom:469.946850px;}
.ye2{bottom:470.078550px;}
.y5f{bottom:470.078700px;}
.y95{bottom:470.078850px;}
.ycb{bottom:470.997600px;}
.y2d{bottom:474.444150px;}
.y11b{bottom:482.255250px;}
.yca{bottom:490.779600px;}
.y1a8{bottom:490.898850px;}
.y179{bottom:490.952850px;}
.ye1{bottom:491.078550px;}
.y5e{bottom:491.078700px;}
.y94{bottom:491.078850px;}
.y2c{bottom:492.444150px;}
.y155{bottom:496.529400px;}
.y11a{bottom:502.059750px;}
.yc9{bottom:504.282600px;}
.y2b{bottom:510.444150px;}
.y1a7{bottom:511.904850px;}
.y178{bottom:511.958850px;}
.ye0{bottom:512.078550px;}
.y5d{bottom:512.078700px;}
.y93{bottom:512.078850px;}
.y147{bottom:513.061350px;}
.yc8{bottom:524.064600px;}
.y14e{bottom:526.879200px;}
.y144{bottom:527.294100px;}
.y2a{bottom:528.444150px;}
.y151{bottom:530.695200px;}
.y1a6{bottom:532.910850px;}
.y177{bottom:532.964850px;}
.ydf{bottom:533.078550px;}
.y5c{bottom:533.078700px;}
.y92{bottom:533.078850px;}
.yc7{bottom:537.567600px;}
.y19{bottom:549.423600px;}
.y1a5{bottom:553.916850px;}
.y176{bottom:553.970850px;}
.yde{bottom:554.078550px;}
.y5b{bottom:554.078700px;}
.y91{bottom:554.078850px;}
.y119{bottom:555.034200px;}
.yc6{bottom:557.349600px;}
.y154{bottom:559.529400px;}
.y18{bottom:569.228100px;}
.yc5{bottom:570.852600px;}
.y1a4{bottom:574.922850px;}
.y175{bottom:574.976850px;}
.ydd{bottom:575.078550px;}
.y5a{bottom:575.078700px;}
.y90{bottom:575.078850px;}
.y118{bottom:577.294200px;}
.yc4{bottom:590.634600px;}
.y1a3{bottom:595.928850px;}
.y174{bottom:595.982850px;}
.ydc{bottom:596.078550px;}
.y59{bottom:596.078700px;}
.y8f{bottom:596.078850px;}
.y117{bottom:597.076200px;}
.yc3{bottom:604.137600px;}
.y17{bottom:610.260900px;}
.y116{bottom:616.858200px;}
.y1a2{bottom:616.934850px;}
.y173{bottom:616.988850px;}
.ydb{bottom:617.078550px;}
.y58{bottom:617.078700px;}
.y8e{bottom:617.078850px;}
.y153{bottom:622.937100px;}
.yc2{bottom:623.919600px;}
.y16{bottom:630.065400px;}
.y115{bottom:636.640200px;}
.yc1{bottom:637.422600px;}
.y1a1{bottom:637.940850px;}
.y172{bottom:637.994850px;}
.yda{bottom:638.078550px;}
.y57{bottom:638.078700px;}
.y12c{bottom:638.078850px;}
.yf7{bottom:643.162350px;}
.y79{bottom:645.586950px;}
.y13d{bottom:648.049200px;}
.y15{bottom:649.869900px;}
.y8d{bottom:652.441050px;}
.y114{bottom:656.422200px;}
.yc0{bottom:657.204600px;}
.y132{bottom:657.831300px;}
.y76{bottom:657.832650px;}
.y1a0{bottom:658.946850px;}
.y171{bottom:659.000850px;}
.yd9{bottom:659.078550px;}
.y56{bottom:659.078700px;}
.y12b{bottom:659.078850px;}
.y149{bottom:659.108250px;}
.yf6{bottom:662.966850px;}
.y14{bottom:669.674400px;}
.ybf{bottom:670.707600px;}
.yce{bottom:673.440900px;}
.y13b{bottom:675.247200px;}
.y113{bottom:676.204200px;}
.y19f{bottom:679.952850px;}
.y170{bottom:680.006850px;}
.yd8{bottom:680.078550px;}
.y55{bottom:680.078700px;}
.y12a{bottom:680.078850px;}
.yf5{bottom:682.771350px;}
.y14b{bottom:683.486250px;}
.y139{bottom:688.446900px;}
.y13{bottom:689.478900px;}
.ybe{bottom:690.489600px;}
.y112{bottom:695.986200px;}
.y19e{bottom:700.958850px;}
.y16f{bottom:701.012850px;}
.yd7{bottom:701.078550px;}
.y54{bottom:701.078700px;}
.y8c{bottom:701.078850px;}
.yf4{bottom:702.575850px;}
.ybd{bottom:703.992600px;}
.yfc{bottom:707.314950px;}
.y12{bottom:709.283400px;}
.y111{bottom:715.768200px;}
.y19d{bottom:721.964850px;}
.y16e{bottom:722.018850px;}
.yd6{bottom:722.078550px;}
.y53{bottom:722.078700px;}
.y8b{bottom:722.078850px;}
.ybc{bottom:723.774600px;}
.y11{bottom:729.087900px;}
.y110{bottom:735.550200px;}
.ybb{bottom:737.277600px;}
.y19c{bottom:742.970850px;}
.y16d{bottom:743.024850px;}
.yd5{bottom:743.078550px;}
.y52{bottom:743.078700px;}
.y8a{bottom:743.078850px;}
.y10f{bottom:755.332200px;}
.yba{bottom:757.059600px;}
.y10{bottom:760.185300px;}
.y19b{bottom:763.976850px;}
.y16c{bottom:764.030850px;}
.yd4{bottom:764.078550px;}
.y51{bottom:764.078700px;}
.y89{bottom:764.078850px;}
.yb9{bottom:770.562600px;}
.y10e{bottom:775.114200px;}
.y19a{bottom:784.982850px;}
.y16b{bottom:785.036850px;}
.yd3{bottom:785.078550px;}
.y50{bottom:785.078700px;}
.y88{bottom:785.078850px;}
.yb8{bottom:790.344600px;}
.y72{bottom:794.746050px;}
.y10d{bottom:794.896200px;}
.yb7{bottom:803.847600px;}
.y199{bottom:805.988850px;}
.y16a{bottom:806.042850px;}
.yd2{bottom:806.078550px;}
.y4f{bottom:806.078700px;}
.y87{bottom:806.078850px;}
.y10c{bottom:814.678200px;}
.yb6{bottom:823.629600px;}
.y198{bottom:826.994850px;}
.y1c6{bottom:827.018850px;}
.y169{bottom:827.048850px;}
.yd1{bottom:827.078550px;}
.y4e{bottom:827.078700px;}
.y86{bottom:827.078850px;}
.y146{bottom:834.289350px;}
.y10b{bottom:834.460200px;}
.yb5{bottom:837.132600px;}
.ya{bottom:839.466750px;}
.y143{bottom:840.242100px;}
.y150{bottom:845.767200px;}
.y14d{bottom:847.045200px;}
.y197{bottom:848.000850px;}
.y1c5{bottom:848.024850px;}
.y168{bottom:848.054850px;}
.yd0{bottom:848.078550px;}
.y4d{bottom:848.078700px;}
.y85{bottom:848.078850px;}
.y10a{bottom:854.242200px;}
.yb4{bottom:856.914600px;}
.y9{bottom:857.466750px;}
.y196{bottom:869.006850px;}
.y1c4{bottom:869.030850px;}
.y167{bottom:869.060850px;}
.y4c{bottom:869.078700px;}
.y129{bottom:869.078850px;}
.yb3{bottom:870.417600px;}
.y109{bottom:874.024200px;}
.y8{bottom:875.466750px;}
.y84{bottom:882.513600px;}
.ycf{bottom:883.440900px;}
.y195{bottom:890.012850px;}
.y1c3{bottom:890.036850px;}
.y166{bottom:890.066850px;}
.y4b{bottom:890.078700px;}
.y128{bottom:890.078850px;}
.yb2{bottom:890.199600px;}
.y7{bottom:893.466750px;}
.y108{bottom:893.806200px;}
.y131{bottom:903.171300px;}
.yb1{bottom:903.702600px;}
.y194{bottom:911.018850px;}
.y1c2{bottom:911.042850px;}
.y165{bottom:911.072850px;}
.y4a{bottom:911.078700px;}
.y127{bottom:911.078850px;}
.y6{bottom:911.466750px;}
.y107{bottom:913.588200px;}
.y83{bottom:914.811000px;}
.yb0{bottom:923.484600px;}
.y152{bottom:925.441050px;}
.y193{bottom:932.024850px;}
.y1c1{bottom:932.048850px;}
.y49{bottom:932.078700px;}
.y126{bottom:932.078850px;}
.y106{bottom:933.370200px;}
.yaf{bottom:936.987600px;}
.y5{bottom:946.474800px;}
.y192{bottom:953.030850px;}
.y1c0{bottom:953.054850px;}
.y48{bottom:953.078700px;}
.y125{bottom:953.078850px;}
.y105{bottom:953.152200px;}
.yae{bottom:956.769600px;}
.y164{bottom:967.441050px;}
.yad{bottom:970.272600px;}
.y104{bottom:972.934200px;}
.y191{bottom:974.036850px;}
.y1bf{bottom:974.060850px;}
.y47{bottom:974.078700px;}
.y82{bottom:974.078850px;}
.y4{bottom:983.288550px;}
.yac{bottom:990.054600px;}
.y103{bottom:992.716200px;}
.y190{bottom:995.042850px;}
.y1be{bottom:995.066850px;}
.y46{bottom:995.078700px;}
.y81{bottom:995.078850px;}
.yab{bottom:1003.557600px;}
.y102{bottom:1012.498200px;}
.y18f{bottom:1016.048850px;}
.y163{bottom:1016.072850px;}
.y45{bottom:1016.078700px;}
.y80{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.yaa{bottom:1023.339600px;}
.y101{bottom:1032.280200px;}
.ya9{bottom:1036.842600px;}
.y18e{bottom:1037.054850px;}
.y44{bottom:1037.078700px;}
.y7f{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.y100{bottom:1052.062200px;}
.ya7{bottom:1056.624600px;}
.y18d{bottom:1058.060850px;}
.y43{bottom:1058.078700px;}
.y7e{bottom:1058.078850px;}
.ya6{bottom:1063.376100px;}
.y162{bottom:1063.529400px;}
.y1bd{bottom:1068.903300px;}
.ya8{bottom:1070.127600px;}
.yff{bottom:1071.844200px;}
.yfe{bottom:1074.133200px;}
.y18c{bottom:1079.066850px;}
.y42{bottom:1079.078700px;}
.y7d{bottom:1079.078850px;}
.yfd{bottom:1087.636200px;}
.y1bc{bottom:1089.903300px;}
.ya5{bottom:1099.478400px;}
.y161{bottom:1100.072850px;}
.y41{bottom:1100.078700px;}
.y7c{bottom:1100.078850px;}
.yf{bottom:1109.815500px;}
.ya4{bottom:1119.282900px;}
.y40{bottom:1121.078700px;}
.y7b{bottom:1121.078850px;}
.y1bb{bottom:1122.200850px;}
.yfb{bottom:1124.698950px;}
.y3b{bottom:1159.189500px;}
.y3a{bottom:1178.689500px;}
.y3f{bottom:1178.692050px;}
.h13{height:33.448242px;}
.h15{height:34.125000px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h14{height:35.616656px;}
.hf{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h8{height:43.004883px;}
.he{height:43.057617px;}
.hb{height:43.321289px;}
.ha{height:43.875000px;}
.h18{height:43.899000px;}
.h9{height:47.343750px;}
.h10{height:48.134766px;}
.hd{height:48.750000px;}
.h17{height:50.176758px;}
.h11{height:52.078125px;}
.h4{height:53.625000px;}
.hc{height:56.812500px;}
.h12{height:60.454242px;}
.h3{height:81.231445px;}
.h16{height:96.616242px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.x3{left:90.987600px;}
.xb{left:107.063850px;}
.xd{left:108.289650px;}
.x11{left:112.251900px;}
.x1d{left:113.520150px;}
.x21{left:116.040000px;}
.x6{left:119.878950px;}
.x7{left:122.032500px;}
.x8{left:124.102950px;}
.x10{left:127.765800px;}
.xf{left:134.497650px;}
.x23{left:147.961350px;}
.x25{left:154.693200px;}
.x1f{left:282.444150px;}
.x5{left:300.189000px;}
.x1c{left:304.763250px;}
.xc{left:317.196900px;}
.x20{left:343.701150px;}
.x1e{left:346.200150px;}
.x15{left:382.458900px;}
.x4{left:396.050700px;}
.x17{left:402.629400px;}
.x18{left:406.146900px;}
.x1a{left:419.639400px;}
.x19{left:550.920900px;}
.x16{left:557.756400px;}
.x1b{left:570.159000px;}
.x24{left:629.551350px;}
.xa{left:648.907800px;}
.x9{left:669.715800px;}
.x12{left:696.933900px;}
.x13{left:751.218900px;}
.x14{left:758.358900px;}
.x26{left:760.321200px;}
.x22{left:780.320100px;}
.xe{left:784.101900px;}
.x1{left:801.157500px;}
@media print{
.v4{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.128000pt;}
.v1{vertical-align:19.536000pt;}
.v2{vertical-align:24.005333pt;}
.v5{vertical-align:56.149333pt;}
.ls1c{letter-spacing:-6.432000pt;}
.ls13{letter-spacing:-3.146667pt;}
.ls19{letter-spacing:-2.880000pt;}
.ls18{letter-spacing:-2.080000pt;}
.ls17{letter-spacing:-1.066667pt;}
.ls6{letter-spacing:-0.906667pt;}
.ls5{letter-spacing:-0.816000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.614400pt;}
.ls1d{letter-spacing:-0.586667pt;}
.ls20{letter-spacing:-0.576000pt;}
.ls14{letter-spacing:-0.533333pt;}
.ls1b{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.266667pt;}
.lsf{letter-spacing:-0.112000pt;}
.ls2{letter-spacing:-0.090667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.002133pt;}
.ls11{letter-spacing:0.480000pt;}
.ls1f{letter-spacing:0.528000pt;}
.ls21{letter-spacing:0.533333pt;}
.ls1e{letter-spacing:0.576000pt;}
.ls15{letter-spacing:0.586667pt;}
.ls1a{letter-spacing:0.960000pt;}
.ls16{letter-spacing:2.133333pt;}
.ls0{letter-spacing:38.383968pt;}
.ls9{letter-spacing:59.472000pt;}
.lsd{letter-spacing:63.056000pt;}
.lsb{letter-spacing:68.506667pt;}
.lsc{letter-spacing:78.437333pt;}
.lsa{letter-spacing:82.133333pt;}
.lse{letter-spacing:124.208000pt;}
.ls7{letter-spacing:2302.144000pt;}
.wsd2{word-spacing:-53.333333pt;}
.ws8{word-spacing:-15.936000pt;}
.ws13a{word-spacing:-14.608000pt;}
.ws184{word-spacing:-13.813333pt;}
.ws87{word-spacing:-13.760000pt;}
.wsb9{word-spacing:-13.653333pt;}
.wsfb{word-spacing:-13.546667pt;}
.ws6{word-spacing:-13.280000pt;}
.ws2e{word-spacing:-13.226667pt;}
.wsce{word-spacing:-13.173333pt;}
.ws2d{word-spacing:-13.066667pt;}
.ws88{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.800000pt;}
.wsfa{word-spacing:-12.746667pt;}
.ws9c{word-spacing:-12.533333pt;}
.ws161{word-spacing:-12.432000pt;}
.ws5b{word-spacing:-12.426667pt;}
.ws2f{word-spacing:-12.160000pt;}
.ws56{word-spacing:-11.952000pt;}
.ws111{word-spacing:-11.904000pt;}
.ws7{word-spacing:-11.760000pt;}
.ws174{word-spacing:-11.328000pt;}
.wsa{word-spacing:-10.992000pt;}
.wse3{word-spacing:-10.986667pt;}
.wse{word-spacing:-10.800000pt;}
.wsb{word-spacing:-10.176000pt;}
.ws9b{word-spacing:-10.133333pt;}
.wsc{word-spacing:-9.984000pt;}
.wsf{word-spacing:-9.770667pt;}
.ws4{word-spacing:-9.685333pt;}
.ws2b{word-spacing:-9.600000pt;}
.ws76{word-spacing:-9.258667pt;}
.ws109{word-spacing:-9.072000pt;}
.ws5{word-spacing:-8.793600pt;}
.ws3{word-spacing:-8.549333pt;}
.ws86{word-spacing:-7.711147pt;}
.wsa8{word-spacing:-3.893333pt;}
.ws13b{word-spacing:-3.520000pt;}
.wse2{word-spacing:-3.466667pt;}
.ws51{word-spacing:-3.146667pt;}
.ws68{word-spacing:-2.613333pt;}
.ws155{word-spacing:-2.592000pt;}
.ws59{word-spacing:-2.544000pt;}
.ws12a{word-spacing:-2.506667pt;}
.ws5a{word-spacing:-2.496000pt;}
.ws100{word-spacing:-2.453333pt;}
.ws64{word-spacing:-2.346667pt;}
.ws127{word-spacing:-2.293333pt;}
.wsb3{word-spacing:-2.240000pt;}
.ws185{word-spacing:-2.208000pt;}
.wsd3{word-spacing:-2.186667pt;}
.wsd4{word-spacing:-2.133333pt;}
.ws16a{word-spacing:-2.064000pt;}
.wsb4{word-spacing:-2.026667pt;}
.ws180{word-spacing:-2.016000pt;}
.ws6f{word-spacing:-1.973333pt;}
.ws151{word-spacing:-1.968000pt;}
.ws101{word-spacing:-1.920000pt;}
.ws12{word-spacing:-1.872000pt;}
.ws106{word-spacing:-1.866667pt;}
.ws13f{word-spacing:-1.824000pt;}
.ws80{word-spacing:-1.813333pt;}
.ws157{word-spacing:-1.776000pt;}
.ws27{word-spacing:-1.760000pt;}
.ws13{word-spacing:-1.728000pt;}
.wsf0{word-spacing:-1.706667pt;}
.ws105{word-spacing:-1.653333pt;}
.wsd0{word-spacing:-1.546667pt;}
.ws103{word-spacing:-1.493333pt;}
.ws144{word-spacing:-1.488000pt;}
.wsbc{word-spacing:-1.440000pt;}
.ws178{word-spacing:-1.392000pt;}
.ws128{word-spacing:-1.386667pt;}
.wsa9{word-spacing:-1.333333pt;}
.wsf6{word-spacing:-1.280000pt;}
.ws17f{word-spacing:-1.248000pt;}
.ws3a{word-spacing:-1.226667pt;}
.ws15c{word-spacing:-1.200000pt;}
.ws13c{word-spacing:-1.173333pt;}
.ws160{word-spacing:-1.152000pt;}
.ws25{word-spacing:-1.120000pt;}
.wse9{word-spacing:-1.013333pt;}
.wsf7{word-spacing:-1.008000pt;}
.ws3e{word-spacing:-0.960000pt;}
.ws2a{word-spacing:-0.912000pt;}
.ws8e{word-spacing:-0.853333pt;}
.ws15{word-spacing:-0.816000pt;}
.ws46{word-spacing:-0.800000pt;}
.ws16{word-spacing:-0.768000pt;}
.ws90{word-spacing:-0.746667pt;}
.ws159{word-spacing:-0.720000pt;}
.ws48{word-spacing:-0.693333pt;}
.ws147{word-spacing:-0.672000pt;}
.ws41{word-spacing:-0.640000pt;}
.ws110{word-spacing:-0.624000pt;}
.ws1f{word-spacing:-0.586667pt;}
.ws17a{word-spacing:-0.576000pt;}
.ws13d{word-spacing:-0.533333pt;}
.ws141{word-spacing:-0.528000pt;}
.wsb8{word-spacing:-0.432000pt;}
.ws95{word-spacing:-0.426667pt;}
.ws13e{word-spacing:-0.384000pt;}
.wsee{word-spacing:-0.373333pt;}
.ws152{word-spacing:-0.336000pt;}
.wsdf{word-spacing:-0.320000pt;}
.ws154{word-spacing:-0.288000pt;}
.ws71{word-spacing:-0.266667pt;}
.wse5{word-spacing:-0.213333pt;}
.ws10{word-spacing:-0.192000pt;}
.wsff{word-spacing:-0.160000pt;}
.ws7c{word-spacing:-0.149333pt;}
.ws146{word-spacing:-0.144000pt;}
.wsa4{word-spacing:-0.106667pt;}
.ws60{word-spacing:-0.053333pt;}
.wsd{word-spacing:-0.048000pt;}
.ws2c{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws7b{word-spacing:0.096000pt;}
.ws139{word-spacing:0.144000pt;}
.ws3d{word-spacing:0.160000pt;}
.ws63{word-spacing:0.213333pt;}
.ws21{word-spacing:0.266667pt;}
.ws15e{word-spacing:0.288000pt;}
.wsb5{word-spacing:0.320000pt;}
.ws175{word-spacing:0.336000pt;}
.ws94{word-spacing:0.373333pt;}
.ws12c{word-spacing:0.426667pt;}
.ws14c{word-spacing:0.432000pt;}
.ws1b{word-spacing:0.480000pt;}
.ws83{word-spacing:0.533333pt;}
.ws16c{word-spacing:0.576000pt;}
.ws47{word-spacing:0.586667pt;}
.ws11{word-spacing:0.614400pt;}
.ws132{word-spacing:0.624000pt;}
.ws24{word-spacing:0.640000pt;}
.ws20{word-spacing:0.693333pt;}
.ws4a{word-spacing:0.746667pt;}
.ws177{word-spacing:0.768000pt;}
.wsdd{word-spacing:0.800000pt;}
.ws29{word-spacing:0.816000pt;}
.wsd9{word-spacing:0.853333pt;}
.ws14a{word-spacing:0.864000pt;}
.ws3c{word-spacing:0.906667pt;}
.ws148{word-spacing:0.912000pt;}
.wsd6{word-spacing:0.960000pt;}
.ws124{word-spacing:1.008000pt;}
.ws89{word-spacing:1.013333pt;}
.ws123{word-spacing:1.056000pt;}
.wsa5{word-spacing:1.066667pt;}
.ws183{word-spacing:1.104000pt;}
.ws8b{word-spacing:1.120000pt;}
.ws143{word-spacing:1.248000pt;}
.ws1a{word-spacing:1.280000pt;}
.ws163{word-spacing:1.296000pt;}
.wsb2{word-spacing:1.333333pt;}
.ws11f{word-spacing:1.344000pt;}
.ws4b{word-spacing:1.386667pt;}
.ws120{word-spacing:1.392000pt;}
.ws7f{word-spacing:1.440000pt;}
.ws14e{word-spacing:1.488000pt;}
.ws61{word-spacing:1.493333pt;}
.ws145{word-spacing:1.536000pt;}
.ws102{word-spacing:1.546667pt;}
.ws32{word-spacing:1.600000pt;}
.wsd5{word-spacing:1.653333pt;}
.ws171{word-spacing:1.680000pt;}
.ws1d{word-spacing:1.706667pt;}
.ws11e{word-spacing:1.728000pt;}
.ws6c{word-spacing:1.760000pt;}
.ws158{word-spacing:1.776000pt;}
.wse4{word-spacing:1.813333pt;}
.ws1e{word-spacing:1.866667pt;}
.ws136{word-spacing:1.872000pt;}
.ws69{word-spacing:1.920000pt;}
.ws117{word-spacing:1.968000pt;}
.ws62{word-spacing:1.973333pt;}
.ws118{word-spacing:2.016000pt;}
.ws8f{word-spacing:2.026667pt;}
.wsaa{word-spacing:2.080000pt;}
.ws7e{word-spacing:2.133333pt;}
.wsd1{word-spacing:2.186667pt;}
.ws44{word-spacing:2.240000pt;}
.ws162{word-spacing:2.256000pt;}
.ws43{word-spacing:2.293333pt;}
.ws14{word-spacing:2.304000pt;}
.ws70{word-spacing:2.346667pt;}
.wse0{word-spacing:2.400000pt;}
.ws179{word-spacing:2.448000pt;}
.ws15d{word-spacing:2.496000pt;}
.ws39{word-spacing:2.506667pt;}
.ws114{word-spacing:2.544000pt;}
.ws45{word-spacing:2.560000pt;}
.ws113{word-spacing:2.592000pt;}
.ws65{word-spacing:2.613333pt;}
.ws134{word-spacing:2.640000pt;}
.ws31{word-spacing:2.666667pt;}
.ws133{word-spacing:2.688000pt;}
.ws1c{word-spacing:2.720000pt;}
.ws149{word-spacing:2.736000pt;}
.ws7d{word-spacing:2.773333pt;}
.wsef{word-spacing:2.826667pt;}
.ws181{word-spacing:2.832000pt;}
.wsea{word-spacing:2.880000pt;}
.ws8c{word-spacing:2.933333pt;}
.ws140{word-spacing:2.976000pt;}
.ws23{word-spacing:2.986667pt;}
.ws16f{word-spacing:3.024000pt;}
.ws33{word-spacing:3.040000pt;}
.ws115{word-spacing:3.072000pt;}
.wsac{word-spacing:3.093333pt;}
.wscf{word-spacing:3.120000pt;}
.wsa2{word-spacing:3.146667pt;}
.ws15f{word-spacing:3.168000pt;}
.wsda{word-spacing:3.200000pt;}
.ws10d{word-spacing:3.216000pt;}
.ws129{word-spacing:3.253333pt;}
.ws10c{word-spacing:3.264000pt;}
.ws3b{word-spacing:3.306667pt;}
.ws16b{word-spacing:3.312000pt;}
.ws49{word-spacing:3.360000pt;}
.ws6e{word-spacing:3.413333pt;}
.ws172{word-spacing:3.456000pt;}
.ws6d{word-spacing:3.466667pt;}
.ws17c{word-spacing:3.504000pt;}
.ws52{word-spacing:3.520000pt;}
.ws17{word-spacing:3.552000pt;}
.ws126{word-spacing:3.600000pt;}
.ws42{word-spacing:3.626667pt;}
.ws10f{word-spacing:3.648000pt;}
.wse1{word-spacing:3.680000pt;}
.ws10e{word-spacing:3.696000pt;}
.wsfd{word-spacing:3.733333pt;}
.wseb{word-spacing:3.786667pt;}
.wsb6{word-spacing:3.792000pt;}
.ws8d{word-spacing:3.840000pt;}
.ws150{word-spacing:3.888000pt;}
.wse8{word-spacing:3.893333pt;}
.ws6b{word-spacing:3.946667pt;}
.ws137{word-spacing:3.984000pt;}
.ws6a{word-spacing:4.000000pt;}
.ws173{word-spacing:4.032000pt;}
.wsd7{word-spacing:4.106667pt;}
.wsd8{word-spacing:4.160000pt;}
.wsec{word-spacing:4.320000pt;}
.ws82{word-spacing:4.373333pt;}
.wse6{word-spacing:4.426667pt;}
.ws58{word-spacing:4.464000pt;}
.wsba{word-spacing:4.480000pt;}
.ws57{word-spacing:4.512000pt;}
.wsa7{word-spacing:4.533333pt;}
.ws14d{word-spacing:4.560000pt;}
.ws35{word-spacing:4.586667pt;}
.ws14f{word-spacing:4.608000pt;}
.ws34{word-spacing:4.640000pt;}
.ws8a{word-spacing:4.693333pt;}
.ws93{word-spacing:4.746667pt;}
.ws16d{word-spacing:4.752000pt;}
.ws5e{word-spacing:4.800000pt;}
.ws5d{word-spacing:4.853333pt;}
.ws116{word-spacing:4.896000pt;}
.ws4e{word-spacing:4.906667pt;}
.ws17b{word-spacing:4.944000pt;}
.ws4d{word-spacing:4.960000pt;}
.wsb0{word-spacing:5.066667pt;}
.ws30{word-spacing:5.120000pt;}
.ws55{word-spacing:5.173333pt;}
.wsf5{word-spacing:5.226667pt;}
.ws40{word-spacing:5.280000pt;}
.ws16e{word-spacing:5.328000pt;}
.wsf4{word-spacing:5.386667pt;}
.ws67{word-spacing:5.440000pt;}
.ws142{word-spacing:5.472000pt;}
.ws66{word-spacing:5.493333pt;}
.ws81{word-spacing:5.546667pt;}
.ws135{word-spacing:5.568000pt;}
.ws91{word-spacing:5.600000pt;}
.ws4c{word-spacing:5.653333pt;}
.wsfe{word-spacing:5.706667pt;}
.ws50{word-spacing:5.760000pt;}
.ws4f{word-spacing:5.813333pt;}
.ws104{word-spacing:5.866667pt;}
.ws26{word-spacing:5.973333pt;}
.ws85{word-spacing:6.026667pt;}
.ws169{word-spacing:6.048000pt;}
.ws22{word-spacing:6.080000pt;}
.ws5f{word-spacing:6.133333pt;}
.wsed{word-spacing:6.186667pt;}
.wsb7{word-spacing:6.192000pt;}
.ws153{word-spacing:6.240000pt;}
.ws19{word-spacing:6.288000pt;}
.ws18{word-spacing:6.336000pt;}
.wse7{word-spacing:6.453333pt;}
.ws156{word-spacing:6.480000pt;}
.ws37{word-spacing:6.506667pt;}
.ws38{word-spacing:6.560000pt;}
.ws17e{word-spacing:6.576000pt;}
.wsde{word-spacing:6.613333pt;}
.ws15b{word-spacing:6.624000pt;}
.ws14b{word-spacing:6.720000pt;}
.ws11d{word-spacing:6.768000pt;}
.ws3f{word-spacing:6.773333pt;}
.ws11c{word-spacing:6.816000pt;}
.ws107{word-spacing:6.826667pt;}
.wsb1{word-spacing:6.880000pt;}
.ws36{word-spacing:6.986667pt;}
.ws170{word-spacing:7.056000pt;}
.ws108{word-spacing:7.093333pt;}
.ws53{word-spacing:7.200000pt;}
.wsf1{word-spacing:7.253333pt;}
.ws54{word-spacing:7.306667pt;}
.wsf3{word-spacing:7.360000pt;}
.ws164{word-spacing:7.440000pt;}
.ws166{word-spacing:7.488000pt;}
.ws5c{word-spacing:7.520000pt;}
.ws12b{word-spacing:7.626667pt;}
.wsf2{word-spacing:7.680000pt;}
.ws121{word-spacing:7.824000pt;}
.ws125{word-spacing:7.872000pt;}
.wsa3{word-spacing:7.946667pt;}
.ws167{word-spacing:8.016000pt;}
.ws12f{word-spacing:8.213333pt;}
.ws12e{word-spacing:8.266667pt;}
.ws12d{word-spacing:8.320000pt;}
.wsab{word-spacing:8.693333pt;}
.ws182{word-spacing:8.736000pt;}
.wsfc{word-spacing:9.013333pt;}
.ws92{word-spacing:9.066667pt;}
.ws28{word-spacing:9.120000pt;}
.wsa6{word-spacing:9.173333pt;}
.ws96{word-spacing:9.226667pt;}
.ws84{word-spacing:9.600000pt;}
.ws176{word-spacing:9.648000pt;}
.wsae{word-spacing:9.920000pt;}
.ws17d{word-spacing:9.936000pt;}
.wsad{word-spacing:9.973333pt;}
.ws165{word-spacing:10.224000pt;}
.wsbb{word-spacing:10.346667pt;}
.ws138{word-spacing:10.464000pt;}
.ws168{word-spacing:10.560000pt;}
.wsaf{word-spacing:12.266667pt;}
.wsdb{word-spacing:13.173333pt;}
.wsdc{word-spacing:15.200000pt;}
.ws15a{word-spacing:20.112000pt;}
.ws186{word-spacing:22.032000pt;}
.ws79{word-spacing:25.760000pt;}
.ws2{word-spacing:29.906525pt;}
.ws1{word-spacing:29.907059pt;}
.wsbf{word-spacing:45.472000pt;}
.wsc6{word-spacing:47.226667pt;}
.wsc8{word-spacing:49.205333pt;}
.ws74{word-spacing:49.989333pt;}
.wsbe{word-spacing:55.888000pt;}
.wsc1{word-spacing:59.696000pt;}
.wscb{word-spacing:64.624000pt;}
.wsc5{word-spacing:75.114667pt;}
.ws72{word-spacing:77.399467pt;}
.wsbd{word-spacing:82.058667pt;}
.ws77{word-spacing:91.616000pt;}
.ws99{word-spacing:92.053333pt;}
.ws75{word-spacing:102.144000pt;}
.ws9f{word-spacing:105.386667pt;}
.ws9a{word-spacing:106.346667pt;}
.ws98{word-spacing:106.560000pt;}
.ws9e{word-spacing:107.626667pt;}
.ws73{word-spacing:116.741333pt;}
.wsa0{word-spacing:117.386667pt;}
.ws97{word-spacing:133.333333pt;}
.wsca{word-spacing:133.840000pt;}
.ws9d{word-spacing:134.186667pt;}
.wsa1{word-spacing:135.200000pt;}
.wsc2{word-spacing:140.970667pt;}
.wsc4{word-spacing:144.330667pt;}
.ws78{word-spacing:148.385067pt;}
.ws7a{word-spacing:168.261333pt;}
.wsc9{word-spacing:179.610667pt;}
.wsc3{word-spacing:190.101333pt;}
.wsc7{word-spacing:202.645333pt;}
.wscc{word-spacing:212.538667pt;}
.wsc0{word-spacing:213.136000pt;}
.wscd{word-spacing:272.496000pt;}
.wsf8{word-spacing:731.200000pt;}
.wsf9{word-spacing:735.104000pt;}
.ws130{word-spacing:765.824000pt;}
.ws131{word-spacing:774.592000pt;}
.ws119{word-spacing:2094.720000pt;}
.ws11a{word-spacing:2094.976000pt;}
.ws11b{word-spacing:2101.120000pt;}
.ws112{word-spacing:2123.328000pt;}
.ws10a{word-spacing:2142.592000pt;}
.ws10b{word-spacing:2142.848000pt;}
.ws122{word-spacing:2148.992000pt;}
._7{margin-left:-10.296533pt;}
._4e{margin-left:-8.244800pt;}
._e{margin-left:-7.184000pt;}
._4{margin-left:-5.557867pt;}
._4d{margin-left:-4.556800pt;}
._5{margin-left:-3.662933pt;}
._1{margin-left:-1.985600pt;}
._2{margin-left:-0.924800pt;}
._3{width:1.151467pt;}
._0{width:2.185067pt;}
._c{width:3.105600pt;}
._a{width:4.146133pt;}
._9{width:5.497600pt;}
._b{width:6.506667pt;}
._d{width:7.866667pt;}
._2e{width:9.050667pt;}
._2f{width:10.176000pt;}
._48{width:15.317333pt;}
._8{width:27.888000pt;}
._6{width:32.328533pt;}
._1d{width:35.018667pt;}
._4c{width:38.247467pt;}
._36{width:39.660267pt;}
._37{width:43.443733pt;}
._27{width:47.893333pt;}
._20{width:55.520000pt;}
._29{width:57.066667pt;}
._2c{width:58.542933pt;}
._14{width:64.585067pt;}
._2d{width:66.642133pt;}
._1e{width:68.266667pt;}
._2a{width:70.133333pt;}
._17{width:72.165333pt;}
._1f{width:73.386667pt;}
._28{width:74.880000pt;}
._30{width:78.960000pt;}
._15{width:82.618667pt;}
._25{width:84.640000pt;}
._26{width:88.693333pt;}
._13{width:90.234667pt;}
._32{width:91.541333pt;}
._1c{width:94.489067pt;}
._22{width:96.533333pt;}
._21{width:98.666667pt;}
._24{width:99.946667pt;}
._2b{width:102.494400pt;}
._23{width:104.320000pt;}
._35{width:106.960000pt;}
._f{width:115.546667pt;}
._41{width:117.244800pt;}
._10{width:122.490667pt;}
._42{width:132.570667pt;}
._33{width:137.984000pt;}
._43{width:148.250667pt;}
._34{width:153.514667pt;}
._16{width:160.869333pt;}
._44{width:173.942933pt;}
._3a{width:181.141333pt;}
._46{width:193.797333pt;}
._18{width:196.245867pt;}
._3f{width:203.541333pt;}
._1a{width:205.392533pt;}
._47{width:217.429333pt;}
._45{width:227.322667pt;}
._3b{width:233.034667pt;}
._38{width:243.457600pt;}
._3e{width:247.109333pt;}
._40{width:255.472000pt;}
._19{width:258.570667pt;}
._3c{width:291.984000pt;}
._1b{width:300.234667pt;}
._11{width:312.069333pt;}
._12{width:315.018667pt;}
._3d{width:337.232000pt;}
._39{width:431.013333pt;}
._31{width:622.309333pt;}
._49{width:765.184000pt;}
._4a{width:770.240000pt;}
._4b{width:1431.232000pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3d{bottom:63.299600pt;}
.y3e{bottom:66.702267pt;}
.y3c{bottom:83.838400pt;}
.y1ba{bottom:100.258533pt;}
.y18b{bottom:100.306533pt;}
.y160{bottom:100.509200pt;}
.yf3{bottom:100.514267pt;}
.y70{bottom:100.514400pt;}
.y130{bottom:100.514533pt;}
.y71{bottom:106.947200pt;}
.y142{bottom:107.095867pt;}
.y138{bottom:107.099867pt;}
.y75{bottom:107.107733pt;}
.y78{bottom:107.111867pt;}
.y1b9{bottom:118.930533pt;}
.y18a{bottom:118.978533pt;}
.y15f{bottom:119.175867pt;}
.yf2{bottom:119.180933pt;}
.y6f{bottom:119.181067pt;}
.ya3{bottom:119.181200pt;}
.y29{bottom:122.855733pt;}
.ye{bottom:122.862000pt;}
.y141{bottom:124.699867pt;}
.y137{bottom:124.703867pt;}
.y74{bottom:124.711733pt;}
.y7a{bottom:129.007067pt;}
.yd{bottom:135.658800pt;}
.y73{bottom:135.736933pt;}
.y1b8{bottom:137.602533pt;}
.y189{bottom:137.650533pt;}
.yf1{bottom:137.847600pt;}
.y6e{bottom:137.847733pt;}
.ya2{bottom:137.847867pt;}
.y28{bottom:141.522400pt;}
.y140{bottom:142.303867pt;}
.y136{bottom:142.307867pt;}
.y14a{bottom:146.610000pt;}
.y134{bottom:146.610933pt;}
.y77{bottom:146.612133pt;}
.yc{bottom:148.455600pt;}
.y1b7{bottom:156.274533pt;}
.y188{bottom:156.322533pt;}
.yf0{bottom:156.514267pt;}
.y6d{bottom:156.514400pt;}
.ya1{bottom:156.514533pt;}
.y13f{bottom:159.907867pt;}
.y135{bottom:159.911867pt;}
.y27{bottom:160.189067pt;}
.yb{bottom:161.255600pt;}
.y15e{bottom:161.359467pt;}
.y1b6{bottom:174.946533pt;}
.y187{bottom:174.994533pt;}
.yef{bottom:175.180933pt;}
.y6c{bottom:175.181067pt;}
.ya0{bottom:175.181200pt;}
.y13e{bottom:177.511867pt;}
.y26{bottom:178.855733pt;}
.y148{bottom:181.814533pt;}
.y14c{bottom:181.815333pt;}
.y1b5{bottom:193.618533pt;}
.y186{bottom:193.666533pt;}
.y15d{bottom:193.826533pt;}
.yee{bottom:193.847600pt;}
.y6b{bottom:193.847733pt;}
.y9f{bottom:193.847867pt;}
.y13c{bottom:195.259733pt;}
.y25{bottom:197.522400pt;}
.y14f{bottom:199.409067pt;}
.y145{bottom:199.409867pt;}
.y39{bottom:199.536133pt;}
.y124{bottom:204.660000pt;}
.y13a{bottom:204.768800pt;}
.y1b4{bottom:212.290533pt;}
.y185{bottom:212.338533pt;}
.y15c{bottom:212.498533pt;}
.yed{bottom:212.514267pt;}
.y6a{bottom:212.514400pt;}
.y9e{bottom:212.514533pt;}
.y38{bottom:215.532133pt;}
.y24{bottom:216.189067pt;}
.y123{bottom:223.330667pt;}
.y1b3{bottom:230.962533pt;}
.y184{bottom:231.010533pt;}
.y15b{bottom:231.170533pt;}
.yec{bottom:231.180933pt;}
.y69{bottom:231.181067pt;}
.y9d{bottom:231.181200pt;}
.y37{bottom:231.528133pt;}
.y23{bottom:234.855733pt;}
.y36{bottom:247.524133pt;}
.y1b2{bottom:249.634533pt;}
.y183{bottom:249.682533pt;}
.y15a{bottom:249.842533pt;}
.yeb{bottom:249.847600pt;}
.y68{bottom:249.847733pt;}
.y9c{bottom:249.847867pt;}
.y22{bottom:253.522400pt;}
.y122{bottom:260.572400pt;}
.y35{bottom:263.520133pt;}
.y1b1{bottom:268.306533pt;}
.y182{bottom:268.354533pt;}
.yea{bottom:268.514267pt;}
.y67{bottom:268.514400pt;}
.y9b{bottom:268.514533pt;}
.yfa{bottom:270.257333pt;}
.y21{bottom:272.189067pt;}
.y121{bottom:278.156400pt;}
.y34{bottom:279.516133pt;}
.y1b0{bottom:286.978533pt;}
.y181{bottom:287.026533pt;}
.ye9{bottom:287.180933pt;}
.y66{bottom:287.181067pt;}
.y9a{bottom:287.181200pt;}
.yf9{bottom:287.861333pt;}
.y20{bottom:290.855733pt;}
.y159{bottom:292.026133pt;}
.y33{bottom:295.512133pt;}
.y120{bottom:304.251467pt;}
.yf8{bottom:305.465333pt;}
.y1af{bottom:305.650533pt;}
.y180{bottom:305.698533pt;}
.ye8{bottom:305.847600pt;}
.y65{bottom:305.847733pt;}
.y99{bottom:305.847867pt;}
.y1f{bottom:309.522400pt;}
.y32{bottom:311.508133pt;}
.y1ae{bottom:324.322533pt;}
.y17f{bottom:324.370533pt;}
.y158{bottom:324.503867pt;}
.ye7{bottom:324.514267pt;}
.y64{bottom:324.514400pt;}
.y98{bottom:324.514533pt;}
.y31{bottom:327.504133pt;}
.y1e{bottom:328.189067pt;}
.y1ad{bottom:342.994533pt;}
.y17e{bottom:343.042533pt;}
.y157{bottom:343.175867pt;}
.ye6{bottom:343.180933pt;}
.y63{bottom:343.181067pt;}
.y12f{bottom:343.181200pt;}
.y1d{bottom:346.855733pt;}
.y11f{bottom:348.316533pt;}
.ycd{bottom:354.354267pt;}
.y97{bottom:355.947600pt;}
.y30{bottom:358.620133pt;}
.y1ac{bottom:361.666533pt;}
.y17d{bottom:361.714533pt;}
.ye5{bottom:361.847600pt;}
.y62{bottom:361.847733pt;}
.y12e{bottom:361.847867pt;}
.y1c{bottom:365.522400pt;}
.y11e{bottom:365.900533pt;}
.y133{bottom:366.658933pt;}
.y2f{bottom:374.616133pt;}
.y1ab{bottom:380.338533pt;}
.y17c{bottom:380.386533pt;}
.ye4{bottom:380.514267pt;}
.y61{bottom:380.514400pt;}
.y12d{bottom:380.514533pt;}
.y11d{bottom:383.484533pt;}
.y1b{bottom:384.189067pt;}
.y156{bottom:385.359467pt;}
.y2e{bottom:390.612133pt;}
.y1aa{bottom:399.010533pt;}
.y17b{bottom:399.058533pt;}
.ye3{bottom:399.180933pt;}
.y60{bottom:399.181067pt;}
.y96{bottom:399.181200pt;}
.y11c{bottom:401.068533pt;}
.ycc{bottom:401.080533pt;}
.y1a{bottom:413.020933pt;}
.y1a9{bottom:417.682533pt;}
.y17a{bottom:417.730533pt;}
.ye2{bottom:417.847600pt;}
.y5f{bottom:417.847733pt;}
.y95{bottom:417.847867pt;}
.ycb{bottom:418.664533pt;}
.y2d{bottom:421.728133pt;}
.y11b{bottom:428.671333pt;}
.yca{bottom:436.248533pt;}
.y1a8{bottom:436.354533pt;}
.y179{bottom:436.402533pt;}
.ye1{bottom:436.514267pt;}
.y5e{bottom:436.514400pt;}
.y94{bottom:436.514533pt;}
.y2c{bottom:437.728133pt;}
.y155{bottom:441.359467pt;}
.y11a{bottom:446.275333pt;}
.yc9{bottom:448.251200pt;}
.y2b{bottom:453.728133pt;}
.y1a7{bottom:455.026533pt;}
.y178{bottom:455.074533pt;}
.ye0{bottom:455.180933pt;}
.y5d{bottom:455.181067pt;}
.y93{bottom:455.181200pt;}
.y147{bottom:456.054533pt;}
.yc8{bottom:465.835200pt;}
.y14e{bottom:468.337067pt;}
.y144{bottom:468.705867pt;}
.y2a{bottom:469.728133pt;}
.y151{bottom:471.729067pt;}
.y1a6{bottom:473.698533pt;}
.y177{bottom:473.746533pt;}
.ydf{bottom:473.847600pt;}
.y5c{bottom:473.847733pt;}
.y92{bottom:473.847867pt;}
.yc7{bottom:477.837867pt;}
.y19{bottom:488.376533pt;}
.y1a5{bottom:492.370533pt;}
.y176{bottom:492.418533pt;}
.yde{bottom:492.514267pt;}
.y5b{bottom:492.514400pt;}
.y91{bottom:492.514533pt;}
.y119{bottom:493.363733pt;}
.yc6{bottom:495.421867pt;}
.y154{bottom:497.359467pt;}
.y18{bottom:505.980533pt;}
.yc5{bottom:507.424533pt;}
.y1a4{bottom:511.042533pt;}
.y175{bottom:511.090533pt;}
.ydd{bottom:511.180933pt;}
.y5a{bottom:511.181067pt;}
.y90{bottom:511.181200pt;}
.y118{bottom:513.150400pt;}
.yc4{bottom:525.008533pt;}
.y1a3{bottom:529.714533pt;}
.y174{bottom:529.762533pt;}
.ydc{bottom:529.847600pt;}
.y59{bottom:529.847733pt;}
.y8f{bottom:529.847867pt;}
.y117{bottom:530.734400pt;}
.yc3{bottom:537.011200pt;}
.y17{bottom:542.454133pt;}
.y116{bottom:548.318400pt;}
.y1a2{bottom:548.386533pt;}
.y173{bottom:548.434533pt;}
.ydb{bottom:548.514267pt;}
.y58{bottom:548.514400pt;}
.y8e{bottom:548.514533pt;}
.y153{bottom:553.721867pt;}
.yc2{bottom:554.595200pt;}
.y16{bottom:560.058133pt;}
.y115{bottom:565.902400pt;}
.yc1{bottom:566.597867pt;}
.y1a1{bottom:567.058533pt;}
.y172{bottom:567.106533pt;}
.yda{bottom:567.180933pt;}
.y57{bottom:567.181067pt;}
.y12c{bottom:567.181200pt;}
.yf7{bottom:571.699867pt;}
.y79{bottom:573.855067pt;}
.y13d{bottom:576.043733pt;}
.y15{bottom:577.662133pt;}
.y8d{bottom:579.947600pt;}
.y114{bottom:583.486400pt;}
.yc0{bottom:584.181867pt;}
.y132{bottom:584.738933pt;}
.y76{bottom:584.740133pt;}
.y1a0{bottom:585.730533pt;}
.y171{bottom:585.778533pt;}
.yd9{bottom:585.847600pt;}
.y56{bottom:585.847733pt;}
.y12b{bottom:585.847867pt;}
.y149{bottom:585.874000pt;}
.yf6{bottom:589.303867pt;}
.y14{bottom:595.266133pt;}
.ybf{bottom:596.184533pt;}
.yce{bottom:598.614133pt;}
.y13b{bottom:600.219733pt;}
.y113{bottom:601.070400pt;}
.y19f{bottom:604.402533pt;}
.y170{bottom:604.450533pt;}
.yd8{bottom:604.514267pt;}
.y55{bottom:604.514400pt;}
.y12a{bottom:604.514533pt;}
.yf5{bottom:606.907867pt;}
.y14b{bottom:607.543333pt;}
.y139{bottom:611.952800pt;}
.y13{bottom:612.870133pt;}
.ybe{bottom:613.768533pt;}
.y112{bottom:618.654400pt;}
.y19e{bottom:623.074533pt;}
.y16f{bottom:623.122533pt;}
.yd7{bottom:623.180933pt;}
.y54{bottom:623.181067pt;}
.y8c{bottom:623.181200pt;}
.yf4{bottom:624.511867pt;}
.ybd{bottom:625.771200pt;}
.yfc{bottom:628.724400pt;}
.y12{bottom:630.474133pt;}
.y111{bottom:636.238400pt;}
.y19d{bottom:641.746533pt;}
.y16e{bottom:641.794533pt;}
.yd6{bottom:641.847600pt;}
.y53{bottom:641.847733pt;}
.y8b{bottom:641.847867pt;}
.ybc{bottom:643.355200pt;}
.y11{bottom:648.078133pt;}
.y110{bottom:653.822400pt;}
.ybb{bottom:655.357867pt;}
.y19c{bottom:660.418533pt;}
.y16d{bottom:660.466533pt;}
.yd5{bottom:660.514267pt;}
.y52{bottom:660.514400pt;}
.y8a{bottom:660.514533pt;}
.y10f{bottom:671.406400pt;}
.yba{bottom:672.941867pt;}
.y10{bottom:675.720267pt;}
.y19b{bottom:679.090533pt;}
.y16c{bottom:679.138533pt;}
.yd4{bottom:679.180933pt;}
.y51{bottom:679.181067pt;}
.y89{bottom:679.181200pt;}
.yb9{bottom:684.944533pt;}
.y10e{bottom:688.990400pt;}
.y19a{bottom:697.762533pt;}
.y16b{bottom:697.810533pt;}
.yd3{bottom:697.847600pt;}
.y50{bottom:697.847733pt;}
.y88{bottom:697.847867pt;}
.yb8{bottom:702.528533pt;}
.y72{bottom:706.440933pt;}
.y10d{bottom:706.574400pt;}
.yb7{bottom:714.531200pt;}
.y199{bottom:716.434533pt;}
.y16a{bottom:716.482533pt;}
.yd2{bottom:716.514267pt;}
.y4f{bottom:716.514400pt;}
.y87{bottom:716.514533pt;}
.y10c{bottom:724.158400pt;}
.yb6{bottom:732.115200pt;}
.y198{bottom:735.106533pt;}
.y1c6{bottom:735.127867pt;}
.y169{bottom:735.154533pt;}
.yd1{bottom:735.180933pt;}
.y4e{bottom:735.181067pt;}
.y86{bottom:735.181200pt;}
.y146{bottom:741.590533pt;}
.y10b{bottom:741.742400pt;}
.yb5{bottom:744.117867pt;}
.ya{bottom:746.192667pt;}
.y143{bottom:746.881867pt;}
.y150{bottom:751.793067pt;}
.y14d{bottom:752.929067pt;}
.y197{bottom:753.778533pt;}
.y1c5{bottom:753.799867pt;}
.y168{bottom:753.826533pt;}
.yd0{bottom:753.847600pt;}
.y4d{bottom:753.847733pt;}
.y85{bottom:753.847867pt;}
.y10a{bottom:759.326400pt;}
.yb4{bottom:761.701867pt;}
.y9{bottom:762.192667pt;}
.y196{bottom:772.450533pt;}
.y1c4{bottom:772.471867pt;}
.y167{bottom:772.498533pt;}
.y4c{bottom:772.514400pt;}
.y129{bottom:772.514533pt;}
.yb3{bottom:773.704533pt;}
.y109{bottom:776.910400pt;}
.y8{bottom:778.192667pt;}
.y84{bottom:784.456533pt;}
.ycf{bottom:785.280800pt;}
.y195{bottom:791.122533pt;}
.y1c3{bottom:791.143867pt;}
.y166{bottom:791.170533pt;}
.y4b{bottom:791.181067pt;}
.y128{bottom:791.181200pt;}
.yb2{bottom:791.288533pt;}
.y7{bottom:794.192667pt;}
.y108{bottom:794.494400pt;}
.y131{bottom:802.818933pt;}
.yb1{bottom:803.291200pt;}
.y194{bottom:809.794533pt;}
.y1c2{bottom:809.815867pt;}
.y165{bottom:809.842533pt;}
.y4a{bottom:809.847733pt;}
.y127{bottom:809.847867pt;}
.y6{bottom:810.192667pt;}
.y107{bottom:812.078400pt;}
.y83{bottom:813.165333pt;}
.yb0{bottom:820.875200pt;}
.y152{bottom:822.614267pt;}
.y193{bottom:828.466533pt;}
.y1c1{bottom:828.487867pt;}
.y49{bottom:828.514400pt;}
.y126{bottom:828.514533pt;}
.y106{bottom:829.662400pt;}
.yaf{bottom:832.877867pt;}
.y5{bottom:841.310933pt;}
.y192{bottom:847.138533pt;}
.y1c0{bottom:847.159867pt;}
.y48{bottom:847.181067pt;}
.y125{bottom:847.181200pt;}
.y105{bottom:847.246400pt;}
.yae{bottom:850.461867pt;}
.y164{bottom:859.947600pt;}
.yad{bottom:862.464533pt;}
.y104{bottom:864.830400pt;}
.y191{bottom:865.810533pt;}
.y1bf{bottom:865.831867pt;}
.y47{bottom:865.847733pt;}
.y82{bottom:865.847867pt;}
.y4{bottom:874.034267pt;}
.yac{bottom:880.048533pt;}
.y103{bottom:882.414400pt;}
.y190{bottom:884.482533pt;}
.y1be{bottom:884.503867pt;}
.y46{bottom:884.514400pt;}
.y81{bottom:884.514533pt;}
.yab{bottom:892.051200pt;}
.y102{bottom:899.998400pt;}
.y18f{bottom:903.154533pt;}
.y163{bottom:903.175867pt;}
.y45{bottom:903.181067pt;}
.y80{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.yaa{bottom:909.635200pt;}
.y101{bottom:917.582400pt;}
.ya9{bottom:921.637867pt;}
.y18e{bottom:921.826533pt;}
.y44{bottom:921.847733pt;}
.y7f{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.y100{bottom:935.166400pt;}
.ya7{bottom:939.221867pt;}
.y18d{bottom:940.498533pt;}
.y43{bottom:940.514400pt;}
.y7e{bottom:940.514533pt;}
.ya6{bottom:945.223200pt;}
.y162{bottom:945.359467pt;}
.y1bd{bottom:950.136267pt;}
.ya8{bottom:951.224533pt;}
.yff{bottom:952.750400pt;}
.yfe{bottom:954.785067pt;}
.y18c{bottom:959.170533pt;}
.y42{bottom:959.181067pt;}
.y7d{bottom:959.181200pt;}
.yfd{bottom:966.787733pt;}
.y1bc{bottom:968.802933pt;}
.ya5{bottom:977.314133pt;}
.y161{bottom:977.842533pt;}
.y41{bottom:977.847733pt;}
.y7c{bottom:977.847867pt;}
.yf{bottom:986.502667pt;}
.ya4{bottom:994.918133pt;}
.y40{bottom:996.514400pt;}
.y7b{bottom:996.514533pt;}
.y1bb{bottom:997.511867pt;}
.yfb{bottom:999.732400pt;}
.y3b{bottom:1030.390667pt;}
.y3a{bottom:1047.724000pt;}
.y3f{bottom:1047.726267pt;}
.h13{height:29.731771pt;}
.h15{height:30.333333pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h14{height:31.659250pt;}
.hf{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h8{height:38.226562pt;}
.he{height:38.273438pt;}
.hb{height:38.507812pt;}
.ha{height:39.000000pt;}
.h18{height:39.021333pt;}
.h9{height:42.083333pt;}
.h10{height:42.786458pt;}
.hd{height:43.333333pt;}
.h17{height:44.601562pt;}
.h11{height:46.291667pt;}
.h4{height:47.666667pt;}
.hc{height:50.500000pt;}
.h12{height:53.737104pt;}
.h3{height:72.205729pt;}
.h16{height:85.881104pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.x3{left:80.877867pt;}
.xb{left:95.167867pt;}
.xd{left:96.257467pt;}
.x11{left:99.779467pt;}
.x1d{left:100.906800pt;}
.x21{left:103.146667pt;}
.x6{left:106.559067pt;}
.x7{left:108.473333pt;}
.x8{left:110.313733pt;}
.x10{left:113.569600pt;}
.xf{left:119.553467pt;}
.x23{left:131.521200pt;}
.x25{left:137.505067pt;}
.x1f{left:251.061467pt;}
.x5{left:266.834667pt;}
.x1c{left:270.900667pt;}
.xc{left:281.952800pt;}
.x20{left:305.512133pt;}
.x1e{left:307.733467pt;}
.x15{left:339.963467pt;}
.x4{left:352.045067pt;}
.x17{left:357.892800pt;}
.x18{left:361.019467pt;}
.x1a{left:373.012800pt;}
.x19{left:489.707467pt;}
.x16{left:495.783467pt;}
.x1b{left:506.808000pt;}
.x24{left:559.601200pt;}
.xa{left:576.806933pt;}
.x9{left:595.302933pt;}
.x12{left:619.496800pt;}
.x13{left:667.750133pt;}
.x14{left:674.096800pt;}
.x26{left:675.841067pt;}
.x22{left:693.617867pt;}
.xe{left:696.979467pt;}
.x1{left:712.140000pt;}
}




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