
    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_0097e9f60fa64bc28ead9630.woff')format("woff");}.ff1{font-family:ff1;line-height:0.978000;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_6b80175f70c8fda9ee07d9e9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.058000;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_ee78abfe993a5ac1dc2d0846.woff')format("woff");}.ff3{font-family:ff3;line-height:0.774069;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_2f1e6492df326a979aee5ab8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f2f16d9763a36047dd73805e.woff')format("woff");}.ff5{font-family:ff5;line-height:3.580000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-40.644000px;}
.v1{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:2.615971px;}
.lse{letter-spacing:2.621971px;}
.ls11{letter-spacing:14.663988px;}
.ls3{letter-spacing:14.771988px;}
.ls4{letter-spacing:14.843988px;}
.lsf{letter-spacing:16.367988px;}
.ls8{letter-spacing:18.977971px;}
.ls9{letter-spacing:18.983971px;}
.ls10{letter-spacing:19.343988px;}
.ls2{letter-spacing:20.441971px;}
.ls1{letter-spacing:21.755971px;}
.ls12{letter-spacing:30.029988px;}
.lsd{letter-spacing:465.377971px;}
.ls5{letter-spacing:482.393971px;}
.lsa{letter-spacing:497.189971px;}
.ls7{letter-spacing:568.139971px;}
.lsc{letter-spacing:805.607971px;}
.lsb{letter-spacing:1325.382529px;}
.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;}
}
.ws111{word-spacing:-37.013196px;}
.ws5b{word-spacing:-28.472751px;}
.ws6d{word-spacing:-26.509113px;}
.wse0{word-spacing:-26.002386px;}
.ws0{word-spacing:-22.315500px;}
.ws8a{word-spacing:-17.476378px;}
.ws31{word-spacing:-17.410924px;}
.wse9{word-spacing:-17.345469px;}
.ws22{word-spacing:-17.280014px;}
.ws8b{word-spacing:-17.214560px;}
.ws79{word-spacing:-17.149105px;}
.wsb9{word-spacing:-17.083651px;}
.ws10d{word-spacing:-17.018196px;}
.ws10f{word-spacing:-16.952741px;}
.wsb5{word-spacing:-16.887287px;}
.wsc5{word-spacing:-16.756378px;}
.wsa9{word-spacing:-16.690923px;}
.ws110{word-spacing:-16.625468px;}
.ws7d{word-spacing:-16.560014px;}
.ws13b{word-spacing:-16.532857px;}
.wsf{word-spacing:-16.494559px;}
.ws119{word-spacing:-16.429105px;}
.wsa4{word-spacing:-16.363650px;}
.ws11{word-spacing:-16.298195px;}
.ws25{word-spacing:-16.232741px;}
.ws99{word-spacing:-16.167286px;}
.ws102{word-spacing:-16.101832px;}
.ws36{word-spacing:-16.036377px;}
.ws1{word-spacing:-16.010359px;}
.wsff{word-spacing:-15.970922px;}
.wsa{word-spacing:-15.960085px;}
.ws3{word-spacing:-15.924282px;}
.wsab{word-spacing:-15.840013px;}
.ws44{word-spacing:-15.774559px;}
.wsfa{word-spacing:-15.720983px;}
.wsbe{word-spacing:-15.709104px;}
.wsac{word-spacing:-15.643649px;}
.wsd3{word-spacing:-15.578195px;}
.ws71{word-spacing:-15.512740px;}
.ws54{word-spacing:-15.493896px;}
.ws45{word-spacing:-15.447286px;}
.wsc6{word-spacing:-15.381831px;}
.ws106{word-spacing:-15.316376px;}
.wsec{word-spacing:-15.278763px;}
.ws115{word-spacing:-15.250922px;}
.ws104{word-spacing:-15.185467px;}
.ws59{word-spacing:-15.120013px;}
.ws58{word-spacing:-15.054558px;}
.ws85{word-spacing:-14.989103px;}
.wsb6{word-spacing:-14.923649px;}
.wsaa{word-spacing:-14.858194px;}
.wsca{word-spacing:-14.824349px;}
.ws2a{word-spacing:-14.792740px;}
.ws121{word-spacing:-14.767244px;}
.ws88{word-spacing:-14.727285px;}
.ws4a{word-spacing:-14.661830px;}
.ws23{word-spacing:-14.596376px;}
.ws116{word-spacing:-14.546857px;}
.ws5a{word-spacing:-14.530921px;}
.wscd{word-spacing:-14.525471px;}
.ws101{word-spacing:-14.465467px;}
.ws30{word-spacing:-14.400012px;}
.wsfb{word-spacing:-14.334557px;}
.ws90{word-spacing:-14.269103px;}
.ws14b{word-spacing:-14.222857px;}
.ws2c{word-spacing:-14.203648px;}
.ws13a{word-spacing:-14.195629px;}
.ws103{word-spacing:-14.138194px;}
.ws143{word-spacing:-14.104541px;}
.wsbb{word-spacing:-14.072739px;}
.wsbc{word-spacing:-14.007284px;}
.ws4f{word-spacing:-13.941830px;}
.ws91{word-spacing:-13.876375px;}
.ws131{word-spacing:-13.815924px;}
.wsbd{word-spacing:-13.810921px;}
.wsa6{word-spacing:-13.745466px;}
.wsce{word-spacing:-13.688612px;}
.wsa2{word-spacing:-13.680011px;}
.wsc7{word-spacing:-13.614557px;}
.ws4b{word-spacing:-13.549102px;}
.ws5c{word-spacing:-13.483648px;}
.ws89{word-spacing:-13.418193px;}
.ws53{word-spacing:-13.352738px;}
.ws40{word-spacing:-13.287284px;}
.wsed{word-spacing:-13.221829px;}
.wseb{word-spacing:-13.196834px;}
.ws81{word-spacing:-13.156375px;}
.ws49{word-spacing:-13.090920px;}
.ws10{word-spacing:-13.025465px;}
.wsd2{word-spacing:-12.960011px;}
.ws8f{word-spacing:-12.894556px;}
.ws83{word-spacing:-12.829102px;}
.ws1d{word-spacing:-12.763647px;}
.ws6a{word-spacing:-12.698192px;}
.ws6b{word-spacing:-12.632738px;}
.wsd9{word-spacing:-12.567283px;}
.ws7e{word-spacing:-12.501829px;}
.ws1b{word-spacing:-12.481776px;}
.ws7f{word-spacing:-12.436374px;}
.wsea{word-spacing:-12.370919px;}
.ws87{word-spacing:-12.305465px;}
.ws9e{word-spacing:-12.240010px;}
.ws124{word-spacing:-12.177761px;}
.ws127{word-spacing:-12.177073px;}
.wsee{word-spacing:-12.176111px;}
.ws122{word-spacing:-12.175955px;}
.ws2{word-spacing:-12.174556px;}
.ws117{word-spacing:-12.171462px;}
.wsd8{word-spacing:-12.134447px;}
.wsf7{word-spacing:-12.113523px;}
.ws11a{word-spacing:-12.110857px;}
.ws12a{word-spacing:-12.109992px;}
.ws13f{word-spacing:-12.109527px;}
.ws14f{word-spacing:-12.109400px;}
.ws14e{word-spacing:-12.109394px;}
.ws1f{word-spacing:-12.109101px;}
.ws11e{word-spacing:-12.108713px;}
.ws125{word-spacing:-12.107674px;}
.wsf5{word-spacing:-12.106981px;}
.ws148{word-spacing:-12.106507px;}
.ws13d{word-spacing:-12.105925px;}
.ws146{word-spacing:-12.105491px;}
.ws123{word-spacing:-12.104857px;}
.wsf4{word-spacing:-12.044877px;}
.wsa8{word-spacing:-12.043646px;}
.ws107{word-spacing:-11.978192px;}
.wsc4{word-spacing:-11.912737px;}
.wscf{word-spacing:-11.895344px;}
.wsc0{word-spacing:-11.847283px;}
.wse{word-spacing:-11.781828px;}
.ws20{word-spacing:-11.716373px;}
.ws4d{word-spacing:-11.650919px;}
.ws5d{word-spacing:-11.585464px;}
.ws27{word-spacing:-11.520010px;}
.ws136{word-spacing:-11.516857px;}
.ws21{word-spacing:-11.454555px;}
.ws12f{word-spacing:-11.450857px;}
.ws8e{word-spacing:-11.389100px;}
.ws43{word-spacing:-11.323646px;}
.ws37{word-spacing:-11.258191px;}
.ws3d{word-spacing:-11.192737px;}
.wsa7{word-spacing:-11.150308px;}
.ws9f{word-spacing:-11.127282px;}
.ws73{word-spacing:-11.061827px;}
.wsb{word-spacing:-11.058486px;}
.wsd{word-spacing:-10.996373px;}
.ws100{word-spacing:-10.962348px;}
.ws63{word-spacing:-10.930918px;}
.ws13c{word-spacing:-10.865464px;}
.wse1{word-spacing:-10.819384px;}
.ws14{word-spacing:-10.807456px;}
.ws29{word-spacing:-10.800009px;}
.ws65{word-spacing:-10.734554px;}
.ws1e{word-spacing:-10.669100px;}
.ws4c{word-spacing:-10.603645px;}
.ws13{word-spacing:-10.568353px;}
.ws2e{word-spacing:-10.538191px;}
.ws61{word-spacing:-10.472736px;}
.ws151{word-spacing:-10.454857px;}
.ws4e{word-spacing:-10.407281px;}
.ws130{word-spacing:-10.347363px;}
.wsd6{word-spacing:-10.341827px;}
.ws9{word-spacing:-10.341179px;}
.ws6f{word-spacing:-10.276372px;}
.ws41{word-spacing:-10.210918px;}
.ws69{word-spacing:-10.145463px;}
.ws1c{word-spacing:-10.080008px;}
.ws147{word-spacing:-10.015826px;}
.ws129{word-spacing:-10.015786px;}
.wsfe{word-spacing:-10.014554px;}
.ws140{word-spacing:-10.009870px;}
.wsf8{word-spacing:-9.982525px;}
.ws80{word-spacing:-9.939478px;}
.ws3c{word-spacing:-9.883645px;}
.ws4{word-spacing:-9.862974px;}
.wsc1{word-spacing:-9.818190px;}
.ws64{word-spacing:-9.752735px;}
.ws75{word-spacing:-9.687281px;}
.wse3{word-spacing:-9.683647px;}
.wsef{word-spacing:-9.630801px;}
.ws3b{word-spacing:-9.621826px;}
.ws70{word-spacing:-9.556372px;}
.ws28{word-spacing:-9.490917px;}
.wsc9{word-spacing:-9.444545px;}
.ws35{word-spacing:-9.425462px;}
.ws12{word-spacing:-9.360008px;}
.wsd7{word-spacing:-9.294553px;}
.ws55{word-spacing:-9.229099px;}
.ws15{word-spacing:-9.181555px;}
.ws3f{word-spacing:-9.163644px;}
.ws12d{word-spacing:-9.134857px;}
.ws17{word-spacing:-9.133735px;}
.wsa3{word-spacing:-9.098189px;}
.ws7b{word-spacing:-9.032735px;}
.wse2{word-spacing:-9.026116px;}
.ws156{word-spacing:-9.003419px;}
.ws157{word-spacing:-9.002857px;}
.ws33{word-spacing:-8.967280px;}
.ws93{word-spacing:-8.924834px;}
.ws95{word-spacing:-8.919924px;}
.ws97{word-spacing:-8.901826px;}
.ws19{word-spacing:-8.850643px;}
.ws18{word-spacing:-8.846811px;}
.wsae{word-spacing:-8.836371px;}
.ws8c{word-spacing:-8.770916px;}
.ws24{word-spacing:-8.705462px;}
.ws5{word-spacing:-8.667462px;}
.ws11f{word-spacing:-8.642894px;}
.wsd4{word-spacing:-8.640007px;}
.ws50{word-spacing:-8.574553px;}
.ws137{word-spacing:-8.573092px;}
.ws48{word-spacing:-8.509098px;}
.wsb7{word-spacing:-8.496710px;}
.ws74{word-spacing:-8.443643px;}
.wsbf{word-spacing:-8.378189px;}
.ws150{word-spacing:-8.365870px;}
.ws52{word-spacing:-8.312734px;}
.ws6{word-spacing:-8.249033px;}
.ws47{word-spacing:-8.247280px;}
.wsf9{word-spacing:-8.189257px;}
.ws105{word-spacing:-8.181825px;}
.ws82{word-spacing:-8.158061px;}
.ws32{word-spacing:-8.116370px;}
.ws3a{word-spacing:-8.050916px;}
.wsd0{word-spacing:-7.985461px;}
.wsb8{word-spacing:-7.920007px;}
.wsba{word-spacing:-7.854552px;}
.ws16{word-spacing:-7.794758px;}
.ws5f{word-spacing:-7.789097px;}
.ws84{word-spacing:-7.726061px;}
.ws42{word-spacing:-7.723643px;}
.wsad{word-spacing:-7.658188px;}
.wsa5{word-spacing:-7.592734px;}
.ws9a{word-spacing:-7.527279px;}
.ws38{word-spacing:-7.461824px;}
.ws2b{word-spacing:-7.396370px;}
.ws128{word-spacing:-7.330915px;}
.ws12b{word-spacing:-7.316309px;}
.wsb1{word-spacing:-7.265461px;}
.ws7{word-spacing:-7.232848px;}
.ws72{word-spacing:-7.200006px;}
.wscc{word-spacing:-7.173072px;}
.ws113{word-spacing:-7.148857px;}
.ws144{word-spacing:-7.136827px;}
.wsc2{word-spacing:-7.134551px;}
.ws92{word-spacing:-7.069097px;}
.ws108{word-spacing:-7.003642px;}
.ws3e{word-spacing:-6.938188px;}
.ws8{word-spacing:-6.933970px;}
.ws66{word-spacing:-6.872733px;}
.ws10b{word-spacing:-6.807278px;}
.wsfd{word-spacing:-6.741824px;}
.ws10a{word-spacing:-6.676369px;}
.ws5e{word-spacing:-6.631384px;}
.ws8d{word-spacing:-6.610915px;}
.ws155{word-spacing:-6.584857px;}
.ws98{word-spacing:-6.545460px;}
.ws6c{word-spacing:-6.535340px;}
.wsb4{word-spacing:-6.414551px;}
.wsaf{word-spacing:-6.349096px;}
.ws86{word-spacing:-6.283642px;}
.wsc8{word-spacing:-6.218187px;}
.ws51{word-spacing:-6.152732px;}
.ws76{word-spacing:-6.087531px;}
.ws2d{word-spacing:-6.087278px;}
.ws2f{word-spacing:-6.021823px;}
.ws6e{word-spacing:-5.977384px;}
.wsdb{word-spacing:-5.956369px;}
.wsb2{word-spacing:-5.890914px;}
.wsf3{word-spacing:-5.858009px;}
.ws60{word-spacing:-5.825459px;}
.ws96{word-spacing:-5.780802px;}
.wsfc{word-spacing:-5.760005px;}
.ws34{word-spacing:-5.694550px;}
.wsd5{word-spacing:-5.629096px;}
.wse4{word-spacing:-5.563641px;}
.wsd1{word-spacing:-5.498186px;}
.ws62{word-spacing:-5.482061px;}
.ws94{word-spacing:-5.451363px;}
.wsf1{word-spacing:-5.432732px;}
.wscb{word-spacing:-5.379804px;}
.wsf0{word-spacing:-5.367277px;}
.ws11b{word-spacing:-5.301823px;}
.ws112{word-spacing:-5.236368px;}
.ws46{word-spacing:-5.170913px;}
.wsda{word-spacing:-5.105459px;}
.ws139{word-spacing:-4.974550px;}
.wsb0{word-spacing:-4.909095px;}
.ws109{word-spacing:-4.778186px;}
.ws67{word-spacing:-4.712731px;}
.ws57{word-spacing:-4.647277px;}
.ws26{word-spacing:-4.581822px;}
.ws10e{word-spacing:-4.385458px;}
.ws39{word-spacing:-4.320004px;}
.ws77{word-spacing:-4.189094px;}
.wsa0{word-spacing:-4.123640px;}
.ws7c{word-spacing:-4.105340px;}
.wsdc{word-spacing:-4.058185px;}
.ws138{word-spacing:-3.992731px;}
.ws134{word-spacing:-3.969950px;}
.ws9c{word-spacing:-3.927276px;}
.ws14d{word-spacing:-3.861821px;}
.ws145{word-spacing:-3.796367px;}
.ws14c{word-spacing:-3.730912px;}
.ws11c{word-spacing:-3.534548px;}
.wse7{word-spacing:-3.403639px;}
.ws7a{word-spacing:-3.364072px;}
.ws149{word-spacing:-3.272730px;}
.ws56{word-spacing:-3.207275px;}
.wse6{word-spacing:-3.076366px;}
.wsc3{word-spacing:-3.010912px;}
.ws154{word-spacing:-2.945457px;}
.ws13e{word-spacing:-2.749093px;}
.ws68{word-spacing:-2.598801px;}
.ws152{word-spacing:-2.290911px;}
.wsa1{word-spacing:-2.160002px;}
.ws135{word-spacing:-2.094547px;}
.ws9b{word-spacing:-1.963638px;}
.ws11d{word-spacing:-1.505456px;}
.ws114{word-spacing:-1.440001px;}
.wsf2{word-spacing:-1.315063px;}
.wse8{word-spacing:-0.896634px;}
.ws142{word-spacing:-0.458182px;}
.ws153{word-spacing:-0.261818px;}
.ws120{word-spacing:-0.130909px;}
.ws1a{word-spacing:0.000000px;}
.ws126{word-spacing:0.196364px;}
.ws78{word-spacing:0.497825px;}
.ws141{word-spacing:0.523637px;}
.ws9d{word-spacing:0.603542px;}
.ws12e{word-spacing:1.112728px;}
.ws132{word-spacing:1.440001px;}
.ws12c{word-spacing:2.618184px;}
.ws133{word-spacing:3.403639px;}
.wsde{word-spacing:4.124516px;}
.ws118{word-spacing:4.843640px;}
.wsb3{word-spacing:4.949453px;}
.wse5{word-spacing:5.021184px;}
.ws14a{word-spacing:5.367277px;}
.wsdf{word-spacing:5.917784px;}
.ws10c{word-spacing:5.939327px;}
.wsc{word-spacing:6.025404px;}
.wsdd{word-spacing:6.097111px;}
.wsf6{word-spacing:138.563915px;}
._4{margin-left:-5.260253px;}
._2{margin-left:-3.600003px;}
._e{margin-left:-2.421820px;}
._0{margin-left:-1.363725px;}
._1{width:1.791983px;}
._3{width:2.997965px;}
._b{width:4.320004px;}
._24{width:6.025563px;}
._23{width:7.047214px;}
._15{width:10.210918px;}
._5{width:11.907329px;}
._8{width:13.025465px;}
._7{width:14.716463px;}
._6{width:16.756378px;}
._9{width:17.803651px;}
._14{width:18.916379px;}
._11{width:20.134517px;}
._27{width:21.503465px;}
._13{width:22.516382px;}
._f{width:23.973139px;}
._12{width:26.082799px;}
._28{width:27.255307px;}
._26{width:30.044785px;}
._25{width:32.138209px;}
._a{width:33.734529px;}
._16{width:35.372228px;}
._d{width:41.378332px;}
._c{width:43.038600px;}
._1d{width:72.323635px;}
._10{width:81.953402px;}
._1f{width:99.349261px;}
._17{width:112.189184px;}
._1a{width:138.098384px;}
._1c{width:174.305600px;}
._22{width:181.237527px;}
._1e{width:187.527429px;}
._20{width:195.251072px;}
._19{width:200.810615px;}
._21{width:555.500476px;}
._18{width:751.471238px;}
._1b{width:1243.630686px;}
.fc2{color:transparent;}
.fc1{color:rgb(156,154,155);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:0.000000px;}
.fs5{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs6{font-size:67.469057px;}
.fs7{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y48{bottom:56.406000px;}
.y1f{bottom:61.833000px;}
.y1e{bottom:75.139500px;}
.y1d{bottom:86.497500px;}
.y1c{bottom:97.854000px;}
.yfc{bottom:101.914500px;}
.y47{bottom:115.225500px;}
.ybf{bottom:117.475500px;}
.ydb{bottom:118.744500px;}
.y6f{bottom:119.404500px;}
.ya1{bottom:121.707000px;}
.yfb{bottom:122.238000px;}
.y124{bottom:122.341500px;}
.y74{bottom:122.343000px;}
.y163{bottom:122.458500px;}
.y8b{bottom:126.108000px;}
.y110{bottom:128.905500px;}
.ydd{bottom:131.424000px;}
.y46{bottom:135.550500px;}
.ybe{bottom:137.799000px;}
.yda{bottom:139.069500px;}
.y6e{bottom:139.728000px;}
.ya0{bottom:142.030500px;}
.yfa{bottom:142.561500px;}
.y13c{bottom:142.585500px;}
.y123{bottom:142.665000px;}
.y73{bottom:142.666500px;}
.y162{bottom:142.782000px;}
.y8a{bottom:146.433000px;}
.y10f{bottom:149.230500px;}
.y1b{bottom:153.189000px;}
.y45{bottom:155.874000px;}
.ybd{bottom:158.122500px;}
.yd9{bottom:159.393000px;}
.y6d{bottom:160.051500px;}
.y9f{bottom:162.354000px;}
.ya3{bottom:162.705000px;}
.yf9{bottom:162.886500px;}
.y13b{bottom:162.910500px;}
.y122{bottom:162.988500px;}
.y72{bottom:162.990000px;}
.y161{bottom:163.105500px;}
.y89{bottom:166.756500px;}
.y10e{bottom:169.554000px;}
.y1a{bottom:173.514000px;}
.y44{bottom:176.197500px;}
.ya2{bottom:177.051000px;}
.ybc{bottom:178.446000px;}
.yd8{bottom:179.716500px;}
.y6c{bottom:180.375000px;}
.y9e{bottom:182.677500px;}
.yf8{bottom:183.210000px;}
.y13a{bottom:183.234000px;}
.y121{bottom:183.312000px;}
.y160{bottom:183.429000px;}
.y88{bottom:187.080000px;}
.y10d{bottom:189.877500px;}
.y19{bottom:193.837500px;}
.y43{bottom:196.521000px;}
.y71{bottom:198.214500px;}
.ybb{bottom:198.769500px;}
.yd7{bottom:200.040000px;}
.y6b{bottom:200.698500px;}
.y9d{bottom:203.002500px;}
.yf7{bottom:203.533500px;}
.y139{bottom:203.557500px;}
.y120{bottom:203.637000px;}
.y15f{bottom:203.752500px;}
.y87{bottom:207.403500px;}
.y10c{bottom:210.201000px;}
.y18{bottom:214.161000px;}
.yde{bottom:215.368500px;}
.y42{bottom:216.844500px;}
.yba{bottom:219.094500px;}
.yd6{bottom:220.363500px;}
.y6a{bottom:221.023500px;}
.y70{bottom:222.268500px;}
.y9c{bottom:223.326000px;}
.yf6{bottom:223.857000px;}
.y138{bottom:223.881000px;}
.y11f{bottom:223.960500px;}
.y15e{bottom:224.077500px;}
.y86{bottom:227.727000px;}
.y10b{bottom:230.524500px;}
.y17{bottom:234.484500px;}
.y41{bottom:237.169500px;}
.yb9{bottom:239.418000px;}
.yd5{bottom:240.688500px;}
.y69{bottom:241.347000px;}
.y9b{bottom:243.649500px;}
.yf5{bottom:244.180500px;}
.y137{bottom:244.204500px;}
.y11e{bottom:244.284000px;}
.y15d{bottom:244.401000px;}
.y85{bottom:248.052000px;}
.y10a{bottom:250.849500px;}
.y16{bottom:254.808000px;}
.y40{bottom:257.493000px;}
.yd4{bottom:261.012000px;}
.y68{bottom:261.670500px;}
.y9a{bottom:263.973000px;}
.yf4{bottom:264.504000px;}
.y136{bottom:264.529500px;}
.y11d{bottom:264.607500px;}
.y15c{bottom:264.724500px;}
.y84{bottom:268.375500px;}
.yb8{bottom:270.271500px;}
.y109{bottom:271.173000px;}
.y3f{bottom:277.816500px;}
.yd3{bottom:281.335500px;}
.y67{bottom:281.994000px;}
.y99{bottom:284.296500px;}
.yf3{bottom:284.829000px;}
.y135{bottom:284.853000px;}
.y11c{bottom:284.931000px;}
.y15b{bottom:285.048000px;}
.y83{bottom:288.699000px;}
.y15{bottom:291.279000px;}
.y108{bottom:291.496500px;}
.y3e{bottom:298.140000px;}
.ydc{bottom:300.613500px;}
.yd2{bottom:301.659000px;}
.y66{bottom:302.317500px;}
.y98{bottom:304.621500px;}
.yf2{bottom:305.152500px;}
.y134{bottom:305.176500px;}
.y11b{bottom:305.256000px;}
.y15a{bottom:305.371500px;}
.y82{bottom:309.022500px;}
.y107{bottom:311.820000px;}
.yb7{bottom:313.560000px;}
.y3d{bottom:318.463500px;}
.yd1{bottom:321.982500px;}
.y65{bottom:322.641000px;}
.y97{bottom:324.945000px;}
.yf1{bottom:325.476000px;}
.y11a{bottom:325.579500px;}
.y159{bottom:325.696500px;}
.y81{bottom:329.346000px;}
.y106{bottom:332.143500px;}
.yb6{bottom:333.883500px;}
.y4a{bottom:338.787000px;}
.y3c{bottom:338.788500px;}
.y133{bottom:341.646000px;}
.yd0{bottom:342.307500px;}
.y64{bottom:342.966000px;}
.y96{bottom:345.268500px;}
.yf0{bottom:345.799500px;}
.y119{bottom:345.903000px;}
.y158{bottom:346.020000px;}
.y80{bottom:349.671000px;}
.y105{bottom:352.468500px;}
.yb5{bottom:354.207000px;}
.y3b{bottom:359.112000px;}
.y14{bottom:360.681000px;}
.ycf{bottom:362.631000px;}
.y63{bottom:363.289500px;}
.y95{bottom:365.592000px;}
.yef{bottom:366.123000px;}
.y118{bottom:366.226500px;}
.y157{bottom:366.343500px;}
.y7f{bottom:369.994500px;}
.y104{bottom:372.792000px;}
.yb4{bottom:374.532000px;}
.y13{bottom:378.613500px;}
.y3a{bottom:379.435500px;}
.yce{bottom:382.954500px;}
.y62{bottom:383.613000px;}
.y94{bottom:385.915500px;}
.yee{bottom:386.448000px;}
.y117{bottom:386.550000px;}
.y156{bottom:386.667000px;}
.y7e{bottom:390.318000px;}
.y103{bottom:393.115500px;}
.yb3{bottom:394.855500px;}
.y12{bottom:396.546000px;}
.y39{bottom:399.759000px;}
.ycd{bottom:403.278000px;}
.y61{bottom:403.936500px;}
.y93{bottom:406.240500px;}
.yed{bottom:406.771500px;}
.y116{bottom:406.875000px;}
.y155{bottom:406.990500px;}
.y7d{bottom:410.641500px;}
.y102{bottom:413.439000px;}
.y11{bottom:414.478500px;}
.yb2{bottom:415.179000px;}
.y38{bottom:420.082500px;}
.ycc{bottom:423.601500px;}
.y60{bottom:424.260000px;}
.yec{bottom:427.095000px;}
.y115{bottom:427.198500px;}
.y154{bottom:427.315500px;}
.y7c{bottom:430.965000px;}
.y10{bottom:432.411000px;}
.y101{bottom:433.762500px;}
.yb1{bottom:435.502500px;}
.y37{bottom:440.406000px;}
.y126{bottom:440.407500px;}
.ycb{bottom:443.926500px;}
.y5f{bottom:444.585000px;}
.yeb{bottom:447.418500px;}
.y114{bottom:447.522000px;}
.y153{bottom:447.639000px;}
.yf{bottom:450.343500px;}
.y7b{bottom:451.290000px;}
.y100{bottom:454.086000px;}
.yb0{bottom:455.826000px;}
.y92{bottom:455.830500px;}
.y36{bottom:460.731000px;}
.yca{bottom:464.250000px;}
.y5e{bottom:464.908500px;}
.yea{bottom:467.742000px;}
.y113{bottom:467.845500px;}
.y152{bottom:467.962500px;}
.ye{bottom:468.277500px;}
.y91{bottom:470.178000px;}
.y7a{bottom:471.613500px;}
.yff{bottom:474.411000px;}
.yaf{bottom:476.151000px;}
.y35{bottom:481.054500px;}
.y90{bottom:484.524000px;}
.yc9{bottom:484.573500px;}
.y5d{bottom:485.232000px;}
.yd{bottom:486.210000px;}
.ye9{bottom:488.067000px;}
.y151{bottom:488.286000px;}
.y79{bottom:491.937000px;}
.yfe{bottom:494.734500px;}
.yae{bottom:496.474500px;}
.y8f{bottom:498.870000px;}
.y34{bottom:501.378000px;}
.y112{bottom:504.315000px;}
.yc8{bottom:504.897000px;}
.y5c{bottom:505.555500px;}
.ye8{bottom:508.390500px;}
.y150{bottom:508.609500px;}
.y78{bottom:512.260500px;}
.y8e{bottom:513.216000px;}
.y132{bottom:515.058000px;}
.yad{bottom:516.798000px;}
.y33{bottom:521.701500px;}
.yc7{bottom:525.220500px;}
.yc{bottom:525.402000px;}
.y5b{bottom:525.879000px;}
.y8d{bottom:527.562000px;}
.ye7{bottom:528.714000px;}
.y14f{bottom:528.934500px;}
.yfd{bottom:531.204000px;}
.y111{bottom:531.214500px;}
.y77{bottom:532.584000px;}
.y131{bottom:535.381500px;}
.yac{bottom:537.121500px;}
.y32{bottom:542.025000px;}
.y125{bottom:542.026500px;}
.yc6{bottom:545.545500px;}
.ya{bottom:545.725500px;}
.y5a{bottom:546.204000px;}
.ye6{bottom:549.037500px;}
.y14e{bottom:549.258000px;}
.y130{bottom:555.705000px;}
.yab{bottom:557.445000px;}
.y31{bottom:562.350000px;}
.yb{bottom:562.870500px;}
.y76{bottom:563.439000px;}
.yc5{bottom:565.869000px;}
.y59{bottom:566.527500px;}
.ye5{bottom:569.361000px;}
.y14d{bottom:569.581500px;}
.y12f{bottom:576.030000px;}
.yaa{bottom:577.770000px;}
.y30{bottom:582.673500px;}
.y9{bottom:583.981500px;}
.yc4{bottom:586.192500px;}
.y58{bottom:586.851000px;}
.ye4{bottom:589.686000px;}
.y14c{bottom:589.905000px;}
.y12e{bottom:596.353500px;}
.ya9{bottom:598.093500px;}
.y2f{bottom:602.997000px;}
.y7{bottom:604.306500px;}
.yc3{bottom:606.516000px;}
.y57{bottom:607.174500px;}
.ye3{bottom:610.009500px;}
.y14b{bottom:610.228500px;}
.y12d{bottom:616.677000px;}
.y8{bottom:621.450000px;}
.y2e{bottom:623.320500px;}
.y56{bottom:627.498000px;}
.y14a{bottom:630.553500px;}
.y12c{bottom:637.000500px;}
.ya8{bottom:641.833500px;}
.y6{bottom:642.562500px;}
.y2d{bottom:643.644000px;}
.y8c{bottom:643.645500px;}
.y55{bottom:647.823000px;}
.y149{bottom:650.877000px;}
.yc2{bottom:652.012500px;}
.ya7{bottom:656.179500px;}
.y12b{bottom:657.324000px;}
.ye2{bottom:660.336000px;}
.y4{bottom:662.886000px;}
.y2c{bottom:663.969000px;}
.yc1{bottom:666.358500px;}
.y54{bottom:668.146500px;}
.ya6{bottom:670.525500px;}
.y148{bottom:671.200500px;}
.ye1{bottom:674.682000px;}
.y12a{bottom:677.649000px;}
.y5{bottom:680.031000px;}
.yc0{bottom:680.704500px;}
.y2b{bottom:684.292500px;}
.ya5{bottom:684.871500px;}
.y53{bottom:688.470000px;}
.ye0{bottom:689.028000px;}
.y147{bottom:691.524000px;}
.y129{bottom:697.972500px;}
.ya4{bottom:699.217500px;}
.y2a{bottom:704.616000px;}
.ydf{bottom:705.063000px;}
.y52{bottom:708.793500px;}
.y3{bottom:710.026500px;}
.y146{bottom:711.847500px;}
.y128{bottom:718.296000px;}
.y29{bottom:724.939500px;}
.y51{bottom:729.117000px;}
.y145{bottom:732.172500px;}
.y28{bottom:745.263000px;}
.y49{bottom:745.264500px;}
.y2{bottom:747.385500px;}
.y50{bottom:749.442000px;}
.y144{bottom:752.496000px;}
.y127{bottom:754.765500px;}
.y27{bottom:765.588000px;}
.y4f{bottom:769.765500px;}
.y143{bottom:772.819500px;}
.y26{bottom:785.911500px;}
.y4e{bottom:790.089000px;}
.y142{bottom:793.143000px;}
.y1{bottom:803.425500px;}
.y25{bottom:806.235000px;}
.y4d{bottom:810.412500px;}
.y141{bottom:813.466500px;}
.y24{bottom:826.558500px;}
.y4c{bottom:830.736000px;}
.y164{bottom:833.790000px;}
.y140{bottom:833.791500px;}
.y75{bottom:846.882000px;}
.y23{bottom:846.883500px;}
.y4b{bottom:851.061000px;}
.y13f{bottom:854.115000px;}
.y22{bottom:867.207000px;}
.y13e{bottom:874.438500px;}
.y21{bottom:887.530500px;}
.y13d{bottom:894.762000px;}
.y20{bottom:940.741500px;}
.h4{height:0.000000px;}
.h8{height:39.212892px;}
.hc{height:47.520040px;}
.h6{height:49.015992px;}
.hb{height:53.081088px;}
.h5{height:53.672772px;}
.hd{height:53.678772px;}
.h9{height:55.324627px;}
.h7{height:63.697128px;}
.h3{height:70.583304px;}
.h2{height:91.741500px;}
.ha{height:134.836476px;}
.h0{height:1020.465000px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:87.165000px;}
.xa{left:96.312000px;}
.x25{left:103.087500px;}
.x7{left:104.173500px;}
.x24{left:108.082500px;}
.xf{left:118.123500px;}
.x26{left:119.964000px;}
.x5{left:121.180500px;}
.xb{left:132.181500px;}
.xe{left:140.314500px;}
.x10{left:146.817000px;}
.x6{left:152.172000px;}
.x23{left:156.126000px;}
.xd{left:157.321500px;}
.x8{left:163.735500px;}
.x11{left:192.778500px;}
.x12{left:221.290500px;}
.x3{left:226.813500px;}
.x13{left:241.614000px;}
.x2{left:246.567000px;}
.x14{left:261.939000px;}
.x15{left:282.262500px;}
.x4{left:302.065500px;}
.x16{left:310.774500px;}
.x17{left:331.099500px;}
.x18{left:351.423000px;}
.x19{left:371.746500px;}
.x1a{left:400.260000px;}
.x1b{left:420.583500px;}
.x1c{left:440.907000px;}
.x1d{left:461.230500px;}
.x1e{left:489.744000px;}
.x1f{left:510.067500px;}
.x20{left:530.391000px;}
.x21{left:550.714500px;}
.x22{left:571.038000px;}
.x9{left:604.065000px;}
.xc{left:605.095500px;}
@media print{
.v2{vertical-align:-36.128000pt;}
.v1{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:2.325308pt;}
.lse{letter-spacing:2.330641pt;}
.ls11{letter-spacing:13.034656pt;}
.ls3{letter-spacing:13.130656pt;}
.ls4{letter-spacing:13.194656pt;}
.lsf{letter-spacing:14.549323pt;}
.ls8{letter-spacing:16.869308pt;}
.ls9{letter-spacing:16.874641pt;}
.ls10{letter-spacing:17.194656pt;}
.ls2{letter-spacing:18.170641pt;}
.ls1{letter-spacing:19.338641pt;}
.ls12{letter-spacing:26.693323pt;}
.lsd{letter-spacing:413.669308pt;}
.ls5{letter-spacing:428.794641pt;}
.lsa{letter-spacing:441.946641pt;}
.ls7{letter-spacing:505.013308pt;}
.lsc{letter-spacing:716.095974pt;}
.lsb{letter-spacing:1178.117804pt;}
.ws111{word-spacing:-32.900619pt;}
.ws5b{word-spacing:-25.309112pt;}
.ws6d{word-spacing:-23.563656pt;}
.wse0{word-spacing:-23.113232pt;}
.ws0{word-spacing:-19.836000pt;}
.ws8a{word-spacing:-15.534558pt;}
.ws31{word-spacing:-15.476377pt;}
.wse9{word-spacing:-15.418195pt;}
.ws22{word-spacing:-15.360013pt;}
.ws8b{word-spacing:-15.301831pt;}
.ws79{word-spacing:-15.243649pt;}
.wsb9{word-spacing:-15.185467pt;}
.ws10d{word-spacing:-15.127285pt;}
.ws10f{word-spacing:-15.069103pt;}
.wsb5{word-spacing:-15.010922pt;}
.wsc5{word-spacing:-14.894558pt;}
.wsa9{word-spacing:-14.836376pt;}
.ws110{word-spacing:-14.778194pt;}
.ws7d{word-spacing:-14.720012pt;}
.ws13b{word-spacing:-14.695873pt;}
.wsf{word-spacing:-14.661830pt;}
.ws119{word-spacing:-14.603649pt;}
.wsa4{word-spacing:-14.545467pt;}
.ws11{word-spacing:-14.487285pt;}
.ws25{word-spacing:-14.429103pt;}
.ws99{word-spacing:-14.370921pt;}
.ws102{word-spacing:-14.312739pt;}
.ws36{word-spacing:-14.254557pt;}
.ws1{word-spacing:-14.231430pt;}
.wsff{word-spacing:-14.196375pt;}
.wsa{word-spacing:-14.186742pt;}
.ws3{word-spacing:-14.154917pt;}
.wsab{word-spacing:-14.080012pt;}
.ws44{word-spacing:-14.021830pt;}
.wsfa{word-spacing:-13.974207pt;}
.wsbe{word-spacing:-13.963648pt;}
.wsac{word-spacing:-13.905466pt;}
.wsd3{word-spacing:-13.847284pt;}
.ws71{word-spacing:-13.789102pt;}
.ws54{word-spacing:-13.772352pt;}
.ws45{word-spacing:-13.730921pt;}
.wsc6{word-spacing:-13.672739pt;}
.ws106{word-spacing:-13.614557pt;}
.wsec{word-spacing:-13.581123pt;}
.ws115{word-spacing:-13.556375pt;}
.ws104{word-spacing:-13.498193pt;}
.ws59{word-spacing:-13.440011pt;}
.ws58{word-spacing:-13.381829pt;}
.ws85{word-spacing:-13.323647pt;}
.wsb6{word-spacing:-13.265466pt;}
.wsaa{word-spacing:-13.207284pt;}
.wsca{word-spacing:-13.177199pt;}
.ws2a{word-spacing:-13.149102pt;}
.ws121{word-spacing:-13.126439pt;}
.ws88{word-spacing:-13.090920pt;}
.ws4a{word-spacing:-13.032738pt;}
.ws23{word-spacing:-12.974556pt;}
.ws116{word-spacing:-12.930539pt;}
.ws5a{word-spacing:-12.916374pt;}
.wscd{word-spacing:-12.911530pt;}
.ws101{word-spacing:-12.858193pt;}
.ws30{word-spacing:-12.800011pt;}
.wsfb{word-spacing:-12.741829pt;}
.ws90{word-spacing:-12.683647pt;}
.ws14b{word-spacing:-12.642539pt;}
.ws2c{word-spacing:-12.625465pt;}
.ws13a{word-spacing:-12.618337pt;}
.ws103{word-spacing:-12.567283pt;}
.ws143{word-spacing:-12.537370pt;}
.wsbb{word-spacing:-12.509101pt;}
.wsbc{word-spacing:-12.450919pt;}
.ws4f{word-spacing:-12.392738pt;}
.ws91{word-spacing:-12.334556pt;}
.ws131{word-spacing:-12.280821pt;}
.wsbd{word-spacing:-12.276374pt;}
.wsa6{word-spacing:-12.218192pt;}
.wsce{word-spacing:-12.167655pt;}
.wsa2{word-spacing:-12.160010pt;}
.wsc7{word-spacing:-12.101828pt;}
.ws4b{word-spacing:-12.043646pt;}
.ws5c{word-spacing:-11.985465pt;}
.ws89{word-spacing:-11.927283pt;}
.ws53{word-spacing:-11.869101pt;}
.ws40{word-spacing:-11.810919pt;}
.wsed{word-spacing:-11.752737pt;}
.wseb{word-spacing:-11.730519pt;}
.ws81{word-spacing:-11.694555pt;}
.ws49{word-spacing:-11.636373pt;}
.ws10{word-spacing:-11.578191pt;}
.wsd2{word-spacing:-11.520010pt;}
.ws8f{word-spacing:-11.461828pt;}
.ws83{word-spacing:-11.403646pt;}
.ws1d{word-spacing:-11.345464pt;}
.ws6a{word-spacing:-11.287282pt;}
.ws6b{word-spacing:-11.229100pt;}
.wsd9{word-spacing:-11.170918pt;}
.ws7e{word-spacing:-11.112737pt;}
.ws1b{word-spacing:-11.094912pt;}
.ws7f{word-spacing:-11.054555pt;}
.wsea{word-spacing:-10.996373pt;}
.ws87{word-spacing:-10.938191pt;}
.ws9e{word-spacing:-10.880009pt;}
.ws124{word-spacing:-10.824676pt;}
.ws127{word-spacing:-10.824065pt;}
.wsee{word-spacing:-10.823210pt;}
.ws122{word-spacing:-10.823071pt;}
.ws2{word-spacing:-10.821827pt;}
.ws117{word-spacing:-10.819077pt;}
.wsd8{word-spacing:-10.786175pt;}
.wsf7{word-spacing:-10.767576pt;}
.ws11a{word-spacing:-10.765206pt;}
.ws12a{word-spacing:-10.764437pt;}
.ws13f{word-spacing:-10.764024pt;}
.ws14f{word-spacing:-10.763911pt;}
.ws14e{word-spacing:-10.763906pt;}
.ws1f{word-spacing:-10.763645pt;}
.ws11e{word-spacing:-10.763300pt;}
.ws125{word-spacing:-10.762377pt;}
.wsf5{word-spacing:-10.761761pt;}
.ws148{word-spacing:-10.761340pt;}
.ws13d{word-spacing:-10.760822pt;}
.ws146{word-spacing:-10.760436pt;}
.ws123{word-spacing:-10.759873pt;}
.wsf4{word-spacing:-10.706557pt;}
.wsa8{word-spacing:-10.705463pt;}
.ws107{word-spacing:-10.647282pt;}
.wsc4{word-spacing:-10.589100pt;}
.wscf{word-spacing:-10.573639pt;}
.wsc0{word-spacing:-10.530918pt;}
.wse{word-spacing:-10.472736pt;}
.ws20{word-spacing:-10.414554pt;}
.ws4d{word-spacing:-10.356372pt;}
.ws5d{word-spacing:-10.298190pt;}
.ws27{word-spacing:-10.240009pt;}
.ws136{word-spacing:-10.237206pt;}
.ws21{word-spacing:-10.181827pt;}
.ws12f{word-spacing:-10.178539pt;}
.ws8e{word-spacing:-10.123645pt;}
.ws43{word-spacing:-10.065463pt;}
.ws37{word-spacing:-10.007281pt;}
.ws3d{word-spacing:-9.949099pt;}
.wsa7{word-spacing:-9.911385pt;}
.ws9f{word-spacing:-9.890917pt;}
.ws73{word-spacing:-9.832735pt;}
.wsb{word-spacing:-9.829765pt;}
.wsd{word-spacing:-9.774554pt;}
.ws100{word-spacing:-9.744309pt;}
.ws63{word-spacing:-9.716372pt;}
.ws13c{word-spacing:-9.658190pt;}
.wse1{word-spacing:-9.617230pt;}
.ws14{word-spacing:-9.606627pt;}
.ws29{word-spacing:-9.600008pt;}
.ws65{word-spacing:-9.541826pt;}
.ws1e{word-spacing:-9.483644pt;}
.ws4c{word-spacing:-9.425462pt;}
.ws13{word-spacing:-9.394091pt;}
.ws2e{word-spacing:-9.367281pt;}
.ws61{word-spacing:-9.309099pt;}
.ws151{word-spacing:-9.293206pt;}
.ws4e{word-spacing:-9.250917pt;}
.ws130{word-spacing:-9.197656pt;}
.wsd6{word-spacing:-9.192735pt;}
.ws9{word-spacing:-9.192159pt;}
.ws6f{word-spacing:-9.134553pt;}
.ws41{word-spacing:-9.076371pt;}
.ws69{word-spacing:-9.018189pt;}
.ws1c{word-spacing:-8.960007pt;}
.ws147{word-spacing:-8.902956pt;}
.ws129{word-spacing:-8.902921pt;}
.wsfe{word-spacing:-8.901826pt;}
.ws140{word-spacing:-8.897662pt;}
.wsf8{word-spacing:-8.873356pt;}
.ws80{word-spacing:-8.835091pt;}
.ws3c{word-spacing:-8.785462pt;}
.ws4{word-spacing:-8.767088pt;}
.wsc1{word-spacing:-8.727280pt;}
.ws64{word-spacing:-8.669098pt;}
.ws75{word-spacing:-8.610916pt;}
.wse3{word-spacing:-8.607686pt;}
.wsef{word-spacing:-8.560712pt;}
.ws3b{word-spacing:-8.552734pt;}
.ws70{word-spacing:-8.494553pt;}
.ws28{word-spacing:-8.436371pt;}
.wsc9{word-spacing:-8.395151pt;}
.ws35{word-spacing:-8.378189pt;}
.ws12{word-spacing:-8.320007pt;}
.wsd7{word-spacing:-8.261825pt;}
.ws55{word-spacing:-8.203643pt;}
.ws15{word-spacing:-8.161382pt;}
.ws3f{word-spacing:-8.145461pt;}
.ws12d{word-spacing:-8.119873pt;}
.ws17{word-spacing:-8.118875pt;}
.wsa3{word-spacing:-8.087279pt;}
.ws7b{word-spacing:-8.029098pt;}
.wse2{word-spacing:-8.023214pt;}
.ws156{word-spacing:-8.003039pt;}
.ws157{word-spacing:-8.002539pt;}
.ws33{word-spacing:-7.970916pt;}
.ws93{word-spacing:-7.933186pt;}
.ws95{word-spacing:-7.928821pt;}
.ws97{word-spacing:-7.912734pt;}
.ws19{word-spacing:-7.867238pt;}
.ws18{word-spacing:-7.863832pt;}
.wsae{word-spacing:-7.854552pt;}
.ws8c{word-spacing:-7.796370pt;}
.ws24{word-spacing:-7.738188pt;}
.ws5{word-spacing:-7.704411pt;}
.ws11f{word-spacing:-7.682572pt;}
.wsd4{word-spacing:-7.680006pt;}
.ws50{word-spacing:-7.621825pt;}
.ws137{word-spacing:-7.620526pt;}
.ws48{word-spacing:-7.563643pt;}
.wsb7{word-spacing:-7.552631pt;}
.ws74{word-spacing:-7.505461pt;}
.wsbf{word-spacing:-7.447279pt;}
.ws150{word-spacing:-7.436329pt;}
.ws52{word-spacing:-7.389097pt;}
.ws6{word-spacing:-7.332474pt;}
.ws47{word-spacing:-7.330915pt;}
.wsf9{word-spacing:-7.279340pt;}
.ws105{word-spacing:-7.272733pt;}
.ws82{word-spacing:-7.251610pt;}
.ws32{word-spacing:-7.214551pt;}
.ws3a{word-spacing:-7.156370pt;}
.wsd0{word-spacing:-7.098188pt;}
.wsb8{word-spacing:-7.040006pt;}
.wsba{word-spacing:-6.981824pt;}
.ws16{word-spacing:-6.928674pt;}
.ws5f{word-spacing:-6.923642pt;}
.ws84{word-spacing:-6.867610pt;}
.ws42{word-spacing:-6.865460pt;}
.wsad{word-spacing:-6.807278pt;}
.wsa5{word-spacing:-6.749097pt;}
.ws9a{word-spacing:-6.690915pt;}
.ws38{word-spacing:-6.632733pt;}
.ws2b{word-spacing:-6.574551pt;}
.ws128{word-spacing:-6.516369pt;}
.ws12b{word-spacing:-6.503386pt;}
.wsb1{word-spacing:-6.458187pt;}
.ws7{word-spacing:-6.429198pt;}
.ws72{word-spacing:-6.400005pt;}
.wscc{word-spacing:-6.376064pt;}
.ws113{word-spacing:-6.354539pt;}
.ws144{word-spacing:-6.343846pt;}
.wsc2{word-spacing:-6.341823pt;}
.ws92{word-spacing:-6.283642pt;}
.ws108{word-spacing:-6.225460pt;}
.ws3e{word-spacing:-6.167278pt;}
.ws8{word-spacing:-6.163529pt;}
.ws66{word-spacing:-6.109096pt;}
.ws10b{word-spacing:-6.050914pt;}
.wsfd{word-spacing:-5.992732pt;}
.ws10a{word-spacing:-5.934550pt;}
.ws5e{word-spacing:-5.894564pt;}
.ws8d{word-spacing:-5.876369pt;}
.ws155{word-spacing:-5.853206pt;}
.ws98{word-spacing:-5.818187pt;}
.ws6c{word-spacing:-5.809191pt;}
.wsb4{word-spacing:-5.701823pt;}
.wsaf{word-spacing:-5.643641pt;}
.ws86{word-spacing:-5.585459pt;}
.wsc8{word-spacing:-5.527277pt;}
.ws51{word-spacing:-5.469095pt;}
.ws76{word-spacing:-5.411139pt;}
.ws2d{word-spacing:-5.410914pt;}
.ws2f{word-spacing:-5.352732pt;}
.ws6e{word-spacing:-5.313230pt;}
.wsdb{word-spacing:-5.294550pt;}
.wsb2{word-spacing:-5.236368pt;}
.wsf3{word-spacing:-5.207119pt;}
.ws60{word-spacing:-5.178186pt;}
.ws96{word-spacing:-5.138491pt;}
.wsfc{word-spacing:-5.120004pt;}
.ws34{word-spacing:-5.061822pt;}
.wsd5{word-spacing:-5.003641pt;}
.wse4{word-spacing:-4.945459pt;}
.wsd1{word-spacing:-4.887277pt;}
.ws62{word-spacing:-4.872943pt;}
.ws94{word-spacing:-4.845656pt;}
.wsf1{word-spacing:-4.829095pt;}
.wscb{word-spacing:-4.782048pt;}
.wsf0{word-spacing:-4.770913pt;}
.ws11b{word-spacing:-4.712731pt;}
.ws112{word-spacing:-4.654549pt;}
.ws46{word-spacing:-4.596367pt;}
.wsda{word-spacing:-4.538186pt;}
.ws139{word-spacing:-4.421822pt;}
.wsb0{word-spacing:-4.363640pt;}
.ws109{word-spacing:-4.247276pt;}
.ws67{word-spacing:-4.189094pt;}
.ws57{word-spacing:-4.130913pt;}
.ws26{word-spacing:-4.072731pt;}
.ws10e{word-spacing:-3.898185pt;}
.ws39{word-spacing:-3.840003pt;}
.ws77{word-spacing:-3.723639pt;}
.wsa0{word-spacing:-3.665458pt;}
.ws7c{word-spacing:-3.649191pt;}
.wsdc{word-spacing:-3.607276pt;}
.ws138{word-spacing:-3.549094pt;}
.ws134{word-spacing:-3.528844pt;}
.ws9c{word-spacing:-3.490912pt;}
.ws14d{word-spacing:-3.432730pt;}
.ws145{word-spacing:-3.374548pt;}
.ws14c{word-spacing:-3.316366pt;}
.ws11c{word-spacing:-3.141821pt;}
.wse7{word-spacing:-3.025457pt;}
.ws7a{word-spacing:-2.990286pt;}
.ws149{word-spacing:-2.909093pt;}
.ws56{word-spacing:-2.850911pt;}
.wse6{word-spacing:-2.734548pt;}
.wsc3{word-spacing:-2.676366pt;}
.ws154{word-spacing:-2.618184pt;}
.ws13e{word-spacing:-2.443638pt;}
.ws68{word-spacing:-2.310045pt;}
.ws152{word-spacing:-2.036365pt;}
.wsa1{word-spacing:-1.920002pt;}
.ws135{word-spacing:-1.861820pt;}
.ws9b{word-spacing:-1.745456pt;}
.ws11d{word-spacing:-1.338183pt;}
.ws114{word-spacing:-1.280001pt;}
.wsf2{word-spacing:-1.168945pt;}
.wse8{word-spacing:-0.797008pt;}
.ws142{word-spacing:-0.407273pt;}
.ws153{word-spacing:-0.232727pt;}
.ws120{word-spacing:-0.116364pt;}
.ws1a{word-spacing:0.000000pt;}
.ws126{word-spacing:0.174546pt;}
.ws78{word-spacing:0.442511pt;}
.ws141{word-spacing:0.465455pt;}
.ws9d{word-spacing:0.536482pt;}
.ws12e{word-spacing:0.989092pt;}
.ws132{word-spacing:1.280001pt;}
.ws12c{word-spacing:2.327275pt;}
.ws133{word-spacing:3.025457pt;}
.wsde{word-spacing:3.666237pt;}
.ws118{word-spacing:4.305458pt;}
.wsb3{word-spacing:4.399514pt;}
.wse5{word-spacing:4.463275pt;}
.ws14a{word-spacing:4.770913pt;}
.wsdf{word-spacing:5.260253pt;}
.ws10c{word-spacing:5.279402pt;}
.wsc{word-spacing:5.355915pt;}
.wsdd{word-spacing:5.419654pt;}
.wsf6{word-spacing:123.167924pt;}
._4{margin-left:-4.675780pt;}
._2{margin-left:-3.200003pt;}
._e{margin-left:-2.152729pt;}
._0{margin-left:-1.212200pt;}
._1{width:1.592874pt;}
._3{width:2.664858pt;}
._b{width:3.840003pt;}
._24{width:5.356056pt;}
._23{width:6.264190pt;}
._15{width:9.076371pt;}
._5{width:10.584293pt;}
._8{width:11.578191pt;}
._7{width:13.081301pt;}
._6{width:14.894558pt;}
._9{width:15.825468pt;}
._14{width:16.814559pt;}
._11{width:17.897348pt;}
._27{width:19.114191pt;}
._13{width:20.014562pt;}
._f{width:21.309457pt;}
._12{width:23.184710pt;}
._28{width:24.226939pt;}
._26{width:26.706475pt;}
._25{width:28.567297pt;}
._a{width:29.986248pt;}
._16{width:31.441980pt;}
._d{width:36.780739pt;}
._c{width:38.256533pt;}
._1d{width:64.287675pt;}
._10{width:72.847469pt;}
._1f{width:88.310454pt;}
._17{width:99.723719pt;}
._1a{width:122.754119pt;}
._1c{width:154.938311pt;}
._22{width:161.100024pt;}
._1e{width:166.691048pt;}
._20{width:173.556508pt;}
._19{width:178.498324pt;}
._21{width:493.778201pt;}
._18{width:667.974434pt;}
._1b{width:1105.449499pt;}
.fs2{font-size:0.000000pt;}
.fs5{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs6{font-size:59.972495pt;}
.fs7{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:50.138667pt;}
.y1f{bottom:54.962667pt;}
.y1e{bottom:66.790667pt;}
.y1d{bottom:76.886667pt;}
.y1c{bottom:86.981333pt;}
.yfc{bottom:90.590667pt;}
.y47{bottom:102.422667pt;}
.ybf{bottom:104.422667pt;}
.ydb{bottom:105.550667pt;}
.y6f{bottom:106.137333pt;}
.ya1{bottom:108.184000pt;}
.yfb{bottom:108.656000pt;}
.y124{bottom:108.748000pt;}
.y74{bottom:108.749333pt;}
.y163{bottom:108.852000pt;}
.y8b{bottom:112.096000pt;}
.y110{bottom:114.582667pt;}
.ydd{bottom:116.821333pt;}
.y46{bottom:120.489333pt;}
.ybe{bottom:122.488000pt;}
.yda{bottom:123.617333pt;}
.y6e{bottom:124.202667pt;}
.ya0{bottom:126.249333pt;}
.yfa{bottom:126.721333pt;}
.y13c{bottom:126.742667pt;}
.y123{bottom:126.813333pt;}
.y73{bottom:126.814667pt;}
.y162{bottom:126.917333pt;}
.y8a{bottom:130.162667pt;}
.y10f{bottom:132.649333pt;}
.y1b{bottom:136.168000pt;}
.y45{bottom:138.554667pt;}
.ybd{bottom:140.553333pt;}
.yd9{bottom:141.682667pt;}
.y6d{bottom:142.268000pt;}
.y9f{bottom:144.314667pt;}
.ya3{bottom:144.626667pt;}
.yf9{bottom:144.788000pt;}
.y13b{bottom:144.809333pt;}
.y122{bottom:144.878667pt;}
.y72{bottom:144.880000pt;}
.y161{bottom:144.982667pt;}
.y89{bottom:148.228000pt;}
.y10e{bottom:150.714667pt;}
.y1a{bottom:154.234667pt;}
.y44{bottom:156.620000pt;}
.ya2{bottom:157.378667pt;}
.ybc{bottom:158.618667pt;}
.yd8{bottom:159.748000pt;}
.y6c{bottom:160.333333pt;}
.y9e{bottom:162.380000pt;}
.yf8{bottom:162.853333pt;}
.y13a{bottom:162.874667pt;}
.y121{bottom:162.944000pt;}
.y160{bottom:163.048000pt;}
.y88{bottom:166.293333pt;}
.y10d{bottom:168.780000pt;}
.y19{bottom:172.300000pt;}
.y43{bottom:174.685333pt;}
.y71{bottom:176.190667pt;}
.ybb{bottom:176.684000pt;}
.yd7{bottom:177.813333pt;}
.y6b{bottom:178.398667pt;}
.y9d{bottom:180.446667pt;}
.yf7{bottom:180.918667pt;}
.y139{bottom:180.940000pt;}
.y120{bottom:181.010667pt;}
.y15f{bottom:181.113333pt;}
.y87{bottom:184.358667pt;}
.y10c{bottom:186.845333pt;}
.y18{bottom:190.365333pt;}
.yde{bottom:191.438667pt;}
.y42{bottom:192.750667pt;}
.yba{bottom:194.750667pt;}
.yd6{bottom:195.878667pt;}
.y6a{bottom:196.465333pt;}
.y70{bottom:197.572000pt;}
.y9c{bottom:198.512000pt;}
.yf6{bottom:198.984000pt;}
.y138{bottom:199.005333pt;}
.y11f{bottom:199.076000pt;}
.y15e{bottom:199.180000pt;}
.y86{bottom:202.424000pt;}
.y10b{bottom:204.910667pt;}
.y17{bottom:208.430667pt;}
.y41{bottom:210.817333pt;}
.yb9{bottom:212.816000pt;}
.yd5{bottom:213.945333pt;}
.y69{bottom:214.530667pt;}
.y9b{bottom:216.577333pt;}
.yf5{bottom:217.049333pt;}
.y137{bottom:217.070667pt;}
.y11e{bottom:217.141333pt;}
.y15d{bottom:217.245333pt;}
.y85{bottom:220.490667pt;}
.y10a{bottom:222.977333pt;}
.y16{bottom:226.496000pt;}
.y40{bottom:228.882667pt;}
.yd4{bottom:232.010667pt;}
.y68{bottom:232.596000pt;}
.y9a{bottom:234.642667pt;}
.yf4{bottom:235.114667pt;}
.y136{bottom:235.137333pt;}
.y11d{bottom:235.206667pt;}
.y15c{bottom:235.310667pt;}
.y84{bottom:238.556000pt;}
.yb8{bottom:240.241333pt;}
.y109{bottom:241.042667pt;}
.y3f{bottom:246.948000pt;}
.yd3{bottom:250.076000pt;}
.y67{bottom:250.661333pt;}
.y99{bottom:252.708000pt;}
.yf3{bottom:253.181333pt;}
.y135{bottom:253.202667pt;}
.y11c{bottom:253.272000pt;}
.y15b{bottom:253.376000pt;}
.y83{bottom:256.621333pt;}
.y15{bottom:258.914667pt;}
.y108{bottom:259.108000pt;}
.y3e{bottom:265.013333pt;}
.ydc{bottom:267.212000pt;}
.yd2{bottom:268.141333pt;}
.y66{bottom:268.726667pt;}
.y98{bottom:270.774667pt;}
.yf2{bottom:271.246667pt;}
.y134{bottom:271.268000pt;}
.y11b{bottom:271.338667pt;}
.y15a{bottom:271.441333pt;}
.y82{bottom:274.686667pt;}
.y107{bottom:277.173333pt;}
.yb7{bottom:278.720000pt;}
.y3d{bottom:283.078667pt;}
.yd1{bottom:286.206667pt;}
.y65{bottom:286.792000pt;}
.y97{bottom:288.840000pt;}
.yf1{bottom:289.312000pt;}
.y11a{bottom:289.404000pt;}
.y159{bottom:289.508000pt;}
.y81{bottom:292.752000pt;}
.y106{bottom:295.238667pt;}
.yb6{bottom:296.785333pt;}
.y4a{bottom:301.144000pt;}
.y3c{bottom:301.145333pt;}
.y133{bottom:303.685333pt;}
.yd0{bottom:304.273333pt;}
.y64{bottom:304.858667pt;}
.y96{bottom:306.905333pt;}
.yf0{bottom:307.377333pt;}
.y119{bottom:307.469333pt;}
.y158{bottom:307.573333pt;}
.y80{bottom:310.818667pt;}
.y105{bottom:313.305333pt;}
.yb5{bottom:314.850667pt;}
.y3b{bottom:319.210667pt;}
.y14{bottom:320.605333pt;}
.ycf{bottom:322.338667pt;}
.y63{bottom:322.924000pt;}
.y95{bottom:324.970667pt;}
.yef{bottom:325.442667pt;}
.y118{bottom:325.534667pt;}
.y157{bottom:325.638667pt;}
.y7f{bottom:328.884000pt;}
.y104{bottom:331.370667pt;}
.yb4{bottom:332.917333pt;}
.y13{bottom:336.545333pt;}
.y3a{bottom:337.276000pt;}
.yce{bottom:340.404000pt;}
.y62{bottom:340.989333pt;}
.y94{bottom:343.036000pt;}
.yee{bottom:343.509333pt;}
.y117{bottom:343.600000pt;}
.y156{bottom:343.704000pt;}
.y7e{bottom:346.949333pt;}
.y103{bottom:349.436000pt;}
.yb3{bottom:350.982667pt;}
.y12{bottom:352.485333pt;}
.y39{bottom:355.341333pt;}
.ycd{bottom:358.469333pt;}
.y61{bottom:359.054667pt;}
.y93{bottom:361.102667pt;}
.yed{bottom:361.574667pt;}
.y116{bottom:361.666667pt;}
.y155{bottom:361.769333pt;}
.y7d{bottom:365.014667pt;}
.y102{bottom:367.501333pt;}
.y11{bottom:368.425333pt;}
.yb2{bottom:369.048000pt;}
.y38{bottom:373.406667pt;}
.ycc{bottom:376.534667pt;}
.y60{bottom:377.120000pt;}
.yec{bottom:379.640000pt;}
.y115{bottom:379.732000pt;}
.y154{bottom:379.836000pt;}
.y7c{bottom:383.080000pt;}
.y10{bottom:384.365333pt;}
.y101{bottom:385.566667pt;}
.yb1{bottom:387.113333pt;}
.y37{bottom:391.472000pt;}
.y126{bottom:391.473333pt;}
.ycb{bottom:394.601333pt;}
.y5f{bottom:395.186667pt;}
.yeb{bottom:397.705333pt;}
.y114{bottom:397.797333pt;}
.y153{bottom:397.901333pt;}
.yf{bottom:400.305333pt;}
.y7b{bottom:401.146667pt;}
.y100{bottom:403.632000pt;}
.yb0{bottom:405.178667pt;}
.y92{bottom:405.182667pt;}
.y36{bottom:409.538667pt;}
.yca{bottom:412.666667pt;}
.y5e{bottom:413.252000pt;}
.yea{bottom:415.770667pt;}
.y113{bottom:415.862667pt;}
.y152{bottom:415.966667pt;}
.ye{bottom:416.246667pt;}
.y91{bottom:417.936000pt;}
.y7a{bottom:419.212000pt;}
.yff{bottom:421.698667pt;}
.yaf{bottom:423.245333pt;}
.y35{bottom:427.604000pt;}
.y90{bottom:430.688000pt;}
.yc9{bottom:430.732000pt;}
.y5d{bottom:431.317333pt;}
.yd{bottom:432.186667pt;}
.ye9{bottom:433.837333pt;}
.y151{bottom:434.032000pt;}
.y79{bottom:437.277333pt;}
.yfe{bottom:439.764000pt;}
.yae{bottom:441.310667pt;}
.y8f{bottom:443.440000pt;}
.y34{bottom:445.669333pt;}
.y112{bottom:448.280000pt;}
.yc8{bottom:448.797333pt;}
.y5c{bottom:449.382667pt;}
.ye8{bottom:451.902667pt;}
.y150{bottom:452.097333pt;}
.y78{bottom:455.342667pt;}
.y8e{bottom:456.192000pt;}
.y132{bottom:457.829333pt;}
.yad{bottom:459.376000pt;}
.y33{bottom:463.734667pt;}
.yc7{bottom:466.862667pt;}
.yc{bottom:467.024000pt;}
.y5b{bottom:467.448000pt;}
.y8d{bottom:468.944000pt;}
.ye7{bottom:469.968000pt;}
.y14f{bottom:470.164000pt;}
.yfd{bottom:472.181333pt;}
.y111{bottom:472.190667pt;}
.y77{bottom:473.408000pt;}
.y131{bottom:475.894667pt;}
.yac{bottom:477.441333pt;}
.y32{bottom:481.800000pt;}
.y125{bottom:481.801333pt;}
.yc6{bottom:484.929333pt;}
.ya{bottom:485.089333pt;}
.y5a{bottom:485.514667pt;}
.ye6{bottom:488.033333pt;}
.y14e{bottom:488.229333pt;}
.y130{bottom:493.960000pt;}
.yab{bottom:495.506667pt;}
.y31{bottom:499.866667pt;}
.yb{bottom:500.329333pt;}
.y76{bottom:500.834667pt;}
.yc5{bottom:502.994667pt;}
.y59{bottom:503.580000pt;}
.ye5{bottom:506.098667pt;}
.y14d{bottom:506.294667pt;}
.y12f{bottom:512.026667pt;}
.yaa{bottom:513.573333pt;}
.y30{bottom:517.932000pt;}
.y9{bottom:519.094667pt;}
.yc4{bottom:521.060000pt;}
.y58{bottom:521.645333pt;}
.ye4{bottom:524.165333pt;}
.y14c{bottom:524.360000pt;}
.y12e{bottom:530.092000pt;}
.ya9{bottom:531.638667pt;}
.y2f{bottom:535.997333pt;}
.y7{bottom:537.161333pt;}
.yc3{bottom:539.125333pt;}
.y57{bottom:539.710667pt;}
.ye3{bottom:542.230667pt;}
.y14b{bottom:542.425333pt;}
.y12d{bottom:548.157333pt;}
.y8{bottom:552.400000pt;}
.y2e{bottom:554.062667pt;}
.y56{bottom:557.776000pt;}
.y14a{bottom:560.492000pt;}
.y12c{bottom:566.222667pt;}
.ya8{bottom:570.518667pt;}
.y6{bottom:571.166667pt;}
.y2d{bottom:572.128000pt;}
.y8c{bottom:572.129333pt;}
.y55{bottom:575.842667pt;}
.y149{bottom:578.557333pt;}
.yc2{bottom:579.566667pt;}
.ya7{bottom:583.270667pt;}
.y12b{bottom:584.288000pt;}
.ye2{bottom:586.965333pt;}
.y4{bottom:589.232000pt;}
.y2c{bottom:590.194667pt;}
.yc1{bottom:592.318667pt;}
.y54{bottom:593.908000pt;}
.ya6{bottom:596.022667pt;}
.y148{bottom:596.622667pt;}
.ye1{bottom:599.717333pt;}
.y12a{bottom:602.354667pt;}
.y5{bottom:604.472000pt;}
.yc0{bottom:605.070667pt;}
.y2b{bottom:608.260000pt;}
.ya5{bottom:608.774667pt;}
.y53{bottom:611.973333pt;}
.ye0{bottom:612.469333pt;}
.y147{bottom:614.688000pt;}
.y129{bottom:620.420000pt;}
.ya4{bottom:621.526667pt;}
.y2a{bottom:626.325333pt;}
.ydf{bottom:626.722667pt;}
.y52{bottom:630.038667pt;}
.y3{bottom:631.134667pt;}
.y146{bottom:632.753333pt;}
.y128{bottom:638.485333pt;}
.y29{bottom:644.390667pt;}
.y51{bottom:648.104000pt;}
.y145{bottom:650.820000pt;}
.y28{bottom:662.456000pt;}
.y49{bottom:662.457333pt;}
.y2{bottom:664.342667pt;}
.y50{bottom:666.170667pt;}
.y144{bottom:668.885333pt;}
.y127{bottom:670.902667pt;}
.y27{bottom:680.522667pt;}
.y4f{bottom:684.236000pt;}
.y143{bottom:686.950667pt;}
.y26{bottom:698.588000pt;}
.y4e{bottom:702.301333pt;}
.y142{bottom:705.016000pt;}
.y1{bottom:714.156000pt;}
.y25{bottom:716.653333pt;}
.y4d{bottom:720.366667pt;}
.y141{bottom:723.081333pt;}
.y24{bottom:734.718667pt;}
.y4c{bottom:738.432000pt;}
.y164{bottom:741.146667pt;}
.y140{bottom:741.148000pt;}
.y75{bottom:752.784000pt;}
.y23{bottom:752.785333pt;}
.y4b{bottom:756.498667pt;}
.y13f{bottom:759.213333pt;}
.y22{bottom:770.850667pt;}
.y13e{bottom:777.278667pt;}
.y21{bottom:788.916000pt;}
.y13d{bottom:795.344000pt;}
.y20{bottom:836.214667pt;}
.h4{height:0.000000pt;}
.h8{height:34.855904pt;}
.hc{height:42.240035pt;}
.h6{height:43.569771pt;}
.hb{height:47.183189pt;}
.h5{height:47.709131pt;}
.hd{height:47.714464pt;}
.h9{height:49.177446pt;}
.h7{height:56.619669pt;}
.h3{height:62.740715pt;}
.h2{height:81.548000pt;}
.ha{height:119.854645pt;}
.h0{height:907.080000pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:77.480000pt;}
.xa{left:85.610667pt;}
.x25{left:91.633333pt;}
.x7{left:92.598667pt;}
.x24{left:96.073333pt;}
.xf{left:104.998667pt;}
.x26{left:106.634667pt;}
.x5{left:107.716000pt;}
.xb{left:117.494667pt;}
.xe{left:124.724000pt;}
.x10{left:130.504000pt;}
.x6{left:135.264000pt;}
.x23{left:138.778667pt;}
.xd{left:139.841333pt;}
.x8{left:145.542667pt;}
.x11{left:171.358667pt;}
.x12{left:196.702667pt;}
.x3{left:201.612000pt;}
.x13{left:214.768000pt;}
.x2{left:219.170667pt;}
.x14{left:232.834667pt;}
.x15{left:250.900000pt;}
.x4{left:268.502667pt;}
.x16{left:276.244000pt;}
.x17{left:294.310667pt;}
.x18{left:312.376000pt;}
.x19{left:330.441333pt;}
.x1a{left:355.786667pt;}
.x1b{left:373.852000pt;}
.x1c{left:391.917333pt;}
.x1d{left:409.982667pt;}
.x1e{left:435.328000pt;}
.x1f{left:453.393333pt;}
.x20{left:471.458667pt;}
.x21{left:489.524000pt;}
.x22{left:507.589333pt;}
.x9{left:536.946667pt;}
.xc{left:537.862667pt;}
}




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