
    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_a3c329f781fdf4770e718f02.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_c4074547e74bb518ae552e21.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.964000;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_38bb0f8d0b0ddb1268a6380d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.967285;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_477e1c2b56ea41cdc304cdbf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_a906cd6fd9032ef6cfb2c5aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_1b27ee93956bf7170fd4cf1c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_819f9ca715ccec3c966b0807.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d7cf85d333c9a812d183bc4f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_a7883395846435f554457f87.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.750977;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_5c95cc50ff4250318f93fb7a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.721000;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_af05bb05986526a0b9f3d2dc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.967285;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_f15eb641a4057ebd4e98180f.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.m1{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);}
.v6{vertical-align:-19.980000px;}
.v4{vertical-align:-17.982000px;}
.v8{vertical-align:-15.991800px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:14.985000px;}
.v3{vertical-align:17.972400px;}
.v7{vertical-align:19.980000px;}
.v2{vertical-align:23.976000px;}
.v1{vertical-align:41.958000px;}
.ls5{letter-spacing:-1.296000px;}
.lsd{letter-spacing:-1.200000px;}
.ls3{letter-spacing:-0.810000px;}
.lse{letter-spacing:-0.699600px;}
.ls9{letter-spacing:-0.600000px;}
.ls4{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.349800px;}
.ls1{letter-spacing:-0.162000px;}
.ls11{letter-spacing:-0.120000px;}
.ls2{letter-spacing:-0.094446px;}
.ls12{letter-spacing:-0.069960px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000600px;}
.ls13{letter-spacing:0.048000px;}
.ls10{letter-spacing:0.336000px;}
.ls7{letter-spacing:0.349800px;}
.ls6{letter-spacing:0.600000px;}
.lsf{letter-spacing:32.160000px;}
.ls8{letter-spacing:227.586000px;}
.lsc{letter-spacing:900.034800px;}
.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;}
}
.ws4{word-spacing:-54.000000px;}
.ws8{word-spacing:-23.040000px;}
.ws0{word-spacing:-17.629920px;}
.ws2b{word-spacing:-15.000000px;}
.ws5{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.146000px;}
.ws1{word-spacing:-13.138488px;}
.ws7{word-spacing:-12.690000px;}
.wsc6{word-spacing:-12.336000px;}
.wsc5{word-spacing:-12.048000px;}
.ws3{word-spacing:-12.000000px;}
.ws2a{word-spacing:-8.745000px;}
.wsc4{word-spacing:-8.675040px;}
.ws7f{word-spacing:-8.395200px;}
.ws29{word-spacing:-8.211555px;}
.wsa9{word-spacing:-8.045400px;}
.ws9{word-spacing:-7.870500px;}
.ws6{word-spacing:-7.776054px;}
.ws2d{word-spacing:-6.996000px;}
.ws24{word-spacing:-6.360000px;}
.wsd{word-spacing:-5.292000px;}
.ws9a{word-spacing:-4.620000px;}
.ws58{word-spacing:-3.960000px;}
.wsc8{word-spacing:-3.480000px;}
.ws5e{word-spacing:-3.300000px;}
.wscf{word-spacing:-3.072000px;}
.ws5f{word-spacing:-2.820000px;}
.ws51{word-spacing:-2.760000px;}
.ws53{word-spacing:-2.700000px;}
.ws75{word-spacing:-2.640000px;}
.wsb8{word-spacing:-2.460000px;}
.wsbd{word-spacing:-2.400000px;}
.wsa2{word-spacing:-2.340000px;}
.ws14{word-spacing:-2.322000px;}
.ws83{word-spacing:-2.280000px;}
.wsc{word-spacing:-2.268000px;}
.ws40{word-spacing:-2.220000px;}
.ws71{word-spacing:-2.160000px;}
.ws1c{word-spacing:-2.100000px;}
.ws15{word-spacing:-1.944000px;}
.wsbb{word-spacing:-1.920000px;}
.ws80{word-spacing:-1.860000px;}
.wsc1{word-spacing:-1.800000px;}
.ws69{word-spacing:-1.740000px;}
.ws91{word-spacing:-1.680000px;}
.ws17{word-spacing:-1.674000px;}
.ws36{word-spacing:-1.560000px;}
.ws1f{word-spacing:-1.440000px;}
.ws18{word-spacing:-1.404000px;}
.ws52{word-spacing:-1.380000px;}
.ws2f{word-spacing:-1.320000px;}
.ws59{word-spacing:-1.260000px;}
.wse2{word-spacing:-1.200000px;}
.wsb{word-spacing:-1.080000px;}
.ws72{word-spacing:-1.020000px;}
.wsa1{word-spacing:-0.960000px;}
.wsed{word-spacing:-0.864000px;}
.ws84{word-spacing:-0.660000px;}
.ws73{word-spacing:-0.600000px;}
.ws45{word-spacing:-0.540000px;}
.ws7c{word-spacing:-0.480000px;}
.ws7d{word-spacing:-0.420000px;}
.ws74{word-spacing:-0.349800px;}
.wsd1{word-spacing:-0.288000px;}
.ws98{word-spacing:-0.240000px;}
.wsee{word-spacing:-0.192000px;}
.ws26{word-spacing:-0.189000px;}
.ws49{word-spacing:-0.180000px;}
.ws25{word-spacing:-0.151200px;}
.ws6d{word-spacing:-0.120000px;}
.wsa0{word-spacing:-0.060000px;}
.wsc3{word-spacing:-0.048000px;}
.wsa{word-spacing:0.000000px;}
.ws4b{word-spacing:0.060000px;}
.wsf9{word-spacing:0.096000px;}
.ws48{word-spacing:0.120000px;}
.ws28{word-spacing:0.144000px;}
.wse{word-spacing:0.162000px;}
.ws79{word-spacing:0.180000px;}
.ws3a{word-spacing:0.240000px;}
.ws3c{word-spacing:0.300000px;}
.ws56{word-spacing:0.360000px;}
.ws77{word-spacing:0.420000px;}
.ws3f{word-spacing:0.480000px;}
.wsf7{word-spacing:0.528000px;}
.ws27{word-spacing:0.540000px;}
.ws5b{word-spacing:0.600000px;}
.ws8a{word-spacing:0.660000px;}
.wsbc{word-spacing:0.720000px;}
.ws42{word-spacing:0.780000px;}
.ws1d{word-spacing:0.840000px;}
.wsde{word-spacing:0.864000px;}
.ws60{word-spacing:0.900000px;}
.wsa7{word-spacing:0.960000px;}
.wsdb{word-spacing:1.008000px;}
.wsa3{word-spacing:1.020000px;}
.ws20{word-spacing:1.140000px;}
.ws68{word-spacing:1.200000px;}
.ws35{word-spacing:1.260000px;}
.wse1{word-spacing:1.296000px;}
.ws19{word-spacing:1.320000px;}
.ws43{word-spacing:1.380000px;}
.ws85{word-spacing:1.440000px;}
.ws92{word-spacing:1.500000px;}
.ws31{word-spacing:1.560000px;}
.wscc{word-spacing:1.584000px;}
.ws65{word-spacing:1.620000px;}
.ws4c{word-spacing:1.680000px;}
.wsf{word-spacing:1.728000px;}
.ws23{word-spacing:1.740000px;}
.ws86{word-spacing:1.860000px;}
.ws7a{word-spacing:1.920000px;}
.wsb4{word-spacing:1.980000px;}
.ws82{word-spacing:2.100000px;}
.wsfa{word-spacing:2.112000px;}
.wsb5{word-spacing:2.160000px;}
.ws9c{word-spacing:2.220000px;}
.wse9{word-spacing:2.256000px;}
.ws62{word-spacing:2.340000px;}
.ws41{word-spacing:2.400000px;}
.ws16{word-spacing:2.430000px;}
.ws99{word-spacing:2.460000px;}
.wse3{word-spacing:2.496000px;}
.ws6c{word-spacing:2.520000px;}
.ws76{word-spacing:2.580000px;}
.ws1e{word-spacing:2.700000px;}
.ws3e{word-spacing:2.760000px;}
.ws33{word-spacing:2.820000px;}
.wsec{word-spacing:2.928000px;}
.ws6e{word-spacing:3.000000px;}
.wsa4{word-spacing:3.060000px;}
.ws7b{word-spacing:3.120000px;}
.ws12{word-spacing:3.132000px;}
.wsef{word-spacing:3.264000px;}
.ws8e{word-spacing:3.360000px;}
.ws22{word-spacing:3.480000px;}
.ws57{word-spacing:3.540000px;}
.wsf1{word-spacing:3.600000px;}
.ws11{word-spacing:3.618000px;}
.ws67{word-spacing:3.660000px;}
.ws3b{word-spacing:3.720000px;}
.ws44{word-spacing:3.780000px;}
.ws1a{word-spacing:3.840000px;}
.wsd0{word-spacing:3.888000px;}
.ws5d{word-spacing:3.900000px;}
.wsf0{word-spacing:3.936000px;}
.ws4f{word-spacing:3.960000px;}
.wsdc{word-spacing:3.984000px;}
.ws54{word-spacing:4.020000px;}
.ws13{word-spacing:4.050000px;}
.wse0{word-spacing:4.080000px;}
.ws46{word-spacing:4.140000px;}
.ws21{word-spacing:4.200000px;}
.ws5c{word-spacing:4.380000px;}
.wsc0{word-spacing:4.560000px;}
.ws2e{word-spacing:4.620000px;}
.wscd{word-spacing:4.800000px;}
.wsa5{word-spacing:4.860000px;}
.ws87{word-spacing:4.980000px;}
.wseb{word-spacing:5.040000px;}
.wsb7{word-spacing:5.100000px;}
.ws4a{word-spacing:5.160000px;}
.ws6a{word-spacing:5.280000px;}
.ws1b{word-spacing:5.340000px;}
.ws89{word-spacing:5.400000px;}
.wsd6{word-spacing:5.424000px;}
.ws90{word-spacing:5.460000px;}
.wscb{word-spacing:5.568000px;}
.ws37{word-spacing:5.700000px;}
.wsd2{word-spacing:5.904000px;}
.ws61{word-spacing:6.060000px;}
.ws3d{word-spacing:6.180000px;}
.ws30{word-spacing:6.300000px;}
.ws81{word-spacing:6.360000px;}
.wsdf{word-spacing:6.384000px;}
.ws6b{word-spacing:6.420000px;}
.ws4d{word-spacing:6.480000px;}
.wsfc{word-spacing:6.528000px;}
.ws7e{word-spacing:6.534000px;}
.ws8f{word-spacing:6.540000px;}
.wsea{word-spacing:6.576000px;}
.ws47{word-spacing:6.660000px;}
.wsf6{word-spacing:6.768000px;}
.ws9b{word-spacing:6.780000px;}
.ws10{word-spacing:6.804000px;}
.ws78{word-spacing:6.900000px;}
.wsa6{word-spacing:6.960000px;}
.ws88{word-spacing:7.140000px;}
.ws64{word-spacing:7.200000px;}
.ws32{word-spacing:7.440000px;}
.ws34{word-spacing:7.620000px;}
.ws39{word-spacing:7.860000px;}
.wsd3{word-spacing:7.968000px;}
.ws8d{word-spacing:8.040000px;}
.ws38{word-spacing:8.280000px;}
.wsc9{word-spacing:8.340000px;}
.ws70{word-spacing:8.520000px;}
.wse4{word-spacing:8.544000px;}
.wsd4{word-spacing:8.688000px;}
.ws8b{word-spacing:8.820000px;}
.ws55{word-spacing:8.880000px;}
.ws66{word-spacing:9.060000px;}
.wsc2{word-spacing:9.120000px;}
.wsf2{word-spacing:9.168000px;}
.ws9d{word-spacing:9.300000px;}
.ws5a{word-spacing:9.360000px;}
.wsa8{word-spacing:9.540000px;}
.wsf3{word-spacing:9.552000px;}
.wse6{word-spacing:9.600000px;}
.wsd8{word-spacing:9.840000px;}
.wsf8{word-spacing:10.128000px;}
.wsb9{word-spacing:10.140000px;}
.ws63{word-spacing:10.380000px;}
.wsd9{word-spacing:10.416000px;}
.wsba{word-spacing:10.560000px;}
.wsfd{word-spacing:10.752000px;}
.ws9e{word-spacing:11.340000px;}
.wsfb{word-spacing:11.520000px;}
.wsd5{word-spacing:11.616000px;}
.ws50{word-spacing:11.820000px;}
.wsce{word-spacing:12.048000px;}
.wsf4{word-spacing:12.144000px;}
.ws8c{word-spacing:12.240000px;}
.wsca{word-spacing:12.384000px;}
.wsc7{word-spacing:12.540000px;}
.wse5{word-spacing:13.440000px;}
.wse7{word-spacing:13.488000px;}
.wsbf{word-spacing:13.740000px;}
.ws6f{word-spacing:14.340000px;}
.wsb6{word-spacing:14.700000px;}
.ws4e{word-spacing:15.600000px;}
.wsbe{word-spacing:15.780000px;}
.wsd7{word-spacing:15.936000px;}
.wse8{word-spacing:17.184000px;}
.ws9f{word-spacing:18.720000px;}
.wsf5{word-spacing:21.120000px;}
.wsda{word-spacing:26.448000px;}
.wsdd{word-spacing:33.456000px;}
.wsab{word-spacing:166.848000px;}
.wsb0{word-spacing:230.165400px;}
.wsb1{word-spacing:230.166000px;}
.ws96{word-spacing:246.192000px;}
.ws94{word-spacing:247.173000px;}
.ws93{word-spacing:247.173600px;}
.ws95{word-spacing:254.160000px;}
.wsb2{word-spacing:256.176000px;}
.wsac{word-spacing:262.848000px;}
.wsb3{word-spacing:268.176000px;}
.ws97{word-spacing:271.200000px;}
.wsad{word-spacing:288.192000px;}
.wsaa{word-spacing:298.848000px;}
.wsaf{word-spacing:306.192000px;}
.wsae{word-spacing:336.192000px;}
.ws2c{word-spacing:490.080000px;}
._9{margin-left:-2823.160725px;}
._71{margin-left:-47.856000px;}
._72{margin-left:-7.099200px;}
._2{margin-left:-6.009000px;}
._c{margin-left:-4.918920px;}
._0{margin-left:-3.815880px;}
._3{margin-left:-2.802120px;}
._1{margin-left:-1.537200px;}
._6{width:1.074600px;}
._4{width:2.959200px;}
._5{width:4.120200px;}
._7{width:5.739720px;}
._8{width:6.741900px;}
._a{width:7.805400px;}
._14{width:9.240000px;}
._b{width:10.425600px;}
._13{width:12.042000px;}
._d{width:18.270000px;}
._21{width:143.634120px;}
._54{width:147.671880px;}
._34{width:160.626120px;}
._11{width:165.792000px;}
._45{width:168.306120px;}
._60{width:173.207880px;}
._56{width:177.618120px;}
._22{width:181.458120px;}
._4a{width:196.848000px;}
._35{width:198.498120px;}
._49{width:214.848000px;}
._42{width:217.367880px;}
._23{width:229.105200px;}
._18{width:236.496000px;}
._36{width:237.601200px;}
._2d{width:245.591880px;}
._70{width:256.176000px;}
._57{width:263.779320px;}
._1d{width:267.168000px;}
._6f{width:268.176000px;}
._2c{width:270.983880px;}
._1f{width:274.032000px;}
._4c{width:275.664000px;}
._1e{width:279.168000px;}
._6d{width:280.176000px;}
._52{width:281.473200px;}
._19{width:285.168000px;}
._51{width:287.712000px;}
._32{width:289.248000px;}
._2e{width:291.072000px;}
._50{width:292.848000px;}
._1a{width:297.168000px;}
._4e{width:298.848000px;}
._30{width:302.160000px;}
._1b{width:303.168000px;}
._1c{width:304.848000px;}
._28{width:314.160000px;}
._43{width:319.825200px;}
._3d{width:322.656000px;}
._2a{width:326.160000px;}
._46{width:330.111480px;}
._3c{width:331.200000px;}
._40{width:334.656000px;}
._61{width:336.817200px;}
._17{width:340.848000px;}
._3f{width:343.200000px;}
._47{width:347.520000px;}
._5c{width:348.864000px;}
._26{width:350.160000px;}
._3a{width:358.656000px;}
._5e{width:360.192000px;}
._f{width:364.148520px;}
._65{width:366.192000px;}
._39{width:367.200000px;}
._e{width:375.361200px;}
._5a{width:384.192000px;}
._44{width:397.824000px;}
._55{width:407.136000px;}
._6e{width:430.080000px;}
._33{width:441.168000px;}
._20{width:458.160000px;}
._6c{width:466.080000px;}
._6b{width:511.872000px;}
._6a{width:521.760000px;}
._10{width:524.210400px;}
._15{width:572.784000px;}
._69{width:580.055880px;}
._16{width:590.784000px;}
._62{width:611.232000px;}
._5f{width:635.442120px;}
._53{width:675.426120px;}
._2f{width:682.368000px;}
._41{width:711.954120px;}
._2b{width:754.482120px;}
._48{width:801.552000px;}
._58{width:844.224000px;}
._37{width:908.736000px;}
._24{width:951.264000px;}
._4b{width:954.480000px;}
._5b{width:991.152000px;}
._59{width:1003.200000px;}
._4d{width:1011.840000px;}
._5d{width:1042.512000px;}
._68{width:1043.586120px;}
._4f{width:1053.840000px;}
._3b{width:1067.712000px;}
._38{width:1079.712000px;}
._31{width:1101.648000px;}
._27{width:1110.192000px;}
._3e{width:1119.072000px;}
._25{width:1122.240000px;}
._29{width:1161.552000px;}
._63{width:1270.368000px;}
._64{width:1417.344000px;}
._66{width:1450.704000px;}
._67{width:1492.656000px;}
._12{width:1701.874320px;}
.fc1{color:rgb(40,63,144);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:26.235000px;}
.fse{font-size:27.984000px;}
.fs7{font-size:31.482000px;}
.fsd{font-size:34.980000px;}
.fsa{font-size:37.800000px;}
.fs3{font-size:41.976000px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:45.000000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:73.458000px;}
.fs8{font-size:96.000000px;}
.fs0{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:75.661350px;}
.y25{bottom:88.258200px;}
.y90{bottom:107.286450px;}
.y98{bottom:107.291250px;}
.y73{bottom:107.291400px;}
.y75{bottom:112.286400px;}
.y116{bottom:118.015650px;}
.y8f{bottom:125.286450px;}
.y97{bottom:125.291250px;}
.y72{bottom:125.291400px;}
.y115{bottom:136.015650px;}
.y117{bottom:140.011650px;}
.y96{bottom:143.291250px;}
.y5b{bottom:143.291400px;}
.y114{bottom:154.015650px;}
.y8e{bottom:158.036250px;}
.y95{bottom:161.291250px;}
.y22{bottom:161.291400px;}
.y113{bottom:172.015650px;}
.yba{bottom:179.291250px;}
.y21{bottom:179.291400px;}
.y94{bottom:184.286250px;}
.y112{bottom:190.015650px;}
.y74{bottom:194.036400px;}
.y8d{bottom:197.291250px;}
.y20{bottom:197.291400px;}
.y111{bottom:208.015650px;}
.y8c{bottom:215.291250px;}
.y1f{bottom:215.291400px;}
.y110{bottom:226.015650px;}
.y8b{bottom:233.291250px;}
.y1e{bottom:233.291400px;}
.y6a{bottom:233.586150px;}
.y10f{bottom:244.015650px;}
.y69{bottom:248.586150px;}
.y8a{bottom:251.291250px;}
.y1d{bottom:251.291400px;}
.y10e{bottom:262.015650px;}
.y68{bottom:264.558150px;}
.y89{bottom:269.291250px;}
.y1c{bottom:269.291400px;}
.y5a{bottom:274.286400px;}
.y10d{bottom:280.015650px;}
.y67{bottom:280.530150px;}
.y88{bottom:287.291250px;}
.y24{bottom:287.291400px;}
.y66{bottom:296.502150px;}
.y10c{bottom:298.015650px;}
.y87{bottom:305.291250px;}
.y23{bottom:305.291400px;}
.y65{bottom:312.476100px;}
.y1b{bottom:315.176850px;}
.y10b{bottom:316.015650px;}
.y86{bottom:323.291250px;}
.y59{bottom:323.291400px;}
.y64{bottom:328.451700px;}
.y10a{bottom:334.015650px;}
.y6d{bottom:338.036400px;}
.y85{bottom:341.291250px;}
.y58{bottom:341.291400px;}
.y63{bottom:344.423700px;}
.y109{bottom:352.015650px;}
.y84{bottom:359.291250px;}
.y57{bottom:359.291400px;}
.y62{bottom:359.425650px;}
.yb9{bottom:359.527500px;}
.y108{bottom:370.015650px;}
.y61{bottom:375.397650px;}
.y83{bottom:377.291250px;}
.y56{bottom:377.291400px;}
.y107{bottom:388.015650px;}
.y1a{bottom:394.457100px;}
.y82{bottom:395.291250px;}
.y55{bottom:395.291400px;}
.y60{bottom:400.954650px;}
.y106{bottom:406.015650px;}
.y19{bottom:412.452600px;}
.y81{bottom:413.291250px;}
.y54{bottom:413.291400px;}
.y93{bottom:418.286250px;}
.y105{bottom:424.015650px;}
.y80{bottom:431.291250px;}
.y53{bottom:431.291400px;}
.y6f{bottom:433.384050px;}
.y18{bottom:438.956400px;}
.y104{bottom:442.015650px;}
.y7f{bottom:449.291250px;}
.y52{bottom:449.291400px;}
.y103{bottom:460.015650px;}
.y7e{bottom:467.291250px;}
.y51{bottom:467.291400px;}
.y6c{bottom:476.062050px;}
.y102{bottom:478.015650px;}
.y7d{bottom:485.291250px;}
.y50{bottom:485.291400px;}
.y101{bottom:496.015650px;}
.y17{bottom:497.970150px;}
.y7c{bottom:503.291250px;}
.y4f{bottom:503.291400px;}
.ybb{bottom:508.286250px;}
.y71{bottom:510.474150px;}
.y100{bottom:514.015650px;}
.y16{bottom:514.920150px;}
.y7b{bottom:521.291250px;}
.y4e{bottom:521.291400px;}
.y70{bottom:528.469650px;}
.y15{bottom:531.870150px;}
.yff{bottom:532.015650px;}
.y7a{bottom:539.291250px;}
.y4d{bottom:539.291400px;}
.ydf{bottom:547.765650px;}
.y14{bottom:548.772150px;}
.yfe{bottom:550.015650px;}
.y79{bottom:557.291250px;}
.y4c{bottom:557.291400px;}
.yde{bottom:562.885650px;}
.y13{bottom:565.728150px;}
.yfd{bottom:568.015650px;}
.y92{bottom:575.286450px;}
.y78{bottom:575.291250px;}
.y4b{bottom:575.291400px;}
.ydd{bottom:578.005650px;}
.y12{bottom:582.684150px;}
.yfc{bottom:586.015650px;}
.ydc{bottom:593.125650px;}
.y91{bottom:593.286450px;}
.y77{bottom:593.291250px;}
.y4a{bottom:593.291400px;}
.y11{bottom:599.640150px;}
.yfb{bottom:604.015650px;}
.ydb{bottom:608.245650px;}
.y49{bottom:611.291400px;}
.y10{bottom:616.596150px;}
.yfa{bottom:622.015650px;}
.yda{bottom:623.365650px;}
.y48{bottom:629.291400px;}
.yf{bottom:633.552150px;}
.yb8{bottom:636.051300px;}
.yd9{bottom:638.485650px;}
.yf9{bottom:640.015650px;}
.y47{bottom:647.291400px;}
.ye{bottom:650.508150px;}
.yb7{bottom:651.171300px;}
.yd7{bottom:653.979750px;}
.yf8{bottom:658.015650px;}
.yd8{bottom:658.045650px;}
.y76{bottom:664.411350px;}
.y5f{bottom:665.291400px;}
.yd{bottom:667.464150px;}
.yd6{bottom:668.979750px;}
.y46{bottom:670.286400px;}
.yb6{bottom:670.287300px;}
.yf7{bottom:676.015650px;}
.y45{bottom:683.291400px;}
.yc{bottom:684.420150px;}
.yb5{bottom:685.410750px;}
.yf6{bottom:694.015650px;}
.yd5{bottom:694.536750px;}
.yb4{bottom:696.545100px;}
.y44{bottom:701.291400px;}
.yb{bottom:701.370150px;}
.yb3{bottom:711.665100px;}
.yf5{bottom:712.015650px;}
.ya{bottom:718.326150px;}
.y43{bottom:719.291400px;}
.yd4{bottom:724.795350px;}
.yb2{bottom:726.785100px;}
.yf4{bottom:730.015650px;}
.y42{bottom:737.291400px;}
.y9{bottom:743.780100px;}
.yd3{bottom:746.923350px;}
.yf3{bottom:748.015650px;}
.yb1{bottom:752.342100px;}
.y5e{bottom:755.291400px;}
.y41{bottom:760.286400px;}
.yd2{bottom:762.043350px;}
.yf2{bottom:766.015650px;}
.y40{bottom:773.291400px;}
.yd1{bottom:777.163350px;}
.y6e{bottom:777.483150px;}
.yf1{bottom:784.015650px;}
.yb0{bottom:785.160000px;}
.y3f{bottom:791.291400px;}
.yd0{bottom:796.279350px;}
.y8{bottom:800.052300px;}
.yaf{bottom:800.280000px;}
.yf0{bottom:802.015650px;}
.y3e{bottom:809.291400px;}
.ycf{bottom:811.402800px;}
.yae{bottom:815.400000px;}
.y7{bottom:818.050200px;}
.yef{bottom:820.015650px;}
.yce{bottom:822.542700px;}
.y3d{bottom:827.291400px;}
.yad{bottom:830.520000px;}
.ycd{bottom:837.662700px;}
.yee{bottom:838.015650px;}
.y3c{bottom:845.291400px;}
.yac{bottom:845.640000px;}
.ycc{bottom:852.590700px;}
.y6{bottom:853.055700px;}
.yed{bottom:856.015650px;}
.yab{bottom:860.760000px;}
.y3b{bottom:863.291400px;}
.ycb{bottom:867.710700px;}
.y5d{bottom:868.286400px;}
.yec{bottom:874.015650px;}
.yaa{bottom:879.876000px;}
.y3a{bottom:881.291400px;}
.yca{bottom:886.826700px;}
.yeb{bottom:892.015650px;}
.ya9{bottom:894.999600px;}
.y39{bottom:899.291400px;}
.y5{bottom:900.815250px;}
.yc9{bottom:901.950300px;}
.ya8{bottom:906.133950px;}
.yea{bottom:910.015650px;}
.yc8{bottom:913.084650px;}
.y38{bottom:917.291400px;}
.ya7{bottom:921.253950px;}
.y4{bottom:927.323250px;}
.ye9{bottom:928.015650px;}
.yc7{bottom:928.204650px;}
.y37{bottom:935.291400px;}
.ya6{bottom:936.373950px;}
.yc6{bottom:943.324650px;}
.ye8{bottom:946.015650px;}
.y36{bottom:953.291400px;}
.y3{bottom:953.827200px;}
.ya5{bottom:961.931100px;}
.yc5{bottom:968.886900px;}
.y35{bottom:971.291400px;}
.y5c{bottom:971.527650px;}
.ye7{bottom:981.023550px;}
.y34{bottom:989.291400px;}
.y2{bottom:993.425850px;}
.ya4{bottom:993.787800px;}
.yc4{bottom:999.126900px;}
.ya3{bottom:1008.907800px;}
.y33{bottom:1012.286400px;}
.ya2{bottom:1024.027800px;}
.yc3{bottom:1024.268100px;}
.y32{bottom:1025.291400px;}
.y1{bottom:1031.225850px;}
.ya1{bottom:1039.147800px;}
.yc2{bottom:1039.388100px;}
.ye6{bottom:1043.291250px;}
.y31{bottom:1043.291400px;}
.ya0{bottom:1054.267800px;}
.yc1{bottom:1054.508100px;}
.ye5{bottom:1061.291250px;}
.y30{bottom:1061.291400px;}
.y9f{bottom:1069.387800px;}
.yc0{bottom:1073.624250px;}
.ye4{bottom:1079.291250px;}
.y2f{bottom:1079.291400px;}
.y9e{bottom:1084.507800px;}
.ybf{bottom:1088.747700px;}
.ye3{bottom:1097.291250px;}
.y2e{bottom:1097.291400px;}
.y9d{bottom:1099.627800px;}
.ybe{bottom:1099.878600px;}
.y29{bottom:1108.311000px;}
.ybd{bottom:1115.002050px;}
.y9b{bottom:1115.121900px;}
.ye2{bottom:1115.291250px;}
.y2d{bottom:1115.291400px;}
.y9c{bottom:1119.187800px;}
.y9a{bottom:1130.121900px;}
.ybc{bottom:1130.122050px;}
.ye1{bottom:1133.291250px;}
.y2c{bottom:1133.291400px;}
.ye0{bottom:1151.291250px;}
.y2b{bottom:1151.291400px;}
.y99{bottom:1155.679050px;}
.y28{bottom:1168.102350px;}
.y27{bottom:1181.602350px;}
.y6b{bottom:1194.094800px;}
.y2a{bottom:1194.094950px;}
.h1a{height:18.965719px;}
.h1d{height:26.132588px;}
.h1b{height:26.133188px;}
.he{height:28.516113px;}
.h13{height:30.692900px;}
.h5{height:32.507812px;}
.h14{height:32.531250px;}
.h12{height:32.666484px;}
.h16{height:33.328125px;}
.hf{height:33.947754px;}
.h11{height:34.776541px;}
.ha{height:37.494141px;}
.h17{height:40.664062px;}
.hd{height:41.660156px;}
.h1c{height:42.103387px;}
.h15{height:42.109988px;}
.h6{height:42.117188px;}
.h7{height:47.381836px;}
.h9{height:47.405836px;}
.hb{height:47.597836px;}
.h19{height:50.672900px;}
.h10{height:51.120000px;}
.hc{height:52.646484px;}
.h18{height:52.665684px;}
.h4{height:55.642465px;}
.h8{height:68.640000px;}
.h3{height:90.090000px;}
.h2{height:94.480470px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:93.543300px;}
.x16{left:96.090150px;}
.x12{left:98.274000px;}
.x1a{left:101.573850px;}
.x11{left:105.270000px;}
.xa{left:110.553300px;}
.x1b{left:123.233850px;}
.x2{left:127.559100px;}
.x3{left:144.570450px;}
.x18{left:171.868200px;}
.x13{left:182.310000px;}
.x17{left:188.875950px;}
.x1c{left:201.437850px;}
.x15{left:206.727450px;}
.x19{left:222.904500px;}
.x1d{left:225.861300px;}
.x9{left:328.673250px;}
.x8{left:384.307200px;}
.x5{left:455.448300px;}
.xc{left:458.015700px;}
.x1e{left:464.411400px;}
.x4{left:472.458300px;}
.xb{left:502.343700px;}
.x6{left:544.394100px;}
.xf{left:624.751350px;}
.x7{left:634.382850px;}
.xd{left:644.124000px;}
.x10{left:658.676550px;}
.xe{left:662.701050px;}
.x14{left:743.502000px;}
@media print{
.v6{vertical-align:-17.760000pt;}
.v4{vertical-align:-15.984000pt;}
.v8{vertical-align:-14.214933pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.320000pt;}
.v3{vertical-align:15.975467pt;}
.v7{vertical-align:17.760000pt;}
.v2{vertical-align:21.312000pt;}
.v1{vertical-align:37.296000pt;}
.ls5{letter-spacing:-1.152000pt;}
.lsd{letter-spacing:-1.066667pt;}
.ls3{letter-spacing:-0.720000pt;}
.lse{letter-spacing:-0.621867pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls4{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.310933pt;}
.ls1{letter-spacing:-0.144000pt;}
.ls11{letter-spacing:-0.106667pt;}
.ls2{letter-spacing:-0.083952pt;}
.ls12{letter-spacing:-0.062187pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000533pt;}
.ls13{letter-spacing:0.042667pt;}
.ls10{letter-spacing:0.298667pt;}
.ls7{letter-spacing:0.310933pt;}
.ls6{letter-spacing:0.533333pt;}
.lsf{letter-spacing:28.586667pt;}
.ls8{letter-spacing:202.298667pt;}
.lsc{letter-spacing:800.030933pt;}
.ws4{word-spacing:-48.000000pt;}
.ws8{word-spacing:-20.480000pt;}
.ws0{word-spacing:-15.671040pt;}
.ws2b{word-spacing:-13.333333pt;}
.ws5{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.685333pt;}
.ws1{word-spacing:-11.678656pt;}
.ws7{word-spacing:-11.280000pt;}
.wsc6{word-spacing:-10.965333pt;}
.wsc5{word-spacing:-10.709333pt;}
.ws3{word-spacing:-10.666667pt;}
.ws2a{word-spacing:-7.773333pt;}
.wsc4{word-spacing:-7.711147pt;}
.ws7f{word-spacing:-7.462400pt;}
.ws29{word-spacing:-7.299160pt;}
.wsa9{word-spacing:-7.151467pt;}
.ws9{word-spacing:-6.996000pt;}
.ws6{word-spacing:-6.912048pt;}
.ws2d{word-spacing:-6.218667pt;}
.ws24{word-spacing:-5.653333pt;}
.wsd{word-spacing:-4.704000pt;}
.ws9a{word-spacing:-4.106667pt;}
.ws58{word-spacing:-3.520000pt;}
.wsc8{word-spacing:-3.093333pt;}
.ws5e{word-spacing:-2.933333pt;}
.wscf{word-spacing:-2.730667pt;}
.ws5f{word-spacing:-2.506667pt;}
.ws51{word-spacing:-2.453333pt;}
.ws53{word-spacing:-2.400000pt;}
.ws75{word-spacing:-2.346667pt;}
.wsb8{word-spacing:-2.186667pt;}
.wsbd{word-spacing:-2.133333pt;}
.wsa2{word-spacing:-2.080000pt;}
.ws14{word-spacing:-2.064000pt;}
.ws83{word-spacing:-2.026667pt;}
.wsc{word-spacing:-2.016000pt;}
.ws40{word-spacing:-1.973333pt;}
.ws71{word-spacing:-1.920000pt;}
.ws1c{word-spacing:-1.866667pt;}
.ws15{word-spacing:-1.728000pt;}
.wsbb{word-spacing:-1.706667pt;}
.ws80{word-spacing:-1.653333pt;}
.wsc1{word-spacing:-1.600000pt;}
.ws69{word-spacing:-1.546667pt;}
.ws91{word-spacing:-1.493333pt;}
.ws17{word-spacing:-1.488000pt;}
.ws36{word-spacing:-1.386667pt;}
.ws1f{word-spacing:-1.280000pt;}
.ws18{word-spacing:-1.248000pt;}
.ws52{word-spacing:-1.226667pt;}
.ws2f{word-spacing:-1.173333pt;}
.ws59{word-spacing:-1.120000pt;}
.wse2{word-spacing:-1.066667pt;}
.wsb{word-spacing:-0.960000pt;}
.ws72{word-spacing:-0.906667pt;}
.wsa1{word-spacing:-0.853333pt;}
.wsed{word-spacing:-0.768000pt;}
.ws84{word-spacing:-0.586667pt;}
.ws73{word-spacing:-0.533333pt;}
.ws45{word-spacing:-0.480000pt;}
.ws7c{word-spacing:-0.426667pt;}
.ws7d{word-spacing:-0.373333pt;}
.ws74{word-spacing:-0.310933pt;}
.wsd1{word-spacing:-0.256000pt;}
.ws98{word-spacing:-0.213333pt;}
.wsee{word-spacing:-0.170667pt;}
.ws26{word-spacing:-0.168000pt;}
.ws49{word-spacing:-0.160000pt;}
.ws25{word-spacing:-0.134400pt;}
.ws6d{word-spacing:-0.106667pt;}
.wsa0{word-spacing:-0.053333pt;}
.wsc3{word-spacing:-0.042667pt;}
.wsa{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.053333pt;}
.wsf9{word-spacing:0.085333pt;}
.ws48{word-spacing:0.106667pt;}
.ws28{word-spacing:0.128000pt;}
.wse{word-spacing:0.144000pt;}
.ws79{word-spacing:0.160000pt;}
.ws3a{word-spacing:0.213333pt;}
.ws3c{word-spacing:0.266667pt;}
.ws56{word-spacing:0.320000pt;}
.ws77{word-spacing:0.373333pt;}
.ws3f{word-spacing:0.426667pt;}
.wsf7{word-spacing:0.469333pt;}
.ws27{word-spacing:0.480000pt;}
.ws5b{word-spacing:0.533333pt;}
.ws8a{word-spacing:0.586667pt;}
.wsbc{word-spacing:0.640000pt;}
.ws42{word-spacing:0.693333pt;}
.ws1d{word-spacing:0.746667pt;}
.wsde{word-spacing:0.768000pt;}
.ws60{word-spacing:0.800000pt;}
.wsa7{word-spacing:0.853333pt;}
.wsdb{word-spacing:0.896000pt;}
.wsa3{word-spacing:0.906667pt;}
.ws20{word-spacing:1.013333pt;}
.ws68{word-spacing:1.066667pt;}
.ws35{word-spacing:1.120000pt;}
.wse1{word-spacing:1.152000pt;}
.ws19{word-spacing:1.173333pt;}
.ws43{word-spacing:1.226667pt;}
.ws85{word-spacing:1.280000pt;}
.ws92{word-spacing:1.333333pt;}
.ws31{word-spacing:1.386667pt;}
.wscc{word-spacing:1.408000pt;}
.ws65{word-spacing:1.440000pt;}
.ws4c{word-spacing:1.493333pt;}
.wsf{word-spacing:1.536000pt;}
.ws23{word-spacing:1.546667pt;}
.ws86{word-spacing:1.653333pt;}
.ws7a{word-spacing:1.706667pt;}
.wsb4{word-spacing:1.760000pt;}
.ws82{word-spacing:1.866667pt;}
.wsfa{word-spacing:1.877333pt;}
.wsb5{word-spacing:1.920000pt;}
.ws9c{word-spacing:1.973333pt;}
.wse9{word-spacing:2.005333pt;}
.ws62{word-spacing:2.080000pt;}
.ws41{word-spacing:2.133333pt;}
.ws16{word-spacing:2.160000pt;}
.ws99{word-spacing:2.186667pt;}
.wse3{word-spacing:2.218667pt;}
.ws6c{word-spacing:2.240000pt;}
.ws76{word-spacing:2.293333pt;}
.ws1e{word-spacing:2.400000pt;}
.ws3e{word-spacing:2.453333pt;}
.ws33{word-spacing:2.506667pt;}
.wsec{word-spacing:2.602667pt;}
.ws6e{word-spacing:2.666667pt;}
.wsa4{word-spacing:2.720000pt;}
.ws7b{word-spacing:2.773333pt;}
.ws12{word-spacing:2.784000pt;}
.wsef{word-spacing:2.901333pt;}
.ws8e{word-spacing:2.986667pt;}
.ws22{word-spacing:3.093333pt;}
.ws57{word-spacing:3.146667pt;}
.wsf1{word-spacing:3.200000pt;}
.ws11{word-spacing:3.216000pt;}
.ws67{word-spacing:3.253333pt;}
.ws3b{word-spacing:3.306667pt;}
.ws44{word-spacing:3.360000pt;}
.ws1a{word-spacing:3.413333pt;}
.wsd0{word-spacing:3.456000pt;}
.ws5d{word-spacing:3.466667pt;}
.wsf0{word-spacing:3.498667pt;}
.ws4f{word-spacing:3.520000pt;}
.wsdc{word-spacing:3.541333pt;}
.ws54{word-spacing:3.573333pt;}
.ws13{word-spacing:3.600000pt;}
.wse0{word-spacing:3.626667pt;}
.ws46{word-spacing:3.680000pt;}
.ws21{word-spacing:3.733333pt;}
.ws5c{word-spacing:3.893333pt;}
.wsc0{word-spacing:4.053333pt;}
.ws2e{word-spacing:4.106667pt;}
.wscd{word-spacing:4.266667pt;}
.wsa5{word-spacing:4.320000pt;}
.ws87{word-spacing:4.426667pt;}
.wseb{word-spacing:4.480000pt;}
.wsb7{word-spacing:4.533333pt;}
.ws4a{word-spacing:4.586667pt;}
.ws6a{word-spacing:4.693333pt;}
.ws1b{word-spacing:4.746667pt;}
.ws89{word-spacing:4.800000pt;}
.wsd6{word-spacing:4.821333pt;}
.ws90{word-spacing:4.853333pt;}
.wscb{word-spacing:4.949333pt;}
.ws37{word-spacing:5.066667pt;}
.wsd2{word-spacing:5.248000pt;}
.ws61{word-spacing:5.386667pt;}
.ws3d{word-spacing:5.493333pt;}
.ws30{word-spacing:5.600000pt;}
.ws81{word-spacing:5.653333pt;}
.wsdf{word-spacing:5.674667pt;}
.ws6b{word-spacing:5.706667pt;}
.ws4d{word-spacing:5.760000pt;}
.wsfc{word-spacing:5.802667pt;}
.ws7e{word-spacing:5.808000pt;}
.ws8f{word-spacing:5.813333pt;}
.wsea{word-spacing:5.845333pt;}
.ws47{word-spacing:5.920000pt;}
.wsf6{word-spacing:6.016000pt;}
.ws9b{word-spacing:6.026667pt;}
.ws10{word-spacing:6.048000pt;}
.ws78{word-spacing:6.133333pt;}
.wsa6{word-spacing:6.186667pt;}
.ws88{word-spacing:6.346667pt;}
.ws64{word-spacing:6.400000pt;}
.ws32{word-spacing:6.613333pt;}
.ws34{word-spacing:6.773333pt;}
.ws39{word-spacing:6.986667pt;}
.wsd3{word-spacing:7.082667pt;}
.ws8d{word-spacing:7.146667pt;}
.ws38{word-spacing:7.360000pt;}
.wsc9{word-spacing:7.413333pt;}
.ws70{word-spacing:7.573333pt;}
.wse4{word-spacing:7.594667pt;}
.wsd4{word-spacing:7.722667pt;}
.ws8b{word-spacing:7.840000pt;}
.ws55{word-spacing:7.893333pt;}
.ws66{word-spacing:8.053333pt;}
.wsc2{word-spacing:8.106667pt;}
.wsf2{word-spacing:8.149333pt;}
.ws9d{word-spacing:8.266667pt;}
.ws5a{word-spacing:8.320000pt;}
.wsa8{word-spacing:8.480000pt;}
.wsf3{word-spacing:8.490667pt;}
.wse6{word-spacing:8.533333pt;}
.wsd8{word-spacing:8.746667pt;}
.wsf8{word-spacing:9.002667pt;}
.wsb9{word-spacing:9.013333pt;}
.ws63{word-spacing:9.226667pt;}
.wsd9{word-spacing:9.258667pt;}
.wsba{word-spacing:9.386667pt;}
.wsfd{word-spacing:9.557333pt;}
.ws9e{word-spacing:10.080000pt;}
.wsfb{word-spacing:10.240000pt;}
.wsd5{word-spacing:10.325333pt;}
.ws50{word-spacing:10.506667pt;}
.wsce{word-spacing:10.709333pt;}
.wsf4{word-spacing:10.794667pt;}
.ws8c{word-spacing:10.880000pt;}
.wsca{word-spacing:11.008000pt;}
.wsc7{word-spacing:11.146667pt;}
.wse5{word-spacing:11.946667pt;}
.wse7{word-spacing:11.989333pt;}
.wsbf{word-spacing:12.213333pt;}
.ws6f{word-spacing:12.746667pt;}
.wsb6{word-spacing:13.066667pt;}
.ws4e{word-spacing:13.866667pt;}
.wsbe{word-spacing:14.026667pt;}
.wsd7{word-spacing:14.165333pt;}
.wse8{word-spacing:15.274667pt;}
.ws9f{word-spacing:16.640000pt;}
.wsf5{word-spacing:18.773333pt;}
.wsda{word-spacing:23.509333pt;}
.wsdd{word-spacing:29.738667pt;}
.wsab{word-spacing:148.309333pt;}
.wsb0{word-spacing:204.591467pt;}
.wsb1{word-spacing:204.592000pt;}
.ws96{word-spacing:218.837333pt;}
.ws94{word-spacing:219.709333pt;}
.ws93{word-spacing:219.709867pt;}
.ws95{word-spacing:225.920000pt;}
.wsb2{word-spacing:227.712000pt;}
.wsac{word-spacing:233.642667pt;}
.wsb3{word-spacing:238.378667pt;}
.ws97{word-spacing:241.066667pt;}
.wsad{word-spacing:256.170667pt;}
.wsaa{word-spacing:265.642667pt;}
.wsaf{word-spacing:272.170667pt;}
.wsae{word-spacing:298.837333pt;}
.ws2c{word-spacing:435.626667pt;}
._9{margin-left:-2509.476200pt;}
._71{margin-left:-42.538667pt;}
._72{margin-left:-6.310400pt;}
._2{margin-left:-5.341333pt;}
._c{margin-left:-4.372373pt;}
._0{margin-left:-3.391893pt;}
._3{margin-left:-2.490773pt;}
._1{margin-left:-1.366400pt;}
._6{width:0.955200pt;}
._4{width:2.630400pt;}
._5{width:3.662400pt;}
._7{width:5.101973pt;}
._8{width:5.992800pt;}
._a{width:6.938133pt;}
._14{width:8.213333pt;}
._b{width:9.267200pt;}
._13{width:10.704000pt;}
._d{width:16.240000pt;}
._21{width:127.674773pt;}
._54{width:131.263893pt;}
._34{width:142.778773pt;}
._11{width:147.370667pt;}
._45{width:149.605440pt;}
._60{width:153.962560pt;}
._56{width:157.882773pt;}
._22{width:161.296107pt;}
._4a{width:174.976000pt;}
._35{width:176.442773pt;}
._49{width:190.976000pt;}
._42{width:193.215893pt;}
._23{width:203.649067pt;}
._18{width:210.218667pt;}
._36{width:211.201067pt;}
._2d{width:218.303893pt;}
._70{width:227.712000pt;}
._57{width:234.470507pt;}
._1d{width:237.482667pt;}
._6f{width:238.378667pt;}
._2c{width:240.874560pt;}
._1f{width:243.584000pt;}
._4c{width:245.034667pt;}
._1e{width:248.149333pt;}
._6d{width:249.045333pt;}
._52{width:250.198400pt;}
._19{width:253.482667pt;}
._51{width:255.744000pt;}
._32{width:257.109333pt;}
._2e{width:258.730667pt;}
._50{width:260.309333pt;}
._1a{width:264.149333pt;}
._4e{width:265.642667pt;}
._30{width:268.586667pt;}
._1b{width:269.482667pt;}
._1c{width:270.976000pt;}
._28{width:279.253333pt;}
._43{width:284.289067pt;}
._3d{width:286.805333pt;}
._2a{width:289.920000pt;}
._46{width:293.432427pt;}
._3c{width:294.400000pt;}
._40{width:297.472000pt;}
._61{width:299.393067pt;}
._17{width:302.976000pt;}
._3f{width:305.066667pt;}
._47{width:308.906667pt;}
._5c{width:310.101333pt;}
._26{width:311.253333pt;}
._3a{width:318.805333pt;}
._5e{width:320.170667pt;}
._f{width:323.687573pt;}
._65{width:325.504000pt;}
._39{width:326.400000pt;}
._e{width:333.654400pt;}
._5a{width:341.504000pt;}
._44{width:353.621333pt;}
._55{width:361.898667pt;}
._6e{width:382.293333pt;}
._33{width:392.149333pt;}
._20{width:407.253333pt;}
._6c{width:414.293333pt;}
._6b{width:454.997333pt;}
._6a{width:463.786667pt;}
._10{width:465.964800pt;}
._15{width:509.141333pt;}
._69{width:515.605227pt;}
._16{width:525.141333pt;}
._62{width:543.317333pt;}
._5f{width:564.837440pt;}
._53{width:600.378773pt;}
._2f{width:606.549333pt;}
._41{width:632.848107pt;}
._2b{width:670.650773pt;}
._48{width:712.490667pt;}
._58{width:750.421333pt;}
._37{width:807.765333pt;}
._24{width:845.568000pt;}
._4b{width:848.426667pt;}
._5b{width:881.024000pt;}
._59{width:891.733333pt;}
._4d{width:899.413333pt;}
._5d{width:926.677333pt;}
._68{width:927.632107pt;}
._4f{width:936.746667pt;}
._3b{width:949.077333pt;}
._38{width:959.744000pt;}
._31{width:979.242667pt;}
._27{width:986.837333pt;}
._3e{width:994.730667pt;}
._25{width:997.546667pt;}
._29{width:1032.490667pt;}
._63{width:1129.216000pt;}
._64{width:1259.861333pt;}
._66{width:1289.514667pt;}
._67{width:1326.805333pt;}
._12{width:1512.777173pt;}
.fsc{font-size:23.320000pt;}
.fse{font-size:24.874667pt;}
.fs7{font-size:27.984000pt;}
.fsd{font-size:31.093333pt;}
.fsa{font-size:33.600000pt;}
.fs3{font-size:37.312000pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:40.000000pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:65.296000pt;}
.fs8{font-size:85.333333pt;}
.fs0{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:67.254533pt;}
.y25{bottom:78.451733pt;}
.y90{bottom:95.365733pt;}
.y98{bottom:95.370000pt;}
.y73{bottom:95.370133pt;}
.y75{bottom:99.810133pt;}
.y116{bottom:104.902800pt;}
.y8f{bottom:111.365733pt;}
.y97{bottom:111.370000pt;}
.y72{bottom:111.370133pt;}
.y115{bottom:120.902800pt;}
.y117{bottom:124.454800pt;}
.y96{bottom:127.370000pt;}
.y5b{bottom:127.370133pt;}
.y114{bottom:136.902800pt;}
.y8e{bottom:140.476667pt;}
.y95{bottom:143.370000pt;}
.y22{bottom:143.370133pt;}
.y113{bottom:152.902800pt;}
.yba{bottom:159.370000pt;}
.y21{bottom:159.370133pt;}
.y94{bottom:163.810000pt;}
.y112{bottom:168.902800pt;}
.y74{bottom:172.476800pt;}
.y8d{bottom:175.370000pt;}
.y20{bottom:175.370133pt;}
.y111{bottom:184.902800pt;}
.y8c{bottom:191.370000pt;}
.y1f{bottom:191.370133pt;}
.y110{bottom:200.902800pt;}
.y8b{bottom:207.370000pt;}
.y1e{bottom:207.370133pt;}
.y6a{bottom:207.632133pt;}
.y10f{bottom:216.902800pt;}
.y69{bottom:220.965467pt;}
.y8a{bottom:223.370000pt;}
.y1d{bottom:223.370133pt;}
.y10e{bottom:232.902800pt;}
.y68{bottom:235.162800pt;}
.y89{bottom:239.370000pt;}
.y1c{bottom:239.370133pt;}
.y5a{bottom:243.810133pt;}
.y10d{bottom:248.902800pt;}
.y67{bottom:249.360133pt;}
.y88{bottom:255.370000pt;}
.y24{bottom:255.370133pt;}
.y66{bottom:263.557467pt;}
.y10c{bottom:264.902800pt;}
.y87{bottom:271.370000pt;}
.y23{bottom:271.370133pt;}
.y65{bottom:277.756533pt;}
.y1b{bottom:280.157200pt;}
.y10b{bottom:280.902800pt;}
.y86{bottom:287.370000pt;}
.y59{bottom:287.370133pt;}
.y64{bottom:291.957067pt;}
.y10a{bottom:296.902800pt;}
.y6d{bottom:300.476800pt;}
.y85{bottom:303.370000pt;}
.y58{bottom:303.370133pt;}
.y63{bottom:306.154400pt;}
.y109{bottom:312.902800pt;}
.y84{bottom:319.370000pt;}
.y57{bottom:319.370133pt;}
.y62{bottom:319.489467pt;}
.yb9{bottom:319.580000pt;}
.y108{bottom:328.902800pt;}
.y61{bottom:333.686800pt;}
.y83{bottom:335.370000pt;}
.y56{bottom:335.370133pt;}
.y107{bottom:344.902800pt;}
.y1a{bottom:350.628533pt;}
.y82{bottom:351.370000pt;}
.y55{bottom:351.370133pt;}
.y60{bottom:356.404133pt;}
.y106{bottom:360.902800pt;}
.y19{bottom:366.624533pt;}
.y81{bottom:367.370000pt;}
.y54{bottom:367.370133pt;}
.y93{bottom:371.810000pt;}
.y105{bottom:376.902800pt;}
.y80{bottom:383.370000pt;}
.y53{bottom:383.370133pt;}
.y6f{bottom:385.230267pt;}
.y18{bottom:390.183467pt;}
.y104{bottom:392.902800pt;}
.y7f{bottom:399.370000pt;}
.y52{bottom:399.370133pt;}
.y103{bottom:408.902800pt;}
.y7e{bottom:415.370000pt;}
.y51{bottom:415.370133pt;}
.y6c{bottom:423.166267pt;}
.y102{bottom:424.902800pt;}
.y7d{bottom:431.370000pt;}
.y50{bottom:431.370133pt;}
.y101{bottom:440.902800pt;}
.y17{bottom:442.640133pt;}
.y7c{bottom:447.370000pt;}
.y4f{bottom:447.370133pt;}
.ybb{bottom:451.810000pt;}
.y71{bottom:453.754800pt;}
.y100{bottom:456.902800pt;}
.y16{bottom:457.706800pt;}
.y7b{bottom:463.370000pt;}
.y4e{bottom:463.370133pt;}
.y70{bottom:469.750800pt;}
.y15{bottom:472.773467pt;}
.yff{bottom:472.902800pt;}
.y7a{bottom:479.370000pt;}
.y4d{bottom:479.370133pt;}
.ydf{bottom:486.902800pt;}
.y14{bottom:487.797467pt;}
.yfe{bottom:488.902800pt;}
.y79{bottom:495.370000pt;}
.y4c{bottom:495.370133pt;}
.yde{bottom:500.342800pt;}
.y13{bottom:502.869467pt;}
.yfd{bottom:504.902800pt;}
.y92{bottom:511.365733pt;}
.y78{bottom:511.370000pt;}
.y4b{bottom:511.370133pt;}
.ydd{bottom:513.782800pt;}
.y12{bottom:517.941467pt;}
.yfc{bottom:520.902800pt;}
.ydc{bottom:527.222800pt;}
.y91{bottom:527.365733pt;}
.y77{bottom:527.370000pt;}
.y4a{bottom:527.370133pt;}
.y11{bottom:533.013467pt;}
.yfb{bottom:536.902800pt;}
.ydb{bottom:540.662800pt;}
.y49{bottom:543.370133pt;}
.y10{bottom:548.085467pt;}
.yfa{bottom:552.902800pt;}
.yda{bottom:554.102800pt;}
.y48{bottom:559.370133pt;}
.yf{bottom:563.157467pt;}
.yb8{bottom:565.378933pt;}
.yd9{bottom:567.542800pt;}
.yf9{bottom:568.902800pt;}
.y47{bottom:575.370133pt;}
.ye{bottom:578.229467pt;}
.yb7{bottom:578.818933pt;}
.yd7{bottom:581.315333pt;}
.yf8{bottom:584.902800pt;}
.yd8{bottom:584.929467pt;}
.y76{bottom:590.587867pt;}
.y5f{bottom:591.370133pt;}
.yd{bottom:593.301467pt;}
.yd6{bottom:594.648667pt;}
.y46{bottom:595.810133pt;}
.yb6{bottom:595.810933pt;}
.yf7{bottom:600.902800pt;}
.y45{bottom:607.370133pt;}
.yc{bottom:608.373467pt;}
.yb5{bottom:609.254000pt;}
.yf6{bottom:616.902800pt;}
.yd5{bottom:617.366000pt;}
.yb4{bottom:619.151200pt;}
.y44{bottom:623.370133pt;}
.yb{bottom:623.440133pt;}
.yb3{bottom:632.591200pt;}
.yf5{bottom:632.902800pt;}
.ya{bottom:638.512133pt;}
.y43{bottom:639.370133pt;}
.yd4{bottom:644.262533pt;}
.yb2{bottom:646.031200pt;}
.yf4{bottom:648.902800pt;}
.y42{bottom:655.370133pt;}
.y9{bottom:661.137867pt;}
.yd3{bottom:663.931867pt;}
.yf3{bottom:664.902800pt;}
.yb1{bottom:668.748533pt;}
.y5e{bottom:671.370133pt;}
.y41{bottom:675.810133pt;}
.yd2{bottom:677.371867pt;}
.yf2{bottom:680.902800pt;}
.y40{bottom:687.370133pt;}
.yd1{bottom:690.811867pt;}
.y6e{bottom:691.096133pt;}
.yf1{bottom:696.902800pt;}
.yb0{bottom:697.920000pt;}
.y3f{bottom:703.370133pt;}
.yd0{bottom:707.803867pt;}
.y8{bottom:711.157600pt;}
.yaf{bottom:711.360000pt;}
.yf0{bottom:712.902800pt;}
.y3e{bottom:719.370133pt;}
.ycf{bottom:721.246933pt;}
.yae{bottom:724.800000pt;}
.y7{bottom:727.155733pt;}
.yef{bottom:728.902800pt;}
.yce{bottom:731.149067pt;}
.y3d{bottom:735.370133pt;}
.yad{bottom:738.240000pt;}
.ycd{bottom:744.589067pt;}
.yee{bottom:744.902800pt;}
.y3c{bottom:751.370133pt;}
.yac{bottom:751.680000pt;}
.ycc{bottom:757.858400pt;}
.y6{bottom:758.271733pt;}
.yed{bottom:760.902800pt;}
.yab{bottom:765.120000pt;}
.y3b{bottom:767.370133pt;}
.ycb{bottom:771.298400pt;}
.y5d{bottom:771.810133pt;}
.yec{bottom:776.902800pt;}
.yaa{bottom:782.112000pt;}
.y3a{bottom:783.370133pt;}
.yca{bottom:788.290400pt;}
.yeb{bottom:792.902800pt;}
.ya9{bottom:795.555200pt;}
.y39{bottom:799.370133pt;}
.y5{bottom:800.724667pt;}
.yc9{bottom:801.733600pt;}
.ya8{bottom:805.452400pt;}
.yea{bottom:808.902800pt;}
.yc8{bottom:811.630800pt;}
.y38{bottom:815.370133pt;}
.ya7{bottom:818.892400pt;}
.y4{bottom:824.287333pt;}
.ye9{bottom:824.902800pt;}
.yc7{bottom:825.070800pt;}
.y37{bottom:831.370133pt;}
.ya6{bottom:832.332400pt;}
.yc6{bottom:838.510800pt;}
.ye8{bottom:840.902800pt;}
.y36{bottom:847.370133pt;}
.y3{bottom:847.846400pt;}
.ya5{bottom:855.049867pt;}
.yc5{bottom:861.232800pt;}
.y35{bottom:863.370133pt;}
.y5c{bottom:863.580133pt;}
.ye7{bottom:872.020933pt;}
.y34{bottom:879.370133pt;}
.y2{bottom:883.045200pt;}
.ya4{bottom:883.366933pt;}
.yc4{bottom:888.112800pt;}
.ya3{bottom:896.806933pt;}
.y33{bottom:899.810133pt;}
.ya2{bottom:910.246933pt;}
.yc3{bottom:910.460533pt;}
.y32{bottom:911.370133pt;}
.y1{bottom:916.645200pt;}
.ya1{bottom:923.686933pt;}
.yc2{bottom:923.900533pt;}
.ye6{bottom:927.370000pt;}
.y31{bottom:927.370133pt;}
.ya0{bottom:937.126933pt;}
.yc1{bottom:937.340533pt;}
.ye5{bottom:943.370000pt;}
.y30{bottom:943.370133pt;}
.y9f{bottom:950.566933pt;}
.yc0{bottom:954.332667pt;}
.ye4{bottom:959.370000pt;}
.y2f{bottom:959.370133pt;}
.y9e{bottom:964.006933pt;}
.ybf{bottom:967.775733pt;}
.ye3{bottom:975.370000pt;}
.y2e{bottom:975.370133pt;}
.y9d{bottom:977.446933pt;}
.ybe{bottom:977.669867pt;}
.y29{bottom:985.165333pt;}
.ybd{bottom:991.112933pt;}
.y9b{bottom:991.219467pt;}
.ye2{bottom:991.370000pt;}
.y2d{bottom:991.370133pt;}
.y9c{bottom:994.833600pt;}
.y9a{bottom:1004.552800pt;}
.ybc{bottom:1004.552933pt;}
.ye1{bottom:1007.370000pt;}
.y2c{bottom:1007.370133pt;}
.ye0{bottom:1023.370000pt;}
.y2b{bottom:1023.370133pt;}
.y99{bottom:1027.270267pt;}
.y28{bottom:1038.313200pt;}
.y27{bottom:1050.313200pt;}
.y6b{bottom:1061.417600pt;}
.y2a{bottom:1061.417733pt;}
.h1a{height:16.858417pt;}
.h1d{height:23.228967pt;}
.h1b{height:23.229500pt;}
.he{height:25.347656pt;}
.h13{height:27.282578pt;}
.h5{height:28.895833pt;}
.h14{height:28.916667pt;}
.h12{height:29.036875pt;}
.h16{height:29.625000pt;}
.hf{height:30.175781pt;}
.h11{height:30.912480pt;}
.ha{height:33.328125pt;}
.h17{height:36.145833pt;}
.hd{height:37.031250pt;}
.h1c{height:37.425233pt;}
.h15{height:37.431100pt;}
.h6{height:37.437500pt;}
.h7{height:42.117188pt;}
.h9{height:42.138521pt;}
.hb{height:42.309188pt;}
.h19{height:45.042578pt;}
.h10{height:45.440000pt;}
.hc{height:46.796875pt;}
.h18{height:46.813942pt;}
.h4{height:49.459969pt;}
.h8{height:61.013333pt;}
.h3{height:80.080000pt;}
.h2{height:83.982640pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:83.149600pt;}
.x16{left:85.413467pt;}
.x12{left:87.354667pt;}
.x1a{left:90.287867pt;}
.x11{left:93.573333pt;}
.xa{left:98.269600pt;}
.x1b{left:109.541200pt;}
.x2{left:113.385867pt;}
.x3{left:128.507067pt;}
.x18{left:152.771733pt;}
.x13{left:162.053333pt;}
.x17{left:167.889733pt;}
.x1c{left:179.055867pt;}
.x15{left:183.757733pt;}
.x19{left:198.137333pt;}
.x1d{left:200.765600pt;}
.x9{left:292.154000pt;}
.x8{left:341.606400pt;}
.x5{left:404.842933pt;}
.xc{left:407.125067pt;}
.x1e{left:412.810133pt;}
.x4{left:419.962933pt;}
.xb{left:446.527733pt;}
.x6{left:483.905867pt;}
.xf{left:555.334533pt;}
.x7{left:563.895867pt;}
.xd{left:572.554667pt;}
.x10{left:585.490267pt;}
.xe{left:589.067600pt;}
.x14{left:660.890667pt;}
}




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