
/* 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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #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("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_f7e51ed7171c.woff")format("woff");}.ff1{font-family:ff1;line-height:0.971191;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("fonts/font_0001_b1a359f78f99.woff")format("woff");}.ff2{font-family:ff2;line-height:0.965820;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("fonts/font_0002_1ab4b341a7a6.woff")format("woff");}.ff3{font-family:ff3;line-height:0.921387;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("fonts/font_0003_1dfdcc0b83b6.woff")format("woff");}.ff4{font-family:ff4;line-height:0.921387;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("fonts/font_0004_f3782a925b64.woff")format("woff");}.ff5{font-family:ff5;line-height:0.933594;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("fonts/font_0005_f86febf99c04.woff")format("woff");}.ff6{font-family:ff6;line-height:0.682617;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("fonts/font_0006_2881e35f02d4.woff")format("woff");}.ff7{font-family:ff7;line-height:0.933594;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("fonts/font_0007_ec2972787542.woff")format("woff");}.ff8{font-family:ff8;line-height:1.435059;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("fonts/font_0008_f683fa7281ab.woff")format("woff");}.ff9{font-family:ff9;line-height:0.747559;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("fonts/font_0009_efa0cad07185.woff")format("woff");}.ffa{font-family:ffa;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:ffb;src:url("fonts/font_0010_7193cdeef753.woff")format("woff");}.ffb{font-family:ffb;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:ffc;src:url("fonts/font_0011_23455c533511.woff")format("woff");}.ffc{font-family:ffc;line-height:0.914062;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("fonts/font_0012_3cd5b8243294.woff")format("woff");}.ffd{font-family:ffd;line-height:0.853027;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:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:24.600000px;}
.v1{vertical-align:27.360000px;}
.v4{vertical-align:52.560000px;}
.ls16{letter-spacing:-0.597600px;}
.ls19{letter-spacing:-0.460200px;}
.lsf{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.106800px;}
.ls17{letter-spacing:-0.100200px;}
.lsa{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.122400px;}
.lse{letter-spacing:0.126000px;}
.ls18{letter-spacing:0.153600px;}
.ls6{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.263400px;}
.ls12{letter-spacing:0.279360px;}
.lsd{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls8{letter-spacing:1.080000px;}
.ls15{letter-spacing:5.588640px;}
.ls11{letter-spacing:5.940000px;}
.ls10{letter-spacing:16.506720px;}
.ls2{letter-spacing:28.944000px;}
.lsc{letter-spacing:44.586720px;}
.ls9{letter-spacing:51.984000px;}
.ls4{letter-spacing:72.144000px;}
.ls5{letter-spacing:80.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;}
}
.ws5{word-spacing:-18.000000px;}
.ws7{word-spacing:-16.020000px;}
.ws9{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws13{word-spacing:-14.839800px;}
.ws14{word-spacing:-14.479800px;}
.wsb{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.626000px;}
.ws4{word-spacing:-13.518000px;}
.ws3{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.140000px;}
.ws1{word-spacing:-9.720000px;}
.ws2{word-spacing:-9.000000px;}
.ws11{word-spacing:-7.549800px;}
.wse{word-spacing:-7.408800px;}
.ws10{word-spacing:-7.286400px;}
.ws12{word-spacing:-6.688800px;}
.wsa{word-spacing:-0.059760px;}
.ws0{word-spacing:0.000000px;}
.wsf{word-spacing:10.802880px;}
._0{margin-left:-1447.886400px;}
._1{margin-left:-1.263600px;}
._2{width:1.195200px;}
._b{width:2.484000px;}
._9{width:4.388400px;}
._a{width:5.616000px;}
._8{width:7.560000px;}
._3{width:9.126000px;}
._4{width:10.318800px;}
._11{width:12.071520px;}
._c{width:13.446000px;}
._10{width:16.792560px;}
._7{width:18.252000px;}
._6{width:19.656000px;}
._13{width:21.453840px;}
._5{width:22.788000px;}
._d{width:24.143040px;}
._e{width:25.637040px;}
._f{width:26.772480px;}
._17{width:27.907920px;}
._12{width:36.573120px;}
._15{width:51.480000px;}
._16{width:194.700000px;}
._14{width:849.697680px;}
.fc4{color:transparent;}
.fc2{color:rgb(1,2,2);}
.fc1{color:rgb(95,95,96);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(81,81,81);}
.fsa{font-size:33.120000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:144.000000px;}
.yc0{bottom:-12.240000px;}
.y0{bottom:0.000000px;}
.yb3{bottom:2.880000px;}
.y87{bottom:3.240000px;}
.y8c{bottom:3.420000px;}
.yc{bottom:7.435500px;}
.yc8{bottom:18.360000px;}
.ycc{bottom:18.540000px;}
.yb4{bottom:18.720000px;}
.yc3{bottom:18.900000px;}
.yc7{bottom:34.020000px;}
.y4{bottom:103.398000px;}
.y3{bottom:117.798000px;}
.y2{bottom:132.198000px;}
.y5{bottom:146.041200px;}
.y63{bottom:223.230000px;}
.yad{bottom:227.550000px;}
.y62{bottom:227.730000px;}
.y61{bottom:238.170000px;}
.yeb{bottom:239.610000px;}
.y14f{bottom:241.410000px;}
.y60{bottom:242.670000px;}
.yac{bottom:244.830000px;}
.y36{bottom:246.810000px;}
.y106{bottom:247.530000px;}
.y5f{bottom:252.930000px;}
.y84{bottom:254.370000px;}
.y5e{bottom:257.430000px;}
.y14e{bottom:258.690000px;}
.yab{bottom:261.930000px;}
.y35{bottom:264.090000px;}
.y105{bottom:264.810000px;}
.y130{bottom:268.050000px;}
.yea{bottom:268.950000px;}
.y5d{bottom:269.310000px;}
.y12f{bottom:272.550000px;}
.y14d{bottom:275.970000px;}
.yaa{bottom:279.210000px;}
.y34{bottom:281.370000px;}
.y104{bottom:282.090000px;}
.y12e{bottom:284.430000px;}
.ye9{bottom:286.230000px;}
.y14c{bottom:293.250000px;}
.ya9{bottom:296.490000px;}
.y33{bottom:298.470000px;}
.y103{bottom:299.370000px;}
.ye8{bottom:303.330000px;}
.y7{bottom:305.619600px;}
.y12d{bottom:306.210000px;}
.y83{bottom:306.390000px;}
.y14b{bottom:310.530000px;}
.ya8{bottom:313.770000px;}
.y5c{bottom:315.030000px;}
.y32{bottom:315.750000px;}
.y6{bottom:320.019600px;}
.ye7{bottom:320.610000px;}
.y12c{bottom:323.490000px;}
.y82{bottom:323.670000px;}
.y14a{bottom:327.630000px;}
.ya7{bottom:331.050000px;}
.y5b{bottom:332.130000px;}
.y31{bottom:333.030000px;}
.ye6{bottom:337.890000px;}
.y12b{bottom:340.770000px;}
.y81{bottom:340.950000px;}
.y149{bottom:344.910000px;}
.ya6{bottom:348.330000px;}
.y5a{bottom:349.410000px;}
.y30{bottom:350.310000px;}
.ye5{bottom:355.215000px;}
.y12a{bottom:357.915000px;}
.y80{bottom:358.275000px;}
.yb1{bottom:362.055000px;}
.y148{bottom:362.235000px;}
.ya5{bottom:365.475000px;}
.y59{bottom:366.735000px;}
.y2f{bottom:367.635000px;}
.ye4{bottom:372.495000px;}
.y129{bottom:375.195000px;}
.y7f{bottom:375.375000px;}
.yb0{bottom:378.075000px;}
.y147{bottom:379.515000px;}
.y58{bottom:384.015000px;}
.y2e{bottom:384.915000px;}
.ye3{bottom:389.775000px;}
.y7e{bottom:392.655000px;}
.ycd{bottom:393.915000px;}
.ya4{bottom:395.175000px;}
.y146{bottom:396.795000px;}
.y102{bottom:397.335000px;}
.y57{bottom:401.295000px;}
.y2d{bottom:402.015000px;}
.ye2{bottom:406.875000px;}
.ycb{bottom:409.395000px;}
.y7d{bottom:409.935000px;}
.y128{bottom:413.895000px;}
.y145{bottom:414.075000px;}
.y101{bottom:414.615000px;}
.y56{bottom:418.575000px;}
.y2c{bottom:419.295000px;}
.ye1{bottom:424.155000px;}
.y7c{bottom:427.215000px;}
.y144{bottom:431.175000px;}
.y100{bottom:431.895000px;}
.y55{bottom:435.675000px;}
.y2b{bottom:436.575000px;}
.yca{bottom:440.535000px;}
.ye0{bottom:441.435000px;}
.y7b{bottom:444.495000px;}
.yff{bottom:445.395000px;}
.ya3{bottom:445.755000px;}
.y143{bottom:448.455000px;}
.yfe{bottom:451.515000px;}
.y54{bottom:452.955000px;}
.y2a{bottom:453.855000px;}
.ydf{bottom:458.715000px;}
.y7a{bottom:461.775000px;}
.ya2{bottom:463.035000px;}
.y142{bottom:465.735000px;}
.yfd{bottom:465.915000px;}
.y29{bottom:471.135000px;}
.yc9{bottom:471.495000px;}
.yfc{bottom:472.035000px;}
.y127{bottom:473.115000px;}
.yde{bottom:475.995000px;}
.y79{bottom:478.875000px;}
.ya1{bottom:480.315000px;}
.y141{bottom:483.015000px;}
.y126{bottom:488.955000px;}
.yfb{bottom:490.035000px;}
.y53{bottom:491.655000px;}
.yc6{bottom:493.095000px;}
.y78{bottom:496.155000px;}
.ya0{bottom:497.595000px;}
.y140{bottom:500.295000px;}
.y125{bottom:505.155000px;}
.yfa{bottom:507.315000px;}
.y28{bottom:509.655000px;}
.ydd{bottom:510.375000px;}
.y77{bottom:513.435000px;}
.y9f{bottom:514.875000px;}
.y13f{bottom:517.575000px;}
.y124{bottom:520.815000px;}
.yf9{bottom:524.595000px;}
.y9e{bottom:531.975000px;}
.y13e{bottom:534.675000px;}
.y123{bottom:536.295000px;}
.ydc{bottom:540.255000px;}
.yc5{bottom:540.435000px;}
.yf8{bottom:541.695000px;}
.y9d{bottom:549.255000px;}
.y52{bottom:550.875000px;}
.y122{bottom:551.775000px;}
.y13d{bottom:551.955000px;}
.y76{bottom:555.015000px;}
.yf7{bottom:558.975000px;}
.y51{bottom:568.155000px;}
.y27{bottom:568.515000px;}
.y13c{bottom:569.235000px;}
.yc4{bottom:571.395000px;}
.yf6{bottom:572.655000px;}
.yf5{bottom:578.775000px;}
.y9c{bottom:578.955000px;}
.y50{bottom:585.435000px;}
.y13b{bottom:586.515000px;}
.ydb{bottom:591.015000px;}
.y26{bottom:592.995000px;}
.y121{bottom:598.935000px;}
.yf4{bottom:599.115000px;}
.y4f{bottom:602.715000px;}
.y13a{bottom:603.795000px;}
.y25{bottom:608.655000px;}
.yf3{bottom:613.515000px;}
.y74{bottom:614.445000px;}
.y75{bottom:618.945000px;}
.yf2{bottom:619.665000px;}
.y4e{bottom:620.025000px;}
.y139{bottom:620.925000px;}
.y24{bottom:624.165000px;}
.y120{bottom:625.245000px;}
.y9b{bottom:629.565000px;}
.y72{bottom:631.725000px;}
.y73{bottom:636.225000px;}
.y4d{bottom:637.125000px;}
.yf1{bottom:637.665000px;}
.y138{bottom:638.205000px;}
.y23{bottom:639.645000px;}
.y11f{bottom:642.525000px;}
.yc2{bottom:646.485000px;}
.y9a{bottom:646.845000px;}
.y71{bottom:649.005000px;}
.yda{bottom:650.445000px;}
.y4c{bottom:654.405000px;}
.yf0{bottom:654.945000px;}
.y22{bottom:655.125000px;}
.y137{bottom:655.485000px;}
.y11e{bottom:659.805000px;}
.y99{bottom:664.125000px;}
.y70{bottom:666.105000px;}
.yd9{bottom:667.725000px;}
.y21{bottom:670.785000px;}
.y4b{bottom:671.685000px;}
.yef{bottom:672.225000px;}
.y136{bottom:672.765000px;}
.y11c{bottom:676.905000px;}
.yc1{bottom:677.625000px;}
.y98{bottom:681.225000px;}
.y11d{bottom:681.405000px;}
.y6f{bottom:683.385000px;}
.yd8{bottom:684.825000px;}
.y20{bottom:686.265000px;}
.y4a{bottom:688.965000px;}
.yee{bottom:689.325000px;}
.y135{bottom:690.045000px;}
.y11a{bottom:694.185000px;}
.y97{bottom:698.505000px;}
.y11b{bottom:698.685000px;}
.ybf{bottom:699.225000px;}
.y6e{bottom:700.665000px;}
.y1f{bottom:701.745000px;}
.yd7{bottom:702.105000px;}
.y49{bottom:706.245000px;}
.yed{bottom:706.605000px;}
.y119{bottom:711.465000px;}
.y96{bottom:715.785000px;}
.y1e{bottom:717.225000px;}
.y6d{bottom:717.945000px;}
.yd6{bottom:719.385000px;}
.ybe{bottom:721.545000px;}
.y47{bottom:723.525000px;}
.y48{bottom:728.025000px;}
.y134{bottom:728.205000px;}
.y118{bottom:728.745000px;}
.y1d{bottom:732.885000px;}
.y95{bottom:733.065000px;}
.y6c{bottom:735.225000px;}
.yec{bottom:736.305000px;}
.yd5{bottom:736.665000px;}
.y45{bottom:740.625000px;}
.ybd{bottom:743.145000px;}
.y46{bottom:745.125000px;}
.y117{bottom:746.025000px;}
.y1c{bottom:748.365000px;}
.y6b{bottom:752.325000px;}
.yd4{bottom:753.945000px;}
.y43{bottom:757.905000px;}
.y44{bottom:762.405000px;}
.y94{bottom:762.765000px;}
.y116{bottom:763.305000px;}
.y1b{bottom:763.845000px;}
.ybc{bottom:764.745000px;}
.y1{bottom:767.476500px;}
.y6a{bottom:769.605000px;}
.yd2{bottom:771.225000px;}
.y42{bottom:775.185000px;}
.yd3{bottom:775.725000px;}
.y1a{bottom:779.325000px;}
.y115{bottom:780.405000px;}
.yd{bottom:784.026000px;}
.y133{bottom:784.905000px;}
.ybb{bottom:786.345000px;}
.y69{bottom:786.885000px;}
.yd1{bottom:788.325000px;}
.y41{bottom:792.465000px;}
.y113{bottom:797.685000px;}
.y114{bottom:802.185000px;}
.y68{bottom:804.165000px;}
.yd0{bottom:805.605000px;}
.yba{bottom:807.945000px;}
.y93{bottom:813.345000px;}
.y112{bottom:814.965000px;}
.y67{bottom:821.445000px;}
.yb9{bottom:829.545000px;}
.y92{bottom:830.625000px;}
.y40{bottom:830.985000px;}
.y110{bottom:832.245000px;}
.y111{bottom:836.745000px;}
.y66{bottom:838.725000px;}
.ycf{bottom:839.265000px;}
.y19{bottom:839.985000px;}
.y132{bottom:844.125000px;}
.y91{bottom:847.725000px;}
.y10f{bottom:849.525000px;}
.yb8{bottom:851.145000px;}
.y18{bottom:855.465000px;}
.y65{bottom:855.825000px;}
.y90{bottom:865.005000px;}
.y10e{bottom:866.625000px;}
.y17{bottom:870.945000px;}
.yb7{bottom:872.745000px;}
.y64{bottom:873.105000px;}
.y8f{bottom:880.890000px;}
.y131{bottom:882.870000px;}
.y10d{bottom:883.950000px;}
.y3f{bottom:890.430000px;}
.y16{bottom:892.410000px;}
.yb6{bottom:895.110000px;}
.y8e{bottom:896.370000px;}
.y10c{bottom:897.630000px;}
.y15{bottom:902.130000px;}
.y10b{bottom:903.750000px;}
.y3e{bottom:907.710000px;}
.y8d{bottom:911.850000px;}
.yb5{bottom:916.710000px;}
.y14{bottom:917.610000px;}
.y10a{bottom:921.750000px;}
.y3d{bottom:924.990000px;}
.y8b{bottom:927.330000px;}
.y13{bottom:933.090000px;}
.y109{bottom:939.030000px;}
.yb{bottom:941.341500px;}
.y3c{bottom:942.270000px;}
.y8a{bottom:942.990000px;}
.ya{bottom:948.777000px;}
.y108{bottom:952.530000px;}
.y12{bottom:954.510000px;}
.yb2{bottom:956.130000px;}
.y89{bottom:958.470000px;}
.y107{bottom:958.650000px;}
.y3b{bottom:959.370000px;}
.y11{bottom:964.230000px;}
.y88{bottom:973.950000px;}
.y3a{bottom:976.650000px;}
.y10{bottom:980.070000px;}
.y86{bottom:990.690000px;}
.y9{bottom:991.977000px;}
.y39{bottom:993.930000px;}
.yf{bottom:998.430000px;}
.yaf{bottom:1001.850000px;}
.y38{bottom:1011.210000px;}
.ye{bottom:1022.550000px;}
.yce{bottom:1027.590000px;}
.yae{bottom:1028.130000px;}
.y37{bottom:1028.490000px;}
.y85{bottom:1029.750000px;}
.y8{bottom:1037.016000px;}
.he{height:15.465000px;}
.h1b{height:15.480000px;}
.hf{height:15.645000px;}
.h16{height:21.600000px;}
.h17{height:21.636000px;}
.h9{height:25.839844px;}
.h12{height:30.960000px;}
.h18{height:31.140000px;}
.h19{height:31.176000px;}
.hd{height:34.625391px;}
.h1{height:36.703125px;}
.h20{height:38.100586px;}
.h8{height:38.759766px;}
.h15{height:39.420000px;}
.h11{height:42.164648px;}
.hb{height:42.894141px;}
.h1a{height:46.620000px;}
.h21{height:50.800781px;}
.h14{height:52.998047px;}
.h13{height:54.421875px;}
.h2{height:55.054688px;}
.h7{height:55.267031px;}
.h1c{height:55.992656px;}
.h6{height:59.436914px;}
.h10{height:62.211094px;}
.h1e{height:67.374141px;}
.h1d{height:67.494141px;}
.ha{height:74.953125px;}
.h4{height:79.200000px;}
.h1f{height:80.472656px;}
.h3{height:110.109375px;}
.h0{height:1263.000000px;}
.hc{height:1263.057990px;}
.h5{height:1263.060000px;}
.wc{width:73.800000px;}
.wd{width:73.836000px;}
.wb{width:73.980000px;}
.wa{width:74.016000px;}
.w10{width:92.376000px;}
.w11{width:104.241000px;}
.w9{width:127.980000px;}
.w8{width:129.261000px;}
.w7{width:153.210000px;}
.w6{width:154.995000px;}
.wf{width:166.860000px;}
.w12{width:196.635000px;}
.we{width:591.630000px;}
.w2{width:778.348500px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.w5{width:892.978125px;}
.w3{width:892.980000px;}
.w4{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:5.385000px;}
.x41{left:6.480000px;}
.x24{left:8.820000px;}
.x1{left:64.716000px;}
.x27{left:91.296000px;}
.x25{left:119.196000px;}
.x11{left:187.230000px;}
.x1a{left:191.730000px;}
.x42{left:196.230000px;}
.x12{left:204.330000px;}
.x4{left:205.839000px;}
.x35{left:209.730000px;}
.x5{left:212.250000px;}
.x1f{left:214.230000px;}
.x34{left:217.290000px;}
.x28{left:219.270000px;}
.x20{left:227.745000px;}
.x10{left:229.710000px;}
.x15{left:240.148125px;}
.x13{left:242.308125px;}
.x16{left:244.650000px;}
.x14{left:246.810000px;}
.x33{left:258.870000px;}
.x3e{left:264.855000px;}
.xa{left:267.555000px;}
.x29{left:293.295000px;}
.x1b{left:304.993125px;}
.x1c{left:309.495000px;}
.x7{left:330.015000px;}
.x2{left:331.066350px;}
.x31{left:335.235000px;}
.xc{left:340.815000px;}
.xf{left:349.815000px;}
.x6{left:352.335000px;}
.x37{left:353.415000px;}
.xd{left:359.895000px;}
.x2a{left:367.275000px;}
.x9{left:371.955000px;}
.x22{left:382.755000px;}
.x32{left:385.635000px;}
.xb{left:409.755000px;}
.xe{left:413.175000px;}
.x3{left:418.212000px;}
.x19{left:420.375000px;}
.x36{left:430.455000px;}
.x3f{left:431.715000px;}
.x30{left:437.473125px;}
.x2b{left:441.075000px;}
.x26{left:446.685000px;}
.x3c{left:451.903125px;}
.x8{left:455.145000px;}
.x3d{left:460.905000px;}
.x17{left:465.223125px;}
.x18{left:469.725000px;}
.x2c{left:515.085000px;}
.x40{left:524.100000px;}
.x23{left:535.980000px;}
.x2d{left:589.065000px;}
.x2e{left:662.910000px;}
.x38{left:670.108125px;}
.x39{left:674.610000px;}
.x3a{left:676.948125px;}
.x3b{left:681.450000px;}
.x1d{left:683.968125px;}
.x1e{left:688.470000px;}
.x2f{left:736.890000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.866667pt;}
.v1{vertical-align:24.320000pt;}
.v4{vertical-align:46.720000pt;}
.ls16{letter-spacing:-0.531200pt;}
.ls19{letter-spacing:-0.409067pt;}
.lsf{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.094933pt;}
.ls17{letter-spacing:-0.089067pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.108800pt;}
.lse{letter-spacing:0.112000pt;}
.ls18{letter-spacing:0.136533pt;}
.ls6{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.234133pt;}
.ls12{letter-spacing:0.248320pt;}
.lsd{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.960000pt;}
.ls15{letter-spacing:4.967680pt;}
.ls11{letter-spacing:5.280000pt;}
.ls10{letter-spacing:14.672640pt;}
.ls2{letter-spacing:25.728000pt;}
.lsc{letter-spacing:39.632640pt;}
.ls9{letter-spacing:46.208000pt;}
.ls4{letter-spacing:64.128000pt;}
.ls5{letter-spacing:71.168000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws7{word-spacing:-14.240000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws13{word-spacing:-13.190933pt;}
.ws14{word-spacing:-12.870933pt;}
.wsb{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.112000pt;}
.ws4{word-spacing:-12.016000pt;}
.ws3{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.680000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws2{word-spacing:-8.000000pt;}
.ws11{word-spacing:-6.710933pt;}
.wse{word-spacing:-6.585600pt;}
.ws10{word-spacing:-6.476800pt;}
.ws12{word-spacing:-5.945600pt;}
.wsa{word-spacing:-0.053120pt;}
.ws0{word-spacing:0.000000pt;}
.wsf{word-spacing:9.602560pt;}
._0{margin-left:-1287.010133pt;}
._1{margin-left:-1.123200pt;}
._2{width:1.062400pt;}
._b{width:2.208000pt;}
._9{width:3.900800pt;}
._a{width:4.992000pt;}
._8{width:6.720000pt;}
._3{width:8.112000pt;}
._4{width:9.172267pt;}
._11{width:10.730240pt;}
._c{width:11.952000pt;}
._10{width:14.926720pt;}
._7{width:16.224000pt;}
._6{width:17.472000pt;}
._13{width:19.070080pt;}
._5{width:20.256000pt;}
._d{width:21.460480pt;}
._e{width:22.788480pt;}
._f{width:23.797760pt;}
._17{width:24.807040pt;}
._12{width:32.509440pt;}
._15{width:45.760000pt;}
._16{width:173.066667pt;}
._14{width:755.286827pt;}
.fsa{font-size:29.440000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:128.000000pt;}
.yc0{bottom:-10.880000pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:2.560000pt;}
.y87{bottom:2.880000pt;}
.y8c{bottom:3.040000pt;}
.yc{bottom:6.609333pt;}
.yc8{bottom:16.320000pt;}
.ycc{bottom:16.480000pt;}
.yb4{bottom:16.640000pt;}
.yc3{bottom:16.800000pt;}
.yc7{bottom:30.240000pt;}
.y4{bottom:91.909333pt;}
.y3{bottom:104.709333pt;}
.y2{bottom:117.509333pt;}
.y5{bottom:129.814400pt;}
.y63{bottom:198.426667pt;}
.yad{bottom:202.266667pt;}
.y62{bottom:202.426667pt;}
.y61{bottom:211.706667pt;}
.yeb{bottom:212.986667pt;}
.y14f{bottom:214.586667pt;}
.y60{bottom:215.706667pt;}
.yac{bottom:217.626667pt;}
.y36{bottom:219.386667pt;}
.y106{bottom:220.026667pt;}
.y5f{bottom:224.826667pt;}
.y84{bottom:226.106667pt;}
.y5e{bottom:228.826667pt;}
.y14e{bottom:229.946667pt;}
.yab{bottom:232.826667pt;}
.y35{bottom:234.746667pt;}
.y105{bottom:235.386667pt;}
.y130{bottom:238.266667pt;}
.yea{bottom:239.066667pt;}
.y5d{bottom:239.386667pt;}
.y12f{bottom:242.266667pt;}
.y14d{bottom:245.306667pt;}
.yaa{bottom:248.186667pt;}
.y34{bottom:250.106667pt;}
.y104{bottom:250.746667pt;}
.y12e{bottom:252.826667pt;}
.ye9{bottom:254.426667pt;}
.y14c{bottom:260.666667pt;}
.ya9{bottom:263.546667pt;}
.y33{bottom:265.306667pt;}
.y103{bottom:266.106667pt;}
.ye8{bottom:269.626667pt;}
.y7{bottom:271.661867pt;}
.y12d{bottom:272.186667pt;}
.y83{bottom:272.346667pt;}
.y14b{bottom:276.026667pt;}
.ya8{bottom:278.906667pt;}
.y5c{bottom:280.026667pt;}
.y32{bottom:280.666667pt;}
.y6{bottom:284.461867pt;}
.ye7{bottom:284.986667pt;}
.y12c{bottom:287.546667pt;}
.y82{bottom:287.706667pt;}
.y14a{bottom:291.226667pt;}
.ya7{bottom:294.266667pt;}
.y5b{bottom:295.226667pt;}
.y31{bottom:296.026667pt;}
.ye6{bottom:300.346667pt;}
.y12b{bottom:302.906667pt;}
.y81{bottom:303.066667pt;}
.y149{bottom:306.586667pt;}
.ya6{bottom:309.626667pt;}
.y5a{bottom:310.586667pt;}
.y30{bottom:311.386667pt;}
.ye5{bottom:315.746667pt;}
.y12a{bottom:318.146667pt;}
.y80{bottom:318.466667pt;}
.yb1{bottom:321.826667pt;}
.y148{bottom:321.986667pt;}
.ya5{bottom:324.866667pt;}
.y59{bottom:325.986667pt;}
.y2f{bottom:326.786667pt;}
.ye4{bottom:331.106667pt;}
.y129{bottom:333.506667pt;}
.y7f{bottom:333.666667pt;}
.yb0{bottom:336.066667pt;}
.y147{bottom:337.346667pt;}
.y58{bottom:341.346667pt;}
.y2e{bottom:342.146667pt;}
.ye3{bottom:346.466667pt;}
.y7e{bottom:349.026667pt;}
.ycd{bottom:350.146667pt;}
.ya4{bottom:351.266667pt;}
.y146{bottom:352.706667pt;}
.y102{bottom:353.186667pt;}
.y57{bottom:356.706667pt;}
.y2d{bottom:357.346667pt;}
.ye2{bottom:361.666667pt;}
.ycb{bottom:363.906667pt;}
.y7d{bottom:364.386667pt;}
.y128{bottom:367.906667pt;}
.y145{bottom:368.066667pt;}
.y101{bottom:368.546667pt;}
.y56{bottom:372.066667pt;}
.y2c{bottom:372.706667pt;}
.ye1{bottom:377.026667pt;}
.y7c{bottom:379.746667pt;}
.y144{bottom:383.266667pt;}
.y100{bottom:383.906667pt;}
.y55{bottom:387.266667pt;}
.y2b{bottom:388.066667pt;}
.yca{bottom:391.586667pt;}
.ye0{bottom:392.386667pt;}
.y7b{bottom:395.106667pt;}
.yff{bottom:395.906667pt;}
.ya3{bottom:396.226667pt;}
.y143{bottom:398.626667pt;}
.yfe{bottom:401.346667pt;}
.y54{bottom:402.626667pt;}
.y2a{bottom:403.426667pt;}
.ydf{bottom:407.746667pt;}
.y7a{bottom:410.466667pt;}
.ya2{bottom:411.586667pt;}
.y142{bottom:413.986667pt;}
.yfd{bottom:414.146667pt;}
.y29{bottom:418.786667pt;}
.yc9{bottom:419.106667pt;}
.yfc{bottom:419.586667pt;}
.y127{bottom:420.546667pt;}
.yde{bottom:423.106667pt;}
.y79{bottom:425.666667pt;}
.ya1{bottom:426.946667pt;}
.y141{bottom:429.346667pt;}
.y126{bottom:434.626667pt;}
.yfb{bottom:435.586667pt;}
.y53{bottom:437.026667pt;}
.yc6{bottom:438.306667pt;}
.y78{bottom:441.026667pt;}
.ya0{bottom:442.306667pt;}
.y140{bottom:444.706667pt;}
.y125{bottom:449.026667pt;}
.yfa{bottom:450.946667pt;}
.y28{bottom:453.026667pt;}
.ydd{bottom:453.666667pt;}
.y77{bottom:456.386667pt;}
.y9f{bottom:457.666667pt;}
.y13f{bottom:460.066667pt;}
.y124{bottom:462.946667pt;}
.yf9{bottom:466.306667pt;}
.y9e{bottom:472.866667pt;}
.y13e{bottom:475.266667pt;}
.y123{bottom:476.706667pt;}
.ydc{bottom:480.226667pt;}
.yc5{bottom:480.386667pt;}
.yf8{bottom:481.506667pt;}
.y9d{bottom:488.226667pt;}
.y52{bottom:489.666667pt;}
.y122{bottom:490.466667pt;}
.y13d{bottom:490.626667pt;}
.y76{bottom:493.346667pt;}
.yf7{bottom:496.866667pt;}
.y51{bottom:505.026667pt;}
.y27{bottom:505.346667pt;}
.y13c{bottom:505.986667pt;}
.yc4{bottom:507.906667pt;}
.yf6{bottom:509.026667pt;}
.yf5{bottom:514.466667pt;}
.y9c{bottom:514.626667pt;}
.y50{bottom:520.386667pt;}
.y13b{bottom:521.346667pt;}
.ydb{bottom:525.346667pt;}
.y26{bottom:527.106667pt;}
.y121{bottom:532.386667pt;}
.yf4{bottom:532.546667pt;}
.y4f{bottom:535.746667pt;}
.y13a{bottom:536.706667pt;}
.y25{bottom:541.026667pt;}
.yf3{bottom:545.346667pt;}
.y74{bottom:546.173333pt;}
.y75{bottom:550.173333pt;}
.yf2{bottom:550.813333pt;}
.y4e{bottom:551.133333pt;}
.y139{bottom:551.933333pt;}
.y24{bottom:554.813333pt;}
.y120{bottom:555.773333pt;}
.y9b{bottom:559.613333pt;}
.y72{bottom:561.533333pt;}
.y73{bottom:565.533333pt;}
.y4d{bottom:566.333333pt;}
.yf1{bottom:566.813333pt;}
.y138{bottom:567.293333pt;}
.y23{bottom:568.573333pt;}
.y11f{bottom:571.133333pt;}
.yc2{bottom:574.653333pt;}
.y9a{bottom:574.973333pt;}
.y71{bottom:576.893333pt;}
.yda{bottom:578.173333pt;}
.y4c{bottom:581.693333pt;}
.yf0{bottom:582.173333pt;}
.y22{bottom:582.333333pt;}
.y137{bottom:582.653333pt;}
.y11e{bottom:586.493333pt;}
.y99{bottom:590.333333pt;}
.y70{bottom:592.093333pt;}
.yd9{bottom:593.533333pt;}
.y21{bottom:596.253333pt;}
.y4b{bottom:597.053333pt;}
.yef{bottom:597.533333pt;}
.y136{bottom:598.013333pt;}
.y11c{bottom:601.693333pt;}
.yc1{bottom:602.333333pt;}
.y98{bottom:605.533333pt;}
.y11d{bottom:605.693333pt;}
.y6f{bottom:607.453333pt;}
.yd8{bottom:608.733333pt;}
.y20{bottom:610.013333pt;}
.y4a{bottom:612.413333pt;}
.yee{bottom:612.733333pt;}
.y135{bottom:613.373333pt;}
.y11a{bottom:617.053333pt;}
.y97{bottom:620.893333pt;}
.y11b{bottom:621.053333pt;}
.ybf{bottom:621.533333pt;}
.y6e{bottom:622.813333pt;}
.y1f{bottom:623.773333pt;}
.yd7{bottom:624.093333pt;}
.y49{bottom:627.773333pt;}
.yed{bottom:628.093333pt;}
.y119{bottom:632.413333pt;}
.y96{bottom:636.253333pt;}
.y1e{bottom:637.533333pt;}
.y6d{bottom:638.173333pt;}
.yd6{bottom:639.453333pt;}
.ybe{bottom:641.373333pt;}
.y47{bottom:643.133333pt;}
.y48{bottom:647.133333pt;}
.y134{bottom:647.293333pt;}
.y118{bottom:647.773333pt;}
.y1d{bottom:651.453333pt;}
.y95{bottom:651.613333pt;}
.y6c{bottom:653.533333pt;}
.yec{bottom:654.493333pt;}
.yd5{bottom:654.813333pt;}
.y45{bottom:658.333333pt;}
.ybd{bottom:660.573333pt;}
.y46{bottom:662.333333pt;}
.y117{bottom:663.133333pt;}
.y1c{bottom:665.213333pt;}
.y6b{bottom:668.733333pt;}
.yd4{bottom:670.173333pt;}
.y43{bottom:673.693333pt;}
.y44{bottom:677.693333pt;}
.y94{bottom:678.013333pt;}
.y116{bottom:678.493333pt;}
.y1b{bottom:678.973333pt;}
.ybc{bottom:679.773333pt;}
.y1{bottom:682.201333pt;}
.y6a{bottom:684.093333pt;}
.yd2{bottom:685.533333pt;}
.y42{bottom:689.053333pt;}
.yd3{bottom:689.533333pt;}
.y1a{bottom:692.733333pt;}
.y115{bottom:693.693333pt;}
.yd{bottom:696.912000pt;}
.y133{bottom:697.693333pt;}
.ybb{bottom:698.973333pt;}
.y69{bottom:699.453333pt;}
.yd1{bottom:700.733333pt;}
.y41{bottom:704.413333pt;}
.y113{bottom:709.053333pt;}
.y114{bottom:713.053333pt;}
.y68{bottom:714.813333pt;}
.yd0{bottom:716.093333pt;}
.yba{bottom:718.173333pt;}
.y93{bottom:722.973333pt;}
.y112{bottom:724.413333pt;}
.y67{bottom:730.173333pt;}
.yb9{bottom:737.373333pt;}
.y92{bottom:738.333333pt;}
.y40{bottom:738.653333pt;}
.y110{bottom:739.773333pt;}
.y111{bottom:743.773333pt;}
.y66{bottom:745.533333pt;}
.ycf{bottom:746.013333pt;}
.y19{bottom:746.653333pt;}
.y132{bottom:750.333333pt;}
.y91{bottom:753.533333pt;}
.y10f{bottom:755.133333pt;}
.yb8{bottom:756.573333pt;}
.y18{bottom:760.413333pt;}
.y65{bottom:760.733333pt;}
.y90{bottom:768.893333pt;}
.y10e{bottom:770.333333pt;}
.y17{bottom:774.173333pt;}
.yb7{bottom:775.773333pt;}
.y64{bottom:776.093333pt;}
.y8f{bottom:783.013333pt;}
.y131{bottom:784.773333pt;}
.y10d{bottom:785.733333pt;}
.y3f{bottom:791.493333pt;}
.y16{bottom:793.253333pt;}
.yb6{bottom:795.653333pt;}
.y8e{bottom:796.773333pt;}
.y10c{bottom:797.893333pt;}
.y15{bottom:801.893333pt;}
.y10b{bottom:803.333333pt;}
.y3e{bottom:806.853333pt;}
.y8d{bottom:810.533333pt;}
.yb5{bottom:814.853333pt;}
.y14{bottom:815.653333pt;}
.y10a{bottom:819.333333pt;}
.y3d{bottom:822.213333pt;}
.y8b{bottom:824.293333pt;}
.y13{bottom:829.413333pt;}
.y109{bottom:834.693333pt;}
.yb{bottom:836.748000pt;}
.y3c{bottom:837.573333pt;}
.y8a{bottom:838.213333pt;}
.ya{bottom:843.357333pt;}
.y108{bottom:846.693333pt;}
.y12{bottom:848.453333pt;}
.yb2{bottom:849.893333pt;}
.y89{bottom:851.973333pt;}
.y107{bottom:852.133333pt;}
.y3b{bottom:852.773333pt;}
.y11{bottom:857.093333pt;}
.y88{bottom:865.733333pt;}
.y3a{bottom:868.133333pt;}
.y10{bottom:871.173333pt;}
.y86{bottom:880.613333pt;}
.y9{bottom:881.757333pt;}
.y39{bottom:883.493333pt;}
.yf{bottom:887.493333pt;}
.yaf{bottom:890.533333pt;}
.y38{bottom:898.853333pt;}
.ye{bottom:908.933333pt;}
.yce{bottom:913.413333pt;}
.yae{bottom:913.893333pt;}
.y37{bottom:914.213333pt;}
.y85{bottom:915.333333pt;}
.y8{bottom:921.792000pt;}
.he{height:13.746667pt;}
.h1b{height:13.760000pt;}
.hf{height:13.906667pt;}
.h16{height:19.200000pt;}
.h17{height:19.232000pt;}
.h9{height:22.968750pt;}
.h12{height:27.520000pt;}
.h18{height:27.680000pt;}
.h19{height:27.712000pt;}
.hd{height:30.778125pt;}
.h1{height:32.625000pt;}
.h20{height:33.867188pt;}
.h8{height:34.453125pt;}
.h15{height:35.040000pt;}
.h11{height:37.479688pt;}
.hb{height:38.128125pt;}
.h1a{height:41.440000pt;}
.h21{height:45.156250pt;}
.h14{height:47.109375pt;}
.h13{height:48.375000pt;}
.h2{height:48.937500pt;}
.h7{height:49.126250pt;}
.h1c{height:49.771250pt;}
.h6{height:52.832812pt;}
.h10{height:55.298750pt;}
.h1e{height:59.888125pt;}
.h1d{height:59.994792pt;}
.ha{height:66.625000pt;}
.h4{height:70.400000pt;}
.h1f{height:71.531250pt;}
.h3{height:97.875000pt;}
.h0{height:1122.666667pt;}
.hc{height:1122.718213pt;}
.h5{height:1122.720000pt;}
.wc{width:65.600000pt;}
.wd{width:65.632000pt;}
.wb{width:65.760000pt;}
.wa{width:65.792000pt;}
.w10{width:82.112000pt;}
.w11{width:92.658667pt;}
.w9{width:113.760000pt;}
.w8{width:114.898667pt;}
.w7{width:136.186667pt;}
.w6{width:137.773333pt;}
.wf{width:148.320000pt;}
.w12{width:174.786667pt;}
.we{width:525.893333pt;}
.w2{width:691.865333pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.w5{width:793.758333pt;}
.w3{width:793.760000pt;}
.w4{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:4.786667pt;}
.x41{left:5.760000pt;}
.x24{left:7.840000pt;}
.x1{left:57.525333pt;}
.x27{left:81.152000pt;}
.x25{left:105.952000pt;}
.x11{left:166.426667pt;}
.x1a{left:170.426667pt;}
.x42{left:174.426667pt;}
.x12{left:181.626667pt;}
.x4{left:182.968000pt;}
.x35{left:186.426667pt;}
.x5{left:188.666667pt;}
.x1f{left:190.426667pt;}
.x34{left:193.146667pt;}
.x28{left:194.906667pt;}
.x20{left:202.440000pt;}
.x10{left:204.186667pt;}
.x15{left:213.465000pt;}
.x13{left:215.385000pt;}
.x16{left:217.466667pt;}
.x14{left:219.386667pt;}
.x33{left:230.106667pt;}
.x3e{left:235.426667pt;}
.xa{left:237.826667pt;}
.x29{left:260.706667pt;}
.x1b{left:271.105000pt;}
.x1c{left:275.106667pt;}
.x7{left:293.346667pt;}
.x2{left:294.281200pt;}
.x31{left:297.986667pt;}
.xc{left:302.946667pt;}
.xf{left:310.946667pt;}
.x6{left:313.186667pt;}
.x37{left:314.146667pt;}
.xd{left:319.906667pt;}
.x2a{left:326.466667pt;}
.x9{left:330.626667pt;}
.x22{left:340.226667pt;}
.x32{left:342.786667pt;}
.xb{left:364.226667pt;}
.xe{left:367.266667pt;}
.x3{left:371.744000pt;}
.x19{left:373.666667pt;}
.x36{left:382.626667pt;}
.x3f{left:383.746667pt;}
.x30{left:388.865000pt;}
.x2b{left:392.066667pt;}
.x26{left:397.053333pt;}
.x3c{left:401.691667pt;}
.x8{left:404.573333pt;}
.x3d{left:409.693333pt;}
.x17{left:413.531667pt;}
.x18{left:417.533333pt;}
.x2c{left:457.853333pt;}
.x40{left:465.866667pt;}
.x23{left:476.426667pt;}
.x2d{left:523.613333pt;}
.x2e{left:589.253333pt;}
.x38{left:595.651667pt;}
.x39{left:599.653333pt;}
.x3a{left:601.731667pt;}
.x3b{left:605.733333pt;}
.x1d{left:607.971667pt;}
.x1e{left:611.973333pt;}
.x2f{left:655.013333pt;}
}


body.paper-page .doc-shell[data-scieee-split-doc="1"] #page-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] #sidebar,
body.paper-page .doc-shell[data-scieee-split-doc="1"] .loading-indicator {
  display: none !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] .pf {
  display: block !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
