
    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_d47ae36c28263fc057513a67.woff')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_f12f06004b3edcdda41d919d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.022461;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_96c0886b7197537983ef5259.woff')format("woff");}.ff3{font-family:ff3;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5ca693be9cbfd561bcf7e7d0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.032715;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_daa9db68333654996911c2b8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.026855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9ac1cc8199068011b4873dad.woff')format("woff");}.ff6{font-family:ff6;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7f4d8e08bb0e05e3410d48f6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.146973;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_91aaecf5a8398eafb268e1dc.woff')format("woff");}.ff8{font-family:ff8;line-height:0.976118;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6aa4810e6d37b3c80e235655.woff')format("woff");}.ff9{font-family:ff9;line-height:0.710938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3a41c49dbf57b134b644e9c6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.771120;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_859af78882e3de26cbb7b95f.woff')format("woff");}.ffb{font-family:ffb;line-height:1.022461;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f781bb68ddd38a6804bccd45.woff')format("woff");}.ffc{font-family:ffc;line-height:0.730651;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_82ed755417e2d8c3a64228ce.woff')format("woff");}.ffd{font-family:ffd;line-height:0.770020;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.982000px;}
.v1{vertical-align:21.978000px;}
.v2{vertical-align:27.000000px;}
.v3{vertical-align:54.000000px;}
.ls1a{letter-spacing:-10.638000px;}
.ls19{letter-spacing:-7.236000px;}
.ls22{letter-spacing:-6.804000px;}
.ls12{letter-spacing:-3.240000px;}
.ls1d{letter-spacing:-1.080000px;}
.ls1e{letter-spacing:-1.026000px;}
.ls2f{letter-spacing:-1.020000px;}
.ls8{letter-spacing:-0.864000px;}
.lsf{letter-spacing:-0.840000px;}
.ls2e{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.691200px;}
.ls37{letter-spacing:-0.594000px;}
.ls35{letter-spacing:-0.540000px;}
.ls2d{letter-spacing:-0.486000px;}
.ls36{letter-spacing:-0.432000px;}
.ls31{letter-spacing:-0.420000px;}
.lse{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.240000px;}
.ls33{letter-spacing:-0.216000px;}
.ls30{letter-spacing:-0.120000px;}
.ls32{letter-spacing:-0.054000px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls5{letter-spacing:0.025800px;}
.lsa{letter-spacing:0.240000px;}
.ls23{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.420000px;}
.ls9{letter-spacing:0.600000px;}
.ls10{letter-spacing:0.720000px;}
.ls34{letter-spacing:1.080000px;}
.lsb{letter-spacing:1.200000px;}
.ls16{letter-spacing:1.816800px;}
.ls15{letter-spacing:1.817400px;}
.ls18{letter-spacing:2.089800px;}
.ls17{letter-spacing:2.090400px;}
.ls11{letter-spacing:2.213400px;}
.ls14{letter-spacing:4.825800px;}
.ls13{letter-spacing:4.826400px;}
.ls21{letter-spacing:4.920600px;}
.ls20{letter-spacing:4.921200px;}
.ls1f{letter-spacing:6.047400px;}
.ls1b{letter-spacing:11.410200px;}
.ls1c{letter-spacing:11.410800px;}
.ls0{letter-spacing:43.181364px;}
.ls1{letter-spacing:43.181964px;}
.ls2{letter-spacing:43.201242px;}
.ls2b{letter-spacing:163.482600px;}
.ls2c{letter-spacing:163.524600px;}
.ls29{letter-spacing:178.174200px;}
.ls28{letter-spacing:183.547200px;}
.ls25{letter-spacing:183.547800px;}
.ls2a{letter-spacing:195.432600px;}
.ls26{letter-spacing:200.795400px;}
.ls27{letter-spacing:200.805600px;}
.lsc{letter-spacing:201.084600px;}
.lsd{letter-spacing:240.956400px;}
.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;}
}
.ws6{word-spacing:-17.928000px;}
.wsd2{word-spacing:-16.434000px;}
.ws74{word-spacing:-16.170000px;}
.ws75{word-spacing:-15.420000px;}
.ws4{word-spacing:-14.940000px;}
.ws76{word-spacing:-14.700000px;}
.wsc2{word-spacing:-14.580000px;}
.ws2c{word-spacing:-14.520000px;}
.wsf2{word-spacing:-14.472000px;}
.ws80{word-spacing:-14.460000px;}
.ws2b{word-spacing:-14.340000px;}
.wsb1{word-spacing:-13.980000px;}
.wsb2{word-spacing:-13.680000px;}
.ws52{word-spacing:-13.446000px;}
.ws51{word-spacing:-13.392000px;}
.wsd9{word-spacing:-13.338000px;}
.ws5{word-spacing:-13.230000px;}
.wsd8{word-spacing:-13.176000px;}
.wse6{word-spacing:-12.960000px;}
.wse5{word-spacing:-12.852000px;}
.wsf7{word-spacing:-12.798000px;}
.ws64{word-spacing:-12.420000px;}
.ws60{word-spacing:-12.366000px;}
.ws65{word-spacing:-12.204000px;}
.ws8{word-spacing:-12.150000px;}
.ws7{word-spacing:-11.772000px;}
.ws2{word-spacing:-10.896000px;}
.ws19{word-spacing:-10.800000px;}
.ws9{word-spacing:-10.464000px;}
.ws53{word-spacing:-10.206000px;}
.ws31{word-spacing:-9.618000px;}
.ws39{word-spacing:-9.576000px;}
.ws1{word-spacing:-9.542544px;}
.ws3b{word-spacing:-9.450000px;}
.ws3{word-spacing:-9.417600px;}
.wse1{word-spacing:-7.807536px;}
.ws6d{word-spacing:-6.642000px;}
.wsd1{word-spacing:-6.420000px;}
.ws58{word-spacing:-6.210000px;}
.wse8{word-spacing:-5.022000px;}
.wsf9{word-spacing:-4.482000px;}
.ws66{word-spacing:-4.320000px;}
.ws61{word-spacing:-3.996000px;}
.wscb{word-spacing:-3.060000px;}
.ws40{word-spacing:-3.000000px;}
.wsaf{word-spacing:-2.760000px;}
.wsb9{word-spacing:-2.520000px;}
.wsce{word-spacing:-2.400000px;}
.ws81{word-spacing:-2.280000px;}
.ws63{word-spacing:-2.268000px;}
.wsa9{word-spacing:-2.220000px;}
.wsa3{word-spacing:-2.160000px;}
.wsa2{word-spacing:-2.100000px;}
.wsc8{word-spacing:-2.040000px;}
.wsa8{word-spacing:-1.980000px;}
.wsca{word-spacing:-1.860000px;}
.wsc4{word-spacing:-1.800000px;}
.ws4f{word-spacing:-1.782000px;}
.wsbf{word-spacing:-1.740000px;}
.ws78{word-spacing:-1.560000px;}
.wse9{word-spacing:-1.512000px;}
.ws27{word-spacing:-1.500000px;}
.wsa6{word-spacing:-1.440000px;}
.wsb5{word-spacing:-1.380000px;}
.ws26{word-spacing:-1.200000px;}
.wsf0{word-spacing:-1.080000px;}
.wsee{word-spacing:-1.026000px;}
.ws2a{word-spacing:-0.960000px;}
.ws43{word-spacing:-0.798000px;}
.ws4d{word-spacing:-0.720000px;}
.ws72{word-spacing:-0.702000px;}
.ws1c{word-spacing:-0.600000px;}
.ws68{word-spacing:-0.594000px;}
.ws50{word-spacing:-0.504000px;}
.ws9d{word-spacing:-0.480000px;}
.ws17{word-spacing:-0.420000px;}
.wsda{word-spacing:-0.378000px;}
.ws54{word-spacing:-0.360000px;}
.wse4{word-spacing:-0.324000px;}
.ws9c{word-spacing:-0.300000px;}
.ws44{word-spacing:-0.294000px;}
.ws23{word-spacing:-0.240000px;}
.wsc{word-spacing:-0.216000px;}
.ws83{word-spacing:-0.180000px;}
.ws6e{word-spacing:-0.054000px;}
.wsa{word-spacing:0.000000px;}
.wsdd{word-spacing:0.054000px;}
.ws25{word-spacing:0.060000px;}
.ws10{word-spacing:0.108000px;}
.wsc5{word-spacing:0.120000px;}
.wse0{word-spacing:0.216000px;}
.ws84{word-spacing:0.240000px;}
.ws3f{word-spacing:0.360000px;}
.wsea{word-spacing:0.378000px;}
.wsd0{word-spacing:0.420000px;}
.wsf1{word-spacing:0.432000px;}
.wsa7{word-spacing:0.486000px;}
.wse7{word-spacing:0.540000px;}
.ws15{word-spacing:0.594000px;}
.wsd{word-spacing:0.691200px;}
.wsbb{word-spacing:0.720000px;}
.ws42{word-spacing:0.840000px;}
.wsbe{word-spacing:0.900000px;}
.ws73{word-spacing:0.918000px;}
.wsc0{word-spacing:1.020000px;}
.ws67{word-spacing:1.026000px;}
.ws62{word-spacing:1.080000px;}
.wsc3{word-spacing:1.140000px;}
.wscd{word-spacing:1.200000px;}
.ws1f{word-spacing:1.260000px;}
.ws7b{word-spacing:1.380000px;}
.wsc7{word-spacing:1.440000px;}
.wsf6{word-spacing:1.512000px;}
.wsf8{word-spacing:1.566000px;}
.ws85{word-spacing:1.740000px;}
.ws79{word-spacing:1.800000px;}
.ws5c{word-spacing:1.836000px;}
.ws7e{word-spacing:1.860000px;}
.ws18{word-spacing:1.920000px;}
.wsef{word-spacing:1.944000px;}
.wsd7{word-spacing:1.998000px;}
.wsdf{word-spacing:2.052000px;}
.wsa5{word-spacing:2.100000px;}
.ws5d{word-spacing:2.106000px;}
.ws57{word-spacing:2.214000px;}
.wsec{word-spacing:2.376000px;}
.wsed{word-spacing:2.430000px;}
.wsc9{word-spacing:2.520000px;}
.ws41{word-spacing:2.580000px;}
.wscf{word-spacing:2.640000px;}
.wsb4{word-spacing:2.700000px;}
.ws1d{word-spacing:2.760000px;}
.ws9f{word-spacing:2.820000px;}
.wsbc{word-spacing:2.880000px;}
.wsde{word-spacing:2.970000px;}
.ws77{word-spacing:3.120000px;}
.wsf3{word-spacing:3.132000px;}
.ws9e{word-spacing:3.180000px;}
.wscc{word-spacing:3.300000px;}
.wsbd{word-spacing:3.420000px;}
.ws1b{word-spacing:3.480000px;}
.ws71{word-spacing:3.510000px;}
.wsb0{word-spacing:3.660000px;}
.ws14{word-spacing:3.726000px;}
.wsf{word-spacing:3.780000px;}
.wsf5{word-spacing:3.996000px;}
.wsd3{word-spacing:4.020000px;}
.wsd6{word-spacing:4.050000px;}
.wsf4{word-spacing:4.158000px;}
.wse3{word-spacing:4.212000px;}
.wsd4{word-spacing:4.260000px;}
.wsfa{word-spacing:4.320000px;}
.ws7f{word-spacing:4.440000px;}
.ws82{word-spacing:4.680000px;}
.ws21{word-spacing:4.740000px;}
.ws69{word-spacing:4.752000px;}
.ws3e{word-spacing:4.800000px;}
.ws5b{word-spacing:4.806000px;}
.ws5a{word-spacing:4.860000px;}
.ws6b{word-spacing:4.914000px;}
.wsa0{word-spacing:5.076000px;}
.wsc1{word-spacing:5.100000px;}
.ws1e{word-spacing:5.160000px;}
.ws29{word-spacing:5.220000px;}
.wse2{word-spacing:5.238000px;}
.ws12{word-spacing:5.508000px;}
.ws70{word-spacing:5.562000px;}
.wsa4{word-spacing:5.580000px;}
.ws6f{word-spacing:5.616000px;}
.ws7c{word-spacing:5.640000px;}
.ws20{word-spacing:5.880000px;}
.ws7a{word-spacing:5.940000px;}
.ws6a{word-spacing:5.994000px;}
.wsdc{word-spacing:6.102000px;}
.wsaa{word-spacing:6.540000px;}
.ws7d{word-spacing:6.780000px;}
.wsa1{word-spacing:6.966000px;}
.wsc6{word-spacing:7.020000px;}
.ws22{word-spacing:7.200000px;}
.wsb6{word-spacing:7.320000px;}
.ws11{word-spacing:7.452000px;}
.ws24{word-spacing:7.620000px;}
.ws59{word-spacing:7.840200px;}
.ws6c{word-spacing:7.840800px;}
.wseb{word-spacing:7.884000px;}
.wsb3{word-spacing:7.920000px;}
.ws28{word-spacing:8.040000px;}
.wsac{word-spacing:8.160000px;}
.wsab{word-spacing:8.220000px;}
.ws1a{word-spacing:8.820000px;}
.wsb7{word-spacing:9.060000px;}
.wsb8{word-spacing:9.120000px;}
.ws13{word-spacing:9.450000px;}
.wsfb{word-spacing:9.720000px;}
.wsad{word-spacing:9.780000px;}
.wsae{word-spacing:9.900000px;}
.wsba{word-spacing:10.560000px;}
.ws5f{word-spacing:11.340000px;}
.ws5e{word-spacing:11.502000px;}
.wse{word-spacing:12.042000px;}
.ws4e{word-spacing:13.800000px;}
.wsdb{word-spacing:13.878000px;}
.ws56{word-spacing:14.418000px;}
.ws55{word-spacing:14.526000px;}
.ws16{word-spacing:17.820000px;}
.ws48{word-spacing:18.840600px;}
.ws4c{word-spacing:19.040400px;}
.ws4b{word-spacing:19.357200px;}
.ws49{word-spacing:19.367400px;}
.ws4a{word-spacing:19.377600px;}
.wsb{word-spacing:23.232000px;}
.wsd5{word-spacing:24.840000px;}
.ws0{word-spacing:33.651135px;}
.ws47{word-spacing:105.306600px;}
.ws46{word-spacing:111.734400px;}
.ws93{word-spacing:112.944000px;}
.ws8b{word-spacing:118.323000px;}
.ws89{word-spacing:118.333800px;}
.ws91{word-spacing:126.946800px;}
.ws92{word-spacing:130.197600px;}
.ws9b{word-spacing:132.003600px;}
.ws95{word-spacing:138.830400px;}
.ws90{word-spacing:138.844800px;}
.ws8d{word-spacing:144.208800px;}
.ws34{word-spacing:145.680000px;}
.ws30{word-spacing:146.950800px;}
.ws88{word-spacing:147.135600px;}
.ws8e{word-spacing:152.826000px;}
.ws87{word-spacing:161.005800px;}
.ws86{word-spacing:161.432400px;}
.ws8a{word-spacing:174.793800px;}
.ws32{word-spacing:176.196600px;}
.ws94{word-spacing:176.342400px;}
.ws33{word-spacing:176.524800px;}
.ws36{word-spacing:178.001400px;}
.ws2e{word-spacing:178.425600px;}
.ws3a{word-spacing:178.739400px;}
.ws37{word-spacing:180.216000px;}
.ws3d{word-spacing:181.210200px;}
.ws3c{word-spacing:182.308200px;}
.ws35{word-spacing:185.722200px;}
.ws8c{word-spacing:188.383800px;}
.ws2f{word-spacing:190.970400px;}
.ws38{word-spacing:191.168400px;}
.ws8f{word-spacing:199.359000px;}
.ws45{word-spacing:303.695400px;}
.ws2d{word-spacing:358.129200px;}
.ws96{word-spacing:476.259600px;}
.ws97{word-spacing:513.122400px;}
.ws9a{word-spacing:513.137400px;}
.ws99{word-spacing:518.536800px;}
.ws98{word-spacing:803.895000px;}
._4{margin-left:-16.927839px;}
._e{margin-left:-10.729200px;}
._4c{margin-left:-9.489000px;}
._4d{margin-left:-7.953000px;}
._70{margin-left:-6.867000px;}
._d{margin-left:-5.847000px;}
._3{margin-left:-4.620600px;}
._6{margin-left:-3.489600px;}
._2{margin-left:-2.274600px;}
._0{margin-left:-1.020000px;}
._1{width:1.326000px;}
._8{width:2.675400px;}
._7{width:4.163400px;}
._9{width:5.400000px;}
._a{width:7.080000px;}
._11{width:8.196000px;}
._c{width:9.210000px;}
._b{width:10.494000px;}
._f{width:12.480000px;}
._10{width:13.668000px;}
._6e{width:14.947200px;}
._69{width:16.152000px;}
._6f{width:17.270400px;}
._6c{width:21.146400px;}
._6d{width:22.465200px;}
._72{width:24.125400px;}
._73{width:25.338600px;}
._6b{width:26.373600px;}
._44{width:27.990000px;}
._43{width:29.151600px;}
._26{width:35.231400px;}
._5{width:36.624000px;}
._42{width:38.512200px;}
._71{width:41.536800px;}
._6a{width:43.091400px;}
._2c{width:46.333800px;}
._3f{width:48.659400px;}
._2b{width:53.584200px;}
._19{width:59.800200px;}
._3e{width:67.811400px;}
._40{width:69.685800px;}
._4a{width:71.256000px;}
._17{width:72.846000px;}
._31{width:74.139600px;}
._3a{width:76.370400px;}
._16{width:78.084000px;}
._15{width:79.999200px;}
._1b{width:83.437200px;}
._2e{width:85.966200px;}
._2f{width:90.001200px;}
._18{width:98.108400px;}
._28{width:100.171800px;}
._14{width:102.369600px;}
._2a{width:108.043200px;}
._1f{width:109.500600px;}
._30{width:111.508800px;}
._36{width:112.693200px;}
._29{width:114.686400px;}
._22{width:118.569000px;}
._21{width:120.024000px;}
._24{width:121.396200px;}
._38{width:124.759200px;}
._20{width:127.919400px;}
._59{width:129.517200px;}
._3d{width:130.860000px;}
._1d{width:133.500600px;}
._5b{width:134.694000px;}
._51{width:136.314600px;}
._5d{width:137.394000px;}
._4f{width:138.643200px;}
._25{width:140.147400px;}
._34{width:141.610200px;}
._35{width:143.392200px;}
._52{width:145.211400px;}
._33{width:147.773400px;}
._54{width:149.023800px;}
._4b{width:151.754400px;}
._39{width:153.093000px;}
._58{width:154.314000px;}
._55{width:156.981000px;}
._57{width:162.339600px;}
._50{width:164.056800px;}
._4e{width:171.082800px;}
._12{width:172.797000px;}
._5c{width:178.927800px;}
._5a{width:183.964800px;}
._56{width:185.258400px;}
._46{width:186.710400px;}
._3b{width:196.645800px;}
._37{width:198.219000px;}
._53{width:201.498600px;}
._3c{width:215.228400px;}
._45{width:217.652400px;}
._1e{width:247.114200px;}
._47{width:275.437800px;}
._41{width:277.144200px;}
._48{width:310.507800px;}
._1c{width:312.100200px;}
._49{width:332.616600px;}
._13{width:340.900200px;}
._1a{width:343.042200px;}
._23{width:371.973600px;}
._27{width:400.827600px;}
._2d{width:435.897600px;}
._32{width:457.996200px;}
._5e{width:517.886400px;}
._60{width:522.656400px;}
._64{width:528.029400px;}
._68{width:734.395200px;}
._66{width:750.208200px;}
._65{width:752.602200px;}
._5f{width:753.652200px;}
._61{width:756.309000px;}
._63{width:757.354800px;}
._67{width:798.259200px;}
._62{width:810.772200px;}
.fc1{color:rgb(12,87,47);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.482000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y38{bottom:71.212050px;}
.y39{bottom:75.036150px;}
.y7e{bottom:113.078700px;}
.y6b{bottom:113.078850px;}
.yd1{bottom:120.500700px;}
.y7d{bottom:134.078700px;}
.y6a{bottom:134.078850px;}
.y2a{bottom:138.212700px;}
.y11{bottom:138.890400px;}
.yd0{bottom:140.300700px;}
.y10{bottom:153.290400px;}
.y7c{bottom:155.078700px;}
.y69{bottom:155.078850px;}
.y29{bottom:159.212700px;}
.ycf{bottom:160.100700px;}
.yf{bottom:167.690400px;}
.yce{bottom:170.963100px;}
.yca{bottom:172.730550px;}
.y7b{bottom:176.078700px;}
.y68{bottom:176.078850px;}
.yd2{bottom:179.900700px;}
.y28{bottom:180.212700px;}
.ye{bottom:182.090400px;}
.ya3{bottom:190.440900px;}
.ydf{bottom:190.441050px;}
.ycd{bottom:190.763100px;}
.yc9{bottom:192.530550px;}
.y7a{bottom:197.078700px;}
.y67{bottom:197.078850px;}
.y27{bottom:201.212700px;}
.y123{bottom:202.529400px;}
.ycc{bottom:210.563100px;}
.yc8{bottom:212.330550px;}
.y79{bottom:218.078700px;}
.y66{bottom:218.078850px;}
.y35{bottom:220.407300px;}
.y26{bottom:222.212700px;}
.ycb{bottom:230.363100px;}
.yc3{bottom:231.513600px;}
.yc7{bottom:232.130550px;}
.y34{bottom:238.407300px;}
.y78{bottom:239.078700px;}
.y65{bottom:239.078850px;}
.yc1{bottom:242.515050px;}
.y25{bottom:243.212700px;}
.yeb{bottom:253.440900px;}
.y33{bottom:256.407300px;}
.y77{bottom:260.078700px;}
.y64{bottom:260.078850px;}
.yc0{bottom:261.445200px;}
.yc2{bottom:263.811150px;}
.y24{bottom:264.212700px;}
.yd9{bottom:272.105250px;}
.y32{bottom:274.407300px;}
.ye4{bottom:274.441050px;}
.ybf{bottom:280.375350px;}
.y11a{bottom:281.078700px;}
.y63{bottom:281.078850px;}
.y31{bottom:292.407300px;}
.y76{bottom:295.440900px;}
.ybe{bottom:299.305500px;}
.y23{bottom:300.796500px;}
.y119{bottom:302.078700px;}
.y62{bottom:302.078850px;}
.y30{bottom:310.407300px;}
.ybd{bottom:312.805500px;}
.yd8{bottom:323.070900px;}
.y118{bottom:323.078700px;}
.y61{bottom:323.078850px;}
.y2f{bottom:328.407300px;}
.ybc{bottom:331.735650px;}
.yd7{bottom:342.870900px;}
.y117{bottom:344.078700px;}
.y60{bottom:344.078850px;}
.ybb{bottom:345.235650px;}
.y9b{bottom:351.847350px;}
.y132{bottom:357.513600px;}
.yde{bottom:358.441050px;}
.yd6{bottom:362.670900px;}
.y2e{bottom:363.415200px;}
.yba{bottom:364.165650px;}
.y116{bottom:365.078700px;}
.y5f{bottom:365.078850px;}
.y9a{bottom:372.478350px;}
.yb9{bottom:377.665650px;}
.yea{bottom:379.441050px;}
.y2d{bottom:381.415200px;}
.yd5{bottom:382.470900px;}
.y115{bottom:386.078700px;}
.y5e{bottom:386.078850px;}
.y131{bottom:389.811150px;}
.y22{bottom:389.827950px;}
.y99{bottom:393.109200px;}
.yb8{bottom:396.595800px;}
.y2c{bottom:399.415200px;}
.yd4{bottom:402.270900px;}
.y114{bottom:407.078700px;}
.y5d{bottom:407.078850px;}
.yf9{bottom:411.717000px;}
.y122{bottom:412.529400px;}
.y98{bottom:413.740200px;}
.yb7{bottom:415.525950px;}
.y2b{bottom:417.415200px;}
.yd3{bottom:422.070900px;}
.y97{bottom:427.240200px;}
.y113{bottom:428.078700px;}
.y5c{bottom:428.078850px;}
.y21{bottom:430.887750px;}
.yf8{bottom:432.347850px;}
.yb6{bottom:434.456100px;}
.y96{bottom:447.871050px;}
.yb5{bottom:447.956100px;}
.y112{bottom:449.078700px;}
.y5b{bottom:449.078850px;}
.y20{bottom:450.687900px;}
.yf7{bottom:452.978700px;}
.yb4{bottom:466.886100px;}
.y95{bottom:468.502050px;}
.y111{bottom:470.078700px;}
.y5a{bottom:470.078850px;}
.y1f{bottom:470.487900px;}
.yf6{bottom:473.609550px;}
.y121{bottom:475.529400px;}
.ye3{bottom:484.441050px;}
.yb3{bottom:485.816250px;}
.y94{bottom:489.132900px;}
.y1e{bottom:490.287900px;}
.y110{bottom:491.078700px;}
.y59{bottom:491.078850px;}
.yf5{bottom:494.240550px;}
.yb2{bottom:499.316250px;}
.ydd{bottom:505.441050px;}
.y93{bottom:509.763750px;}
.y1d{bottom:510.087900px;}
.y10f{bottom:512.078700px;}
.y58{bottom:512.078850px;}
.yf4{bottom:514.871400px;}
.yb1{bottom:518.246400px;}
.y10b{bottom:518.674950px;}
.ye9{bottom:526.441050px;}
.y1c{bottom:529.887750px;}
.y92{bottom:530.394600px;}
.y10e{bottom:533.078700px;}
.y57{bottom:533.078850px;}
.yf3{bottom:535.502400px;}
.yb0{bottom:537.176550px;}
.y10a{bottom:538.474950px;}
.y120{bottom:538.529400px;}
.y91{bottom:543.894600px;}
.y1b{bottom:549.687900px;}
.yaf{bottom:550.676550px;}
.y10d{bottom:554.078700px;}
.y56{bottom:554.078850px;}
.yf2{bottom:556.133250px;}
.y109{bottom:558.274950px;}
.yc6{bottom:562.983600px;}
.y90{bottom:564.525600px;}
.y1a{bottom:569.487900px;}
.yae{bottom:569.606700px;}
.y130{bottom:575.078700px;}
.y55{bottom:575.078850px;}
.yf1{bottom:576.764250px;}
.y8f{bottom:578.025600px;}
.yc5{bottom:582.783600px;}
.y10c{bottom:586.948800px;}
.yad{bottom:588.536700px;}
.y19{bottom:589.287900px;}
.y12f{bottom:596.078700px;}
.y54{bottom:596.078850px;}
.yf0{bottom:597.395100px;}
.y8e{bottom:598.656450px;}
.y11f{bottom:601.937100px;}
.yc4{bottom:602.583600px;}
.yac{bottom:607.466850px;}
.y18{bottom:609.087900px;}
.y12e{bottom:617.078700px;}
.y53{bottom:617.078850px;}
.yef{bottom:618.325950px;}
.y8d{bottom:619.287450px;}
.yab{bottom:626.397000px;}
.y17{bottom:628.887750px;}
.y11e{bottom:631.441050px;}
.y11b{bottom:635.568300px;}
.y12d{bottom:638.078700px;}
.y52{bottom:638.078850px;}
.y8c{bottom:639.918300px;}
.yaa{bottom:645.327150px;}
.yee{bottom:647.682900px;}
.y16{bottom:648.687900px;}
.ydc{bottom:652.441050px;}
.ya9{bottom:658.827150px;}
.y12c{bottom:659.078700px;}
.y51{bottom:659.078850px;}
.y8b{bottom:660.549150px;}
.yed{bottom:667.482900px;}
.y15{bottom:668.487900px;}
.ye8{bottom:673.441050px;}
.y8a{bottom:674.049150px;}
.ya8{bottom:677.757300px;}
.y12b{bottom:680.078700px;}
.y50{bottom:680.078850px;}
.yec{bottom:687.282900px;}
.y14{bottom:688.287900px;}
.y89{bottom:694.680150px;}
.ya7{bottom:696.987300px;}
.y12a{bottom:701.078700px;}
.y4f{bottom:701.078850px;}
.y88{bottom:715.311000px;}
.y13{bottom:719.385300px;}
.y129{bottom:722.078700px;}
.y4e{bottom:722.078850px;}
.ya6{bottom:726.344250px;}
.y87{bottom:728.811000px;}
.ye2{bottom:736.441050px;}
.y108{bottom:741.711300px;}
.y128{bottom:743.078700px;}
.y4d{bottom:743.078850px;}
.ya5{bottom:746.144250px;}
.y86{bottom:749.441850px;}
.y11d{bottom:757.441050px;}
.y107{bottom:762.342150px;}
.y127{bottom:764.078700px;}
.y4c{bottom:764.078850px;}
.ya4{bottom:765.944250px;}
.y85{bottom:770.072850px;}
.y106{bottom:782.973150px;}
.y84{bottom:783.572850px;}
.y4b{bottom:785.078850px;}
.yd{bottom:798.666900px;}
.y126{bottom:799.440900px;}
.y105{bottom:803.604000px;}
.y83{bottom:804.203700px;}
.ya2{bottom:806.078700px;}
.y4a{bottom:806.078850px;}
.yc{bottom:816.666900px;}
.ye7{bottom:820.440900px;}
.y104{bottom:824.235000px;}
.y81{bottom:825.134700px;}
.ya1{bottom:827.078700px;}
.y49{bottom:827.078850px;}
.y80{bottom:831.884700px;}
.yb{bottom:834.666900px;}
.y82{bottom:838.634700px;}
.ydb{bottom:841.441050px;}
.y103{bottom:844.865850px;}
.ya0{bottom:848.078700px;}
.y48{bottom:848.078850px;}
.ya{bottom:852.666900px;}
.y102{bottom:865.496850px;}
.y7f{bottom:867.991500px;}
.y9f{bottom:869.078700px;}
.y47{bottom:869.078850px;}
.y9{bottom:870.666900px;}
.ye1{bottom:883.441050px;}
.y101{bottom:886.127700px;}
.y8{bottom:888.666900px;}
.y9e{bottom:890.078700px;}
.y46{bottom:890.078850px;}
.y125{bottom:895.529250px;}
.y7{bottom:906.666900px;}
.y100{bottom:906.758550px;}
.y75{bottom:911.078700px;}
.y45{bottom:911.078850px;}
.y6{bottom:924.666900px;}
.yff{bottom:927.389400px;}
.y74{bottom:932.078700px;}
.y44{bottom:932.078850px;}
.yfe{bottom:948.320400px;}
.y73{bottom:953.078700px;}
.y43{bottom:953.078850px;}
.y5{bottom:959.674650px;}
.ye6{bottom:967.440900px;}
.y11c{bottom:967.441050px;}
.y72{bottom:974.078700px;}
.y42{bottom:974.078850px;}
.yfd{bottom:977.677350px;}
.y4{bottom:979.474800px;}
.y71{bottom:995.078700px;}
.y41{bottom:995.078850px;}
.yfc{bottom:997.477350px;}
.y70{bottom:1016.078700px;}
.y40{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.yfb{bottom:1017.277350px;}
.ye0{bottom:1030.441050px;}
.yfa{bottom:1037.077350px;}
.y6f{bottom:1037.078700px;}
.y3f{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.yda{bottom:1051.441050px;}
.y6e{bottom:1058.078700px;}
.y3e{bottom:1058.078850px;}
.y9d{bottom:1079.078700px;}
.y3d{bottom:1079.078850px;}
.y6d{bottom:1092.029250px;}
.y3c{bottom:1100.078850px;}
.y12{bottom:1109.815500px;}
.y9c{bottom:1112.010750px;}
.ye5{bottom:1112.010900px;}
.y3b{bottom:1121.078850px;}
.y6c{bottom:1124.326650px;}
.y124{bottom:1125.451800px;}
.y37{bottom:1155.615300px;}
.y36{bottom:1175.115300px;}
.y3a{bottom:1178.691750px;}
.h14{height:33.448242px;}
.h16{height:33.694336px;}
.h6{height:34.446094px;}
.h2{height:38.039062px;}
.h10{height:38.273438px;}
.h5{height:38.531250px;}
.h15{height:38.534180px;}
.hf{height:42.793945px;}
.h7{height:43.004883px;}
.he{height:43.057617px;}
.h9{height:43.321289px;}
.h8{height:45.615234px;}
.hc{height:48.134766px;}
.ha{height:49.543945px;}
.h11{height:50.176758px;}
.h4{height:52.948242px;}
.hb{height:54.738281px;}
.hd{height:55.048828px;}
.h12{height:60.448242px;}
.h17{height:60.553711px;}
.h3{height:81.231445px;}
.h13{height:87.448242px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xa{left:107.068950px;}
.xc{left:108.286950px;}
.x1a{left:110.551200px;}
.x13{left:112.252050px;}
.x5{left:119.576400px;}
.x6{left:121.047600px;}
.x7{left:123.420750px;}
.x19{left:178.088700px;}
.xd{left:194.246250px;}
.x1b{left:287.552550px;}
.x4{left:300.189000px;}
.x1d{left:304.440900px;}
.xb{left:317.196900px;}
.x14{left:320.598450px;}
.xe{left:323.842800px;}
.x3{left:396.050700px;}
.x1c{left:403.513800px;}
.xf{left:512.048700px;}
.x15{left:566.082600px;}
.x17{left:567.810300px;}
.x18{left:590.552100px;}
.x9{left:648.686550px;}
.x16{left:655.075200px;}
.x10{left:664.119450px;}
.x8{left:668.350500px;}
.x11{left:739.317600px;}
.x12{left:755.019600px;}
.x1{left:801.350850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.984000pt;}
.v1{vertical-align:19.536000pt;}
.v2{vertical-align:24.000000pt;}
.v3{vertical-align:48.000000pt;}
.ls1a{letter-spacing:-9.456000pt;}
.ls19{letter-spacing:-6.432000pt;}
.ls22{letter-spacing:-6.048000pt;}
.ls12{letter-spacing:-2.880000pt;}
.ls1d{letter-spacing:-0.960000pt;}
.ls1e{letter-spacing:-0.912000pt;}
.ls2f{letter-spacing:-0.906667pt;}
.ls8{letter-spacing:-0.768000pt;}
.lsf{letter-spacing:-0.746667pt;}
.ls2e{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.614400pt;}
.ls37{letter-spacing:-0.528000pt;}
.ls35{letter-spacing:-0.480000pt;}
.ls2d{letter-spacing:-0.432000pt;}
.ls36{letter-spacing:-0.384000pt;}
.ls31{letter-spacing:-0.373333pt;}
.lse{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.213333pt;}
.ls33{letter-spacing:-0.192000pt;}
.ls30{letter-spacing:-0.106667pt;}
.ls32{letter-spacing:-0.048000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls5{letter-spacing:0.022933pt;}
.lsa{letter-spacing:0.213333pt;}
.ls23{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.373333pt;}
.ls9{letter-spacing:0.533333pt;}
.ls10{letter-spacing:0.640000pt;}
.ls34{letter-spacing:0.960000pt;}
.lsb{letter-spacing:1.066667pt;}
.ls16{letter-spacing:1.614933pt;}
.ls15{letter-spacing:1.615467pt;}
.ls18{letter-spacing:1.857600pt;}
.ls17{letter-spacing:1.858133pt;}
.ls11{letter-spacing:1.967467pt;}
.ls14{letter-spacing:4.289600pt;}
.ls13{letter-spacing:4.290133pt;}
.ls21{letter-spacing:4.373867pt;}
.ls20{letter-spacing:4.374400pt;}
.ls1f{letter-spacing:5.375467pt;}
.ls1b{letter-spacing:10.142400pt;}
.ls1c{letter-spacing:10.142933pt;}
.ls0{letter-spacing:38.383435pt;}
.ls1{letter-spacing:38.383968pt;}
.ls2{letter-spacing:38.401104pt;}
.ls2b{letter-spacing:145.317867pt;}
.ls2c{letter-spacing:145.355200pt;}
.ls29{letter-spacing:158.377067pt;}
.ls28{letter-spacing:163.153067pt;}
.ls25{letter-spacing:163.153600pt;}
.ls2a{letter-spacing:173.717867pt;}
.ls26{letter-spacing:178.484800pt;}
.ls27{letter-spacing:178.493867pt;}
.lsc{letter-spacing:178.741867pt;}
.lsd{letter-spacing:214.183467pt;}
.ws6{word-spacing:-15.936000pt;}
.wsd2{word-spacing:-14.608000pt;}
.ws74{word-spacing:-14.373333pt;}
.ws75{word-spacing:-13.706667pt;}
.ws4{word-spacing:-13.280000pt;}
.ws76{word-spacing:-13.066667pt;}
.wsc2{word-spacing:-12.960000pt;}
.ws2c{word-spacing:-12.906667pt;}
.wsf2{word-spacing:-12.864000pt;}
.ws80{word-spacing:-12.853333pt;}
.ws2b{word-spacing:-12.746667pt;}
.wsb1{word-spacing:-12.426667pt;}
.wsb2{word-spacing:-12.160000pt;}
.ws52{word-spacing:-11.952000pt;}
.ws51{word-spacing:-11.904000pt;}
.wsd9{word-spacing:-11.856000pt;}
.ws5{word-spacing:-11.760000pt;}
.wsd8{word-spacing:-11.712000pt;}
.wse6{word-spacing:-11.520000pt;}
.wse5{word-spacing:-11.424000pt;}
.wsf7{word-spacing:-11.376000pt;}
.ws64{word-spacing:-11.040000pt;}
.ws60{word-spacing:-10.992000pt;}
.ws65{word-spacing:-10.848000pt;}
.ws8{word-spacing:-10.800000pt;}
.ws7{word-spacing:-10.464000pt;}
.ws2{word-spacing:-9.685333pt;}
.ws19{word-spacing:-9.600000pt;}
.ws9{word-spacing:-9.301333pt;}
.ws53{word-spacing:-9.072000pt;}
.ws31{word-spacing:-8.549333pt;}
.ws39{word-spacing:-8.512000pt;}
.ws1{word-spacing:-8.482261pt;}
.ws3b{word-spacing:-8.400000pt;}
.ws3{word-spacing:-8.371200pt;}
.wse1{word-spacing:-6.940032pt;}
.ws6d{word-spacing:-5.904000pt;}
.wsd1{word-spacing:-5.706667pt;}
.ws58{word-spacing:-5.520000pt;}
.wse8{word-spacing:-4.464000pt;}
.wsf9{word-spacing:-3.984000pt;}
.ws66{word-spacing:-3.840000pt;}
.ws61{word-spacing:-3.552000pt;}
.wscb{word-spacing:-2.720000pt;}
.ws40{word-spacing:-2.666667pt;}
.wsaf{word-spacing:-2.453333pt;}
.wsb9{word-spacing:-2.240000pt;}
.wsce{word-spacing:-2.133333pt;}
.ws81{word-spacing:-2.026667pt;}
.ws63{word-spacing:-2.016000pt;}
.wsa9{word-spacing:-1.973333pt;}
.wsa3{word-spacing:-1.920000pt;}
.wsa2{word-spacing:-1.866667pt;}
.wsc8{word-spacing:-1.813333pt;}
.wsa8{word-spacing:-1.760000pt;}
.wsca{word-spacing:-1.653333pt;}
.wsc4{word-spacing:-1.600000pt;}
.ws4f{word-spacing:-1.584000pt;}
.wsbf{word-spacing:-1.546667pt;}
.ws78{word-spacing:-1.386667pt;}
.wse9{word-spacing:-1.344000pt;}
.ws27{word-spacing:-1.333333pt;}
.wsa6{word-spacing:-1.280000pt;}
.wsb5{word-spacing:-1.226667pt;}
.ws26{word-spacing:-1.066667pt;}
.wsf0{word-spacing:-0.960000pt;}
.wsee{word-spacing:-0.912000pt;}
.ws2a{word-spacing:-0.853333pt;}
.ws43{word-spacing:-0.709333pt;}
.ws4d{word-spacing:-0.640000pt;}
.ws72{word-spacing:-0.624000pt;}
.ws1c{word-spacing:-0.533333pt;}
.ws68{word-spacing:-0.528000pt;}
.ws50{word-spacing:-0.448000pt;}
.ws9d{word-spacing:-0.426667pt;}
.ws17{word-spacing:-0.373333pt;}
.wsda{word-spacing:-0.336000pt;}
.ws54{word-spacing:-0.320000pt;}
.wse4{word-spacing:-0.288000pt;}
.ws9c{word-spacing:-0.266667pt;}
.ws44{word-spacing:-0.261333pt;}
.ws23{word-spacing:-0.213333pt;}
.wsc{word-spacing:-0.192000pt;}
.ws83{word-spacing:-0.160000pt;}
.ws6e{word-spacing:-0.048000pt;}
.wsa{word-spacing:0.000000pt;}
.wsdd{word-spacing:0.048000pt;}
.ws25{word-spacing:0.053333pt;}
.ws10{word-spacing:0.096000pt;}
.wsc5{word-spacing:0.106667pt;}
.wse0{word-spacing:0.192000pt;}
.ws84{word-spacing:0.213333pt;}
.ws3f{word-spacing:0.320000pt;}
.wsea{word-spacing:0.336000pt;}
.wsd0{word-spacing:0.373333pt;}
.wsf1{word-spacing:0.384000pt;}
.wsa7{word-spacing:0.432000pt;}
.wse7{word-spacing:0.480000pt;}
.ws15{word-spacing:0.528000pt;}
.wsd{word-spacing:0.614400pt;}
.wsbb{word-spacing:0.640000pt;}
.ws42{word-spacing:0.746667pt;}
.wsbe{word-spacing:0.800000pt;}
.ws73{word-spacing:0.816000pt;}
.wsc0{word-spacing:0.906667pt;}
.ws67{word-spacing:0.912000pt;}
.ws62{word-spacing:0.960000pt;}
.wsc3{word-spacing:1.013333pt;}
.wscd{word-spacing:1.066667pt;}
.ws1f{word-spacing:1.120000pt;}
.ws7b{word-spacing:1.226667pt;}
.wsc7{word-spacing:1.280000pt;}
.wsf6{word-spacing:1.344000pt;}
.wsf8{word-spacing:1.392000pt;}
.ws85{word-spacing:1.546667pt;}
.ws79{word-spacing:1.600000pt;}
.ws5c{word-spacing:1.632000pt;}
.ws7e{word-spacing:1.653333pt;}
.ws18{word-spacing:1.706667pt;}
.wsef{word-spacing:1.728000pt;}
.wsd7{word-spacing:1.776000pt;}
.wsdf{word-spacing:1.824000pt;}
.wsa5{word-spacing:1.866667pt;}
.ws5d{word-spacing:1.872000pt;}
.ws57{word-spacing:1.968000pt;}
.wsec{word-spacing:2.112000pt;}
.wsed{word-spacing:2.160000pt;}
.wsc9{word-spacing:2.240000pt;}
.ws41{word-spacing:2.293333pt;}
.wscf{word-spacing:2.346667pt;}
.wsb4{word-spacing:2.400000pt;}
.ws1d{word-spacing:2.453333pt;}
.ws9f{word-spacing:2.506667pt;}
.wsbc{word-spacing:2.560000pt;}
.wsde{word-spacing:2.640000pt;}
.ws77{word-spacing:2.773333pt;}
.wsf3{word-spacing:2.784000pt;}
.ws9e{word-spacing:2.826667pt;}
.wscc{word-spacing:2.933333pt;}
.wsbd{word-spacing:3.040000pt;}
.ws1b{word-spacing:3.093333pt;}
.ws71{word-spacing:3.120000pt;}
.wsb0{word-spacing:3.253333pt;}
.ws14{word-spacing:3.312000pt;}
.wsf{word-spacing:3.360000pt;}
.wsf5{word-spacing:3.552000pt;}
.wsd3{word-spacing:3.573333pt;}
.wsd6{word-spacing:3.600000pt;}
.wsf4{word-spacing:3.696000pt;}
.wse3{word-spacing:3.744000pt;}
.wsd4{word-spacing:3.786667pt;}
.wsfa{word-spacing:3.840000pt;}
.ws7f{word-spacing:3.946667pt;}
.ws82{word-spacing:4.160000pt;}
.ws21{word-spacing:4.213333pt;}
.ws69{word-spacing:4.224000pt;}
.ws3e{word-spacing:4.266667pt;}
.ws5b{word-spacing:4.272000pt;}
.ws5a{word-spacing:4.320000pt;}
.ws6b{word-spacing:4.368000pt;}
.wsa0{word-spacing:4.512000pt;}
.wsc1{word-spacing:4.533333pt;}
.ws1e{word-spacing:4.586667pt;}
.ws29{word-spacing:4.640000pt;}
.wse2{word-spacing:4.656000pt;}
.ws12{word-spacing:4.896000pt;}
.ws70{word-spacing:4.944000pt;}
.wsa4{word-spacing:4.960000pt;}
.ws6f{word-spacing:4.992000pt;}
.ws7c{word-spacing:5.013333pt;}
.ws20{word-spacing:5.226667pt;}
.ws7a{word-spacing:5.280000pt;}
.ws6a{word-spacing:5.328000pt;}
.wsdc{word-spacing:5.424000pt;}
.wsaa{word-spacing:5.813333pt;}
.ws7d{word-spacing:6.026667pt;}
.wsa1{word-spacing:6.192000pt;}
.wsc6{word-spacing:6.240000pt;}
.ws22{word-spacing:6.400000pt;}
.wsb6{word-spacing:6.506667pt;}
.ws11{word-spacing:6.624000pt;}
.ws24{word-spacing:6.773333pt;}
.ws59{word-spacing:6.969067pt;}
.ws6c{word-spacing:6.969600pt;}
.wseb{word-spacing:7.008000pt;}
.wsb3{word-spacing:7.040000pt;}
.ws28{word-spacing:7.146667pt;}
.wsac{word-spacing:7.253333pt;}
.wsab{word-spacing:7.306667pt;}
.ws1a{word-spacing:7.840000pt;}
.wsb7{word-spacing:8.053333pt;}
.wsb8{word-spacing:8.106667pt;}
.ws13{word-spacing:8.400000pt;}
.wsfb{word-spacing:8.640000pt;}
.wsad{word-spacing:8.693333pt;}
.wsae{word-spacing:8.800000pt;}
.wsba{word-spacing:9.386667pt;}
.ws5f{word-spacing:10.080000pt;}
.ws5e{word-spacing:10.224000pt;}
.wse{word-spacing:10.704000pt;}
.ws4e{word-spacing:12.266667pt;}
.wsdb{word-spacing:12.336000pt;}
.ws56{word-spacing:12.816000pt;}
.ws55{word-spacing:12.912000pt;}
.ws16{word-spacing:15.840000pt;}
.ws48{word-spacing:16.747200pt;}
.ws4c{word-spacing:16.924800pt;}
.ws4b{word-spacing:17.206400pt;}
.ws49{word-spacing:17.215467pt;}
.ws4a{word-spacing:17.224533pt;}
.wsb{word-spacing:20.650667pt;}
.wsd5{word-spacing:22.080000pt;}
.ws0{word-spacing:29.912120pt;}
.ws47{word-spacing:93.605867pt;}
.ws46{word-spacing:99.319467pt;}
.ws93{word-spacing:100.394667pt;}
.ws8b{word-spacing:105.176000pt;}
.ws89{word-spacing:105.185600pt;}
.ws91{word-spacing:112.841600pt;}
.ws92{word-spacing:115.731200pt;}
.ws9b{word-spacing:117.336533pt;}
.ws95{word-spacing:123.404800pt;}
.ws90{word-spacing:123.417600pt;}
.ws8d{word-spacing:128.185600pt;}
.ws34{word-spacing:129.493333pt;}
.ws30{word-spacing:130.622933pt;}
.ws88{word-spacing:130.787200pt;}
.ws8e{word-spacing:135.845333pt;}
.ws87{word-spacing:143.116267pt;}
.ws86{word-spacing:143.495467pt;}
.ws8a{word-spacing:155.372267pt;}
.ws32{word-spacing:156.619200pt;}
.ws94{word-spacing:156.748800pt;}
.ws33{word-spacing:156.910933pt;}
.ws36{word-spacing:158.223467pt;}
.ws2e{word-spacing:158.600533pt;}
.ws3a{word-spacing:158.879467pt;}
.ws37{word-spacing:160.192000pt;}
.ws3d{word-spacing:161.075733pt;}
.ws3c{word-spacing:162.051733pt;}
.ws35{word-spacing:165.086400pt;}
.ws8c{word-spacing:167.452267pt;}
.ws2f{word-spacing:169.751467pt;}
.ws38{word-spacing:169.927467pt;}
.ws8f{word-spacing:177.208000pt;}
.ws45{word-spacing:269.951467pt;}
.ws2d{word-spacing:318.337067pt;}
.ws96{word-spacing:423.341867pt;}
.ws97{word-spacing:456.108800pt;}
.ws9a{word-spacing:456.122133pt;}
.ws99{word-spacing:460.921600pt;}
.ws98{word-spacing:714.573333pt;}
._4{margin-left:-15.046968pt;}
._e{margin-left:-9.537067pt;}
._4c{margin-left:-8.434667pt;}
._4d{margin-left:-7.069333pt;}
._70{margin-left:-6.104000pt;}
._d{margin-left:-5.197333pt;}
._3{margin-left:-4.107200pt;}
._6{margin-left:-3.101867pt;}
._2{margin-left:-2.021867pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.178667pt;}
._8{width:2.378133pt;}
._7{width:3.700800pt;}
._9{width:4.800000pt;}
._a{width:6.293333pt;}
._11{width:7.285333pt;}
._c{width:8.186667pt;}
._b{width:9.328000pt;}
._f{width:11.093333pt;}
._10{width:12.149333pt;}
._6e{width:13.286400pt;}
._69{width:14.357333pt;}
._6f{width:15.351467pt;}
._6c{width:18.796800pt;}
._6d{width:19.969067pt;}
._72{width:21.444800pt;}
._73{width:22.523200pt;}
._6b{width:23.443200pt;}
._44{width:24.880000pt;}
._43{width:25.912533pt;}
._26{width:31.316800pt;}
._5{width:32.554667pt;}
._42{width:34.233067pt;}
._71{width:36.921600pt;}
._6a{width:38.303467pt;}
._2c{width:41.185600pt;}
._3f{width:43.252800pt;}
._2b{width:47.630400pt;}
._19{width:53.155733pt;}
._3e{width:60.276800pt;}
._40{width:61.942933pt;}
._4a{width:63.338667pt;}
._17{width:64.752000pt;}
._31{width:65.901867pt;}
._3a{width:67.884800pt;}
._16{width:69.408000pt;}
._15{width:71.110400pt;}
._1b{width:74.166400pt;}
._2e{width:76.414400pt;}
._2f{width:80.001067pt;}
._18{width:87.207467pt;}
._28{width:89.041600pt;}
._14{width:90.995200pt;}
._2a{width:96.038400pt;}
._1f{width:97.333867pt;}
._30{width:99.118933pt;}
._36{width:100.171733pt;}
._29{width:101.943467pt;}
._22{width:105.394667pt;}
._21{width:106.688000pt;}
._24{width:107.907733pt;}
._38{width:110.897067pt;}
._20{width:113.706133pt;}
._59{width:115.126400pt;}
._3d{width:116.320000pt;}
._1d{width:118.667200pt;}
._5b{width:119.728000pt;}
._51{width:121.168533pt;}
._5d{width:122.128000pt;}
._4f{width:123.238400pt;}
._25{width:124.575467pt;}
._34{width:125.875733pt;}
._35{width:127.459733pt;}
._52{width:129.076800pt;}
._33{width:131.354133pt;}
._54{width:132.465600pt;}
._4b{width:134.892800pt;}
._39{width:136.082667pt;}
._58{width:137.168000pt;}
._55{width:139.538667pt;}
._57{width:144.301867pt;}
._50{width:145.828267pt;}
._4e{width:152.073600pt;}
._12{width:153.597333pt;}
._5c{width:159.046933pt;}
._5a{width:163.524267pt;}
._56{width:164.674133pt;}
._46{width:165.964800pt;}
._3b{width:174.796267pt;}
._37{width:176.194667pt;}
._53{width:179.109867pt;}
._3c{width:191.314133pt;}
._45{width:193.468800pt;}
._1e{width:219.657067pt;}
._47{width:244.833600pt;}
._41{width:246.350400pt;}
._48{width:276.006933pt;}
._1c{width:277.422400pt;}
._49{width:295.659200pt;}
._13{width:303.022400pt;}
._1a{width:304.926400pt;}
._23{width:330.643200pt;}
._27{width:356.291200pt;}
._2d{width:387.464533pt;}
._32{width:407.107733pt;}
._5e{width:460.343467pt;}
._60{width:464.583467pt;}
._64{width:469.359467pt;}
._68{width:652.795733pt;}
._66{width:666.851733pt;}
._65{width:668.979733pt;}
._5f{width:669.913067pt;}
._61{width:672.274667pt;}
._63{width:673.204267pt;}
._67{width:709.563733pt;}
._62{width:720.686400pt;}
.fs9{font-size:27.984000pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y38{bottom:63.299600pt;}
.y39{bottom:66.698800pt;}
.y7e{bottom:100.514400pt;}
.y6b{bottom:100.514533pt;}
.yd1{bottom:107.111733pt;}
.y7d{bottom:119.181067pt;}
.y6a{bottom:119.181200pt;}
.y2a{bottom:122.855733pt;}
.y11{bottom:123.458133pt;}
.yd0{bottom:124.711733pt;}
.y10{bottom:136.258133pt;}
.y7c{bottom:137.847733pt;}
.y69{bottom:137.847867pt;}
.y29{bottom:141.522400pt;}
.ycf{bottom:142.311733pt;}
.yf{bottom:149.058133pt;}
.yce{bottom:151.967200pt;}
.yca{bottom:153.538267pt;}
.y7b{bottom:156.514400pt;}
.y68{bottom:156.514533pt;}
.yd2{bottom:159.911733pt;}
.y28{bottom:160.189067pt;}
.ye{bottom:161.858133pt;}
.ya3{bottom:169.280800pt;}
.ydf{bottom:169.280933pt;}
.ycd{bottom:169.567200pt;}
.yc9{bottom:171.138267pt;}
.y7a{bottom:175.181067pt;}
.y67{bottom:175.181200pt;}
.y27{bottom:178.855733pt;}
.y123{bottom:180.026133pt;}
.ycc{bottom:187.167200pt;}
.yc8{bottom:188.738267pt;}
.y79{bottom:193.847733pt;}
.y66{bottom:193.847867pt;}
.y35{bottom:195.917600pt;}
.y26{bottom:197.522400pt;}
.ycb{bottom:204.767200pt;}
.yc3{bottom:205.789867pt;}
.yc7{bottom:206.338267pt;}
.y34{bottom:211.917600pt;}
.y78{bottom:212.514400pt;}
.y65{bottom:212.514533pt;}
.yc1{bottom:215.568933pt;}
.y25{bottom:216.189067pt;}
.yeb{bottom:225.280800pt;}
.y33{bottom:227.917600pt;}
.y77{bottom:231.181067pt;}
.y64{bottom:231.181200pt;}
.yc0{bottom:232.395733pt;}
.yc2{bottom:234.498800pt;}
.y24{bottom:234.855733pt;}
.yd9{bottom:241.871333pt;}
.y32{bottom:243.917600pt;}
.ye4{bottom:243.947600pt;}
.ybf{bottom:249.222533pt;}
.y11a{bottom:249.847733pt;}
.y63{bottom:249.847867pt;}
.y31{bottom:259.917600pt;}
.y76{bottom:262.614133pt;}
.ybe{bottom:266.049333pt;}
.y23{bottom:267.374667pt;}
.y119{bottom:268.514400pt;}
.y62{bottom:268.514533pt;}
.y30{bottom:275.917600pt;}
.ybd{bottom:278.049333pt;}
.yd8{bottom:287.174133pt;}
.y118{bottom:287.181067pt;}
.y61{bottom:287.181200pt;}
.y2f{bottom:291.917600pt;}
.ybc{bottom:294.876133pt;}
.yd7{bottom:304.774133pt;}
.y117{bottom:305.847733pt;}
.y60{bottom:305.847867pt;}
.ybb{bottom:306.876133pt;}
.y9b{bottom:312.753200pt;}
.y132{bottom:317.789867pt;}
.yde{bottom:318.614267pt;}
.yd6{bottom:322.374133pt;}
.y2e{bottom:323.035733pt;}
.yba{bottom:323.702800pt;}
.y116{bottom:324.514400pt;}
.y5f{bottom:324.514533pt;}
.y9a{bottom:331.091867pt;}
.yb9{bottom:335.702800pt;}
.yea{bottom:337.280933pt;}
.y2d{bottom:339.035733pt;}
.yd5{bottom:339.974133pt;}
.y115{bottom:343.181067pt;}
.y5e{bottom:343.181200pt;}
.y131{bottom:346.498800pt;}
.y22{bottom:346.513733pt;}
.y99{bottom:349.430400pt;}
.yb8{bottom:352.529600pt;}
.y2c{bottom:355.035733pt;}
.yd4{bottom:357.574133pt;}
.y114{bottom:361.847733pt;}
.y5d{bottom:361.847867pt;}
.yf9{bottom:365.970667pt;}
.y122{bottom:366.692800pt;}
.y98{bottom:367.769067pt;}
.yb7{bottom:369.356400pt;}
.y2b{bottom:371.035733pt;}
.yd3{bottom:375.174133pt;}
.y97{bottom:379.769067pt;}
.y113{bottom:380.514400pt;}
.y5c{bottom:380.514533pt;}
.y21{bottom:383.011333pt;}
.yf8{bottom:384.309200pt;}
.yb6{bottom:386.183200pt;}
.y96{bottom:398.107600pt;}
.yb5{bottom:398.183200pt;}
.y112{bottom:399.181067pt;}
.y5b{bottom:399.181200pt;}
.y20{bottom:400.611467pt;}
.yf7{bottom:402.647733pt;}
.yb4{bottom:415.009867pt;}
.y95{bottom:416.446267pt;}
.y111{bottom:417.847733pt;}
.y5a{bottom:417.847867pt;}
.y1f{bottom:418.211467pt;}
.yf6{bottom:420.986267pt;}
.y121{bottom:422.692800pt;}
.ye3{bottom:430.614267pt;}
.yb3{bottom:431.836667pt;}
.y94{bottom:434.784800pt;}
.y1e{bottom:435.811467pt;}
.y110{bottom:436.514400pt;}
.y59{bottom:436.514533pt;}
.yf5{bottom:439.324933pt;}
.yb2{bottom:443.836667pt;}
.ydd{bottom:449.280933pt;}
.y93{bottom:453.123333pt;}
.y1d{bottom:453.411467pt;}
.y10f{bottom:455.181067pt;}
.y58{bottom:455.181200pt;}
.yf4{bottom:457.663467pt;}
.yb1{bottom:460.663467pt;}
.y10b{bottom:461.044400pt;}
.ye9{bottom:467.947600pt;}
.y1c{bottom:471.011333pt;}
.y92{bottom:471.461867pt;}
.y10e{bottom:473.847733pt;}
.y57{bottom:473.847867pt;}
.yf3{bottom:476.002133pt;}
.yb0{bottom:477.490267pt;}
.y10a{bottom:478.644400pt;}
.y120{bottom:478.692800pt;}
.y91{bottom:483.461867pt;}
.y1b{bottom:488.611467pt;}
.yaf{bottom:489.490267pt;}
.y10d{bottom:492.514400pt;}
.y56{bottom:492.514533pt;}
.yf2{bottom:494.340667pt;}
.y109{bottom:496.244400pt;}
.yc6{bottom:500.429867pt;}
.y90{bottom:501.800533pt;}
.y1a{bottom:506.211467pt;}
.yae{bottom:506.317067pt;}
.y130{bottom:511.181067pt;}
.y55{bottom:511.181200pt;}
.yf1{bottom:512.679333pt;}
.y8f{bottom:513.800533pt;}
.yc5{bottom:518.029867pt;}
.y10c{bottom:521.732267pt;}
.yad{bottom:523.143733pt;}
.y19{bottom:523.811467pt;}
.y12f{bottom:529.847733pt;}
.y54{bottom:529.847867pt;}
.yf0{bottom:531.017867pt;}
.y8e{bottom:532.139067pt;}
.y11f{bottom:535.055200pt;}
.yc4{bottom:535.629867pt;}
.yac{bottom:539.970533pt;}
.y18{bottom:541.411467pt;}
.y12e{bottom:548.514400pt;}
.y53{bottom:548.514533pt;}
.yef{bottom:549.623067pt;}
.y8d{bottom:550.477733pt;}
.yab{bottom:556.797333pt;}
.y17{bottom:559.011333pt;}
.y11e{bottom:561.280933pt;}
.y11b{bottom:564.949600pt;}
.y12d{bottom:567.181067pt;}
.y52{bottom:567.181200pt;}
.y8c{bottom:568.816267pt;}
.yaa{bottom:573.624133pt;}
.yee{bottom:575.718133pt;}
.y16{bottom:576.611467pt;}
.ydc{bottom:579.947600pt;}
.ya9{bottom:585.624133pt;}
.y12c{bottom:585.847733pt;}
.y51{bottom:585.847867pt;}
.y8b{bottom:587.154800pt;}
.yed{bottom:593.318133pt;}
.y15{bottom:594.211467pt;}
.ye8{bottom:598.614267pt;}
.y8a{bottom:599.154800pt;}
.ya8{bottom:602.450933pt;}
.y12b{bottom:604.514400pt;}
.y50{bottom:604.514533pt;}
.yec{bottom:610.918133pt;}
.y14{bottom:611.811467pt;}
.y89{bottom:617.493467pt;}
.ya7{bottom:619.544267pt;}
.y12a{bottom:623.181067pt;}
.y4f{bottom:623.181200pt;}
.y88{bottom:635.832000pt;}
.y13{bottom:639.453600pt;}
.y129{bottom:641.847733pt;}
.y4e{bottom:641.847867pt;}
.ya6{bottom:645.639333pt;}
.y87{bottom:647.832000pt;}
.ye2{bottom:654.614267pt;}
.y108{bottom:659.298933pt;}
.y128{bottom:660.514400pt;}
.y4d{bottom:660.514533pt;}
.ya5{bottom:663.239333pt;}
.y86{bottom:666.170533pt;}
.y11d{bottom:673.280933pt;}
.y107{bottom:677.637467pt;}
.y127{bottom:679.181067pt;}
.y4c{bottom:679.181200pt;}
.ya4{bottom:680.839333pt;}
.y85{bottom:684.509200pt;}
.y106{bottom:695.976133pt;}
.y84{bottom:696.509200pt;}
.y4b{bottom:697.847867pt;}
.yd{bottom:709.926133pt;}
.y126{bottom:710.614133pt;}
.y105{bottom:714.314667pt;}
.y83{bottom:714.847733pt;}
.ya2{bottom:716.514400pt;}
.y4a{bottom:716.514533pt;}
.yc{bottom:725.926133pt;}
.ye7{bottom:729.280800pt;}
.y104{bottom:732.653333pt;}
.y81{bottom:733.453067pt;}
.ya1{bottom:735.181067pt;}
.y49{bottom:735.181200pt;}
.y80{bottom:739.453067pt;}
.yb{bottom:741.926133pt;}
.y82{bottom:745.453067pt;}
.ydb{bottom:747.947600pt;}
.y103{bottom:750.991867pt;}
.ya0{bottom:753.847733pt;}
.y48{bottom:753.847867pt;}
.ya{bottom:757.926133pt;}
.y102{bottom:769.330533pt;}
.y7f{bottom:771.548000pt;}
.y9f{bottom:772.514400pt;}
.y47{bottom:772.514533pt;}
.y9{bottom:773.926133pt;}
.ye1{bottom:785.280933pt;}
.y101{bottom:787.669067pt;}
.y8{bottom:789.926133pt;}
.y9e{bottom:791.181067pt;}
.y46{bottom:791.181200pt;}
.y125{bottom:796.026000pt;}
.y7{bottom:805.926133pt;}
.y100{bottom:806.007600pt;}
.y75{bottom:809.847733pt;}
.y45{bottom:809.847867pt;}
.y6{bottom:821.926133pt;}
.yff{bottom:824.346133pt;}
.y74{bottom:828.514400pt;}
.y44{bottom:828.514533pt;}
.yfe{bottom:842.951467pt;}
.y73{bottom:847.181067pt;}
.y43{bottom:847.181200pt;}
.y5{bottom:853.044133pt;}
.ye6{bottom:859.947467pt;}
.y11c{bottom:859.947600pt;}
.y72{bottom:865.847733pt;}
.y42{bottom:865.847867pt;}
.yfd{bottom:869.046533pt;}
.y4{bottom:870.644267pt;}
.y71{bottom:884.514400pt;}
.y41{bottom:884.514533pt;}
.yfc{bottom:886.646533pt;}
.y70{bottom:903.181067pt;}
.y40{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.yfb{bottom:904.246533pt;}
.ye0{bottom:915.947600pt;}
.yfa{bottom:921.846533pt;}
.y6f{bottom:921.847733pt;}
.y3f{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.yda{bottom:934.614267pt;}
.y6e{bottom:940.514400pt;}
.y3e{bottom:940.514533pt;}
.y9d{bottom:959.181067pt;}
.y3d{bottom:959.181200pt;}
.y6d{bottom:970.692667pt;}
.y3c{bottom:977.847867pt;}
.y12{bottom:986.502667pt;}
.y9c{bottom:988.454000pt;}
.ye5{bottom:988.454133pt;}
.y3b{bottom:996.514533pt;}
.y6c{bottom:999.401467pt;}
.y124{bottom:1000.401600pt;}
.y37{bottom:1027.213600pt;}
.y36{bottom:1044.546933pt;}
.y3a{bottom:1047.726000pt;}
.h14{height:29.731771pt;}
.h16{height:29.950521pt;}
.h6{height:30.618750pt;}
.h2{height:33.812500pt;}
.h10{height:34.020833pt;}
.h5{height:34.250000pt;}
.h15{height:34.252604pt;}
.hf{height:38.039062pt;}
.h7{height:38.226562pt;}
.he{height:38.273438pt;}
.h9{height:38.507812pt;}
.h8{height:40.546875pt;}
.hc{height:42.786458pt;}
.ha{height:44.039062pt;}
.h11{height:44.601562pt;}
.h4{height:47.065104pt;}
.hb{height:48.656250pt;}
.hd{height:48.932292pt;}
.h12{height:53.731771pt;}
.h17{height:53.825521pt;}
.h3{height:72.205729pt;}
.h13{height:77.731771pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xa{left:95.172400pt;}
.xc{left:96.255067pt;}
.x1a{left:98.267733pt;}
.x13{left:99.779600pt;}
.x5{left:106.290133pt;}
.x6{left:107.597867pt;}
.x7{left:109.707333pt;}
.x19{left:158.301067pt;}
.xd{left:172.663333pt;}
.x1b{left:255.602267pt;}
.x4{left:266.834667pt;}
.x1d{left:270.614133pt;}
.xb{left:281.952800pt;}
.x14{left:284.976400pt;}
.xe{left:287.860267pt;}
.x3{left:352.045067pt;}
.x1c{left:358.678933pt;}
.xf{left:455.154400pt;}
.x15{left:503.184533pt;}
.x17{left:504.720267pt;}
.x18{left:524.935200pt;}
.x9{left:576.610267pt;}
.x16{left:582.289067pt;}
.x10{left:590.328400pt;}
.x8{left:594.089333pt;}
.x11{left:657.171200pt;}
.x12{left:671.128533pt;}
.x1{left:712.311867pt;}
}




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