
    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_c39e3fd145adf76759a9ea8b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.995000;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_c0205f6ca2d19cf890fcef27.woff')format("woff");}.ff2{font-family:ff2;line-height:0.971000;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_1b1391dfe1c39846bde80065.woff')format("woff");}.ff3{font-family:ff3;line-height:0.741000;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_eac733ad413f19b0783662ad.woff')format("woff");}.ff4{font-family:ff4;line-height:1.158000;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_897a0449310e946c7540a1fe.woff')format("woff");}.ff5{font-family:ff5;line-height:0.986000;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_d6066e27692124255b1a3f80.woff')format("woff");}.ff6{font-family:ff6;line-height:1.037000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a8cd8376f713f4a70d65fb8a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.005000;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_685cd13cdc6b85d8408e23f9.woff')format("woff");}.ff8{font-family:ff8;line-height:1.016000;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_eccb7504ab33b57c7d8086c6.woff')format("woff");}.ff9{font-family:ff9;line-height:1.083000;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_f1e88dfa13e476b4eee3b672.woff')format("woff");}.ffa{font-family:ffa;line-height:1.021000;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_9212eeda579fec1c566567aa.woff')format("woff");}.ffb{font-family:ffb;line-height:0.812000;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.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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.000000px;}
.v2{vertical-align:120.000000px;}
.ls8{letter-spacing:-33.600000px;}
.lsc{letter-spacing:-22.176000px;}
.ls1{letter-spacing:-6.552000px;}
.ls6{letter-spacing:-5.880000px;}
.lsd{letter-spacing:-4.872000px;}
.lsa{letter-spacing:-3.456000px;}
.ls9{letter-spacing:-2.304000px;}
.ls7{letter-spacing:-2.016000px;}
.lsb{letter-spacing:-1.344000px;}
.ls2{letter-spacing:-1.176000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:1.512000px;}
.ls4{letter-spacing:8.334000px;}
.ls5{letter-spacing:9.521400px;}
.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;}
}
.ws1{word-spacing:-349.500000px;}
.ws0{word-spacing:-50.328000px;}
.ws8{word-spacing:-44.736000px;}
.ws21{word-spacing:-38.400000px;}
.ws3{word-spacing:-33.600000px;}
.ws31{word-spacing:-32.256000px;}
.ws9{word-spacing:-27.720000px;}
.ws1c{word-spacing:-24.000000px;}
.ws6{word-spacing:-1.512000px;}
.ws30{word-spacing:-0.228000px;}
.ws1f{word-spacing:-0.192000px;}
.ws7{word-spacing:-0.168000px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:1.176000px;}
.wsc{word-spacing:1.848000px;}
.ws16{word-spacing:2.112000px;}
.ws33{word-spacing:4.872000px;}
.ws4{word-spacing:6.552000px;}
.ws32{word-spacing:22.176000px;}
.wsf{word-spacing:30.744000px;}
.wsb{word-spacing:30.912000px;}
.ws15{word-spacing:32.760000px;}
.ws11{word-spacing:33.600000px;}
.wsd{word-spacing:34.104000px;}
.wsa{word-spacing:47.376000px;}
.ws10{word-spacing:48.888000px;}
.ws2f{word-spacing:49.848000px;}
.wse{word-spacing:69.216000px;}
.ws14{word-spacing:77.448000px;}
.ws13{word-spacing:79.632000px;}
.ws12{word-spacing:109.536000px;}
.ws1b{word-spacing:536.185800px;}
.ws1a{word-spacing:597.001800px;}
.ws17{word-spacing:645.370200px;}
.ws1e{word-spacing:848.313600px;}
.ws1d{word-spacing:1003.245600px;}
.ws18{word-spacing:1051.090800px;}
.ws19{word-spacing:1078.977600px;}
.ws28{word-spacing:3405.312000px;}
.ws2c{word-spacing:3537.528000px;}
.ws2b{word-spacing:3646.896000px;}
.ws2e{word-spacing:3818.928000px;}
.ws2d{word-spacing:3836.232000px;}
.ws27{word-spacing:4014.312000px;}
.ws25{word-spacing:4166.872800px;}
.ws29{word-spacing:4323.264000px;}
.ws24{word-spacing:4429.104000px;}
.ws20{word-spacing:4444.872000px;}
.ws26{word-spacing:4586.352000px;}
.ws2a{word-spacing:4616.088000px;}
.ws23{word-spacing:4753.680000px;}
.ws22{word-spacing:4911.936000px;}
._5{margin-left:-37.500000px;}
._29{margin-left:-34.527000px;}
._28{margin-left:-32.673000px;}
._62{margin-left:-31.248000px;}
._9{margin-left:-26.784000px;}
._13{margin-left:-23.011800px;}
._a{margin-left:-21.074400px;}
._60{margin-left:-19.718400px;}
._61{margin-left:-18.454200px;}
._20{margin-left:-16.070400px;}
._1{margin-left:-14.709600px;}
._22{margin-left:-13.548600px;}
._6{margin-left:-12.024000px;}
._12{margin-left:-10.908000px;}
._d{margin-left:-9.546000px;}
._1f{margin-left:-8.082000px;}
._3{margin-left:-6.660000px;}
._7{margin-left:-5.649000px;}
._0{margin-left:-4.536000px;}
._2{margin-left:-2.592000px;}
._4{margin-left:-1.383000px;}
._8{width:1.680000px;}
._b{width:3.247200px;}
._c{width:4.612800px;}
._14{width:5.977200px;}
._10{width:7.047600px;}
._f{width:8.911800px;}
._21{width:10.006800px;}
._18{width:11.020800px;}
._1d{width:12.035400px;}
._16{width:13.058400px;}
._15{width:14.083200px;}
._17{width:15.276600px;}
._11{width:16.440000px;}
._23{width:17.751000px;}
._1e{width:18.960000px;}
._24{width:20.049000px;}
._32{width:21.490200px;}
._e{width:23.328000px;}
._30{width:28.392000px;}
._27{width:30.333600px;}
._26{width:31.468200px;}
._31{width:32.572800px;}
._2c{width:34.918800px;}
._3d{width:37.804200px;}
._3e{width:38.863800px;}
._3f{width:40.041000px;}
._2a{width:42.121800px;}
._2b{width:43.143000px;}
._33{width:44.812200px;}
._25{width:47.905200px;}
._2f{width:49.737600px;}
._3a{width:65.041200px;}
._2e{width:68.603400px;}
._2d{width:69.685200px;}
._36{width:73.185000px;}
._37{width:74.306400px;}
._40{width:78.016800px;}
._39{width:79.228800px;}
._38{width:80.339400px;}
._41{width:87.385200px;}
._4f{width:91.921800px;}
._3b{width:105.373800px;}
._3c{width:106.575000px;}
._35{width:108.912600px;}
._34{width:109.947600px;}
._4e{width:114.631200px;}
._51{width:258.990600px;}
._5b{width:279.536400px;}
._49{width:281.919600px;}
._5e{width:298.288800px;}
._56{width:301.305000px;}
._48{width:312.265800px;}
._45{width:350.474400px;}
._58{width:351.730800px;}
._4c{width:355.768800px;}
._5a{width:379.263600px;}
._52{width:412.858800px;}
._4b{width:422.928600px;}
._4a{width:431.412000px;}
._53{width:435.424200px;}
._46{width:439.783200px;}
._44{width:475.956600px;}
._54{width:516.312600px;}
._47{width:712.257600px;}
._42{width:738.513600px;}
._57{width:789.121200px;}
._5f{width:826.800600px;}
._5d{width:840.408600px;}
._5c{width:921.406200px;}
._55{width:962.872800px;}
._43{width:1124.194800px;}
._59{width:1243.474800px;}
._4d{width:1328.794800px;}
._50{width:1388.434800px;}
._1b{width:1639.862400px;}
._19{width:1800.293400px;}
._1c{width:1842.700800px;}
._1a{width:2208.589800px;}
._63{width:2725.411200px;}
._64{width:2905.327200px;}
.fc2{color:rgb(79,76,77);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:72.000000px;}
.fsb{font-size:114.000000px;}
.fs9{font-size:120.000000px;}
.fs4{font-size:168.000000px;}
.fs8{font-size:192.000000px;}
.fs0{font-size:216.000000px;}
.fsa{font-size:228.000000px;}
.fs6{font-size:252.000000px;}
.fs1{font-size:360.000000px;}
.fs5{font-size:432.000000px;}
.fs3{font-size:1500.000000px;}
.fs2{font-size:1920.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:120.000000px;}
.y62{bottom:120.876750px;}
.y33{bottom:126.000000px;}
.y47{bottom:135.000000px;}
.y4c{bottom:136.500000px;}
.y9c{bottom:141.428550px;}
.y7{bottom:142.098750px;}
.yd9{bottom:148.125000px;}
.y45{bottom:153.500100px;}
.yac{bottom:165.750000px;}
.y60{bottom:171.876750px;}
.y8e{bottom:172.500000px;}
.y32{bottom:177.000000px;}
.y4b{bottom:187.500000px;}
.yd8{bottom:190.125000px;}
.y9b{bottom:199.607100px;}
.y42{bottom:204.500100px;}
.y6{bottom:206.898750px;}
.yab{bottom:216.750000px;}
.y80{bottom:218.562450px;}
.ybe{bottom:219.000000px;}
.y5f{bottom:222.876750px;}
.y8d{bottom:223.500000px;}
.y50{bottom:228.000000px;}
.yd7{bottom:232.125000px;}
.y7f{bottom:239.562450px;}
.y44{bottom:255.500100px;}
.y9a{bottom:257.785650px;}
.ybd{bottom:270.000000px;}
.y5e{bottom:273.876750px;}
.yd6{bottom:274.125000px;}
.y8c{bottom:274.500000px;}
.y31{bottom:279.000000px;}
.y4a{bottom:289.500000px;}
.y41{bottom:306.500100px;}
.y99{bottom:315.964350px;}
.yd5{bottom:316.125000px;}
.yaa{bottom:318.750000px;}
.yba{bottom:321.000000px;}
.y61{bottom:324.876750px;}
.y8b{bottom:325.500000px;}
.y2f{bottom:330.000000px;}
.y7e{bottom:334.875000px;}
.y49{bottom:340.500000px;}
.y7d{bottom:355.875000px;}
.y40{bottom:357.500100px;}
.yd4{bottom:358.125000px;}
.ya9{bottom:369.750000px;}
.yb9{bottom:372.000000px;}
.y98{bottom:374.142900px;}
.y5d{bottom:375.876750px;}
.y8a{bottom:376.500000px;}
.y2e{bottom:381.000000px;}
.y48{bottom:391.500000px;}
.yd3{bottom:400.125000px;}
.y3f{bottom:408.500100px;}
.y7c{bottom:421.187550px;}
.yb8{bottom:423.000000px;}
.y5c{bottom:426.876750px;}
.y89{bottom:427.500000px;}
.y2b{bottom:432.000000px;}
.y97{bottom:432.321450px;}
.yd2{bottom:442.125000px;}
.y7b{bottom:451.187550px;}
.y46{bottom:459.500100px;}
.ya8{bottom:471.750000px;}
.y7a{bottom:472.187550px;}
.ybc{bottom:474.000000px;}
.y5b{bottom:477.876750px;}
.y88{bottom:478.500000px;}
.y2a{bottom:483.000000px;}
.yd1{bottom:484.125000px;}
.y4d{bottom:484.500000px;}
.y96{bottom:490.500000px;}
.y3e{bottom:510.500100px;}
.ya7{bottom:522.750000px;}
.yb7{bottom:525.000000px;}
.yd0{bottom:526.125000px;}
.y63{bottom:528.876750px;}
.y87{bottom:529.500000px;}
.y29{bottom:534.000000px;}
.y95{bottom:548.678550px;}
.y3d{bottom:561.500100px;}
.y79{bottom:567.499950px;}
.ycf{bottom:568.125000px;}
.y1f{bottom:572.499900px;}
.yb6{bottom:576.000000px;}
.y5a{bottom:579.876750px;}
.y9d{bottom:580.500000px;}
.y2d{bottom:585.000000px;}
.y78{bottom:588.499950px;}
.y94{bottom:606.857100px;}
.yce{bottom:610.125000px;}
.y3c{bottom:612.500100px;}
.y1e{bottom:623.499900px;}
.ya6{bottom:624.750000px;}
.yb5{bottom:627.000000px;}
.y59{bottom:630.876750px;}
.y86{bottom:631.500000px;}
.y28{bottom:636.000000px;}
.ya{bottom:648.004500px;}
.ycd{bottom:652.125000px;}
.y76{bottom:653.812500px;}
.y3b{bottom:663.500100px;}
.y93{bottom:665.035650px;}
.y1d{bottom:674.499900px;}
.ya5{bottom:675.750000px;}
.yb4{bottom:678.000000px;}
.y4f{bottom:678.666750px;}
.y58{bottom:681.876750px;}
.y85{bottom:682.500000px;}
.y75{bottom:683.812500px;}
.y27{bottom:687.000000px;}
.y4e{bottom:687.642900px;}
.ycc{bottom:694.125000px;}
.y74{bottom:704.812500px;}
.y77{bottom:713.812500px;}
.y3a{bottom:714.500100px;}
.y92{bottom:723.214350px;}
.y1c{bottom:725.499900px;}
.ya4{bottom:726.750000px;}
.yb3{bottom:729.000000px;}
.y84{bottom:733.500000px;}
.ycb{bottom:736.125000px;}
.y26{bottom:738.000000px;}
.y43{bottom:765.500100px;}
.y1b{bottom:776.499900px;}
.ya3{bottom:777.750000px;}
.yca{bottom:778.125000px;}
.ybb{bottom:780.000000px;}
.y91{bottom:781.392900px;}
.y57{bottom:783.876750px;}
.y83{bottom:784.500000px;}
.y25{bottom:789.000000px;}
.y8{bottom:795.375000px;}
.y73{bottom:800.125050px;}
.y39{bottom:816.500100px;}
.yc9{bottom:820.125000px;}
.y72{bottom:821.125050px;}
.y1a{bottom:827.499900px;}
.ya2{bottom:828.750000px;}
.yb2{bottom:831.000000px;}
.y5{bottom:832.831350px;}
.y56{bottom:834.876750px;}
.y82{bottom:835.500000px;}
.y90{bottom:839.571450px;}
.y30{bottom:840.000000px;}
.y10{bottom:846.000000px;}
.yc8{bottom:862.125000px;}
.y38{bottom:867.500100px;}
.y19{bottom:878.499900px;}
.yb1{bottom:882.000000px;}
.y55{bottom:885.876750px;}
.y70{bottom:886.437450px;}
.y68{bottom:886.500000px;}
.y24{bottom:891.000000px;}
.y8f{bottom:893.250000px;}
.yc7{bottom:904.125000px;}
.yf{bottom:906.000000px;}
.y6f{bottom:916.437450px;}
.y37{bottom:918.500100px;}
.y18{bottom:929.499900px;}
.ya1{bottom:930.750000px;}
.yb0{bottom:933.000000px;}
.y6e{bottom:937.437450px;}
.y67{bottom:937.500000px;}
.y4{bottom:940.831350px;}
.y23{bottom:942.000000px;}
.yc6{bottom:946.125000px;}
.y71{bottom:946.437450px;}
.ye{bottom:966.000000px;}
.y36{bottom:969.500100px;}
.y17{bottom:980.499900px;}
.ya0{bottom:981.750000px;}
.yaf{bottom:984.000000px;}
.y54{bottom:987.876750px;}
.yc5{bottom:988.125000px;}
.y81{bottom:988.500000px;}
.y2c{bottom:993.000000px;}
.y6d{bottom:1008.750000px;}
.y35{bottom:1020.500100px;}
.yd{bottom:1026.000000px;}
.yc4{bottom:1030.125000px;}
.y16{bottom:1031.499900px;}
.y9f{bottom:1032.750000px;}
.yae{bottom:1035.000000px;}
.y53{bottom:1038.876750px;}
.y66{bottom:1039.500000px;}
.y22{bottom:1044.000000px;}
.y6c{bottom:1053.750000px;}
.yc3{bottom:1072.125000px;}
.y15{bottom:1082.499900px;}
.yc{bottom:1086.000000px;}
.y52{bottom:1089.876750px;}
.y65{bottom:1090.500000px;}
.y21{bottom:1095.000000px;}
.yc2{bottom:1114.125000px;}
.y14{bottom:1133.499900px;}
.y9e{bottom:1134.750000px;}
.yad{bottom:1137.000000px;}
.y51{bottom:1140.876750px;}
.y64{bottom:1141.500000px;}
.yb{bottom:1146.000000px;}
.yc1{bottom:1156.125000px;}
.y34{bottom:1161.332100px;}
.y13{bottom:1184.499900px;}
.y6b{bottom:1197.999900px;}
.y12{bottom:1235.499900px;}
.y20{bottom:1236.931950px;}
.yc0{bottom:1237.917600px;}
.y6a{bottom:1248.999900px;}
.y3{bottom:1264.398750px;}
.y2{bottom:1393.998750px;}
.y11{bottom:1417.597650px;}
.ybf{bottom:1418.583300px;}
.y69{bottom:1451.931900px;}
.y1{bottom:1458.798750px;}
.hb{height:61.344000px;}
.h16{height:89.034000px;}
.h13{height:93.720000px;}
.h5{height:130.536000px;}
.h8{height:131.208000px;}
.h11{height:134.400000px;}
.hd{height:135.072000px;}
.ha{height:138.096000px;}
.h7{height:138.768000px;}
.hc{height:146.880000px;}
.he{height:149.952000px;}
.h10{height:154.368000px;}
.h14{height:158.592000px;}
.h1{height:165.240000px;}
.h15{height:183.312000px;}
.hf{height:192.780000px;}
.h12{height:213.720000px;}
.h9{height:234.108000px;}
.h2{height:266.760000px;}
.h6{height:401.328000px;}
.h4{height:1393.500000px;}
.h0{height:1620.000000px;}
.h3{height:1783.680000px;}
.w0{width:2880.000000px;}
.x0{left:0.000000px;}
.x1{left:120.000000px;}
.xb{left:122.625000px;}
.x15{left:126.749850px;}
.xd{left:147.000000px;}
.x22{left:184.392300px;}
.x21{left:189.852150px;}
.x1d{left:202.283550px;}
.x20{left:217.739700px;}
.x1e{left:222.779400px;}
.x1f{left:257.197950px;}
.x1c{left:272.401950px;}
.x16{left:503.678400px;}
.xe{left:661.405950px;}
.x12{left:676.453800px;}
.x17{left:880.606950px;}
.x18{left:1257.535350px;}
.x10{left:1449.000000px;}
.x11{left:1476.000150px;}
.xa{left:1488.550050px;}
.x14{left:1578.666450px;}
.x23{left:1597.125000px;}
.x19{left:1634.464050px;}
.xc{left:1763.250000px;}
.x13{left:1958.894550px;}
.xf{left:2003.941050px;}
.x1a{left:2011.392750px;}
.x7{left:2024.673000px;}
.x9{left:2146.263750px;}
.x8{left:2169.741450px;}
.x6{left:2263.018050px;}
.x3{left:2308.619550px;}
.x1b{left:2388.321150px;}
.x5{left:2547.692850px;}
.x2{left:2550.357750px;}
.x4{left:2723.619450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.000000pt;}
.v2{vertical-align:106.666667pt;}
.ls8{letter-spacing:-29.866667pt;}
.lsc{letter-spacing:-19.712000pt;}
.ls1{letter-spacing:-5.824000pt;}
.ls6{letter-spacing:-5.226667pt;}
.lsd{letter-spacing:-4.330667pt;}
.lsa{letter-spacing:-3.072000pt;}
.ls9{letter-spacing:-2.048000pt;}
.ls7{letter-spacing:-1.792000pt;}
.lsb{letter-spacing:-1.194667pt;}
.ls2{letter-spacing:-1.045333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:1.344000pt;}
.ls4{letter-spacing:7.408000pt;}
.ls5{letter-spacing:8.463467pt;}
.ws1{word-spacing:-310.666667pt;}
.ws0{word-spacing:-44.736000pt;}
.ws8{word-spacing:-39.765333pt;}
.ws21{word-spacing:-34.133333pt;}
.ws3{word-spacing:-29.866667pt;}
.ws31{word-spacing:-28.672000pt;}
.ws9{word-spacing:-24.640000pt;}
.ws1c{word-spacing:-21.333333pt;}
.ws6{word-spacing:-1.344000pt;}
.ws30{word-spacing:-0.202667pt;}
.ws1f{word-spacing:-0.170667pt;}
.ws7{word-spacing:-0.149333pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:1.045333pt;}
.wsc{word-spacing:1.642667pt;}
.ws16{word-spacing:1.877333pt;}
.ws33{word-spacing:4.330667pt;}
.ws4{word-spacing:5.824000pt;}
.ws32{word-spacing:19.712000pt;}
.wsf{word-spacing:27.328000pt;}
.wsb{word-spacing:27.477333pt;}
.ws15{word-spacing:29.120000pt;}
.ws11{word-spacing:29.866667pt;}
.wsd{word-spacing:30.314667pt;}
.wsa{word-spacing:42.112000pt;}
.ws10{word-spacing:43.456000pt;}
.ws2f{word-spacing:44.309333pt;}
.wse{word-spacing:61.525333pt;}
.ws14{word-spacing:68.842667pt;}
.ws13{word-spacing:70.784000pt;}
.ws12{word-spacing:97.365333pt;}
.ws1b{word-spacing:476.609600pt;}
.ws1a{word-spacing:530.668267pt;}
.ws17{word-spacing:573.662400pt;}
.ws1e{word-spacing:754.056533pt;}
.ws1d{word-spacing:891.773867pt;}
.ws18{word-spacing:934.302933pt;}
.ws19{word-spacing:959.091200pt;}
.ws28{word-spacing:3026.944000pt;}
.ws2c{word-spacing:3144.469333pt;}
.ws2b{word-spacing:3241.685333pt;}
.ws2e{word-spacing:3394.602667pt;}
.ws2d{word-spacing:3409.984000pt;}
.ws27{word-spacing:3568.277333pt;}
.ws25{word-spacing:3703.886933pt;}
.ws29{word-spacing:3842.901333pt;}
.ws24{word-spacing:3936.981333pt;}
.ws20{word-spacing:3950.997333pt;}
.ws26{word-spacing:4076.757333pt;}
.ws2a{word-spacing:4103.189333pt;}
.ws23{word-spacing:4225.493333pt;}
.ws22{word-spacing:4366.165333pt;}
._5{margin-left:-33.333333pt;}
._29{margin-left:-30.690667pt;}
._28{margin-left:-29.042667pt;}
._62{margin-left:-27.776000pt;}
._9{margin-left:-23.808000pt;}
._13{margin-left:-20.454933pt;}
._a{margin-left:-18.732800pt;}
._60{margin-left:-17.527467pt;}
._61{margin-left:-16.403733pt;}
._20{margin-left:-14.284800pt;}
._1{margin-left:-13.075200pt;}
._22{margin-left:-12.043200pt;}
._6{margin-left:-10.688000pt;}
._12{margin-left:-9.696000pt;}
._d{margin-left:-8.485333pt;}
._1f{margin-left:-7.184000pt;}
._3{margin-left:-5.920000pt;}
._7{margin-left:-5.021333pt;}
._0{margin-left:-4.032000pt;}
._2{margin-left:-2.304000pt;}
._4{margin-left:-1.229333pt;}
._8{width:1.493333pt;}
._b{width:2.886400pt;}
._c{width:4.100267pt;}
._14{width:5.313067pt;}
._10{width:6.264533pt;}
._f{width:7.921600pt;}
._21{width:8.894933pt;}
._18{width:9.796267pt;}
._1d{width:10.698133pt;}
._16{width:11.607467pt;}
._15{width:12.518400pt;}
._17{width:13.579200pt;}
._11{width:14.613333pt;}
._23{width:15.778667pt;}
._1e{width:16.853333pt;}
._24{width:17.821333pt;}
._32{width:19.102400pt;}
._e{width:20.736000pt;}
._30{width:25.237333pt;}
._27{width:26.963200pt;}
._26{width:27.971733pt;}
._31{width:28.953600pt;}
._2c{width:31.038933pt;}
._3d{width:33.603733pt;}
._3e{width:34.545600pt;}
._3f{width:35.592000pt;}
._2a{width:37.441600pt;}
._2b{width:38.349333pt;}
._33{width:39.833067pt;}
._25{width:42.582400pt;}
._2f{width:44.211200pt;}
._3a{width:57.814400pt;}
._2e{width:60.980800pt;}
._2d{width:61.942400pt;}
._36{width:65.053333pt;}
._37{width:66.050133pt;}
._40{width:69.348267pt;}
._39{width:70.425600pt;}
._38{width:71.412800pt;}
._41{width:77.675733pt;}
._4f{width:81.708267pt;}
._3b{width:93.665600pt;}
._3c{width:94.733333pt;}
._35{width:96.811200pt;}
._34{width:97.731200pt;}
._4e{width:101.894400pt;}
._51{width:230.213867pt;}
._5b{width:248.476800pt;}
._49{width:250.595200pt;}
._5e{width:265.145600pt;}
._56{width:267.826667pt;}
._48{width:277.569600pt;}
._45{width:311.532800pt;}
._58{width:312.649600pt;}
._4c{width:316.238933pt;}
._5a{width:337.123200pt;}
._52{width:366.985600pt;}
._4b{width:375.936533pt;}
._4a{width:383.477333pt;}
._53{width:387.043733pt;}
._46{width:390.918400pt;}
._44{width:423.072533pt;}
._54{width:458.944533pt;}
._47{width:633.117867pt;}
._42{width:656.456533pt;}
._57{width:701.441067pt;}
._5f{width:734.933867pt;}
._5d{width:747.029867pt;}
._5c{width:819.027733pt;}
._55{width:855.886933pt;}
._43{width:999.284267pt;}
._59{width:1105.310933pt;}
._4d{width:1181.150933pt;}
._50{width:1234.164267pt;}
._1b{width:1457.655467pt;}
._19{width:1600.260800pt;}
._1c{width:1637.956267pt;}
._1a{width:1963.190933pt;}
._63{width:2422.587733pt;}
._64{width:2582.513067pt;}
.fs7{font-size:64.000000pt;}
.fsb{font-size:101.333333pt;}
.fs9{font-size:106.666667pt;}
.fs4{font-size:149.333333pt;}
.fs8{font-size:170.666667pt;}
.fs0{font-size:192.000000pt;}
.fsa{font-size:202.666667pt;}
.fs6{font-size:224.000000pt;}
.fs1{font-size:320.000000pt;}
.fs5{font-size:384.000000pt;}
.fs3{font-size:1333.333333pt;}
.fs2{font-size:1706.666667pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:106.666667pt;}
.y62{bottom:107.446000pt;}
.y33{bottom:112.000000pt;}
.y47{bottom:120.000000pt;}
.y4c{bottom:121.333333pt;}
.y9c{bottom:125.714267pt;}
.y7{bottom:126.310000pt;}
.yd9{bottom:131.666667pt;}
.y45{bottom:136.444533pt;}
.yac{bottom:147.333333pt;}
.y60{bottom:152.779333pt;}
.y8e{bottom:153.333333pt;}
.y32{bottom:157.333333pt;}
.y4b{bottom:166.666667pt;}
.yd8{bottom:169.000000pt;}
.y9b{bottom:177.428533pt;}
.y42{bottom:181.777867pt;}
.y6{bottom:183.910000pt;}
.yab{bottom:192.666667pt;}
.y80{bottom:194.277733pt;}
.ybe{bottom:194.666667pt;}
.y5f{bottom:198.112667pt;}
.y8d{bottom:198.666667pt;}
.y50{bottom:202.666667pt;}
.yd7{bottom:206.333333pt;}
.y7f{bottom:212.944400pt;}
.y44{bottom:227.111200pt;}
.y9a{bottom:229.142800pt;}
.ybd{bottom:240.000000pt;}
.y5e{bottom:243.446000pt;}
.yd6{bottom:243.666667pt;}
.y8c{bottom:244.000000pt;}
.y31{bottom:248.000000pt;}
.y4a{bottom:257.333333pt;}
.y41{bottom:272.444533pt;}
.y99{bottom:280.857200pt;}
.yd5{bottom:281.000000pt;}
.yaa{bottom:283.333333pt;}
.yba{bottom:285.333333pt;}
.y61{bottom:288.779333pt;}
.y8b{bottom:289.333333pt;}
.y2f{bottom:293.333333pt;}
.y7e{bottom:297.666667pt;}
.y49{bottom:302.666667pt;}
.y7d{bottom:316.333333pt;}
.y40{bottom:317.777867pt;}
.yd4{bottom:318.333333pt;}
.ya9{bottom:328.666667pt;}
.yb9{bottom:330.666667pt;}
.y98{bottom:332.571467pt;}
.y5d{bottom:334.112667pt;}
.y8a{bottom:334.666667pt;}
.y2e{bottom:338.666667pt;}
.y48{bottom:348.000000pt;}
.yd3{bottom:355.666667pt;}
.y3f{bottom:363.111200pt;}
.y7c{bottom:374.388933pt;}
.yb8{bottom:376.000000pt;}
.y5c{bottom:379.446000pt;}
.y89{bottom:380.000000pt;}
.y2b{bottom:384.000000pt;}
.y97{bottom:384.285733pt;}
.yd2{bottom:393.000000pt;}
.y7b{bottom:401.055600pt;}
.y46{bottom:408.444533pt;}
.ya8{bottom:419.333333pt;}
.y7a{bottom:419.722267pt;}
.ybc{bottom:421.333333pt;}
.y5b{bottom:424.779333pt;}
.y88{bottom:425.333333pt;}
.y2a{bottom:429.333333pt;}
.yd1{bottom:430.333333pt;}
.y4d{bottom:430.666667pt;}
.y96{bottom:436.000000pt;}
.y3e{bottom:453.777867pt;}
.ya7{bottom:464.666667pt;}
.yb7{bottom:466.666667pt;}
.yd0{bottom:467.666667pt;}
.y63{bottom:470.112667pt;}
.y87{bottom:470.666667pt;}
.y29{bottom:474.666667pt;}
.y95{bottom:487.714267pt;}
.y3d{bottom:499.111200pt;}
.y79{bottom:504.444400pt;}
.ycf{bottom:505.000000pt;}
.y1f{bottom:508.888800pt;}
.yb6{bottom:512.000000pt;}
.y5a{bottom:515.446000pt;}
.y9d{bottom:516.000000pt;}
.y2d{bottom:520.000000pt;}
.y78{bottom:523.111067pt;}
.y94{bottom:539.428533pt;}
.yce{bottom:542.333333pt;}
.y3c{bottom:544.444533pt;}
.y1e{bottom:554.222133pt;}
.ya6{bottom:555.333333pt;}
.yb5{bottom:557.333333pt;}
.y59{bottom:560.779333pt;}
.y86{bottom:561.333333pt;}
.y28{bottom:565.333333pt;}
.ya{bottom:576.004000pt;}
.ycd{bottom:579.666667pt;}
.y76{bottom:581.166667pt;}
.y3b{bottom:589.777867pt;}
.y93{bottom:591.142800pt;}
.y1d{bottom:599.555467pt;}
.ya5{bottom:600.666667pt;}
.yb4{bottom:602.666667pt;}
.y4f{bottom:603.259333pt;}
.y58{bottom:606.112667pt;}
.y85{bottom:606.666667pt;}
.y75{bottom:607.833333pt;}
.y27{bottom:610.666667pt;}
.y4e{bottom:611.238133pt;}
.ycc{bottom:617.000000pt;}
.y74{bottom:626.500000pt;}
.y77{bottom:634.500000pt;}
.y3a{bottom:635.111200pt;}
.y92{bottom:642.857200pt;}
.y1c{bottom:644.888800pt;}
.ya4{bottom:646.000000pt;}
.yb3{bottom:648.000000pt;}
.y84{bottom:652.000000pt;}
.ycb{bottom:654.333333pt;}
.y26{bottom:656.000000pt;}
.y43{bottom:680.444533pt;}
.y1b{bottom:690.222133pt;}
.ya3{bottom:691.333333pt;}
.yca{bottom:691.666667pt;}
.ybb{bottom:693.333333pt;}
.y91{bottom:694.571467pt;}
.y57{bottom:696.779333pt;}
.y83{bottom:697.333333pt;}
.y25{bottom:701.333333pt;}
.y8{bottom:707.000000pt;}
.y73{bottom:711.222267pt;}
.y39{bottom:725.777867pt;}
.yc9{bottom:729.000000pt;}
.y72{bottom:729.888933pt;}
.y1a{bottom:735.555467pt;}
.ya2{bottom:736.666667pt;}
.yb2{bottom:738.666667pt;}
.y5{bottom:740.294533pt;}
.y56{bottom:742.112667pt;}
.y82{bottom:742.666667pt;}
.y90{bottom:746.285733pt;}
.y30{bottom:746.666667pt;}
.y10{bottom:752.000000pt;}
.yc8{bottom:766.333333pt;}
.y38{bottom:771.111200pt;}
.y19{bottom:780.888800pt;}
.yb1{bottom:784.000000pt;}
.y55{bottom:787.446000pt;}
.y70{bottom:787.944400pt;}
.y68{bottom:788.000000pt;}
.y24{bottom:792.000000pt;}
.y8f{bottom:794.000000pt;}
.yc7{bottom:803.666667pt;}
.yf{bottom:805.333333pt;}
.y6f{bottom:814.611067pt;}
.y37{bottom:816.444533pt;}
.y18{bottom:826.222133pt;}
.ya1{bottom:827.333333pt;}
.yb0{bottom:829.333333pt;}
.y6e{bottom:833.277733pt;}
.y67{bottom:833.333333pt;}
.y4{bottom:836.294533pt;}
.y23{bottom:837.333333pt;}
.yc6{bottom:841.000000pt;}
.y71{bottom:841.277733pt;}
.ye{bottom:858.666667pt;}
.y36{bottom:861.777867pt;}
.y17{bottom:871.555467pt;}
.ya0{bottom:872.666667pt;}
.yaf{bottom:874.666667pt;}
.y54{bottom:878.112667pt;}
.yc5{bottom:878.333333pt;}
.y81{bottom:878.666667pt;}
.y2c{bottom:882.666667pt;}
.y6d{bottom:896.666667pt;}
.y35{bottom:907.111200pt;}
.yd{bottom:912.000000pt;}
.yc4{bottom:915.666667pt;}
.y16{bottom:916.888800pt;}
.y9f{bottom:918.000000pt;}
.yae{bottom:920.000000pt;}
.y53{bottom:923.446000pt;}
.y66{bottom:924.000000pt;}
.y22{bottom:928.000000pt;}
.y6c{bottom:936.666667pt;}
.yc3{bottom:953.000000pt;}
.y15{bottom:962.222133pt;}
.yc{bottom:965.333333pt;}
.y52{bottom:968.779333pt;}
.y65{bottom:969.333333pt;}
.y21{bottom:973.333333pt;}
.yc2{bottom:990.333333pt;}
.y14{bottom:1007.555467pt;}
.y9e{bottom:1008.666667pt;}
.yad{bottom:1010.666667pt;}
.y51{bottom:1014.112667pt;}
.y64{bottom:1014.666667pt;}
.yb{bottom:1018.666667pt;}
.yc1{bottom:1027.666667pt;}
.y34{bottom:1032.295200pt;}
.y13{bottom:1052.888800pt;}
.y6b{bottom:1064.888800pt;}
.y12{bottom:1098.222133pt;}
.y20{bottom:1099.495067pt;}
.yc0{bottom:1100.371200pt;}
.y6a{bottom:1110.222133pt;}
.y3{bottom:1123.910000pt;}
.y2{bottom:1239.110000pt;}
.y11{bottom:1260.086800pt;}
.ybf{bottom:1260.962933pt;}
.y69{bottom:1290.606133pt;}
.y1{bottom:1296.710000pt;}
.hb{height:54.528000pt;}
.h16{height:79.141333pt;}
.h13{height:83.306667pt;}
.h5{height:116.032000pt;}
.h8{height:116.629333pt;}
.h11{height:119.466667pt;}
.hd{height:120.064000pt;}
.ha{height:122.752000pt;}
.h7{height:123.349333pt;}
.hc{height:130.560000pt;}
.he{height:133.290667pt;}
.h10{height:137.216000pt;}
.h14{height:140.970667pt;}
.h1{height:146.880000pt;}
.h15{height:162.944000pt;}
.hf{height:171.360000pt;}
.h12{height:189.973333pt;}
.h9{height:208.096000pt;}
.h2{height:237.120000pt;}
.h6{height:356.736000pt;}
.h4{height:1238.666667pt;}
.h0{height:1440.000000pt;}
.h3{height:1585.493333pt;}
.w0{width:2560.000000pt;}
.x0{left:0.000000pt;}
.x1{left:106.666667pt;}
.xb{left:109.000000pt;}
.x15{left:112.666533pt;}
.xd{left:130.666667pt;}
.x22{left:163.904267pt;}
.x21{left:168.757467pt;}
.x1d{left:179.807600pt;}
.x20{left:193.546400pt;}
.x1e{left:198.026133pt;}
.x1f{left:228.620400pt;}
.x1c{left:242.135067pt;}
.x16{left:447.714133pt;}
.xe{left:587.916400pt;}
.x12{left:601.292267pt;}
.x17{left:782.761733pt;}
.x18{left:1117.809200pt;}
.x10{left:1288.000000pt;}
.x11{left:1312.000133pt;}
.xa{left:1323.155600pt;}
.x14{left:1403.259067pt;}
.x23{left:1419.666667pt;}
.x19{left:1452.856933pt;}
.xc{left:1567.333333pt;}
.x13{left:1741.239600pt;}
.xf{left:1781.280933pt;}
.x1a{left:1787.904667pt;}
.x7{left:1799.709333pt;}
.x9{left:1907.790000pt;}
.x8{left:1928.659067pt;}
.x6{left:2011.571600pt;}
.x3{left:2052.106267pt;}
.x1b{left:2122.952133pt;}
.x5{left:2264.615867pt;}
.x2{left:2266.984667pt;}
.x4{left:2420.995067pt;}
}

