
    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_055ed6dff6127f9acb216c94.woff2')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_4be67eeb1320a4c228210293.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958630;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_ad307197a479355264b61630.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e3392863b61f9227edf3a1ea.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973633;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_3c4abf643a88aa7a755dfaf7.woff2')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_9680d932d9f45916291d1418.woff2')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_f497f8c7930caa01dca6a406.woff2')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_07dd26372654749b5b434c1a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.964868;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_bcd3fad204c66ea58a1f34c2.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_50aacb7eec7854aa754b892d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f2803e2bcb8a82ef93f72322.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.961069;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_661017329db9907ba5ba8c0c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_4f72baed8d52a8919467dfb8.woff2')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_1ce60df286ba773f65fe12c4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.964844;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_50d02fb1903ffbc5391e5f19.woff2')format("woff");}.fff{font-family:fff;line-height:0.925781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_c7cdeb0575ecad28d527910b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.719727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_6b38a5edad7645f7427e2b88.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_84b10fa22db363fa7423a36d.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_bd413e1987abc20d36177ace.woff2')format("woff");}.ff13{font-family:ff13;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls8{letter-spacing:-1.200000px;}
.ls16{letter-spacing:-1.080000px;}
.ls17{letter-spacing:-1.026000px;}
.ls7{letter-spacing:-0.918000px;}
.ls5{letter-spacing:-0.691200px;}
.ls15{letter-spacing:-0.486000px;}
.ls4{letter-spacing:-0.480000px;}
.lsf{letter-spacing:-0.317167px;}
.ls6{letter-spacing:-0.300000px;}
.ls13{letter-spacing:-0.268892px;}
.ls10{letter-spacing:-0.263733px;}
.lsd{letter-spacing:-0.240000px;}
.ls3{letter-spacing:-0.204000px;}
.lsb{letter-spacing:-0.120000px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.158240px;}
.ls12{letter-spacing:0.192066px;}
.ls14{letter-spacing:0.192639px;}
.ls11{letter-spacing:0.210986px;}
.lsc{letter-spacing:0.420000px;}
.lsa{letter-spacing:6.060000px;}
.ls9{letter-spacing:6.900000px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.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;}
}
.ws5a{word-spacing:-60.000000px;}
.ws59{word-spacing:-59.760000px;}
.ws4{word-spacing:-17.928000px;}
.ws86{word-spacing:-16.434000px;}
.ws48{word-spacing:-15.360000px;}
.ws3{word-spacing:-14.940000px;}
.ws38{word-spacing:-14.880000px;}
.ws3d{word-spacing:-14.820000px;}
.ws5{word-spacing:-14.700000px;}
.ws54{word-spacing:-14.460000px;}
.ws6{word-spacing:-14.400000px;}
.ws33{word-spacing:-13.500000px;}
.ws8e{word-spacing:-13.392000px;}
.ws90{word-spacing:-13.230000px;}
.ws66{word-spacing:-13.215300px;}
.ws65{word-spacing:-13.186650px;}
.ws8f{word-spacing:-12.906000px;}
.ws7{word-spacing:-12.366000px;}
.ws99{word-spacing:-12.312000px;}
.wsa{word-spacing:-12.150000px;}
.ws39{word-spacing:-11.904000px;}
.ws67{word-spacing:-11.896650px;}
.ws8{word-spacing:-11.448000px;}
.ws9{word-spacing:-11.232000px;}
.wsb{word-spacing:-10.992000px;}
.ws1{word-spacing:-10.896000px;}
.ws1f{word-spacing:-10.800000px;}
.ws2{word-spacing:-9.892800px;}
.ws68{word-spacing:-9.631950px;}
.ws0{word-spacing:-9.618000px;}
.ws69{word-spacing:-9.603300px;}
.ws95{word-spacing:-4.050000px;}
.ws7f{word-spacing:-3.900000px;}
.ws11{word-spacing:-2.916000px;}
.ws5d{word-spacing:-2.880000px;}
.ws10{word-spacing:-2.862000px;}
.ws63{word-spacing:-2.760000px;}
.ws55{word-spacing:-2.430000px;}
.ws56{word-spacing:-2.376000px;}
.ws96{word-spacing:-2.214000px;}
.ws5c{word-spacing:-2.100000px;}
.ws64{word-spacing:-1.860000px;}
.ws16{word-spacing:-1.836000px;}
.ws87{word-spacing:-1.320000px;}
.ws28{word-spacing:-1.140000px;}
.ws12{word-spacing:-1.026000px;}
.ws7c{word-spacing:-1.020000px;}
.ws9c{word-spacing:-0.918000px;}
.ws3c{word-spacing:-0.912000px;}
.ws2a{word-spacing:-0.900000px;}
.ws70{word-spacing:-0.840000px;}
.ws6a{word-spacing:-0.780000px;}
.ws5b{word-spacing:-0.756000px;}
.ws4a{word-spacing:-0.420000px;}
.ws27{word-spacing:-0.300000px;}
.wse{word-spacing:-0.216000px;}
.ws76{word-spacing:-0.210986px;}
.ws79{word-spacing:-0.192639px;}
.ws77{word-spacing:-0.192066px;}
.ws98{word-spacing:-0.162000px;}
.ws73{word-spacing:-0.158240px;}
.wsc{word-spacing:0.000000px;}
.ws47{word-spacing:0.120000px;}
.wsd{word-spacing:0.204000px;}
.ws58{word-spacing:0.240000px;}
.ws75{word-spacing:0.263733px;}
.ws78{word-spacing:0.268892px;}
.ws57{word-spacing:0.300000px;}
.ws74{word-spacing:0.317167px;}
.ws94{word-spacing:0.486000px;}
.ws13{word-spacing:0.540000px;}
.ws19{word-spacing:0.600000px;}
.ws81{word-spacing:0.660000px;}
.wsf{word-spacing:0.691200px;}
.ws7b{word-spacing:0.720000px;}
.ws1a{word-spacing:0.840000px;}
.ws89{word-spacing:0.900000px;}
.ws1e{word-spacing:0.918000px;}
.ws9e{word-spacing:1.026000px;}
.ws3a{word-spacing:1.080000px;}
.ws34{word-spacing:1.188000px;}
.ws23{word-spacing:1.200000px;}
.ws24{word-spacing:1.260000px;}
.ws6f{word-spacing:1.320000px;}
.ws6e{word-spacing:1.380000px;}
.ws6b{word-spacing:1.500000px;}
.ws6c{word-spacing:1.560000px;}
.ws85{word-spacing:1.620000px;}
.ws35{word-spacing:1.890000px;}
.ws26{word-spacing:2.220000px;}
.ws25{word-spacing:2.280000px;}
.ws2d{word-spacing:2.460000px;}
.ws91{word-spacing:2.592000px;}
.ws60{word-spacing:2.640000px;}
.ws8b{word-spacing:2.820000px;}
.ws8a{word-spacing:2.880000px;}
.ws4b{word-spacing:3.000000px;}
.ws61{word-spacing:3.060000px;}
.ws22{word-spacing:3.120000px;}
.ws31{word-spacing:3.240000px;}
.ws29{word-spacing:3.480000px;}
.ws7a{word-spacing:3.618000px;}
.ws37{word-spacing:3.660000px;}
.ws41{word-spacing:3.780000px;}
.ws62{word-spacing:3.840000px;}
.ws42{word-spacing:3.900000px;}
.ws2c{word-spacing:4.020000px;}
.ws2b{word-spacing:4.080000px;}
.ws6d{word-spacing:4.140000px;}
.ws3f{word-spacing:4.200000px;}
.ws18{word-spacing:4.212000px;}
.ws17{word-spacing:4.266000px;}
.ws14{word-spacing:4.374000px;}
.ws46{word-spacing:4.380000px;}
.ws7e{word-spacing:4.440000px;}
.ws92{word-spacing:4.860000px;}
.ws88{word-spacing:4.920000px;}
.ws1b{word-spacing:4.980000px;}
.ws30{word-spacing:5.280000px;}
.ws2f{word-spacing:5.340000px;}
.ws9d{word-spacing:5.400000px;}
.ws97{word-spacing:5.616000px;}
.ws8d{word-spacing:5.820000px;}
.ws44{word-spacing:5.880000px;}
.ws40{word-spacing:6.000000px;}
.ws36{word-spacing:6.060000px;}
.ws5e{word-spacing:6.180000px;}
.ws49{word-spacing:6.360000px;}
.ws32{word-spacing:6.420000px;}
.ws1c{word-spacing:6.480000px;}
.ws84{word-spacing:6.780000px;}
.ws3b{word-spacing:6.840000px;}
.ws3e{word-spacing:6.900000px;}
.ws93{word-spacing:6.912000px;}
.ws7d{word-spacing:7.140000px;}
.ws43{word-spacing:7.500000px;}
.ws2e{word-spacing:7.680000px;}
.ws5f{word-spacing:7.920000px;}
.ws9a{word-spacing:8.046000px;}
.ws15{word-spacing:8.100000px;}
.ws45{word-spacing:8.460000px;}
.ws1d{word-spacing:8.520000px;}
.ws9b{word-spacing:8.532000px;}
.ws82{word-spacing:8.820000px;}
.ws83{word-spacing:8.880000px;}
.ws80{word-spacing:9.060000px;}
.ws21{word-spacing:9.120000px;}
.ws20{word-spacing:9.600000px;}
.ws9f{word-spacing:10.260000px;}
.ws71{word-spacing:11.880000px;}
.ws72{word-spacing:12.000000px;}
.ws8c{word-spacing:13.980000px;}
.ws4e{word-spacing:116.304000px;}
.ws52{word-spacing:173.760000px;}
.ws4f{word-spacing:187.248000px;}
.ws4d{word-spacing:192.864000px;}
.ws51{word-spacing:200.736000px;}
.ws4c{word-spacing:211.536000px;}
.ws50{word-spacing:214.224000px;}
.ws53{word-spacing:219.888000px;}
._d{margin-left:-11.369400px;}
._66{margin-left:-9.163800px;}
._2{margin-left:-6.497400px;}
._10{margin-left:-5.484000px;}
._3{margin-left:-4.029000px;}
._4{margin-left:-2.774400px;}
._1{margin-left:-1.254600px;}
._0{width:1.652400px;}
._6{width:3.002400px;}
._8{width:4.944000px;}
._9{width:6.426000px;}
._c{width:8.318400px;}
._3d{width:9.344400px;}
._7{width:10.422000px;}
._e{width:11.556000px;}
._f{width:13.179600px;}
._65{width:17.334000px;}
._a{width:19.320000px;}
._b{width:20.742000px;}
._67{width:23.734200px;}
._68{width:24.737400px;}
._5{width:36.369600px;}
._64{width:43.111800px;}
._44{width:185.664000px;}
._41{width:188.640000px;}
._3f{width:204.864000px;}
._46{width:212.640000px;}
._47{width:226.128000px;}
._43{width:231.792000px;}
._45{width:258.665400px;}
._52{width:272.256000px;}
._3e{width:322.653000px;}
._40{width:349.488000px;}
._28{width:366.390600px;}
._63{width:375.408000px;}
._62{width:384.528000px;}
._42{width:396.768000px;}
._1a{width:415.333800px;}
._26{width:421.573800px;}
._2b{width:425.893800px;}
._19{width:429.120000px;}
._12{width:436.512000px;}
._20{width:437.664000px;}
._59{width:454.758600px;}
._56{width:463.920000px;}
._29{width:487.014600px;}
._27{width:493.878600px;}
._2a{width:501.942600px;}
._57{width:508.278600px;}
._5a{width:533.616000px;}
._17{width:534.672000px;}
._21{width:540.528000px;}
._53{width:545.430600px;}
._1d{width:546.528000px;}
._61{width:553.056000px;}
._58{width:555.792000px;}
._5b{width:558.144000px;}
._18{width:560.784000px;}
._3c{width:569.904000px;}
._34{width:578.022600px;}
._30{width:582.864000px;}
._51{width:584.448000px;}
._1b{width:585.648000px;}
._2e{width:588.384000px;}
._54{width:594.672000px;}
._5e{width:607.872000px;}
._60{width:622.032000px;}
._55{width:626.496000px;}
._2f{width:628.422600px;}
._25{width:638.262600px;}
._24{width:643.542600px;}
._4c{width:646.406400px;}
._1e{width:648.720000px;}
._3a{width:653.129400px;}
._1f{width:656.722800px;}
._33{width:662.845200px;}
._11{width:672.144000px;}
._35{width:675.757200px;}
._14{width:677.389200px;}
._4b{width:684.960000px;}
._4f{width:686.160000px;}
._4d{width:694.128000px;}
._50{width:696.384000px;}
._1c{width:698.640000px;}
._38{width:700.077000px;}
._2d{width:706.992000px;}
._31{width:708.486600px;}
._37{width:713.136000px;}
._32{width:716.166600px;}
._16{width:718.320000px;}
._36{width:721.213200px;}
._4e{width:727.776000px;}
._22{width:742.752000px;}
._3b{width:747.462600px;}
._5c{width:765.648000px;}
._13{width:766.656000px;}
._5d{width:768.000000px;}
._5f{width:771.120000px;}
._48{width:777.264000px;}
._39{width:791.949000px;}
._4a{width:793.008000px;}
._49{width:801.792000px;}
._23{width:833.462400px;}
._15{width:904.800000px;}
._2c{width:921.120000px;}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc5{color:rgb(46,42,43);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:38.413200px;}
.fs3{font-size:38.478000px;}
.fse{font-size:38.527800px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fsb{font-size:47.586600px;}
.fs0{font-size:48.000000px;}
.fs9{font-size:52.746600px;}
.fsa{font-size:52.861200px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fsc{font-size:65.932800px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.yf6{bottom:4.117200px;}
.y1{bottom:68.124750px;}
.y3c{bottom:71.212050px;}
.y3d{bottom:75.040050px;}
.y16e{bottom:112.886700px;}
.y19a{bottom:113.036850px;}
.y145{bottom:113.054850px;}
.y6d{bottom:113.078700px;}
.ya6{bottom:113.078850px;}
.ye{bottom:117.205050px;}
.y2a{bottom:117.212700px;}
.y13a{bottom:120.496350px;}
.yd{bottom:131.601450px;}
.y16d{bottom:133.892700px;}
.y199{bottom:134.042850px;}
.y144{bottom:134.060850px;}
.y6c{bottom:134.078700px;}
.ya5{bottom:134.078850px;}
.y29{bottom:138.212700px;}
.y139{bottom:140.300850px;}
.yc{bottom:145.997850px;}
.y16c{bottom:154.898700px;}
.y198{bottom:155.048850px;}
.y143{bottom:155.066850px;}
.y6b{bottom:155.078700px;}
.ya4{bottom:155.078850px;}
.y28{bottom:159.212700px;}
.yb{bottom:160.397850px;}
.y16b{bottom:175.904700px;}
.y197{bottom:176.054850px;}
.y142{bottom:176.072850px;}
.y6a{bottom:176.078700px;}
.ya3{bottom:176.078850px;}
.y27{bottom:180.212700px;}
.y16a{bottom:196.910700px;}
.y196{bottom:197.060850px;}
.y69{bottom:197.078700px;}
.ya2{bottom:197.078850px;}
.y26{bottom:201.212700px;}
.y39{bottom:203.458800px;}
.y169{bottom:217.916700px;}
.y195{bottom:218.066850px;}
.y68{bottom:218.078700px;}
.ya1{bottom:218.078850px;}
.y38{bottom:221.454300px;}
.y25{bottom:222.212700px;}
.y141{bottom:223.529400px;}
.y168{bottom:238.922700px;}
.y194{bottom:239.072850px;}
.y67{bottom:239.078700px;}
.ya0{bottom:239.078850px;}
.y37{bottom:239.449800px;}
.y24{bottom:243.212700px;}
.y74{bottom:251.314950px;}
.y36{bottom:257.445300px;}
.y167{bottom:259.928700px;}
.y66{bottom:260.078700px;}
.y9f{bottom:260.078850px;}
.y23{bottom:264.212700px;}
.y35{bottom:275.440800px;}
.y166{bottom:280.934700px;}
.y65{bottom:281.078700px;}
.y9e{bottom:281.078850px;}
.y22{bottom:285.212700px;}
.y140{bottom:286.529400px;}
.y34{bottom:293.436300px;}
.y193{bottom:294.513600px;}
.yd0{bottom:299.907000px;}
.y165{bottom:301.940700px;}
.y64{bottom:302.078700px;}
.y9d{bottom:302.078850px;}
.y21{bottom:306.212700px;}
.y33{bottom:311.431800px;}
.y192{bottom:315.513600px;}
.ycf{bottom:319.959000px;}
.y164{bottom:322.946700px;}
.y63{bottom:323.078700px;}
.y9c{bottom:323.078850px;}
.y20{bottom:327.212700px;}
.y32{bottom:329.427300px;}
.y191{bottom:336.513600px;}
.yce{bottom:340.011000px;}
.y163{bottom:343.952700px;}
.y62{bottom:344.078700px;}
.y9b{bottom:344.078850px;}
.y1f{bottom:348.212700px;}
.y13f{bottom:349.529400px;}
.ycd{bottom:360.063000px;}
.y31{bottom:364.432800px;}
.y162{bottom:364.958700px;}
.y61{bottom:365.078700px;}
.y9a{bottom:365.078850px;}
.y190{bottom:368.811000px;}
.y1e{bottom:369.212700px;}
.ycc{bottom:380.115000px;}
.y30{bottom:382.428300px;}
.y161{bottom:385.964700px;}
.y60{bottom:386.078700px;}
.y99{bottom:386.078850px;}
.y1d{bottom:390.212700px;}
.ycb{bottom:400.167000px;}
.y2f{bottom:400.423800px;}
.y160{bottom:406.970700px;}
.y5f{bottom:407.078700px;}
.y98{bottom:407.078850px;}
.y13e{bottom:412.937100px;}
.yd5{bottom:418.587900px;}
.yca{bottom:420.219000px;}
.y1c{bottom:425.048550px;}
.y18f{bottom:427.880850px;}
.y15f{bottom:427.976700px;}
.y5e{bottom:428.078700px;}
.y97{bottom:428.078850px;}
.y2e{bottom:435.429300px;}
.yc9{bottom:440.271000px;}
.y13d{bottom:442.441050px;}
.y96{bottom:447.389100px;}
.y18e{bottom:448.886850px;}
.y15e{bottom:448.982700px;}
.y73{bottom:449.078700px;}
.y138{bottom:449.078850px;}
.y2d{bottom:453.429300px;}
.yc8{bottom:460.323000px;}
.y5d{bottom:463.440900px;}
.y117{bottom:463.478700px;}
.y95{bottom:467.441100px;}
.y18d{bottom:469.892850px;}
.y15d{bottom:469.988700px;}
.y72{bottom:470.078700px;}
.y137{bottom:470.078850px;}
.y2c{bottom:471.429300px;}
.ya7{bottom:477.586050px;}
.yc7{bottom:480.375000px;}
.y116{bottom:483.283200px;}
.y94{bottom:487.493100px;}
.y2b{bottom:489.429300px;}
.y18c{bottom:490.898850px;}
.y15c{bottom:490.994700px;}
.y71{bottom:491.078700px;}
.y136{bottom:491.078850px;}
.yc6{bottom:500.427000px;}
.y115{bottom:503.087700px;}
.y93{bottom:507.545100px;}
.y1b{bottom:509.823450px;}
.y18b{bottom:511.904850px;}
.y15b{bottom:512.000700px;}
.y5c{bottom:512.078700px;}
.y135{bottom:512.078850px;}
.yc5{bottom:520.479000px;}
.yd6{bottom:523.843500px;}
.y92{bottom:527.597100px;}
.y1a{bottom:529.627950px;}
.y18a{bottom:532.910850px;}
.y15a{bottom:533.006700px;}
.y5b{bottom:533.078700px;}
.y134{bottom:533.078850px;}
.yc4{bottom:540.531000px;}
.y91{bottom:547.649100px;}
.y189{bottom:553.916850px;}
.y159{bottom:554.012700px;}
.y5a{bottom:554.078700px;}
.y133{bottom:554.078850px;}
.yd4{bottom:557.434950px;}
.yc3{bottom:560.583000px;}
.y90{bottom:567.701100px;}
.yf5{bottom:567.835500px;}
.y19{bottom:570.651900px;}
.y188{bottom:574.922850px;}
.y158{bottom:575.018700px;}
.y59{bottom:575.078700px;}
.y132{bottom:575.078850px;}
.yd3{bottom:577.239450px;}
.yf7{bottom:578.671800px;}
.yc2{bottom:580.635000px;}
.y114{bottom:585.322950px;}
.yf4{bottom:586.583700px;}
.y8f{bottom:587.753100px;}
.y18{bottom:590.456400px;}
.y187{bottom:595.928850px;}
.y157{bottom:596.024700px;}
.y58{bottom:596.078700px;}
.y131{bottom:596.078850px;}
.yd2{bottom:597.043950px;}
.yc1{bottom:600.687000px;}
.yd7{bottom:605.079600px;}
.yf3{bottom:605.359950px;}
.y8e{bottom:607.805100px;}
.y17{bottom:610.260900px;}
.y13c{bottom:610.441050px;}
.yd1{bottom:616.848450px;}
.y186{bottom:616.934850px;}
.y156{bottom:617.030700px;}
.y57{bottom:617.078700px;}
.y130{bottom:617.078850px;}
.y70{bottom:617.927100px;}
.yc0{bottom:621.171000px;}
.yf2{bottom:623.907600px;}
.y113{bottom:627.362447px;}
.y8d{bottom:627.857100px;}
.y16{bottom:630.065400px;}
.y6f{bottom:637.731600px;}
.y185{bottom:637.940850px;}
.y155{bottom:638.036700px;}
.y56{bottom:638.078700px;}
.y12f{bottom:638.078850px;}
.y112{bottom:641.412075px;}
.ybf{bottom:641.655000px;}
.yf1{bottom:642.679200px;}
.y8c{bottom:647.909100px;}
.y15{bottom:649.869900px;}
.y6e{bottom:657.536100px;}
.y184{bottom:658.946850px;}
.y154{bottom:659.042700px;}
.y55{bottom:659.078700px;}
.y12e{bottom:659.078850px;}
.yf0{bottom:661.455450px;}
.ybe{bottom:662.139000px;}
.y8b{bottom:667.961100px;}
.y14{bottom:669.674400px;}
.y183{bottom:679.952850px;}
.y153{bottom:680.048700px;}
.y54{bottom:680.078700px;}
.y12d{bottom:680.078850px;}
.yef{bottom:680.208300px;}
.ybd{bottom:682.623000px;}
.y10e{bottom:683.407306px;}
.y8a{bottom:688.013100px;}
.y13{bottom:689.478900px;}
.y10d{bottom:697.562570px;}
.yee{bottom:698.781600px;}
.y182{bottom:700.958850px;}
.y152{bottom:701.054700px;}
.y53{bottom:701.078700px;}
.y12c{bottom:701.078850px;}
.ybc{bottom:703.107000px;}
.y10f{bottom:703.679872px;}
.y89{bottom:708.065100px;}
.y12{bottom:709.283400px;}
.y111{bottom:710.440595px;}
.yed{bottom:717.534450px;}
.y181{bottom:721.964850px;}
.y151{bottom:722.060700px;}
.y52{bottom:722.078700px;}
.y12b{bottom:722.078850px;}
.ybb{bottom:723.591000px;}
.y88{bottom:728.117100px;}
.y11{bottom:729.087900px;}
.y10b{bottom:735.236316px;}
.yec{bottom:736.310700px;}
.y180{bottom:742.970850px;}
.y150{bottom:743.066700px;}
.y51{bottom:743.078700px;}
.y12a{bottom:743.078850px;}
.yba{bottom:744.075000px;}
.y87{bottom:748.169100px;}
.yeb{bottom:754.860600px;}
.y10c{bottom:756.363576px;}
.y10{bottom:760.185300px;}
.y17f{bottom:763.976850px;}
.y14f{bottom:764.072700px;}
.y50{bottom:764.078700px;}
.y129{bottom:764.078850px;}
.yb9{bottom:764.559000px;}
.y86{bottom:768.221100px;}
.yea{bottom:773.636850px;}
.y10a{bottom:777.317977px;}
.y13b{bottom:778.441050px;}
.y17e{bottom:784.982850px;}
.yb8{bottom:785.043000px;}
.y4f{bottom:785.078700px;}
.y128{bottom:785.078850px;}
.y85{bottom:788.273100px;}
.y109{bottom:791.281175px;}
.ye9{bottom:792.414300px;}
.y110{bottom:793.163422px;}
.yb7{bottom:805.527000px;}
.y17d{bottom:805.988850px;}
.y4e{bottom:806.078700px;}
.y127{bottom:806.078850px;}
.y84{bottom:808.325100px;}
.ye8{bottom:811.190550px;}
.y14e{bottom:820.440900px;}
.yb6{bottom:826.011000px;}
.y17c{bottom:826.994850px;}
.y4d{bottom:827.078700px;}
.y126{bottom:827.078850px;}
.y83{bottom:828.377100px;}
.ye7{bottom:829.728750px;}
.ya{bottom:839.466750px;}
.yb5{bottom:846.495000px;}
.y17b{bottom:848.000850px;}
.y4c{bottom:848.078700px;}
.y125{bottom:848.078850px;}
.y82{bottom:848.429100px;}
.ye6{bottom:848.481150px;}
.y106{bottom:852.137287px;}
.y9{bottom:857.466750px;}
.y105{bottom:866.302154px;}
.y108{bottom:866.878352px;}
.yb4{bottom:866.979000px;}
.ye5{bottom:867.257400px;}
.y81{bottom:868.481100px;}
.y17a{bottom:869.006850px;}
.y14d{bottom:869.072700px;}
.y4b{bottom:869.078700px;}
.y124{bottom:869.078850px;}
.y8{bottom:875.466750px;}
.ye4{bottom:885.807300px;}
.yb3{bottom:887.463000px;}
.y80{bottom:888.533100px;}
.y179{bottom:890.012850px;}
.y4a{bottom:890.078700px;}
.y123{bottom:890.078850px;}
.y7{bottom:893.466750px;}
.y102{bottom:903.447719px;}
.ye3{bottom:904.583550px;}
.yb2{bottom:907.947000px;}
.y7f{bottom:908.585100px;}
.y178{bottom:911.018850px;}
.y49{bottom:911.078700px;}
.y122{bottom:911.078850px;}
.y6{bottom:911.466750px;}
.y107{bottom:913.463961px;}
.y14c{bottom:916.529250px;}
.y103{bottom:922.164551px;}
.ye2{bottom:923.360250px;}
.yb1{bottom:928.431000px;}
.y7e{bottom:928.637100px;}
.y177{bottom:932.024850px;}
.y48{bottom:932.078700px;}
.y121{bottom:932.078850px;}
.y101{bottom:941.227101px;}
.ye1{bottom:941.909700px;}
.y5{bottom:946.474800px;}
.y7d{bottom:948.689100px;}
.yb0{bottom:948.915000px;}
.y176{bottom:953.030850px;}
.y14b{bottom:953.072700px;}
.y47{bottom:953.078700px;}
.y120{bottom:953.078850px;}
.ye0{bottom:960.686400px;}
.y7c{bottom:968.741100px;}
.yaf{bottom:969.399000px;}
.y175{bottom:974.036850px;}
.y14a{bottom:974.072700px;}
.y46{bottom:974.078700px;}
.y11f{bottom:974.078850px;}
.y104{bottom:976.010254px;}
.ydf{bottom:979.427250px;}
.y100{bottom:983.222332px;}
.y4{bottom:983.288550px;}
.y7b{bottom:988.793100px;}
.yae{bottom:989.883000px;}
.y174{bottom:995.042850px;}
.y45{bottom:995.078700px;}
.y11e{bottom:995.078850px;}
.yff{bottom:997.416009px;}
.yde{bottom:998.203350px;}
.y7a{bottom:1008.845100px;}
.yad{bottom:1010.367000px;}
.y173{bottom:1016.048850px;}
.y44{bottom:1016.078700px;}
.y11d{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.ydd{bottom:1016.753400px;}
.y149{bottom:1021.529250px;}
.yfc{bottom:1023.076027px;}
.y79{bottom:1028.897100px;}
.yfe{bottom:1029.010866px;}
.yac{bottom:1030.851000px;}
.ydc{bottom:1035.529500px;}
.y172{bottom:1037.054850px;}
.y43{bottom:1037.078700px;}
.y11c{bottom:1037.078850px;}
.y78{bottom:1048.949100px;}
.y2{bottom:1049.282550px;}
.yab{bottom:1049.631000px;}
.yfb{bottom:1053.585711px;}
.ydb{bottom:1054.306350px;}
.y171{bottom:1058.060850px;}
.y148{bottom:1058.066700px;}
.y42{bottom:1058.078700px;}
.y11b{bottom:1058.078850px;}
.yaa{bottom:1068.411000px;}
.y77{bottom:1069.001100px;}
.yda{bottom:1072.855650px;}
.yfd{bottom:1074.712971px;}
.y170{bottom:1079.066850px;}
.y147{bottom:1079.072700px;}
.y41{bottom:1079.078700px;}
.y11a{bottom:1079.078850px;}
.yf9{bottom:1090.939650px;}
.yd9{bottom:1091.632500px;}
.ya9{bottom:1098.888450px;}
.y76{bottom:1099.478400px;}
.y16f{bottom:1100.072850px;}
.y40{bottom:1100.078700px;}
.y119{bottom:1100.078850px;}
.yfa{bottom:1109.572950px;}
.yf{bottom:1109.815500px;}
.yd8{bottom:1110.373200px;}
.ya8{bottom:1118.692950px;}
.y75{bottom:1119.282900px;}
.y3f{bottom:1121.078700px;}
.y118{bottom:1121.078850px;}
.y146{bottom:1125.451650px;}
.yf8{bottom:1128.492750px;}
.y3b{bottom:1159.189500px;}
.y3a{bottom:1178.689500px;}
.y3e{bottom:1178.692050px;}
.h1d{height:26.671665px;}
.h1e{height:26.751236px;}
.h1b{height:33.041087px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h15{height:36.492188px;}
.h19{height:36.623860px;}
.h1a{height:36.703431px;}
.h16{height:37.875000px;}
.h13{height:38.226562px;}
.h11{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h14{height:39.000000px;}
.hc{height:41.053711px;}
.ha{height:42.609375px;}
.h8{height:43.004883px;}
.h10{height:43.057617px;}
.hf{height:43.321289px;}
.hb{height:43.875000px;}
.h20{height:43.899000px;}
.h12{height:45.615234px;}
.h1c{height:45.779513px;}
.h9{height:47.343750px;}
.he{height:48.750000px;}
.h17{height:49.453125px;}
.h4{height:51.231050px;}
.h1f{height:52.078125px;}
.hd{height:56.812500px;}
.h3{height:81.231445px;}
.h18{height:618.235500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:710.929500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:51.427950px;}
.x2{left:73.984200px;}
.xa{left:107.063850px;}
.xc{left:108.289650px;}
.xe{left:112.261950px;}
.x5{left:119.878950px;}
.x6{left:122.032500px;}
.x7{left:124.102950px;}
.x11{left:162.324750px;}
.x40{left:182.360873px;}
.x3f{left:206.407536px;}
.xd{left:209.341950px;}
.x3b{left:219.391198px;}
.x3e{left:221.398288px;}
.x3a{left:232.979867px;}
.x2a{left:234.395100px;}
.x29{left:248.871900px;}
.x39{left:287.363355px;}
.x38{left:292.866046px;}
.x4{left:300.189000px;}
.x41{left:309.095623px;}
.xb{left:317.199000px;}
.x24{left:345.191550px;}
.x25{left:352.811850px;}
.x10{left:358.464750px;}
.xf{left:372.336750px;}
.x1e{left:384.344850px;}
.x1f{left:390.532200px;}
.x28{left:392.658000px;}
.x3{left:396.050700px;}
.x37{left:397.119471px;}
.x26{left:403.492050px;}
.x33{left:407.049283px;}
.x1d{left:412.891800px;}
.x12{left:413.968200px;}
.x32{left:419.437540px;}
.x2f{left:427.177800px;}
.x36{left:443.474600px;}
.x31{left:452.943454px;}
.x27{left:455.497950px;}
.x2c{left:458.591250px;}
.x34{left:472.054021px;}
.x3d{left:476.154630px;}
.x30{left:478.027273px;}
.x2d{left:479.171400px;}
.x35{left:485.613881px;}
.x23{left:488.523900px;}
.x3c{left:498.837625px;}
.x2e{left:500.790300px;}
.x22{left:508.100400px;}
.x1b{left:512.998200px;}
.x17{left:515.757000px;}
.x18{left:518.993700px;}
.x16{left:522.827850px;}
.x13{left:524.691900px;}
.x1c{left:528.991350px;}
.x21{left:563.714100px;}
.x1a{left:566.687250px;}
.x19{left:572.456550px;}
.x15{left:577.532850px;}
.x20{left:584.807850px;}
.x14{left:597.600300px;}
.x9{left:648.907800px;}
.x8{left:669.715800px;}
.x1{left:801.157500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls8{letter-spacing:-1.066667pt;}
.ls16{letter-spacing:-0.960000pt;}
.ls17{letter-spacing:-0.912000pt;}
.ls7{letter-spacing:-0.816000pt;}
.ls5{letter-spacing:-0.614400pt;}
.ls15{letter-spacing:-0.432000pt;}
.ls4{letter-spacing:-0.426667pt;}
.lsf{letter-spacing:-0.281926pt;}
.ls6{letter-spacing:-0.266667pt;}
.ls13{letter-spacing:-0.239015pt;}
.ls10{letter-spacing:-0.234429pt;}
.lsd{letter-spacing:-0.213333pt;}
.ls3{letter-spacing:-0.181333pt;}
.lsb{letter-spacing:-0.106667pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.140658pt;}
.ls12{letter-spacing:0.170725pt;}
.ls14{letter-spacing:0.171235pt;}
.ls11{letter-spacing:0.187543pt;}
.lsc{letter-spacing:0.373333pt;}
.lsa{letter-spacing:5.386667pt;}
.ls9{letter-spacing:6.133333pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.ws5a{word-spacing:-53.333333pt;}
.ws59{word-spacing:-53.120000pt;}
.ws4{word-spacing:-15.936000pt;}
.ws86{word-spacing:-14.608000pt;}
.ws48{word-spacing:-13.653333pt;}
.ws3{word-spacing:-13.280000pt;}
.ws38{word-spacing:-13.226667pt;}
.ws3d{word-spacing:-13.173333pt;}
.ws5{word-spacing:-13.066667pt;}
.ws54{word-spacing:-12.853333pt;}
.ws6{word-spacing:-12.800000pt;}
.ws33{word-spacing:-12.000000pt;}
.ws8e{word-spacing:-11.904000pt;}
.ws90{word-spacing:-11.760000pt;}
.ws66{word-spacing:-11.746933pt;}
.ws65{word-spacing:-11.721467pt;}
.ws8f{word-spacing:-11.472000pt;}
.ws7{word-spacing:-10.992000pt;}
.ws99{word-spacing:-10.944000pt;}
.wsa{word-spacing:-10.800000pt;}
.ws39{word-spacing:-10.581333pt;}
.ws67{word-spacing:-10.574800pt;}
.ws8{word-spacing:-10.176000pt;}
.ws9{word-spacing:-9.984000pt;}
.wsb{word-spacing:-9.770667pt;}
.ws1{word-spacing:-9.685333pt;}
.ws1f{word-spacing:-9.600000pt;}
.ws2{word-spacing:-8.793600pt;}
.ws68{word-spacing:-8.561733pt;}
.ws0{word-spacing:-8.549333pt;}
.ws69{word-spacing:-8.536267pt;}
.ws95{word-spacing:-3.600000pt;}
.ws7f{word-spacing:-3.466667pt;}
.ws11{word-spacing:-2.592000pt;}
.ws5d{word-spacing:-2.560000pt;}
.ws10{word-spacing:-2.544000pt;}
.ws63{word-spacing:-2.453333pt;}
.ws55{word-spacing:-2.160000pt;}
.ws56{word-spacing:-2.112000pt;}
.ws96{word-spacing:-1.968000pt;}
.ws5c{word-spacing:-1.866667pt;}
.ws64{word-spacing:-1.653333pt;}
.ws16{word-spacing:-1.632000pt;}
.ws87{word-spacing:-1.173333pt;}
.ws28{word-spacing:-1.013333pt;}
.ws12{word-spacing:-0.912000pt;}
.ws7c{word-spacing:-0.906667pt;}
.ws9c{word-spacing:-0.816000pt;}
.ws3c{word-spacing:-0.810667pt;}
.ws2a{word-spacing:-0.800000pt;}
.ws70{word-spacing:-0.746667pt;}
.ws6a{word-spacing:-0.693333pt;}
.ws5b{word-spacing:-0.672000pt;}
.ws4a{word-spacing:-0.373333pt;}
.ws27{word-spacing:-0.266667pt;}
.wse{word-spacing:-0.192000pt;}
.ws76{word-spacing:-0.187543pt;}
.ws79{word-spacing:-0.171235pt;}
.ws77{word-spacing:-0.170725pt;}
.ws98{word-spacing:-0.144000pt;}
.ws73{word-spacing:-0.140658pt;}
.wsc{word-spacing:0.000000pt;}
.ws47{word-spacing:0.106667pt;}
.wsd{word-spacing:0.181333pt;}
.ws58{word-spacing:0.213333pt;}
.ws75{word-spacing:0.234429pt;}
.ws78{word-spacing:0.239015pt;}
.ws57{word-spacing:0.266667pt;}
.ws74{word-spacing:0.281926pt;}
.ws94{word-spacing:0.432000pt;}
.ws13{word-spacing:0.480000pt;}
.ws19{word-spacing:0.533333pt;}
.ws81{word-spacing:0.586667pt;}
.wsf{word-spacing:0.614400pt;}
.ws7b{word-spacing:0.640000pt;}
.ws1a{word-spacing:0.746667pt;}
.ws89{word-spacing:0.800000pt;}
.ws1e{word-spacing:0.816000pt;}
.ws9e{word-spacing:0.912000pt;}
.ws3a{word-spacing:0.960000pt;}
.ws34{word-spacing:1.056000pt;}
.ws23{word-spacing:1.066667pt;}
.ws24{word-spacing:1.120000pt;}
.ws6f{word-spacing:1.173333pt;}
.ws6e{word-spacing:1.226667pt;}
.ws6b{word-spacing:1.333333pt;}
.ws6c{word-spacing:1.386667pt;}
.ws85{word-spacing:1.440000pt;}
.ws35{word-spacing:1.680000pt;}
.ws26{word-spacing:1.973333pt;}
.ws25{word-spacing:2.026667pt;}
.ws2d{word-spacing:2.186667pt;}
.ws91{word-spacing:2.304000pt;}
.ws60{word-spacing:2.346667pt;}
.ws8b{word-spacing:2.506667pt;}
.ws8a{word-spacing:2.560000pt;}
.ws4b{word-spacing:2.666667pt;}
.ws61{word-spacing:2.720000pt;}
.ws22{word-spacing:2.773333pt;}
.ws31{word-spacing:2.880000pt;}
.ws29{word-spacing:3.093333pt;}
.ws7a{word-spacing:3.216000pt;}
.ws37{word-spacing:3.253333pt;}
.ws41{word-spacing:3.360000pt;}
.ws62{word-spacing:3.413333pt;}
.ws42{word-spacing:3.466667pt;}
.ws2c{word-spacing:3.573333pt;}
.ws2b{word-spacing:3.626667pt;}
.ws6d{word-spacing:3.680000pt;}
.ws3f{word-spacing:3.733333pt;}
.ws18{word-spacing:3.744000pt;}
.ws17{word-spacing:3.792000pt;}
.ws14{word-spacing:3.888000pt;}
.ws46{word-spacing:3.893333pt;}
.ws7e{word-spacing:3.946667pt;}
.ws92{word-spacing:4.320000pt;}
.ws88{word-spacing:4.373333pt;}
.ws1b{word-spacing:4.426667pt;}
.ws30{word-spacing:4.693333pt;}
.ws2f{word-spacing:4.746667pt;}
.ws9d{word-spacing:4.800000pt;}
.ws97{word-spacing:4.992000pt;}
.ws8d{word-spacing:5.173333pt;}
.ws44{word-spacing:5.226667pt;}
.ws40{word-spacing:5.333333pt;}
.ws36{word-spacing:5.386667pt;}
.ws5e{word-spacing:5.493333pt;}
.ws49{word-spacing:5.653333pt;}
.ws32{word-spacing:5.706667pt;}
.ws1c{word-spacing:5.760000pt;}
.ws84{word-spacing:6.026667pt;}
.ws3b{word-spacing:6.080000pt;}
.ws3e{word-spacing:6.133333pt;}
.ws93{word-spacing:6.144000pt;}
.ws7d{word-spacing:6.346667pt;}
.ws43{word-spacing:6.666667pt;}
.ws2e{word-spacing:6.826667pt;}
.ws5f{word-spacing:7.040000pt;}
.ws9a{word-spacing:7.152000pt;}
.ws15{word-spacing:7.200000pt;}
.ws45{word-spacing:7.520000pt;}
.ws1d{word-spacing:7.573333pt;}
.ws9b{word-spacing:7.584000pt;}
.ws82{word-spacing:7.840000pt;}
.ws83{word-spacing:7.893333pt;}
.ws80{word-spacing:8.053333pt;}
.ws21{word-spacing:8.106667pt;}
.ws20{word-spacing:8.533333pt;}
.ws9f{word-spacing:9.120000pt;}
.ws71{word-spacing:10.560000pt;}
.ws72{word-spacing:10.666667pt;}
.ws8c{word-spacing:12.426667pt;}
.ws4e{word-spacing:103.381333pt;}
.ws52{word-spacing:154.453333pt;}
.ws4f{word-spacing:166.442667pt;}
.ws4d{word-spacing:171.434667pt;}
.ws51{word-spacing:178.432000pt;}
.ws4c{word-spacing:188.032000pt;}
.ws50{word-spacing:190.421333pt;}
.ws53{word-spacing:195.456000pt;}
._d{margin-left:-10.106133pt;}
._66{margin-left:-8.145600pt;}
._2{margin-left:-5.775467pt;}
._10{margin-left:-4.874667pt;}
._3{margin-left:-3.581333pt;}
._4{margin-left:-2.466133pt;}
._1{margin-left:-1.115200pt;}
._0{width:1.468800pt;}
._6{width:2.668800pt;}
._8{width:4.394667pt;}
._9{width:5.712000pt;}
._c{width:7.394133pt;}
._3d{width:8.306133pt;}
._7{width:9.264000pt;}
._e{width:10.272000pt;}
._f{width:11.715200pt;}
._65{width:15.408000pt;}
._a{width:17.173333pt;}
._b{width:18.437333pt;}
._67{width:21.097067pt;}
._68{width:21.988800pt;}
._5{width:32.328533pt;}
._64{width:38.321600pt;}
._44{width:165.034667pt;}
._41{width:167.680000pt;}
._3f{width:182.101333pt;}
._46{width:189.013333pt;}
._47{width:201.002667pt;}
._43{width:206.037333pt;}
._45{width:229.924800pt;}
._52{width:242.005333pt;}
._3e{width:286.802667pt;}
._40{width:310.656000pt;}
._28{width:325.680533pt;}
._63{width:333.696000pt;}
._62{width:341.802667pt;}
._42{width:352.682667pt;}
._1a{width:369.185600pt;}
._26{width:374.732267pt;}
._2b{width:378.572267pt;}
._19{width:381.440000pt;}
._12{width:388.010667pt;}
._20{width:389.034667pt;}
._59{width:404.229867pt;}
._56{width:412.373333pt;}
._29{width:432.901867pt;}
._27{width:439.003200pt;}
._2a{width:446.171200pt;}
._57{width:451.803200pt;}
._5a{width:474.325333pt;}
._17{width:475.264000pt;}
._21{width:480.469333pt;}
._53{width:484.827200pt;}
._1d{width:485.802667pt;}
._61{width:491.605333pt;}
._58{width:494.037333pt;}
._5b{width:496.128000pt;}
._18{width:498.474667pt;}
._3c{width:506.581333pt;}
._34{width:513.797867pt;}
._30{width:518.101333pt;}
._51{width:519.509333pt;}
._1b{width:520.576000pt;}
._2e{width:523.008000pt;}
._54{width:528.597333pt;}
._5e{width:540.330667pt;}
._60{width:552.917333pt;}
._55{width:556.885333pt;}
._2f{width:558.597867pt;}
._25{width:567.344533pt;}
._24{width:572.037867pt;}
._4c{width:574.583467pt;}
._1e{width:576.640000pt;}
._3a{width:580.559467pt;}
._1f{width:583.753600pt;}
._33{width:589.195733pt;}
._11{width:597.461333pt;}
._35{width:600.673067pt;}
._14{width:602.123733pt;}
._4b{width:608.853333pt;}
._4f{width:609.920000pt;}
._4d{width:617.002667pt;}
._50{width:619.008000pt;}
._1c{width:621.013333pt;}
._38{width:622.290667pt;}
._2d{width:628.437333pt;}
._31{width:629.765867pt;}
._37{width:633.898667pt;}
._32{width:636.592533pt;}
._16{width:638.506667pt;}
._36{width:641.078400pt;}
._4e{width:646.912000pt;}
._22{width:660.224000pt;}
._3b{width:664.411200pt;}
._5c{width:680.576000pt;}
._13{width:681.472000pt;}
._5d{width:682.666667pt;}
._5f{width:685.440000pt;}
._48{width:690.901333pt;}
._39{width:703.954667pt;}
._4a{width:704.896000pt;}
._49{width:712.704000pt;}
._23{width:740.855467pt;}
._15{width:804.266667pt;}
._2c{width:818.773333pt;}
.fsd{font-size:34.145067pt;}
.fs3{font-size:34.202667pt;}
.fse{font-size:34.246933pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fsb{font-size:42.299200pt;}
.fs0{font-size:42.666667pt;}
.fs9{font-size:46.885867pt;}
.fsa{font-size:46.987733pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fsc{font-size:58.606933pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.yf6{bottom:3.659733pt;}
.y1{bottom:60.555333pt;}
.y3c{bottom:63.299600pt;}
.y3d{bottom:66.702267pt;}
.y16e{bottom:100.343733pt;}
.y19a{bottom:100.477200pt;}
.y145{bottom:100.493200pt;}
.y6d{bottom:100.514400pt;}
.ya6{bottom:100.514533pt;}
.ye{bottom:104.182267pt;}
.y2a{bottom:104.189067pt;}
.y13a{bottom:107.107867pt;}
.yd{bottom:116.979067pt;}
.y16d{bottom:119.015733pt;}
.y199{bottom:119.149200pt;}
.y144{bottom:119.165200pt;}
.y6c{bottom:119.181067pt;}
.ya5{bottom:119.181200pt;}
.y29{bottom:122.855733pt;}
.y139{bottom:124.711867pt;}
.yc{bottom:129.775867pt;}
.y16c{bottom:137.687733pt;}
.y198{bottom:137.821200pt;}
.y143{bottom:137.837200pt;}
.y6b{bottom:137.847733pt;}
.ya4{bottom:137.847867pt;}
.y28{bottom:141.522400pt;}
.yb{bottom:142.575867pt;}
.y16b{bottom:156.359733pt;}
.y197{bottom:156.493200pt;}
.y142{bottom:156.509200pt;}
.y6a{bottom:156.514400pt;}
.ya3{bottom:156.514533pt;}
.y27{bottom:160.189067pt;}
.y16a{bottom:175.031733pt;}
.y196{bottom:175.165200pt;}
.y69{bottom:175.181067pt;}
.ya2{bottom:175.181200pt;}
.y26{bottom:178.855733pt;}
.y39{bottom:180.852267pt;}
.y169{bottom:193.703733pt;}
.y195{bottom:193.837200pt;}
.y68{bottom:193.847733pt;}
.ya1{bottom:193.847867pt;}
.y38{bottom:196.848267pt;}
.y25{bottom:197.522400pt;}
.y141{bottom:198.692800pt;}
.y168{bottom:212.375733pt;}
.y194{bottom:212.509200pt;}
.y67{bottom:212.514400pt;}
.ya0{bottom:212.514533pt;}
.y37{bottom:212.844267pt;}
.y24{bottom:216.189067pt;}
.y74{bottom:223.391067pt;}
.y36{bottom:228.840267pt;}
.y167{bottom:231.047733pt;}
.y66{bottom:231.181067pt;}
.y9f{bottom:231.181200pt;}
.y23{bottom:234.855733pt;}
.y35{bottom:244.836267pt;}
.y166{bottom:249.719733pt;}
.y65{bottom:249.847733pt;}
.y9e{bottom:249.847867pt;}
.y22{bottom:253.522400pt;}
.y140{bottom:254.692800pt;}
.y34{bottom:260.832267pt;}
.y193{bottom:261.789867pt;}
.yd0{bottom:266.584000pt;}
.y165{bottom:268.391733pt;}
.y64{bottom:268.514400pt;}
.y9d{bottom:268.514533pt;}
.y21{bottom:272.189067pt;}
.y33{bottom:276.828267pt;}
.y192{bottom:280.456533pt;}
.ycf{bottom:284.408000pt;}
.y164{bottom:287.063733pt;}
.y63{bottom:287.181067pt;}
.y9c{bottom:287.181200pt;}
.y20{bottom:290.855733pt;}
.y32{bottom:292.824267pt;}
.y191{bottom:299.123200pt;}
.yce{bottom:302.232000pt;}
.y163{bottom:305.735733pt;}
.y62{bottom:305.847733pt;}
.y9b{bottom:305.847867pt;}
.y1f{bottom:309.522400pt;}
.y13f{bottom:310.692800pt;}
.ycd{bottom:320.056000pt;}
.y31{bottom:323.940267pt;}
.y162{bottom:324.407733pt;}
.y61{bottom:324.514400pt;}
.y9a{bottom:324.514533pt;}
.y190{bottom:327.832000pt;}
.y1e{bottom:328.189067pt;}
.ycc{bottom:337.880000pt;}
.y30{bottom:339.936267pt;}
.y161{bottom:343.079733pt;}
.y60{bottom:343.181067pt;}
.y99{bottom:343.181200pt;}
.y1d{bottom:346.855733pt;}
.ycb{bottom:355.704000pt;}
.y2f{bottom:355.932267pt;}
.y160{bottom:361.751733pt;}
.y5f{bottom:361.847733pt;}
.y98{bottom:361.847867pt;}
.y13e{bottom:367.055200pt;}
.yd5{bottom:372.078133pt;}
.yca{bottom:373.528000pt;}
.y1c{bottom:377.820933pt;}
.y18f{bottom:380.338533pt;}
.y15f{bottom:380.423733pt;}
.y5e{bottom:380.514400pt;}
.y97{bottom:380.514533pt;}
.y2e{bottom:387.048267pt;}
.yc9{bottom:391.352000pt;}
.y13d{bottom:393.280933pt;}
.y96{bottom:397.679200pt;}
.y18e{bottom:399.010533pt;}
.y15e{bottom:399.095733pt;}
.y73{bottom:399.181067pt;}
.y138{bottom:399.181200pt;}
.y2d{bottom:403.048267pt;}
.yc8{bottom:409.176000pt;}
.y5d{bottom:411.947467pt;}
.y117{bottom:411.981067pt;}
.y95{bottom:415.503200pt;}
.y18d{bottom:417.682533pt;}
.y15d{bottom:417.767733pt;}
.y72{bottom:417.847733pt;}
.y137{bottom:417.847867pt;}
.y2c{bottom:419.048267pt;}
.ya7{bottom:424.520933pt;}
.yc7{bottom:427.000000pt;}
.y116{bottom:429.585067pt;}
.y94{bottom:433.327200pt;}
.y2b{bottom:435.048267pt;}
.y18c{bottom:436.354533pt;}
.y15c{bottom:436.439733pt;}
.y71{bottom:436.514400pt;}
.y136{bottom:436.514533pt;}
.yc6{bottom:444.824000pt;}
.y115{bottom:447.189067pt;}
.y93{bottom:451.151200pt;}
.y1b{bottom:453.176400pt;}
.y18b{bottom:455.026533pt;}
.y15b{bottom:455.111733pt;}
.y5c{bottom:455.181067pt;}
.y135{bottom:455.181200pt;}
.yc5{bottom:462.648000pt;}
.yd6{bottom:465.638667pt;}
.y92{bottom:468.975200pt;}
.y1a{bottom:470.780400pt;}
.y18a{bottom:473.698533pt;}
.y15a{bottom:473.783733pt;}
.y5b{bottom:473.847733pt;}
.y134{bottom:473.847867pt;}
.yc4{bottom:480.472000pt;}
.y91{bottom:486.799200pt;}
.y189{bottom:492.370533pt;}
.y159{bottom:492.455733pt;}
.y5a{bottom:492.514400pt;}
.y133{bottom:492.514533pt;}
.yd4{bottom:495.497733pt;}
.yc3{bottom:498.296000pt;}
.y90{bottom:504.623200pt;}
.yf5{bottom:504.742667pt;}
.y19{bottom:507.246133pt;}
.y188{bottom:511.042533pt;}
.y158{bottom:511.127733pt;}
.y59{bottom:511.181067pt;}
.y132{bottom:511.181200pt;}
.yd3{bottom:513.101733pt;}
.yf7{bottom:514.374933pt;}
.yc2{bottom:516.120000pt;}
.y114{bottom:520.287067pt;}
.yf4{bottom:521.407733pt;}
.y8f{bottom:522.447200pt;}
.y18{bottom:524.850133pt;}
.y187{bottom:529.714533pt;}
.y157{bottom:529.799733pt;}
.y58{bottom:529.847733pt;}
.y131{bottom:529.847867pt;}
.yd2{bottom:530.705733pt;}
.yc1{bottom:533.944000pt;}
.yd7{bottom:537.848533pt;}
.yf3{bottom:538.097733pt;}
.y8e{bottom:540.271200pt;}
.y17{bottom:542.454133pt;}
.y13c{bottom:542.614267pt;}
.yd1{bottom:548.309733pt;}
.y186{bottom:548.386533pt;}
.y156{bottom:548.471733pt;}
.y57{bottom:548.514400pt;}
.y130{bottom:548.514533pt;}
.y70{bottom:549.268533pt;}
.yc0{bottom:552.152000pt;}
.yf2{bottom:554.584533pt;}
.y113{bottom:557.655509pt;}
.y8d{bottom:558.095200pt;}
.y16{bottom:560.058133pt;}
.y6f{bottom:566.872533pt;}
.y185{bottom:567.058533pt;}
.y155{bottom:567.143733pt;}
.y56{bottom:567.181067pt;}
.y12f{bottom:567.181200pt;}
.y112{bottom:570.144067pt;}
.ybf{bottom:570.360000pt;}
.yf1{bottom:571.270400pt;}
.y8c{bottom:575.919200pt;}
.y15{bottom:577.662133pt;}
.y6e{bottom:584.476533pt;}
.y184{bottom:585.730533pt;}
.y154{bottom:585.815733pt;}
.y55{bottom:585.847733pt;}
.y12e{bottom:585.847867pt;}
.yf0{bottom:587.960400pt;}
.ybe{bottom:588.568000pt;}
.y8b{bottom:593.743200pt;}
.y14{bottom:595.266133pt;}
.y183{bottom:604.402533pt;}
.y153{bottom:604.487733pt;}
.y54{bottom:604.514400pt;}
.y12d{bottom:604.514533pt;}
.yef{bottom:604.629600pt;}
.ybd{bottom:606.776000pt;}
.y10e{bottom:607.473161pt;}
.y8a{bottom:611.567200pt;}
.y13{bottom:612.870133pt;}
.y10d{bottom:620.055618pt;}
.yee{bottom:621.139200pt;}
.y182{bottom:623.074533pt;}
.y152{bottom:623.159733pt;}
.y53{bottom:623.181067pt;}
.y12c{bottom:623.181200pt;}
.ybc{bottom:624.984000pt;}
.y10f{bottom:625.493220pt;}
.y89{bottom:629.391200pt;}
.y12{bottom:630.474133pt;}
.y111{bottom:631.502751pt;}
.yed{bottom:637.808400pt;}
.y181{bottom:641.746533pt;}
.y151{bottom:641.831733pt;}
.y52{bottom:641.847733pt;}
.y12b{bottom:641.847867pt;}
.ybb{bottom:643.192000pt;}
.y88{bottom:647.215200pt;}
.y11{bottom:648.078133pt;}
.y10b{bottom:653.543392pt;}
.yec{bottom:654.498400pt;}
.y180{bottom:660.418533pt;}
.y150{bottom:660.503733pt;}
.y51{bottom:660.514400pt;}
.y12a{bottom:660.514533pt;}
.yba{bottom:661.400000pt;}
.y87{bottom:665.039200pt;}
.yeb{bottom:670.987200pt;}
.y10c{bottom:672.323179pt;}
.y10{bottom:675.720267pt;}
.y17f{bottom:679.090533pt;}
.y14f{bottom:679.175733pt;}
.y50{bottom:679.181067pt;}
.y129{bottom:679.181200pt;}
.yb9{bottom:679.608000pt;}
.y86{bottom:682.863200pt;}
.yea{bottom:687.677200pt;}
.y10a{bottom:690.949313pt;}
.y13b{bottom:691.947600pt;}
.y17e{bottom:697.762533pt;}
.yb8{bottom:697.816000pt;}
.y4f{bottom:697.847733pt;}
.y128{bottom:697.847867pt;}
.y85{bottom:700.687200pt;}
.y109{bottom:703.361044pt;}
.ye9{bottom:704.368267pt;}
.y110{bottom:705.034153pt;}
.yb7{bottom:716.024000pt;}
.y17d{bottom:716.434533pt;}
.y4e{bottom:716.514400pt;}
.y127{bottom:716.514533pt;}
.y84{bottom:718.511200pt;}
.ye8{bottom:721.058267pt;}
.y14e{bottom:729.280800pt;}
.yb6{bottom:734.232000pt;}
.y17c{bottom:735.106533pt;}
.y4d{bottom:735.181067pt;}
.y126{bottom:735.181200pt;}
.y83{bottom:736.335200pt;}
.ye7{bottom:737.536667pt;}
.ya{bottom:746.192667pt;}
.yb5{bottom:752.440000pt;}
.y17b{bottom:753.778533pt;}
.y4c{bottom:753.847733pt;}
.y125{bottom:753.847867pt;}
.y82{bottom:754.159200pt;}
.ye6{bottom:754.205467pt;}
.y106{bottom:757.455366pt;}
.y9{bottom:762.192667pt;}
.y105{bottom:770.046359pt;}
.y108{bottom:770.558535pt;}
.yb4{bottom:770.648000pt;}
.ye5{bottom:770.895467pt;}
.y81{bottom:771.983200pt;}
.y17a{bottom:772.450533pt;}
.y14d{bottom:772.509067pt;}
.y4b{bottom:772.514400pt;}
.y124{bottom:772.514533pt;}
.y8{bottom:778.192667pt;}
.ye4{bottom:787.384267pt;}
.yb3{bottom:788.856000pt;}
.y80{bottom:789.807200pt;}
.y179{bottom:791.122533pt;}
.y4a{bottom:791.181067pt;}
.y123{bottom:791.181200pt;}
.y7{bottom:794.192667pt;}
.y102{bottom:803.064639pt;}
.ye3{bottom:804.074267pt;}
.yb2{bottom:807.064000pt;}
.y7f{bottom:807.631200pt;}
.y178{bottom:809.794533pt;}
.y49{bottom:809.847733pt;}
.y122{bottom:809.847867pt;}
.y6{bottom:810.192667pt;}
.y107{bottom:811.967965pt;}
.y14c{bottom:814.692667pt;}
.y103{bottom:819.701823pt;}
.ye2{bottom:820.764667pt;}
.yb1{bottom:825.272000pt;}
.y7e{bottom:825.455200pt;}
.y177{bottom:828.466533pt;}
.y48{bottom:828.514400pt;}
.y121{bottom:828.514533pt;}
.y101{bottom:836.646312pt;}
.ye1{bottom:837.253067pt;}
.y5{bottom:841.310933pt;}
.y7d{bottom:843.279200pt;}
.yb0{bottom:843.480000pt;}
.y176{bottom:847.138533pt;}
.y14b{bottom:847.175733pt;}
.y47{bottom:847.181067pt;}
.y120{bottom:847.181200pt;}
.ye0{bottom:853.943467pt;}
.y7c{bottom:861.103200pt;}
.yaf{bottom:861.688000pt;}
.y175{bottom:865.810533pt;}
.y14a{bottom:865.842400pt;}
.y46{bottom:865.847733pt;}
.y11f{bottom:865.847867pt;}
.y104{bottom:867.564670pt;}
.ydf{bottom:870.602000pt;}
.y100{bottom:873.975406pt;}
.y4{bottom:874.034267pt;}
.y7b{bottom:878.927200pt;}
.yae{bottom:879.896000pt;}
.y174{bottom:884.482533pt;}
.y45{bottom:884.514400pt;}
.y11e{bottom:884.514533pt;}
.yff{bottom:886.592008pt;}
.yde{bottom:887.291867pt;}
.y7a{bottom:896.751200pt;}
.yad{bottom:898.104000pt;}
.y173{bottom:903.154533pt;}
.y44{bottom:903.181067pt;}
.y11d{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.ydd{bottom:903.780800pt;}
.y149{bottom:908.026000pt;}
.yfc{bottom:909.400913pt;}
.y79{bottom:914.575200pt;}
.yfe{bottom:914.676326pt;}
.yac{bottom:916.312000pt;}
.ydc{bottom:920.470667pt;}
.y172{bottom:921.826533pt;}
.y43{bottom:921.847733pt;}
.y11c{bottom:921.847867pt;}
.y78{bottom:932.399200pt;}
.y2{bottom:932.695600pt;}
.yab{bottom:933.005333pt;}
.yfb{bottom:936.520632pt;}
.ydb{bottom:937.161200pt;}
.y171{bottom:940.498533pt;}
.y148{bottom:940.503733pt;}
.y42{bottom:940.514400pt;}
.y11b{bottom:940.514533pt;}
.yaa{bottom:949.698667pt;}
.y77{bottom:950.223200pt;}
.yda{bottom:953.649467pt;}
.yfd{bottom:955.300419pt;}
.y170{bottom:959.170533pt;}
.y147{bottom:959.175733pt;}
.y41{bottom:959.181067pt;}
.y11a{bottom:959.181200pt;}
.yf9{bottom:969.724133pt;}
.yd9{bottom:970.340000pt;}
.ya9{bottom:976.789733pt;}
.y76{bottom:977.314133pt;}
.y16f{bottom:977.842533pt;}
.y40{bottom:977.847733pt;}
.y119{bottom:977.847867pt;}
.yfa{bottom:986.287067pt;}
.yf{bottom:986.502667pt;}
.yd8{bottom:986.998400pt;}
.ya8{bottom:994.393733pt;}
.y75{bottom:994.918133pt;}
.y3f{bottom:996.514400pt;}
.y118{bottom:996.514533pt;}
.y146{bottom:1000.401467pt;}
.yf8{bottom:1003.104667pt;}
.y3b{bottom:1030.390667pt;}
.y3a{bottom:1047.724000pt;}
.y3e{bottom:1047.726267pt;}
.h1d{height:23.708147pt;}
.h1e{height:23.778877pt;}
.h1b{height:29.369855pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h15{height:32.437500pt;}
.h19{height:32.554542pt;}
.h1a{height:32.625272pt;}
.h16{height:33.666667pt;}
.h13{height:33.979167pt;}
.h11{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h14{height:34.666667pt;}
.hc{height:36.492188pt;}
.ha{height:37.875000pt;}
.h8{height:38.226562pt;}
.h10{height:38.273438pt;}
.hf{height:38.507812pt;}
.hb{height:39.000000pt;}
.h20{height:39.021333pt;}
.h12{height:40.546875pt;}
.h1c{height:40.692900pt;}
.h9{height:42.083333pt;}
.he{height:43.333333pt;}
.h17{height:43.958333pt;}
.h4{height:45.538711pt;}
.h1f{height:46.291667pt;}
.hd{height:50.500000pt;}
.h3{height:72.205729pt;}
.h18{height:549.542667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:631.937333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:45.713733pt;}
.x2{left:65.763733pt;}
.xa{left:95.167867pt;}
.xc{left:96.257467pt;}
.xe{left:99.788400pt;}
.x5{left:106.559067pt;}
.x6{left:108.473333pt;}
.x7{left:110.313733pt;}
.x11{left:144.288667pt;}
.x40{left:162.098554pt;}
.x3f{left:183.473366pt;}
.xd{left:186.081733pt;}
.x3b{left:195.014398pt;}
.x3e{left:196.798478pt;}
.x3a{left:207.093215pt;}
.x2a{left:208.351200pt;}
.x29{left:221.219467pt;}
.x39{left:255.434094pt;}
.x38{left:260.325374pt;}
.x4{left:266.834667pt;}
.x41{left:274.751665pt;}
.xb{left:281.954667pt;}
.x24{left:306.836933pt;}
.x25{left:313.610533pt;}
.x10{left:318.635333pt;}
.xf{left:330.966000pt;}
.x1e{left:341.639867pt;}
.x1f{left:347.139733pt;}
.x28{left:349.029333pt;}
.x3{left:352.045067pt;}
.x37{left:352.995085pt;}
.x26{left:358.659600pt;}
.x33{left:361.821585pt;}
.x1d{left:367.014933pt;}
.x12{left:367.971733pt;}
.x32{left:372.833369pt;}
.x2f{left:379.713600pt;}
.x36{left:394.199645pt;}
.x31{left:402.616403pt;}
.x27{left:404.887067pt;}
.x2c{left:407.636667pt;}
.x34{left:419.603574pt;}
.x3d{left:423.248560pt;}
.x30{left:424.913132pt;}
.x2d{left:425.930133pt;}
.x35{left:431.656783pt;}
.x23{left:434.243467pt;}
.x3c{left:443.411222pt;}
.x2e{left:445.146933pt;}
.x22{left:451.644800pt;}
.x1b{left:455.998400pt;}
.x17{left:458.450667pt;}
.x18{left:461.327733pt;}
.x16{left:464.735867pt;}
.x13{left:466.392800pt;}
.x1c{left:470.214533pt;}
.x21{left:501.079200pt;}
.x1a{left:503.722000pt;}
.x19{left:508.850267pt;}
.x15{left:513.362533pt;}
.x20{left:519.829200pt;}
.x14{left:531.200267pt;}
.x9{left:576.806933pt;}
.x8{left:595.302933pt;}
.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; }
  