
    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_7b6995713f1e95e30996c952.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_5808bb76ccb1dfda301d601d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.863770;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_20f2587b6c634065284f6218.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_08b10b4dd8ffb02e3f7fd49c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_b2af709d37edfba908f4d111.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.863770;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_744fa848f6b4bce29954525f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_79fff680c80724f17344b1bf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.881836;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_d40572b1933fc5d64d46e252.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.871094;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);}
.v0{vertical-align:0.000000px;}
.ls1f{letter-spacing:-0.014400px;}
.lsd{letter-spacing:0.000000px;}
.ls52{letter-spacing:0.077760px;}
.ls62{letter-spacing:0.093312px;}
.ls51{letter-spacing:0.116640px;}
.ls71{letter-spacing:0.132192px;}
.ls61{letter-spacing:0.139968px;}
.ls50{letter-spacing:0.163296px;}
.ls3{letter-spacing:0.167040px;}
.ls77{letter-spacing:0.225504px;}
.ls69{letter-spacing:0.226800px;}
.ls4a{letter-spacing:0.247680px;}
.ls7{letter-spacing:0.259200px;}
.ls16{letter-spacing:0.265680px;}
.ls3c{letter-spacing:0.266256px;}
.ls1b{letter-spacing:0.272160px;}
.ls44{letter-spacing:0.278640px;}
.ls4{letter-spacing:0.283968px;}
.ls2e{letter-spacing:0.291600px;}
.ls5{letter-spacing:0.298080px;}
.ls18{letter-spacing:0.304560px;}
.ls2a{letter-spacing:0.309024px;}
.ls37{letter-spacing:0.309600px;}
.ls1e{letter-spacing:0.317376px;}
.ls64{letter-spacing:0.317520px;}
.ls6{letter-spacing:0.324000px;}
.ls7b{letter-spacing:0.330480px;}
.ls29{letter-spacing:0.336960px;}
.ls3f{letter-spacing:0.340560px;}
.ls45{letter-spacing:0.352944px;}
.ls79{letter-spacing:0.356400px;}
.ls35{letter-spacing:0.359136px;}
.ls4f{letter-spacing:0.362304px;}
.ls28{letter-spacing:0.362880px;}
.ls13{letter-spacing:0.375840px;}
.lsc{letter-spacing:0.388800px;}
.ls2c{letter-spacing:0.395280px;}
.ls1a{letter-spacing:0.401760px;}
.ls73{letter-spacing:0.414720px;}
.ls41{letter-spacing:0.427248px;}
.ls48{letter-spacing:0.445824px;}
.ls74{letter-spacing:0.453600px;}
.ls6b{letter-spacing:0.460080px;}
.ls4c{letter-spacing:0.476784px;}
.ls59{letter-spacing:0.479520px;}
.ls3b{letter-spacing:0.482976px;}
.ls3d{letter-spacing:0.489168px;}
.ls2b{letter-spacing:0.498960px;}
.ls40{letter-spacing:0.507744px;}
.ls20{letter-spacing:0.518400px;}
.ls42{letter-spacing:0.520128px;}
.ls47{letter-spacing:0.526320px;}
.ls2f{letter-spacing:0.531360px;}
.ls0{letter-spacing:0.532224px;}
.ls43{letter-spacing:0.538704px;}
.ls5f{letter-spacing:0.544320px;}
.ls36{letter-spacing:0.544896px;}
.ls5e{letter-spacing:0.550800px;}
.ls1{letter-spacing:0.551232px;}
.ls2{letter-spacing:0.570240px;}
.ls19{letter-spacing:0.576720px;}
.ls49{letter-spacing:0.582048px;}
.ls8{letter-spacing:0.583200px;}
.ls38{letter-spacing:0.588240px;}
.ls3e{letter-spacing:0.594432px;}
.lsf{letter-spacing:0.596160px;}
.ls4e{letter-spacing:0.600624px;}
.ls14{letter-spacing:0.602640px;}
.ls6f{letter-spacing:0.615600px;}
.ls21{letter-spacing:0.622080px;}
.ls5a{letter-spacing:0.628560px;}
.lsa{letter-spacing:0.635040px;}
.lsb{letter-spacing:0.648000px;}
.lse{letter-spacing:0.654480px;}
.ls15{letter-spacing:0.667440px;}
.ls4b{letter-spacing:0.668736px;}
.ls66{letter-spacing:0.673920px;}
.ls46{letter-spacing:0.674928px;}
.ls3a{letter-spacing:0.699696px;}
.ls7a{letter-spacing:0.706320px;}
.ls56{letter-spacing:0.732240px;}
.ls10{letter-spacing:0.745200px;}
.ls39{letter-spacing:0.749232px;}
.ls12{letter-spacing:0.751680px;}
.ls6e{letter-spacing:0.771120px;}
.ls30{letter-spacing:0.777600px;}
.ls2d{letter-spacing:0.797040px;}
.ls5d{letter-spacing:0.803520px;}
.ls11{letter-spacing:0.817344px;}
.ls67{letter-spacing:0.829440px;}
.ls5c{letter-spacing:0.848880px;}
.ls4d{letter-spacing:0.922608px;}
.ls60{letter-spacing:0.946080px;}
.ls5b{letter-spacing:0.952560px;}
.ls17{letter-spacing:1.023840px;}
.ls63{letter-spacing:1.036800px;}
.ls65{letter-spacing:1.049760px;}
.ls25{letter-spacing:1.101600px;}
.ls24{letter-spacing:1.360800px;}
.ls6c{letter-spacing:1.425600px;}
.ls22{letter-spacing:1.814400px;}
.ls55{letter-spacing:2.462400px;}
.ls68{letter-spacing:2.916000px;}
.ls6d{letter-spacing:3.240000px;}
.ls70{letter-spacing:3.564000px;}
.ls34{letter-spacing:4.885920px;}
.ls53{letter-spacing:5.119200px;}
.ls78{letter-spacing:6.674400px;}
.ls6a{letter-spacing:8.488800px;}
.ls23{letter-spacing:8.748000px;}
.ls57{letter-spacing:9.007200px;}
.ls54{letter-spacing:9.525600px;}
.ls72{letter-spacing:10.303200px;}
.ls31{letter-spacing:12.506400px;}
.ls32{letter-spacing:12.532320px;}
.ls1c{letter-spacing:12.584160px;}
.ls1d{letter-spacing:12.960000px;}
.ls76{letter-spacing:13.024800px;}
.ls27{letter-spacing:14.709600px;}
.ls26{letter-spacing:14.748480px;}
.ls75{letter-spacing:17.288640px;}
.ls9{letter-spacing:23.781600px;}
.ls33{letter-spacing:39.852000px;}
.ls58{letter-spacing:59.616000px;}
.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;}
}
.ws0{word-spacing:-23.502528px;}
.ws9e{word-spacing:-1.114560px;}
.ws15{word-spacing:-1.088640px;}
.ws8f{word-spacing:-1.017360px;}
.ws95{word-spacing:-1.010880px;}
.ws7e{word-spacing:-0.984528px;}
.ws91{word-spacing:-0.913680px;}
.ws4{word-spacing:-0.912384px;}
.wsa0{word-spacing:-0.894240px;}
.ws92{word-spacing:-0.868320px;}
.ws43{word-spacing:-0.861840px;}
.wsb0{word-spacing:-0.835920px;}
.ws7{word-spacing:-0.816480px;}
.ws68{word-spacing:-0.811152px;}
.ws3{word-spacing:-0.810000px;}
.ws8b{word-spacing:-0.797040px;}
.ws69{word-spacing:-0.761616px;}
.ws9f{word-spacing:-0.738720px;}
.ws78{word-spacing:-0.736848px;}
.ws21{word-spacing:-0.732240px;}
.ws7c{word-spacing:-0.730656px;}
.ws1{word-spacing:-0.719280px;}
.ws3c{word-spacing:-0.712800px;}
.ws1a{word-spacing:-0.699840px;}
.ws90{word-spacing:-0.693360px;}
.ws2d{word-spacing:-0.686880px;}
.wsb1{word-spacing:-0.680400px;}
.ws9{word-spacing:-0.667440px;}
.ws7f{word-spacing:-0.662544px;}
.ws22{word-spacing:-0.660960px;}
.ws6e{word-spacing:-0.656352px;}
.ws6b{word-spacing:-0.650160px;}
.ws5{word-spacing:-0.648000px;}
.ws7b{word-spacing:-0.643968px;}
.ws31{word-spacing:-0.641520px;}
.ws1b{word-spacing:-0.635040px;}
.ws93{word-spacing:-0.615600px;}
.ws94{word-spacing:-0.609120px;}
.ws74{word-spacing:-0.606816px;}
.ws75{word-spacing:-0.600624px;}
.ws8c{word-spacing:-0.596160px;}
.ws79{word-spacing:-0.588240px;}
.ws2e{word-spacing:-0.583200px;}
.ws72{word-spacing:-0.582048px;}
.ws70{word-spacing:-0.569664px;}
.ws2f{word-spacing:-0.563760px;}
.ws6d{word-spacing:-0.551088px;}
.ws6a{word-spacing:-0.544896px;}
.ws8d{word-spacing:-0.544320px;}
.ws7d{word-spacing:-0.538704px;}
.wsac{word-spacing:-0.524880px;}
.ws7a{word-spacing:-0.507744px;}
.ws71{word-spacing:-0.489168px;}
.ws23{word-spacing:-0.466560px;}
.ws32{word-spacing:-0.460080px;}
.ws8{word-spacing:-0.440640px;}
.ws73{word-spacing:-0.421056px;}
.ws80{word-spacing:-0.415584px;}
.ws77{word-spacing:-0.414864px;}
.ws6f{word-spacing:-0.402480px;}
.ws25{word-spacing:-0.400896px;}
.wse5{word-spacing:-0.395280px;}
.ws2a{word-spacing:-0.392544px;}
.ws9d{word-spacing:-0.388800px;}
.ws17{word-spacing:-0.369360px;}
.ws81{word-spacing:-0.367488px;}
.ws6{word-spacing:-0.362880px;}
.ws9c{word-spacing:-0.356400px;}
.ws76{word-spacing:-0.340560px;}
.ws28{word-spacing:-0.336960px;}
.ws20{word-spacing:-0.330480px;}
.ws6c{word-spacing:-0.328176px;}
.wsc1{word-spacing:-0.309024px;}
.ws82{word-spacing:-0.241056px;}
.ws97{word-spacing:-0.217728px;}
.wsb3{word-spacing:-0.209952px;}
.ws84{word-spacing:-0.194400px;}
.ws98{word-spacing:-0.171072px;}
.ws85{word-spacing:-0.155520px;}
.ws83{word-spacing:-0.077760px;}
.ws2{word-spacing:-0.064800px;}
.ws26{word-spacing:-0.057600px;}
.ws24{word-spacing:0.000000px;}
.wsc5{word-spacing:8.125920px;}
.wse7{word-spacing:8.897040px;}
.ws4e{word-spacing:9.072000px;}
.ws87{word-spacing:9.117360px;}
.wsb4{word-spacing:9.123840px;}
.ws3d{word-spacing:9.149760px;}
.ws52{word-spacing:9.188640px;}
.ws50{word-spacing:9.201600px;}
.wsab{word-spacing:9.214560px;}
.wsa4{word-spacing:9.259920px;}
.ws29{word-spacing:9.288000px;}
.ws51{word-spacing:9.318240px;}
.ws40{word-spacing:9.344160px;}
.ws54{word-spacing:9.570960px;}
.ws86{word-spacing:9.583920px;}
.ws53{word-spacing:9.635760px;}
.ws89{word-spacing:9.648720px;}
.ws3e{word-spacing:9.732960px;}
.ws4f{word-spacing:9.752400px;}
.ws8a{word-spacing:9.797760px;}
.ws60{word-spacing:9.810720px;}
.wsa8{word-spacing:9.894960px;}
.wseb{word-spacing:9.901440px;}
.ws27{word-spacing:9.936000px;}
.ws9a{word-spacing:9.959760px;}
.wsd1{word-spacing:10.044000px;}
.wsd2{word-spacing:10.154160px;}
.wsd3{word-spacing:10.160640px;}
.ws9b{word-spacing:10.212480px;}
.wsad{word-spacing:10.290240px;}
.wsaa{word-spacing:10.322640px;}
.wsea{word-spacing:10.380960px;}
.ws48{word-spacing:10.426320px;}
.ws3f{word-spacing:10.497600px;}
.ws18{word-spacing:10.562400px;}
.wsdc{word-spacing:10.575360px;}
.ws19{word-spacing:10.692000px;}
.wsc7{word-spacing:10.938240px;}
.wsc3{word-spacing:10.944720px;}
.wscc{word-spacing:11.061360px;}
.wsc4{word-spacing:11.067840px;}
.ws62{word-spacing:11.139120px;}
.wsb6{word-spacing:11.203920px;}
.ws64{word-spacing:11.281680px;}
.ws63{word-spacing:11.288160px;}
.wsb8{word-spacing:11.346480px;}
.wsc6{word-spacing:11.352960px;}
.wsdb{word-spacing:11.391840px;}
.wsbb{word-spacing:11.657520px;}
.wsb7{word-spacing:11.715840px;}
.wse3{word-spacing:11.728800px;}
.wsa3{word-spacing:11.748240px;}
.wsbc{word-spacing:11.800080px;}
.wse2{word-spacing:11.838960px;}
.wse1{word-spacing:11.845440px;}
.wsa2{word-spacing:11.890800px;}
.wsbd{word-spacing:11.962080px;}
.wsbe{word-spacing:12.175920px;}
.wsa1{word-spacing:12.195360px;}
.ws5c{word-spacing:12.266640px;}
.ws61{word-spacing:12.441600px;}
.wsdd{word-spacing:12.448080px;}
.wsa9{word-spacing:12.461040px;}
.wsde{word-spacing:12.571200px;}
.ws5d{word-spacing:13.018320px;}
.ws30{word-spacing:13.083120px;}
.ws47{word-spacing:13.342320px;}
.wsae{word-spacing:13.413600px;}
.ws46{word-spacing:13.458960px;}
.wsa6{word-spacing:13.620960px;}
.wsaf{word-spacing:13.724640px;}
.ws96{word-spacing:14.081040px;}
.wsa7{word-spacing:14.152320px;}
.ws5e{word-spacing:14.320800px;}
.ws41{word-spacing:14.398560px;}
.ws4b{word-spacing:14.709600px;}
.ws49{word-spacing:14.819760px;}
.ws4c{word-spacing:14.826240px;}
.wsa{word-spacing:14.949360px;}
.wsb{word-spacing:14.962320px;}
.wse{word-spacing:14.968800px;}
.wsd{word-spacing:15.098400px;}
.wsda{word-spacing:15.215040px;}
.ws4a{word-spacing:15.441840px;}
.ws4d{word-spacing:15.454800px;}
.wsd9{word-spacing:15.629760px;}
.wsd8{word-spacing:15.765840px;}
.wsba{word-spacing:15.869520px;}
.wsd5{word-spacing:15.999120px;}
.wsd7{word-spacing:16.057440px;}
.ws88{word-spacing:16.258320px;}
.wsc{word-spacing:16.264800px;}
.wsd6{word-spacing:16.426800px;}
.wsb2{word-spacing:16.698960px;}
.ws2b{word-spacing:16.828560px;}
.ws42{word-spacing:16.977600px;}
.wse6{word-spacing:17.055360px;}
.ws67{word-spacing:17.139600px;}
.ws66{word-spacing:17.910720px;}
.ws65{word-spacing:18.040320px;}
.ws2c{word-spacing:18.487440px;}
.wsc2{word-spacing:18.908640px;}
.wsf{word-spacing:19.083600px;}
.wse8{word-spacing:19.103040px;}
.wse9{word-spacing:19.167840px;}
.ws10{word-spacing:19.239120px;}
.wscd{word-spacing:19.433520px;}
.wsce{word-spacing:19.971360px;}
.ws11{word-spacing:20.016720px;}
.ws5a{word-spacing:20.962800px;}
.wsb9{word-spacing:21.014640px;}
.ws5b{word-spacing:21.332160px;}
.wsb5{word-spacing:21.513600px;}
.ws57{word-spacing:21.740400px;}
.ws55{word-spacing:21.967200px;}
.ws59{word-spacing:22.077360px;}
.ws56{word-spacing:22.083840px;}
.ws35{word-spacing:22.109760px;}
.ws12{word-spacing:22.466160px;}
.ws13{word-spacing:22.550400px;}
.ws58{word-spacing:22.647600px;}
.ws16{word-spacing:22.900320px;}
.ws14{word-spacing:23.178960px;}
.wsd4{word-spacing:23.191920px;}
.wsc0{word-spacing:24.099120px;}
.wsbf{word-spacing:24.306480px;}
.ws45{word-spacing:24.377760px;}
.wscb{word-spacing:25.848720px;}
.ws39{word-spacing:26.276400px;}
.ws3b{word-spacing:26.503200px;}
.ws37{word-spacing:26.568000px;}
.ws36{word-spacing:26.632800px;}
.ws34{word-spacing:26.755920px;}
.ws33{word-spacing:26.969760px;}
.ws38{word-spacing:27.228960px;}
.ws1d{word-spacing:27.637200px;}
.ws3a{word-spacing:27.799200px;}
.wse0{word-spacing:27.857520px;}
.ws1f{word-spacing:27.864000px;}
.wsdf{word-spacing:28.226880px;}
.ws1c{word-spacing:28.635120px;}
.ws1e{word-spacing:29.160000px;}
.wse4{word-spacing:29.924640px;}
.ws8e{word-spacing:30.028320px;}
.wscf{word-spacing:48.237120px;}
.wsd0{word-spacing:49.144320px;}
.wsa5{word-spacing:50.978160px;}
.ws99{word-spacing:66.141360px;}
.wsc8{word-spacing:103.025520px;}
.wsca{word-spacing:103.148640px;}
.wsc9{word-spacing:103.563360px;}
.ws44{word-spacing:192.929040px;}
.ws5f{word-spacing:849.268800px;}
._8{margin-left:-8.648640px;}
._9{margin-left:-7.292160px;}
._7{margin-left:-3.762720px;}
._0{margin-left:-1.235520px;}
._1{width:1.393200px;}
._5{width:2.563920px;}
._b{width:3.667680px;}
._2{width:4.710960px;}
._3{width:5.799600px;}
._4{width:7.419600px;}
._a{width:8.706960px;}
._c{width:10.260000px;}
._d{width:12.573360px;}
._6{width:14.904000px;}
.fc7{color:rgb(54,95,145);}
.fc6{color:transparent;}
.fc5{color:rgb(31,73,125);}
.fc4{color:rgb(79,129,189);}
.fc2{color:rgb(0,0,255);}
.fc8{color:rgb(255,255,255);}
.fc3{color:rgb(127,127,127);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs5{font-size:53.280000px;}
.fs4{font-size:61.920000px;}
.fs2{font-size:64.800000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs1{font-size:83.520000px;}
.fs0{font-size:95.040000px;}
.y25{bottom:-26.647500px;}
.y22{bottom:-3.721800px;}
.y0{bottom:0.000000px;}
.y7f{bottom:4.250580px;}
.y8b{bottom:4.267140px;}
.y97{bottom:4.319700px;}
.ya9{bottom:4.617420px;}
.y94{bottom:4.643700px;}
.yaf{bottom:4.656300px;}
.y70{bottom:4.679700px;}
.y24{bottom:11.519700px;}
.y35{bottom:16.078200px;}
.y21{bottom:16.080000px;}
.y7e{bottom:23.337420px;}
.y96{bottom:23.399700px;}
.y9b{bottom:23.693460px;}
.ya8{bottom:23.704260px;}
.y8a{bottom:23.710020px;}
.y93{bottom:23.730540px;}
.yae{bottom:23.743140px;}
.y6f{bottom:23.759700px;}
.y7d{bottom:42.780300px;}
.y89{bottom:42.796860px;}
.yad{bottom:42.829980px;}
.ya7{bottom:43.147140px;}
.y92{bottom:43.173420px;}
.y127{bottom:53.102400px;}
.y138{bottom:54.603600px;}
.y19a{bottom:55.678200px;}
.y17c{bottom:57.476400px;}
.y16c{bottom:58.918200px;}
.yd6{bottom:59.285400px;}
.y1{bottom:60.760500px;}
.y142{bottom:61.798200px;}
.y7c{bottom:61.867140px;}
.ya6{bottom:62.233980px;}
.y88{bottom:62.239740px;}
.y91{bottom:62.260260px;}
.yac{bottom:62.272860px;}
.y14c{bottom:64.698000px;}
.y5e{bottom:66.510600px;}
.y182{bottom:69.363600px;}
.y1a2{bottom:74.769000px;}
.y126{bottom:77.224200px;}
.y137{bottom:77.640000px;}
.y7b{bottom:81.310020px;}
.ya5{bottom:81.320820px;}
.y87{bottom:81.326580px;}
.yab{bottom:81.359700px;}
.y90{bottom:81.703140px;}
.y16b{bottom:82.325400px;}
.y15b{bottom:83.032800px;}
.y196{bottom:83.400000px;}
.yd5{bottom:83.407200px;}
.yfe{bottom:86.560800px;}
.y199{bottom:89.520000px;}
.y5d{bottom:89.547000px;}
.y17b{bottom:91.674600px;}
.y181{bottom:92.756400px;}
.y141{bottom:95.640000px;}
.y1a1{bottom:98.161800px;}
.y14b{bottom:98.539800px;}
.y7a{bottom:100.396860px;}
.y86{bottom:100.413420px;}
.ya4{bottom:100.763700px;}
.y8f{bottom:100.789980px;}
.y125{bottom:101.346000px;}
.y1d0{bottom:105.149400px;}
.y16a{bottom:105.361800px;}
.yd4{bottom:107.172600px;}
.y136{bottom:111.838200px;}
.y8c{bottom:113.919000px;}
.y195{bottom:117.598200px;}
.y79{bottom:119.483700px;}
.y9a{bottom:119.839740px;}
.ya3{bottom:119.850540px;}
.y85{bottom:119.856300px;}
.y8e{bottom:119.876820px;}
.y1a0{bottom:121.198200px;}
.y15a{bottom:121.200000px;}
.yfd{bottom:125.084400px;}
.y1cf{bottom:125.302200px;}
.y5c{bottom:127.714200px;}
.yd3{bottom:130.565400px;}
.y180{bottom:130.923600px;}
.y151{bottom:130.929000px;}
.y78{bottom:138.926580px;}
.y84{bottom:138.943140px;}
.ya2{bottom:139.293420px;}
.y8d{bottom:139.319700px;}
.y124{bottom:140.226000px;}
.y169{bottom:143.529000px;}
.y159{bottom:144.592800px;}
.y19f{bottom:144.958200px;}
.y1ce{bottom:145.455000px;}
.yfc{bottom:148.849800px;}
.y5b{bottom:150.750600px;}
.y150{bottom:154.321800px;}
.yd2{bottom:154.687200px;}
.y77{bottom:158.013420px;}
.ya1{bottom:158.380260px;}
.y83{bottom:158.386020px;}
.y123{bottom:163.262400px;}
.y17f{bottom:164.765400px;}
.y1cd{bottom:165.251400px;}
.y168{bottom:166.565400px;}
.yfb{bottom:172.971600px;}
.y5a{bottom:174.143400px;}
.y76{bottom:177.456300px;}
.ya0{bottom:177.467100px;}
.y82{bottom:177.472860px;}
.yd1{bottom:178.809000px;}
.y178{bottom:181.334400px;}
.y158{bottom:182.760000px;}
.y23{bottom:183.039000px;}
.y1cc{bottom:185.404200px;}
.y19e{bottom:185.647200px;}
.y14f{bottom:188.163600px;}
.y167{bottom:189.958200px;}
.y75{bottom:196.543140px;}
.y81{bottom:196.559700px;}
.y9f{bottom:196.909980px;}
.yfa{bottom:197.093400px;}
.y59{bottom:197.179800px;}
.y122{bottom:201.429600px;}
.yd0{bottom:202.574400px;}
.y177{bottom:204.370800px;}
.y1cb{bottom:205.557000px;}
.y166{bottom:213.718200px;}
.y74{bottom:215.629980px;}
.y99{bottom:215.986020px;}
.y9e{bottom:215.996820px;}
.y157{bottom:216.601800px;}
.y19d{bottom:219.845400px;}
.y58{bottom:220.216200px;}
.yf9{bottom:221.215200px;}
.y121{bottom:224.466000px;}
.y1ca{bottom:225.709800px;}
.ycf{bottom:226.696200px;}
.y176{bottom:227.407200px;}
.y73{bottom:235.072860px;}
.y9d{bottom:235.439700px;}
.y57{bottom:243.609000px;}
.yf8{bottom:245.337000px;}
.y1c9{bottom:245.862600px;}
.y120{bottom:247.146000px;}
.yce{bottom:250.818000px;}
.y72{bottom:254.159700px;}
.y165{bottom:254.418000px;}
.y175{bottom:265.574400px;}
.y1c8{bottom:266.015400px;}
.y56{bottom:266.645400px;}
.yf7{bottom:269.102400px;}
.y80{bottom:269.439000px;}
.ycd{bottom:274.939800px;}
.y11f{bottom:284.940600px;}
.y1c7{bottom:286.168200px;}
.y164{bottom:288.259800px;}
.y55{bottom:289.681800px;}
.yf6{bottom:293.224200px;}
.ycc{bottom:298.705200px;}
.y174{bottom:299.416200px;}
.y186{bottom:299.776200px;}
.y1c6{bottom:306.321000px;}
.y11e{bottom:309.062400px;}
.y54{bottom:313.074600px;}
.yf5{bottom:317.346000px;}
.y185{bottom:322.812600px;}
.ycb{bottom:322.827000px;}
.y1c5{bottom:326.473800px;}
.y11d{bottom:333.184200px;}
.yf4{bottom:341.467800px;}
.y1c4{bottom:346.626600px;}
.yca{bottom:346.948800px;}
.y53{bottom:351.241800px;}
.y1f{bottom:351.315600px;}
.y11c{bottom:357.306000px;}
.y184{bottom:360.979800px;}
.yf3{bottom:365.233200px;}
.y1c3{bottom:366.779400px;}
.yc9{bottom:371.070600px;}
.y52{bottom:374.278200px;}
.y14a{bottom:379.334400px;}
.y11b{bottom:381.427800px;}
.y1c2{bottom:386.932200px;}
.yf2{bottom:389.355000px;}
.y1e{bottom:389.482800px;}
.y194{bottom:394.101600px;}
.y183{bottom:395.178000px;}
.yc8{bottom:395.192400px;}
.y51{bottom:397.422600px;}
.y149{bottom:402.370800px;}
.y11a{bottom:405.193200px;}
.y140{bottom:405.967200px;}
.y1c1{bottom:407.085000px;}
.y1d{bottom:412.875600px;}
.yf1{bottom:413.476800px;}
.y193{bottom:417.494400px;}
.y50{bottom:420.815400px;}
.yb0{bottom:421.078200px;}
.y148{bottom:425.407200px;}
.y1c0{bottom:427.237800px;}
.y119{bottom:429.315000px;}
.yc7{bottom:434.072400px;}
.y1c{bottom:435.912000px;}
.yf0{bottom:437.598600px;}
.y192{bottom:440.530800px;}
.y4f{bottom:443.851800px;}
.y13f{bottom:444.134400px;}
.y1bf{bottom:447.390600px;}
.y147{bottom:448.800000px;}
.y118{bottom:453.436800px;}
.y1ed{bottom:454.918200px;}
.y1b{bottom:456.437400px;}
.yc6{bottom:457.108800px;}
.yef{bottom:461.720400px;}
.y191{bottom:463.567200px;}
.y1be{bottom:467.543400px;}
.y1a{bottom:476.590200px;}
.y117{bottom:477.558600px;}
.y13e{bottom:478.332600px;}
.y4e{bottom:482.019000px;}
.y71{bottom:482.559000px;}
.y1a9{bottom:484.438200px;}
.yee{bottom:485.485800px;}
.y190{bottom:486.960000px;}
.y146{bottom:486.967200px;}
.y1bd{bottom:487.696200px;}
.yc5{bottom:495.276000px;}
.yaa{bottom:495.879000px;}
.y19{bottom:496.743000px;}
.y116{bottom:501.324000px;}
.y4d{bottom:505.055400px;}
.y1bc{bottom:507.849000px;}
.yed{bottom:509.607600px;}
.y18f{bottom:509.996400px;}
.y1ec{bottom:515.538600px;}
.y18{bottom:516.895800px;}
.yc4{bottom:518.312400px;}
.y145{bottom:520.809000px;}
.y1a8{bottom:522.605400px;}
.y115{bottom:525.445800px;}
.y1bb{bottom:528.001800px;}
.y4c{bottom:528.448200px;}
.yec{bottom:533.729400px;}
.y1eb{bottom:535.691400px;}
.y17{bottom:537.048600px;}
.yc3{bottom:540.992400px;}
.y1a7{bottom:545.998200px;}
.y135{bottom:546.369000px;}
.y1ba{bottom:547.798200px;}
.y18e{bottom:548.163600px;}
.y114{bottom:549.567600px;}
.y4b{bottom:551.484600px;}
.y1ea{bottom:555.844200px;}
.y16{bottom:557.201400px;}
.yeb{bottom:557.851200px;}
.y156{bottom:565.080000px;}
.y134{bottom:569.405400px;}
.y1a6{bottom:569.758200px;}
.y18d{bottom:571.200000px;}
.y1b9{bottom:571.918200px;}
.y163{bottom:571.938000px;}
.y113{bottom:573.689400px;}
.y4a{bottom:574.521000px;}
.y1e9{bottom:575.997000px;}
.y15{bottom:577.354200px;}
.yc2{bottom:578.787000px;}
.yea{bottom:581.616600px;}
.y155{bottom:588.116400px;}
.y9c{bottom:593.439000px;}
.y18c{bottom:594.592800px;}
.y19c{bottom:594.600000px;}
.y162{bottom:595.330800px;}
.y1e8{bottom:596.149800px;}
.y14{bottom:597.507000px;}
.y112{bottom:597.811200px;}
.y49{bottom:597.913800px;}
.y34{bottom:601.783800px;}
.ye9{bottom:605.738400px;}
.y133{bottom:607.572600px;}
.y1a5{bottom:610.443600px;}
.y154{bottom:611.152800px;}
.y1e7{bottom:616.302600px;}
.yc1{bottom:616.954200px;}
.y13{bottom:617.659800px;}
.y161{bottom:618.367200px;}
.y48{bottom:620.950200px;}
.y111{bottom:621.576600px;}
.y19b{bottom:628.798200px;}
.ye8{bottom:629.860200px;}
.y132{bottom:630.609000px;}
.y18b{bottom:632.760000px;}
.y1a4{bottom:633.480000px;}
.y1b8{bottom:634.961400px;}
.y1e6{bottom:636.455400px;}
.y12{bottom:637.812600px;}
.y33{bottom:639.951000px;}
.yc0{bottom:639.990600px;}
.y160{bottom:641.403600px;}
.y47{bottom:643.986600px;}
.y110{bottom:645.698400px;}
.y173{bottom:647.894400px;}
.y153{bottom:649.320000px;}
.ye7{bottom:653.982000px;}
.y131{bottom:654.001800px;}
.y14e{bottom:655.080000px;}
.y18a{bottom:655.796400px;}
.y1e5{bottom:656.608200px;}
.y11{bottom:657.609000px;}
.y1b7{bottom:658.354200px;}
.ybf{bottom:663.383400px;}
.y15f{bottom:664.796400px;}
.y1a3{bottom:667.321800px;}
.y46{bottom:667.379400px;}
.y10f{bottom:669.820200px;}
.y172{bottom:671.287200px;}
.y1e4{bottom:676.761000px;}
.y130{bottom:677.038200px;}
.ye6{bottom:678.103800px;}
.y32{bottom:678.118200px;}
.y189{bottom:679.189200px;}
.y10{bottom:680.645400px;}
.y1b6{bottom:681.390600px;}
.y152{bottom:683.518200px;}
.ybe{bottom:686.419800px;}
.y14d{bottom:689.278200px;}
.y45{bottom:690.415800px;}
.y10e{bottom:693.942000px;}
.y171{bottom:694.323600px;}
.y1e3{bottom:696.913800px;}
.y12f{bottom:700.798200px;}
.ye5{bottom:701.869200px;}
.y31{bottom:702.238200px;}
.y15e{bottom:702.963600px;}
.yf{bottom:703.681800px;}
.y1b5{bottom:704.783400px;}
.ybd{bottom:709.456200px;}
.y44{bottom:713.808600px;}
.y1e2{bottom:717.066600px;}
.y188{bottom:717.356400px;}
.y170{bottom:717.360000px;}
.y10d{bottom:718.063800px;}
.y17a{bottom:721.320000px;}
.ye4{bottom:725.991000px;}
.y15d{bottom:726.000000px;}
.ye{bottom:726.718200px;}
.y1b4{bottom:727.819800px;}
.y30{bottom:736.438200px;}
.y43{bottom:736.845000px;}
.y1e1{bottom:736.863000px;}
.y12e{bottom:741.802200px;}
.y10c{bottom:741.829200px;}
.ybc{bottom:747.623400px;}
.yd{bottom:750.121800px;}
.y187{bottom:751.198200px;}
.y6e{bottom:752.919000px;}
.y6d{bottom:754.438200px;}
.y179{bottom:755.518200px;}
.y16f{bottom:755.527200px;}
.y1e0{bottom:757.015800px;}
.y42{bottom:759.881400px;}
.y15c{bottom:760.198200px;}
.y144{bottom:762.010800px;}
.ye3{bottom:764.871000px;}
.y12d{bottom:765.567600px;}
.y10b{bottom:765.951000px;}
.y1b3{bottom:765.987000px;}
.y2f{bottom:769.918200px;}
.ybb{bottom:771.016200px;}
.yc{bottom:773.158200px;}
.y198{bottom:773.160000px;}
.y1df{bottom:777.168600px;}
.y6c{bottom:777.831000px;}
.y16e{bottom:778.920000px;}
.y41{bottom:783.274200px;}
.ye2{bottom:788.263800px;}
.y1b2{bottom:789.023400px;}
.y12c{bottom:789.689400px;}
.y10a{bottom:790.072800px;}
.yba{bottom:794.052600px;}
.yb{bottom:796.194600px;}
.y143{bottom:796.209000px;}
.y1de{bottom:797.321400px;}
.y2e{bottom:801.958200px;}
.y40{bottom:806.310600px;}
.y197{bottom:807.358200px;}
.y1b1{bottom:812.416200px;}
.y16d{bottom:813.118200px;}
.y12b{bottom:813.811200px;}
.y109{bottom:814.194600px;}
.y6b{bottom:815.998200px;}
.yb9{bottom:817.445400px;}
.y1dd{bottom:817.474200px;}
.ya{bottom:819.231000px;}
.ye1{bottom:826.431000px;}
.y3f{bottom:829.347000px;}
.y2d{bottom:834.358200px;}
.y1b0{bottom:835.452600px;}
.y1dc{bottom:837.627000px;}
.y12a{bottom:837.933000px;}
.y108{bottom:837.960000px;}
.y6a{bottom:839.034600px;}
.yb8{bottom:840.481800px;}
.y98{bottom:845.079000px;}
.ye0{bottom:849.467400px;}
.y3e{bottom:852.739800px;}
.y9{bottom:857.398200px;}
.y1db{bottom:857.779800px;}
.y1af{bottom:858.489000px;}
.y129{bottom:862.054800px;}
.y107{bottom:862.081800px;}
.y2c{bottom:866.398200px;}
.ydf{bottom:872.147400px;}
.y69{bottom:877.201800px;}
.y1da{bottom:877.932600px;}
.yb7{bottom:878.649000px;}
.y128{bottom:885.820200px;}
.y106{bottom:886.203600px;}
.y13d{bottom:886.929000px;}
.y8{bottom:889.078200px;}
.y3d{bottom:890.907000px;}
.y1ae{bottom:896.656200px;}
.y1d9{bottom:898.085400px;}
.y2b{bottom:898.798200px;}
.y68{bottom:900.238200px;}
.yb6{bottom:901.685400px;}
.yde{bottom:909.942000px;}
.y105{bottom:910.325400px;}
.y3c{bottom:913.943400px;}
.y1d8{bottom:918.238200px;}
.y1ad{bottom:920.049000px;}
.yb5{bottom:925.078200px;}
.y13c{bottom:925.096200px;}
.y7{bottom:925.438200px;}
.y2a{bottom:931.558200px;}
.ydd{bottom:934.063800px;}
.y3b{bottom:936.979800px;}
.y1d7{bottom:938.398200px;}
.y67{bottom:940.918200px;}
.y1ac{bottom:943.085400px;}
.yb4{bottom:948.114600px;}
.y17e{bottom:948.132600px;}
.y104{bottom:949.205400px;}
.y6{bottom:954.598200px;}
.ydc{bottom:958.185600px;}
.y1d6{bottom:958.601400px;}
.y3a{bottom:960.372600px;}
.y13b{bottom:963.263400px;}
.y66{bottom:963.958200px;}
.y29{bottom:965.758200px;}
.y1ab{bottom:966.121800px;}
.y17d{bottom:971.525400px;}
.y103{bottom:972.241800px;}
.y1d5{bottom:978.754200px;}
.ydb{bottom:981.951000px;}
.y5{bottom:983.398200px;}
.y39{bottom:983.409000px;}
.yb3{bottom:986.281800px;}
.y13a{bottom:986.299800px;}
.y65{bottom:987.358200px;}
.y62{bottom:994.561800px;}
.y102{bottom:995.278200px;}
.y1d4{bottom:998.907000px;}
.y28{bottom:999.958200px;}
.y1aa{bottom:1004.289000px;}
.yda{bottom:1006.072800px;}
.y38{bottom:1006.445400px;}
.yb2{bottom:1009.318200px;}
.y139{bottom:1009.692600px;}
.y4{bottom:1017.222360px;}
.y1d3{bottom:1019.059800px;}
.y64{bottom:1027.681800px;}
.y37{bottom:1029.838200px;}
.yd9{bottom:1030.194600px;}
.y61{bottom:1032.729000px;}
.yb1{bottom:1033.438200px;}
.y101{bottom:1033.445400px;}
.y27{bottom:1034.158200px;}
.y1d2{bottom:1039.212600px;}
.y3{bottom:1044.950280px;}
.y63{bottom:1050.718200px;}
.yd8{bottom:1054.316400px;}
.y36{bottom:1054.318200px;}
.y60{bottom:1055.765400px;}
.y100{bottom:1056.838200px;}
.y1d1{bottom:1059.365400px;}
.y2{bottom:1072.678200px;}
.y26{bottom:1075.198200px;}
.yd7{bottom:1078.438200px;}
.y5f{bottom:1079.158200px;}
.yff{bottom:1079.518200px;}
.y95{bottom:1115.799000px;}
.y20{bottom:1132.438200px;}
.h7{height:27.360000px;}
.h12{height:38.160000px;}
.hc{height:38.520000px;}
.hd{height:42.449063px;}
.hb{height:44.423438px;}
.h17{height:44.898047px;}
.h16{height:46.669922px;}
.h9{height:49.359375px;}
.hf{height:51.065859px;}
.h5{height:53.441016px;}
.h15{height:56.003906px;}
.ha{height:59.378906px;}
.h8{height:60.152344px;}
.h4{height:60.804844px;}
.h3{height:69.191719px;}
.h6{height:78.380156px;}
.h14{height:96.120000px;}
.h11{height:154.080000px;}
.h10{height:211.320000px;}
.h13{height:250.200000px;}
.he{height:268.920000px;}
.h2{height:1189.318500px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w3{width:92.160000px;}
.w4{width:92.230500px;}
.w6{width:133.920000px;}
.w5{width:181.800000px;}
.w7{width:336.600000px;}
.w2{width:865.870500px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.200450px;}
.x13{left:10.791300px;}
.x1{left:13.521000px;}
.x12{left:22.521000px;}
.x1c{left:37.762500px;}
.x11{left:42.168750px;}
.xf{left:44.306700px;}
.xa{left:113.766750px;}
.x3{left:115.258050px;}
.x15{left:120.081000px;}
.x10{left:130.260450px;}
.x14{left:140.814450px;}
.x2{left:144.601650px;}
.xb{left:166.870350px;}
.xc{left:188.173350px;}
.x6{left:244.255650px;}
.x4{left:249.905970px;}
.x17{left:301.881000px;}
.x8{left:319.128900px;}
.x7{left:344.614650px;}
.x5{left:365.533050px;}
.xd{left:367.128450px;}
.x9{left:368.787150px;}
.x18{left:435.801000px;}
.x1f{left:547.240050px;}
.x21{left:559.001100px;}
.x20{left:580.822500px;}
.x22{left:605.760000px;}
.x27{left:644.118900px;}
.x25{left:649.710150px;}
.x26{left:695.197500px;}
.x24{left:704.760000px;}
.x1d{left:709.547850px;}
.x1e{left:712.544850px;}
.x19{left:726.585150px;}
.x1b{left:741.753450px;}
.x23{left:744.822300px;}
.x1a{left:750.955050px;}
.x28{left:756.965250px;}
.xe{left:787.161000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-0.012800pt;}
.lsd{letter-spacing:0.000000pt;}
.ls52{letter-spacing:0.069120pt;}
.ls62{letter-spacing:0.082944pt;}
.ls51{letter-spacing:0.103680pt;}
.ls71{letter-spacing:0.117504pt;}
.ls61{letter-spacing:0.124416pt;}
.ls50{letter-spacing:0.145152pt;}
.ls3{letter-spacing:0.148480pt;}
.ls77{letter-spacing:0.200448pt;}
.ls69{letter-spacing:0.201600pt;}
.ls4a{letter-spacing:0.220160pt;}
.ls7{letter-spacing:0.230400pt;}
.ls16{letter-spacing:0.236160pt;}
.ls3c{letter-spacing:0.236672pt;}
.ls1b{letter-spacing:0.241920pt;}
.ls44{letter-spacing:0.247680pt;}
.ls4{letter-spacing:0.252416pt;}
.ls2e{letter-spacing:0.259200pt;}
.ls5{letter-spacing:0.264960pt;}
.ls18{letter-spacing:0.270720pt;}
.ls2a{letter-spacing:0.274688pt;}
.ls37{letter-spacing:0.275200pt;}
.ls1e{letter-spacing:0.282112pt;}
.ls64{letter-spacing:0.282240pt;}
.ls6{letter-spacing:0.288000pt;}
.ls7b{letter-spacing:0.293760pt;}
.ls29{letter-spacing:0.299520pt;}
.ls3f{letter-spacing:0.302720pt;}
.ls45{letter-spacing:0.313728pt;}
.ls79{letter-spacing:0.316800pt;}
.ls35{letter-spacing:0.319232pt;}
.ls4f{letter-spacing:0.322048pt;}
.ls28{letter-spacing:0.322560pt;}
.ls13{letter-spacing:0.334080pt;}
.lsc{letter-spacing:0.345600pt;}
.ls2c{letter-spacing:0.351360pt;}
.ls1a{letter-spacing:0.357120pt;}
.ls73{letter-spacing:0.368640pt;}
.ls41{letter-spacing:0.379776pt;}
.ls48{letter-spacing:0.396288pt;}
.ls74{letter-spacing:0.403200pt;}
.ls6b{letter-spacing:0.408960pt;}
.ls4c{letter-spacing:0.423808pt;}
.ls59{letter-spacing:0.426240pt;}
.ls3b{letter-spacing:0.429312pt;}
.ls3d{letter-spacing:0.434816pt;}
.ls2b{letter-spacing:0.443520pt;}
.ls40{letter-spacing:0.451328pt;}
.ls20{letter-spacing:0.460800pt;}
.ls42{letter-spacing:0.462336pt;}
.ls47{letter-spacing:0.467840pt;}
.ls2f{letter-spacing:0.472320pt;}
.ls0{letter-spacing:0.473088pt;}
.ls43{letter-spacing:0.478848pt;}
.ls5f{letter-spacing:0.483840pt;}
.ls36{letter-spacing:0.484352pt;}
.ls5e{letter-spacing:0.489600pt;}
.ls1{letter-spacing:0.489984pt;}
.ls2{letter-spacing:0.506880pt;}
.ls19{letter-spacing:0.512640pt;}
.ls49{letter-spacing:0.517376pt;}
.ls8{letter-spacing:0.518400pt;}
.ls38{letter-spacing:0.522880pt;}
.ls3e{letter-spacing:0.528384pt;}
.lsf{letter-spacing:0.529920pt;}
.ls4e{letter-spacing:0.533888pt;}
.ls14{letter-spacing:0.535680pt;}
.ls6f{letter-spacing:0.547200pt;}
.ls21{letter-spacing:0.552960pt;}
.ls5a{letter-spacing:0.558720pt;}
.lsa{letter-spacing:0.564480pt;}
.lsb{letter-spacing:0.576000pt;}
.lse{letter-spacing:0.581760pt;}
.ls15{letter-spacing:0.593280pt;}
.ls4b{letter-spacing:0.594432pt;}
.ls66{letter-spacing:0.599040pt;}
.ls46{letter-spacing:0.599936pt;}
.ls3a{letter-spacing:0.621952pt;}
.ls7a{letter-spacing:0.627840pt;}
.ls56{letter-spacing:0.650880pt;}
.ls10{letter-spacing:0.662400pt;}
.ls39{letter-spacing:0.665984pt;}
.ls12{letter-spacing:0.668160pt;}
.ls6e{letter-spacing:0.685440pt;}
.ls30{letter-spacing:0.691200pt;}
.ls2d{letter-spacing:0.708480pt;}
.ls5d{letter-spacing:0.714240pt;}
.ls11{letter-spacing:0.726528pt;}
.ls67{letter-spacing:0.737280pt;}
.ls5c{letter-spacing:0.754560pt;}
.ls4d{letter-spacing:0.820096pt;}
.ls60{letter-spacing:0.840960pt;}
.ls5b{letter-spacing:0.846720pt;}
.ls17{letter-spacing:0.910080pt;}
.ls63{letter-spacing:0.921600pt;}
.ls65{letter-spacing:0.933120pt;}
.ls25{letter-spacing:0.979200pt;}
.ls24{letter-spacing:1.209600pt;}
.ls6c{letter-spacing:1.267200pt;}
.ls22{letter-spacing:1.612800pt;}
.ls55{letter-spacing:2.188800pt;}
.ls68{letter-spacing:2.592000pt;}
.ls6d{letter-spacing:2.880000pt;}
.ls70{letter-spacing:3.168000pt;}
.ls34{letter-spacing:4.343040pt;}
.ls53{letter-spacing:4.550400pt;}
.ls78{letter-spacing:5.932800pt;}
.ls6a{letter-spacing:7.545600pt;}
.ls23{letter-spacing:7.776000pt;}
.ls57{letter-spacing:8.006400pt;}
.ls54{letter-spacing:8.467200pt;}
.ls72{letter-spacing:9.158400pt;}
.ls31{letter-spacing:11.116800pt;}
.ls32{letter-spacing:11.139840pt;}
.ls1c{letter-spacing:11.185920pt;}
.ls1d{letter-spacing:11.520000pt;}
.ls76{letter-spacing:11.577600pt;}
.ls27{letter-spacing:13.075200pt;}
.ls26{letter-spacing:13.109760pt;}
.ls75{letter-spacing:15.367680pt;}
.ls9{letter-spacing:21.139200pt;}
.ls33{letter-spacing:35.424000pt;}
.ls58{letter-spacing:52.992000pt;}
.ws0{word-spacing:-20.891136pt;}
.ws9e{word-spacing:-0.990720pt;}
.ws15{word-spacing:-0.967680pt;}
.ws8f{word-spacing:-0.904320pt;}
.ws95{word-spacing:-0.898560pt;}
.ws7e{word-spacing:-0.875136pt;}
.ws91{word-spacing:-0.812160pt;}
.ws4{word-spacing:-0.811008pt;}
.wsa0{word-spacing:-0.794880pt;}
.ws92{word-spacing:-0.771840pt;}
.ws43{word-spacing:-0.766080pt;}
.wsb0{word-spacing:-0.743040pt;}
.ws7{word-spacing:-0.725760pt;}
.ws68{word-spacing:-0.721024pt;}
.ws3{word-spacing:-0.720000pt;}
.ws8b{word-spacing:-0.708480pt;}
.ws69{word-spacing:-0.676992pt;}
.ws9f{word-spacing:-0.656640pt;}
.ws78{word-spacing:-0.654976pt;}
.ws21{word-spacing:-0.650880pt;}
.ws7c{word-spacing:-0.649472pt;}
.ws1{word-spacing:-0.639360pt;}
.ws3c{word-spacing:-0.633600pt;}
.ws1a{word-spacing:-0.622080pt;}
.ws90{word-spacing:-0.616320pt;}
.ws2d{word-spacing:-0.610560pt;}
.wsb1{word-spacing:-0.604800pt;}
.ws9{word-spacing:-0.593280pt;}
.ws7f{word-spacing:-0.588928pt;}
.ws22{word-spacing:-0.587520pt;}
.ws6e{word-spacing:-0.583424pt;}
.ws6b{word-spacing:-0.577920pt;}
.ws5{word-spacing:-0.576000pt;}
.ws7b{word-spacing:-0.572416pt;}
.ws31{word-spacing:-0.570240pt;}
.ws1b{word-spacing:-0.564480pt;}
.ws93{word-spacing:-0.547200pt;}
.ws94{word-spacing:-0.541440pt;}
.ws74{word-spacing:-0.539392pt;}
.ws75{word-spacing:-0.533888pt;}
.ws8c{word-spacing:-0.529920pt;}
.ws79{word-spacing:-0.522880pt;}
.ws2e{word-spacing:-0.518400pt;}
.ws72{word-spacing:-0.517376pt;}
.ws70{word-spacing:-0.506368pt;}
.ws2f{word-spacing:-0.501120pt;}
.ws6d{word-spacing:-0.489856pt;}
.ws6a{word-spacing:-0.484352pt;}
.ws8d{word-spacing:-0.483840pt;}
.ws7d{word-spacing:-0.478848pt;}
.wsac{word-spacing:-0.466560pt;}
.ws7a{word-spacing:-0.451328pt;}
.ws71{word-spacing:-0.434816pt;}
.ws23{word-spacing:-0.414720pt;}
.ws32{word-spacing:-0.408960pt;}
.ws8{word-spacing:-0.391680pt;}
.ws73{word-spacing:-0.374272pt;}
.ws80{word-spacing:-0.369408pt;}
.ws77{word-spacing:-0.368768pt;}
.ws6f{word-spacing:-0.357760pt;}
.ws25{word-spacing:-0.356352pt;}
.wse5{word-spacing:-0.351360pt;}
.ws2a{word-spacing:-0.348928pt;}
.ws9d{word-spacing:-0.345600pt;}
.ws17{word-spacing:-0.328320pt;}
.ws81{word-spacing:-0.326656pt;}
.ws6{word-spacing:-0.322560pt;}
.ws9c{word-spacing:-0.316800pt;}
.ws76{word-spacing:-0.302720pt;}
.ws28{word-spacing:-0.299520pt;}
.ws20{word-spacing:-0.293760pt;}
.ws6c{word-spacing:-0.291712pt;}
.wsc1{word-spacing:-0.274688pt;}
.ws82{word-spacing:-0.214272pt;}
.ws97{word-spacing:-0.193536pt;}
.wsb3{word-spacing:-0.186624pt;}
.ws84{word-spacing:-0.172800pt;}
.ws98{word-spacing:-0.152064pt;}
.ws85{word-spacing:-0.138240pt;}
.ws83{word-spacing:-0.069120pt;}
.ws2{word-spacing:-0.057600pt;}
.ws26{word-spacing:-0.051200pt;}
.ws24{word-spacing:0.000000pt;}
.wsc5{word-spacing:7.223040pt;}
.wse7{word-spacing:7.908480pt;}
.ws4e{word-spacing:8.064000pt;}
.ws87{word-spacing:8.104320pt;}
.wsb4{word-spacing:8.110080pt;}
.ws3d{word-spacing:8.133120pt;}
.ws52{word-spacing:8.167680pt;}
.ws50{word-spacing:8.179200pt;}
.wsab{word-spacing:8.190720pt;}
.wsa4{word-spacing:8.231040pt;}
.ws29{word-spacing:8.256000pt;}
.ws51{word-spacing:8.282880pt;}
.ws40{word-spacing:8.305920pt;}
.ws54{word-spacing:8.507520pt;}
.ws86{word-spacing:8.519040pt;}
.ws53{word-spacing:8.565120pt;}
.ws89{word-spacing:8.576640pt;}
.ws3e{word-spacing:8.651520pt;}
.ws4f{word-spacing:8.668800pt;}
.ws8a{word-spacing:8.709120pt;}
.ws60{word-spacing:8.720640pt;}
.wsa8{word-spacing:8.795520pt;}
.wseb{word-spacing:8.801280pt;}
.ws27{word-spacing:8.832000pt;}
.ws9a{word-spacing:8.853120pt;}
.wsd1{word-spacing:8.928000pt;}
.wsd2{word-spacing:9.025920pt;}
.wsd3{word-spacing:9.031680pt;}
.ws9b{word-spacing:9.077760pt;}
.wsad{word-spacing:9.146880pt;}
.wsaa{word-spacing:9.175680pt;}
.wsea{word-spacing:9.227520pt;}
.ws48{word-spacing:9.267840pt;}
.ws3f{word-spacing:9.331200pt;}
.ws18{word-spacing:9.388800pt;}
.wsdc{word-spacing:9.400320pt;}
.ws19{word-spacing:9.504000pt;}
.wsc7{word-spacing:9.722880pt;}
.wsc3{word-spacing:9.728640pt;}
.wscc{word-spacing:9.832320pt;}
.wsc4{word-spacing:9.838080pt;}
.ws62{word-spacing:9.901440pt;}
.wsb6{word-spacing:9.959040pt;}
.ws64{word-spacing:10.028160pt;}
.ws63{word-spacing:10.033920pt;}
.wsb8{word-spacing:10.085760pt;}
.wsc6{word-spacing:10.091520pt;}
.wsdb{word-spacing:10.126080pt;}
.wsbb{word-spacing:10.362240pt;}
.wsb7{word-spacing:10.414080pt;}
.wse3{word-spacing:10.425600pt;}
.wsa3{word-spacing:10.442880pt;}
.wsbc{word-spacing:10.488960pt;}
.wse2{word-spacing:10.523520pt;}
.wse1{word-spacing:10.529280pt;}
.wsa2{word-spacing:10.569600pt;}
.wsbd{word-spacing:10.632960pt;}
.wsbe{word-spacing:10.823040pt;}
.wsa1{word-spacing:10.840320pt;}
.ws5c{word-spacing:10.903680pt;}
.ws61{word-spacing:11.059200pt;}
.wsdd{word-spacing:11.064960pt;}
.wsa9{word-spacing:11.076480pt;}
.wsde{word-spacing:11.174400pt;}
.ws5d{word-spacing:11.571840pt;}
.ws30{word-spacing:11.629440pt;}
.ws47{word-spacing:11.859840pt;}
.wsae{word-spacing:11.923200pt;}
.ws46{word-spacing:11.963520pt;}
.wsa6{word-spacing:12.107520pt;}
.wsaf{word-spacing:12.199680pt;}
.ws96{word-spacing:12.516480pt;}
.wsa7{word-spacing:12.579840pt;}
.ws5e{word-spacing:12.729600pt;}
.ws41{word-spacing:12.798720pt;}
.ws4b{word-spacing:13.075200pt;}
.ws49{word-spacing:13.173120pt;}
.ws4c{word-spacing:13.178880pt;}
.wsa{word-spacing:13.288320pt;}
.wsb{word-spacing:13.299840pt;}
.wse{word-spacing:13.305600pt;}
.wsd{word-spacing:13.420800pt;}
.wsda{word-spacing:13.524480pt;}
.ws4a{word-spacing:13.726080pt;}
.ws4d{word-spacing:13.737600pt;}
.wsd9{word-spacing:13.893120pt;}
.wsd8{word-spacing:14.014080pt;}
.wsba{word-spacing:14.106240pt;}
.wsd5{word-spacing:14.221440pt;}
.wsd7{word-spacing:14.273280pt;}
.ws88{word-spacing:14.451840pt;}
.wsc{word-spacing:14.457600pt;}
.wsd6{word-spacing:14.601600pt;}
.wsb2{word-spacing:14.843520pt;}
.ws2b{word-spacing:14.958720pt;}
.ws42{word-spacing:15.091200pt;}
.wse6{word-spacing:15.160320pt;}
.ws67{word-spacing:15.235200pt;}
.ws66{word-spacing:15.920640pt;}
.ws65{word-spacing:16.035840pt;}
.ws2c{word-spacing:16.433280pt;}
.wsc2{word-spacing:16.807680pt;}
.wsf{word-spacing:16.963200pt;}
.wse8{word-spacing:16.980480pt;}
.wse9{word-spacing:17.038080pt;}
.ws10{word-spacing:17.101440pt;}
.wscd{word-spacing:17.274240pt;}
.wsce{word-spacing:17.752320pt;}
.ws11{word-spacing:17.792640pt;}
.ws5a{word-spacing:18.633600pt;}
.wsb9{word-spacing:18.679680pt;}
.ws5b{word-spacing:18.961920pt;}
.wsb5{word-spacing:19.123200pt;}
.ws57{word-spacing:19.324800pt;}
.ws55{word-spacing:19.526400pt;}
.ws59{word-spacing:19.624320pt;}
.ws56{word-spacing:19.630080pt;}
.ws35{word-spacing:19.653120pt;}
.ws12{word-spacing:19.969920pt;}
.ws13{word-spacing:20.044800pt;}
.ws58{word-spacing:20.131200pt;}
.ws16{word-spacing:20.355840pt;}
.ws14{word-spacing:20.603520pt;}
.wsd4{word-spacing:20.615040pt;}
.wsc0{word-spacing:21.421440pt;}
.wsbf{word-spacing:21.605760pt;}
.ws45{word-spacing:21.669120pt;}
.wscb{word-spacing:22.976640pt;}
.ws39{word-spacing:23.356800pt;}
.ws3b{word-spacing:23.558400pt;}
.ws37{word-spacing:23.616000pt;}
.ws36{word-spacing:23.673600pt;}
.ws34{word-spacing:23.783040pt;}
.ws33{word-spacing:23.973120pt;}
.ws38{word-spacing:24.203520pt;}
.ws1d{word-spacing:24.566400pt;}
.ws3a{word-spacing:24.710400pt;}
.wse0{word-spacing:24.762240pt;}
.ws1f{word-spacing:24.768000pt;}
.wsdf{word-spacing:25.090560pt;}
.ws1c{word-spacing:25.453440pt;}
.ws1e{word-spacing:25.920000pt;}
.wse4{word-spacing:26.599680pt;}
.ws8e{word-spacing:26.691840pt;}
.wscf{word-spacing:42.877440pt;}
.wsd0{word-spacing:43.683840pt;}
.wsa5{word-spacing:45.313920pt;}
.ws99{word-spacing:58.792320pt;}
.wsc8{word-spacing:91.578240pt;}
.wsca{word-spacing:91.687680pt;}
.wsc9{word-spacing:92.056320pt;}
.ws44{word-spacing:171.492480pt;}
.ws5f{word-spacing:754.905600pt;}
._8{margin-left:-7.687680pt;}
._9{margin-left:-6.481920pt;}
._7{margin-left:-3.344640pt;}
._0{margin-left:-1.098240pt;}
._1{width:1.238400pt;}
._5{width:2.279040pt;}
._b{width:3.260160pt;}
._2{width:4.187520pt;}
._3{width:5.155200pt;}
._4{width:6.595200pt;}
._a{width:7.739520pt;}
._c{width:9.120000pt;}
._d{width:11.176320pt;}
._6{width:13.248000pt;}
.fs5{font-size:47.360000pt;}
.fs4{font-size:55.040000pt;}
.fs2{font-size:57.600000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs1{font-size:74.240000pt;}
.fs0{font-size:84.480000pt;}
.y25{bottom:-23.686667pt;}
.y22{bottom:-3.308267pt;}
.y0{bottom:0.000000pt;}
.y7f{bottom:3.778293pt;}
.y8b{bottom:3.793013pt;}
.y97{bottom:3.839733pt;}
.ya9{bottom:4.104373pt;}
.y94{bottom:4.127733pt;}
.yaf{bottom:4.138933pt;}
.y70{bottom:4.159733pt;}
.y24{bottom:10.239733pt;}
.y35{bottom:14.291733pt;}
.y21{bottom:14.293333pt;}
.y7e{bottom:20.744373pt;}
.y96{bottom:20.799733pt;}
.y9b{bottom:21.060853pt;}
.ya8{bottom:21.070453pt;}
.y8a{bottom:21.075573pt;}
.y93{bottom:21.093813pt;}
.yae{bottom:21.105013pt;}
.y6f{bottom:21.119733pt;}
.y7d{bottom:38.026933pt;}
.y89{bottom:38.041653pt;}
.yad{bottom:38.071093pt;}
.ya7{bottom:38.353013pt;}
.y92{bottom:38.376373pt;}
.y127{bottom:47.202133pt;}
.y138{bottom:48.536533pt;}
.y19a{bottom:49.491733pt;}
.y17c{bottom:51.090133pt;}
.y16c{bottom:52.371733pt;}
.yd6{bottom:52.698133pt;}
.y1{bottom:54.009333pt;}
.y142{bottom:54.931733pt;}
.y7c{bottom:54.993013pt;}
.ya6{bottom:55.319093pt;}
.y88{bottom:55.324213pt;}
.y91{bottom:55.342453pt;}
.yac{bottom:55.353653pt;}
.y14c{bottom:57.509333pt;}
.y5e{bottom:59.120533pt;}
.y182{bottom:61.656533pt;}
.y1a2{bottom:66.461333pt;}
.y126{bottom:68.643733pt;}
.y137{bottom:69.013333pt;}
.y7b{bottom:72.275573pt;}
.ya5{bottom:72.285173pt;}
.y87{bottom:72.290293pt;}
.yab{bottom:72.319733pt;}
.y90{bottom:72.625013pt;}
.y16b{bottom:73.178133pt;}
.y15b{bottom:73.806933pt;}
.y196{bottom:74.133333pt;}
.yd5{bottom:74.139733pt;}
.yfe{bottom:76.942933pt;}
.y199{bottom:79.573333pt;}
.y5d{bottom:79.597333pt;}
.y17b{bottom:81.488533pt;}
.y181{bottom:82.450133pt;}
.y141{bottom:85.013333pt;}
.y1a1{bottom:87.254933pt;}
.y14b{bottom:87.590933pt;}
.y7a{bottom:89.241653pt;}
.y86{bottom:89.256373pt;}
.ya4{bottom:89.567733pt;}
.y8f{bottom:89.591093pt;}
.y125{bottom:90.085333pt;}
.y1d0{bottom:93.466133pt;}
.y16a{bottom:93.654933pt;}
.yd4{bottom:95.264533pt;}
.y136{bottom:99.411733pt;}
.y8c{bottom:101.261333pt;}
.y195{bottom:104.531733pt;}
.y79{bottom:106.207733pt;}
.y9a{bottom:106.524213pt;}
.ya3{bottom:106.533813pt;}
.y85{bottom:106.538933pt;}
.y8e{bottom:106.557173pt;}
.y1a0{bottom:107.731733pt;}
.y15a{bottom:107.733333pt;}
.yfd{bottom:111.186133pt;}
.y1cf{bottom:111.379733pt;}
.y5c{bottom:113.523733pt;}
.yd3{bottom:116.058133pt;}
.y180{bottom:116.376533pt;}
.y151{bottom:116.381333pt;}
.y78{bottom:123.490293pt;}
.y84{bottom:123.505013pt;}
.ya2{bottom:123.816373pt;}
.y8d{bottom:123.839733pt;}
.y124{bottom:124.645333pt;}
.y169{bottom:127.581333pt;}
.y159{bottom:128.526933pt;}
.y19f{bottom:128.851733pt;}
.y1ce{bottom:129.293333pt;}
.yfc{bottom:132.310933pt;}
.y5b{bottom:134.000533pt;}
.y150{bottom:137.174933pt;}
.yd2{bottom:137.499733pt;}
.y77{bottom:140.456373pt;}
.ya1{bottom:140.782453pt;}
.y83{bottom:140.787573pt;}
.y123{bottom:145.122133pt;}
.y17f{bottom:146.458133pt;}
.y1cd{bottom:146.890133pt;}
.y168{bottom:148.058133pt;}
.yfb{bottom:153.752533pt;}
.y5a{bottom:154.794133pt;}
.y76{bottom:157.738933pt;}
.ya0{bottom:157.748533pt;}
.y82{bottom:157.753653pt;}
.yd1{bottom:158.941333pt;}
.y178{bottom:161.186133pt;}
.y158{bottom:162.453333pt;}
.y23{bottom:162.701333pt;}
.y1cc{bottom:164.803733pt;}
.y19e{bottom:165.019733pt;}
.y14f{bottom:167.256533pt;}
.y167{bottom:168.851733pt;}
.y75{bottom:174.705013pt;}
.y81{bottom:174.719733pt;}
.y9f{bottom:175.031093pt;}
.yfa{bottom:175.194133pt;}
.y59{bottom:175.270933pt;}
.y122{bottom:179.048533pt;}
.yd0{bottom:180.066133pt;}
.y177{bottom:181.662933pt;}
.y1cb{bottom:182.717333pt;}
.y166{bottom:189.971733pt;}
.y74{bottom:191.671093pt;}
.y99{bottom:191.987573pt;}
.y9e{bottom:191.997173pt;}
.y157{bottom:192.534933pt;}
.y19d{bottom:195.418133pt;}
.y58{bottom:195.747733pt;}
.yf9{bottom:196.635733pt;}
.y121{bottom:199.525333pt;}
.y1ca{bottom:200.630933pt;}
.ycf{bottom:201.507733pt;}
.y176{bottom:202.139733pt;}
.y73{bottom:208.953653pt;}
.y9d{bottom:209.279733pt;}
.y57{bottom:216.541333pt;}
.yf8{bottom:218.077333pt;}
.y1c9{bottom:218.544533pt;}
.y120{bottom:219.685333pt;}
.yce{bottom:222.949333pt;}
.y72{bottom:225.919733pt;}
.y165{bottom:226.149333pt;}
.y175{bottom:236.066133pt;}
.y1c8{bottom:236.458133pt;}
.y56{bottom:237.018133pt;}
.yf7{bottom:239.202133pt;}
.y80{bottom:239.501333pt;}
.ycd{bottom:244.390933pt;}
.y11f{bottom:253.280533pt;}
.y1c7{bottom:254.371733pt;}
.y164{bottom:256.230933pt;}
.y55{bottom:257.494933pt;}
.yf6{bottom:260.643733pt;}
.ycc{bottom:265.515733pt;}
.y174{bottom:266.147733pt;}
.y186{bottom:266.467733pt;}
.y1c6{bottom:272.285333pt;}
.y11e{bottom:274.722133pt;}
.y54{bottom:278.288533pt;}
.yf5{bottom:282.085333pt;}
.y185{bottom:286.944533pt;}
.ycb{bottom:286.957333pt;}
.y1c5{bottom:290.198933pt;}
.y11d{bottom:296.163733pt;}
.yf4{bottom:303.526933pt;}
.y1c4{bottom:308.112533pt;}
.yca{bottom:308.398933pt;}
.y53{bottom:312.214933pt;}
.y1f{bottom:312.280533pt;}
.y11c{bottom:317.605333pt;}
.y184{bottom:320.870933pt;}
.yf3{bottom:324.651733pt;}
.y1c3{bottom:326.026133pt;}
.yc9{bottom:329.840533pt;}
.y52{bottom:332.691733pt;}
.y14a{bottom:337.186133pt;}
.y11b{bottom:339.046933pt;}
.y1c2{bottom:343.939733pt;}
.yf2{bottom:346.093333pt;}
.y1e{bottom:346.206933pt;}
.y194{bottom:350.312533pt;}
.y183{bottom:351.269333pt;}
.yc8{bottom:351.282133pt;}
.y51{bottom:353.264533pt;}
.y149{bottom:357.662933pt;}
.y11a{bottom:360.171733pt;}
.y140{bottom:360.859733pt;}
.y1c1{bottom:361.853333pt;}
.y1d{bottom:367.000533pt;}
.yf1{bottom:367.534933pt;}
.y193{bottom:371.106133pt;}
.y50{bottom:374.058133pt;}
.yb0{bottom:374.291733pt;}
.y148{bottom:378.139733pt;}
.y1c0{bottom:379.766933pt;}
.y119{bottom:381.613333pt;}
.yc7{bottom:385.842133pt;}
.y1c{bottom:387.477333pt;}
.yf0{bottom:388.976533pt;}
.y192{bottom:391.582933pt;}
.y4f{bottom:394.534933pt;}
.y13f{bottom:394.786133pt;}
.y1bf{bottom:397.680533pt;}
.y147{bottom:398.933333pt;}
.y118{bottom:403.054933pt;}
.y1ed{bottom:404.371733pt;}
.y1b{bottom:405.722133pt;}
.yc6{bottom:406.318933pt;}
.yef{bottom:410.418133pt;}
.y191{bottom:412.059733pt;}
.y1be{bottom:415.594133pt;}
.y1a{bottom:423.635733pt;}
.y117{bottom:424.496533pt;}
.y13e{bottom:425.184533pt;}
.y4e{bottom:428.461333pt;}
.y71{bottom:428.941333pt;}
.y1a9{bottom:430.611733pt;}
.yee{bottom:431.542933pt;}
.y190{bottom:432.853333pt;}
.y146{bottom:432.859733pt;}
.y1bd{bottom:433.507733pt;}
.yc5{bottom:440.245333pt;}
.yaa{bottom:440.781333pt;}
.y19{bottom:441.549333pt;}
.y116{bottom:445.621333pt;}
.y4d{bottom:448.938133pt;}
.y1bc{bottom:451.421333pt;}
.yed{bottom:452.984533pt;}
.y18f{bottom:453.330133pt;}
.y1ec{bottom:458.256533pt;}
.y18{bottom:459.462933pt;}
.yc4{bottom:460.722133pt;}
.y145{bottom:462.941333pt;}
.y1a8{bottom:464.538133pt;}
.y115{bottom:467.062933pt;}
.y1bb{bottom:469.334933pt;}
.y4c{bottom:469.731733pt;}
.yec{bottom:474.426133pt;}
.y1eb{bottom:476.170133pt;}
.y17{bottom:477.376533pt;}
.yc3{bottom:480.882133pt;}
.y1a7{bottom:485.331733pt;}
.y135{bottom:485.661333pt;}
.y1ba{bottom:486.931733pt;}
.y18e{bottom:487.256533pt;}
.y114{bottom:488.504533pt;}
.y4b{bottom:490.208533pt;}
.y1ea{bottom:494.083733pt;}
.y16{bottom:495.290133pt;}
.yeb{bottom:495.867733pt;}
.y156{bottom:502.293333pt;}
.y134{bottom:506.138133pt;}
.y1a6{bottom:506.451733pt;}
.y18d{bottom:507.733333pt;}
.y1b9{bottom:508.371733pt;}
.y163{bottom:508.389333pt;}
.y113{bottom:509.946133pt;}
.y4a{bottom:510.685333pt;}
.y1e9{bottom:511.997333pt;}
.y15{bottom:513.203733pt;}
.yc2{bottom:514.477333pt;}
.yea{bottom:516.992533pt;}
.y155{bottom:522.770133pt;}
.y9c{bottom:527.501333pt;}
.y18c{bottom:528.526933pt;}
.y19c{bottom:528.533333pt;}
.y162{bottom:529.182933pt;}
.y1e8{bottom:529.910933pt;}
.y14{bottom:531.117333pt;}
.y112{bottom:531.387733pt;}
.y49{bottom:531.478933pt;}
.y34{bottom:534.918933pt;}
.ye9{bottom:538.434133pt;}
.y133{bottom:540.064533pt;}
.y1a5{bottom:542.616533pt;}
.y154{bottom:543.246933pt;}
.y1e7{bottom:547.824533pt;}
.yc1{bottom:548.403733pt;}
.y13{bottom:549.030933pt;}
.y161{bottom:549.659733pt;}
.y48{bottom:551.955733pt;}
.y111{bottom:552.512533pt;}
.y19b{bottom:558.931733pt;}
.ye8{bottom:559.875733pt;}
.y132{bottom:560.541333pt;}
.y18b{bottom:562.453333pt;}
.y1a4{bottom:563.093333pt;}
.y1b8{bottom:564.410133pt;}
.y1e6{bottom:565.738133pt;}
.y12{bottom:566.944533pt;}
.y33{bottom:568.845333pt;}
.yc0{bottom:568.880533pt;}
.y160{bottom:570.136533pt;}
.y47{bottom:572.432533pt;}
.y110{bottom:573.954133pt;}
.y173{bottom:575.906133pt;}
.y153{bottom:577.173333pt;}
.ye7{bottom:581.317333pt;}
.y131{bottom:581.334933pt;}
.y14e{bottom:582.293333pt;}
.y18a{bottom:582.930133pt;}
.y1e5{bottom:583.651733pt;}
.y11{bottom:584.541333pt;}
.y1b7{bottom:585.203733pt;}
.ybf{bottom:589.674133pt;}
.y15f{bottom:590.930133pt;}
.y1a3{bottom:593.174933pt;}
.y46{bottom:593.226133pt;}
.y10f{bottom:595.395733pt;}
.y172{bottom:596.699733pt;}
.y1e4{bottom:601.565333pt;}
.y130{bottom:601.811733pt;}
.ye6{bottom:602.758933pt;}
.y32{bottom:602.771733pt;}
.y189{bottom:603.723733pt;}
.y10{bottom:605.018133pt;}
.y1b6{bottom:605.680533pt;}
.y152{bottom:607.571733pt;}
.ybe{bottom:610.150933pt;}
.y14d{bottom:612.691733pt;}
.y45{bottom:613.702933pt;}
.y10e{bottom:616.837333pt;}
.y171{bottom:617.176533pt;}
.y1e3{bottom:619.478933pt;}
.y12f{bottom:622.931733pt;}
.ye5{bottom:623.883733pt;}
.y31{bottom:624.211733pt;}
.y15e{bottom:624.856533pt;}
.yf{bottom:625.494933pt;}
.y1b5{bottom:626.474133pt;}
.ybd{bottom:630.627733pt;}
.y44{bottom:634.496533pt;}
.y1e2{bottom:637.392533pt;}
.y188{bottom:637.650133pt;}
.y170{bottom:637.653333pt;}
.y10d{bottom:638.278933pt;}
.y17a{bottom:641.173333pt;}
.ye4{bottom:645.325333pt;}
.y15d{bottom:645.333333pt;}
.ye{bottom:645.971733pt;}
.y1b4{bottom:646.950933pt;}
.y30{bottom:654.611733pt;}
.y43{bottom:654.973333pt;}
.y1e1{bottom:654.989333pt;}
.y12e{bottom:659.379733pt;}
.y10c{bottom:659.403733pt;}
.ybc{bottom:664.554133pt;}
.yd{bottom:666.774933pt;}
.y187{bottom:667.731733pt;}
.y6e{bottom:669.261333pt;}
.y6d{bottom:670.611733pt;}
.y179{bottom:671.571733pt;}
.y16f{bottom:671.579733pt;}
.y1e0{bottom:672.902933pt;}
.y42{bottom:675.450133pt;}
.y15c{bottom:675.731733pt;}
.y144{bottom:677.342933pt;}
.ye3{bottom:679.885333pt;}
.y12d{bottom:680.504533pt;}
.y10b{bottom:680.845333pt;}
.y1b3{bottom:680.877333pt;}
.y2f{bottom:684.371733pt;}
.ybb{bottom:685.347733pt;}
.yc{bottom:687.251733pt;}
.y198{bottom:687.253333pt;}
.y1df{bottom:690.816533pt;}
.y6c{bottom:691.405333pt;}
.y16e{bottom:692.373333pt;}
.y41{bottom:696.243733pt;}
.ye2{bottom:700.678933pt;}
.y1b2{bottom:701.354133pt;}
.y12c{bottom:701.946133pt;}
.y10a{bottom:702.286933pt;}
.yba{bottom:705.824533pt;}
.yb{bottom:707.728533pt;}
.y143{bottom:707.741333pt;}
.y1de{bottom:708.730133pt;}
.y2e{bottom:712.851733pt;}
.y40{bottom:716.720533pt;}
.y197{bottom:717.651733pt;}
.y1b1{bottom:722.147733pt;}
.y16d{bottom:722.771733pt;}
.y12b{bottom:723.387733pt;}
.y109{bottom:723.728533pt;}
.y6b{bottom:725.331733pt;}
.yb9{bottom:726.618133pt;}
.y1dd{bottom:726.643733pt;}
.ya{bottom:728.205333pt;}
.ye1{bottom:734.605333pt;}
.y3f{bottom:737.197333pt;}
.y2d{bottom:741.651733pt;}
.y1b0{bottom:742.624533pt;}
.y1dc{bottom:744.557333pt;}
.y12a{bottom:744.829333pt;}
.y108{bottom:744.853333pt;}
.y6a{bottom:745.808533pt;}
.yb8{bottom:747.094933pt;}
.y98{bottom:751.181333pt;}
.ye0{bottom:755.082133pt;}
.y3e{bottom:757.990933pt;}
.y9{bottom:762.131733pt;}
.y1db{bottom:762.470933pt;}
.y1af{bottom:763.101333pt;}
.y129{bottom:766.270933pt;}
.y107{bottom:766.294933pt;}
.y2c{bottom:770.131733pt;}
.ydf{bottom:775.242133pt;}
.y69{bottom:779.734933pt;}
.y1da{bottom:780.384533pt;}
.yb7{bottom:781.021333pt;}
.y128{bottom:787.395733pt;}
.y106{bottom:787.736533pt;}
.y13d{bottom:788.381333pt;}
.y8{bottom:790.291733pt;}
.y3d{bottom:791.917333pt;}
.y1ae{bottom:797.027733pt;}
.y1d9{bottom:798.298133pt;}
.y2b{bottom:798.931733pt;}
.y68{bottom:800.211733pt;}
.yb6{bottom:801.498133pt;}
.yde{bottom:808.837333pt;}
.y105{bottom:809.178133pt;}
.y3c{bottom:812.394133pt;}
.y1d8{bottom:816.211733pt;}
.y1ad{bottom:817.821333pt;}
.yb5{bottom:822.291733pt;}
.y13c{bottom:822.307733pt;}
.y7{bottom:822.611733pt;}
.y2a{bottom:828.051733pt;}
.ydd{bottom:830.278933pt;}
.y3b{bottom:832.870933pt;}
.y1d7{bottom:834.131733pt;}
.y67{bottom:836.371733pt;}
.y1ac{bottom:838.298133pt;}
.yb4{bottom:842.768533pt;}
.y17e{bottom:842.784533pt;}
.y104{bottom:843.738133pt;}
.y6{bottom:848.531733pt;}
.ydc{bottom:851.720533pt;}
.y1d6{bottom:852.090133pt;}
.y3a{bottom:853.664533pt;}
.y13b{bottom:856.234133pt;}
.y66{bottom:856.851733pt;}
.y29{bottom:858.451733pt;}
.y1ab{bottom:858.774933pt;}
.y17d{bottom:863.578133pt;}
.y103{bottom:864.214933pt;}
.y1d5{bottom:870.003733pt;}
.ydb{bottom:872.845333pt;}
.y5{bottom:874.131733pt;}
.y39{bottom:874.141333pt;}
.yb3{bottom:876.694933pt;}
.y13a{bottom:876.710933pt;}
.y65{bottom:877.651733pt;}
.y62{bottom:884.054933pt;}
.y102{bottom:884.691733pt;}
.y1d4{bottom:887.917333pt;}
.y28{bottom:888.851733pt;}
.y1aa{bottom:892.701333pt;}
.yda{bottom:894.286933pt;}
.y38{bottom:894.618133pt;}
.yb2{bottom:897.171733pt;}
.y139{bottom:897.504533pt;}
.y4{bottom:904.197653pt;}
.y1d3{bottom:905.830933pt;}
.y64{bottom:913.494933pt;}
.y37{bottom:915.411733pt;}
.yd9{bottom:915.728533pt;}
.y61{bottom:917.981333pt;}
.yb1{bottom:918.611733pt;}
.y101{bottom:918.618133pt;}
.y27{bottom:919.251733pt;}
.y1d2{bottom:923.744533pt;}
.y3{bottom:928.844693pt;}
.y63{bottom:933.971733pt;}
.yd8{bottom:937.170133pt;}
.y36{bottom:937.171733pt;}
.y60{bottom:938.458133pt;}
.y100{bottom:939.411733pt;}
.y1d1{bottom:941.658133pt;}
.y2{bottom:953.491733pt;}
.y26{bottom:955.731733pt;}
.yd7{bottom:958.611733pt;}
.y5f{bottom:959.251733pt;}
.yff{bottom:959.571733pt;}
.y95{bottom:991.821333pt;}
.y20{bottom:1006.611733pt;}
.h7{height:24.320000pt;}
.h12{height:33.920000pt;}
.hc{height:34.240000pt;}
.hd{height:37.732500pt;}
.hb{height:39.487500pt;}
.h17{height:39.909375pt;}
.h16{height:41.484375pt;}
.h9{height:43.875000pt;}
.hf{height:45.391875pt;}
.h5{height:47.503125pt;}
.h15{height:49.781250pt;}
.ha{height:52.781250pt;}
.h8{height:53.468750pt;}
.h4{height:54.048750pt;}
.h3{height:61.503750pt;}
.h6{height:69.671250pt;}
.h14{height:85.440000pt;}
.h11{height:136.960000pt;}
.h10{height:187.840000pt;}
.h13{height:222.400000pt;}
.he{height:239.040000pt;}
.h2{height:1057.172000pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w3{width:81.920000pt;}
.w4{width:81.982667pt;}
.w6{width:119.040000pt;}
.w5{width:161.600000pt;}
.w7{width:299.200000pt;}
.w2{width:769.662667pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.400400pt;}
.x13{left:9.592267pt;}
.x1{left:12.018667pt;}
.x12{left:20.018667pt;}
.x1c{left:33.566667pt;}
.x11{left:37.483333pt;}
.xf{left:39.383733pt;}
.xa{left:101.126000pt;}
.x3{left:102.451600pt;}
.x15{left:106.738667pt;}
.x10{left:115.787067pt;}
.x14{left:125.168400pt;}
.x2{left:128.534800pt;}
.xb{left:148.329200pt;}
.xc{left:167.265200pt;}
.x6{left:217.116133pt;}
.x4{left:222.138640pt;}
.x17{left:268.338667pt;}
.x8{left:283.670133pt;}
.x7{left:306.324133pt;}
.x5{left:324.918267pt;}
.xd{left:326.336400pt;}
.x9{left:327.810800pt;}
.x18{left:387.378667pt;}
.x1f{left:486.435600pt;}
.x21{left:496.889867pt;}
.x20{left:516.286667pt;}
.x22{left:538.453333pt;}
.x27{left:572.550133pt;}
.x25{left:577.520133pt;}
.x26{left:617.953333pt;}
.x24{left:626.453333pt;}
.x1d{left:630.709200pt;}
.x1e{left:633.373200pt;}
.x19{left:645.853467pt;}
.x1b{left:659.336400pt;}
.x23{left:662.064267pt;}
.x1a{left:667.515600pt;}
.x28{left:672.858000pt;}
.xe{left:699.698667pt;}
}




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