
    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_7bc769808d303af60bff9843.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_ab7c11b5ec322d6d2d29d0d5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_5717032f8ffc81c9735fb2c5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_675551d578866058be8a23b3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_999d7e9adb996d2075b2cfe7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_63fed4ed1f034b17e527429e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-73.560000px;}
.v1{vertical-align:-72.000000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-1.440000px;}
.ls18{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.486600px;}
.ls6{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.152400px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls14{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.190080px;}
.ls0{letter-spacing:0.452160px;}
.ls2{letter-spacing:0.466560px;}
.lsa{letter-spacing:0.486720px;}
.lsf{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.596160px;}
.ls5{letter-spacing:0.720000px;}
.lsb{letter-spacing:1.152000px;}
.ls8{letter-spacing:1.419840px;}
.ls11{letter-spacing:2.160000px;}
.ls15{letter-spacing:5.040000px;}
.ls12{letter-spacing:10.980000px;}
.ls13{letter-spacing:22.320000px;}
.ls10{letter-spacing:43.920000px;}
.lsd{letter-spacing:152.064000px;}
.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:-20.880000px;}
.ws4{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.712000px;}
.ws2{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.407600px;}
.ws6{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.633400px;}
.ws5{word-spacing:-14.400000px;}
.ws0{word-spacing:-12.600000px;}
.ws9{word-spacing:-12.070080px;}
.ws7{word-spacing:-11.880000px;}
.ws8{word-spacing:0.000000px;}
._2a{margin-left:-9.502080px;}
._29{margin-left:-4.824000px;}
._0{margin-left:-3.009600px;}
._2{margin-left:-1.368000px;}
._1{width:1.203840px;}
._3{width:2.950080px;}
._6{width:4.563840px;}
._5{width:5.866560px;}
._4{width:7.007040px;}
._c{width:8.438400px;}
._a{width:10.301760px;}
._b{width:11.468160px;}
._19{width:13.057920px;}
._22{width:14.088960px;}
._12{width:15.140160px;}
._7{width:16.502400px;}
._9{width:17.576640px;}
._8{width:18.944640px;}
._d{width:20.136000px;}
._10{width:22.052160px;}
._11{width:23.161920px;}
._15{width:24.961920px;}
._1b{width:26.045760px;}
._1a{width:27.063360px;}
._33{width:28.067520px;}
._17{width:29.160000px;}
._18{width:30.221760px;}
._1f{width:31.308480px;}
._2b{width:32.507520px;}
._25{width:33.618240px;}
._26{width:34.761600px;}
._27{width:35.921280px;}
._36{width:37.159680px;}
._e{width:38.180160px;}
._f{width:39.694080px;}
._16{width:40.752000px;}
._28{width:42.632640px;}
._2e{width:44.020800px;}
._14{width:45.273600px;}
._13{width:46.440000px;}
._24{width:48.128640px;}
._23{width:49.273920px;}
._20{width:50.734080px;}
._21{width:52.030080px;}
._32{width:54.757440px;}
._31{width:55.820160px;}
._2c{width:63.144000px;}
._2d{width:64.251840px;}
._1d{width:71.036160px;}
._1c{width:72.459840px;}
._1e{width:74.185920px;}
._30{width:76.752000px;}
._2f{width:78.048000px;}
._35{width:80.064000px;}
._38{width:321.944160px;}
._34{width:375.975360px;}
._39{width:846.456000px;}
._37{width:1508.060160px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs7{font-size:38.880000px;}
.fs1{font-size:47.520000px;}
.fs0{font-size:54.720000px;}
.fs5{font-size:57.600000px;}
.fs6{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:3.600000px;}
.y135{bottom:42.120000px;}
.y2c{bottom:49.356000px;}
.y136{bottom:49.716000px;}
.y3{bottom:55.836000px;}
.y2{bottom:69.876000px;}
.y7c{bottom:97.956000px;}
.ybe{bottom:103.356000px;}
.y6e{bottom:106.236000px;}
.yaf{bottom:108.756000px;}
.ycb{bottom:112.356000px;}
.y7b{bottom:115.236000px;}
.y27{bottom:115.596000px;}
.y4d{bottom:116.676000px;}
.y7a{bottom:120.636000px;}
.y6d{bottom:127.116000px;}
.yca{bottom:129.636000px;}
.y79{bottom:132.516000px;}
.y26{bottom:132.876000px;}
.y12b{bottom:133.956000px;}
.y4c{bottom:137.232000px;}
.ybd{bottom:137.952000px;}
.yc9{bottom:146.952000px;}
.y6c{bottom:147.672000px;}
.ybc{bottom:149.832000px;}
.y25{bottom:150.195000px;}
.yae{bottom:151.275000px;}
.yf0{bottom:152.355000px;}
.y94{bottom:154.515000px;}
.y4b{bottom:158.115000px;}
.yc8{bottom:164.235000px;}
.y121{bottom:164.955000px;}
.ye8{bottom:167.115000px;}
.y24{bottom:167.475000px;}
.y6b{bottom:168.555000px;}
.yad{bottom:171.795000px;}
.y93{bottom:175.395000px;}
.y4a{bottom:178.635000px;}
.yc7{bottom:181.155000px;}
.ye7{bottom:184.035000px;}
.y23{bottom:184.755000px;}
.y115{bottom:185.835000px;}
.y6a{bottom:189.075000px;}
.ye6{bottom:189.435000px;}
.yac{bottom:192.675000px;}
.y92{bottom:195.915000px;}
.yc6{bottom:198.435000px;}
.y49{bottom:199.515000px;}
.ye5{bottom:201.315000px;}
.y22{bottom:202.035000px;}
.y114{bottom:206.355000px;}
.y69{bottom:209.955000px;}
.yab{bottom:213.195000px;}
.yc5{bottom:215.715000px;}
.y91{bottom:216.795000px;}
.y21{bottom:219.315000px;}
.y48{bottom:220.035000px;}
.ye4{bottom:223.635000px;}
.y113{bottom:227.265000px;}
.y68{bottom:230.505000px;}
.yc4{bottom:233.025000px;}
.yaa{bottom:234.105000px;}
.y20{bottom:236.625000px;}
.y90{bottom:237.345000px;}
.y47{bottom:240.945000px;}
.ye3{bottom:244.185000px;}
.y112{bottom:247.785000px;}
.yc3{bottom:250.305000px;}
.y67{bottom:251.385000px;}
.y1f{bottom:253.905000px;}
.y10e{bottom:254.265000px;}
.ya9{bottom:254.625000px;}
.y8f{bottom:258.225000px;}
.y46{bottom:261.465000px;}
.ye2{bottom:265.065000px;}
.yc2{bottom:267.585000px;}
.y111{bottom:268.665000px;}
.y1e{bottom:271.185000px;}
.y66{bottom:271.905000px;}
.ya8{bottom:275.505000px;}
.y8e{bottom:278.745000px;}
.y45{bottom:282.345000px;}
.yc1{bottom:284.865000px;}
.ye1{bottom:285.585000px;}
.y1d{bottom:288.465000px;}
.y102{bottom:289.185000px;}
.y65{bottom:292.785000px;}
.yef{bottom:295.305000px;}
.ya7{bottom:296.025000px;}
.y8d{bottom:298.545000px;}
.yb8{bottom:299.625000px;}
.yc0{bottom:302.145000px;}
.y44{bottom:302.865000px;}
.y1c{bottom:305.385000px;}
.ye0{bottom:306.465000px;}
.y101{bottom:310.065000px;}
.yed{bottom:312.585000px;}
.y64{bottom:313.305000px;}
.y8b{bottom:315.870000px;}
.ya6{bottom:316.950000px;}
.yee{bottom:318.030000px;}
.ybf{bottom:319.470000px;}
.yb7{bottom:320.190000px;}
.y8c{bottom:321.270000px;}
.y1b{bottom:322.710000px;}
.y43{bottom:323.790000px;}
.ydf{bottom:327.030000px;}
.yec{bottom:329.910000px;}
.y100{bottom:330.630000px;}
.y8a{bottom:333.150000px;}
.y133{bottom:333.870000px;}
.y63{bottom:334.230000px;}
.ya5{bottom:337.470000px;}
.y1a{bottom:339.990000px;}
.yb6{bottom:341.070000px;}
.y42{bottom:344.310000px;}
.yeb{bottom:346.830000px;}
.yde{bottom:347.910000px;}
.y89{bottom:350.430000px;}
.yff{bottom:351.510000px;}
.y132{bottom:354.390000px;}
.y62{bottom:354.750000px;}
.y19{bottom:357.270000px;}
.ya4{bottom:358.350000px;}
.yb5{bottom:361.590000px;}
.yea{bottom:364.110000px;}
.y41{bottom:365.190000px;}
.y88{bottom:367.710000px;}
.ydd{bottom:368.430000px;}
.yfe{bottom:372.030000px;}
.y18{bottom:374.550000px;}
.y61{bottom:375.630000px;}
.ya3{bottom:378.150000px;}
.y10d{bottom:378.870000px;}
.ye9{bottom:381.390000px;}
.yb4{bottom:382.470000px;}
.y87{bottom:384.990000px;}
.y40{bottom:385.710000px;}
.ydc{bottom:389.310000px;}
.y17{bottom:391.830000px;}
.yfd{bottom:392.910000px;}
.ya1{bottom:395.430000px;}
.y60{bottom:396.150000px;}
.y10c{bottom:399.750000px;}
.ya2{bottom:400.830000px;}
.y86{bottom:402.270000px;}
.yb3{bottom:402.990000px;}
.y3f{bottom:406.620000px;}
.y16{bottom:409.140000px;}
.ydb{bottom:409.860000px;}
.ya0{bottom:412.740000px;}
.yfc{bottom:413.460000px;}
.y110{bottom:414.540000px;}
.y5f{bottom:417.060000px;}
.y10b{bottom:420.300000px;}
.y96{bottom:423.900000px;}
.y15{bottom:426.420000px;}
.y3e{bottom:427.140000px;}
.y9f{bottom:429.660000px;}
.yda{bottom:430.740000px;}
.yfb{bottom:433.980000px;}
.y5e{bottom:437.580000px;}
.y10a{bottom:441.180000px;}
.y14{bottom:443.700000px;}
.yb2{bottom:444.420000px;}
.y9e{bottom:446.940000px;}
.y3d{bottom:448.020000px;}
.yd9{bottom:451.260000px;}
.yfa{bottom:454.860000px;}
.y5d{bottom:458.460000px;}
.y13{bottom:460.980000px;}
.y109{bottom:461.700000px;}
.y9d{bottom:464.220000px;}
.y12a{bottom:465.300000px;}
.y3c{bottom:468.540000px;}
.yb1{bottom:469.620000px;}
.yd8{bottom:472.140000px;}
.y120{bottom:474.660000px;}
.yf9{bottom:475.380000px;}
.y12{bottom:478.260000px;}
.y5c{bottom:478.980000px;}
.y9c{bottom:481.500000px;}
.y108{bottom:482.580000px;}
.y129{bottom:485.820000px;}
.y3b{bottom:489.420000px;}
.y11e{bottom:491.940000px;}
.yd7{bottom:492.660000px;}
.y11{bottom:494.850000px;}
.y10f{bottom:495.210000px;}
.yf8{bottom:496.290000px;}
.y11f{bottom:497.370000px;}
.y9b{bottom:498.810000px;}
.y95{bottom:499.530000px;}
.y5b{bottom:499.890000px;}
.y107{bottom:503.130000px;}
.y128{bottom:506.730000px;}
.y11d{bottom:509.250000px;}
.y3a{bottom:509.970000px;}
.y10{bottom:512.490000px;}
.yd6{bottom:513.570000px;}
.y9a{bottom:516.090000px;}
.yf7{bottom:516.810000px;}
.y5a{bottom:520.410000px;}
.y106{bottom:524.010000px;}
.y11c{bottom:526.530000px;}
.y127{bottom:527.250000px;}
.yf{bottom:529.770000px;}
.y39{bottom:530.850000px;}
.y99{bottom:533.370000px;}
.yd5{bottom:534.090000px;}
.yf6{bottom:537.690000px;}
.y131{bottom:540.210000px;}
.y59{bottom:541.290000px;}
.y11b{bottom:543.810000px;}
.y105{bottom:544.530000px;}
.ye{bottom:547.050000px;}
.ybb{bottom:548.130000px;}
.y98{bottom:550.650000px;}
.y38{bottom:551.370000px;}
.yd4{bottom:554.970000px;}
.y12f{bottom:557.490000px;}
.yf5{bottom:558.210000px;}
.y11a{bottom:561.090000px;}
.y58{bottom:561.810000px;}
.y130{bottom:562.890000px;}
.y125{bottom:564.330000px;}
.yd{bottom:565.410000px;}
.y97{bottom:567.930000px;}
.y126{bottom:569.730000px;}
.y85{bottom:571.170000px;}
.y37{bottom:572.250000px;}
.y12e{bottom:574.770000px;}
.yd3{bottom:575.490000px;}
.y119{bottom:578.010000px;}
.yf4{bottom:579.090000px;}
.y124{bottom:581.610000px;}
.y57{bottom:582.690000px;}
.yc{bottom:585.975000px;}
.y83{bottom:588.495000px;}
.y12d{bottom:592.095000px;}
.y36{bottom:592.815000px;}
.y84{bottom:593.895000px;}
.y118{bottom:595.335000px;}
.yd2{bottom:596.415000px;}
.y123{bottom:598.935000px;}
.yf3{bottom:599.655000px;}
.y56{bottom:603.255000px;}
.y82{bottom:605.775000px;}
.yb{bottom:606.855000px;}
.y12c{bottom:609.375000px;}
.y117{bottom:612.615000px;}
.y35{bottom:613.695000px;}
.y122{bottom:616.215000px;}
.yd1{bottom:616.935000px;}
.yf2{bottom:620.535000px;}
.y81{bottom:623.055000px;}
.y71{bottom:623.775000px;}
.y55{bottom:624.135000px;}
.ya{bottom:627.375000px;}
.y116{bottom:629.895000px;}
.y78{bottom:633.495000px;}
.y34{bottom:634.215000px;}
.yd0{bottom:637.815000px;}
.y80{bottom:640.335000px;}
.y70{bottom:644.295000px;}
.y54{bottom:644.655000px;}
.y9{bottom:647.895000px;}
.y104{bottom:648.255000px;}
.y76{bottom:650.775000px;}
.y33{bottom:655.095000px;}
.y77{bottom:656.175000px;}
.y7f{bottom:657.615000px;}
.ycf{bottom:658.335000px;}
.yf1{bottom:663.015000px;}
.y6f{bottom:665.175000px;}
.y53{bottom:665.535000px;}
.y75{bottom:668.055000px;}
.y8{bottom:669.495000px;}
.y7e{bottom:674.925000px;}
.y32{bottom:675.285000px;}
.yce{bottom:679.245000px;}
.y74{bottom:685.365000px;}
.y52{bottom:686.085000px;}
.y103{bottom:690.765000px;}
.y7d{bottom:692.205000px;}
.y7{bottom:693.645000px;}
.y31{bottom:696.165000px;}
.ycd{bottom:699.765000px;}
.y73{bottom:702.285000px;}
.y51{bottom:706.965000px;}
.yb0{bottom:707.685000px;}
.y30{bottom:717.045000px;}
.y6{bottom:717.405000px;}
.y72{bottom:719.565000px;}
.y50{bottom:727.485000px;}
.y2f{bottom:736.845000px;}
.y5{bottom:741.525000px;}
.ycc{bottom:742.245000px;}
.yba{bottom:748.005000px;}
.y4f{bottom:748.365000px;}
.y2e{bottom:754.125000px;}
.y4{bottom:765.690000px;}
.yb9{bottom:768.570000px;}
.y4e{bottom:768.930000px;}
.y2d{bottom:771.450000px;}
.y134{bottom:806.370000px;}
.y29{bottom:808.890000px;}
.y2a{bottom:822.570000px;}
.y28{bottom:826.170000px;}
.y1{bottom:827.610000px;}
.ha{height:17.280000px;}
.hc{height:38.158594px;}
.h3{height:46.638281px;}
.h2{height:53.704687px;}
.he{height:54.219375px;}
.h12{height:56.880000px;}
.h11{height:56.916000px;}
.h8{height:59.357813px;}
.h9{height:60.952500px;}
.hd{height:64.546875px;}
.h10{height:65.010937px;}
.hb{height:70.628906px;}
.h7{height:70.664062px;}
.h6{height:72.562500px;}
.hf{height:74.004654px;}
.h5{height:81.929531px;}
.h4{height:84.172500px;}
.h0{height:893.160000px;}
.h1{height:893.250000px;}
.w4{width:6.840000px;}
.w5{width:14.760000px;}
.w3{width:15.120000px;}
.w7{width:520.485000px;}
.w1{width:629.250000px;}
.w6{width:629.279981px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x3a{left:10.800000px;}
.x39{left:62.676000px;}
.xd{left:72.395991px;}
.x15{left:77.435991px;}
.x27{left:82.475991px;}
.x7{left:90.035991px;}
.x4{left:99.071991px;}
.xc{left:100.151991px;}
.x11{left:114.911991px;}
.x29{left:148.391981px;}
.x25{left:149.831981px;}
.x18{left:150.914981px;}
.x2f{left:154.154981px;}
.x19{left:155.954991px;}
.xa{left:157.394991px;}
.x2a{left:158.474991px;}
.x26{left:159.914991px;}
.x30{left:164.234991px;}
.x2b{left:166.064981px;}
.xb{left:175.784991px;}
.x2c{left:178.304991px;}
.x24{left:182.624991px;}
.x2{left:192.344991px;}
.x9{left:206.744991px;}
.x1e{left:216.104981px;}
.x1f{left:221.144991px;}
.x5{left:265.829991px;}
.x1{left:283.829991px;}
.x14{left:288.509991px;}
.x8{left:299.699991px;}
.x12{left:302.579981px;}
.x13{left:307.619991px;}
.x6{left:316.979991px;}
.x2d{left:370.289981px;}
.xe{left:376.049991px;}
.x2e{left:380.369991px;}
.x33{left:404.129981px;}
.x3{left:407.009991px;}
.x34{left:414.209991px;}
.x20{left:424.649981px;}
.x16{left:426.809981px;}
.x21{left:429.689991px;}
.x17{left:431.894991px;}
.x1a{left:432.974981px;}
.x1b{left:439.094991px;}
.x37{left:445.574981px;}
.x38{left:455.654991px;}
.x31{left:473.294981px;}
.x35{left:481.574981px;}
.x32{left:483.374991px;}
.x36{left:491.654991px;}
.x22{left:520.124981px;}
.x23{left:526.244991px;}
.x28{left:539.924981px;}
.x10{left:546.765000px;}
.x1c{left:549.284981px;}
.x1d{left:554.324991px;}
.xf{left:561.884991px;}
@media print{
.v2{vertical-align:-65.386667pt;}
.v1{vertical-align:-64.000000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.280000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.432533pt;}
.ls6{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.135467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls14{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.168960pt;}
.ls0{letter-spacing:0.401920pt;}
.ls2{letter-spacing:0.414720pt;}
.lsa{letter-spacing:0.432640pt;}
.lsf{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.529920pt;}
.ls5{letter-spacing:0.640000pt;}
.lsb{letter-spacing:1.024000pt;}
.ls8{letter-spacing:1.262080pt;}
.ls11{letter-spacing:1.920000pt;}
.ls15{letter-spacing:4.480000pt;}
.ls12{letter-spacing:9.760000pt;}
.ls13{letter-spacing:19.840000pt;}
.ls10{letter-spacing:39.040000pt;}
.lsd{letter-spacing:135.168000pt;}
.ws1{word-spacing:-18.560000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.584533pt;}
.ws6{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.007467pt;}
.ws5{word-spacing:-12.800000pt;}
.ws0{word-spacing:-11.200000pt;}
.ws9{word-spacing:-10.728960pt;}
.ws7{word-spacing:-10.560000pt;}
.ws8{word-spacing:0.000000pt;}
._2a{margin-left:-8.446293pt;}
._29{margin-left:-4.288000pt;}
._0{margin-left:-2.675200pt;}
._2{margin-left:-1.216000pt;}
._1{width:1.070080pt;}
._3{width:2.622293pt;}
._6{width:4.056747pt;}
._5{width:5.214720pt;}
._4{width:6.228480pt;}
._c{width:7.500800pt;}
._a{width:9.157120pt;}
._b{width:10.193920pt;}
._19{width:11.607040pt;}
._22{width:12.523520pt;}
._12{width:13.457920pt;}
._7{width:14.668800pt;}
._9{width:15.623680pt;}
._8{width:16.839680pt;}
._d{width:17.898667pt;}
._10{width:19.601920pt;}
._11{width:20.588373pt;}
._15{width:22.188373pt;}
._1b{width:23.151787pt;}
._1a{width:24.056320pt;}
._33{width:24.948907pt;}
._17{width:25.920000pt;}
._18{width:26.863787pt;}
._1f{width:27.829760pt;}
._2b{width:28.895573pt;}
._25{width:29.882880pt;}
._26{width:30.899200pt;}
._27{width:31.930027pt;}
._36{width:33.030827pt;}
._e{width:33.937920pt;}
._f{width:35.283627pt;}
._16{width:36.224000pt;}
._28{width:37.895680pt;}
._2e{width:39.129600pt;}
._14{width:40.243200pt;}
._13{width:41.280000pt;}
._24{width:42.781013pt;}
._23{width:43.799040pt;}
._20{width:45.096960pt;}
._21{width:46.248960pt;}
._32{width:48.673280pt;}
._31{width:49.617920pt;}
._2c{width:56.128000pt;}
._2d{width:57.112747pt;}
._1d{width:63.143253pt;}
._1c{width:64.408747pt;}
._1e{width:65.943040pt;}
._30{width:68.224000pt;}
._2f{width:69.376000pt;}
._35{width:71.168000pt;}
._38{width:286.172587pt;}
._34{width:334.200320pt;}
._39{width:752.405333pt;}
._37{width:1340.497920pt;}
.fs7{font-size:34.560000pt;}
.fs1{font-size:42.240000pt;}
.fs0{font-size:48.640000pt;}
.fs5{font-size:51.200000pt;}
.fs6{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:3.200000pt;}
.y135{bottom:37.440000pt;}
.y2c{bottom:43.872000pt;}
.y136{bottom:44.192000pt;}
.y3{bottom:49.632000pt;}
.y2{bottom:62.112000pt;}
.y7c{bottom:87.072000pt;}
.ybe{bottom:91.872000pt;}
.y6e{bottom:94.432000pt;}
.yaf{bottom:96.672000pt;}
.ycb{bottom:99.872000pt;}
.y7b{bottom:102.432000pt;}
.y27{bottom:102.752000pt;}
.y4d{bottom:103.712000pt;}
.y7a{bottom:107.232000pt;}
.y6d{bottom:112.992000pt;}
.yca{bottom:115.232000pt;}
.y79{bottom:117.792000pt;}
.y26{bottom:118.112000pt;}
.y12b{bottom:119.072000pt;}
.y4c{bottom:121.984000pt;}
.ybd{bottom:122.624000pt;}
.yc9{bottom:130.624000pt;}
.y6c{bottom:131.264000pt;}
.ybc{bottom:133.184000pt;}
.y25{bottom:133.506667pt;}
.yae{bottom:134.466667pt;}
.yf0{bottom:135.426667pt;}
.y94{bottom:137.346667pt;}
.y4b{bottom:140.546667pt;}
.yc8{bottom:145.986667pt;}
.y121{bottom:146.626667pt;}
.ye8{bottom:148.546667pt;}
.y24{bottom:148.866667pt;}
.y6b{bottom:149.826667pt;}
.yad{bottom:152.706667pt;}
.y93{bottom:155.906667pt;}
.y4a{bottom:158.786667pt;}
.yc7{bottom:161.026667pt;}
.ye7{bottom:163.586667pt;}
.y23{bottom:164.226667pt;}
.y115{bottom:165.186667pt;}
.y6a{bottom:168.066667pt;}
.ye6{bottom:168.386667pt;}
.yac{bottom:171.266667pt;}
.y92{bottom:174.146667pt;}
.yc6{bottom:176.386667pt;}
.y49{bottom:177.346667pt;}
.ye5{bottom:178.946667pt;}
.y22{bottom:179.586667pt;}
.y114{bottom:183.426667pt;}
.y69{bottom:186.626667pt;}
.yab{bottom:189.506667pt;}
.yc5{bottom:191.746667pt;}
.y91{bottom:192.706667pt;}
.y21{bottom:194.946667pt;}
.y48{bottom:195.586667pt;}
.ye4{bottom:198.786667pt;}
.y113{bottom:202.013333pt;}
.y68{bottom:204.893333pt;}
.yc4{bottom:207.133333pt;}
.yaa{bottom:208.093333pt;}
.y20{bottom:210.333333pt;}
.y90{bottom:210.973333pt;}
.y47{bottom:214.173333pt;}
.ye3{bottom:217.053333pt;}
.y112{bottom:220.253333pt;}
.yc3{bottom:222.493333pt;}
.y67{bottom:223.453333pt;}
.y1f{bottom:225.693333pt;}
.y10e{bottom:226.013333pt;}
.ya9{bottom:226.333333pt;}
.y8f{bottom:229.533333pt;}
.y46{bottom:232.413333pt;}
.ye2{bottom:235.613333pt;}
.yc2{bottom:237.853333pt;}
.y111{bottom:238.813333pt;}
.y1e{bottom:241.053333pt;}
.y66{bottom:241.693333pt;}
.ya8{bottom:244.893333pt;}
.y8e{bottom:247.773333pt;}
.y45{bottom:250.973333pt;}
.yc1{bottom:253.213333pt;}
.ye1{bottom:253.853333pt;}
.y1d{bottom:256.413333pt;}
.y102{bottom:257.053333pt;}
.y65{bottom:260.253333pt;}
.yef{bottom:262.493333pt;}
.ya7{bottom:263.133333pt;}
.y8d{bottom:265.373333pt;}
.yb8{bottom:266.333333pt;}
.yc0{bottom:268.573333pt;}
.y44{bottom:269.213333pt;}
.y1c{bottom:271.453333pt;}
.ye0{bottom:272.413333pt;}
.y101{bottom:275.613333pt;}
.yed{bottom:277.853333pt;}
.y64{bottom:278.493333pt;}
.y8b{bottom:280.773333pt;}
.ya6{bottom:281.733333pt;}
.yee{bottom:282.693333pt;}
.ybf{bottom:283.973333pt;}
.yb7{bottom:284.613333pt;}
.y8c{bottom:285.573333pt;}
.y1b{bottom:286.853333pt;}
.y43{bottom:287.813333pt;}
.ydf{bottom:290.693333pt;}
.yec{bottom:293.253333pt;}
.y100{bottom:293.893333pt;}
.y8a{bottom:296.133333pt;}
.y133{bottom:296.773333pt;}
.y63{bottom:297.093333pt;}
.ya5{bottom:299.973333pt;}
.y1a{bottom:302.213333pt;}
.yb6{bottom:303.173333pt;}
.y42{bottom:306.053333pt;}
.yeb{bottom:308.293333pt;}
.yde{bottom:309.253333pt;}
.y89{bottom:311.493333pt;}
.yff{bottom:312.453333pt;}
.y132{bottom:315.013333pt;}
.y62{bottom:315.333333pt;}
.y19{bottom:317.573333pt;}
.ya4{bottom:318.533333pt;}
.yb5{bottom:321.413333pt;}
.yea{bottom:323.653333pt;}
.y41{bottom:324.613333pt;}
.y88{bottom:326.853333pt;}
.ydd{bottom:327.493333pt;}
.yfe{bottom:330.693333pt;}
.y18{bottom:332.933333pt;}
.y61{bottom:333.893333pt;}
.ya3{bottom:336.133333pt;}
.y10d{bottom:336.773333pt;}
.ye9{bottom:339.013333pt;}
.yb4{bottom:339.973333pt;}
.y87{bottom:342.213333pt;}
.y40{bottom:342.853333pt;}
.ydc{bottom:346.053333pt;}
.y17{bottom:348.293333pt;}
.yfd{bottom:349.253333pt;}
.ya1{bottom:351.493333pt;}
.y60{bottom:352.133333pt;}
.y10c{bottom:355.333333pt;}
.ya2{bottom:356.293333pt;}
.y86{bottom:357.573333pt;}
.yb3{bottom:358.213333pt;}
.y3f{bottom:361.440000pt;}
.y16{bottom:363.680000pt;}
.ydb{bottom:364.320000pt;}
.ya0{bottom:366.880000pt;}
.yfc{bottom:367.520000pt;}
.y110{bottom:368.480000pt;}
.y5f{bottom:370.720000pt;}
.y10b{bottom:373.600000pt;}
.y96{bottom:376.800000pt;}
.y15{bottom:379.040000pt;}
.y3e{bottom:379.680000pt;}
.y9f{bottom:381.920000pt;}
.yda{bottom:382.880000pt;}
.yfb{bottom:385.760000pt;}
.y5e{bottom:388.960000pt;}
.y10a{bottom:392.160000pt;}
.y14{bottom:394.400000pt;}
.yb2{bottom:395.040000pt;}
.y9e{bottom:397.280000pt;}
.y3d{bottom:398.240000pt;}
.yd9{bottom:401.120000pt;}
.yfa{bottom:404.320000pt;}
.y5d{bottom:407.520000pt;}
.y13{bottom:409.760000pt;}
.y109{bottom:410.400000pt;}
.y9d{bottom:412.640000pt;}
.y12a{bottom:413.600000pt;}
.y3c{bottom:416.480000pt;}
.yb1{bottom:417.440000pt;}
.yd8{bottom:419.680000pt;}
.y120{bottom:421.920000pt;}
.yf9{bottom:422.560000pt;}
.y12{bottom:425.120000pt;}
.y5c{bottom:425.760000pt;}
.y9c{bottom:428.000000pt;}
.y108{bottom:428.960000pt;}
.y129{bottom:431.840000pt;}
.y3b{bottom:435.040000pt;}
.y11e{bottom:437.280000pt;}
.yd7{bottom:437.920000pt;}
.y11{bottom:439.866667pt;}
.y10f{bottom:440.186667pt;}
.yf8{bottom:441.146667pt;}
.y11f{bottom:442.106667pt;}
.y9b{bottom:443.386667pt;}
.y95{bottom:444.026667pt;}
.y5b{bottom:444.346667pt;}
.y107{bottom:447.226667pt;}
.y128{bottom:450.426667pt;}
.y11d{bottom:452.666667pt;}
.y3a{bottom:453.306667pt;}
.y10{bottom:455.546667pt;}
.yd6{bottom:456.506667pt;}
.y9a{bottom:458.746667pt;}
.yf7{bottom:459.386667pt;}
.y5a{bottom:462.586667pt;}
.y106{bottom:465.786667pt;}
.y11c{bottom:468.026667pt;}
.y127{bottom:468.666667pt;}
.yf{bottom:470.906667pt;}
.y39{bottom:471.866667pt;}
.y99{bottom:474.106667pt;}
.yd5{bottom:474.746667pt;}
.yf6{bottom:477.946667pt;}
.y131{bottom:480.186667pt;}
.y59{bottom:481.146667pt;}
.y11b{bottom:483.386667pt;}
.y105{bottom:484.026667pt;}
.ye{bottom:486.266667pt;}
.ybb{bottom:487.226667pt;}
.y98{bottom:489.466667pt;}
.y38{bottom:490.106667pt;}
.yd4{bottom:493.306667pt;}
.y12f{bottom:495.546667pt;}
.yf5{bottom:496.186667pt;}
.y11a{bottom:498.746667pt;}
.y58{bottom:499.386667pt;}
.y130{bottom:500.346667pt;}
.y125{bottom:501.626667pt;}
.yd{bottom:502.586667pt;}
.y97{bottom:504.826667pt;}
.y126{bottom:506.426667pt;}
.y85{bottom:507.706667pt;}
.y37{bottom:508.666667pt;}
.y12e{bottom:510.906667pt;}
.yd3{bottom:511.546667pt;}
.y119{bottom:513.786667pt;}
.yf4{bottom:514.746667pt;}
.y124{bottom:516.986667pt;}
.y57{bottom:517.946667pt;}
.yc{bottom:520.866667pt;}
.y83{bottom:523.106667pt;}
.y12d{bottom:526.306667pt;}
.y36{bottom:526.946667pt;}
.y84{bottom:527.906667pt;}
.y118{bottom:529.186667pt;}
.yd2{bottom:530.146667pt;}
.y123{bottom:532.386667pt;}
.yf3{bottom:533.026667pt;}
.y56{bottom:536.226667pt;}
.y82{bottom:538.466667pt;}
.yb{bottom:539.426667pt;}
.y12c{bottom:541.666667pt;}
.y117{bottom:544.546667pt;}
.y35{bottom:545.506667pt;}
.y122{bottom:547.746667pt;}
.yd1{bottom:548.386667pt;}
.yf2{bottom:551.586667pt;}
.y81{bottom:553.826667pt;}
.y71{bottom:554.466667pt;}
.y55{bottom:554.786667pt;}
.ya{bottom:557.666667pt;}
.y116{bottom:559.906667pt;}
.y78{bottom:563.106667pt;}
.y34{bottom:563.746667pt;}
.yd0{bottom:566.946667pt;}
.y80{bottom:569.186667pt;}
.y70{bottom:572.706667pt;}
.y54{bottom:573.026667pt;}
.y9{bottom:575.906667pt;}
.y104{bottom:576.226667pt;}
.y76{bottom:578.466667pt;}
.y33{bottom:582.306667pt;}
.y77{bottom:583.266667pt;}
.y7f{bottom:584.546667pt;}
.ycf{bottom:585.186667pt;}
.yf1{bottom:589.346667pt;}
.y6f{bottom:591.266667pt;}
.y53{bottom:591.586667pt;}
.y75{bottom:593.826667pt;}
.y8{bottom:595.106667pt;}
.y7e{bottom:599.933333pt;}
.y32{bottom:600.253333pt;}
.yce{bottom:603.773333pt;}
.y74{bottom:609.213333pt;}
.y52{bottom:609.853333pt;}
.y103{bottom:614.013333pt;}
.y7d{bottom:615.293333pt;}
.y7{bottom:616.573333pt;}
.y31{bottom:618.813333pt;}
.ycd{bottom:622.013333pt;}
.y73{bottom:624.253333pt;}
.y51{bottom:628.413333pt;}
.yb0{bottom:629.053333pt;}
.y30{bottom:637.373333pt;}
.y6{bottom:637.693333pt;}
.y72{bottom:639.613333pt;}
.y50{bottom:646.653333pt;}
.y2f{bottom:654.973333pt;}
.y5{bottom:659.133333pt;}
.ycc{bottom:659.773333pt;}
.yba{bottom:664.893333pt;}
.y4f{bottom:665.213333pt;}
.y2e{bottom:670.333333pt;}
.y4{bottom:680.613333pt;}
.yb9{bottom:683.173333pt;}
.y4e{bottom:683.493333pt;}
.y2d{bottom:685.733333pt;}
.y134{bottom:716.773333pt;}
.y29{bottom:719.013333pt;}
.y2a{bottom:731.173333pt;}
.y28{bottom:734.373333pt;}
.y1{bottom:735.653333pt;}
.ha{height:15.360000pt;}
.hc{height:33.918750pt;}
.h3{height:41.456250pt;}
.h2{height:47.737500pt;}
.he{height:48.195000pt;}
.h12{height:50.560000pt;}
.h11{height:50.592000pt;}
.h8{height:52.762500pt;}
.h9{height:54.180000pt;}
.hd{height:57.375000pt;}
.h10{height:57.787500pt;}
.hb{height:62.781250pt;}
.h7{height:62.812500pt;}
.h6{height:64.500000pt;}
.hf{height:65.781915pt;}
.h5{height:72.826250pt;}
.h4{height:74.820000pt;}
.h0{height:793.920000pt;}
.h1{height:794.000000pt;}
.w4{width:6.080000pt;}
.w5{width:13.120000pt;}
.w3{width:13.440000pt;}
.w7{width:462.653333pt;}
.w1{width:559.333333pt;}
.w6{width:559.359983pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x3a{left:9.600000pt;}
.x39{left:55.712000pt;}
.xd{left:64.351992pt;}
.x15{left:68.831992pt;}
.x27{left:73.311992pt;}
.x7{left:80.031992pt;}
.x4{left:88.063992pt;}
.xc{left:89.023992pt;}
.x11{left:102.143992pt;}
.x29{left:131.903983pt;}
.x25{left:133.183983pt;}
.x18{left:134.146650pt;}
.x2f{left:137.026650pt;}
.x19{left:138.626658pt;}
.xa{left:139.906658pt;}
.x2a{left:140.866658pt;}
.x26{left:142.146658pt;}
.x30{left:145.986658pt;}
.x2b{left:147.613317pt;}
.xb{left:156.253325pt;}
.x2c{left:158.493325pt;}
.x24{left:162.333325pt;}
.x2{left:170.973325pt;}
.x9{left:183.773325pt;}
.x1e{left:192.093317pt;}
.x1f{left:196.573325pt;}
.x5{left:236.293325pt;}
.x1{left:252.293325pt;}
.x14{left:256.453325pt;}
.x8{left:266.399992pt;}
.x12{left:268.959983pt;}
.x13{left:273.439992pt;}
.x6{left:281.759992pt;}
.x2d{left:329.146650pt;}
.xe{left:334.266658pt;}
.x2e{left:338.106658pt;}
.x33{left:359.226650pt;}
.x3{left:361.786658pt;}
.x34{left:368.186658pt;}
.x20{left:377.466650pt;}
.x16{left:379.386650pt;}
.x21{left:381.946658pt;}
.x17{left:383.906658pt;}
.x1a{left:384.866650pt;}
.x1b{left:390.306658pt;}
.x37{left:396.066650pt;}
.x38{left:405.026658pt;}
.x31{left:420.706650pt;}
.x35{left:428.066650pt;}
.x32{left:429.666658pt;}
.x36{left:437.026658pt;}
.x22{left:462.333317pt;}
.x23{left:467.773325pt;}
.x28{left:479.933317pt;}
.x10{left:486.013333pt;}
.x1c{left:488.253317pt;}
.x1d{left:492.733325pt;}
.xf{left:499.453325pt;}
}

