
    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_21c9c7f2185598e6bd458565.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.698000;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_75b90e172d360b943a80c258.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.167000;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_2d74008316ebd57fd794cd84.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.165000;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_96a05f847f3e8acdf47c90c3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.166000;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_8ba16748657bc2fe1ac0f710.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.200900;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_177bfe5547f67ac322d7b263.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.160000;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_513645b8a26001179b54bd57.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.196000;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_21c9c7f2185598e6bd458565.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.698000;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_5f3df14daf35aca9225b9c0d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.184000;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_91dbdb2581a72e738e8f8d00.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.143048;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_44dad7258af8ce6158ab44d4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.037000;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);}
.v2{vertical-align:-19.980000px;}
.v3{vertical-align:-11.997000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:11.997000px;}
.v1{vertical-align:19.980000px;}
.ls66{letter-spacing:-4.488000px;}
.ls39{letter-spacing:-4.073400px;}
.ls64{letter-spacing:-3.519000px;}
.ls36{letter-spacing:-3.000000px;}
.ls62{letter-spacing:-2.295000px;}
.ls63{letter-spacing:-1.836000px;}
.ls14{letter-spacing:-1.428000px;}
.ls5e{letter-spacing:-1.350000px;}
.ls5c{letter-spacing:-1.339200px;}
.ls61{letter-spacing:-1.020000px;}
.ls11{letter-spacing:-0.816000px;}
.ls65{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.510000px;}
.ls44{letter-spacing:-0.414000px;}
.ls49{letter-spacing:-0.390600px;}
.ls42{letter-spacing:-0.349800px;}
.ls52{letter-spacing:-0.324000px;}
.ls10{letter-spacing:-0.306000px;}
.ls54{letter-spacing:-0.300000px;}
.ls2a{letter-spacing:-0.279000px;}
.ls37{letter-spacing:-0.240000px;}
.ls2b{letter-spacing:-0.223200px;}
.ls48{letter-spacing:-0.207000px;}
.lsd{letter-spacing:-0.204000px;}
.ls27{letter-spacing:-0.180000px;}
.ls29{letter-spacing:-0.167400px;}
.ls12{letter-spacing:-0.153000px;}
.ls3e{letter-spacing:-0.120000px;}
.ls38{letter-spacing:-0.111600px;}
.ls47{letter-spacing:-0.104940px;}
.lse{letter-spacing:-0.102000px;}
.ls3f{letter-spacing:-0.069960px;}
.ls34{letter-spacing:-0.060000px;}
.ls43{letter-spacing:-0.055800px;}
.ls5a{letter-spacing:-0.054000px;}
.ls35{letter-spacing:-0.034980px;}
.lsb{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.022200px;}
.ls2f{letter-spacing:0.055800px;}
.ls1b{letter-spacing:0.058200px;}
.ls3{letter-spacing:0.060000px;}
.ls53{letter-spacing:0.069960px;}
.ls21{letter-spacing:0.111600px;}
.ls1a{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.127800px;}
.ls4e{letter-spacing:0.139920px;}
.ls46{letter-spacing:0.150000px;}
.ls26{letter-spacing:0.162000px;}
.ls1f{letter-spacing:0.166560px;}
.ls16{letter-spacing:0.167400px;}
.ls57{letter-spacing:0.174900px;}
.ls20{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.196560px;}
.ls2{letter-spacing:0.204000px;}
.ls5d{letter-spacing:0.207000px;}
.ls56{letter-spacing:0.209880px;}
.ls4b{letter-spacing:0.210000px;}
.ls32{letter-spacing:0.223200px;}
.ls4{letter-spacing:0.240000px;}
.ls1{letter-spacing:0.255000px;}
.ls2d{letter-spacing:0.259680px;}
.ls25{letter-spacing:0.279000px;}
.ls1e{letter-spacing:0.300000px;}
.ls3a{letter-spacing:0.330000px;}
.ls28{letter-spacing:0.334800px;}
.ls40{letter-spacing:0.349800px;}
.ls1c{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.363300px;}
.ls2c{letter-spacing:0.378000px;}
.ls5b{letter-spacing:0.384780px;}
.ls3d{letter-spacing:0.390000px;}
.ls51{letter-spacing:0.390600px;}
.ls23{letter-spacing:0.418500px;}
.ls41{letter-spacing:0.419760px;}
.ls7{letter-spacing:0.420000px;}
.ls22{letter-spacing:0.446400px;}
.ls4c{letter-spacing:0.450000px;}
.ls2e{letter-spacing:0.480000px;}
.ls9{letter-spacing:0.502200px;}
.ls6{letter-spacing:0.540000px;}
.ls18{letter-spacing:0.600000px;}
.ls24{letter-spacing:0.613800px;}
.ls4d{letter-spacing:0.630000px;}
.ls45{letter-spacing:0.660000px;}
.ls3b{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.725400px;}
.ls0{letter-spacing:0.732600px;}
.ls4f{letter-spacing:0.750000px;}
.ls59{letter-spacing:0.780000px;}
.ls8{letter-spacing:0.781200px;}
.ls33{letter-spacing:0.810000px;}
.ls58{letter-spacing:0.840000px;}
.ls50{letter-spacing:0.960000px;}
.ls13{letter-spacing:0.969000px;}
.ls31{letter-spacing:1.032300px;}
.ls68{letter-spacing:1.071000px;}
.ls17{letter-spacing:1.080000px;}
.ls55{letter-spacing:1.278000px;}
.lsc{letter-spacing:1.326000px;}
.ls30{letter-spacing:1.395000px;}
.ls60{letter-spacing:1.530000px;}
.ls4a{letter-spacing:2.094000px;}
.ls67{letter-spacing:2.340000px;}
.ls5f{letter-spacing:3.315000px;}
.ls3c{letter-spacing:6.360000px;}
.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;}
}
.wsf9{word-spacing:-15.600000px;}
.wse5{word-spacing:-14.586000px;}
.wsd9{word-spacing:-13.338000px;}
.ws68{word-spacing:-13.260000px;}
.ws65{word-spacing:-13.176000px;}
.ws26{word-spacing:-12.960000px;}
.ws27{word-spacing:-12.660000px;}
.ws29{word-spacing:-12.540000px;}
.wsb2{word-spacing:-12.276000px;}
.wsf4{word-spacing:-12.258000px;}
.ws85{word-spacing:-11.880000px;}
.ws9d{word-spacing:-11.730000px;}
.ws9e{word-spacing:-11.640000px;}
.ws9b{word-spacing:-11.460000px;}
.ws84{word-spacing:-11.400000px;}
.wsa0{word-spacing:-11.340000px;}
.ws9a{word-spacing:-11.280000px;}
.wsb0{word-spacing:-11.220000px;}
.ws46{word-spacing:-11.160000px;}
.ws9f{word-spacing:-11.100000px;}
.ws9c{word-spacing:-11.040000px;}
.wse7{word-spacing:-10.965000px;}
.wsea{word-spacing:-10.761000px;}
.wsf6{word-spacing:-10.659000px;}
.wseb{word-spacing:-10.455000px;}
.wsee{word-spacing:-10.200000px;}
.wse6{word-spacing:-9.945000px;}
.wsda{word-spacing:-9.108000px;}
.ws2{word-spacing:-8.901000px;}
.ws87{word-spacing:-8.694000px;}
.wse8{word-spacing:-8.670000px;}
.ws6b{word-spacing:-8.487000px;}
.ws69{word-spacing:-7.730580px;}
.wsc8{word-spacing:-7.695600px;}
.ws67{word-spacing:-7.660620px;}
.wsbe{word-spacing:-7.520700px;}
.wsbf{word-spacing:-7.485720px;}
.wsa1{word-spacing:-7.450740px;}
.wse9{word-spacing:-7.446000px;}
.wsb1{word-spacing:-7.380780px;}
.ws28{word-spacing:-7.310820px;}
.ws45{word-spacing:-7.275840px;}
.ws66{word-spacing:-7.240860px;}
.ws86{word-spacing:-7.205880px;}
.ws6a{word-spacing:-6.961020px;}
.wsf5{word-spacing:-6.477000px;}
.wsb{word-spacing:-2.244000px;}
.wsb5{word-spacing:-2.100000px;}
.ws97{word-spacing:-2.064600px;}
.ws53{word-spacing:-2.040000px;}
.wsc4{word-spacing:-1.980000px;}
.ws83{word-spacing:-1.953000px;}
.ws2f{word-spacing:-1.920000px;}
.wsd5{word-spacing:-1.897200px;}
.ws4a{word-spacing:-1.860000px;}
.ws36{word-spacing:-1.841400px;}
.wsc5{word-spacing:-1.800000px;}
.ws44{word-spacing:-1.785600px;}
.ws7e{word-spacing:-1.740000px;}
.ws98{word-spacing:-1.729800px;}
.ws70{word-spacing:-1.680000px;}
.ws3f{word-spacing:-1.674000px;}
.ws14{word-spacing:-1.632000px;}
.ws57{word-spacing:-1.618200px;}
.ws49{word-spacing:-1.560000px;}
.wsed{word-spacing:-1.530000px;}
.ws77{word-spacing:-1.500000px;}
.wsa8{word-spacing:-1.440000px;}
.ws13{word-spacing:-1.428000px;}
.ws81{word-spacing:-1.395000px;}
.wsce{word-spacing:-1.380000px;}
.wsd8{word-spacing:-1.339200px;}
.ws4{word-spacing:-1.326000px;}
.wsb8{word-spacing:-1.320000px;}
.wsbd{word-spacing:-1.283400px;}
.wsdc{word-spacing:-1.260000px;}
.ws22{word-spacing:-1.227600px;}
.ws35{word-spacing:-1.200000px;}
.ws24{word-spacing:-1.080000px;}
.ws43{word-spacing:-1.004400px;}
.ws15{word-spacing:-0.969000px;}
.wsac{word-spacing:-0.960000px;}
.ws82{word-spacing:-0.948600px;}
.wsb6{word-spacing:-0.900000px;}
.ws61{word-spacing:-0.892800px;}
.wsca{word-spacing:-0.840000px;}
.ws47{word-spacing:-0.810000px;}
.wsd3{word-spacing:-0.780000px;}
.ws0{word-spacing:-0.754800px;}
.ws1e{word-spacing:-0.725400px;}
.ws74{word-spacing:-0.720000px;}
.wsf1{word-spacing:-0.714000px;}
.wscd{word-spacing:-0.660000px;}
.ws63{word-spacing:-0.613800px;}
.ws73{word-spacing:-0.600000px;}
.wsf3{word-spacing:-0.561000px;}
.ws72{word-spacing:-0.540000px;}
.wsc7{word-spacing:-0.502200px;}
.ws90{word-spacing:-0.480000px;}
.ws80{word-spacing:-0.446400px;}
.wsa6{word-spacing:-0.420000px;}
.ws3c{word-spacing:-0.390600px;}
.wsd1{word-spacing:-0.360000px;}
.ws41{word-spacing:-0.334800px;}
.ws7d{word-spacing:-0.300000px;}
.wse4{word-spacing:-0.279000px;}
.ws1c{word-spacing:-0.240000px;}
.ws23{word-spacing:-0.223200px;}
.ws16{word-spacing:-0.204000px;}
.ws6f{word-spacing:-0.180000px;}
.wsd6{word-spacing:-0.111600px;}
.ws7c{word-spacing:-0.060000px;}
.wsbc{word-spacing:-0.055800px;}
.ws1{word-spacing:-0.044400px;}
.ws3{word-spacing:0.000000px;}
.ws96{word-spacing:0.055800px;}
.wsad{word-spacing:0.060000px;}
.ws92{word-spacing:0.120000px;}
.wsf0{word-spacing:0.204000px;}
.ws19{word-spacing:0.240000px;}
.wsfc{word-spacing:0.255000px;}
.ws56{word-spacing:0.279000px;}
.ws4c{word-spacing:0.300000px;}
.wsd7{word-spacing:0.334800px;}
.ws4b{word-spacing:0.360000px;}
.wsf8{word-spacing:0.408000px;}
.ws21{word-spacing:0.446400px;}
.wsf2{word-spacing:0.510000px;}
.wsa3{word-spacing:0.540000px;}
.ws10{word-spacing:0.714000px;}
.ws91{word-spacing:0.720000px;}
.ws58{word-spacing:0.837000px;}
.wsd4{word-spacing:0.840000px;}
.ws62{word-spacing:0.892800px;}
.wscb{word-spacing:0.900000px;}
.ws95{word-spacing:0.948600px;}
.ws37{word-spacing:1.004400px;}
.ws8{word-spacing:1.020000px;}
.wse3{word-spacing:1.060200px;}
.ws50{word-spacing:1.080000px;}
.wsfb{word-spacing:1.122000px;}
.ws7b{word-spacing:1.140000px;}
.ws79{word-spacing:1.200000px;}
.ws17{word-spacing:1.260000px;}
.wse{word-spacing:1.275000px;}
.ws8f{word-spacing:1.320000px;}
.ws42{word-spacing:1.395000px;}
.wsd{word-spacing:1.428000px;}
.ws7a{word-spacing:1.440000px;}
.ws38{word-spacing:1.450800px;}
.ws54{word-spacing:1.500000px;}
.ws55{word-spacing:1.618200px;}
.wse2{word-spacing:1.620000px;}
.ws60{word-spacing:1.674000px;}
.ws4d{word-spacing:1.680000px;}
.ws9{word-spacing:1.734000px;}
.ws30{word-spacing:1.740000px;}
.ws20{word-spacing:1.785600px;}
.ws2e{word-spacing:1.800000px;}
.wsef{word-spacing:1.836000px;}
.ws3d{word-spacing:1.841400px;}
.ws18{word-spacing:1.860000px;}
.wsaf{word-spacing:1.897200px;}
.ws1a{word-spacing:1.920000px;}
.wsbb{word-spacing:1.953000px;}
.ws31{word-spacing:1.980000px;}
.wsc1{word-spacing:2.040000px;}
.ws40{word-spacing:2.064600px;}
.ws8e{word-spacing:2.100000px;}
.ws2d{word-spacing:2.160000px;}
.ws5{word-spacing:2.244000px;}
.wsa7{word-spacing:2.280000px;}
.ws8c{word-spacing:2.340000px;}
.ws39{word-spacing:2.343600px;}
.wsd2{word-spacing:2.400000px;}
.wsd0{word-spacing:2.460000px;}
.ws6d{word-spacing:2.520000px;}
.ws2c{word-spacing:2.580000px;}
.wsc6{word-spacing:2.640000px;}
.ws12{word-spacing:2.652000px;}
.ws99{word-spacing:2.678400px;}
.ws78{word-spacing:2.700000px;}
.ws6e{word-spacing:2.760000px;}
.ws94{word-spacing:2.790000px;}
.ws51{word-spacing:2.820000px;}
.ws34{word-spacing:2.880000px;}
.ws4e{word-spacing:2.940000px;}
.wsba{word-spacing:2.957400px;}
.ws52{word-spacing:3.000000px;}
.ws11{word-spacing:3.009000px;}
.ws7{word-spacing:3.060000px;}
.wsc3{word-spacing:3.120000px;}
.ws93{word-spacing:3.124800px;}
.wsb7{word-spacing:3.180000px;}
.wsc{word-spacing:3.213000px;}
.ws33{word-spacing:3.240000px;}
.ws3b{word-spacing:3.292200px;}
.wsa4{word-spacing:3.300000px;}
.wsaa{word-spacing:3.360000px;}
.ws6{word-spacing:3.417000px;}
.wsa9{word-spacing:3.420000px;}
.ws5e{word-spacing:3.459600px;}
.ws32{word-spacing:3.540000px;}
.wscf{word-spacing:3.600000px;}
.ws4f{word-spacing:3.660000px;}
.wsa5{word-spacing:3.720000px;}
.ws3a{word-spacing:3.794400px;}
.wsdd{word-spacing:3.840000px;}
.ws5d{word-spacing:3.906000px;}
.wscc{word-spacing:3.960000px;}
.ws7f{word-spacing:4.017600px;}
.ws8b{word-spacing:4.020000px;}
.ws64{word-spacing:4.073400px;}
.ws5c{word-spacing:4.129200px;}
.wsae{word-spacing:4.140000px;}
.ws1f{word-spacing:4.185000px;}
.ws89{word-spacing:4.440000px;}
.ws1b{word-spacing:4.500000px;}
.wsc2{word-spacing:4.680000px;}
.wsdf{word-spacing:4.800000px;}
.ws3e{word-spacing:4.854600px;}
.wsab{word-spacing:4.860000px;}
.ws71{word-spacing:4.920000px;}
.ws2b{word-spacing:5.040000px;}
.ws75{word-spacing:5.100000px;}
.ws5a{word-spacing:5.133600px;}
.wse1{word-spacing:5.220000px;}
.ws8a{word-spacing:5.340000px;}
.ws8d{word-spacing:5.520000px;}
.wsde{word-spacing:5.580000px;}
.ws76{word-spacing:5.640000px;}
.ws5f{word-spacing:5.747400px;}
.wsf{word-spacing:5.814000px;}
.wse0{word-spacing:6.060000px;}
.wsb4{word-spacing:6.120000px;}
.ws1d{word-spacing:6.249600px;}
.wsa{word-spacing:6.324000px;}
.wsb9{word-spacing:7.980000px;}
.ws5b{word-spacing:8.537400px;}
.ws59{word-spacing:11.718000px;}
.ws25{word-spacing:610.956000px;}
.ws6c{word-spacing:825.822000px;}
.wsc0{word-spacing:826.254000px;}
.wsa2{word-spacing:826.362000px;}
.wsdb{word-spacing:826.416000px;}
.ws2a{word-spacing:827.982000px;}
.wsf7{word-spacing:828.576000px;}
.ws48{word-spacing:1059.264000px;}
.ws88{word-spacing:1059.426000px;}
.wsfa{word-spacing:1059.642000px;}
.wsc9{word-spacing:1062.018000px;}
.wsb3{word-spacing:1062.504000px;}
.wsec{word-spacing:1064.394000px;}
._1e{margin-left:-829.203240px;}
._b{margin-left:-828.166320px;}
._14{margin-left:-826.903920px;}
._13{margin-left:-825.747360px;}
._a{margin-left:-611.701080px;}
._9{margin-left:-610.533600px;}
._12{margin-left:-19.413600px;}
._1d{margin-left:-8.976000px;}
._e{margin-left:-7.548000px;}
._4{margin-left:-6.298200px;}
._6{margin-left:-5.092800px;}
._1{margin-left:-3.360000px;}
._2{margin-left:-1.872000px;}
._0{width:1.247640px;}
._3{width:2.315400px;}
._7{width:3.508800px;}
._5{width:4.747500px;}
._15{width:6.871260px;}
._1c{width:9.669000px;}
._11{width:23.044200px;}
._1a{width:28.401000px;}
._1b{width:30.187200px;}
._17{width:31.359000px;}
._f{width:32.530800px;}
._19{width:35.041800px;}
._16{width:36.603600px;}
._18{width:38.134200px;}
._10{width:41.458800px;}
._8{width:50.386800px;}
._d{width:52.228200px;}
._c{width:53.622600px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(123,121,121);}
.fs0{font-size:22.200000px;}
.fs5{font-size:34.980000px;}
.fs6{font-size:41.400000px;}
.fs3{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:55.800000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:40.399350px;}
.y26{bottom:90.567000px;}
.yc9{bottom:90.571350px;}
.y77{bottom:90.571500px;}
.ybc{bottom:90.575700px;}
.y55{bottom:90.575850px;}
.ya4{bottom:90.580050px;}
.y11e{bottom:94.255050px;}
.y100{bottom:94.280550px;}
.y172{bottom:102.491550px;}
.yc4{bottom:107.967000px;}
.y76{bottom:107.967150px;}
.ybb{bottom:107.971350px;}
.y54{bottom:107.971500px;}
.ya3{bottom:107.975700px;}
.y25{bottom:107.984400px;}
.y94{bottom:107.993250px;}
.y11d{bottom:111.505800px;}
.yff{bottom:111.531300px;}
.y171{bottom:119.742300px;}
.y75{bottom:125.367000px;}
.y53{bottom:125.367150px;}
.ya2{bottom:125.371350px;}
.yc3{bottom:125.375700px;}
.y24{bottom:125.380050px;}
.y93{bottom:125.388900px;}
.y11c{bottom:128.756550px;}
.yfe{bottom:128.782050px;}
.y170{bottom:136.993050px;}
.ya1{bottom:142.767000px;}
.y74{bottom:142.767150px;}
.yc2{bottom:142.771350px;}
.ya7{bottom:142.771650px;}
.y23{bottom:142.775700px;}
.y52{bottom:142.780350px;}
.y92{bottom:142.784550px;}
.yc8{bottom:142.784700px;}
.y11b{bottom:146.007300px;}
.yfd{bottom:146.032800px;}
.yc1{bottom:160.167000px;}
.yba{bottom:160.167150px;}
.ya6{bottom:160.167300px;}
.y22{bottom:160.171350px;}
.y73{bottom:160.171500px;}
.ya0{bottom:160.175850px;}
.y51{bottom:160.176000px;}
.y91{bottom:160.180200px;}
.yc7{bottom:160.180350px;}
.y11a{bottom:163.258050px;}
.yfc{bottom:163.283550px;}
.y16f{bottom:171.494550px;}
.y21{bottom:177.567000px;}
.y72{bottom:177.567150px;}
.y9f{bottom:177.571500px;}
.y50{bottom:177.571650px;}
.y90{bottom:177.575850px;}
.yc6{bottom:177.576000px;}
.y119{bottom:180.508800px;}
.yfb{bottom:180.534300px;}
.y16e{bottom:188.745300px;}
.y71{bottom:194.967150px;}
.y4f{bottom:194.967300px;}
.y8f{bottom:194.971500px;}
.yb9{bottom:194.971650px;}
.y118{bottom:197.759550px;}
.yfa{bottom:197.785050px;}
.ya5{bottom:202.018050px;}
.y16d{bottom:205.996050px;}
.y8e{bottom:212.367150px;}
.y4e{bottom:212.367300px;}
.y70{bottom:212.371500px;}
.y117{bottom:215.010300px;}
.yf9{bottom:215.035800px;}
.y20{bottom:220.468050px;}
.y6f{bottom:229.767150px;}
.y8d{bottom:229.767300px;}
.yb8{bottom:229.767450px;}
.yc0{bottom:229.775850px;}
.y4d{bottom:229.784850px;}
.y116{bottom:232.261050px;}
.yf8{bottom:232.286550px;}
.y175{bottom:233.579700px;}
.y1f{bottom:238.918050px;}
.y6e{bottom:247.167000px;}
.y9e{bottom:247.167300px;}
.ybf{bottom:247.171500px;}
.y8c{bottom:247.171800px;}
.y4c{bottom:247.180500px;}
.yb7{bottom:247.189350px;}
.y115{bottom:249.511800px;}
.yf7{bottom:249.537300px;}
.y16c{bottom:249.907050px;}
.y145{bottom:249.932550px;}
.y1e{bottom:257.368050px;}
.ybe{bottom:264.567150px;}
.y8b{bottom:264.567450px;}
.y6d{bottom:264.571500px;}
.y4b{bottom:264.576150px;}
.yb6{bottom:264.585000px;}
.y114{bottom:266.762550px;}
.yf6{bottom:266.788050px;}
.y16b{bottom:267.157800px;}
.y144{bottom:267.183300px;}
.y1d{bottom:275.818050px;}
.y6c{bottom:281.967150px;}
.y8a{bottom:281.967600px;}
.y9d{bottom:281.971650px;}
.y4a{bottom:281.971800px;}
.yb5{bottom:281.980650px;}
.y113{bottom:284.013300px;}
.yf5{bottom:284.038800px;}
.y16a{bottom:284.408550px;}
.y143{bottom:284.434050px;}
.y1c{bottom:294.268050px;}
.y9c{bottom:299.367300px;}
.y49{bottom:299.367450px;}
.y89{bottom:299.367600px;}
.y6b{bottom:299.371500px;}
.yb4{bottom:299.376300px;}
.y112{bottom:301.264050px;}
.yf4{bottom:301.289550px;}
.y169{bottom:301.659300px;}
.y142{bottom:301.684800px;}
.y1b{bottom:312.718050px;}
.y6a{bottom:316.767150px;}
.ybd{bottom:316.767300px;}
.y88{bottom:316.767750px;}
.y9b{bottom:316.771650px;}
.y48{bottom:316.771800px;}
.yb3{bottom:316.771950px;}
.y111{bottom:318.514800px;}
.yf3{bottom:318.540300px;}
.y168{bottom:318.910050px;}
.y141{bottom:318.935550px;}
.y1a{bottom:331.168050px;}
.y69{bottom:334.167000px;}
.y9a{bottom:334.167300px;}
.y47{bottom:334.167450px;}
.yb2{bottom:334.167600px;}
.y110{bottom:335.765550px;}
.yf2{bottom:335.791050px;}
.y167{bottom:336.160800px;}
.y140{bottom:336.186300px;}
.y19{bottom:349.618050px;}
.y68{bottom:351.567150px;}
.y99{bottom:351.571650px;}
.yb1{bottom:351.571950px;}
.y46{bottom:351.576150px;}
.y10f{bottom:353.016300px;}
.yf1{bottom:353.041800px;}
.y166{bottom:353.411550px;}
.y13f{bottom:353.437050px;}
.y18{bottom:368.068050px;}
.y67{bottom:368.967150px;}
.y98{bottom:368.967300px;}
.yb0{bottom:368.967600px;}
.y45{bottom:368.971800px;}
.y10e{bottom:370.267050px;}
.yf0{bottom:370.292550px;}
.y165{bottom:370.662300px;}
.y13e{bottom:370.687800px;}
.y44{bottom:386.367450px;}
.y66{bottom:386.380200px;}
.y87{bottom:386.518050px;}
.y10d{bottom:387.517800px;}
.yef{bottom:387.543300px;}
.y164{bottom:387.913050px;}
.y13d{bottom:387.938550px;}
.y43{bottom:403.771800px;}
.y65{bottom:403.775850px;}
.y10c{bottom:404.768550px;}
.yee{bottom:404.794050px;}
.y86{bottom:404.968050px;}
.y97{bottom:404.968200px;}
.y163{bottom:405.163800px;}
.y13c{bottom:405.189300px;}
.y42{bottom:421.167450px;}
.y64{bottom:421.171500px;}
.y10b{bottom:422.019300px;}
.yed{bottom:422.044800px;}
.y162{bottom:422.414550px;}
.y13b{bottom:422.440050px;}
.y85{bottom:423.418050px;}
.y96{bottom:423.418200px;}
.y17{bottom:432.714900px;}
.y63{bottom:438.567150px;}
.y41{bottom:438.567450px;}
.y10a{bottom:439.270050px;}
.yec{bottom:439.295550px;}
.y161{bottom:439.665300px;}
.y13a{bottom:439.690800px;}
.y84{bottom:441.868050px;}
.y95{bottom:441.868200px;}
.y16{bottom:449.965650px;}
.y62{bottom:455.967300px;}
.y40{bottom:455.971950px;}
.y109{bottom:456.520800px;}
.yeb{bottom:456.546300px;}
.y160{bottom:456.916050px;}
.y139{bottom:456.941550px;}
.y83{bottom:460.318050px;}
.y61{bottom:473.367450px;}
.y3f{bottom:473.367600px;}
.y108{bottom:473.771550px;}
.yea{bottom:473.797050px;}
.y15f{bottom:474.166800px;}
.y138{bottom:474.192300px;}
.y82{bottom:478.768050px;}
.y15{bottom:484.467150px;}
.y60{bottom:490.767450px;}
.y3e{bottom:490.776450px;}
.y107{bottom:491.022300px;}
.ye9{bottom:491.047800px;}
.y15e{bottom:491.417550px;}
.y137{bottom:491.443050px;}
.y81{bottom:497.218050px;}
.y14{bottom:501.717900px;}
.y3d{bottom:508.172100px;}
.y106{bottom:508.273050px;}
.ye8{bottom:508.298550px;}
.y15d{bottom:508.668300px;}
.y136{bottom:508.693800px;}
.y80{bottom:515.668050px;}
.yaf{bottom:515.668200px;}
.y105{bottom:525.523800px;}
.ye7{bottom:525.549300px;}
.y3c{bottom:525.567750px;}
.y15c{bottom:525.919050px;}
.y135{bottom:525.944550px;}
.y7f{bottom:534.118050px;}
.y5f{bottom:534.118200px;}
.y13{bottom:536.219400px;}
.y104{bottom:542.774550px;}
.ye6{bottom:542.800050px;}
.y3b{bottom:542.967750px;}
.y15b{bottom:543.169800px;}
.y134{bottom:543.195300px;}
.y7e{bottom:552.568050px;}
.y5e{bottom:552.568200px;}
.y12{bottom:553.470150px;}
.y103{bottom:560.025300px;}
.ye5{bottom:560.050800px;}
.y3a{bottom:560.367750px;}
.y15a{bottom:560.420550px;}
.y133{bottom:560.446050px;}
.y11{bottom:570.720900px;}
.y7d{bottom:571.018050px;}
.y5d{bottom:571.018200px;}
.y102{bottom:577.276050px;}
.ye4{bottom:577.301550px;}
.y159{bottom:577.671300px;}
.y132{bottom:577.696800px;}
.y39{bottom:577.767900px;}
.y174{bottom:579.334200px;}
.y10{bottom:587.971650px;}
.y5c{bottom:589.468050px;}
.yae{bottom:589.468200px;}
.y101{bottom:594.526800px;}
.ye3{bottom:594.552300px;}
.y158{bottom:594.922050px;}
.y131{bottom:594.947550px;}
.y38{bottom:595.167900px;}
.yf{bottom:605.222400px;}
.y5b{bottom:607.918050px;}
.yad{bottom:607.918200px;}
.y157{bottom:612.172800px;}
.y130{bottom:612.198300px;}
.y37{bottom:612.567900px;}
.ye{bottom:622.473150px;}
.y5a{bottom:626.368050px;}
.yac{bottom:626.368200px;}
.ye2{bottom:629.053800px;}
.y156{bottom:629.423550px;}
.y12f{bottom:629.449050px;}
.yd{bottom:639.723900px;}
.y59{bottom:644.818050px;}
.yab{bottom:644.818200px;}
.y155{bottom:646.674300px;}
.y12e{bottom:646.699800px;}
.yc{bottom:656.974650px;}
.y58{bottom:663.268050px;}
.y36{bottom:663.268200px;}
.ye1{bottom:663.555300px;}
.yd6{bottom:663.568050px;}
.y154{bottom:663.925050px;}
.y12d{bottom:663.950550px;}
.yb{bottom:674.225400px;}
.ye0{bottom:680.806050px;}
.yd5{bottom:680.818800px;}
.y153{bottom:681.175800px;}
.y12c{bottom:681.201300px;}
.y35{bottom:681.718050px;}
.yaa{bottom:681.718200px;}
.ya{bottom:691.476150px;}
.ydf{bottom:698.056800px;}
.yd4{bottom:698.069550px;}
.y152{bottom:698.426550px;}
.y12b{bottom:698.452050px;}
.y34{bottom:700.168050px;}
.ya9{bottom:700.168200px;}
.y9{bottom:708.726900px;}
.yde{bottom:715.307550px;}
.yd3{bottom:715.320300px;}
.y151{bottom:715.677300px;}
.y12a{bottom:715.702800px;}
.y33{bottom:718.618050px;}
.ya8{bottom:718.618200px;}
.y8{bottom:725.977650px;}
.ydd{bottom:732.558300px;}
.yd2{bottom:732.571050px;}
.y150{bottom:732.928050px;}
.y129{bottom:732.953550px;}
.y173{bottom:733.468950px;}
.y32{bottom:737.068050px;}
.y7c{bottom:737.068200px;}
.y7{bottom:743.228400px;}
.ydc{bottom:749.809050px;}
.yd1{bottom:749.821800px;}
.y14f{bottom:750.178800px;}
.y128{bottom:750.204300px;}
.y31{bottom:755.518050px;}
.y7b{bottom:755.518200px;}
.y6{bottom:760.479150px;}
.ydb{bottom:767.059800px;}
.yd0{bottom:767.072550px;}
.y14e{bottom:767.429550px;}
.y127{bottom:767.455050px;}
.y30{bottom:773.968050px;}
.y7a{bottom:773.968200px;}
.yda{bottom:784.310550px;}
.ycf{bottom:784.323300px;}
.y14d{bottom:784.680300px;}
.y126{bottom:784.705800px;}
.y2f{bottom:792.418050px;}
.y79{bottom:792.418200px;}
.yd9{bottom:801.561300px;}
.yce{bottom:801.574050px;}
.y14c{bottom:801.931050px;}
.y125{bottom:801.956550px;}
.y2e{bottom:810.868050px;}
.y78{bottom:810.868200px;}
.yd8{bottom:818.812050px;}
.ycd{bottom:818.824800px;}
.y14b{bottom:819.181800px;}
.y124{bottom:819.207300px;}
.y57{bottom:829.318050px;}
.y2d{bottom:829.318200px;}
.y5{bottom:829.479150px;}
.yd7{bottom:836.062800px;}
.ycc{bottom:836.075550px;}
.y14a{bottom:836.432550px;}
.y123{bottom:836.458050px;}
.y56{bottom:847.768050px;}
.y2c{bottom:847.768200px;}
.y149{bottom:853.683300px;}
.y122{bottom:853.708800px;}
.y2{bottom:857.391000px;}
.y1{bottom:864.889050px;}
.y2b{bottom:866.218050px;}
.yc5{bottom:866.218200px;}
.ycb{bottom:870.577050px;}
.y148{bottom:870.934050px;}
.y121{bottom:870.959550px;}
.y4{bottom:872.091150px;}
.y2a{bottom:884.668050px;}
.y147{bottom:888.184800px;}
.y120{bottom:888.210300px;}
.y3{bottom:897.579150px;}
.y29{bottom:903.118050px;}
.yca{bottom:905.078550px;}
.y146{bottom:905.435550px;}
.y11f{bottom:905.461050px;}
.y27{bottom:955.942350px;}
.h2{height:15.295800px;}
.hf{height:45.543000px;}
.he{height:45.696000px;}
.h6{height:45.900000px;}
.h10{height:46.614000px;}
.hd{height:48.042000px;}
.h5{height:48.195000px;}
.h8{height:49.996800px;}
.hc{height:50.108400px;}
.h9{height:50.868000px;}
.hb{height:51.001200px;}
.h7{height:54.000000px;}
.ha{height:54.000600px;}
.h11{height:56.700000px;}
.h4{height:67.824000px;}
.h3{height:90.720000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x7{left:25.546350px;}
.x6{left:28.615500px;}
.x5{left:72.283500px;}
.x3{left:80.787450px;}
.xb{left:85.033500px;}
.x8{left:93.543300px;}
.x4{left:102.053400px;}
.xc{left:353.433750px;}
.x9{left:361.924950px;}
.xd{left:366.183750px;}
.xa{left:374.674950px;}
.x2{left:651.223500px;}
.x1{left:654.292650px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v3{vertical-align:-10.664000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.664000pt;}
.v1{vertical-align:17.760000pt;}
.ls66{letter-spacing:-3.989333pt;}
.ls39{letter-spacing:-3.620800pt;}
.ls64{letter-spacing:-3.128000pt;}
.ls36{letter-spacing:-2.666667pt;}
.ls62{letter-spacing:-2.040000pt;}
.ls63{letter-spacing:-1.632000pt;}
.ls14{letter-spacing:-1.269333pt;}
.ls5e{letter-spacing:-1.200000pt;}
.ls5c{letter-spacing:-1.190400pt;}
.ls61{letter-spacing:-0.906667pt;}
.ls11{letter-spacing:-0.725333pt;}
.ls65{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.453333pt;}
.ls44{letter-spacing:-0.368000pt;}
.ls49{letter-spacing:-0.347200pt;}
.ls42{letter-spacing:-0.310933pt;}
.ls52{letter-spacing:-0.288000pt;}
.ls10{letter-spacing:-0.272000pt;}
.ls54{letter-spacing:-0.266667pt;}
.ls2a{letter-spacing:-0.248000pt;}
.ls37{letter-spacing:-0.213333pt;}
.ls2b{letter-spacing:-0.198400pt;}
.ls48{letter-spacing:-0.184000pt;}
.lsd{letter-spacing:-0.181333pt;}
.ls27{letter-spacing:-0.160000pt;}
.ls29{letter-spacing:-0.148800pt;}
.ls12{letter-spacing:-0.136000pt;}
.ls3e{letter-spacing:-0.106667pt;}
.ls38{letter-spacing:-0.099200pt;}
.ls47{letter-spacing:-0.093280pt;}
.lse{letter-spacing:-0.090667pt;}
.ls3f{letter-spacing:-0.062187pt;}
.ls34{letter-spacing:-0.053333pt;}
.ls43{letter-spacing:-0.049600pt;}
.ls5a{letter-spacing:-0.048000pt;}
.ls35{letter-spacing:-0.031093pt;}
.lsb{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.019733pt;}
.ls2f{letter-spacing:0.049600pt;}
.ls1b{letter-spacing:0.051733pt;}
.ls3{letter-spacing:0.053333pt;}
.ls53{letter-spacing:0.062187pt;}
.ls21{letter-spacing:0.099200pt;}
.ls1a{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.113600pt;}
.ls4e{letter-spacing:0.124373pt;}
.ls46{letter-spacing:0.133333pt;}
.ls26{letter-spacing:0.144000pt;}
.ls1f{letter-spacing:0.148053pt;}
.ls16{letter-spacing:0.148800pt;}
.ls57{letter-spacing:0.155467pt;}
.ls20{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.174720pt;}
.ls2{letter-spacing:0.181333pt;}
.ls5d{letter-spacing:0.184000pt;}
.ls56{letter-spacing:0.186560pt;}
.ls4b{letter-spacing:0.186667pt;}
.ls32{letter-spacing:0.198400pt;}
.ls4{letter-spacing:0.213333pt;}
.ls1{letter-spacing:0.226667pt;}
.ls2d{letter-spacing:0.230827pt;}
.ls25{letter-spacing:0.248000pt;}
.ls1e{letter-spacing:0.266667pt;}
.ls3a{letter-spacing:0.293333pt;}
.ls28{letter-spacing:0.297600pt;}
.ls40{letter-spacing:0.310933pt;}
.ls1c{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.322933pt;}
.ls2c{letter-spacing:0.336000pt;}
.ls5b{letter-spacing:0.342027pt;}
.ls3d{letter-spacing:0.346667pt;}
.ls51{letter-spacing:0.347200pt;}
.ls23{letter-spacing:0.372000pt;}
.ls41{letter-spacing:0.373120pt;}
.ls7{letter-spacing:0.373333pt;}
.ls22{letter-spacing:0.396800pt;}
.ls4c{letter-spacing:0.400000pt;}
.ls2e{letter-spacing:0.426667pt;}
.ls9{letter-spacing:0.446400pt;}
.ls6{letter-spacing:0.480000pt;}
.ls18{letter-spacing:0.533333pt;}
.ls24{letter-spacing:0.545600pt;}
.ls4d{letter-spacing:0.560000pt;}
.ls45{letter-spacing:0.586667pt;}
.ls3b{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.644800pt;}
.ls0{letter-spacing:0.651200pt;}
.ls4f{letter-spacing:0.666667pt;}
.ls59{letter-spacing:0.693333pt;}
.ls8{letter-spacing:0.694400pt;}
.ls33{letter-spacing:0.720000pt;}
.ls58{letter-spacing:0.746667pt;}
.ls50{letter-spacing:0.853333pt;}
.ls13{letter-spacing:0.861333pt;}
.ls31{letter-spacing:0.917600pt;}
.ls68{letter-spacing:0.952000pt;}
.ls17{letter-spacing:0.960000pt;}
.ls55{letter-spacing:1.136000pt;}
.lsc{letter-spacing:1.178667pt;}
.ls30{letter-spacing:1.240000pt;}
.ls60{letter-spacing:1.360000pt;}
.ls4a{letter-spacing:1.861333pt;}
.ls67{letter-spacing:2.080000pt;}
.ls5f{letter-spacing:2.946667pt;}
.ls3c{letter-spacing:5.653333pt;}
.wsf9{word-spacing:-13.866667pt;}
.wse5{word-spacing:-12.965333pt;}
.wsd9{word-spacing:-11.856000pt;}
.ws68{word-spacing:-11.786667pt;}
.ws65{word-spacing:-11.712000pt;}
.ws26{word-spacing:-11.520000pt;}
.ws27{word-spacing:-11.253333pt;}
.ws29{word-spacing:-11.146667pt;}
.wsb2{word-spacing:-10.912000pt;}
.wsf4{word-spacing:-10.896000pt;}
.ws85{word-spacing:-10.560000pt;}
.ws9d{word-spacing:-10.426667pt;}
.ws9e{word-spacing:-10.346667pt;}
.ws9b{word-spacing:-10.186667pt;}
.ws84{word-spacing:-10.133333pt;}
.wsa0{word-spacing:-10.080000pt;}
.ws9a{word-spacing:-10.026667pt;}
.wsb0{word-spacing:-9.973333pt;}
.ws46{word-spacing:-9.920000pt;}
.ws9f{word-spacing:-9.866667pt;}
.ws9c{word-spacing:-9.813333pt;}
.wse7{word-spacing:-9.746667pt;}
.wsea{word-spacing:-9.565333pt;}
.wsf6{word-spacing:-9.474667pt;}
.wseb{word-spacing:-9.293333pt;}
.wsee{word-spacing:-9.066667pt;}
.wse6{word-spacing:-8.840000pt;}
.wsda{word-spacing:-8.096000pt;}
.ws2{word-spacing:-7.912000pt;}
.ws87{word-spacing:-7.728000pt;}
.wse8{word-spacing:-7.706667pt;}
.ws6b{word-spacing:-7.544000pt;}
.ws69{word-spacing:-6.871627pt;}
.wsc8{word-spacing:-6.840533pt;}
.ws67{word-spacing:-6.809440pt;}
.wsbe{word-spacing:-6.685067pt;}
.wsbf{word-spacing:-6.653973pt;}
.wsa1{word-spacing:-6.622880pt;}
.wse9{word-spacing:-6.618667pt;}
.wsb1{word-spacing:-6.560693pt;}
.ws28{word-spacing:-6.498507pt;}
.ws45{word-spacing:-6.467413pt;}
.ws66{word-spacing:-6.436320pt;}
.ws86{word-spacing:-6.405227pt;}
.ws6a{word-spacing:-6.187573pt;}
.wsf5{word-spacing:-5.757333pt;}
.wsb{word-spacing:-1.994667pt;}
.wsb5{word-spacing:-1.866667pt;}
.ws97{word-spacing:-1.835200pt;}
.ws53{word-spacing:-1.813333pt;}
.wsc4{word-spacing:-1.760000pt;}
.ws83{word-spacing:-1.736000pt;}
.ws2f{word-spacing:-1.706667pt;}
.wsd5{word-spacing:-1.686400pt;}
.ws4a{word-spacing:-1.653333pt;}
.ws36{word-spacing:-1.636800pt;}
.wsc5{word-spacing:-1.600000pt;}
.ws44{word-spacing:-1.587200pt;}
.ws7e{word-spacing:-1.546667pt;}
.ws98{word-spacing:-1.537600pt;}
.ws70{word-spacing:-1.493333pt;}
.ws3f{word-spacing:-1.488000pt;}
.ws14{word-spacing:-1.450667pt;}
.ws57{word-spacing:-1.438400pt;}
.ws49{word-spacing:-1.386667pt;}
.wsed{word-spacing:-1.360000pt;}
.ws77{word-spacing:-1.333333pt;}
.wsa8{word-spacing:-1.280000pt;}
.ws13{word-spacing:-1.269333pt;}
.ws81{word-spacing:-1.240000pt;}
.wsce{word-spacing:-1.226667pt;}
.wsd8{word-spacing:-1.190400pt;}
.ws4{word-spacing:-1.178667pt;}
.wsb8{word-spacing:-1.173333pt;}
.wsbd{word-spacing:-1.140800pt;}
.wsdc{word-spacing:-1.120000pt;}
.ws22{word-spacing:-1.091200pt;}
.ws35{word-spacing:-1.066667pt;}
.ws24{word-spacing:-0.960000pt;}
.ws43{word-spacing:-0.892800pt;}
.ws15{word-spacing:-0.861333pt;}
.wsac{word-spacing:-0.853333pt;}
.ws82{word-spacing:-0.843200pt;}
.wsb6{word-spacing:-0.800000pt;}
.ws61{word-spacing:-0.793600pt;}
.wsca{word-spacing:-0.746667pt;}
.ws47{word-spacing:-0.720000pt;}
.wsd3{word-spacing:-0.693333pt;}
.ws0{word-spacing:-0.670933pt;}
.ws1e{word-spacing:-0.644800pt;}
.ws74{word-spacing:-0.640000pt;}
.wsf1{word-spacing:-0.634667pt;}
.wscd{word-spacing:-0.586667pt;}
.ws63{word-spacing:-0.545600pt;}
.ws73{word-spacing:-0.533333pt;}
.wsf3{word-spacing:-0.498667pt;}
.ws72{word-spacing:-0.480000pt;}
.wsc7{word-spacing:-0.446400pt;}
.ws90{word-spacing:-0.426667pt;}
.ws80{word-spacing:-0.396800pt;}
.wsa6{word-spacing:-0.373333pt;}
.ws3c{word-spacing:-0.347200pt;}
.wsd1{word-spacing:-0.320000pt;}
.ws41{word-spacing:-0.297600pt;}
.ws7d{word-spacing:-0.266667pt;}
.wse4{word-spacing:-0.248000pt;}
.ws1c{word-spacing:-0.213333pt;}
.ws23{word-spacing:-0.198400pt;}
.ws16{word-spacing:-0.181333pt;}
.ws6f{word-spacing:-0.160000pt;}
.wsd6{word-spacing:-0.099200pt;}
.ws7c{word-spacing:-0.053333pt;}
.wsbc{word-spacing:-0.049600pt;}
.ws1{word-spacing:-0.039467pt;}
.ws3{word-spacing:0.000000pt;}
.ws96{word-spacing:0.049600pt;}
.wsad{word-spacing:0.053333pt;}
.ws92{word-spacing:0.106667pt;}
.wsf0{word-spacing:0.181333pt;}
.ws19{word-spacing:0.213333pt;}
.wsfc{word-spacing:0.226667pt;}
.ws56{word-spacing:0.248000pt;}
.ws4c{word-spacing:0.266667pt;}
.wsd7{word-spacing:0.297600pt;}
.ws4b{word-spacing:0.320000pt;}
.wsf8{word-spacing:0.362667pt;}
.ws21{word-spacing:0.396800pt;}
.wsf2{word-spacing:0.453333pt;}
.wsa3{word-spacing:0.480000pt;}
.ws10{word-spacing:0.634667pt;}
.ws91{word-spacing:0.640000pt;}
.ws58{word-spacing:0.744000pt;}
.wsd4{word-spacing:0.746667pt;}
.ws62{word-spacing:0.793600pt;}
.wscb{word-spacing:0.800000pt;}
.ws95{word-spacing:0.843200pt;}
.ws37{word-spacing:0.892800pt;}
.ws8{word-spacing:0.906667pt;}
.wse3{word-spacing:0.942400pt;}
.ws50{word-spacing:0.960000pt;}
.wsfb{word-spacing:0.997333pt;}
.ws7b{word-spacing:1.013333pt;}
.ws79{word-spacing:1.066667pt;}
.ws17{word-spacing:1.120000pt;}
.wse{word-spacing:1.133333pt;}
.ws8f{word-spacing:1.173333pt;}
.ws42{word-spacing:1.240000pt;}
.wsd{word-spacing:1.269333pt;}
.ws7a{word-spacing:1.280000pt;}
.ws38{word-spacing:1.289600pt;}
.ws54{word-spacing:1.333333pt;}
.ws55{word-spacing:1.438400pt;}
.wse2{word-spacing:1.440000pt;}
.ws60{word-spacing:1.488000pt;}
.ws4d{word-spacing:1.493333pt;}
.ws9{word-spacing:1.541333pt;}
.ws30{word-spacing:1.546667pt;}
.ws20{word-spacing:1.587200pt;}
.ws2e{word-spacing:1.600000pt;}
.wsef{word-spacing:1.632000pt;}
.ws3d{word-spacing:1.636800pt;}
.ws18{word-spacing:1.653333pt;}
.wsaf{word-spacing:1.686400pt;}
.ws1a{word-spacing:1.706667pt;}
.wsbb{word-spacing:1.736000pt;}
.ws31{word-spacing:1.760000pt;}
.wsc1{word-spacing:1.813333pt;}
.ws40{word-spacing:1.835200pt;}
.ws8e{word-spacing:1.866667pt;}
.ws2d{word-spacing:1.920000pt;}
.ws5{word-spacing:1.994667pt;}
.wsa7{word-spacing:2.026667pt;}
.ws8c{word-spacing:2.080000pt;}
.ws39{word-spacing:2.083200pt;}
.wsd2{word-spacing:2.133333pt;}
.wsd0{word-spacing:2.186667pt;}
.ws6d{word-spacing:2.240000pt;}
.ws2c{word-spacing:2.293333pt;}
.wsc6{word-spacing:2.346667pt;}
.ws12{word-spacing:2.357333pt;}
.ws99{word-spacing:2.380800pt;}
.ws78{word-spacing:2.400000pt;}
.ws6e{word-spacing:2.453333pt;}
.ws94{word-spacing:2.480000pt;}
.ws51{word-spacing:2.506667pt;}
.ws34{word-spacing:2.560000pt;}
.ws4e{word-spacing:2.613333pt;}
.wsba{word-spacing:2.628800pt;}
.ws52{word-spacing:2.666667pt;}
.ws11{word-spacing:2.674667pt;}
.ws7{word-spacing:2.720000pt;}
.wsc3{word-spacing:2.773333pt;}
.ws93{word-spacing:2.777600pt;}
.wsb7{word-spacing:2.826667pt;}
.wsc{word-spacing:2.856000pt;}
.ws33{word-spacing:2.880000pt;}
.ws3b{word-spacing:2.926400pt;}
.wsa4{word-spacing:2.933333pt;}
.wsaa{word-spacing:2.986667pt;}
.ws6{word-spacing:3.037333pt;}
.wsa9{word-spacing:3.040000pt;}
.ws5e{word-spacing:3.075200pt;}
.ws32{word-spacing:3.146667pt;}
.wscf{word-spacing:3.200000pt;}
.ws4f{word-spacing:3.253333pt;}
.wsa5{word-spacing:3.306667pt;}
.ws3a{word-spacing:3.372800pt;}
.wsdd{word-spacing:3.413333pt;}
.ws5d{word-spacing:3.472000pt;}
.wscc{word-spacing:3.520000pt;}
.ws7f{word-spacing:3.571200pt;}
.ws8b{word-spacing:3.573333pt;}
.ws64{word-spacing:3.620800pt;}
.ws5c{word-spacing:3.670400pt;}
.wsae{word-spacing:3.680000pt;}
.ws1f{word-spacing:3.720000pt;}
.ws89{word-spacing:3.946667pt;}
.ws1b{word-spacing:4.000000pt;}
.wsc2{word-spacing:4.160000pt;}
.wsdf{word-spacing:4.266667pt;}
.ws3e{word-spacing:4.315200pt;}
.wsab{word-spacing:4.320000pt;}
.ws71{word-spacing:4.373333pt;}
.ws2b{word-spacing:4.480000pt;}
.ws75{word-spacing:4.533333pt;}
.ws5a{word-spacing:4.563200pt;}
.wse1{word-spacing:4.640000pt;}
.ws8a{word-spacing:4.746667pt;}
.ws8d{word-spacing:4.906667pt;}
.wsde{word-spacing:4.960000pt;}
.ws76{word-spacing:5.013333pt;}
.ws5f{word-spacing:5.108800pt;}
.wsf{word-spacing:5.168000pt;}
.wse0{word-spacing:5.386667pt;}
.wsb4{word-spacing:5.440000pt;}
.ws1d{word-spacing:5.555200pt;}
.wsa{word-spacing:5.621333pt;}
.wsb9{word-spacing:7.093333pt;}
.ws5b{word-spacing:7.588800pt;}
.ws59{word-spacing:10.416000pt;}
.ws25{word-spacing:543.072000pt;}
.ws6c{word-spacing:734.064000pt;}
.wsc0{word-spacing:734.448000pt;}
.wsa2{word-spacing:734.544000pt;}
.wsdb{word-spacing:734.592000pt;}
.ws2a{word-spacing:735.984000pt;}
.wsf7{word-spacing:736.512000pt;}
.ws48{word-spacing:941.568000pt;}
.ws88{word-spacing:941.712000pt;}
.wsfa{word-spacing:941.904000pt;}
.wsc9{word-spacing:944.016000pt;}
.wsb3{word-spacing:944.448000pt;}
.wsec{word-spacing:946.128000pt;}
._1e{margin-left:-737.069547pt;}
._b{margin-left:-736.147840pt;}
._14{margin-left:-735.025707pt;}
._13{margin-left:-733.997653pt;}
._a{margin-left:-543.734293pt;}
._9{margin-left:-542.696533pt;}
._12{margin-left:-17.256533pt;}
._1d{margin-left:-7.978667pt;}
._e{margin-left:-6.709333pt;}
._4{margin-left:-5.598400pt;}
._6{margin-left:-4.526933pt;}
._1{margin-left:-2.986667pt;}
._2{margin-left:-1.664000pt;}
._0{width:1.109013pt;}
._3{width:2.058133pt;}
._7{width:3.118933pt;}
._5{width:4.220000pt;}
._15{width:6.107787pt;}
._1c{width:8.594667pt;}
._11{width:20.483733pt;}
._1a{width:25.245333pt;}
._1b{width:26.833067pt;}
._17{width:27.874667pt;}
._f{width:28.916267pt;}
._19{width:31.148267pt;}
._16{width:32.536533pt;}
._18{width:33.897067pt;}
._10{width:36.852267pt;}
._8{width:44.788267pt;}
._d{width:46.425067pt;}
._c{width:47.664533pt;}
.fs0{font-size:19.733333pt;}
.fs5{font-size:31.093333pt;}
.fs6{font-size:36.800000pt;}
.fs3{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:49.600000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:35.910533pt;}
.y26{bottom:80.504000pt;}
.yc9{bottom:80.507867pt;}
.y77{bottom:80.508000pt;}
.ybc{bottom:80.511733pt;}
.y55{bottom:80.511867pt;}
.ya4{bottom:80.515600pt;}
.y11e{bottom:83.782267pt;}
.y100{bottom:83.804933pt;}
.y172{bottom:91.103600pt;}
.yc4{bottom:95.970667pt;}
.y76{bottom:95.970800pt;}
.ybb{bottom:95.974533pt;}
.y54{bottom:95.974667pt;}
.ya3{bottom:95.978400pt;}
.y25{bottom:95.986133pt;}
.y94{bottom:95.994000pt;}
.y11d{bottom:99.116267pt;}
.yff{bottom:99.138933pt;}
.y171{bottom:106.437600pt;}
.y75{bottom:111.437333pt;}
.y53{bottom:111.437467pt;}
.ya2{bottom:111.441200pt;}
.yc3{bottom:111.445067pt;}
.y24{bottom:111.448933pt;}
.y93{bottom:111.456800pt;}
.y11c{bottom:114.450267pt;}
.yfe{bottom:114.472933pt;}
.y170{bottom:121.771600pt;}
.ya1{bottom:126.904000pt;}
.y74{bottom:126.904133pt;}
.yc2{bottom:126.907867pt;}
.ya7{bottom:126.908133pt;}
.y23{bottom:126.911733pt;}
.y52{bottom:126.915867pt;}
.y92{bottom:126.919600pt;}
.yc8{bottom:126.919733pt;}
.y11b{bottom:129.784267pt;}
.yfd{bottom:129.806933pt;}
.yc1{bottom:142.370667pt;}
.yba{bottom:142.370800pt;}
.ya6{bottom:142.370933pt;}
.y22{bottom:142.374533pt;}
.y73{bottom:142.374667pt;}
.ya0{bottom:142.378533pt;}
.y51{bottom:142.378667pt;}
.y91{bottom:142.382400pt;}
.yc7{bottom:142.382533pt;}
.y11a{bottom:145.118267pt;}
.yfc{bottom:145.140933pt;}
.y16f{bottom:152.439600pt;}
.y21{bottom:157.837333pt;}
.y72{bottom:157.837467pt;}
.y9f{bottom:157.841333pt;}
.y50{bottom:157.841467pt;}
.y90{bottom:157.845200pt;}
.yc6{bottom:157.845333pt;}
.y119{bottom:160.452267pt;}
.yfb{bottom:160.474933pt;}
.y16e{bottom:167.773600pt;}
.y71{bottom:173.304133pt;}
.y4f{bottom:173.304267pt;}
.y8f{bottom:173.308000pt;}
.yb9{bottom:173.308133pt;}
.y118{bottom:175.786267pt;}
.yfa{bottom:175.808933pt;}
.ya5{bottom:179.571600pt;}
.y16d{bottom:183.107600pt;}
.y8e{bottom:188.770800pt;}
.y4e{bottom:188.770933pt;}
.y70{bottom:188.774667pt;}
.y117{bottom:191.120267pt;}
.yf9{bottom:191.142933pt;}
.y20{bottom:195.971600pt;}
.y6f{bottom:204.237467pt;}
.y8d{bottom:204.237600pt;}
.yb8{bottom:204.237733pt;}
.yc0{bottom:204.245200pt;}
.y4d{bottom:204.253200pt;}
.y116{bottom:206.454267pt;}
.yf8{bottom:206.476933pt;}
.y175{bottom:207.626400pt;}
.y1f{bottom:212.371600pt;}
.y6e{bottom:219.704000pt;}
.y9e{bottom:219.704267pt;}
.ybf{bottom:219.708000pt;}
.y8c{bottom:219.708267pt;}
.y4c{bottom:219.716000pt;}
.yb7{bottom:219.723867pt;}
.y115{bottom:221.788267pt;}
.yf7{bottom:221.810933pt;}
.y16c{bottom:222.139600pt;}
.y145{bottom:222.162267pt;}
.y1e{bottom:228.771600pt;}
.ybe{bottom:235.170800pt;}
.y8b{bottom:235.171067pt;}
.y6d{bottom:235.174667pt;}
.y4b{bottom:235.178800pt;}
.yb6{bottom:235.186667pt;}
.y114{bottom:237.122267pt;}
.yf6{bottom:237.144933pt;}
.y16b{bottom:237.473600pt;}
.y144{bottom:237.496267pt;}
.y1d{bottom:245.171600pt;}
.y6c{bottom:250.637467pt;}
.y8a{bottom:250.637867pt;}
.y9d{bottom:250.641467pt;}
.y4a{bottom:250.641600pt;}
.yb5{bottom:250.649467pt;}
.y113{bottom:252.456267pt;}
.yf5{bottom:252.478933pt;}
.y16a{bottom:252.807600pt;}
.y143{bottom:252.830267pt;}
.y1c{bottom:261.571600pt;}
.y9c{bottom:266.104267pt;}
.y49{bottom:266.104400pt;}
.y89{bottom:266.104533pt;}
.y6b{bottom:266.108000pt;}
.yb4{bottom:266.112267pt;}
.y112{bottom:267.790267pt;}
.yf4{bottom:267.812933pt;}
.y169{bottom:268.141600pt;}
.y142{bottom:268.164267pt;}
.y1b{bottom:277.971600pt;}
.y6a{bottom:281.570800pt;}
.ybd{bottom:281.570933pt;}
.y88{bottom:281.571333pt;}
.y9b{bottom:281.574800pt;}
.y48{bottom:281.574933pt;}
.yb3{bottom:281.575067pt;}
.y111{bottom:283.124267pt;}
.yf3{bottom:283.146933pt;}
.y168{bottom:283.475600pt;}
.y141{bottom:283.498267pt;}
.y1a{bottom:294.371600pt;}
.y69{bottom:297.037333pt;}
.y9a{bottom:297.037600pt;}
.y47{bottom:297.037733pt;}
.yb2{bottom:297.037867pt;}
.y110{bottom:298.458267pt;}
.yf2{bottom:298.480933pt;}
.y167{bottom:298.809600pt;}
.y140{bottom:298.832267pt;}
.y19{bottom:310.771600pt;}
.y68{bottom:312.504133pt;}
.y99{bottom:312.508133pt;}
.yb1{bottom:312.508400pt;}
.y46{bottom:312.512133pt;}
.y10f{bottom:313.792267pt;}
.yf1{bottom:313.814933pt;}
.y166{bottom:314.143600pt;}
.y13f{bottom:314.166267pt;}
.y18{bottom:327.171600pt;}
.y67{bottom:327.970800pt;}
.y98{bottom:327.970933pt;}
.yb0{bottom:327.971200pt;}
.y45{bottom:327.974933pt;}
.y10e{bottom:329.126267pt;}
.yf0{bottom:329.148933pt;}
.y165{bottom:329.477600pt;}
.y13e{bottom:329.500267pt;}
.y44{bottom:343.437733pt;}
.y66{bottom:343.449067pt;}
.y87{bottom:343.571600pt;}
.y10d{bottom:344.460267pt;}
.yef{bottom:344.482933pt;}
.y164{bottom:344.811600pt;}
.y13d{bottom:344.834267pt;}
.y43{bottom:358.908267pt;}
.y65{bottom:358.911867pt;}
.y10c{bottom:359.794267pt;}
.yee{bottom:359.816933pt;}
.y86{bottom:359.971600pt;}
.y97{bottom:359.971733pt;}
.y163{bottom:360.145600pt;}
.y13c{bottom:360.168267pt;}
.y42{bottom:374.371067pt;}
.y64{bottom:374.374667pt;}
.y10b{bottom:375.128267pt;}
.yed{bottom:375.150933pt;}
.y162{bottom:375.479600pt;}
.y13b{bottom:375.502267pt;}
.y85{bottom:376.371600pt;}
.y96{bottom:376.371733pt;}
.y17{bottom:384.635467pt;}
.y63{bottom:389.837467pt;}
.y41{bottom:389.837733pt;}
.y10a{bottom:390.462267pt;}
.yec{bottom:390.484933pt;}
.y161{bottom:390.813600pt;}
.y13a{bottom:390.836267pt;}
.y84{bottom:392.771600pt;}
.y95{bottom:392.771733pt;}
.y16{bottom:399.969467pt;}
.y62{bottom:405.304267pt;}
.y40{bottom:405.308400pt;}
.y109{bottom:405.796267pt;}
.yeb{bottom:405.818933pt;}
.y160{bottom:406.147600pt;}
.y139{bottom:406.170267pt;}
.y83{bottom:409.171600pt;}
.y61{bottom:420.771067pt;}
.y3f{bottom:420.771200pt;}
.y108{bottom:421.130267pt;}
.yea{bottom:421.152933pt;}
.y15f{bottom:421.481600pt;}
.y138{bottom:421.504267pt;}
.y82{bottom:425.571600pt;}
.y15{bottom:430.637467pt;}
.y60{bottom:436.237733pt;}
.y3e{bottom:436.245733pt;}
.y107{bottom:436.464267pt;}
.ye9{bottom:436.486933pt;}
.y15e{bottom:436.815600pt;}
.y137{bottom:436.838267pt;}
.y81{bottom:441.971600pt;}
.y14{bottom:445.971467pt;}
.y3d{bottom:451.708533pt;}
.y106{bottom:451.798267pt;}
.ye8{bottom:451.820933pt;}
.y15d{bottom:452.149600pt;}
.y136{bottom:452.172267pt;}
.y80{bottom:458.371600pt;}
.yaf{bottom:458.371733pt;}
.y105{bottom:467.132267pt;}
.ye7{bottom:467.154933pt;}
.y3c{bottom:467.171333pt;}
.y15c{bottom:467.483600pt;}
.y135{bottom:467.506267pt;}
.y7f{bottom:474.771600pt;}
.y5f{bottom:474.771733pt;}
.y13{bottom:476.639467pt;}
.y104{bottom:482.466267pt;}
.ye6{bottom:482.488933pt;}
.y3b{bottom:482.638000pt;}
.y15b{bottom:482.817600pt;}
.y134{bottom:482.840267pt;}
.y7e{bottom:491.171600pt;}
.y5e{bottom:491.171733pt;}
.y12{bottom:491.973467pt;}
.y103{bottom:497.800267pt;}
.ye5{bottom:497.822933pt;}
.y3a{bottom:498.104667pt;}
.y15a{bottom:498.151600pt;}
.y133{bottom:498.174267pt;}
.y11{bottom:507.307467pt;}
.y7d{bottom:507.571600pt;}
.y5d{bottom:507.571733pt;}
.y102{bottom:513.134267pt;}
.ye4{bottom:513.156933pt;}
.y159{bottom:513.485600pt;}
.y132{bottom:513.508267pt;}
.y39{bottom:513.571467pt;}
.y174{bottom:514.963733pt;}
.y10{bottom:522.641467pt;}
.y5c{bottom:523.971600pt;}
.yae{bottom:523.971733pt;}
.y101{bottom:528.468267pt;}
.ye3{bottom:528.490933pt;}
.y158{bottom:528.819600pt;}
.y131{bottom:528.842267pt;}
.y38{bottom:529.038133pt;}
.yf{bottom:537.975467pt;}
.y5b{bottom:540.371600pt;}
.yad{bottom:540.371733pt;}
.y157{bottom:544.153600pt;}
.y130{bottom:544.176267pt;}
.y37{bottom:544.504800pt;}
.ye{bottom:553.309467pt;}
.y5a{bottom:556.771600pt;}
.yac{bottom:556.771733pt;}
.ye2{bottom:559.158933pt;}
.y156{bottom:559.487600pt;}
.y12f{bottom:559.510267pt;}
.yd{bottom:568.643467pt;}
.y59{bottom:573.171600pt;}
.yab{bottom:573.171733pt;}
.y155{bottom:574.821600pt;}
.y12e{bottom:574.844267pt;}
.yc{bottom:583.977467pt;}
.y58{bottom:589.571600pt;}
.y36{bottom:589.571733pt;}
.ye1{bottom:589.826933pt;}
.yd6{bottom:589.838267pt;}
.y154{bottom:590.155600pt;}
.y12d{bottom:590.178267pt;}
.yb{bottom:599.311467pt;}
.ye0{bottom:605.160933pt;}
.yd5{bottom:605.172267pt;}
.y153{bottom:605.489600pt;}
.y12c{bottom:605.512267pt;}
.y35{bottom:605.971600pt;}
.yaa{bottom:605.971733pt;}
.ya{bottom:614.645467pt;}
.ydf{bottom:620.494933pt;}
.yd4{bottom:620.506267pt;}
.y152{bottom:620.823600pt;}
.y12b{bottom:620.846267pt;}
.y34{bottom:622.371600pt;}
.ya9{bottom:622.371733pt;}
.y9{bottom:629.979467pt;}
.yde{bottom:635.828933pt;}
.yd3{bottom:635.840267pt;}
.y151{bottom:636.157600pt;}
.y12a{bottom:636.180267pt;}
.y33{bottom:638.771600pt;}
.ya8{bottom:638.771733pt;}
.y8{bottom:645.313467pt;}
.ydd{bottom:651.162933pt;}
.yd2{bottom:651.174267pt;}
.y150{bottom:651.491600pt;}
.y129{bottom:651.514267pt;}
.y173{bottom:651.972400pt;}
.y32{bottom:655.171600pt;}
.y7c{bottom:655.171733pt;}
.y7{bottom:660.647467pt;}
.ydc{bottom:666.496933pt;}
.yd1{bottom:666.508267pt;}
.y14f{bottom:666.825600pt;}
.y128{bottom:666.848267pt;}
.y31{bottom:671.571600pt;}
.y7b{bottom:671.571733pt;}
.y6{bottom:675.981467pt;}
.ydb{bottom:681.830933pt;}
.yd0{bottom:681.842267pt;}
.y14e{bottom:682.159600pt;}
.y127{bottom:682.182267pt;}
.y30{bottom:687.971600pt;}
.y7a{bottom:687.971733pt;}
.yda{bottom:697.164933pt;}
.ycf{bottom:697.176267pt;}
.y14d{bottom:697.493600pt;}
.y126{bottom:697.516267pt;}
.y2f{bottom:704.371600pt;}
.y79{bottom:704.371733pt;}
.yd9{bottom:712.498933pt;}
.yce{bottom:712.510267pt;}
.y14c{bottom:712.827600pt;}
.y125{bottom:712.850267pt;}
.y2e{bottom:720.771600pt;}
.y78{bottom:720.771733pt;}
.yd8{bottom:727.832933pt;}
.ycd{bottom:727.844267pt;}
.y14b{bottom:728.161600pt;}
.y124{bottom:728.184267pt;}
.y57{bottom:737.171600pt;}
.y2d{bottom:737.171733pt;}
.y5{bottom:737.314800pt;}
.yd7{bottom:743.166933pt;}
.ycc{bottom:743.178267pt;}
.y14a{bottom:743.495600pt;}
.y123{bottom:743.518267pt;}
.y56{bottom:753.571600pt;}
.y2c{bottom:753.571733pt;}
.y149{bottom:758.829600pt;}
.y122{bottom:758.852267pt;}
.y2{bottom:762.125333pt;}
.y1{bottom:768.790267pt;}
.y2b{bottom:769.971600pt;}
.yc5{bottom:769.971733pt;}
.ycb{bottom:773.846267pt;}
.y148{bottom:774.163600pt;}
.y121{bottom:774.186267pt;}
.y4{bottom:775.192133pt;}
.y2a{bottom:786.371600pt;}
.y147{bottom:789.497600pt;}
.y120{bottom:789.520267pt;}
.y3{bottom:797.848133pt;}
.y29{bottom:802.771600pt;}
.yca{bottom:804.514267pt;}
.y146{bottom:804.831600pt;}
.y11f{bottom:804.854267pt;}
.y27{bottom:849.726533pt;}
.h2{height:13.596267pt;}
.hf{height:40.482667pt;}
.he{height:40.618667pt;}
.h6{height:40.800000pt;}
.h10{height:41.434667pt;}
.hd{height:42.704000pt;}
.h5{height:42.840000pt;}
.h8{height:44.441600pt;}
.hc{height:44.540800pt;}
.h9{height:45.216000pt;}
.hb{height:45.334400pt;}
.h7{height:48.000000pt;}
.ha{height:48.000533pt;}
.h11{height:50.400000pt;}
.h4{height:60.288000pt;}
.h3{height:80.640000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x7{left:22.707867pt;}
.x6{left:25.436000pt;}
.x5{left:64.252000pt;}
.x3{left:71.811067pt;}
.xb{left:75.585333pt;}
.x8{left:83.149600pt;}
.x4{left:90.714133pt;}
.xc{left:314.163333pt;}
.x9{left:321.711067pt;}
.xd{left:325.496667pt;}
.xa{left:333.044400pt;}
.x2{left:578.865333pt;}
.x1{left:581.593467pt;}
}




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